From 7885b96d0adc843fa9d8fe54327b6b8d55c48f28 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Tue, 3 Mar 2026 11:19:25 -0800 Subject: [PATCH 01/16] checkpoint --- core-relations/src/table_spec.rs | 12 ++++- egglog-bridge/src/lib.rs | 15 ++++++ src/lib.rs | 81 ++++++++++++++++++++++++++++++-- src/typechecking.rs | 20 +++++++- 4 files changed, 121 insertions(+), 7 deletions(-) diff --git a/core-relations/src/table_spec.rs b/core-relations/src/table_spec.rs index dc50ce360..b3241c53a 100644 --- a/core-relations/src/table_spec.rs +++ b/core-relations/src/table_spec.rs @@ -27,6 +27,7 @@ use crate::{ offsets::{RowId, Subset, SubsetRef}, pool::{with_pool_set, PoolSet, Pooled}, row_buffer::{RowBuffer, TaggedRowBuffer}, + DisplacedTable, DisplacedTableWithProvenance, QueryEntry, TableId, Variable, }; @@ -542,8 +543,15 @@ impl<'de> Deserialize<'de> for WrappedTable { D: serde::Deserializer<'de>, { let inner: Box = Deserialize::deserialize(deserializer)?; - - let wrapper = wrapper::(); // todo: different kind of wrapper? + let wrapper = if inner.as_any().is::() { + wrapper::() + } else if inner.as_any().is::() { + wrapper::() + } else if inner.as_any().is::() { + wrapper::() + } else { + return Err(serde::de::Error::custom("unknown table type for WrappedTable")); + }; Ok(WrappedTable { inner, wrapper }) } diff --git a/egglog-bridge/src/lib.rs b/egglog-bridge/src/lib.rs index 37298dd93..1351c0cc2 100644 --- a/egglog-bridge/src/lib.rs +++ b/egglog-bridge/src/lib.rs @@ -1135,6 +1135,21 @@ impl EGraph { updated } + pub fn restore_deserialized_runtime(&mut self) { + let funcs = self + .funcs + .iter() + .map(|(func, info)| (func, info.schema.clone())) + .collect::>(); + for (func, schema) in funcs { + let incremental_rebuild_rules = self.incremental_rebuild_rules(func, &schema); + let nonincremental_rebuild_rule = self.nonincremental_rebuild(func, &schema); + let info = &mut self.funcs[func]; + info.incremental_rebuild_rules = incremental_rebuild_rules; + info.nonincremental_rebuild_rule = nonincremental_rebuild_rule; + } + } + pub fn set_report_level(&mut self, level: ReportLevel) { self.report_level = level; } diff --git a/src/lib.rs b/src/lib.rs index ef2fcdd3a..9237e8eb7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1140,6 +1140,69 @@ impl EGraph { Ok(RunReport::singleton(ruleset, iteration_report)) } + fn restore_deserialized_runtime(&mut self) -> Result<(), Error> { + self.type_info.restore_deserialized_runtime_metadata(); + self.type_info.clear_primitives(); + + let mut sorts = self + .type_info + .all_sorts() + .into_iter() + .map(|sort| (sort.name().to_owned(), sort)) + .collect::>(); + for builtin in ["Unit", "String", "bool", "i64", "f64", "BigInt", "BigRat"] { + if let Some(sort) = sorts.remove(builtin) { + sort.register_primitives(self); + } + } + add_primitive!(self, "!=" = |a: #, b: #| -?> () { + (a != b).then_some(()) + }); + add_primitive!(self, "value-eq" = |a: #, b: #| -?> () { + (a == b).then_some(()) + }); + add_primitive!(self, "ordering-min" = |a: #, b: #| -> # { + if a < b { a } else { b } + }); + add_primitive!(self, "ordering-max" = |a: #, b: #| -> # { + if a > b { a } else { b } + }); + for (_, sort) in sorts { + sort.register_primitives(self); + } + self.backend.restore_deserialized_runtime(); + + let mut restored_rulesets = IndexMap::default(); + let rulesets = std::mem::take(&mut self.rulesets); + + for (ruleset_name, ruleset) in rulesets { + let restored = match ruleset { + Ruleset::Rules(rules) => { + let mut restored_rules = IndexMap::default(); + for (rule_name, (core_rule, _)) in rules { + let rule_id = { + let mut translator = BackendRule::new( + self.backend.new_rule(&rule_name, self.seminaive), + &self.functions, + &self.type_info, + ); + translator.query(&core_rule.body, false); + translator.actions(&core_rule.head)?; + translator.build() + }; + restored_rules.insert(rule_name, (core_rule, rule_id)); + } + Ruleset::Rules(restored_rules) + } + Ruleset::Combined(sub_rulesets) => Ruleset::Combined(sub_rulesets), + }; + restored_rulesets.insert(ruleset_name, restored); + } + + self.rulesets = restored_rulesets; + Ok(()) + } + fn add_rule(&mut self, rule: ast::ResolvedRule) -> Result { // Disable union_to_set optimization in proof or term encoding mode, since // it expects only `union` on constructors (not set). @@ -2484,7 +2547,11 @@ impl TimedEgraph { let file = File::open(path).expect("failed to open egraph file"); let reader = BufReader::new(file); - let egraph: EGraph = serde_json::from_reader(reader).expect("failed to parse egraph JSON"); + let mut egraph: EGraph = + serde_json::from_reader(reader).expect("failed to parse egraph JSON"); + egraph + .restore_deserialized_runtime() + .expect("failed to restore deserialized runtime"); Self { egraphs: vec![egraph], @@ -2650,8 +2717,11 @@ impl TimedEgraph { time_micros: self.timer.elapsed().as_micros(), }); - let egraph: EGraph = + let mut egraph: EGraph = serde_json::from_value(value).context("Failed to decode egraph from json")?; + egraph + .restore_deserialized_runtime() + .context("Failed to restore deserialized runtime")?; timeline.evts.push(EgraphEvent { sexp_idx: 0, @@ -2690,7 +2760,7 @@ impl TimedEgraph { let file = fs::File::create(path) .with_context(|| format!("failed to create file {}", path.display()))?; - serde_json::to_writer(BufWriter::new(file), &value) + serde_json::to_writer_pretty(BufWriter::new(file), &value) .context("Failed to write value to file")?; timeline.evts.push(EgraphEvent { @@ -2731,7 +2801,10 @@ impl TimedEgraph { time_micros: self.timer.elapsed().as_micros(), }); - let egraph: EGraph = serde_json::from_value(value)?; + let mut egraph: EGraph = serde_json::from_value(value)?; + egraph + .restore_deserialized_runtime() + .context("Failed to restore deserialized runtime")?; timeline.evts.push(EgraphEvent { sexp_idx: 1, diff --git a/src/typechecking.rs b/src/typechecking.rs index 2f39e97a0..859f464e5 100644 --- a/src/typechecking.rs +++ b/src/typechecking.rs @@ -165,7 +165,7 @@ impl<'de> Deserialize<'de> for TypeInfo { primitives: helper.primitives, func_types: helper.func_types, global_sorts: helper.global_sorts, - }) // TODO: this is a bogus default value + }) } } @@ -443,6 +443,24 @@ impl EGraph { } impl TypeInfo { + pub(crate) fn restore_deserialized_runtime_metadata(&mut self) { + self.mksorts = Default::default(); + self.reserved_primitives = Default::default(); + self.add_presort::(span!()).unwrap(); + self.add_presort::(span!()).unwrap(); + self.add_presort::(span!()).unwrap(); + self.add_presort::(span!()).unwrap(); + self.add_presort::(span!()).unwrap(); + } + + pub(crate) fn clear_primitives(&mut self) { + self.primitives.clear(); + } + + pub(crate) fn all_sorts(&self) -> Vec { + self.sorts.values().cloned().collect() + } + /// Adds a sort constructor to the typechecker's known set of types. pub fn add_presort(&mut self, span: Span) -> Result<(), TypeError> { let name = S::presort_name(); From 1034c11eac10d21be3f16e4ab42735ef42f40aec Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Tue, 3 Mar 2026 11:34:46 -0800 Subject: [PATCH 02/16] checkpoint --- core-relations/src/table/mod.rs | 10 ++++++++++ core-relations/src/table_spec.rs | 7 +++++++ core-relations/src/uf/mod.rs | 8 ++++++++ egglog-bridge/src/lib.rs | 29 +++++++++++++++++++++++++++-- 4 files changed, 52 insertions(+), 2 deletions(-) diff --git a/core-relations/src/table/mod.rs b/core-relations/src/table/mod.rs index 2da2609c9..3b5bc025c 100644 --- a/core-relations/src/table/mod.rs +++ b/core-relations/src/table/mod.rs @@ -401,6 +401,10 @@ impl Table for SortedWritesTable { fn as_any(&self) -> &dyn Any { self } + + fn as_any_mut(&mut self) -> &mut dyn Any { + self + } fn clear(&mut self) { self.pending_state.clear(); if self.data.data.len() == 0 { @@ -620,6 +624,12 @@ impl Table for SortedWritesTable { } } +impl SortedWritesTable { + pub fn set_merge(&mut self, merge: Box) { + self.merge = merge.into(); + } +} + impl SortedWritesTable { /// Create a new [`SortedWritesTable`] with the given number of keys, /// columns, and an optional sort column. diff --git a/core-relations/src/table_spec.rs b/core-relations/src/table_spec.rs index b3241c53a..1c9b4fab8 100644 --- a/core-relations/src/table_spec.rs +++ b/core-relations/src/table_spec.rs @@ -184,6 +184,9 @@ pub trait Table: Any + Send + Sync { /// `self`. fn as_any(&self) -> &dyn Any; + /// A mutable variant of [`Table::as_any`] for downcasting. + fn as_any_mut(&mut self) -> &mut dyn Any; + /// The schema of the table. /// /// These are immutable properties of the table; callers can assume they @@ -572,6 +575,10 @@ impl WrappedTable { } } + pub fn as_any_mut(&mut self) -> &mut dyn Any { + self.inner.as_any_mut() + } + pub(crate) fn as_ref(&self) -> WrappedTableRef<'_> { WrappedTableRef { inner: &*self.inner, diff --git a/core-relations/src/uf/mod.rs b/core-relations/src/uf/mod.rs index 39106524c..80c1402f4 100644 --- a/core-relations/src/uf/mod.rs +++ b/core-relations/src/uf/mod.rs @@ -279,6 +279,10 @@ impl Table for DisplacedTable { fn as_any(&self) -> &dyn Any { self } + + fn as_any_mut(&mut self) -> &mut dyn Any { + self + } fn spec(&self) -> TableSpec { let mut uncacheable_columns = DenseIdMap::default(); // The second column of this table is determined dynamically by the union-find. @@ -882,6 +886,10 @@ impl Table for DisplacedTableWithProvenance { fn as_any(&self) -> &dyn Any { self } + + fn as_any_mut(&mut self) -> &mut dyn Any { + self + } fn clear(&mut self) { self.base.clear() } diff --git a/egglog-bridge/src/lib.rs b/egglog-bridge/src/lib.rs index 1351c0cc2..8d8bba5a4 100644 --- a/egglog-bridge/src/lib.rs +++ b/egglog-bridge/src/lib.rs @@ -768,6 +768,7 @@ impl EGraph { incremental_rebuild_rules: Default::default(), nonincremental_rebuild_rule: RuleId::new(!0), default_val: default, + merge: merge.clone(), can_subsume, name, }); @@ -1139,9 +1140,31 @@ impl EGraph { let funcs = self .funcs .iter() - .map(|(func, info)| (func, info.schema.clone())) + .map(|(func, info)| { + ( + func, + info.table, + info.schema.clone(), + info.can_subsume, + info.name.clone(), + info.merge.clone(), + ) + }) .collect::>(); - for (func, schema) in funcs { + for (func, table_id, schema, can_subsume, name, merge) in funcs { + let schema_math = SchemaMath { + tracing: self.tracing, + subsume: can_subsume, + func_cols: schema.len(), + }; + let merge_fn = merge.to_callback(schema_math, &name, self); + let table = self + .db + .get_table_mut(table_id) + .as_any_mut() + .downcast_mut::() + .expect("function tables must use SortedWritesTable"); + table.set_merge(merge_fn); let incremental_rebuild_rules = self.incremental_rebuild_rules(func, &schema); let nonincremental_rebuild_rule = self.nonincremental_rebuild(func, &schema); let info = &mut self.funcs[func]; @@ -1178,6 +1201,7 @@ struct FunctionInfo { incremental_rebuild_rules: Vec, nonincremental_rebuild_rule: RuleId, default_val: DefaultVal, + merge: MergeFn, can_subsume: bool, name: Arc, } @@ -1200,6 +1224,7 @@ pub enum DefaultVal { } /// How to resolve FD conflicts for a table. +#[derive(Clone, Serialize, Deserialize)] pub enum MergeFn { /// Panic if the old and new values don't match. AssertEq, From 872072d0422e0604291ce96b9f567bbc73fdccfb Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 08:06:14 -0800 Subject: [PATCH 03/16] add test --- src/lib.rs | 11 +++++++++++ src/poach.rs | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 9237e8eb7..9bdcce472 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2591,6 +2591,17 @@ impl TimedEgraph { Ok(outputs) } + pub fn run_from_string(&mut self, program_text: &str) -> Result> { + let parsed_commands = self + .egraphs + .last_mut() + .expect("There are no egraphs") + .parser + .get_program_from_string(None, program_text)?; + + Ok(self.run_program_with_timeline(parsed_commands, program_text)?) + } + pub fn run_program_with_timeline( &mut self, program: Vec, diff --git a/src/poach.rs b/src/poach.rs index 1bc0c361f..4ef29eeff 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -696,3 +696,43 @@ fn main() { File::create(output_dir.join("summary.json")).expect("Failed to create summary.json"); serde_json::to_writer_pretty(BufWriter::new(file), &out).expect("failed to write summary.json"); } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn run_rules_after_deserialize() { + let mut timed_egraph = TimedEgraph::new(); + let program = r#" + (function fib (i64) i64 :no-merge) + (set (fib 0) 0) + (set (fib 1) 1) + + (rule ((= f0 (fib x)) + (= f1 (fib (+ x 1)))) + ((set (fib (+ x 2)) (+ f0 f1)))) + + (run 2) + + (check (= (fib 3) 2)) + (fail (check (= (fib 4) 3))) + "#; + + let res = timed_egraph.run_from_string(program); + assert!(res.is_ok()); + + // round trip serialize + let v = timed_egraph.to_value().expect("failed to serialize"); + timed_egraph.from_value(v).expect("failed to deserialize"); + + let second_run = r#" + (fail (check (= (fib 4) 3))) + (run 1) + (check (= (fib 4) 3)) + "#; + + let res2 = timed_egraph.run_from_string(second_run); + assert!(res2.is_ok()); + } +} From c01058a1377b50f7d213807fedb2e41b15aefaef Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 08:22:30 -0800 Subject: [PATCH 04/16] not needed anymore --- src/poach.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/poach.rs b/src/poach.rs index 4ef29eeff..474f017dc 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -676,7 +676,6 @@ fn main() { WalkDir::new(input_path) .into_iter() .filter_map(|entry| entry.ok()) - .filter(|entry| !entry.path().to_string_lossy().contains("fail")) .filter(|entry| entry.file_type().is_file()) .filter(|entry| entry.path().extension().and_then(|s| s.to_str()) == Some("egg")) .map(|entry| entry.path().to_path_buf()) From cb9e6e0c26c353512ad03dd6840eb893e5b639d7 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 08:55:55 -0800 Subject: [PATCH 05/16] cargo fmt --- concurrency/benches/simple_read.rs | 2 +- concurrency/src/concurrent_vec.rs | 4 +-- concurrency/src/lib.rs | 2 +- concurrency/src/notification.rs | 2 +- concurrency/src/tests.rs | 2 +- core-relations/benches/writes.rs | 6 ++-- core-relations/src/action/mask.rs | 2 +- core-relations/src/action/tests.rs | 8 +++-- core-relations/src/base_values/mod.rs | 11 +++--- core-relations/src/common.rs | 24 +++++++------ core-relations/src/dependency_graph.rs | 4 +-- core-relations/src/free_join/execute.rs | 19 +++++++---- core-relations/src/free_join/frame_update.rs | 2 +- core-relations/src/free_join/plan.rs | 2 +- core-relations/src/hash_index/tests.rs | 2 +- core-relations/src/lib.rs | 4 +-- core-relations/src/offsets/mod.rs | 4 +-- core-relations/src/offsets/tests.rs | 11 +++--- core-relations/src/pool/mod.rs | 4 +-- core-relations/src/row_buffer/mod.rs | 4 +-- core-relations/src/table/rebuild.rs | 6 ++-- core-relations/src/table/tests.rs | 4 +-- core-relations/src/table_spec.rs | 7 ++-- core-relations/src/tests.rs | 15 ++++---- core-relations/src/uf/mod.rs | 4 +-- core-relations/src/uf/tests.rs | 2 +- egglog-bridge/examples/ac.rs | 2 +- egglog-bridge/examples/math.rs | 2 +- egglog-bridge/src/lib.rs | 4 +-- egglog-bridge/src/macros.rs | 2 +- egglog-bridge/src/proof_format.rs | 4 +-- egglog-bridge/src/tests.rs | 8 ++--- numeric-id/src/tests.rs | 2 +- src/ast/expr.rs | 2 +- src/scheduler.rs | 10 +++--- src/sort/add_primitive/src/lib.rs | 2 +- union-find/benches/union-find.rs | 6 ++-- union-find/src/concurrent/tests.rs | 36 +++++++++----------- union-find/src/tests.rs | 11 +++--- 39 files changed, 129 insertions(+), 119 deletions(-) diff --git a/concurrency/benches/simple_read.rs b/concurrency/benches/simple_read.rs index ce6c7d90c..4a4f377ca 100644 --- a/concurrency/benches/simple_read.rs +++ b/concurrency/benches/simple_read.rs @@ -1,6 +1,6 @@ use std::{ops::Deref, sync::RwLock}; -use divan::{Bencher, counter::ItemsCount}; +use divan::{counter::ItemsCount, Bencher}; use egglog_concurrency::{MutexReader, ReadOptimizedLock}; fn main() { diff --git a/concurrency/src/concurrent_vec.rs b/concurrency/src/concurrent_vec.rs index 04fb4a012..2868f0d95 100644 --- a/concurrency/src/concurrent_vec.rs +++ b/concurrency/src/concurrent_vec.rs @@ -5,12 +5,12 @@ use std::{ mem::{self, MaybeUninit}, ops::Deref, sync::{ - Mutex, atomic::{AtomicUsize, Ordering}, + Mutex, }, }; -use serde::{Deserialize, Deserializer, Serialize, ser::SerializeSeq}; +use serde::{ser::SerializeSeq, Deserialize, Deserializer, Serialize}; use crate::{MutexReader, ReadOptimizedLock}; diff --git a/concurrency/src/lib.rs b/concurrency/src/lib.rs index 25092caab..c77ba6f06 100644 --- a/concurrency/src/lib.rs +++ b/concurrency/src/lib.rs @@ -23,8 +23,8 @@ use std::{ mem, ops::{Deref, DerefMut}, sync::{ + atomic::{fence, Ordering}, Arc, - atomic::{Ordering, fence}, }, }; diff --git a/concurrency/src/notification.rs b/concurrency/src/notification.rs index 6627e33e1..e6528471c 100644 --- a/concurrency/src/notification.rs +++ b/concurrency/src/notification.rs @@ -3,8 +3,8 @@ use std::{ sync::{ - Condvar, Mutex, atomic::{AtomicBool, Ordering}, + Condvar, Mutex, }, time::Duration, }; diff --git a/concurrency/src/tests.rs b/concurrency/src/tests.rs index 6542fc3b1..f07034ce9 100644 --- a/concurrency/src/tests.rs +++ b/concurrency/src/tests.rs @@ -1,8 +1,8 @@ use std::{ mem, sync::{ - Arc, Barrier, atomic::{AtomicUsize, Ordering}, + Arc, Barrier, }, thread::{self, sleep}, time::Duration, diff --git a/core-relations/benches/writes.rs b/core-relations/benches/writes.rs index e08689f82..517def4b1 100644 --- a/core-relations/benches/writes.rs +++ b/core-relations/benches/writes.rs @@ -1,10 +1,10 @@ -use divan::{Bencher, counter::ItemsCount}; +use divan::{counter::ItemsCount, Bencher}; use egglog_core_relations::{Database, SortedWritesTable, Table, Value}; use egglog_numeric_id::NumericId; -use rand::{Rng, rng}; +use rand::{rng, Rng}; use rayon::{ - ThreadPoolBuilder, iter::{ParallelBridge, ParallelIterator}, + ThreadPoolBuilder, }; fn main() { diff --git a/core-relations/src/action/mask.rs b/core-relations/src/action/mask.rs index 267e64079..1ccad09f9 100644 --- a/core-relations/src/action/mask.rs +++ b/core-relations/src/action/mask.rs @@ -6,8 +6,8 @@ use fixedbitset::FixedBitSet; use smallvec::SmallVec; use crate::{ - PoolSet, pool::{InPoolSet, Pool, Pooled}, + PoolSet, }; /// A subset of offsets that are still active. diff --git a/core-relations/src/action/tests.rs b/core-relations/src/action/tests.rs index 4f1c0484b..2909b8aba 100644 --- a/core-relations/src/action/tests.rs +++ b/core-relations/src/action/tests.rs @@ -1,6 +1,6 @@ use crate::{ action::mask::{IterResult, ValueSource}, - pool::{PoolSet, with_pool_set}, + pool::{with_pool_set, PoolSet}, }; use super::mask::{Mask, MaskIter}; @@ -79,7 +79,11 @@ fn fill_vec() { || i32::MAX, |row, x| { assert_eq!(row, *x as usize); - if *x % 2 == 0 { Some(*x) } else { None } + if *x % 2 == 0 { + Some(*x) + } else { + None + } }, ); // We should filter the mas for the entries for which we returned 'None' diff --git a/core-relations/src/base_values/mod.rs b/core-relations/src/base_values/mod.rs index 3db989854..dceb9b7e3 100644 --- a/core-relations/src/base_values/mod.rs +++ b/core-relations/src/base_values/mod.rs @@ -7,11 +7,11 @@ use std::{ }; use hashbrown::HashMap; -use num::{BigInt, Rational64, rational::Ratio}; -use serde::{Deserialize, Serialize, de, ser::SerializeStruct}; +use num::{rational::Ratio, BigInt, Rational64}; +use serde::{de, ser::SerializeStruct, Deserialize, Serialize}; use serde_json::json; -use crate::numeric_id::{DenseIdMap, NumericId, define_id}; +use crate::numeric_id::{define_id, DenseIdMap, NumericId}; use crate::common::{InternTable, Value}; @@ -304,8 +304,9 @@ impl Debug for Boxed { } } -impl Deserialize<'de> + 'static> - BaseValue for Boxed +impl< + T: Hash + Eq + Debug + Clone + Send + Sync + Serialize + for<'de> Deserialize<'de> + 'static, + > BaseValue for Boxed { fn type_id_string() -> String { format!("Boxed<{}>", std::any::type_name::()) diff --git a/core-relations/src/common.rs b/core-relations/src/common.rs index 827e8a720..eb0bd3fe7 100644 --- a/core-relations/src/common.rs +++ b/core-relations/src/common.rs @@ -5,13 +5,13 @@ use std::{ sync::{Arc, Mutex}, }; -use crate::numeric_id::{DenseIdMap, IdVec, NumericId, define_id}; +use crate::numeric_id::{define_id, DenseIdMap, IdVec, NumericId}; use egglog_concurrency::ConcurrentVec; use rustc_hash::FxHasher; -use serde::{Deserialize, Deserializer, Serialize, ser::SerializeStruct}; +use serde::{ser::SerializeStruct, Deserialize, Deserializer, Serialize}; use serde_json::{from_value, to_value}; -use crate::{Subset, TableId, TableVersion, WrappedTable, pool::Clear}; +use crate::{pool::Clear, Subset, TableId, TableVersion, WrappedTable}; pub(crate) type HashMap = hashbrown::HashMap>; pub(crate) type HashSet = hashbrown::HashSet>; @@ -113,15 +113,19 @@ where } } -impl Deserialize<'a>, V: Serialize + for<'a> Deserialize<'a>> - Default for InternTable +impl< + K: Eq + Hash + Serialize + for<'a> Deserialize<'a>, + V: Serialize + for<'a> Deserialize<'a>, + > Default for InternTable { fn default() -> Self { Self::with_shards(4) } } -impl Deserialize<'a>, V: Serialize + for<'a> Deserialize<'a>> - InternTable +impl< + K: Eq + Hash + Serialize + for<'a> Deserialize<'a>, + V: Serialize + for<'a> Deserialize<'a>, + > InternTable { /// Create a new intern table with the given number of shards. /// @@ -139,9 +143,9 @@ impl Deserialize<'a>, V: Serialize + for<'a> } impl< - K: Eq + Hash + Clone + Serialize + for<'a> Deserialize<'a>, - V: NumericId + Serialize + for<'a> Deserialize<'a>, -> InternTable + K: Eq + Hash + Clone + Serialize + for<'a> Deserialize<'a>, + V: NumericId + Serialize + for<'a> Deserialize<'a>, + > InternTable { pub fn intern(&self, k: &K) -> V { let hash = hash_value(k); diff --git a/core-relations/src/dependency_graph.rs b/core-relations/src/dependency_graph.rs index 3922c4b47..bcde01175 100644 --- a/core-relations/src/dependency_graph.rs +++ b/core-relations/src/dependency_graph.rs @@ -3,9 +3,9 @@ use serde::{Deserialize, Serialize}; -use crate::numeric_id::{DenseIdMap, NumericId, define_id}; +use crate::numeric_id::{define_id, DenseIdMap, NumericId}; -use crate::{TableId, common::IndexSet}; +use crate::{common::IndexSet, TableId}; define_id!( LevelId, diff --git a/core-relations/src/free_join/execute.rs b/core-relations/src/free_join/execute.rs index 9aa611390..7f4a1ae92 100644 --- a/core-relations/src/free_join/execute.rs +++ b/core-relations/src/free_join/execute.rs @@ -2,7 +2,7 @@ use std::{ cmp, iter, mem, - sync::{Arc, OnceLock, atomic::AtomicUsize}, + sync::{atomic::AtomicUsize, Arc, OnceLock}, }; use crate::{ @@ -16,7 +16,6 @@ use smallvec::SmallVec; use web_time::Instant; use crate::{ - Constraint, OffsetRange, Pool, SubsetRef, action::{Bindings, ExecutionState}, common::{DashMap, Value}, free_join::{ @@ -30,13 +29,13 @@ use crate::{ query::RuleSet, row_buffer::TaggedRowBuffer, table_spec::{ColumnId, Offset, WrappedTableRef}, + Constraint, OffsetRange, Pool, SubsetRef, }; use super::{ - ActionId, AtomId, Database, HashColumnIndex, HashIndex, TableInfo, Variable, get_column_index_from_tableinfo, plan::{JoinHeader, JoinStage, Plan}, - with_pool_set, + with_pool_set, ActionId, AtomId, Database, HashColumnIndex, HashIndex, TableInfo, Variable, }; enum DynamicIndex { @@ -571,7 +570,13 @@ impl<'a> JoinState<'a> { db, exec_state: exec_state_for_work.clone(), } - .run_plan(plan, instr_order, cur + 1, binding_info, buf); + .run_plan( + plan, + instr_order, + cur + 1, + binding_info, + buf, + ); } }) }, @@ -1094,8 +1099,8 @@ impl<'scope> ActionBuffer<'scope> for ScopedActionBuffer<'_, 'scope> { mut local: BorrowedLocalState<'local>, mut to_exec_state: impl FnMut() -> ExecutionState<'scope> + Send + 'scope, work: impl for<'a> FnOnce(BorrowedLocalState<'a>, &mut ScopedActionBuffer<'a, 'scope>) - + Send - + 'scope, + + Send + + 'scope, ) { let rule_set = self.rule_set; let match_counter = self.match_counter; diff --git a/core-relations/src/free_join/frame_update.rs b/core-relations/src/free_join/frame_update.rs index 18589e6cb..42b9ce10e 100644 --- a/core-relations/src/free_join/frame_update.rs +++ b/core-relations/src/free_join/frame_update.rs @@ -12,7 +12,7 @@ //! those bindings in recursive calls. When parallelism is enabled, this data-structure allows us //! hand over an entire batch of recursive calls to a separate thread to process independently. -use crate::numeric_id::{DenseIdMap, define_id}; +use crate::numeric_id::{define_id, DenseIdMap}; use crate::{Subset, Value}; diff --git a/core-relations/src/free_join/plan.rs b/core-relations/src/free_join/plan.rs index c04a7133f..3b99da5c1 100644 --- a/core-relations/src/free_join/plan.rs +++ b/core-relations/src/free_join/plan.rs @@ -6,7 +6,7 @@ use crate::{ }; use fixedbitset::FixedBitSet; use serde::{Deserialize, Serialize}; -use smallvec::{SmallVec, smallvec}; +use smallvec::{smallvec, SmallVec}; use crate::{ common::{HashMap, HashSet, IndexSet}, diff --git a/core-relations/src/hash_index/tests.rs b/core-relations/src/hash_index/tests.rs index 91cbfb833..fc35130fb 100644 --- a/core-relations/src/hash_index/tests.rs +++ b/core-relations/src/hash_index/tests.rs @@ -1,9 +1,9 @@ use crate::numeric_id::NumericId; use crate::{ - TupleIndex, table_shortcuts::{fill_table, v}, table_spec::{ColumnId, WrappedTable}, + TupleIndex, }; use super::Index; diff --git a/core-relations/src/lib.rs b/core-relations/src/lib.rs index 724d7798f..7d0e66140 100644 --- a/core-relations/src/lib.rs +++ b/core-relations/src/lib.rs @@ -27,8 +27,8 @@ pub use base_values::{BaseValue, BaseValueId, BaseValuePrinter, BaseValues, Boxe pub use common::Value; pub use containers::{ContainerValue, ContainerValueId, ContainerValues}; pub use free_join::{ - AtomId, CounterId, Database, ExternalFunction, ExternalFunctionId, TableId, Variable, - make_external_func, plan::PlanStrategy, + make_external_func, plan::PlanStrategy, AtomId, CounterId, Database, ExternalFunction, + ExternalFunctionId, TableId, Variable, }; pub use hash_index::TupleIndex; pub use offsets::{OffsetRange, RowId, Subset, SubsetRef}; diff --git a/core-relations/src/offsets/mod.rs b/core-relations/src/offsets/mod.rs index 9010689a2..830ce0d5f 100644 --- a/core-relations/src/offsets/mod.rs +++ b/core-relations/src/offsets/mod.rs @@ -2,11 +2,11 @@ use std::{cmp, fmt, mem}; use serde::{Deserialize, Serialize}; -use crate::numeric_id::{NumericId, define_id}; +use crate::numeric_id::{define_id, NumericId}; use crate::{ + pool::{with_pool_set, Clear, Pooled}, Pool, - pool::{Clear, Pooled, with_pool_set}, }; define_id!(pub RowId, u32, "a numeric offset into a table"); diff --git a/core-relations/src/offsets/tests.rs b/core-relations/src/offsets/tests.rs index 214a4b44b..e9d2836a1 100644 --- a/core-relations/src/offsets/tests.rs +++ b/core-relations/src/offsets/tests.rs @@ -1,6 +1,6 @@ use crate::numeric_id::NumericId; -use crate::{OffsetRange, Subset, common::HashSet, pool::with_pool_set}; +use crate::{common::HashSet, pool::with_pool_set, OffsetRange, Subset}; use super::{Offsets, RowId, SortedOffsetVector}; @@ -91,11 +91,10 @@ fn intersect() { #[test] fn iter_bounded() { let mut s1 = Subset::empty(); - assert!( - s1.as_ref() - .iter_bounded(0, 100, |_| panic!("this should never be called")) - .is_none() - ); + assert!(s1 + .as_ref() + .iter_bounded(0, 100, |_| panic!("this should never be called")) + .is_none()); let mut s2 = Subset::empty(); for i in 0..100 { s1.add_row_sorted(RowId::new(i)); diff --git a/core-relations/src/pool/mod.rs b/core-relations/src/pool/mod.rs index 347c9620d..f8a831545 100644 --- a/core-relations/src/pool/mod.rs +++ b/core-relations/src/pool/mod.rs @@ -11,20 +11,20 @@ use std::{ }; use crate::{ - AtomId, numeric_id::{DenseIdMap, IdVec}, + AtomId, }; use fixedbitset::FixedBitSet; use hashbrown::HashTable; use crate::{ - ColumnId, RowId, action::{Instr, PredictedVals}, common::{HashMap, HashSet, IndexMap, IndexSet, ShardId, Value}, hash_index::{BufferedSubset, ColumnIndex, TableEntry}, offsets::SortedOffsetVector, table::TableEntry as SwTableEntry, table_spec::Constraint, + ColumnId, RowId, }; #[cfg(test)] diff --git a/core-relations/src/row_buffer/mod.rs b/core-relations/src/row_buffer/mod.rs index 9ba480fdf..a4426940c 100644 --- a/core-relations/src/row_buffer/mod.rs +++ b/core-relations/src/row_buffer/mod.rs @@ -6,13 +6,13 @@ use std::{cell::Cell, mem, ops::Deref}; use crate::numeric_id::NumericId; use egglog_concurrency::ParallelVecWriter; use rayon::iter::ParallelIterator; -use serde::{Deserialize, Deserializer, Serialize, ser::SerializeStruct}; +use serde::{ser::SerializeStruct, Deserialize, Deserializer, Serialize}; use smallvec::SmallVec; use crate::{ common::Value, offsets::RowId, - pool::{Pooled, with_pool_set}, + pool::{with_pool_set, Pooled}, }; #[cfg(test)] diff --git a/core-relations/src/table/rebuild.rs b/core-relations/src/table/rebuild.rs index 7e3bdfab7..53a0735c6 100644 --- a/core-relations/src/table/rebuild.rs +++ b/core-relations/src/table/rebuild.rs @@ -6,11 +6,11 @@ use crate::numeric_id::NumericId; use rayon::prelude::*; use crate::{ - ColumnId, ExecutionState, Offset, RowId, Subset, Table, TableId, TaggedRowBuffer, Value, - WrappedTable, hash_index::{ColumnIndex, Index}, parallel_heuristics::parallelize_rebuild, table_spec::{Rebuilder, WrappedTableRef}, + ColumnId, ExecutionState, Offset, RowId, Subset, Table, TableId, TaggedRowBuffer, Value, + WrappedTable, }; use super::SortedWritesTable; @@ -224,7 +224,7 @@ impl SortedWritesTable { fn incremental_rebuild(_uf_size: usize, _table_size: usize, _parallel: bool) -> bool { #[cfg(debug_assertions)] { - use rand::{Rng, rng}; + use rand::{rng, Rng}; rng().random::() } #[cfg(not(debug_assertions))] diff --git a/core-relations/src/table/tests.rs b/core-relations/src/table/tests.rs index 05feddae6..5075c9cac 100644 --- a/core-relations/src/table/tests.rs +++ b/core-relations/src/table/tests.rs @@ -1,11 +1,11 @@ use crate::numeric_id::NumericId; -use rand::{Rng, rng}; +use rand::{rng, Rng}; use crate::{ common::{HashMap, ShardId, Value}, offsets::{RowId, SubsetRef}, row_buffer::TaggedRowBuffer, - table::{TableEntry, hash_code}, + table::{hash_code, TableEntry}, table_shortcuts::{fill_table, v}, table_spec::{ColumnId, Constraint, Offset, Table, WrappedTable}, }; diff --git a/core-relations/src/table_spec.rs b/core-relations/src/table_spec.rs index 1c9b4fab8..6bae2c7d4 100644 --- a/core-relations/src/table_spec.rs +++ b/core-relations/src/table_spec.rs @@ -27,8 +27,7 @@ use crate::{ offsets::{RowId, Subset, SubsetRef}, pool::{with_pool_set, PoolSet, Pooled}, row_buffer::{RowBuffer, TaggedRowBuffer}, - DisplacedTable, DisplacedTableWithProvenance, - QueryEntry, TableId, Variable, + DisplacedTable, DisplacedTableWithProvenance, QueryEntry, TableId, Variable, }; define_id!(pub ColumnId, u32, "a particular column in a table"); @@ -553,7 +552,9 @@ impl<'de> Deserialize<'de> for WrappedTable { } else if inner.as_any().is::() { wrapper::() } else { - return Err(serde::de::Error::custom("unknown table type for WrappedTable")); + return Err(serde::de::Error::custom( + "unknown table type for WrappedTable", + )); }; Ok(WrappedTable { inner, wrapper }) diff --git a/core-relations/src/tests.rs b/core-relations/src/tests.rs index 6c4641970..f7bbaa755 100644 --- a/core-relations/src/tests.rs +++ b/core-relations/src/tests.rs @@ -9,7 +9,6 @@ use egglog_reports::ReportLevel; use crate::numeric_id::NumericId; use crate::{ - PlanStrategy, action::WriteVal, common::Value, free_join::{CounterId, Database, TableId}, @@ -19,6 +18,7 @@ use crate::{ table_shortcuts::v, table_spec::{ColumnId, Constraint}, uf::DisplacedTable, + PlanStrategy, }; /// On MacOs the system allocator is vulenrable to contention, causing tests to execute quite @@ -1052,7 +1052,11 @@ fn call_external_with_fallback() { let inc = db.add_external_function(Box::new(make_external_func(|_, args| { let [x] = args else { panic!() }; - if x.rep() == 5 { None } else { Some(x.inc()) } + if x.rep() == 5 { + None + } else { + Some(x.inc()) + } }))); let mut rsb = RuleSetBuilder::new(&mut db); @@ -1103,8 +1107,8 @@ fn early_stop() { // External function that triggers early stop after 1000 calls. let call_count = Arc::new(Mutex::new(0usize)); let call_count_clone = call_count.clone(); - let stop_trigger = db.add_external_function(Box::new(make_external_func( - move |exec_state, args| { + let stop_trigger = + db.add_external_function(Box::new(make_external_func(move |exec_state, args| { let mut count = call_count_clone.lock().unwrap(); *count += 1; @@ -1114,8 +1118,7 @@ fn early_stop() { let [x] = args else { panic!() }; Some(*x) - }, - ))); + }))); // Build a rule that scans the table and calls the external function. let mut rsb = RuleSetBuilder::new(&mut db); diff --git a/core-relations/src/uf/mod.rs b/core-relations/src/uf/mod.rs index 80c1402f4..ca589c775 100644 --- a/core-relations/src/uf/mod.rs +++ b/core-relations/src/uf/mod.rs @@ -9,11 +9,10 @@ use std::{ use crate::numeric_id::{DenseIdMap, NumericId}; use crossbeam_queue::SegQueue; use indexmap::IndexMap; -use petgraph::{Direction, Graph, algo::dijkstra, graph::NodeIndex, visit::EdgeRef}; +use petgraph::{algo::dijkstra, graph::NodeIndex, visit::EdgeRef, Direction, Graph}; use serde::{Deserialize, Serialize}; use crate::{ - TableChange, TaggedRowBuffer, action::ExecutionState, common::{HashMap, IndexSet, Value}, offsets::{OffsetRange, RowId, Subset, SubsetRef}, @@ -23,6 +22,7 @@ use crate::{ ColumnId, Constraint, Generation, MutationBuffer, Offset, Rebuilder, Row, Table, TableSpec, TableVersion, WrappedTableRef, }, + TableChange, TaggedRowBuffer, }; #[cfg(test)] diff --git a/core-relations/src/uf/tests.rs b/core-relations/src/uf/tests.rs index e1d4f29c5..08c25289d 100644 --- a/core-relations/src/uf/tests.rs +++ b/core-relations/src/uf/tests.rs @@ -1,10 +1,10 @@ use crate::numeric_id::NumericId; use crate::{ - DisplacedTableWithProvenance, ProofStep, common::Value, table_spec::{ColumnId, Constraint, Table}, uf::ProofReason, + DisplacedTableWithProvenance, ProofStep, }; use super::DisplacedTable; diff --git a/egglog-bridge/examples/ac.rs b/egglog-bridge/examples/ac.rs index e6a83b16e..2ad62e23e 100644 --- a/egglog-bridge/examples/ac.rs +++ b/egglog-bridge/examples/ac.rs @@ -1,4 +1,4 @@ -use egglog_bridge::{ColumnTy, DefaultVal, EGraph, FunctionConfig, MergeFn, define_rule}; +use egglog_bridge::{define_rule, ColumnTy, DefaultVal, EGraph, FunctionConfig, MergeFn}; use mimalloc::MiMalloc; diff --git a/egglog-bridge/examples/math.rs b/egglog-bridge/examples/math.rs index ccedbb13f..986da5e33 100644 --- a/egglog-bridge/examples/math.rs +++ b/egglog-bridge/examples/math.rs @@ -1,5 +1,5 @@ use egglog_bridge::{ - ColumnTy, DefaultVal, EGraph, FunctionConfig, MergeFn, add_expressions, define_rule, + add_expressions, define_rule, ColumnTy, DefaultVal, EGraph, FunctionConfig, MergeFn, }; use mimalloc::MiMalloc; use num_rational::Rational64; diff --git a/egglog-bridge/src/lib.rs b/egglog-bridge/src/lib.rs index 8d8bba5a4..b17177a93 100644 --- a/egglog-bridge/src/lib.rs +++ b/egglog-bridge/src/lib.rs @@ -23,12 +23,12 @@ use crate::core_relations::{ ExternalFunction, ExternalFunctionId, MergeVal, Offset, PlanStrategy, SortedWritesTable, TableId, TaggedRowBuffer, Value, WrappedTable, }; -use crate::numeric_id::{DenseIdMap, DenseIdMapWithReuse, IdVec, NumericId, define_id}; +use crate::numeric_id::{define_id, DenseIdMap, DenseIdMapWithReuse, IdVec, NumericId}; use egglog_core_relations as core_relations; use egglog_numeric_id as numeric_id; use egglog_reports::{IterationReport, ReportLevel, RuleSetReport}; use hashbrown::HashMap; -use indexmap::{IndexMap, IndexSet, map::Entry}; +use indexmap::{map::Entry, IndexMap, IndexSet}; use log::info; use once_cell::sync::Lazy; pub use proof_format::{EqProofId, ProofStore, TermProofId}; diff --git a/egglog-bridge/src/macros.rs b/egglog-bridge/src/macros.rs index 32799d3b2..8592f22bb 100644 --- a/egglog-bridge/src/macros.rs +++ b/egglog-bridge/src/macros.rs @@ -1,9 +1,9 @@ use hashbrown::HashMap; use crate::{ - ColumnTy, FunctionId, QueryEntry, RuleBuilder, SourceExpr, SourceSyntax, rule::{Variable, VariableId}, syntax::SyntaxId, + ColumnTy, FunctionId, QueryEntry, RuleBuilder, SourceExpr, SourceSyntax, }; #[macro_export] diff --git a/egglog-bridge/src/proof_format.rs b/egglog-bridge/src/proof_format.rs index 8008acae7..fe8d38b11 100644 --- a/egglog-bridge/src/proof_format.rs +++ b/egglog-bridge/src/proof_format.rs @@ -3,10 +3,10 @@ use std::{hash::Hash, io, rc::Rc}; use crate::core_relations::Value; -use crate::numeric_id::{DenseIdMap, NumericId, define_id}; +use crate::numeric_id::{define_id, DenseIdMap, NumericId}; use indexmap::IndexSet; -use crate::{FunctionId, rule::VariableId}; +use crate::{rule::VariableId, FunctionId}; define_id!(pub TermProofId, u32, "an id identifying proofs of terms within a [`ProofStore`]"); define_id!(pub EqProofId, u32, "an id identifying proofs of equality between two terms within a [`ProofStore`]"); diff --git a/egglog-bridge/src/tests.rs b/egglog-bridge/src/tests.rs index dfa7f1f34..17fd92e56 100644 --- a/egglog-bridge/src/tests.rs +++ b/egglog-bridge/src/tests.rs @@ -3,15 +3,15 @@ use std::{ hash::Hash, slice, sync::{ - Arc, atomic::{AtomicUsize, Ordering}, + Arc, }, thread, }; use crate::core_relations; use crate::core_relations::{ - ContainerValue, ExternalFunctionId, Rebuilder, Value, make_external_func, + make_external_func, ContainerValue, ExternalFunctionId, Rebuilder, Value, }; use crate::numeric_id::NumericId; use log::debug; @@ -19,8 +19,8 @@ use num_rational::Rational64; use once_cell::sync::Lazy; use crate::{ - ColumnTy, DefaultVal, EGraph, FunctionConfig, FunctionId, MergeFn, ProofStore, QueryEntry, - add_expressions, define_rule, + add_expressions, define_rule, ColumnTy, DefaultVal, EGraph, FunctionConfig, FunctionId, + MergeFn, ProofStore, QueryEntry, }; /// Run a simple associativity/commutativity test. In addition to testing that the rules properly diff --git a/numeric-id/src/tests.rs b/numeric-id/src/tests.rs index 6e086d887..f452179c5 100644 --- a/numeric-id/src/tests.rs +++ b/numeric-id/src/tests.rs @@ -1,4 +1,4 @@ -use crate::{DenseIdMap, IdVec, NumericId, define_id}; +use crate::{define_id, DenseIdMap, IdVec, NumericId}; define_id!(pub(crate) Id, u32, "a unique id"); diff --git a/src/ast/expr.rs b/src/ast/expr.rs index 347a72271..9fe7ef76d 100644 --- a/src/ast/expr.rs +++ b/src/ast/expr.rs @@ -7,7 +7,7 @@ use std::hash::Hasher; use crate::ast::CorrespondingVar; use crate::core::ResolvedCall; -use crate::{ArcSort, sort}; +use crate::{sort, ArcSort}; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct ResolvedVar { diff --git a/src/scheduler.rs b/src/scheduler.rs index f158ea468..deda9c5ed 100644 --- a/src/scheduler.rs +++ b/src/scheduler.rs @@ -452,12 +452,10 @@ mod test { ); // Because of semi-naive, the exact rules that are run are more than just `test-rule` - assert!( - report - .search_and_apply_time_per_rule - .keys() - .all(|k| k.starts_with("test-rule")) - ); + assert!(report + .search_and_apply_time_per_rule + .keys() + .all(|k| k.starts_with("test-rule"))); assert_eq!( report.merge_time_per_ruleset.keys().collect::>(), [&"test".into()] diff --git a/src/sort/add_primitive/src/lib.rs b/src/sort/add_primitive/src/lib.rs index 43b809645..995329dad 100644 --- a/src/sort/add_primitive/src/lib.rs +++ b/src/sort/add_primitive/src/lib.rs @@ -2,7 +2,7 @@ use proc_macro::{Span, TokenStream}; use quote::quote; use syn::parse::{Parse, ParseStream, Result}; use syn::punctuated::Punctuated; -use syn::{Expr, Ident, LitStr, Token, braced, bracketed, parenthesized, parse_macro_input}; +use syn::{braced, bracketed, parenthesized, parse_macro_input, Expr, Ident, LitStr, Token}; /// This macro lets the user declare custom egglog primitives. /// It supports a few special features: diff --git a/union-find/benches/union-find.rs b/union-find/benches/union-find.rs index e007f8059..106d4566c 100644 --- a/union-find/benches/union-find.rs +++ b/union-find/benches/union-find.rs @@ -4,10 +4,10 @@ use std::{ thread, }; -use divan::{Bencher, counter::ItemsCount}; +use divan::{counter::ItemsCount, Bencher}; use egglog_concurrency::{Notification, ReadOptimizedLock}; -use egglog_union_find::{UnionFind, concurrent}; -use rand::{Rng, seq::SliceRandom}; +use egglog_union_find::{concurrent, UnionFind}; +use rand::{seq::SliceRandom, Rng}; fn main() { divan::main() diff --git a/union-find/src/concurrent/tests.rs b/union-find/src/concurrent/tests.rs index df8f34b97..5add6f388 100644 --- a/union-find/src/concurrent/tests.rs +++ b/union-find/src/concurrent/tests.rs @@ -1,15 +1,15 @@ use std::{ mem, sync::{ - Arc, atomic::{AtomicUsize, Ordering}, + Arc, }, thread, }; use super::buffer::Buffer; use crate::concurrent::UnionFind; -use crate::numeric_id::{NumericId, define_id}; +use crate::numeric_id::{define_id, NumericId}; use egglog_concurrency::Notification; #[derive(Clone)] @@ -110,21 +110,19 @@ fn uf_single_theaded() { }); } - assert!( - ids1.windows(2) - .all(|w| uf.find(w[0]) == uf.find(w[1]) && uf.same_set(w[0], w[1])) - ); + assert!(ids1 + .windows(2) + .all(|w| uf.find(w[0]) == uf.find(w[1]) && uf.same_set(w[0], w[1]))); assert!(ids2.windows(2).all(|w| uf.find(w[0]) == uf.find(w[1]))); assert_ne!(uf.find(ids1[0]), uf.find(ids2[0])); uf.union(ids1[5], ids2[20]); let target = uf.find(ids1[0]); - assert!( - ids1.iter() - .chain(ids2.iter()) - .all(|&id| uf.find(id) == target) - ); + assert!(ids1 + .iter() + .chain(ids2.iter()) + .all(|&id| uf.find(id) == target)); } #[test] @@ -158,10 +156,9 @@ fn uf_multi_threaded() { n1.notify(); threads_1.into_iter().for_each(|t| t.join().unwrap()); - assert!( - ids1.windows(2) - .all(|w| uf.find(w[0]) == uf.find(w[1]) && uf.same_set(w[0], w[1])) - ); + assert!(ids1 + .windows(2) + .all(|w| uf.find(w[0]) == uf.find(w[1]) && uf.same_set(w[0], w[1]))); assert!(ids2.windows(2).all(|w| uf.find(w[0]) == uf.find(w[1]))); assert_ne!(uf.find(ids1[0]), uf.find(ids2[0])); let threads_2 = (0..100) @@ -178,9 +175,8 @@ fn uf_multi_threaded() { threads_2.into_iter().for_each(|t| t.join().unwrap()); let target = uf.find(ids1[0]); - assert!( - ids1.iter() - .chain(ids2.iter()) - .all(|&id| uf.find(id) == target) - ); + assert!(ids1 + .iter() + .chain(ids2.iter()) + .all(|&id| uf.find(id) == target)); } diff --git a/union-find/src/tests.rs b/union-find/src/tests.rs index d895dbf92..7cdbfb1fc 100644 --- a/union-find/src/tests.rs +++ b/union-find/src/tests.rs @@ -1,4 +1,4 @@ -use crate::numeric_id::{NumericId, define_id}; +use crate::numeric_id::{define_id, NumericId}; use crate::UnionFind; @@ -32,9 +32,8 @@ fn basic_uf() { uf.union(ids1[5], ids2[20]); let target = uf.find(ids1[0]); - assert!( - ids1.iter() - .chain(ids2.iter()) - .all(|&id| uf.find(id) == target) - ); + assert!(ids1 + .iter() + .chain(ids2.iter()) + .all(|&id| uf.find(id) == target)); } From 8eaf3dfc916170f57cbc91f79844679c31d9e984 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 09:40:18 -0800 Subject: [PATCH 06/16] egglog prefix vars --- infra/nightly-resources/mega-easteregg.egg | 236 +++++++++--------- .../test-files/easteregg/Baidu__layer_0.egg | 4 +- .../easteregg/Bilibili__layer_5.egg | 4 +- .../easteregg/Bilibili__layer_56.egg | 4 +- .../easteregg/Bilibili__layer_57.egg | 4 +- .../test-files/easteregg/GitHub__layer_18.egg | 4 +- .../test-files/easteregg/GitHub__layer_4.egg | 4 +- .../test-files/easteregg/Globo__layer_29.egg | 4 +- .../easteregg/Instagram__layer_0.egg | 4 +- .../test-files/easteregg/Live__layer_1.egg | 4 +- .../easteregg/Mail_ru__layer_12.egg | 4 +- .../easteregg/Mail_ru__layer_13.egg | 4 +- .../easteregg/Mail_ru__layer_14.egg | 4 +- .../easteregg/Mail_ru__layer_15.egg | 4 +- .../easteregg/Mail_ru__layer_16.egg | 4 +- .../easteregg/Mail_ru__layer_18.egg | 4 +- .../easteregg/Mail_ru__layer_19.egg | 4 +- .../easteregg/Mail_ru__layer_41.egg | 4 +- .../easteregg/Mail_ru__layer_45.egg | 4 +- .../easteregg/Mail_ru__layer_49.egg | 4 +- .../easteregg/Microsoft_Bing__layer_7.egg | 4 +- .../easteregg/Microsoft_Bing__layer_8.egg | 4 +- .../easteregg/Pinterest__layer_106.egg | 4 +- .../easteregg/SharePoint__layer_1.egg | 4 +- .../test-files/easteregg/Temu__layer_0.egg | 4 +- .../easteregg/The_New_York_Times__layer_3.egg | 4 +- .../test-files/easteregg/Twitch__layer_27.egg | 4 +- .../test-files/easteregg/Twitch__layer_9.egg | 4 +- .../easteregg/Yahoo_JP__layer_1.egg | 4 +- .../easteregg/Yahoo_JP__layer_10.egg | 4 +- .../easteregg/Yahoo_JP__layer_3.egg | 4 +- .../test-files/easteregg/Yandex__layer_25.egg | 4 +- .../test-files/easteregg/Yandex__layer_26.egg | 4 +- .../test-files/easteregg/Yandex__layer_27.egg | 4 +- .../test-files/easteregg/Yandex__layer_28.egg | 4 +- .../test-files/easteregg/Yandex__layer_29.egg | 4 +- .../test-files/easteregg/Yandex__layer_66.egg | 4 +- .../easteregg/Zen_News__layer_0.egg | 4 +- .../easteregg/Zen_News__layer_29.egg | 4 +- .../easteregg/Zen_News__layer_30.egg | 4 +- .../easteregg/Zen_News__layer_31.egg | 4 +- .../easteregg/Zen_News__layer_32.egg | 4 +- .../easteregg/Zen_News__layer_69.egg | 4 +- .../test-files/easteregg/unit__ClipLayer.egg | 4 +- .../test-files/easteregg/unit__ClipRect_1.egg | 4 +- .../test-files/easteregg/unit__ClipRect_2.egg | 4 +- .../test-files/easteregg/unit__ClipRect_3.egg | 4 +- .../test-files/easteregg/unit__Draw.egg | 4 +- .../test-files/easteregg/unit__Save.egg | 4 +- .../easteregg/unit__SaveLayer_1.egg | 4 +- .../easteregg/unit__SaveLayer_2.egg | 4 +- .../easteregg/unit__SaveLayer_3.egg | 4 +- .../easteregg/unit__SaveLayer_4.egg | 4 +- .../easteregg/unit__SaveLayer_5.egg | 4 +- .../easteregg/unit__nested_SaveLayer_1.egg | 4 +- .../easteregg/unit__nested_SaveLayer_2.egg | 4 +- .../easteregg/unit__noop_SaveLayer.egg | 4 +- .../easteregg/unit__noop_Save_1.egg | 4 +- .../easteregg/unit__noop_Save_2.egg | 4 +- .../easteregg/unit__noop_Save_3.egg | 4 +- 60 files changed, 236 insertions(+), 236 deletions(-) diff --git a/infra/nightly-resources/mega-easteregg.egg b/infra/nightly-resources/mega-easteregg.egg index 1df80e78b..7ecbf5406 100644 --- a/infra/nightly-resources/mega-easteregg.egg +++ b/infra/nightly-resources/mega-easteregg.egg @@ -108,591 +108,591 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test1 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 443.0 264.0 837.0 304.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 443.0 264.0 837.0 304.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (SaveLayer (Draw (Empty) (Rect 483.0 272.0 745.0 296.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 13)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11)) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 0.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 754.0 270.0 831.0 298.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 764.953 289.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 540.0 258.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 0.5 0.0 0.0 505.0 0.0 0.5 0.0 41.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.011764705882352941 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 461.0 0.0 1.0 0.0 275.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 33) (Paint (Color 1.0 0.2 0.3568627450980392 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 0.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 469.0 0.0 1.0 0.0 274.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 366.0 -0.0273438 -12.3047 57.75 1.94141) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 370.984 366.0 -0.0292969 -13.1836 61.875 2.08008) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 396.0 -1.0 -16.0938 213.328 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 396.0 0.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 432.0 -1.0 -16.0938 253.344 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 432.0 -1.0 -15.0 128.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 468.0 0.0 -15.0 257.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 468.0 -1.0 -16.0938 183.242 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 504.0 -1.0 -15.0 241.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 504.0 -1.0 -16.0938 98.7969 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 540.0 -1.0 -15.0 208.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 540.0 -10.6328 -16.0938 194.594 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 925.0 366.0 -1.0 -13.0 43.0 3.0) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 77) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 907.0 367.0 -0.03125 -14.0625 66.0 2.21875) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 16.0 -0.0351562 -15.8203 74.25 2.49609) (Paint (Color 1.0 0.9647058823529412 0.18823529411764706 0.3176470588235294) (SrcOver) (Solid) (IdFilter) 83) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix -1.0 0.0 0.0 328.0 0.0 -1.0 0.0 399.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 397.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 869.0 394.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.996078431372549 0.17647058823529413 0.27450980392156865) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 600.344 430.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 112) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 603.0 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 121) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.25 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Full) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.9803921568627451 0.6627450980392157 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 790.797 502.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 555.0 538.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.0 212.0 -1.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Intersect (Full) (RRect 315.0 187.0 861.0 227.0 8.0 8.0 0.0 0.0)) (Rect 331.0 195.0 742.0 217.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 161) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 162) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 163) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 164) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.0 213.0 -1.0 -16.0 69.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Full) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 60.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 170) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 24.0 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 171) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 74.0 35.0 -8.63916 -13.0762 62.1499 4.22119) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 172) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 141.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 173) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 191.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 174) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 241.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 175) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.391 35.0 0.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 341.391 35.0 0.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 177) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 391.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 178) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 78.0 42.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 181) (Full) (Matrix 0.333333 0.0 0.0 441.0 0.0 0.333333 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 491.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 183) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 1110.0 24.0 1137.0 37.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 184) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1150.0 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 185) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1208.0 17.0 1256.0 41.0 6.0 6.0 6.0 6.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 186) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1219.0 33.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 187) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test1 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 443.0 264.0 837.0 304.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 443.0 264.0 837.0 304.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (SaveLayer (Draw (Empty) (Rect 483.0 272.0 745.0 296.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 13)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11)) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 0.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 754.0 270.0 831.0 298.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 764.953 289.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 540.0 258.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 0.5 0.0 0.0 505.0 0.0 0.5 0.0 41.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.011764705882352941 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 461.0 0.0 1.0 0.0 275.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 33) (Paint (Color 1.0 0.2 0.3568627450980392 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 0.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 469.0 0.0 1.0 0.0 274.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 366.0 -0.0273438 -12.3047 57.75 1.94141) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 370.984 366.0 -0.0292969 -13.1836 61.875 2.08008) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 396.0 -1.0 -16.0938 213.328 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 396.0 0.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 432.0 -1.0 -16.0938 253.344 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 432.0 -1.0 -15.0 128.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 468.0 0.0 -15.0 257.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 468.0 -1.0 -16.0938 183.242 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 504.0 -1.0 -15.0 241.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 504.0 -1.0 -16.0938 98.7969 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 540.0 -1.0 -15.0 208.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 540.0 -10.6328 -16.0938 194.594 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 925.0 366.0 -1.0 -13.0 43.0 3.0) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 77) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 907.0 367.0 -0.03125 -14.0625 66.0 2.21875) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 16.0 -0.0351562 -15.8203 74.25 2.49609) (Paint (Color 1.0 0.9647058823529412 0.18823529411764706 0.3176470588235294) (SrcOver) (Solid) (IdFilter) 83) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix -1.0 0.0 0.0 328.0 0.0 -1.0 0.0 399.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 397.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 869.0 394.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.996078431372549 0.17647058823529413 0.27450980392156865) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 600.344 430.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 112) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 603.0 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 121) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.25 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Full) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.9803921568627451 0.6627450980392157 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 790.797 502.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 555.0 538.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.0 212.0 -1.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Intersect (Full) (RRect 315.0 187.0 861.0 227.0 8.0 8.0 0.0 0.0)) (Rect 331.0 195.0 742.0 217.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 161) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 162) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 163) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 164) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.0 213.0 -1.0 -16.0 69.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Full) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 60.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 170) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 24.0 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 171) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 74.0 35.0 -8.63916 -13.0762 62.1499 4.22119) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 172) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 141.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 173) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 191.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 174) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 241.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 175) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.391 35.0 0.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 341.391 35.0 0.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 177) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 391.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 178) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 78.0 42.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 181) (Full) (Matrix 0.333333 0.0 0.0 441.0 0.0 0.333333 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 491.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 183) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 1110.0 24.0 1137.0 37.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 184) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1150.0 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 185) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1208.0 17.0 1256.0 41.0 6.0 6.0 6.0 6.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 186) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1219.0 33.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 187) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test1 + $test1 ) -(let test2 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (Color 1.0 0.5764705882352941 0.5607843137254902 0.48627450980392156) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 60.0 -133.0 630.0 658.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 8)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (TextBlob 75.0 609.0 -1.0 -16.0 205.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 75.0 590.0 291.0 615.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 78.0 627.0 86.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 110.0 627.0 118.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 126.0 627.0 134.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 142.0 627.0 150.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 158.0 627.0 166.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 174.0 627.0 182.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 190.0 627.0 198.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 627.0 214.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 547.0 587.0 575.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 495.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 587.0 587.0 615.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 535.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test2 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (Color 1.0 0.5764705882352941 0.5607843137254902 0.48627450980392156) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 60.0 -133.0 630.0 658.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 8)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (TextBlob 75.0 609.0 -1.0 -16.0 205.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 75.0 590.0 291.0 615.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 78.0 627.0 86.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 110.0 627.0 118.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 126.0 627.0 134.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 142.0 627.0 150.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 158.0 627.0 166.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 174.0 627.0 182.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 190.0 627.0 198.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 627.0 214.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 547.0 587.0 575.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 495.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 587.0 587.0 615.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 535.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test2 + $test2 ) -(let test3 (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 10) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 0.0 200.0 34.0 8.0 8.0 8.0 8.0) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 22.0 -1.0 -12.0 149.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 21) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 1015.0 0.0 1.0 0.0 516.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.6 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (Path 27) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 1207.0 0.0 1.0 0.0 517.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test3 (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 10) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 0.0 200.0 34.0 8.0 8.0 8.0 8.0) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 22.0 -1.0 -12.0 149.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 21) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 1015.0 0.0 1.0 0.0 516.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.6 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (Path 27) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 1207.0 0.0 1.0 0.0 517.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test3 + $test3 ) -(let test4 (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 24.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 48.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Empty) (Path 13) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 22) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 16)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10)) (Path 27) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1101.0 48.0 -1.0 -12.0 53.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 86.0 37.0 -1.0 -13.0 28.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 124.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 162.0 37.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 37.0 -1.0 -13.0 42.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 280.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 318.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.0 37.0 -1.0 -13.0 71.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 515.0 25.0 532.0 39.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 862.0 14.0 898.0 50.0 18.0 18.0 18.0 18.0) (Paint (Color 1.0 0.0 0.6823529411764706 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 866.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 50) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 51) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 908.0 48.0 -1.0 -12.0 40.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 957.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 64) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 65) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 993.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 69) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 73) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 74) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1029.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 80) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 81) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 81) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 82) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 82) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1065.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 84) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1166.0 15.0 1256.0 49.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.984313725490196 0.4470588235294118 0.6) (SrcOver) (Solid) (IdFilter) 85) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 89) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 89) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 90) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 91) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 91) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1208.5 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Draw (Empty) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.9450980392156862 0.9490196078431372 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 96) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 557.0 38.0 0.0 -13.0 99.0 3.0) (Paint (Color 1.0 0.3803921568627451 0.4 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 557.0 23.0 764.0 43.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 106) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 0.0 0.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 815.0 0.0 1.0 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94))) +(let $test4 (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 24.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 48.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Empty) (Path 13) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 22) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 16)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10)) (Path 27) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1101.0 48.0 -1.0 -12.0 53.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 86.0 37.0 -1.0 -13.0 28.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 124.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 162.0 37.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 37.0 -1.0 -13.0 42.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 280.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 318.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.0 37.0 -1.0 -13.0 71.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 515.0 25.0 532.0 39.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 862.0 14.0 898.0 50.0 18.0 18.0 18.0 18.0) (Paint (Color 1.0 0.0 0.6823529411764706 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 866.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 50) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 51) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 908.0 48.0 -1.0 -12.0 40.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 957.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 64) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 65) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 993.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 69) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 73) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 74) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1029.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 80) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 81) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 81) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 82) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 82) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1065.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 84) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1166.0 15.0 1256.0 49.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.984313725490196 0.4470588235294118 0.6) (SrcOver) (Solid) (IdFilter) 85) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 89) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 89) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 90) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 91) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 91) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1208.5 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Draw (Empty) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.9450980392156862 0.9490196078431372 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 96) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 557.0 38.0 0.0 -13.0 99.0 3.0) (Paint (Color 1.0 0.3803921568627451 0.4 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 557.0 23.0 764.0 43.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 106) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 0.0 0.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 815.0 0.0 1.0 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test4 + $test4 ) -(let test5 (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 1220.0 0.0 1256.0 36.0) (Paint (Color 0.7490196078431373 0.050980392156862744 0.06666666666666667 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (RRect 1221.0 1.0 1255.0 35.0 17.0 17.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 8) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Path 13) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.5 0.0 0.0 1226.0 0.0 1.5 0.0 6.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test5 (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 1220.0 0.0 1256.0 36.0) (Paint (Color 0.7490196078431373 0.050980392156862744 0.06666666666666667 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (RRect 1221.0 1.0 1255.0 35.0 17.0 17.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 8) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Path 13) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.5 0.0 0.0 1226.0 0.0 1.5 0.0 6.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test5 + $test5 ) -(let test6 (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 17.5 866.5 1262.5 1570.0 23.5 23.5 23.5 0.0) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 12)) (Rect 1250.5 866.0 1263.0 1570.1)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Rect 17.0 866.0 29.5 1570.1)) (Path 18)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Plus) (Solid) (IdFilter) 26)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 30)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0) (Paint (Color 1.0 0.08235294117647059 0.10196078431372549 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 2496.0 1416.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0)) (Matrix 0.482372 0.0 0.0 38.0 0.0 0.482345 0.0 127.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 1569.0 1280.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test6 (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 17.5 866.5 1262.5 1570.0 23.5 23.5 23.5 0.0) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 12)) (Rect 1250.5 866.0 1263.0 1570.1)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Rect 17.0 866.0 29.5 1570.1)) (Path 18)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Plus) (Solid) (IdFilter) 26)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 30)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0) (Paint (Color 1.0 0.08235294117647059 0.10196078431372549 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 2496.0 1416.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0)) (Matrix 0.482372 0.0 0.0 38.0 0.0 0.482345 0.0 127.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 1569.0 1280.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test6 + $test6 ) -(let test7 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (ImageRect 36.0 3745.0 158.0 3845.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 36.0 3745.0 158.0 3845.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) +(let $test7 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (ImageRect 36.0 3745.0 158.0 3845.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 36.0 3745.0 158.0 3845.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test7 + $test7 ) -(let test8 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 585.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 324.0 264.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.70679 0.0 0.0 161.0 0.0 1.70455 0.0 68.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 59.0 1108.0 467.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 845.0 105.0 1020.0 156.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 10) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 193.0 1059.0 229.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 215.0 0.0 -10.0 197.025 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 807.0 193.0 1059.0 229.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 237.0 1059.0 273.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 259.0 0.0 -10.0 54.8223 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 807.0 237.0 1059.0 273.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (RRect 798.0 288.0 1068.0 320.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 25) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 912.25 309.0 -0.0751953 -12.0 40.9922 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.7019607843137254 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24)) (Rect 798.0 348.0 905.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 923.078 354.0 -1.03809 -11.0 20.042 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 960.0 348.0 1068.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 877.562 402.0 -0.0751953 -12.0 142.775 4.0) (Paint (Color 1.0 0.20784313725490197 0.4745098039215686 0.9176470588235294) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.25 0.0 0.0 850.0 0.0 1.25 0.0 387.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.906 441.0 -0.0751953 -12.0 116.056 4.0) (Paint (Color 1.0 0.0 0.21568627450980393 0.4196078431372549) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 477.0 1108.0 538.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 829.484 513.0 -0.0751953 -12.0 152.416 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 981.016 513.0 0.0 0.0 0.0 0.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 984.812 513.0 -1.0752 -12.0 51.877 4.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 585.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.188 619.0 0.0 -10.0 28.7031 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 171.516 619.0 -1.0 -10.0 34.5488 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 221.438 619.0 0.0 -10.0 26.0117 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 262.766 619.0 -1.0 -10.0 27.918 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 305.969 619.0 0.0 -10.0 26.7969 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 348.094 619.0 -1.0 -10.0 19.709 1.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 383.016 619.0 0.0 -10.0 42.7637 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.297 619.0 -1.0 -10.0 144.184 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 54) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 599.0 619.0 -1.0 -10.0 35.418 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 55) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.703 619.0 0.0 -10.0 55.3633 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 56) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 720.359 619.0 0.0 -10.0 81.7871 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 57) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 817.016 619.0 -1.0 -10.0 46.9082 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 58) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.219 619.0 -1.0 -10.0 183.18 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1077.69 619.0 0.0 -10.0 75.752 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.266 655.0 0.0 -10.0 41.7441 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 61) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix -0.5 0.0 0.0 578.0 0.0 -0.5 0.0 656.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 594.078 654.0 -1.0 -10.0 165.021 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test8 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 585.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 324.0 264.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.70679 0.0 0.0 161.0 0.0 1.70455 0.0 68.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 59.0 1108.0 467.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 845.0 105.0 1020.0 156.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 10) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 193.0 1059.0 229.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 215.0 0.0 -10.0 197.025 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 807.0 193.0 1059.0 229.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 237.0 1059.0 273.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 259.0 0.0 -10.0 54.8223 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 807.0 237.0 1059.0 273.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (RRect 798.0 288.0 1068.0 320.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 25) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 912.25 309.0 -0.0751953 -12.0 40.9922 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.7019607843137254 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24)) (Rect 798.0 348.0 905.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 923.078 354.0 -1.03809 -11.0 20.042 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 960.0 348.0 1068.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 877.562 402.0 -0.0751953 -12.0 142.775 4.0) (Paint (Color 1.0 0.20784313725490197 0.4745098039215686 0.9176470588235294) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.25 0.0 0.0 850.0 0.0 1.25 0.0 387.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.906 441.0 -0.0751953 -12.0 116.056 4.0) (Paint (Color 1.0 0.0 0.21568627450980393 0.4196078431372549) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 477.0 1108.0 538.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 829.484 513.0 -0.0751953 -12.0 152.416 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 981.016 513.0 0.0 0.0 0.0 0.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 984.812 513.0 -1.0752 -12.0 51.877 4.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 585.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.188 619.0 0.0 -10.0 28.7031 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 171.516 619.0 -1.0 -10.0 34.5488 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 221.438 619.0 0.0 -10.0 26.0117 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 262.766 619.0 -1.0 -10.0 27.918 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 305.969 619.0 0.0 -10.0 26.7969 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 348.094 619.0 -1.0 -10.0 19.709 1.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 383.016 619.0 0.0 -10.0 42.7637 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.297 619.0 -1.0 -10.0 144.184 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 54) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 599.0 619.0 -1.0 -10.0 35.418 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 55) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.703 619.0 0.0 -10.0 55.3633 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 56) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 720.359 619.0 0.0 -10.0 81.7871 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 57) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 817.016 619.0 -1.0 -10.0 46.9082 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 58) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.219 619.0 -1.0 -10.0 183.18 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1077.69 619.0 0.0 -10.0 75.752 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.266 655.0 0.0 -10.0 41.7441 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 61) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix -0.5 0.0 0.0 578.0 0.0 -0.5 0.0 656.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 594.078 654.0 -1.0 -10.0 165.021 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test8 + $test8 ) -(let test9 (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 774.0 457.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (RRect 25.0 25.0 749.0 432.0 8.0 8.0 8.0 8.0)) (Matrix 0.870192 0.0 0.0 25.0 0.0 0.869658 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 41.0 41.0 89.0 89.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 41.0 41.0 89.0 89.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 57.3281 73.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test9 (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 774.0 457.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (RRect 25.0 25.0 749.0 432.0 8.0 8.0 8.0 8.0)) (Matrix 0.870192 0.0 0.0 25.0 0.0 0.869658 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 41.0 41.0 89.0 89.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 41.0 41.0 89.0 89.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 57.3281 73.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test9 + $test9 ) -(let test10 (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1161.0 -9.96826 -15.0879 349.351 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1181.0 -9.96826 -15.0879 374.033 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1201.0 -9.96826 -15.0879 402.832 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 759.188 1201.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1111.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1111.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Rect 362.0 1238.0 792.0 1481.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 28)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20)) (TextBlob 378.0 1591.0 -9.96826 -15.0879 396.365 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1611.0 -9.96826 -15.0879 389.788 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.141 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1521.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 514.25 1521.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Rect 362.0 1648.0 792.0 1891.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 58)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (TextBlob 378.0 2001.0 -9.96826 -15.0879 374.949 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2021.0 -9.96826 -15.0879 402.085 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 754.266 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1931.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 85) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 88)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 80)) (TextBlob 378.0 2411.0 -9.96826 -15.0879 359.202 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2431.0 -9.96826 -15.0879 401.697 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.406 2431.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2341.0 -8.63916 -13.0762 116.886 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 516.156 2341.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 118)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 110)) (Rect 362.0 2709.0 792.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2821.0 -9.96826 -15.0879 343.835 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2841.0 -9.96826 -15.0879 376.399 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.781 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 2751.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 138) (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Rect 362.0 2877.0 792.0 3120.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 149)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 141)) (Rect 362.0 3119.0 792.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 153) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3231.0 -9.96826 -15.0879 381.145 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3251.0 -9.96826 -15.0879 400.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.047 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 3161.0 -8.63916 -13.0762 121.247 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 520.516 3161.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1137.0 -15.2109 -17.9453 349.961 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 169) (Intersect (Full) (Rect 378.0 1122.0 776.0 1142.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1547.0 -15.2109 -17.9453 374.312 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 173) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1567.0 -15.2109 -17.9453 324.297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 174) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1957.0 -15.2109 -17.9453 381.75 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1977.0 -15.2109 -17.9453 79.4297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 179) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2367.0 -15.2109 -17.9453 376.117 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2387.0 -15.2109 -17.9453 49.7891 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2777.0 -15.2109 -17.9453 349.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2797.0 -15.2109 -17.9453 76.9375 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3187.0 -15.2109 -17.9453 373.453 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 193) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3207.0 -15.2109 -17.9453 74.7266 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 200)) (RRect 378.5 1082.5 409.5 1113.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 205) (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 213) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 211)) (RRect 378.5 1492.5 409.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 216) (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 222)) (RRect 378.5 1902.5 409.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 227) (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1915.0 -8.63916 -13.0762 332.554 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 230) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Rect 418.0 1902.0 728.0 1918.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 238) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 237)) (RRect 378.5 2312.5 409.5 2343.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 242) (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2325.0 -8.63916 -13.0762 169.559 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 245) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Rect 418.0 2312.0 566.0 2328.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 253) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252)) (RRect 378.5 2722.5 409.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 257) (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2735.0 -8.63916 -13.0762 206.356 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Rect 418.0 2722.0 606.0 2738.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 268) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 269) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 267)) (RRect 378.5 3132.5 409.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 272) (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test10 (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1161.0 -9.96826 -15.0879 349.351 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1181.0 -9.96826 -15.0879 374.033 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1201.0 -9.96826 -15.0879 402.832 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 759.188 1201.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1111.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1111.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Rect 362.0 1238.0 792.0 1481.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 28)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20)) (TextBlob 378.0 1591.0 -9.96826 -15.0879 396.365 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1611.0 -9.96826 -15.0879 389.788 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.141 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1521.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 514.25 1521.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Rect 362.0 1648.0 792.0 1891.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 58)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (TextBlob 378.0 2001.0 -9.96826 -15.0879 374.949 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2021.0 -9.96826 -15.0879 402.085 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 754.266 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1931.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 85) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 88)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 80)) (TextBlob 378.0 2411.0 -9.96826 -15.0879 359.202 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2431.0 -9.96826 -15.0879 401.697 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.406 2431.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2341.0 -8.63916 -13.0762 116.886 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 516.156 2341.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 118)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 110)) (Rect 362.0 2709.0 792.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2821.0 -9.96826 -15.0879 343.835 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2841.0 -9.96826 -15.0879 376.399 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.781 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 2751.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 138) (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Rect 362.0 2877.0 792.0 3120.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 149)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 141)) (Rect 362.0 3119.0 792.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 153) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3231.0 -9.96826 -15.0879 381.145 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3251.0 -9.96826 -15.0879 400.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.047 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 3161.0 -8.63916 -13.0762 121.247 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 520.516 3161.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1137.0 -15.2109 -17.9453 349.961 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 169) (Intersect (Full) (Rect 378.0 1122.0 776.0 1142.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1547.0 -15.2109 -17.9453 374.312 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 173) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1567.0 -15.2109 -17.9453 324.297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 174) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1957.0 -15.2109 -17.9453 381.75 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1977.0 -15.2109 -17.9453 79.4297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 179) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2367.0 -15.2109 -17.9453 376.117 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2387.0 -15.2109 -17.9453 49.7891 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2777.0 -15.2109 -17.9453 349.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2797.0 -15.2109 -17.9453 76.9375 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3187.0 -15.2109 -17.9453 373.453 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 193) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3207.0 -15.2109 -17.9453 74.7266 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 200)) (RRect 378.5 1082.5 409.5 1113.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 205) (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 213) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 211)) (RRect 378.5 1492.5 409.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 216) (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 222)) (RRect 378.5 1902.5 409.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 227) (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1915.0 -8.63916 -13.0762 332.554 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 230) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Rect 418.0 1902.0 728.0 1918.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 238) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 237)) (RRect 378.5 2312.5 409.5 2343.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 242) (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2325.0 -8.63916 -13.0762 169.559 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 245) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Rect 418.0 2312.0 566.0 2328.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 253) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252)) (RRect 378.5 2722.5 409.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 257) (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2735.0 -8.63916 -13.0762 206.356 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Rect 418.0 2722.0 606.0 2738.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 268) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 269) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 267)) (RRect 378.5 3132.5 409.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 272) (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test10 + $test10 ) -(let test11 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 289.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 289.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) +(let $test11 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 289.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 289.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test11 + $test11 ) -(let test12 (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1137.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1161.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1181.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 829.0 1238.0 1070.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.397035 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1070.0 1238.0 1071.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1094.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1082.0 915.0 1099.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1111.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 1111.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 1111.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 31) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1082.0 856.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 829.5 1237.5 1221.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Rect 808.0 1238.0 1238.0 1481.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 57)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (Rect 808.0 1480.0 1238.0 1481.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1571.0 -9.96826 -15.0879 378.398 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1591.0 -9.96826 -15.0879 407.197 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1611.0 -9.96826 -15.0879 397.983 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1200.75 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1521.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1521.0 -8.63916 -13.0762 116.613 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Rect 808.0 1648.0 1238.0 1891.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 89)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 81)) (Rect 808.0 1890.0 1238.0 1891.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1981.0 -9.96826 -15.0879 358.33 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2001.0 -9.96826 -15.0879 415.767 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 99) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2021.0 -9.96826 -15.0879 353.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 100) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1155.16 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1931.0 -8.63916 -13.0762 122.814 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1547.0 -15.2109 -17.9453 363.328 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 824.0 1532.0 1222.0 1552.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 118) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 116)) (RRect 824.5 1492.5 855.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 121) (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1505.0 -8.63916 -13.0762 147.12 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Rect 864.0 1492.0 992.0 1508.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test12 (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1137.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1161.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1181.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 829.0 1238.0 1070.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.397035 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1070.0 1238.0 1071.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1094.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1082.0 915.0 1099.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1111.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 1111.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 1111.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 31) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1082.0 856.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 829.5 1237.5 1221.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Rect 808.0 1238.0 1238.0 1481.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 57)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (Rect 808.0 1480.0 1238.0 1481.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1571.0 -9.96826 -15.0879 378.398 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1591.0 -9.96826 -15.0879 407.197 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1611.0 -9.96826 -15.0879 397.983 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1200.75 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1521.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1521.0 -8.63916 -13.0762 116.613 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Rect 808.0 1648.0 1238.0 1891.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 89)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 81)) (Rect 808.0 1890.0 1238.0 1891.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1981.0 -9.96826 -15.0879 358.33 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2001.0 -9.96826 -15.0879 415.767 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 99) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2021.0 -9.96826 -15.0879 353.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 100) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1155.16 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1931.0 -8.63916 -13.0762 122.814 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1547.0 -15.2109 -17.9453 363.328 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 824.0 1532.0 1222.0 1552.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 118) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 116)) (RRect 824.5 1492.5 855.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 121) (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1505.0 -8.63916 -13.0762 147.12 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Rect 864.0 1492.0 992.0 1508.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test12 + $test12 ) -(let test14 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test14 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test14 + $test14 ) -(let test15 (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2367.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2391.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2411.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 808.0 2058.0 1238.0 2300.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 820.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2324.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2312.0 915.0 2329.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2341.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 2341.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 2341.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2312.0 856.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2058.5 1237.5 2451.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 40) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 55)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 47)) (Rect 808.0 2709.0 1238.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2801.0 -9.96826 -15.0879 411.079 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2821.0 -9.96826 -15.0879 395.354 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2841.0 -9.96826 -15.0879 361.34 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1163.73 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 2751.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 84) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Rect 808.0 2877.0 1238.0 3120.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 87)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79)) (Rect 808.0 3119.0 1238.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 91) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3231.0 -9.96826 -15.0879 413.679 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3251.0 -9.96826 -15.0879 376.794 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1179.19 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3161.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 960.25 3161.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1957.0 -15.2109 -17.9453 324.258 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (Rect 824.0 1942.0 1222.0 1962.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2777.0 -15.2109 -17.9453 260.164 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Full) (Rect 824.0 2762.0 1222.0 2782.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3187.0 -15.2109 -17.9453 391.734 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3207.0 -15.2109 -17.9453 142.359 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 116) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122)) (RRect 824.5 1902.5 855.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 127) (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 133)) (RRect 824.5 2722.5 855.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 138) (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2735.0 -8.63916 -13.0762 190.722 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Rect 864.0 2722.0 1035.0 2738.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 149) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148)) (RRect 824.5 3132.5 855.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 153) (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 1238.5 1237.5 1631.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 155) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2468.5 1237.5 2861.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 156) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test15 (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2367.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2391.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2411.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 808.0 2058.0 1238.0 2300.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 820.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2324.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2312.0 915.0 2329.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2341.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 2341.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 2341.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2312.0 856.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2058.5 1237.5 2451.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 40) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 55)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 47)) (Rect 808.0 2709.0 1238.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2801.0 -9.96826 -15.0879 411.079 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2821.0 -9.96826 -15.0879 395.354 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2841.0 -9.96826 -15.0879 361.34 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1163.73 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 2751.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 84) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Rect 808.0 2877.0 1238.0 3120.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 87)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79)) (Rect 808.0 3119.0 1238.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 91) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3231.0 -9.96826 -15.0879 413.679 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3251.0 -9.96826 -15.0879 376.794 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1179.19 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3161.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 960.25 3161.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1957.0 -15.2109 -17.9453 324.258 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (Rect 824.0 1942.0 1222.0 1962.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2777.0 -15.2109 -17.9453 260.164 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Full) (Rect 824.0 2762.0 1222.0 2782.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3187.0 -15.2109 -17.9453 391.734 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3207.0 -15.2109 -17.9453 142.359 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 116) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122)) (RRect 824.5 1902.5 855.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 127) (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 133)) (RRect 824.5 2722.5 855.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 138) (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2735.0 -8.63916 -13.0762 190.722 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Rect 864.0 2722.0 1035.0 2738.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 149) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148)) (RRect 824.5 3132.5 855.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 153) (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 1238.5 1237.5 1631.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 155) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2468.5 1237.5 2861.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 156) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test15 + $test15 ) -(let test16 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) +(let $test16 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test16 + $test16 ) -(let test18 (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3665.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 3597.0 1238.0 3598.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3622.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3610.0 915.0 3627.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3639.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 3639.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 3639.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3610.0 856.0 3642.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 3356.5 1237.5 3705.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 36) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4005.0 -8.63916 -13.0762 130.273 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 975.547 4005.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4370.0 -8.63916 -13.0762 101.251 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 946.516 4370.0 -8.63916 -13.0762 114.245 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4031.0 -15.2109 -17.9453 397.727 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4051.0 -15.2109 -17.9453 232.688 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4396.0 -15.2109 -17.9453 251.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 824.0 4381.0 1222.0 4401.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 61)) (RRect 824.5 3976.5 855.5 4007.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 72)) (RRect 824.5 4341.5 855.5 4372.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 77) (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4354.0 -8.63916 -13.0762 360.134 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1205.38 4354.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 81) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.4392156862745098 0.5647058823529412 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 88)) (RRect 824.5 4707.5 855.5 4738.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 93) (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4720.0 -8.63916 -13.0762 105.301 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Rect 864.0 4707.0 951.0 4723.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test18 (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3665.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 3597.0 1238.0 3598.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3622.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3610.0 915.0 3627.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3639.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 3639.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 3639.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3610.0 856.0 3642.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 3356.5 1237.5 3705.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 36) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4005.0 -8.63916 -13.0762 130.273 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 975.547 4005.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4370.0 -8.63916 -13.0762 101.251 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 946.516 4370.0 -8.63916 -13.0762 114.245 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4031.0 -15.2109 -17.9453 397.727 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4051.0 -15.2109 -17.9453 232.688 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4396.0 -15.2109 -17.9453 251.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 824.0 4381.0 1222.0 4401.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 61)) (RRect 824.5 3976.5 855.5 4007.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 72)) (RRect 824.5 4341.5 855.5 4372.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 77) (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4354.0 -8.63916 -13.0762 360.134 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1205.38 4354.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 81) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.4392156862745098 0.5647058823529412 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 88)) (RRect 824.5 4707.5 855.5 4738.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 93) (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4720.0 -8.63916 -13.0762 105.301 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Rect 864.0 4707.0 951.0 4723.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test18 + $test18 ) -(let test19 (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 3963.0 792.0 3964.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 3928.0 780.0 3952.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 3944.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 3931.0 772.0 3947.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 3722.0 1238.0 3964.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 3721.0 1238.0 3964.0)) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) +(let $test19 (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 3963.0 792.0 3964.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 3928.0 780.0 3952.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 3944.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 3931.0 772.0 3947.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 3722.0 1238.0 3964.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 3721.0 1238.0 3964.0)) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test19 + $test19 ) -(let test20 (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4329.0 792.0 4330.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4293.0 780.0 4317.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4310.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4297.0 772.0 4313.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4088.0 1238.0 4329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4087.0 1238.0 4330.0)) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) +(let $test20 (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4329.0 792.0 4330.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4293.0 780.0 4317.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4310.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4297.0 772.0 4313.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4088.0 1238.0 4329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4087.0 1238.0 4330.0)) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test20 + $test20 ) -(let test21 (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4695.0 792.0 4696.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4659.0 780.0 4683.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4676.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4663.0 772.0 4679.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4453.0 1238.0 4695.0) (Paint (Color 1.0 0.7215686274509804 0.7215686274509804 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4453.0 1238.0 4696.0)) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) +(let $test21 (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4695.0 792.0 4696.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4659.0 780.0 4683.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4676.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4663.0 772.0 4679.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4453.0 1238.0 4695.0) (Paint (Color 1.0 0.7215686274509804 0.7215686274509804 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4453.0 1238.0 4696.0)) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test21 + $test21 ) -(let test22 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.4 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) +(let $test22 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.4 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test22 + $test22 ) -(let test23 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.8 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) +(let $test23 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.8 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test23 + $test23 ) -(let test24 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 80.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 6) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 10) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 12) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 13) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 15) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 17) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 18) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 19) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 28) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 26)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 21)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7)) (TextBlob 154.0 46.0 -0.15625 -13.0 57.6432 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 242.953 46.0 -1.15625 -13.0 40.1484 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 729.047 46.0 -1.15625 -13.0 46.7891 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 37) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 807.016 46.0 -0.15625 -14.0 87.1797 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 38) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 924.875 46.0 -1.15625 -13.0 51.4167 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1007.59 46.0 -0.15625 -13.0 43.3333 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 40) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1090.0 16.0 1167.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1105.61 46.0 -0.15625 -14.0 45.7891 5.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1175.0 16.0 1264.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9137254901960784 0.9137254901960784 0.9137254901960784) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1191.05 46.0 -1.15625 -14.0 57.9453 5.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test24 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 80.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 6) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 10) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 12) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 13) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 15) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 17) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 18) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 19) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 28) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 26)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 21)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7)) (TextBlob 154.0 46.0 -0.15625 -13.0 57.6432 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 242.953 46.0 -1.15625 -13.0 40.1484 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 729.047 46.0 -1.15625 -13.0 46.7891 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 37) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 807.016 46.0 -0.15625 -14.0 87.1797 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 38) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 924.875 46.0 -1.15625 -13.0 51.4167 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1007.59 46.0 -0.15625 -13.0 43.3333 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 40) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1090.0 16.0 1167.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1105.61 46.0 -0.15625 -14.0 45.7891 5.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1175.0 16.0 1264.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9137254901960784 0.9137254901960784 0.9137254901960784) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1191.05 46.0 -1.15625 -14.0 57.9453 5.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test24 + $test24 ) -(let test25 (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 778.0 460.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 7) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (RRect 25.0 25.0 753.0 435.0 4.0 4.0 4.0 4.0)) (Matrix 0.875 0.0 0.0 26.0 0.0 0.876068 0.0 26.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 206.0 413.0 254.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Full) (RRect 365.0 206.0 413.0 254.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 381.141 238.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test25 (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 778.0 460.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 7) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (RRect 25.0 25.0 753.0 435.0 4.0 4.0 4.0 4.0)) (Matrix 0.875 0.0 0.0 26.0 0.0 0.876068 0.0 26.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 206.0 413.0 254.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Full) (RRect 365.0 206.0 413.0 254.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 381.141 238.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test25 + $test25 ) -(let test26 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (SaveLayer (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 1436.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 759.0 1280.0 1436.0) (Paint (Color 1.0 0.11764705882352941 0.11764705882352941 0.11764705882352941) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 1239.0 -1.0752 -12.0 145.883 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 44.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 80.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 116.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 152.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 188.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 224.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 260.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 624.078 1239.0 -1.0752 -11.0 73.2334 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 824.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 874.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 924.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 974.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1024.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1074.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1124.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 82) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 25.0 0.0 0.0 945.0 0.0 12.0 0.0 1393.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 393.0 103.0 887.0 667.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 433.0 211.0 847.0 293.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.0 414.0 847.0 462.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 563.281 158.0 -1.22461 -17.0 154.65 5.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 111) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.0136719 0.0 0.0 549.0 0.0 0.0136719 0.0 175.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 568.688 187.0 -1.0752 -12.0 163.075 4.0) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 514.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 468.562 270.0 -0.117188 -13.0 130.921 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 727.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 703.734 270.0 -0.117188 -12.0 86.5635 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 605.703 444.0 -1.15625 -14.0 69.2734 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 125) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 583.203 490.0 696.797 491.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 129) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 642.193 489.5 649.705 491.8)) (Rect 668.193 489.5 675.705 491.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 583.203 489.0 -1.03809 -11.0 113.958 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 549.828 538.0 -1.0752 -12.0 181.086 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.234 626.0 -0.0380859 -11.0 190.139 4.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 633.875 627.0 717.0 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 633.875 626.0 -1.03809 -11.0 84.48 2.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 717.0 626.0 2.54199 -11.0 26.1479 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 746.688 627.0 834.953 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 140) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 785.75 626.5 791.238 628.8)) (Rect 827.251 626.5 832.739 628.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.688 626.0 -0.0380859 -11.0 89.7634 4.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 834.953 626.0 -0.0380859 -3.0 3.96191 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 143) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 454.688 289.0 -0.0380859 -11.0 158.839 2.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 704.062 289.0 -0.0380859 -11.0 86.0825 4.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 433.0 337.0 -0.0751953 -12.0 216.402 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.5 349.5 846.5 393.5 3.5 3.5 3.5 3.5) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Stroke) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 433.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 154) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 742.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 12.0 12.0 52.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 163) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 0.555556 0.0 0.0 524.0 0.0 0.555556 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 76.0 12.0 116.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 172) (Paint (Color 1.0 0.09411764705882353 0.4666666666666667 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 588.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 140.0 12.0 180.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 652.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 204.0 12.0 244.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 716.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 804.0 -1.0752 -12.0 96.4985 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 203) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 788.0 279.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 347.828 804.0 -1.0752 -12.0 122.268 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 348.0 788.0 581.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.078 804.0 -0.0751953 -12.0 32.9824 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 649.0 788.0 808.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 940.0 -0.0751953 -12.0 167.951 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 215) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 876.0 924.0 1236.0 945.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 219) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 971.0 -0.0380859 -11.0 103.577 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 959.0 1044.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 971.0 -1.03809 -11.0 131.443 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 959.0 1236.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 235) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 998.0 -0.0380859 -11.0 129.678 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1033.62 998.0 -0.0380859 -3.0 10.9619 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 244) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 998.0 -0.0380859 -11.0 136.216 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 986.0 1236.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 1025.0 -0.0380859 -11.0 96.1562 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 256) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 1013.0 1044.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 1025.0 -1.03809 -11.0 144.5 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 264) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 1013.0 1236.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 1143.0 -1.0752 -12.0 132.758 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 266) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 274) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 274) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 282) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 282) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 877.0 789.0 1235.0 891.0 11.0 11.0 11.0 11.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 286) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 961.0 1056.0 972.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 287) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 988.0 1056.0 999.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 288) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 1015.0 1056.0 1026.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 876.5 1045.5 1043.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 290) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 895.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 932.969 1082.0 -1.15625 -13.0 74.8841 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 295) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 160.727 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 298) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 933.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1056.5 1045.5 1223.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 300) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 303) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 1075.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1112.97 1082.0 -1.15625 -13.0 89.2292 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 305) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 80.0732 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 308) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 1113.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 312) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 876.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 316) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 929.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 320) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 982.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 324) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1035.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 328) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1088.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1141.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 225.984 1403.0 -1.0 -10.0 161.191 2.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 334) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 406.75 1404.0 479.781 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 406.75 1403.0 -1.0 -10.0 74.1641 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 335)) (Draw (Draw (Empty) (Rect 499.781 1404.0 578.094 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 344) (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 535.445 1403.0 539.139 1405.2)) (Rect 544.185 1403.0 547.604 1405.2)) (Rect 572.464 1403.0 576.159 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 499.781 1403.0 0.0 -10.0 79.7832 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 346) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 339)) (Draw (Draw (Empty) (Rect 598.094 1404.0 804.016 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 354) (Difference (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 725.765 1403.0 729.184 1405.2)) (Rect 761.38 1403.0 765.075 1405.2)) (Rect 770.12 1403.0 773.54 1405.2)) (Rect 798.4 1403.0 802.094 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 598.094 1403.0 -1.0 -10.0 207.406 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 356) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 348)) (Draw (Draw (Empty) (Rect 824.016 1404.0 940.969 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 362) (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 852.669 1403.0 856.089 1405.2)) (Rect 888.285 1403.0 891.979 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.016 1403.0 -1.0 -10.0 117.66 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 364) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 358)) (Draw (Draw (Empty) (Rect 989.969 1404.0 1054.02 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 989.969 1403.0 -1.0 -10.0 64.7559 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 368) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 366)) (ImageRect 878.0 790.0 1234.0 890.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 372) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 816.0 -1.0752 -12.0 173.339 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 375) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 834.0 -0.0751953 -11.0 107.964 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 376) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 890.0 850.0 1047.0 878.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 378) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 901.016 868.0 -1.0 -11.0 136.133 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 381) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 901.0 857.0 1036.0 871.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 71.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 384) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 70.0 1280.0 71.0) (Paint (Color 1.0 0.9254901960784314 0.9254901960784314 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 385) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 391) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 54.0 54.0)) (Matrix 0.0527344 0.0 0.0 44.0 0.0 0.0527344 0.0 8.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 399) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 399) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 0.015625 0.0 0.0 126.0 0.0 0.015625 0.0 27.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 147.0 41.0 -1.0752 -12.0 166.854 4.0) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test26 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (SaveLayer (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 1436.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 759.0 1280.0 1436.0) (Paint (Color 1.0 0.11764705882352941 0.11764705882352941 0.11764705882352941) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 1239.0 -1.0752 -12.0 145.883 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 44.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 80.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 116.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 152.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 188.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 224.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 260.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 624.078 1239.0 -1.0752 -11.0 73.2334 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 824.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 874.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 924.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 974.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1024.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1074.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1124.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 82) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 25.0 0.0 0.0 945.0 0.0 12.0 0.0 1393.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 393.0 103.0 887.0 667.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 433.0 211.0 847.0 293.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.0 414.0 847.0 462.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 563.281 158.0 -1.22461 -17.0 154.65 5.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 111) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.0136719 0.0 0.0 549.0 0.0 0.0136719 0.0 175.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 568.688 187.0 -1.0752 -12.0 163.075 4.0) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 514.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 468.562 270.0 -0.117188 -13.0 130.921 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 727.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 703.734 270.0 -0.117188 -12.0 86.5635 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 605.703 444.0 -1.15625 -14.0 69.2734 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 125) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 583.203 490.0 696.797 491.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 129) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 642.193 489.5 649.705 491.8)) (Rect 668.193 489.5 675.705 491.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 583.203 489.0 -1.03809 -11.0 113.958 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 549.828 538.0 -1.0752 -12.0 181.086 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.234 626.0 -0.0380859 -11.0 190.139 4.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 633.875 627.0 717.0 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 633.875 626.0 -1.03809 -11.0 84.48 2.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 717.0 626.0 2.54199 -11.0 26.1479 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 746.688 627.0 834.953 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 140) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 785.75 626.5 791.238 628.8)) (Rect 827.251 626.5 832.739 628.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.688 626.0 -0.0380859 -11.0 89.7634 4.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 834.953 626.0 -0.0380859 -3.0 3.96191 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 143) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 454.688 289.0 -0.0380859 -11.0 158.839 2.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 704.062 289.0 -0.0380859 -11.0 86.0825 4.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 433.0 337.0 -0.0751953 -12.0 216.402 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.5 349.5 846.5 393.5 3.5 3.5 3.5 3.5) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Stroke) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 433.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 154) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 742.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 12.0 12.0 52.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 163) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 0.555556 0.0 0.0 524.0 0.0 0.555556 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 76.0 12.0 116.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 172) (Paint (Color 1.0 0.09411764705882353 0.4666666666666667 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 588.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 140.0 12.0 180.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 652.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 204.0 12.0 244.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 716.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 804.0 -1.0752 -12.0 96.4985 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 203) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 788.0 279.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 347.828 804.0 -1.0752 -12.0 122.268 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 348.0 788.0 581.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.078 804.0 -0.0751953 -12.0 32.9824 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 649.0 788.0 808.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 940.0 -0.0751953 -12.0 167.951 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 215) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 876.0 924.0 1236.0 945.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 219) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 971.0 -0.0380859 -11.0 103.577 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 959.0 1044.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 971.0 -1.03809 -11.0 131.443 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 959.0 1236.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 235) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 998.0 -0.0380859 -11.0 129.678 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1033.62 998.0 -0.0380859 -3.0 10.9619 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 244) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 998.0 -0.0380859 -11.0 136.216 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 986.0 1236.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 1025.0 -0.0380859 -11.0 96.1562 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 256) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 1013.0 1044.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 1025.0 -1.03809 -11.0 144.5 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 264) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 1013.0 1236.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 1143.0 -1.0752 -12.0 132.758 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 266) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 274) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 274) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 282) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 282) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 877.0 789.0 1235.0 891.0 11.0 11.0 11.0 11.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 286) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 961.0 1056.0 972.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 287) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 988.0 1056.0 999.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 288) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 1015.0 1056.0 1026.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 876.5 1045.5 1043.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 290) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 895.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 932.969 1082.0 -1.15625 -13.0 74.8841 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 295) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 160.727 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 298) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 933.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1056.5 1045.5 1223.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 300) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 303) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 1075.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1112.97 1082.0 -1.15625 -13.0 89.2292 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 305) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 80.0732 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 308) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 1113.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 312) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 876.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 316) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 929.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 320) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 982.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 324) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1035.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 328) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1088.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1141.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 225.984 1403.0 -1.0 -10.0 161.191 2.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 334) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 406.75 1404.0 479.781 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 406.75 1403.0 -1.0 -10.0 74.1641 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 335)) (Draw (Draw (Empty) (Rect 499.781 1404.0 578.094 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 344) (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 535.445 1403.0 539.139 1405.2)) (Rect 544.185 1403.0 547.604 1405.2)) (Rect 572.464 1403.0 576.159 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 499.781 1403.0 0.0 -10.0 79.7832 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 346) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 339)) (Draw (Draw (Empty) (Rect 598.094 1404.0 804.016 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 354) (Difference (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 725.765 1403.0 729.184 1405.2)) (Rect 761.38 1403.0 765.075 1405.2)) (Rect 770.12 1403.0 773.54 1405.2)) (Rect 798.4 1403.0 802.094 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 598.094 1403.0 -1.0 -10.0 207.406 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 356) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 348)) (Draw (Draw (Empty) (Rect 824.016 1404.0 940.969 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 362) (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 852.669 1403.0 856.089 1405.2)) (Rect 888.285 1403.0 891.979 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.016 1403.0 -1.0 -10.0 117.66 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 364) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 358)) (Draw (Draw (Empty) (Rect 989.969 1404.0 1054.02 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 989.969 1403.0 -1.0 -10.0 64.7559 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 368) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 366)) (ImageRect 878.0 790.0 1234.0 890.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 372) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 816.0 -1.0752 -12.0 173.339 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 375) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 834.0 -0.0751953 -11.0 107.964 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 376) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 890.0 850.0 1047.0 878.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 378) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 901.016 868.0 -1.0 -11.0 136.133 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 381) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 901.0 857.0 1036.0 871.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 71.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 384) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 70.0 1280.0 71.0) (Paint (Color 1.0 0.9254901960784314 0.9254901960784314 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 385) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 391) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 54.0 54.0)) (Matrix 0.0527344 0.0 0.0 44.0 0.0 0.0527344 0.0 8.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 399) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 399) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 0.015625 0.0 0.0 126.0 0.0 0.015625 0.0 27.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 147.0 41.0 -1.0752 -12.0 166.854 4.0) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test26 + $test26 ) -(let test27 (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 741.5 3685.0 -3.04688 -13.96 124.651 2.74658) (Paint (Color 1.0 0.07058823529411765 0.07058823529411765 0.07058823529411765) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -348.0 0.0 1.0 0.0 -3658.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Empty) (SaveLayer (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 17) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 27) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 24)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 19)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13)) (SaveLayer (Draw (Draw (Empty) (Path 37) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 48) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 45)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 40)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12)) (Draw (Draw (Empty) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 56)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 0.0 0.0 24.0 24.0) (Paint (Color 0.4980392156862745 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 488.0 0.0 1.0 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 78) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.2 0.0 0.0 488.0 0.0 1.2 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 69)) (Paint (Color 0.6509803921568628 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66))) +(let $test27 (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 741.5 3685.0 -3.04688 -13.96 124.651 2.74658) (Paint (Color 1.0 0.07058823529411765 0.07058823529411765 0.07058823529411765) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -348.0 0.0 1.0 0.0 -3658.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Empty) (SaveLayer (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 17) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 27) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 24)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 19)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13)) (SaveLayer (Draw (Draw (Empty) (Path 37) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 48) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 45)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 40)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12)) (Draw (Draw (Empty) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 56)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 0.0 0.0 24.0 24.0) (Paint (Color 0.4980392156862745 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 488.0 0.0 1.0 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 78) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.2 0.0 0.0 488.0 0.0 1.2 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 69)) (Paint (Color 0.6509803921568628 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test27 + $test27 ) -(let test28 (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.054901960784313725 0.054901960784313725 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test28 (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.054901960784313725 0.054901960784313725 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test28 + $test28 ) -(let test29 (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test29 (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test29 + $test29 ) -(let test30 (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 262.0 350.0 587.0) (Paint (Color 1.0 0.9019607843137255 0.9254901960784314 0.996078431372549) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 262.5 349.5 586.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 291.0 344.0 359.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 291.5 343.5 358.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 364.0 344.0 581.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 364.5 343.5 580.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 396.0 343.0 397.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 597.5 349.5 1016.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 1027.5 349.5 1367.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 350.0 240.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 10.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.0 281.0 -5.213 -16.653 55.471 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 66.2344 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 73.3906 282.0 -4.632 -15.192 62.868 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 136.484 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.0 268.0 344.0 286.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.5 268.5 343.5 285.5) (Paint (Color 1.0 0.7176470588235294 0.7176470588235294 0.7176470588235294) (SrcOver) (Stroke) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 300.0 281.0 -3.86 -12.66 42.32 3.73) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 13.0 467.0 -5.018 -16.458 79.846 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.0 1054.0 -5.614 -17.934 240.618 6.258) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 252.047 1053.0 -4.632 -15.192 33.48 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.641 1053.0 -4.632 -15.192 26.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 33.0 1091.0 43.0 1101.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1091.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1091.0 -5.404 -17.724 34.104 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1112.0 -4.632 -15.192 204.024 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 49.0 1100.0 339.0 1114.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 33.0 1146.0 43.0 1156.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1146.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1146.0 -5.404 -17.724 108.01 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 52) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 53) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1167.0 -4.632 -15.192 58.668 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 104.375 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.266 1167.0 -4.632 -15.192 97.704 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 203.797 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 211.688 1167.0 -4.632 -15.192 73.7519 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Full) (Rect 33.0 1201.0 43.0 1211.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1201.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1201.0 -5.404 -17.724 143.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1222.0 -4.632 -15.192 98.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 148.594 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 156.484 1222.0 -4.632 -15.192 54.78 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 212.078 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 219.969 1222.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 79) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 33.0 1256.0 43.0 1266.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1256.0 -5.404 -17.724 45.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 89) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 95) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1277.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.594 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 120.484 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.969 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.859 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 112) (Paint (Color 1.0 0.23921568627450981 0.4627450980392157 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 112) (Intersect (Intersect (Full) (Rect 33.0 1311.0 43.0 1321.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1311.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1311.0 -5.404 -17.724 115.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 121) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 121) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 122) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.594 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 108.484 1332.0 -4.632 -15.192 50.508 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.312 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 130) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.203 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 157.0 1355.0 -5.018 -16.458 185.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 133) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 114.75 1409.0 -5.018 -16.458 123.5 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.1406 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 135) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 63.1406 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 72.4375 1430.0 -4.632 -15.192 98.064 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 137) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.719 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 138) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 182.016 1430.0 -4.632 -15.192 98.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 139) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.547 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 140) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.844 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 47.7812 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 142) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.781 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 110.078 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 144) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.078 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.375 1450.0 -4.632 -15.192 132.624 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 146) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.6562 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 147) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.703 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 145.0 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 149) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 269.047 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.344 1470.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 133.109 1503.0 -3.86 -12.66 89.9099 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 46.7188 345.0 -4.246 -13.926 35.112 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 164) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 165) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 166) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 168) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 167)) (Path 170) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 170) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 159)) (TextBlob 131.047 345.0 -4.246 -13.926 90.442 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 182) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 183) (Paint (Color 1.0 0.45098039215686275 0.2549019607843137 0.0) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.7803921568627451 0.48627450980392156 0.0) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 185) (Paint (Color 1.0 0.9647058823529412 0.7137254901960784 0.0) (SrcOver) (Solid) (IdFilter) 185) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 186) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 187) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 12.25 13.227 15.75 16.621) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 189) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 190) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 190) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 191) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Empty) (Path 195) (Paint (Color 1.0 0.5294117647058824 0.3215686274509804 0.0) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.403921568627451 0.2235294117647059 0.0) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 197) (Paint (Color 1.0 0.8980392156862745 0.7568627450980392 0.011764705882352941) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 206) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Rect 1.0 11.0 27.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 204)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 199)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 192)) (Path 212) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 119.0 302.0 120.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 215) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 245.297 344.0 -4.246 -13.926 85.954 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 216) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Path 227) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 236) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 236) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 234)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 229)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (SaveLayer (Draw (Empty) (Path 248) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 257) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 257) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 255)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 250)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 245)) (Rect 231.0 302.0 232.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 266) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 365.0 343.0 396.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 267) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 275) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 275) (Intersect (Intersect (Full) (Rect 17.0 375.0 27.0 385.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 0.555556 0.0 0.0 17.0 0.0 0.555556 0.0 375.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 385.0 -5.213 -16.653 130.065 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 279) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.0 385.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 280) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test30 (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 262.0 350.0 587.0) (Paint (Color 1.0 0.9019607843137255 0.9254901960784314 0.996078431372549) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 262.5 349.5 586.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 291.0 344.0 359.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 291.5 343.5 358.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 364.0 344.0 581.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 364.5 343.5 580.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 396.0 343.0 397.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 597.5 349.5 1016.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 1027.5 349.5 1367.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 350.0 240.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 10.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.0 281.0 -5.213 -16.653 55.471 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 66.2344 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 73.3906 282.0 -4.632 -15.192 62.868 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 136.484 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.0 268.0 344.0 286.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.5 268.5 343.5 285.5) (Paint (Color 1.0 0.7176470588235294 0.7176470588235294 0.7176470588235294) (SrcOver) (Stroke) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 300.0 281.0 -3.86 -12.66 42.32 3.73) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 13.0 467.0 -5.018 -16.458 79.846 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.0 1054.0 -5.614 -17.934 240.618 6.258) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 252.047 1053.0 -4.632 -15.192 33.48 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.641 1053.0 -4.632 -15.192 26.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 33.0 1091.0 43.0 1101.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1091.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1091.0 -5.404 -17.724 34.104 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1112.0 -4.632 -15.192 204.024 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 49.0 1100.0 339.0 1114.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 33.0 1146.0 43.0 1156.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1146.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1146.0 -5.404 -17.724 108.01 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 52) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 53) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1167.0 -4.632 -15.192 58.668 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 104.375 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.266 1167.0 -4.632 -15.192 97.704 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 203.797 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 211.688 1167.0 -4.632 -15.192 73.7519 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Full) (Rect 33.0 1201.0 43.0 1211.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1201.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1201.0 -5.404 -17.724 143.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1222.0 -4.632 -15.192 98.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 148.594 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 156.484 1222.0 -4.632 -15.192 54.78 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 212.078 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 219.969 1222.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 79) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 33.0 1256.0 43.0 1266.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1256.0 -5.404 -17.724 45.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 89) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 95) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1277.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.594 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 120.484 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.969 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.859 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 112) (Paint (Color 1.0 0.23921568627450981 0.4627450980392157 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 112) (Intersect (Intersect (Full) (Rect 33.0 1311.0 43.0 1321.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1311.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1311.0 -5.404 -17.724 115.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 121) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 121) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 122) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.594 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 108.484 1332.0 -4.632 -15.192 50.508 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.312 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 130) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.203 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 157.0 1355.0 -5.018 -16.458 185.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 133) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 114.75 1409.0 -5.018 -16.458 123.5 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.1406 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 135) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 63.1406 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 72.4375 1430.0 -4.632 -15.192 98.064 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 137) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.719 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 138) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 182.016 1430.0 -4.632 -15.192 98.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 139) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.547 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 140) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.844 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 47.7812 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 142) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.781 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 110.078 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 144) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.078 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.375 1450.0 -4.632 -15.192 132.624 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 146) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.6562 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 147) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.703 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 145.0 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 149) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 269.047 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.344 1470.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 133.109 1503.0 -3.86 -12.66 89.9099 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 46.7188 345.0 -4.246 -13.926 35.112 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 164) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 165) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 166) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 168) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 167)) (Path 170) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 170) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 159)) (TextBlob 131.047 345.0 -4.246 -13.926 90.442 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 182) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 183) (Paint (Color 1.0 0.45098039215686275 0.2549019607843137 0.0) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.7803921568627451 0.48627450980392156 0.0) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 185) (Paint (Color 1.0 0.9647058823529412 0.7137254901960784 0.0) (SrcOver) (Solid) (IdFilter) 185) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 186) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 187) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 12.25 13.227 15.75 16.621) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 189) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 190) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 190) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 191) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Empty) (Path 195) (Paint (Color 1.0 0.5294117647058824 0.3215686274509804 0.0) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.403921568627451 0.2235294117647059 0.0) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 197) (Paint (Color 1.0 0.8980392156862745 0.7568627450980392 0.011764705882352941) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 206) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Rect 1.0 11.0 27.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 204)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 199)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 192)) (Path 212) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 119.0 302.0 120.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 215) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 245.297 344.0 -4.246 -13.926 85.954 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 216) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Path 227) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 236) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 236) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 234)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 229)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (SaveLayer (Draw (Empty) (Path 248) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 257) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 257) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 255)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 250)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 245)) (Rect 231.0 302.0 232.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 266) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 365.0 343.0 396.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 267) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 275) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 275) (Intersect (Intersect (Full) (Rect 17.0 375.0 27.0 385.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 0.555556 0.0 0.0 17.0 0.0 0.555556 0.0 375.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 385.0 -5.213 -16.653 130.065 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 279) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.0 385.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 280) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test30 + $test30 ) -(let test31 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 100.0 1135.0 176.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.5 100.5 1134.5 175.5) (Paint (Color 1.0 0.7450980392156863 0.8 0.9176470588235294) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 186.0 1135.0 203.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 215.0 189.0 223.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 70.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 226.047 198.0 -5.018 -16.458 293.15 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 20) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 20) (Intersect (Intersect (Full) (Rect 536.0 189.0 544.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 391.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 547.188 198.0 -5.018 -16.458 287.196 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 29) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (Rect 851.0 189.0 859.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 706.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 862.375 198.0 -5.018 -16.458 205.582 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 0.0 1135.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 19.0 1135.0 20.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.4588235294117647 0.5294117647058824 0.6313725490196078) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 155.0 4.0 167.0 16.0)) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 10.0 0.0 1.0 0.0 4.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 173.0 14.0 -4.246 -13.926 122.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 898.0 14.0 -4.246 -13.926 61.9079 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 962.0 4.0 963.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 971.203 14.0 -4.246 -13.926 46.222 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1023.0 4.0 1024.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1031.88 14.0 -4.246 -13.926 46.552 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1084.0 4.0 1085.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.88 14.0 -4.246 -13.926 34.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 20.0 1135.0 100.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 60) (Paint (Color 1.0 0.13333333333333333 0.3607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 61) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 227.312 83.0 -4.632 -15.192 61.464 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 75) (Paint (Color 1.0 0.9137254901960784 0.3176470588235294 0.0) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 76) (Paint (Color 1.0 0.9882352941176471 0.4 0.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 311.984 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect -1.0 -1.0 12.0 12.0)) (Path 89)) (Matrix 0.475 0.0 0.0 295.425 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 95)) (Matrix 0.475 0.0 0.0 296.9925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 102) (Paint (Color 1.0 0.9882352941176471 0.5764705882352941 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 63.36 6.0)) (Path 101)) (Matrix 0.475 0.0 0.0 275.0 0.0 0.475 0.0 40.075 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 108) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 108) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 11.0)) (Path 107)) (Matrix 0.475 0.0 0.0 282.125 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 114) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 113)) (Matrix 0.475 0.0 0.0 283.6925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 120) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 120) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 59.0 31.0)) (Path 119)) (Matrix 0.475 0.0 0.0 276.59458 0.0 0.475 0.0 42.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 126) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 126) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 -1.0 64.0 57.0)) (Path 125)) (Matrix 0.475 0.0 0.0 280.7 0.0 0.475 0.0 35.8 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 132) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 7.0)) (Path 131)) (Matrix 0.475 0.0 0.0 307.775 0.0 0.475 0.0 35.325 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 403.312 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 144) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 145) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 146) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 147) (Paint (Color 1.0 0.9058823529411765 0.596078431372549 0.0) (SrcOver) (Solid) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 816.656 83.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 159) (Paint (Color 1.0 0.3764705882352941 0.3764705882352941 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 160) (Paint (Color 1.0 0.8117647058823529 0.6627450980392157 0.43137254901960786) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 161) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 913.984 83.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 176) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 177) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 178) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 180) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 179)) (Path 182) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 171)) (TextBlob 1005.55 83.0 -4.632 -15.192 38.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 194) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Intersect (Full) (Rect 534.0 35.0 747.0 89.0)) (Rect 0.0 0.0 213.0 54.0)) (Matrix 1.0 0.0 0.0 389.0 0.0 1.0 0.0 35.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 369.906 120.0 -5.213 -16.653 43.251 5.811) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 197) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 422.25 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 198) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 461.594 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 199) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 500.938 120.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 200) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 553.281 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 201) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 592.625 120.0 -5.018 -16.458 79.066 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 202) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 682.031 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 203) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 776.0 127.0 915.0 161.0) (Paint (Color 1.0 0.25098039215686274 0.4392156862745098 1.0) (SrcOver) (Solid) (IdFilter) 204) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 61.5938 13.0 -5.79 -18.99 35.48 5.595) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Full) (Matrix 1.0 0.0 0.0 631.5 0.0 1.0 0.0 136.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 218) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 218) (Intersect (Intersect (Full) (Rect 0.0 0.0 14.0 14.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.777778 0.0 0.0 674.5 0.0 0.777778 0.0 137.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 228) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 228) (Intersect (Intersect (Full) (Rect 382.0 165.0 390.0 169.0)) (Rect 0.0 0.0 8.0 4.0)) (Matrix 1.0 0.0 0.0 237.0 0.0 1.0 0.0 165.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 127.0 766.0 161.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.5 127.5 765.5 160.5) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Stroke) (IdFilter) 232) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test31 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 100.0 1135.0 176.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.5 100.5 1134.5 175.5) (Paint (Color 1.0 0.7450980392156863 0.8 0.9176470588235294) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 186.0 1135.0 203.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 215.0 189.0 223.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 70.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 226.047 198.0 -5.018 -16.458 293.15 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 20) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 20) (Intersect (Intersect (Full) (Rect 536.0 189.0 544.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 391.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 547.188 198.0 -5.018 -16.458 287.196 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 29) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (Rect 851.0 189.0 859.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 706.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 862.375 198.0 -5.018 -16.458 205.582 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 0.0 1135.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 19.0 1135.0 20.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.4588235294117647 0.5294117647058824 0.6313725490196078) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 155.0 4.0 167.0 16.0)) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 10.0 0.0 1.0 0.0 4.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 173.0 14.0 -4.246 -13.926 122.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 898.0 14.0 -4.246 -13.926 61.9079 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 962.0 4.0 963.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 971.203 14.0 -4.246 -13.926 46.222 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1023.0 4.0 1024.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1031.88 14.0 -4.246 -13.926 46.552 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1084.0 4.0 1085.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.88 14.0 -4.246 -13.926 34.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 20.0 1135.0 100.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 60) (Paint (Color 1.0 0.13333333333333333 0.3607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 61) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 227.312 83.0 -4.632 -15.192 61.464 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 75) (Paint (Color 1.0 0.9137254901960784 0.3176470588235294 0.0) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 76) (Paint (Color 1.0 0.9882352941176471 0.4 0.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 311.984 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect -1.0 -1.0 12.0 12.0)) (Path 89)) (Matrix 0.475 0.0 0.0 295.425 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 95)) (Matrix 0.475 0.0 0.0 296.9925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 102) (Paint (Color 1.0 0.9882352941176471 0.5764705882352941 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 63.36 6.0)) (Path 101)) (Matrix 0.475 0.0 0.0 275.0 0.0 0.475 0.0 40.075 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 108) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 108) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 11.0)) (Path 107)) (Matrix 0.475 0.0 0.0 282.125 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 114) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 113)) (Matrix 0.475 0.0 0.0 283.6925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 120) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 120) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 59.0 31.0)) (Path 119)) (Matrix 0.475 0.0 0.0 276.59458 0.0 0.475 0.0 42.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 126) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 126) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 -1.0 64.0 57.0)) (Path 125)) (Matrix 0.475 0.0 0.0 280.7 0.0 0.475 0.0 35.8 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 132) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 7.0)) (Path 131)) (Matrix 0.475 0.0 0.0 307.775 0.0 0.475 0.0 35.325 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 403.312 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 144) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 145) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 146) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 147) (Paint (Color 1.0 0.9058823529411765 0.596078431372549 0.0) (SrcOver) (Solid) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 816.656 83.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 159) (Paint (Color 1.0 0.3764705882352941 0.3764705882352941 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 160) (Paint (Color 1.0 0.8117647058823529 0.6627450980392157 0.43137254901960786) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 161) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 913.984 83.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 176) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 177) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 178) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 180) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 179)) (Path 182) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 171)) (TextBlob 1005.55 83.0 -4.632 -15.192 38.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 194) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Intersect (Full) (Rect 534.0 35.0 747.0 89.0)) (Rect 0.0 0.0 213.0 54.0)) (Matrix 1.0 0.0 0.0 389.0 0.0 1.0 0.0 35.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 369.906 120.0 -5.213 -16.653 43.251 5.811) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 197) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 422.25 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 198) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 461.594 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 199) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 500.938 120.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 200) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 553.281 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 201) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 592.625 120.0 -5.018 -16.458 79.066 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 202) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 682.031 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 203) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 776.0 127.0 915.0 161.0) (Paint (Color 1.0 0.25098039215686274 0.4392156862745098 1.0) (SrcOver) (Solid) (IdFilter) 204) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 61.5938 13.0 -5.79 -18.99 35.48 5.595) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Full) (Matrix 1.0 0.0 0.0 631.5 0.0 1.0 0.0 136.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 218) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 218) (Intersect (Intersect (Full) (Rect 0.0 0.0 14.0 14.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.777778 0.0 0.0 674.5 0.0 0.777778 0.0 137.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 228) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 228) (Intersect (Intersect (Full) (Rect 382.0 165.0 390.0 169.0)) (Rect 0.0 0.0 8.0 4.0)) (Matrix 1.0 0.0 0.0 237.0 0.0 1.0 0.0 165.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 127.0 766.0 161.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.5 127.5 765.5 160.5) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Stroke) (IdFilter) 232) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test31 + $test31 ) -(let test32 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 12.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 38.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 96.0938 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 113.234 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.234 439.0 -5.018 -16.458 16.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.781 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 0.34 0.0 0.0 5.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 64.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 81.0938 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 93.0 430.0 94.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 181.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 207.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 265.094 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.188 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 296.188 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.281 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 0.34 0.0 0.0 174.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 233.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 250.094 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 262.0 430.0 263.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 175.0 403.0 176.0 448.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 498.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 497.0 -5.018 -16.458 198.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 475.0 343.0 476.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 41) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 42) (Paint (Color 1.0 1.0 0.9686274509803922 0.8) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 44) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 45) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 46) (Paint (Color 1.0 0.49019607843137253 0.803921568627451 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 533.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 532.0 -5.018 -16.458 226.811 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 510.0 343.0 511.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 63) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.3843137254901961 0.6784313725490196 0.0) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 68) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 71) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 70)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58)) (Rect 7.0 545.0 343.0 546.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 567.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 567.0 -5.018 -16.458 94.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.7686274509803922 0.5803921568627451 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 1.0 1.0 0.6823529411764706 0.0) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 88) (Paint (Color 1.0 0.996078431372549 0.803921568627451 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 25.0 551.0 34.0 560.0) (Paint (Color 1.0 0.9686274509803922 0.36470588235294116 0.3686274509803922) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 26.0 552.0 33.0 559.0 3.5 3.5 3.5 3.5)) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 25.5 551.5 33.5 559.5 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test32 (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 12.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 38.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 96.0938 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 113.234 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.234 439.0 -5.018 -16.458 16.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.781 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 0.34 0.0 0.0 5.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 64.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 81.0938 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 93.0 430.0 94.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 181.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 207.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 265.094 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.188 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 296.188 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.281 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 0.34 0.0 0.0 174.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 233.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 250.094 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 262.0 430.0 263.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 175.0 403.0 176.0 448.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 498.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 497.0 -5.018 -16.458 198.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 475.0 343.0 476.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 41) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 42) (Paint (Color 1.0 1.0 0.9686274509803922 0.8) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 44) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 45) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 46) (Paint (Color 1.0 0.49019607843137253 0.803921568627451 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 533.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 532.0 -5.018 -16.458 226.811 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 510.0 343.0 511.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 63) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.3843137254901961 0.6784313725490196 0.0) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 68) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 71) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 70)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58)) (Rect 7.0 545.0 343.0 546.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 567.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 567.0 -5.018 -16.458 94.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.7686274509803922 0.5803921568627451 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 1.0 1.0 0.6823529411764706 0.0) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 88) (Paint (Color 1.0 0.996078431372549 0.803921568627451 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 25.0 551.0 34.0 560.0) (Paint (Color 1.0 0.9686274509803922 0.36470588235294116 0.3686274509803922) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 26.0 552.0 33.0 559.0 3.5 3.5 3.5 3.5)) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 25.5 551.5 33.5 559.5 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test32 + $test32 ) -(let test33 (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test33 (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test33 + $test33 ) -(let test34 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test34 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test34 + $test34 ) -(let test35 (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 948.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 948.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 948.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 872.5 219.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33)) (RRect 524.5 872.5 555.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 885.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 885.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (RRect 860.5 872.5 891.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 54) (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 885.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Rect 900.0 872.0 1041.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test35 (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 948.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 948.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 948.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 872.5 219.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33)) (RRect 524.5 872.5 555.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 885.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 885.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (RRect 860.5 872.5 891.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 54) (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 885.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Rect 900.0 872.0 1041.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test35 + $test35 ) -(let test36 (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1296.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1644.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (RRect 188.5 1220.5 219.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 22) (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1233.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Rect 228.0 1220.0 394.0 1236.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32)) (RRect 188.5 1568.5 219.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 37) (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1028.5 491.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1724.5 491.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 172.0 1724.0 492.0 2056.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test36 (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1296.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1644.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (RRect 188.5 1220.5 219.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 22) (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1233.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Rect 228.0 1220.0 394.0 1236.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32)) (RRect 188.5 1568.5 219.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 37) (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1028.5 491.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1724.5 491.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 172.0 1724.0 492.0 2056.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test36 + $test36 ) -(let test37 (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1296.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1644.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1992.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 860.5 1220.5 891.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1233.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Rect 900.0 1220.0 1109.0 1236.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 860.5 1568.5 891.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48)) (RRect 860.5 1916.5 891.5 1947.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 53) (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1929.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Rect 900.0 1916.0 1001.0 1932.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1028.5 1163.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1724.5 1163.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test37 (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1296.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1644.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1992.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 860.5 1220.5 891.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1233.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Rect 900.0 1220.0 1109.0 1236.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 860.5 1568.5 891.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48)) (RRect 860.5 1916.5 891.5 1947.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 53) (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1929.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Rect 900.0 1916.0 1001.0 1932.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1028.5 1163.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1724.5 1163.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test37 + $test37 ) -(let test38 (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) +(let $test38 (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test38 + $test38 ) -(let test39 (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 246.0 1280.0 3160.0 24.0 24.0 24.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2066.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 631.0 0.0351562 -19.0 83.293 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 1.0 0.3254901960784314 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 184.0 0.0 1.0 0.0 2078.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 218.0 2099.0 -0.222656 -15.0 113.161 5.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 172.0 2118.0 828.0 2458.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14)) (TextBlob 217.0 2151.0 -1.15625 -13.0 563.173 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 779.453 2151.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2187.0 -0.15625 -13.0 370.592 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Full) (Rect 217.0 2171.0 587.0 2191.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2223.0 -1.15625 -13.0 388.124 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 217.0 2207.0 605.0 2227.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2259.0 -0.15625 -14.0 432.779 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Full) (Rect 217.0 2243.0 650.0 2263.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2295.0 -1.15625 -14.0 577.455 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 217.0 2279.0 794.0 2299.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2331.0 -1.15625 -13.0 554.838 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 771.25 2331.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2367.0 -1.15625 -13.0 491.931 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 217.0 2351.0 707.0 2371.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2403.0 -0.15625 -14.0 563.898 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 780.172 2403.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2439.0 -0.15625 -13.0 547.469 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 763.266 2439.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 300.0 0.0351562 -18.0 100.623 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 568.0 -0.15625 -14.0 122.655 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Full) (Rect 2.0 0.0 22.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 331.0 0.0 0.833333 0.0 552.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 338.0 -1.15625 -14.0 487.77 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 358.0 -0.15625 -13.0 67.7069 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 71) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 273.422 358.0 0.0 0.0 0.0 0.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 75)) (RRect 178.5 322.5 197.5 341.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 274.0 0.0 0.833333 0.0 342.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 396.0 -0.15625 -14.0 566.622 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 93)) (RRect 178.5 380.5 197.5 399.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 98) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 434.0 -0.15625 -13.0 522.479 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 102)) (RRect 178.5 418.5 197.5 437.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 107) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 472.0 -0.15625 -14.0 548.93 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 108) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 492.0 -0.15625 -10.0 95.795 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 109) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 113) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 112)) (RRect 178.5 456.5 197.5 475.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 117) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 530.0 -0.15625 -13.0 574.35 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 118) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 121)) (RRect 178.5 514.5 197.5 533.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 126) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1099.0 602.0 1164.0 642.0 12.0 12.0 12.0 12.0) (Paint (Color 1.0 0.9098039215686274 0.9176470588235294 0.9294117647058824) (SrcOver) (Solid) (IdFilter) 127) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1115.48 628.0 -0.15625 -14.0 33.1975 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 128) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 660.0 492.0 840.0) (Paint (Color 1.0 0.8470588235294118 0.8470588235294118 0.8470588235294118) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (RRect 172.0 660.0 492.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 952.0 -0.15625 -14.0 266.11 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 972.0 -0.15625 -13.0 258.051 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 445.531 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 881.0 -1.03809 -11.0 106.855 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.656 881.0 3.502 -11.0 109.294 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 660.0 828.0 840.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 508.0 660.0 828.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 952.0 -0.15625 -13.0 261.355 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 972.0 -0.15625 -10.0 253.845 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 151) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 777.078 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 152) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 881.0 -1.03809 -11.0 109.559 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 156) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 673.359 881.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 157) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 660.0 1164.0 840.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Full) (RRect 844.0 660.0 1164.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 952.0 -0.15625 -14.0 260.122 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 972.0 -0.15625 -13.0 274.054 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1133.45 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 167) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 881.0 -1.03809 -11.0 108.506 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 171) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.3 881.0 3.502 -11.0 109.529 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1008.0 492.0 1188.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Full) (RRect 172.0 1008.0 492.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1300.0 -0.15625 -13.0 198.953 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1320.0 -1.15625 -13.0 232.677 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 181) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 419.469 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1229.0 -1.03809 -11.0 98.8273 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 326.625 1229.0 3.502 -11.0 109.834 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1008.0 828.0 1188.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Full) (RRect 508.0 1008.0 828.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1300.0 -0.15625 -14.0 264.358 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1320.0 -1.15625 -14.0 259.252 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 782.734 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1229.0 -1.03809 -11.0 108.848 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 672.641 1229.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1008.0 1164.0 1188.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Full) (RRect 844.0 1008.0 1164.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1300.0 -0.15625 -14.0 261.551 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 210) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1320.0 -0.15625 -13.0 166.251 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1025.28 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1229.0 -1.03809 -11.0 108.544 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 216) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.34 1229.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 217) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 221) (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 229) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Rect 172.0 1356.0 492.0 1537.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 233) (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 232)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (TextBlob 188.0 1648.0 -0.15625 -13.0 200.54 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1668.0 -0.15625 -10.0 251.044 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 241) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 438.078 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 242) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1577.0 -1.03809 -11.0 104.837 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 246) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 332.625 1577.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 247) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 251) (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 259) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Rect 508.0 1356.0 828.0 1537.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 263) (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 262)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254)) (TextBlob 524.0 1648.0 -0.15625 -13.0 287.592 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 270) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1668.0 -0.15625 -13.0 198.157 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 271) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 721.188 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 272) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1577.0 -1.03809 -11.0 106.297 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 276) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 670.094 1577.0 3.502 -11.0 108.932 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 277) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 281) (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Rect 844.0 1356.0 1164.0 1537.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 292)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 284)) (TextBlob 860.0 1648.0 -0.15625 -13.0 280.49 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 300) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1668.0 -1.15625 -13.0 264.46 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 301) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1128.02 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 302) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1577.0 -1.03809 -11.0 100.281 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 306) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1000.08 1577.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 307) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 311) (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 319) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Rect 172.0 1704.0 492.0 1885.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 323) (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 322)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 314)) (TextBlob 188.0 1996.0 -1.15625 -14.0 280.902 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 330) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 2016.0 -0.15625 -13.0 253.595 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 331) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.891 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1925.0 -1.03809 -11.0 103.275 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 331.062 1925.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 341) (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 349) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Rect 508.0 1704.0 828.0 1885.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 353) (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 352)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 344)) (TextBlob 524.0 1996.0 -0.15625 -14.0 266.548 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 360) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 2016.0 -1.15625 -13.0 260.593 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 361) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 784.0 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 362) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1925.0 -1.03809 -11.0 101.436 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 366) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 665.234 1925.0 3.502 -11.0 85.6485 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 371) (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 379) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Rect 844.0 1704.0 1164.0 1885.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 383) (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 382)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 374)) (TextBlob 860.0 1996.0 -1.15625 -14.0 267.1 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 390) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2016.0 -0.15625 -13.0 219.508 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1078.84 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 392) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1925.0 -1.03809 -11.0 97.4879 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 396) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 997.281 1925.0 3.502 -11.0 108.628 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 397) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 403) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 401)) (RRect 189.5 2135.5 208.5 2154.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 406) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 410) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 411) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 409)) (RRect 189.5 2171.5 208.5 2190.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 414) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 418) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 419) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 417)) (RRect 189.5 2207.5 208.5 2226.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 422) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 426) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 427) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 425)) (RRect 189.5 2243.5 208.5 2262.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 430) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 434) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 435) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 433)) (RRect 189.5 2279.5 208.5 2298.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 438) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 442) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 443) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 441)) (RRect 189.5 2315.5 208.5 2334.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 446) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 450) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 451) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 449)) (RRect 189.5 2351.5 208.5 2370.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 454) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 458) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 459) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 457)) (RRect 189.5 2387.5 208.5 2406.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 462) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 466) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 467) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 465)) (RRect 189.5 2423.5 208.5 2442.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 470) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 471) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2355.0 -0.15625 -14.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 478) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2375.0 -1.15625 -10.0 266.51 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 479) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1125.12 2375.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 480) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2397.0 -1.15625 -13.0 179.452 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 484) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2417.0 -0.15625 -14.0 257.289 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 485) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1116.7 2417.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 486) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 496) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 496) (Intersect (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 0.0 0.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.5 0.0 0.0 860.0 0.0 0.5 0.0 2428.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.0 2439.0 -1.03809 -11.0 54.2103 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 501) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 927.547 2439.0 3.502 -11.0 91.0802 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 502) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 880.0 2326.0 -1.03809 -11.0 101.817 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 507) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 880.0 2313.0 981.0 2329.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 514) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 515) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 513)) (RRect 860.5 2313.5 875.5 2328.5 7.5 7.5 7.5 7.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 518) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2489.0 200.0 2517.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 524) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 2495.0 326.0 2511.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 525) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2539.5 491.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 526) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2540.0 491.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 529) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2729.0 217.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 530) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 2735.0 345.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 531) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2767.0 441.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 532) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2791.0 378.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 533) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2539.5 827.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 535) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2540.0 827.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 538) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2729.0 553.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 539) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 2735.0 681.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 540) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2767.0 777.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 541) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2791.0 714.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 542) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2539.5 1163.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 544) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2540.0 1163.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 547) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2729.0 889.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 548) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 2735.0 1017.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 549) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2767.0 1113.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 550) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2791.0 1050.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 551) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2840.5 491.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 553) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2841.0 491.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 556) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3030.0 217.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 557) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 3036.0 345.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 558) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3068.0 441.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 559) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3092.0 378.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 560) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2840.5 827.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 562) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2841.0 827.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 565) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3030.0 553.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 566) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 3036.0 681.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 567) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3068.0 777.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 568) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3092.0 714.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 569) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2840.5 1163.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 571) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2841.0 1163.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 574) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3030.0 889.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 575) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 3036.0 1017.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 576) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3068.0 1113.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 577) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3092.0 1050.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 578) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1604.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 583) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 584) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1604.0 -1.15625 -13.0 218.394 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 588) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1624.0 -1.15625 -14.0 246.858 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 589) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 769.484 1624.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 590) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1604.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 594) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 595) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1952.0 -1.15625 -14.0 279.778 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 599) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1972.0 -1.15625 -13.0 187.393 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 600) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 374.484 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 601) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1952.0 -0.15625 -14.0 285.051 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 605) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1972.0 -0.15625 -13.0 209.029 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 606) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.516 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 607) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1952.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 611) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 612) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 619) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 620) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 618)) (RRect 188.5 1548.5 219.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 623) (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 630) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 631) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 629)) (RRect 524.5 1548.5 555.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 634) (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 641) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 642) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 640)) (RRect 860.5 1548.5 891.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 645) (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 652) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 653) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 651)) (RRect 188.5 1896.5 219.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 656) (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1909.0 -0.0380859 -11.0 141.906 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 659) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Rect 228.0 1896.0 369.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 667) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 668) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 666)) (RRect 524.5 1896.5 555.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 671) (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1909.0 -0.0380859 -11.0 43.3945 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 674) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Rect 564.0 1896.0 607.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 682) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 683) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 681)) (RRect 860.5 1896.5 891.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 686) (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1909.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 689) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Rect 900.0 1896.0 1001.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1704.5 491.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 692) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1704.5 827.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 693) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1704.5 1163.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 694) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test39 (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 246.0 1280.0 3160.0 24.0 24.0 24.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2066.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 631.0 0.0351562 -19.0 83.293 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 1.0 0.3254901960784314 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 184.0 0.0 1.0 0.0 2078.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 218.0 2099.0 -0.222656 -15.0 113.161 5.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 172.0 2118.0 828.0 2458.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14)) (TextBlob 217.0 2151.0 -1.15625 -13.0 563.173 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 779.453 2151.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2187.0 -0.15625 -13.0 370.592 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Full) (Rect 217.0 2171.0 587.0 2191.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2223.0 -1.15625 -13.0 388.124 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 217.0 2207.0 605.0 2227.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2259.0 -0.15625 -14.0 432.779 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Full) (Rect 217.0 2243.0 650.0 2263.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2295.0 -1.15625 -14.0 577.455 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 217.0 2279.0 794.0 2299.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2331.0 -1.15625 -13.0 554.838 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 771.25 2331.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2367.0 -1.15625 -13.0 491.931 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 217.0 2351.0 707.0 2371.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2403.0 -0.15625 -14.0 563.898 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 780.172 2403.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2439.0 -0.15625 -13.0 547.469 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 763.266 2439.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 300.0 0.0351562 -18.0 100.623 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 568.0 -0.15625 -14.0 122.655 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Full) (Rect 2.0 0.0 22.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 331.0 0.0 0.833333 0.0 552.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 338.0 -1.15625 -14.0 487.77 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 358.0 -0.15625 -13.0 67.7069 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 71) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 273.422 358.0 0.0 0.0 0.0 0.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 75)) (RRect 178.5 322.5 197.5 341.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 274.0 0.0 0.833333 0.0 342.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 396.0 -0.15625 -14.0 566.622 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 93)) (RRect 178.5 380.5 197.5 399.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 98) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 434.0 -0.15625 -13.0 522.479 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 102)) (RRect 178.5 418.5 197.5 437.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 107) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 472.0 -0.15625 -14.0 548.93 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 108) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 492.0 -0.15625 -10.0 95.795 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 109) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 113) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 112)) (RRect 178.5 456.5 197.5 475.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 117) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 530.0 -0.15625 -13.0 574.35 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 118) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 121)) (RRect 178.5 514.5 197.5 533.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 126) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1099.0 602.0 1164.0 642.0 12.0 12.0 12.0 12.0) (Paint (Color 1.0 0.9098039215686274 0.9176470588235294 0.9294117647058824) (SrcOver) (Solid) (IdFilter) 127) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1115.48 628.0 -0.15625 -14.0 33.1975 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 128) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 660.0 492.0 840.0) (Paint (Color 1.0 0.8470588235294118 0.8470588235294118 0.8470588235294118) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (RRect 172.0 660.0 492.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 952.0 -0.15625 -14.0 266.11 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 972.0 -0.15625 -13.0 258.051 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 445.531 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 881.0 -1.03809 -11.0 106.855 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.656 881.0 3.502 -11.0 109.294 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 660.0 828.0 840.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 508.0 660.0 828.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 952.0 -0.15625 -13.0 261.355 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 972.0 -0.15625 -10.0 253.845 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 151) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 777.078 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 152) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 881.0 -1.03809 -11.0 109.559 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 156) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 673.359 881.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 157) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 660.0 1164.0 840.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Full) (RRect 844.0 660.0 1164.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 952.0 -0.15625 -14.0 260.122 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 972.0 -0.15625 -13.0 274.054 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1133.45 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 167) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 881.0 -1.03809 -11.0 108.506 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 171) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.3 881.0 3.502 -11.0 109.529 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1008.0 492.0 1188.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Full) (RRect 172.0 1008.0 492.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1300.0 -0.15625 -13.0 198.953 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1320.0 -1.15625 -13.0 232.677 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 181) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 419.469 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1229.0 -1.03809 -11.0 98.8273 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 326.625 1229.0 3.502 -11.0 109.834 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1008.0 828.0 1188.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Full) (RRect 508.0 1008.0 828.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1300.0 -0.15625 -14.0 264.358 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1320.0 -1.15625 -14.0 259.252 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 782.734 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1229.0 -1.03809 -11.0 108.848 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 672.641 1229.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1008.0 1164.0 1188.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Full) (RRect 844.0 1008.0 1164.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1300.0 -0.15625 -14.0 261.551 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 210) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1320.0 -0.15625 -13.0 166.251 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1025.28 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1229.0 -1.03809 -11.0 108.544 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 216) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.34 1229.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 217) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 221) (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 229) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Rect 172.0 1356.0 492.0 1537.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 233) (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 232)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (TextBlob 188.0 1648.0 -0.15625 -13.0 200.54 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1668.0 -0.15625 -10.0 251.044 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 241) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 438.078 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 242) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1577.0 -1.03809 -11.0 104.837 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 246) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 332.625 1577.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 247) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 251) (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 259) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Rect 508.0 1356.0 828.0 1537.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 263) (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 262)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254)) (TextBlob 524.0 1648.0 -0.15625 -13.0 287.592 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 270) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1668.0 -0.15625 -13.0 198.157 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 271) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 721.188 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 272) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1577.0 -1.03809 -11.0 106.297 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 276) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 670.094 1577.0 3.502 -11.0 108.932 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 277) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 281) (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Rect 844.0 1356.0 1164.0 1537.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 292)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 284)) (TextBlob 860.0 1648.0 -0.15625 -13.0 280.49 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 300) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1668.0 -1.15625 -13.0 264.46 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 301) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1128.02 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 302) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1577.0 -1.03809 -11.0 100.281 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 306) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1000.08 1577.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 307) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 311) (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 319) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Rect 172.0 1704.0 492.0 1885.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 323) (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 322)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 314)) (TextBlob 188.0 1996.0 -1.15625 -14.0 280.902 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 330) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 2016.0 -0.15625 -13.0 253.595 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 331) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.891 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1925.0 -1.03809 -11.0 103.275 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 331.062 1925.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 341) (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 349) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Rect 508.0 1704.0 828.0 1885.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 353) (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 352)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 344)) (TextBlob 524.0 1996.0 -0.15625 -14.0 266.548 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 360) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 2016.0 -1.15625 -13.0 260.593 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 361) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 784.0 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 362) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1925.0 -1.03809 -11.0 101.436 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 366) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 665.234 1925.0 3.502 -11.0 85.6485 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 371) (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 379) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Rect 844.0 1704.0 1164.0 1885.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 383) (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 382)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 374)) (TextBlob 860.0 1996.0 -1.15625 -14.0 267.1 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 390) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2016.0 -0.15625 -13.0 219.508 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1078.84 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 392) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1925.0 -1.03809 -11.0 97.4879 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 396) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 997.281 1925.0 3.502 -11.0 108.628 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 397) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 403) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 401)) (RRect 189.5 2135.5 208.5 2154.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 406) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 410) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 411) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 409)) (RRect 189.5 2171.5 208.5 2190.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 414) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 418) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 419) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 417)) (RRect 189.5 2207.5 208.5 2226.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 422) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 426) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 427) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 425)) (RRect 189.5 2243.5 208.5 2262.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 430) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 434) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 435) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 433)) (RRect 189.5 2279.5 208.5 2298.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 438) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 442) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 443) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 441)) (RRect 189.5 2315.5 208.5 2334.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 446) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 450) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 451) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 449)) (RRect 189.5 2351.5 208.5 2370.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 454) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 458) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 459) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 457)) (RRect 189.5 2387.5 208.5 2406.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 462) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 466) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 467) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 465)) (RRect 189.5 2423.5 208.5 2442.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 470) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 471) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2355.0 -0.15625 -14.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 478) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2375.0 -1.15625 -10.0 266.51 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 479) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1125.12 2375.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 480) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2397.0 -1.15625 -13.0 179.452 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 484) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2417.0 -0.15625 -14.0 257.289 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 485) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1116.7 2417.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 486) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 496) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 496) (Intersect (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 0.0 0.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.5 0.0 0.0 860.0 0.0 0.5 0.0 2428.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.0 2439.0 -1.03809 -11.0 54.2103 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 501) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 927.547 2439.0 3.502 -11.0 91.0802 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 502) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 880.0 2326.0 -1.03809 -11.0 101.817 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 507) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 880.0 2313.0 981.0 2329.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 514) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 515) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 513)) (RRect 860.5 2313.5 875.5 2328.5 7.5 7.5 7.5 7.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 518) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2489.0 200.0 2517.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 524) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 2495.0 326.0 2511.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 525) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2539.5 491.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 526) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2540.0 491.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 529) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2729.0 217.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 530) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 2735.0 345.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 531) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2767.0 441.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 532) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2791.0 378.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 533) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2539.5 827.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 535) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2540.0 827.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 538) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2729.0 553.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 539) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 2735.0 681.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 540) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2767.0 777.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 541) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2791.0 714.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 542) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2539.5 1163.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 544) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2540.0 1163.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 547) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2729.0 889.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 548) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 2735.0 1017.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 549) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2767.0 1113.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 550) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2791.0 1050.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 551) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2840.5 491.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 553) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2841.0 491.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 556) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3030.0 217.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 557) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 3036.0 345.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 558) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3068.0 441.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 559) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3092.0 378.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 560) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2840.5 827.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 562) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2841.0 827.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 565) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3030.0 553.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 566) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 3036.0 681.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 567) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3068.0 777.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 568) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3092.0 714.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 569) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2840.5 1163.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 571) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2841.0 1163.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 574) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3030.0 889.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 575) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 3036.0 1017.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 576) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3068.0 1113.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 577) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3092.0 1050.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 578) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1604.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 583) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 584) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1604.0 -1.15625 -13.0 218.394 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 588) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1624.0 -1.15625 -14.0 246.858 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 589) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 769.484 1624.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 590) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1604.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 594) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 595) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1952.0 -1.15625 -14.0 279.778 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 599) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1972.0 -1.15625 -13.0 187.393 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 600) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 374.484 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 601) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1952.0 -0.15625 -14.0 285.051 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 605) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1972.0 -0.15625 -13.0 209.029 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 606) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.516 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 607) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1952.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 611) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 612) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 619) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 620) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 618)) (RRect 188.5 1548.5 219.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 623) (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 630) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 631) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 629)) (RRect 524.5 1548.5 555.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 634) (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 641) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 642) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 640)) (RRect 860.5 1548.5 891.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 645) (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 652) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 653) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 651)) (RRect 188.5 1896.5 219.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 656) (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1909.0 -0.0380859 -11.0 141.906 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 659) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Rect 228.0 1896.0 369.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 667) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 668) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 666)) (RRect 524.5 1896.5 555.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 671) (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1909.0 -0.0380859 -11.0 43.3945 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 674) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Rect 564.0 1896.0 607.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 682) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 683) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 681)) (RRect 860.5 1896.5 891.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 686) (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1909.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 689) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Rect 900.0 1896.0 1001.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1704.5 491.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 692) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1704.5 827.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 693) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1704.5 1163.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 694) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test39 + $test39 ) -(let test40 (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test40 (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test40 + $test40 ) -(let test41 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test41 (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test41 + $test41 ) -(let test42 (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 908.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 908.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 908.0 -0.15625 -13.0 246.891 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -1.15625 -13.0 270.36 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1130.2 928.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23)) (RRect 188.5 852.5 219.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 28) (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (RRect 524.5 852.5 555.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 39) (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 865.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 865.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (RRect 860.5 852.5 891.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 55) (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 865.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Rect 900.0 852.0 1066.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test42 (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 908.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 908.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 908.0 -0.15625 -13.0 246.891 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -1.15625 -13.0 270.36 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1130.2 928.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23)) (RRect 188.5 852.5 219.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 28) (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (RRect 524.5 852.5 555.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 39) (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 865.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 865.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (RRect 860.5 852.5 891.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 55) (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 865.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Rect 900.0 852.0 1066.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test42 + $test42 ) -(let test43 (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1256.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1256.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1276.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1256.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 1200.5 219.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1213.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Rect 228.0 1200.0 394.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 524.5 1200.5 555.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1213.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Rect 564.0 1200.0 705.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52)) (RRect 860.5 1200.5 891.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 57) (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1213.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Rect 900.0 1200.0 1109.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1008.5 491.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 63) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1008.5 827.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 64) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1008.5 1163.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test43 (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1256.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1256.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1276.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1256.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 1200.5 219.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1213.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Rect 228.0 1200.0 394.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 524.5 1200.5 555.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1213.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Rect 564.0 1200.0 705.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52)) (RRect 860.5 1200.5 891.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 57) (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1213.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Rect 900.0 1200.0 1109.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1008.5 491.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 63) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1008.5 827.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 64) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1008.5 1163.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test43 + $test43 ) -(let test44 (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) +(let $test44 (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test44 + $test44 ) -(let test45 (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Path 3) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 4) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 12) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 6)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) +(let $test45 (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Path 3) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 4) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 12) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 6)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test45 + $test45 ) -(let test46 (Draw (Draw (Draw (Empty) (Oval 10.0 0.0 260.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test46 (Draw (Draw (Draw (Empty) (Oval 10.0 0.0 260.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test46 + $test46 ) -(let test47 (Draw (SaveLayer (Empty) (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0)) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test47 (Draw (SaveLayer (Empty) (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0)) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test47 + $test47 ) -(let test48 (Draw (Draw (Empty) (Rect 10.0 10.0 500.0 500.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 310.0 500.0 400.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Difference (Difference (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Rect 30.0 330.0 200.0 500.0)) (Rect 300.0 300.0 500.0 500.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test48 (Draw (Draw (Empty) (Rect 10.0 10.0 500.0 500.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 310.0 500.0 400.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Difference (Difference (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Rect 30.0 330.0 200.0 500.0)) (Rect 300.0 300.0 500.0 500.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test48 + $test48 ) -(let test49 (Draw (Empty) (Rect 20.0 20.0 100.0 100.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test49 (Draw (Empty) (Rect 20.0 20.0 100.0 100.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test49 + $test49 ) -(let test50 (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 2.0 0.0 0.0 0.0 0.0 0.5 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test50 (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 2.0 0.0 0.0 0.0 0.0 0.5 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test50 + $test50 ) -(let test51 (SaveLayer (Draw (Empty) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test51 (SaveLayer (Draw (Empty) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test51 + $test51 ) -(let test52 (SaveLayer (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2))) +(let $test52 (SaveLayer (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test52 + $test52 ) -(let test53 (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 10.0 60.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 10.0 200.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 10.0 80.0 60.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 10.0 220.0 60.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 130.0 60.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 130.0 200.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 130.0 80.0 180.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 130.0 220.0 180.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10))) +(let $test53 (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 10.0 60.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 10.0 200.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 10.0 80.0 60.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 10.0 220.0 60.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 130.0 60.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 130.0 200.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 130.0 80.0 180.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 130.0 220.0 180.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test53 + $test53 ) -(let test54 (Draw (Draw (SaveLayer (Draw (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 2)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.011764705882352941 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test54 (Draw (Draw (SaveLayer (Draw (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 2)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.011764705882352941 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test54 + $test54 ) -(let test55 (SaveLayer (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.06274509803921569 0.12549019607843137 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 150.0 60.0) (Paint (Color 1.0 0.5019607843137255 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255) (SrcOver) (Solid) (IdFilter) 1))) +(let $test55 (SaveLayer (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.06274509803921569 0.12549019607843137 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 150.0 60.0) (Paint (Color 1.0 0.5019607843137255 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test55 + $test55 ) -(let test56 (SaveLayer (Empty) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) +(let $test56 (SaveLayer (Empty) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test56 + $test56 ) -(let test57 (SaveLayer (Draw (Empty) (Rect 10.0 60.0 100.0 120.0) (Paint (Color 0.5019607843137255 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 50.0 60.0 120.0 120.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 30.0 90.0 100.0) (Paint (Color 0.5019607843137255 0.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 110.0 90.0 140.0) (Paint (Color 0.5019607843137255 1.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test57 (SaveLayer (Draw (Empty) (Rect 10.0 60.0 100.0 120.0) (Paint (Color 0.5019607843137255 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 50.0 60.0 120.0 120.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 30.0 90.0 100.0) (Paint (Color 0.5019607843137255 0.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 110.0 90.0 140.0) (Paint (Color 0.5019607843137255 1.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test57 + $test57 ) -(let test58 (SaveLayer (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test58 (SaveLayer (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test58 + $test58 ) -(let test59 (Draw (SaveLayer (Draw (Empty) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Rect 110.0 130.0 190.0 190.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test59 (Draw (SaveLayer (Draw (Empty) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Rect 110.0 130.0 190.0 190.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test59 + $test59 ) -(let test60 (Empty)) +(let $test60 (Empty)) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test60 + $test60 ) -(let test61 (Empty)) +(let $test61 (Empty)) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) (multi-extract 0 - test61 + $test61 ) diff --git a/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg index e06f93ca9..bdab9e4b5 100644 --- a/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 443.0 264.0 837.0 304.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 443.0 264.0 837.0 304.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (SaveLayer (Draw (Empty) (Rect 483.0 272.0 745.0 296.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 13)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11)) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 0.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 754.0 270.0 831.0 298.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 764.953 289.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 540.0 258.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 0.5 0.0 0.0 505.0 0.0 0.5 0.0 41.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.011764705882352941 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 461.0 0.0 1.0 0.0 275.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 33) (Paint (Color 1.0 0.2 0.3568627450980392 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 0.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 469.0 0.0 1.0 0.0 274.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 366.0 -0.0273438 -12.3047 57.75 1.94141) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 370.984 366.0 -0.0292969 -13.1836 61.875 2.08008) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 396.0 -1.0 -16.0938 213.328 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 396.0 0.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 432.0 -1.0 -16.0938 253.344 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 432.0 -1.0 -15.0 128.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 468.0 0.0 -15.0 257.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 468.0 -1.0 -16.0938 183.242 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 504.0 -1.0 -15.0 241.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 504.0 -1.0 -16.0938 98.7969 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 540.0 -1.0 -15.0 208.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 540.0 -10.6328 -16.0938 194.594 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 925.0 366.0 -1.0 -13.0 43.0 3.0) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 77) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 907.0 367.0 -0.03125 -14.0625 66.0 2.21875) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 16.0 -0.0351562 -15.8203 74.25 2.49609) (Paint (Color 1.0 0.9647058823529412 0.18823529411764706 0.3176470588235294) (SrcOver) (Solid) (IdFilter) 83) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix -1.0 0.0 0.0 328.0 0.0 -1.0 0.0 399.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 397.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 869.0 394.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.996078431372549 0.17647058823529413 0.27450980392156865) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 600.344 430.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 112) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 603.0 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 121) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.25 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Full) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.9803921568627451 0.6627450980392157 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 790.797 502.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 555.0 538.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.0 212.0 -1.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Intersect (Full) (RRect 315.0 187.0 861.0 227.0 8.0 8.0 0.0 0.0)) (Rect 331.0 195.0 742.0 217.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 161) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 162) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 163) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 164) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.0 213.0 -1.0 -16.0 69.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Full) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 60.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 170) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 24.0 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 171) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 74.0 35.0 -8.63916 -13.0762 62.1499 4.22119) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 172) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 141.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 173) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 191.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 174) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 241.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 175) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.391 35.0 0.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 341.391 35.0 0.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 177) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 391.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 178) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 78.0 42.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 181) (Full) (Matrix 0.333333 0.0 0.0 441.0 0.0 0.333333 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 491.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 183) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 1110.0 24.0 1137.0 37.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 184) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1150.0 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 185) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1208.0 17.0 1256.0 41.0 6.0 6.0 6.0 6.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 186) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1219.0 33.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 187) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 443.0 264.0 837.0 304.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 443.0 264.0 837.0 304.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 443.0 264.0 837.0 304.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (SaveLayer (Draw (Empty) (Rect 483.0 272.0 745.0 296.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 483.0 272.0 745.0 296.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 13)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11)) (TextBlob 482.547 290.0 -10.6328 -16.0938 262.934 5.19531) (Paint (Color 0.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 754.0 270.0 831.0 298.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 764.953 289.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 540.0 258.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 0.5 0.0 0.0 505.0 0.0 0.5 0.0 41.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.011764705882352941 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 461.0 0.0 1.0 0.0 275.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 33) (Paint (Color 1.0 0.2 0.3568627450980392 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 0.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 469.0 0.0 1.0 0.0 274.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 366.0 -0.0273438 -12.3047 57.75 1.94141) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 370.984 366.0 -0.0292969 -13.1836 61.875 2.08008) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 396.0 -1.0 -16.0938 213.328 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 396.0 0.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 432.0 -1.0 -16.0938 253.344 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 432.0 -1.0 -15.0 128.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 468.0 0.0 -15.0 257.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 468.0 -1.0 -16.0938 183.242 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 504.0 -1.0 -15.0 241.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 504.0 -1.0 -16.0938 98.7969 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 339.0 540.0 -1.0 -15.0 208.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 685.0 540.0 -10.6328 -16.0938 194.594 5.19531) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 925.0 366.0 -1.0 -13.0 43.0 3.0) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 77) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 907.0 367.0 -0.03125 -14.0625 66.0 2.21875) (Paint (Color 1.0 0.3843137254901961 0.4 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 16.0 -0.0351562 -15.8203 74.25 2.49609) (Paint (Color 1.0 0.9647058823529412 0.18823529411764706 0.3176470588235294) (SrcOver) (Solid) (IdFilter) 83) (Intersect (Full) (Rect 313.0 373.0 619.0 409.0)) (Matrix -1.0 0.0 0.0 328.0 0.0 -1.0 0.0 399.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 397.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Full) (Rect 659.0 373.0 861.0 409.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 869.0 394.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 867.0 382.0 883.0 398.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.996078431372549 0.17647058823529413 0.27450980392156865) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 313.0 409.0 592.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 600.344 430.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (RRect 598.0 418.0 614.0 434.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 433.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 659.0 409.0 965.0 445.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 1.0 0.4 0.0) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 313.0 445.0 595.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 112) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 603.0 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (RRect 601.0 454.0 617.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 469.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Full) (Rect 659.0 445.0 867.0 481.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 121) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.25 466.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Full) (RRect 873.0 454.0 889.0 470.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.9803921568627451 0.6627450980392157 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 313.0 481.0 619.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 505.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Full) (Rect 659.0 481.0 783.0 517.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 790.797 502.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (RRect 789.0 490.0 805.0 506.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 313.0 517.0 547.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 0.27058823529411763 0.3568627450980392) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 555.0 538.0 -1.0 -11.0 13.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 553.0 526.0 569.0 542.0 4.0 4.0 4.0 4.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 659.0 541.0 -11.9619 -18.1055 36.0 5.84473) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 659.0 517.0 965.0 553.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 314.0 186.0 862.0 228.0 9.0 9.0 0.0 0.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.0 212.0 -1.0 -15.0 177.0 3.0) (Paint (Color 1.0 0.5686274509803921 0.5843137254901961 0.6392156862745098) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Intersect (Full) (RRect 315.0 187.0 861.0 227.0 8.0 8.0 0.0 0.0)) (Rect 331.0 195.0 742.0 217.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 161) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 783.0 197.0 807.0 217.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 162) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 163) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 819.0 198.0 843.0 218.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 164) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.0 213.0 -1.0 -16.0 69.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Full) (RRect 859.0 185.0 967.0 229.0 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 60.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 170) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 24.0 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 171) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 74.0 35.0 -8.63916 -13.0762 62.1499 4.22119) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 172) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 141.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 173) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 191.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 174) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 241.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 175) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.391 35.0 0.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 341.391 35.0 0.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 177) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 391.391 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 178) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 78.0 42.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 181) (Full) (Matrix 0.333333 0.0 0.0 441.0 0.0 0.333333 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 491.391 35.0 -1.0 -12.0 26.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 183) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 1110.0 24.0 1137.0 37.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 184) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1150.0 35.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 185) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1208.0 17.0 1256.0 41.0 6.0 6.0 6.0 6.0) (Paint (Color 1.0 0.3058823529411765 0.43137254901960786 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 186) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1219.0 33.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 187) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg index 050f70316..4f61dd6dd 100644 --- a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg +++ b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (Color 1.0 0.5764705882352941 0.5607843137254902 0.48627450980392156) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 60.0 -133.0 630.0 658.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 8)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (TextBlob 75.0 609.0 -1.0 -16.0 205.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 75.0 590.0 291.0 615.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 78.0 627.0 86.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 110.0 627.0 118.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 126.0 627.0 134.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 142.0 627.0 150.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 158.0 627.0 166.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 174.0 627.0 182.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 190.0 627.0 198.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 627.0 214.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 547.0 587.0 575.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 495.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 587.0 587.0 615.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 535.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (Color 1.0 0.5764705882352941 0.5607843137254902 0.48627450980392156) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 60.0 -133.0 630.0 658.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 60.0 -133.0 630.0 657.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 8)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (TextBlob 75.0 609.0 -1.0 -16.0 205.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (Rect 75.0 590.0 291.0 615.0)) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 78.0 627.0 86.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 110.0 627.0 118.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 126.0 627.0 134.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 142.0 627.0 150.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 158.0 627.0 166.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 174.0 627.0 182.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 190.0 627.0 198.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 627.0 214.0 635.0 4.0 4.0 4.0 4.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 547.0 587.0 575.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 495.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 587.0 587.0 615.0 615.0 8.0 8.0 8.0 8.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -60.0 0.0 1.0 0.0 -255.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 0.5 0.0 0.0 535.0 0.0 0.5 0.0 340.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg index 08fe154a8..5a340036f 100644 --- a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg +++ b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 10) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 0.0 200.0 34.0 8.0 8.0 8.0 8.0) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 22.0 -1.0 -12.0 149.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 21) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 1015.0 0.0 1.0 0.0 516.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.6 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (Path 27) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 1207.0 0.0 1.0 0.0 517.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.5 0.5 39.5 39.5 5.5 5.5 5.5 5.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 1230.0 0.0 1.0 0.0 502.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 10) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1238.0 0.0 1.0 0.0 510.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 0.0 200.0 34.0 8.0 8.0 8.0 8.0) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 22.0 -1.0 -12.0 149.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 1007.0 0.0 1.0 0.0 505.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 21) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 1015.0 0.0 1.0 0.0 516.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.6 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (Path 27) (Paint (Color 0.9019607843137255 0.1843137254901961 0.19607843137254902 0.2196078431372549) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 1207.0 0.0 1.0 0.0 517.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg index d5c8e34e4..2eb977ea0 100644 --- a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg +++ b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 24.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 48.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Empty) (Path 13) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 22) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 16)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10)) (Path 27) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1101.0 48.0 -1.0 -12.0 53.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 86.0 37.0 -1.0 -13.0 28.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 124.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 162.0 37.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 37.0 -1.0 -13.0 42.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 280.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 318.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.0 37.0 -1.0 -13.0 71.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 515.0 25.0 532.0 39.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 862.0 14.0 898.0 50.0 18.0 18.0 18.0 18.0) (Paint (Color 1.0 0.0 0.6823529411764706 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 866.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 50) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 51) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 908.0 48.0 -1.0 -12.0 40.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 957.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 64) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 65) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 993.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 69) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 73) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 74) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1029.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 80) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 81) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 81) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 82) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 82) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1065.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 84) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1166.0 15.0 1256.0 49.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.984313725490196 0.4470588235294118 0.6) (SrcOver) (Solid) (IdFilter) 85) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 89) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 89) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 90) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 91) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 91) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1208.5 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Draw (Empty) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.9450980392156862 0.9490196078431372 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 96) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 557.0 38.0 0.0 -13.0 99.0 3.0) (Paint (Color 1.0 0.3803921568627451 0.4 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 557.0 23.0 764.0 43.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 106) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 0.0 0.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 815.0 0.0 1.0 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94))) +(let $test (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 24.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 48.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Empty) (Path 13) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 22) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 16)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10)) (Path 27) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1117.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1101.0 48.0 -1.0 -12.0 53.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 86.0 37.0 -1.0 -13.0 28.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 124.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 162.0 37.0 -1.0 -13.0 57.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 37.0 -1.0 -13.0 42.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 280.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 318.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 39) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 420.0 0.0 1.0 0.0 24.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.0 37.0 -1.0 -13.0 71.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 515.0 25.0 532.0 39.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 862.0 14.0 898.0 50.0 18.0 18.0 18.0 18.0) (Paint (Color 1.0 0.0 0.6823529411764706 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 866.0 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 50) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 51) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 918.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 908.0 48.0 -1.0 -12.0 40.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 960.0 0.0 1.0 0.0 13.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 957.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 64) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 65) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.742981 20.0 20.743)) (Matrix 1.0 0.0 0.0 996.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 993.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 69) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 73) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 74) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1032.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1029.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 80) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 81) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 81) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 82) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 82) (Intersect (Full) (Rect 0.0 0.0 20.0 21.0)) (Matrix 1.0 0.0 0.0 1068.0 0.0 1.0 0.0 12.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1065.0 48.0 -1.0 -12.0 27.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 84) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1166.0 15.0 1256.0 49.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.984313725490196 0.4470588235294118 0.6) (SrcOver) (Solid) (IdFilter) 85) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 89) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 89) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 90) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 91) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 91) (Intersect (Full) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 1186.0 0.0 1.0 0.0 23.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1208.5 37.0 -1.0 -13.0 29.0 3.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 93) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Draw (Empty) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.9450980392156862 0.9490196078431372 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 542.5 13.5 846.5 52.5 7.5 7.5 7.5 7.5) (Paint (Color 1.0 0.8901960784313725 0.8980392156862745 0.9058823529411765) (SrcOver) (Stroke) (IdFilter) 96) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 557.0 38.0 0.0 -13.0 99.0 3.0) (Paint (Color 1.0 0.3803921568627451 0.4 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 557.0 23.0 764.0 43.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 106) (Paint (Color 1.0 0.09411764705882353 0.09803921568627451 0.10980392156862745) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Intersect (Full) (RRect 543.0 14.0 846.0 52.0 7.0 7.0 7.0 7.0)) (Rect 0.0 0.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 815.0 0.0 1.0 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg b/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg index 2c7d9d127..73453be23 100644 --- a/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg +++ b/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 1220.0 0.0 1256.0 36.0) (Paint (Color 0.7490196078431373 0.050980392156862744 0.06666666666666667 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (RRect 1221.0 1.0 1255.0 35.0 17.0 17.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 8) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Path 13) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.5 0.0 0.0 1226.0 0.0 1.5 0.0 6.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 1220.0 0.0 1256.0 36.0) (Paint (Color 0.7490196078431373 0.050980392156862744 0.06666666666666667 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (RRect 1221.0 1.0 1255.0 35.0 17.0 17.0 17.0 17.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 8) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (RRect 1220.0 0.0 1256.0 36.0 18.0 18.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Path 13) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.5 0.0 0.0 1226.0 0.0 1.5 0.0 6.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg b/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg index a3c5fbcb7..a25fe5dc2 100644 --- a/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg +++ b/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 17.5 866.5 1262.5 1570.0 23.5 23.5 23.5 0.0) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 12)) (Rect 1250.5 866.0 1263.0 1570.1)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Rect 17.0 866.0 29.5 1570.1)) (Path 18)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Plus) (Solid) (IdFilter) 26)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 30)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0) (Paint (Color 1.0 0.08235294117647059 0.10196078431372549 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 2496.0 1416.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0)) (Matrix 0.482372 0.0 0.0 38.0 0.0 0.482345 0.0 127.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 1569.0 1280.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 17.5 866.5 1262.5 1570.0 23.5 23.5 23.5 0.0) (Paint (Color 0.14901960784313725 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Path 12)) (Rect 1250.5 866.0 1263.0 1570.1)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 17.0 866.0 1263.0 1570.0) (Paint (Color 1.0 0.5490196078431373 0.5764705882352941 0.984313725490196) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Difference (Intersect (Full) (RRect 17.0 866.0 1263.0 1570.0 24.0 24.0 24.0 0.0)) (RRect 18.0 867.0 1262.0 1570.0 23.0 23.0 23.0 0.0)) (Rect 17.0 866.0 29.5 1570.1)) (Path 18)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Full) (Rect -623.0 760.0 1297.0 1570.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Plus) (Solid) (IdFilter) 26)) (Draw (Empty) (Rect -623.0 760.0 1297.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 30)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0) (Paint (Color 1.0 0.08235294117647059 0.10196078431372549 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 2496.0 1416.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Full) (RRect 38.0 887.0 1242.0 1570.0 12.0 12.0 12.0 0.0)) (Matrix 0.482372 0.0 0.0 38.0 0.0 0.482345 0.0 127.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 1569.0 1280.0 1570.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 -760.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg b/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg index 04155db0a..05349a1d3 100644 --- a/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg +++ b/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (ImageRect 36.0 3745.0 158.0 3845.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 36.0 3745.0 158.0 3845.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (ImageRect 36.0 3745.0 158.0 3845.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 36.0 3745.0 158.0 3845.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 36.0 3745.0 158.0 3845.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 -36.0 0.0 1.0 0.0 -3745.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg index b46b9a956..e3b1b88e0 100644 --- a/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 585.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 324.0 264.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.70679 0.0 0.0 161.0 0.0 1.70455 0.0 68.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 59.0 1108.0 467.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 845.0 105.0 1020.0 156.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 10) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 193.0 1059.0 229.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 215.0 0.0 -10.0 197.025 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 807.0 193.0 1059.0 229.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 237.0 1059.0 273.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 259.0 0.0 -10.0 54.8223 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 807.0 237.0 1059.0 273.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (RRect 798.0 288.0 1068.0 320.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 25) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 912.25 309.0 -0.0751953 -12.0 40.9922 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.7019607843137254 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24)) (Rect 798.0 348.0 905.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 923.078 354.0 -1.03809 -11.0 20.042 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 960.0 348.0 1068.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 877.562 402.0 -0.0751953 -12.0 142.775 4.0) (Paint (Color 1.0 0.20784313725490197 0.4745098039215686 0.9176470588235294) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.25 0.0 0.0 850.0 0.0 1.25 0.0 387.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.906 441.0 -0.0751953 -12.0 116.056 4.0) (Paint (Color 1.0 0.0 0.21568627450980393 0.4196078431372549) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 477.0 1108.0 538.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 829.484 513.0 -0.0751953 -12.0 152.416 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 981.016 513.0 0.0 0.0 0.0 0.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 984.812 513.0 -1.0752 -12.0 51.877 4.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 585.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.188 619.0 0.0 -10.0 28.7031 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 171.516 619.0 -1.0 -10.0 34.5488 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 221.438 619.0 0.0 -10.0 26.0117 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 262.766 619.0 -1.0 -10.0 27.918 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 305.969 619.0 0.0 -10.0 26.7969 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 348.094 619.0 -1.0 -10.0 19.709 1.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 383.016 619.0 0.0 -10.0 42.7637 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.297 619.0 -1.0 -10.0 144.184 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 54) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 599.0 619.0 -1.0 -10.0 35.418 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 55) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.703 619.0 0.0 -10.0 55.3633 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 56) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 720.359 619.0 0.0 -10.0 81.7871 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 57) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 817.016 619.0 -1.0 -10.0 46.9082 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 58) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.219 619.0 -1.0 -10.0 183.18 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1077.69 619.0 0.0 -10.0 75.752 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.266 655.0 0.0 -10.0 41.7441 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 61) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix -0.5 0.0 0.0 578.0 0.0 -0.5 0.0 656.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 594.078 654.0 -1.0 -10.0 165.021 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 585.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 324.0 264.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.70679 0.0 0.0 161.0 0.0 1.70455 0.0 68.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 59.0 1108.0 467.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 845.0 105.0 1020.0 156.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 10) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 192.5 1067.5 229.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 193.0 1059.0 229.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 215.0 0.0 -10.0 197.025 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 807.0 193.0 1059.0 229.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 798.5 236.5 1067.5 273.5 2.5 2.5 2.5 2.5) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 799.0 237.0 1059.0 273.0) (Paint (Color 1.0 0.9803921568627451 0.9803921568627451 0.9803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 806.5 259.0 0.0 -10.0 54.8223 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 807.0 237.0 1059.0 273.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (RRect 798.0 288.0 1068.0 320.0 8.0 8.0 8.0 8.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 25) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 912.25 309.0 -0.0751953 -12.0 40.9922 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.7019607843137254 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24)) (Rect 798.0 348.0 905.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 923.078 354.0 -1.03809 -11.0 20.042 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 960.0 348.0 1068.0 349.0) (Paint (Color 1.0 0.8588235294117647 0.8588235294117647 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 877.562 402.0 -0.0751953 -12.0 142.775 4.0) (Paint (Color 1.0 0.20784313725490197 0.4745098039215686 0.9176470588235294) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 1.25 0.0 0.0 850.0 0.0 1.25 0.0 387.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.906 441.0 -0.0751953 -12.0 116.056 4.0) (Paint (Color 1.0 0.0 0.21568627450980393 0.4196078431372549) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 758.0 477.0 1108.0 538.0 1.0 1.0 1.0 1.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 829.484 513.0 -0.0751953 -12.0 152.416 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 981.016 513.0 0.0 0.0 0.0 0.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 984.812 513.0 -1.0752 -12.0 51.877 4.0) (Paint (Color 1.0 0.0 0.5843137254901961 0.9647058823529412) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 585.0 1280.0 720.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.188 619.0 0.0 -10.0 28.7031 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 171.516 619.0 -1.0 -10.0 34.5488 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 221.438 619.0 0.0 -10.0 26.0117 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 262.766 619.0 -1.0 -10.0 27.918 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 305.969 619.0 0.0 -10.0 26.7969 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 348.094 619.0 -1.0 -10.0 19.709 1.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 383.016 619.0 0.0 -10.0 42.7637 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 53) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.297 619.0 -1.0 -10.0 144.184 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 54) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 599.0 619.0 -1.0 -10.0 35.418 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 55) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.703 619.0 0.0 -10.0 55.3633 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 56) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 720.359 619.0 0.0 -10.0 81.7871 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 57) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 817.016 619.0 -1.0 -10.0 46.9082 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 58) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 879.219 619.0 -1.0 -10.0 183.18 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1077.69 619.0 0.0 -10.0 75.752 2.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.266 655.0 0.0 -10.0 41.7441 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 61) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 0.0 0.0 12.0 12.0)) (Matrix -0.5 0.0 0.0 578.0 0.0 -0.5 0.0 656.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 594.078 654.0 -1.0 -10.0 165.021 4.0) (Paint (Color 1.0 0.45098039215686275 0.45098039215686275 0.45098039215686275) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg b/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg index 8e2398da2..4920955e7 100644 --- a/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 774.0 457.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (RRect 25.0 25.0 749.0 432.0 8.0 8.0 8.0 8.0)) (Matrix 0.870192 0.0 0.0 25.0 0.0 0.869658 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 41.0 41.0 89.0 89.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 41.0 41.0 89.0 89.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 57.3281 73.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 774.0 457.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 0.0 0.0 774.0 457.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (RRect 25.0 25.0 749.0 432.0 8.0 8.0 8.0 8.0)) (Matrix 0.870192 0.0 0.0 25.0 0.0 0.869658 0.0 25.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 41.0 41.0 89.0 89.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 41.0 41.0 89.0 89.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 57.3281 73.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg index 06f580c2c..071c40077 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1161.0 -9.96826 -15.0879 349.351 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1181.0 -9.96826 -15.0879 374.033 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1201.0 -9.96826 -15.0879 402.832 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 759.188 1201.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1111.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1111.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Rect 362.0 1238.0 792.0 1481.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 28)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20)) (TextBlob 378.0 1591.0 -9.96826 -15.0879 396.365 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1611.0 -9.96826 -15.0879 389.788 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.141 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1521.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 514.25 1521.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Rect 362.0 1648.0 792.0 1891.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 58)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (TextBlob 378.0 2001.0 -9.96826 -15.0879 374.949 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2021.0 -9.96826 -15.0879 402.085 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 754.266 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1931.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 85) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 88)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 80)) (TextBlob 378.0 2411.0 -9.96826 -15.0879 359.202 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2431.0 -9.96826 -15.0879 401.697 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.406 2431.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2341.0 -8.63916 -13.0762 116.886 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 516.156 2341.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 118)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 110)) (Rect 362.0 2709.0 792.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2821.0 -9.96826 -15.0879 343.835 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2841.0 -9.96826 -15.0879 376.399 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.781 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 2751.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 138) (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Rect 362.0 2877.0 792.0 3120.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 149)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 141)) (Rect 362.0 3119.0 792.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 153) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3231.0 -9.96826 -15.0879 381.145 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3251.0 -9.96826 -15.0879 400.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.047 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 3161.0 -8.63916 -13.0762 121.247 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 520.516 3161.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1137.0 -15.2109 -17.9453 349.961 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 169) (Intersect (Full) (Rect 378.0 1122.0 776.0 1142.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1547.0 -15.2109 -17.9453 374.312 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 173) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1567.0 -15.2109 -17.9453 324.297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 174) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1957.0 -15.2109 -17.9453 381.75 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1977.0 -15.2109 -17.9453 79.4297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 179) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2367.0 -15.2109 -17.9453 376.117 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2387.0 -15.2109 -17.9453 49.7891 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2777.0 -15.2109 -17.9453 349.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2797.0 -15.2109 -17.9453 76.9375 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3187.0 -15.2109 -17.9453 373.453 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 193) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3207.0 -15.2109 -17.9453 74.7266 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 200)) (RRect 378.5 1082.5 409.5 1113.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 205) (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 213) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 211)) (RRect 378.5 1492.5 409.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 216) (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 222)) (RRect 378.5 1902.5 409.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 227) (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1915.0 -8.63916 -13.0762 332.554 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 230) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Rect 418.0 1902.0 728.0 1918.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 238) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 237)) (RRect 378.5 2312.5 409.5 2343.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 242) (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2325.0 -8.63916 -13.0762 169.559 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 245) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Rect 418.0 2312.0 566.0 2328.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 253) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252)) (RRect 378.5 2722.5 409.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 257) (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2735.0 -8.63916 -13.0762 206.356 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Rect 418.0 2722.0 606.0 2738.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 268) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 269) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 267)) (RRect 378.5 3132.5 409.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 272) (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1161.0 -9.96826 -15.0879 349.351 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1181.0 -9.96826 -15.0879 374.033 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1201.0 -9.96826 -15.0879 402.832 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 759.188 1201.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Full) (Rect 378.0 1146.0 776.0 1206.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1111.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1111.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 418.0 1098.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (Color 1.0 0.09411764705882353 0.09411764705882353 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Rect 362.0 1238.0 792.0 1481.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1238.0 792.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 362.0 1238.0 792.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1238.0 792.0 1480.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 28)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20)) (TextBlob 378.0 1591.0 -9.96826 -15.0879 396.365 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1611.0 -9.96826 -15.0879 389.788 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.141 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 378.0 1576.0 776.0 1616.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1521.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 514.25 1521.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 418.0 1508.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Rect 362.0 1648.0 792.0 1891.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 1648.0 792.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 362.0 1648.0 792.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 362.0 1648.0 792.0 1890.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 58)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (TextBlob 378.0 2001.0 -9.96826 -15.0879 374.949 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2021.0 -9.96826 -15.0879 402.085 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 754.266 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 378.0 1986.0 776.0 2026.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 1931.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 418.0 1918.0 627.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 85) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2058.0 792.0 2300.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (RRect 362.0 2058.0 792.0 2300.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2058.0 792.0 2300.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 88)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 80)) (TextBlob 378.0 2411.0 -9.96826 -15.0879 359.202 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2431.0 -9.96826 -15.0879 401.697 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.406 2431.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 378.0 2396.0 776.0 2436.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2341.0 -8.63916 -13.0762 116.886 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 516.156 2341.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 418.0 2328.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2468.0 792.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 118)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 110)) (Rect 362.0 2709.0 792.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (RRect 362.0 2468.0 792.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2468.0 792.0 2710.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2821.0 -9.96826 -15.0879 343.835 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2841.0 -9.96826 -15.0879 376.399 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.781 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 378.0 2806.0 776.0 2846.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 521.484 2751.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Full) (Rect 418.0 2738.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 138) (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Rect 362.0 2877.0 792.0 3120.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 362.0 2878.0 792.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 149)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 141)) (Rect 362.0 3119.0 792.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 153) (Intersect (Intersect (Full) (RRect 362.0 2878.0 792.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 362.0 2878.0 792.0 3120.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3231.0 -9.96826 -15.0879 381.145 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 158) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3251.0 -9.96826 -15.0879 400.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 756.047 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Full) (Rect 378.0 3216.0 776.0 3256.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 3161.0 -8.63916 -13.0762 121.247 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 520.516 3161.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 418.0 3148.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1137.0 -15.2109 -17.9453 349.961 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 169) (Intersect (Full) (Rect 378.0 1122.0 776.0 1142.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1547.0 -15.2109 -17.9453 374.312 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 173) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1567.0 -15.2109 -17.9453 324.297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 174) (Intersect (Full) (Rect 378.0 1532.0 776.0 1572.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1957.0 -15.2109 -17.9453 381.75 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 1977.0 -15.2109 -17.9453 79.4297 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 179) (Intersect (Full) (Rect 378.0 1942.0 776.0 1982.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2367.0 -15.2109 -17.9453 376.117 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2387.0 -15.2109 -17.9453 49.7891 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Full) (Rect 378.0 2352.0 776.0 2392.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2777.0 -15.2109 -17.9453 349.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 2797.0 -15.2109 -17.9453 76.9375 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Full) (Rect 378.0 2762.0 776.0 2802.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3187.0 -15.2109 -17.9453 373.453 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 193) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 378.0 3207.0 -15.2109 -17.9453 74.7266 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Full) (Rect 378.0 3172.0 776.0 3212.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1082.0 410.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (RRect 378.0 1082.0 410.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 200)) (RRect 378.5 1082.5 409.5 1113.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 205) (Intersect (Full) (Rect 378.0 1082.0 628.0 1114.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1492.0 410.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 213) (Intersect (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (RRect 378.0 1492.0 410.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 211)) (RRect 378.5 1492.5 409.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 216) (Intersect (Full) (Rect 378.0 1492.0 597.0 1524.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 1902.0 410.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (RRect 378.0 1902.0 410.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 222)) (RRect 378.5 1902.5 409.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 227) (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 1915.0 -8.63916 -13.0762 332.554 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 230) (Intersect (Intersect (Full) (Rect 378.0 1902.0 728.0 1934.0)) (Rect 418.0 1902.0 728.0 1918.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 238) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2312.0 410.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (RRect 378.0 2312.0 410.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 237)) (RRect 378.5 2312.5 409.5 2343.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 242) (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2325.0 -8.63916 -13.0762 169.559 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 245) (Intersect (Intersect (Full) (Rect 378.0 2312.0 622.0 2344.0)) (Rect 418.0 2312.0 566.0 2328.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 253) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 2722.0 410.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (RRect 378.0 2722.0 410.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252)) (RRect 378.5 2722.5 409.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 257) (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 418.0 2735.0 -8.63916 -13.0762 206.356 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Intersect (Full) (Rect 378.0 2722.0 627.0 2754.0)) (Rect 418.0 2722.0 606.0 2738.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 268) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 378.0 3132.0 410.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 269) (Intersect (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (RRect 378.0 3132.0 410.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 267)) (RRect 378.5 3132.5 409.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 272) (Intersect (Full) (Rect 378.0 3132.0 626.0 3164.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg index 71521703f..c77695c64 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 289.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 289.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 289.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 289.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg index 6192dc04c..f8595debc 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1137.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1161.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1181.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 829.0 1238.0 1070.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.397035 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1070.0 1238.0 1071.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1094.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1082.0 915.0 1099.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1111.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 1111.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 1111.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 31) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1082.0 856.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 829.5 1237.5 1221.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Rect 808.0 1238.0 1238.0 1481.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 57)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (Rect 808.0 1480.0 1238.0 1481.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1571.0 -9.96826 -15.0879 378.398 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1591.0 -9.96826 -15.0879 407.197 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1611.0 -9.96826 -15.0879 397.983 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1200.75 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1521.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1521.0 -8.63916 -13.0762 116.613 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Rect 808.0 1648.0 1238.0 1891.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 89)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 81)) (Rect 808.0 1890.0 1238.0 1891.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1981.0 -9.96826 -15.0879 358.33 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2001.0 -9.96826 -15.0879 415.767 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 99) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2021.0 -9.96826 -15.0879 353.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 100) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1155.16 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1931.0 -8.63916 -13.0762 122.814 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1547.0 -15.2109 -17.9453 363.328 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 824.0 1532.0 1222.0 1552.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 118) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 116)) (RRect 824.5 1492.5 855.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 121) (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1505.0 -8.63916 -13.0762 147.12 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Rect 864.0 1492.0 992.0 1508.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1137.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1161.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1181.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1146.0 1222.0 1186.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 829.0 1238.0 1070.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.397035 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1070.0 1238.0 1071.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 808.0 829.0 1238.0 1070.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1094.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1082.0 915.0 1099.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1111.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 1111.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 1111.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 31) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 864.0 1098.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1082.0 856.0 1114.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Rect 824.0 1082.0 942.0 1114.0)) (RRect 824.0 1082.0 856.0 1114.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 829.5 1237.5 1221.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 808.0 829.0 1238.0 1222.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Rect 808.0 1238.0 1238.0 1481.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1238.0 1238.0 1480.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 57)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (Rect 808.0 1480.0 1238.0 1481.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Full) (RRect 808.0 1238.0 1238.0 1480.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1238.0 1238.0 1480.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1571.0 -9.96826 -15.0879 378.398 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1591.0 -9.96826 -15.0879 407.197 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1611.0 -9.96826 -15.0879 397.983 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1200.75 1611.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Full) (Rect 824.0 1556.0 1222.0 1616.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1521.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1521.0 -8.63916 -13.0762 116.613 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 864.0 1508.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Rect 808.0 1648.0 1238.0 1891.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 1648.0 1238.0 1890.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 89)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 81)) (Rect 808.0 1890.0 1238.0 1891.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Intersect (Full) (RRect 808.0 1648.0 1238.0 1890.0 20.0 20.0 20.0 0.0)) (Rect 808.0 1648.0 1238.0 1890.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1981.0 -9.96826 -15.0879 358.33 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2001.0 -9.96826 -15.0879 415.767 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 99) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2021.0 -9.96826 -15.0879 353.027 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 100) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1155.16 2021.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 824.0 1966.0 1222.0 2026.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1931.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 1931.0 -8.63916 -13.0762 122.814 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 106) (Intersect (Full) (Rect 864.0 1918.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1547.0 -15.2109 -17.9453 363.328 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 110) (Intersect (Full) (Rect 824.0 1532.0 1222.0 1552.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1492.0 856.0 1524.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 118) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (RRect 824.0 1492.0 856.0 1524.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 116)) (RRect 824.5 1492.5 855.5 1523.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 121) (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 1505.0 -8.63916 -13.0762 147.12 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1492.0 1066.0 1524.0)) (Rect 864.0 1492.0 992.0 1508.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -829.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg index d9145066e..2085d5fc5 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg index f8c208fa9..db93a6779 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2367.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2391.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2411.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 808.0 2058.0 1238.0 2300.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 820.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2324.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2312.0 915.0 2329.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2341.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 2341.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 2341.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2312.0 856.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2058.5 1237.5 2451.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 40) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 55)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 47)) (Rect 808.0 2709.0 1238.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2801.0 -9.96826 -15.0879 411.079 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2821.0 -9.96826 -15.0879 395.354 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2841.0 -9.96826 -15.0879 361.34 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1163.73 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 2751.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 84) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Rect 808.0 2877.0 1238.0 3120.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 87)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79)) (Rect 808.0 3119.0 1238.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 91) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3231.0 -9.96826 -15.0879 413.679 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3251.0 -9.96826 -15.0879 376.794 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1179.19 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3161.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 960.25 3161.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1957.0 -15.2109 -17.9453 324.258 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (Rect 824.0 1942.0 1222.0 1962.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2777.0 -15.2109 -17.9453 260.164 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Full) (Rect 824.0 2762.0 1222.0 2782.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3187.0 -15.2109 -17.9453 391.734 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3207.0 -15.2109 -17.9453 142.359 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 116) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122)) (RRect 824.5 1902.5 855.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 127) (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 133)) (RRect 824.5 2722.5 855.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 138) (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2735.0 -8.63916 -13.0762 190.722 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Rect 864.0 2722.0 1035.0 2738.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 149) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148)) (RRect 824.5 3132.5 855.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 153) (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 1238.5 1237.5 1631.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 155) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2468.5 1237.5 2861.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 156) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2367.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2391.0 -9.96826 -15.0879 407.219 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2411.0 -9.96826 -15.0879 266.44 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2376.0 1222.0 2416.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 808.0 2058.0 1238.0 2300.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 820.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2324.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2312.0 915.0 2329.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2341.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 2341.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 2341.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 864.0 2328.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2312.0 856.0 2344.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Rect 824.0 2312.0 942.0 2344.0)) (RRect 824.0 2312.0 856.0 2344.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2058.5 1237.5 2451.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 40) (Intersect (Full) (RRect 808.0 2058.0 1238.0 2452.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (Color 1.0 0.7843137254901961 0.7215686274509804 0.6588235294117647) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2468.0 1238.0 2710.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 55)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 47)) (Rect 808.0 2709.0 1238.0 2710.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Intersect (Full) (RRect 808.0 2468.0 1238.0 2710.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2468.0 1238.0 2710.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2801.0 -9.96826 -15.0879 411.079 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2821.0 -9.96826 -15.0879 395.354 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2841.0 -9.96826 -15.0879 361.34 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1163.73 2841.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Full) (Rect 824.0 2786.0 1222.0 2846.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2751.0 -8.63916 -13.0762 122.211 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 967.484 2751.0 -8.63916 -13.0762 125.303 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 72) (Intersect (Full) (Rect 864.0 2738.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (Color 1.0 0.7529411764705882 0.7529411764705882 0.8156862745098039) (SrcOver) (Solid) (IdFilter) 84) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Rect 808.0 2877.0 1238.0 3120.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 808.0 2878.0 1238.0 3120.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 87)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79)) (Rect 808.0 3119.0 1238.0 3120.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 91) (Intersect (Intersect (Full) (RRect 808.0 2878.0 1238.0 3120.0 20.0 20.0 20.0 0.0)) (Rect 808.0 2878.0 1238.0 3120.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3231.0 -9.96826 -15.0879 413.679 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3251.0 -9.96826 -15.0879 376.794 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 97) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1179.19 3251.0 -9.96826 -15.0879 30.0 4.87061) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 824.0 3216.0 1222.0 3256.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3161.0 -8.63916 -13.0762 114.981 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 960.25 3161.0 -8.63916 -13.0762 101.264 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 864.0 3148.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 1957.0 -15.2109 -17.9453 324.258 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 107) (Intersect (Full) (Rect 824.0 1942.0 1222.0 1962.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 2777.0 -15.2109 -17.9453 260.164 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Full) (Rect 824.0 2762.0 1222.0 2782.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3187.0 -15.2109 -17.9453 391.734 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3207.0 -15.2109 -17.9453 142.359 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 116) (Intersect (Full) (Rect 824.0 3172.0 1222.0 3212.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 1902.0 856.0 1934.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (RRect 824.0 1902.0 856.0 1934.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122)) (RRect 824.5 1902.5 855.5 1933.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 127) (Intersect (Full) (Rect 824.0 1902.0 1072.0 1934.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 2722.0 856.0 2754.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (RRect 824.0 2722.0 856.0 2754.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 133)) (RRect 824.5 2722.5 855.5 2753.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 138) (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 2735.0 -8.63916 -13.0762 190.722 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Intersect (Full) (Rect 824.0 2722.0 1074.0 2754.0)) (Rect 864.0 2722.0 1035.0 2738.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 149) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3132.0 856.0 3164.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (RRect 824.0 3132.0 856.0 3164.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148)) (RRect 824.5 3132.5 855.5 3163.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 153) (Intersect (Full) (Rect 824.0 3132.0 1043.0 3164.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 1238.5 1237.5 1631.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 155) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 2468.5 1237.5 2861.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 156) (Full) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -1238.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg index 88c2391a1..9ff7ec651 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 478.0 290.0) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 478.0 290.0) (Paint (Color 1.0 0.0 0.0 0.0) (Overlay) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg index 3fcfb69fd..6dfb8f7d5 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3665.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 3597.0 1238.0 3598.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3622.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3610.0 915.0 3627.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3639.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 3639.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 3639.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3610.0 856.0 3642.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 3356.5 1237.5 3705.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 36) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4005.0 -8.63916 -13.0762 130.273 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 975.547 4005.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4370.0 -8.63916 -13.0762 101.251 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 946.516 4370.0 -8.63916 -13.0762 114.245 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4031.0 -15.2109 -17.9453 397.727 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4051.0 -15.2109 -17.9453 232.688 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4396.0 -15.2109 -17.9453 251.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 824.0 4381.0 1222.0 4401.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 61)) (RRect 824.5 3976.5 855.5 4007.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 72)) (RRect 824.5 4341.5 855.5 4372.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 77) (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4354.0 -8.63916 -13.0762 360.134 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1205.38 4354.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 81) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.4392156862745098 0.5647058823529412 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 88)) (RRect 824.5 4707.5 855.5 4738.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 93) (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4720.0 -8.63916 -13.0762 105.301 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Rect 864.0 4707.0 951.0 4723.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 3665.0 -15.2109 -17.9453 218.047 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1080.0 607.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 0.398148 0.0 0.0 0.0 0.0 0.398682 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 808.0 3597.0 1238.0 3598.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 808.0 3356.0 1238.0 3598.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3622.0 -12.3589 -14.5806 62.626 6.25244) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3610.0 915.0 3627.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 3639.0 -8.63916 -13.0762 70.916 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 916.156 3639.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 919.781 3639.0 -8.63916 -13.0762 40.46 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 864.0 3626.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3610.0 856.0 3642.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0) (Paint (Color 0.23921568627450981 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Rect 824.0 3610.0 942.0 3642.0)) (RRect 824.0 3610.0 856.0 3642.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 808.5 3356.5 1237.5 3705.5 19.5 19.5 19.5 19.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 36) (Intersect (Full) (RRect 808.0 3356.0 1238.0 3706.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4005.0 -8.63916 -13.0762 130.273 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 975.547 4005.0 -8.63916 -13.0762 123.843 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Full) (Rect 864.0 3992.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4370.0 -8.63916 -13.0762 101.251 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 946.516 4370.0 -8.63916 -13.0762 114.245 4.22119) (Paint (Color 1.0 0.5294117647058824 0.5372549019607843 0.5607843137254902) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 864.0 4357.0 1042.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4031.0 -15.2109 -17.9453 397.727 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4051.0 -15.2109 -17.9453 232.688 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 824.0 4016.0 1222.0 4056.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.0 4396.0 -15.2109 -17.9453 251.219 7.69531) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 55) (Intersect (Full) (Rect 824.0 4381.0 1222.0 4401.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 3976.0 856.0 4008.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (RRect 824.0 3976.0 856.0 4008.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 61)) (RRect 824.5 3976.5 855.5 4007.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 66) (Intersect (Full) (Rect 824.0 3976.0 1081.0 4008.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4341.0 856.0 4373.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (RRect 824.0 4341.0 856.0 4373.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 72)) (RRect 824.5 4341.5 855.5 4372.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 77) (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4354.0 -8.63916 -13.0762 360.134 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1205.38 4354.0 -8.63916 -13.0762 26.0 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 81) (Intersect (Intersect (Full) (Rect 824.0 4341.0 1222.0 4373.0)) (Rect 864.0 4341.0 1222.0 4357.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.4392156862745098 0.5647058823529412 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 89) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 824.0 4707.0 856.0 4739.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (RRect 824.0 4707.0 856.0 4739.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 88)) (RRect 824.5 4707.5 855.5 4738.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Stroke) (IdFilter) 93) (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 864.0 4720.0 -8.63916 -13.0762 105.301 4.22119) (Paint (Color 1.0 0.17254901960784313 0.17647058823529413 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 824.0 4707.0 1081.0 4739.0)) (Rect 864.0 4707.0 951.0 4723.0)) (Matrix 1.0 0.0 0.0 -808.0 0.0 1.0 0.0 -3356.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg index fcf424c90..9359ffea5 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 3963.0 792.0 3964.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 3928.0 780.0 3952.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 3944.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 3931.0 772.0 3947.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 3722.0 1238.0 3964.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 3721.0 1238.0 3964.0)) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) +(let $test (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 3963.0 792.0 3964.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 3928.0 780.0 3952.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 3944.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 3931.0 772.0 3947.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 3722.0 1238.0 3964.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 3721.0 1238.0 3964.0)) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 3722.0 1238.0 3964.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -3721.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg index 324c5a2aa..a8f4be307 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4329.0 792.0 4330.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4293.0 780.0 4317.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4310.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4297.0 772.0 4313.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4088.0 1238.0 4329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4087.0 1238.0 4330.0)) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) +(let $test (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4329.0 792.0 4330.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4293.0 780.0 4317.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4310.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4297.0 772.0 4313.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4088.0 1238.0 4329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4087.0 1238.0 4330.0)) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4088.0 1238.0 4329.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4087.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg index ae2e10f86..019b00985 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4695.0 792.0 4696.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4659.0 780.0 4683.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4676.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4663.0 772.0 4679.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4453.0 1238.0 4695.0) (Paint (Color 1.0 0.7215686274509804 0.7215686274509804 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4453.0 1238.0 4696.0)) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) +(let $test (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 362.0 4695.0 792.0 4696.0) (Paint (Color 0.12156862745098039 0.0 0.06274509803921569 0.23921568627450981) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 731.0 4659.0 780.0 4683.0 6.0 6.0 6.0 6.0) (Paint (Color 0.47843137254901963 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 739.453 4676.0 -12.3589 -14.5806 44.0972 6.25244) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 739.0 4663.0 772.0 4679.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 808.0 4453.0 1238.0 4695.0) (Paint (Color 1.0 0.7215686274509804 0.7215686274509804 0.7529411764705882) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 808.0 4453.0 1238.0 4696.0)) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (RRect 808.0 4453.0 1238.0 4695.0 20.0 20.0 20.0 0.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -362.0 0.0 1.0 0.0 -4453.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg index e531b889c..7bcb34d2d 100644 --- a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg +++ b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.4 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix 0.353553 -0.353553 0.0 20.0 0.353553 0.353553 0.0 5.858000000000004 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.4 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg index 2138fa115..6b80ebf4b 100644 --- a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg +++ b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.8 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Rect 0.0 34.0 40.1 40.0)) (Path 11)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 40.0 40.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 40.0 40.0 6.0 6.0 6.0 6.0)) (RRect 6.0 0.0 40.0 34.0 0.0 0.0 6.0 0.0)) (Path 15)) (Rect 0.0 -0.1 6.0 40.0)) (Matrix -0.353553 0.353553 0.0 20.0 -0.353553 -0.353553 0.0 34.14200000000005 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.8 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg b/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg index db30fa74f..2362d7746 100644 --- a/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg +++ b/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 80.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 6) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 10) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 12) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 13) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 15) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 17) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 18) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 19) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 28) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 26)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 21)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7)) (TextBlob 154.0 46.0 -0.15625 -13.0 57.6432 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 242.953 46.0 -1.15625 -13.0 40.1484 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 729.047 46.0 -1.15625 -13.0 46.7891 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 37) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 807.016 46.0 -0.15625 -14.0 87.1797 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 38) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 924.875 46.0 -1.15625 -13.0 51.4167 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1007.59 46.0 -0.15625 -13.0 43.3333 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 40) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1090.0 16.0 1167.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1105.61 46.0 -0.15625 -14.0 45.7891 5.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1175.0 16.0 1264.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9137254901960784 0.9137254901960784 0.9137254901960784) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1191.05 46.0 -1.15625 -14.0 57.9453 5.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 80.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 6) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 10) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 12) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 13) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 14) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 15) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 17) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 18) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 19) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 28) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Full) (Rect 0.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Rect 21.0 0.0 98.0 18.0)) (Matrix 1.0 0.0 0.0 28.0 0.0 1.0 0.0 30.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 26)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 21)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7)) (TextBlob 154.0 46.0 -0.15625 -13.0 57.6432 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 35) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 242.953 46.0 -1.15625 -13.0 40.1484 4.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 36) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 729.047 46.0 -1.15625 -13.0 46.7891 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 37) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 807.016 46.0 -0.15625 -14.0 87.1797 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 38) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 924.875 46.0 -1.15625 -13.0 51.4167 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1007.59 46.0 -0.15625 -13.0 43.3333 2.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 40) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1090.0 16.0 1167.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9019607843137255 0.0 0.13725490196078433) (SrcOver) (Solid) (IdFilter) 41) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1105.61 46.0 -0.15625 -14.0 45.7891 5.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 42) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1175.0 16.0 1264.0 64.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.9137254901960784 0.9137254901960784 0.9137254901960784) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1191.05 46.0 -1.15625 -14.0 57.9453 5.0) (Paint (Color 1.0 0.06666666666666667 0.06666666666666667 0.06666666666666667) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg b/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg index 3be10035b..b60407376 100644 --- a/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 778.0 460.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 7) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (RRect 25.0 25.0 753.0 435.0 4.0 4.0 4.0 4.0)) (Matrix 0.875 0.0 0.0 26.0 0.0 0.876068 0.0 26.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 206.0 413.0 254.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Full) (RRect 365.0 206.0 413.0 254.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 381.141 238.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 0.0 0.0 778.0 460.0) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 7) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (RRect 0.0 0.0 778.0 460.0 24.0 24.0 24.0 24.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5)) (ImageRect 0.0 0.0 832.0 468.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Full) (RRect 25.0 25.0 753.0 435.0 4.0 4.0 4.0 4.0)) (Matrix 0.875 0.0 0.0 26.0 0.0 0.876068 0.0 26.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 206.0 413.0 254.0) (Paint (Color 1.0 0.03529411764705882 0.12156862745098039 0.17254901960784313) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Full) (RRect 365.0 206.0 413.0 254.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 381.141 238.0 -0.0078125 -16.0234 63.75 0.0546875) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg index 36dac648a..e90800f45 100644 --- a/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (SaveLayer (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 1436.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 759.0 1280.0 1436.0) (Paint (Color 1.0 0.11764705882352941 0.11764705882352941 0.11764705882352941) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 1239.0 -1.0752 -12.0 145.883 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 44.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 80.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 116.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 152.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 188.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 224.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 260.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 624.078 1239.0 -1.0752 -11.0 73.2334 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 824.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 874.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 924.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 974.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1024.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1074.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1124.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 82) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 25.0 0.0 0.0 945.0 0.0 12.0 0.0 1393.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 393.0 103.0 887.0 667.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 433.0 211.0 847.0 293.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.0 414.0 847.0 462.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 563.281 158.0 -1.22461 -17.0 154.65 5.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 111) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.0136719 0.0 0.0 549.0 0.0 0.0136719 0.0 175.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 568.688 187.0 -1.0752 -12.0 163.075 4.0) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 514.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 468.562 270.0 -0.117188 -13.0 130.921 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 727.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 703.734 270.0 -0.117188 -12.0 86.5635 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 605.703 444.0 -1.15625 -14.0 69.2734 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 125) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 583.203 490.0 696.797 491.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 129) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 642.193 489.5 649.705 491.8)) (Rect 668.193 489.5 675.705 491.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 583.203 489.0 -1.03809 -11.0 113.958 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 549.828 538.0 -1.0752 -12.0 181.086 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.234 626.0 -0.0380859 -11.0 190.139 4.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 633.875 627.0 717.0 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 633.875 626.0 -1.03809 -11.0 84.48 2.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 717.0 626.0 2.54199 -11.0 26.1479 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 746.688 627.0 834.953 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 140) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 785.75 626.5 791.238 628.8)) (Rect 827.251 626.5 832.739 628.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.688 626.0 -0.0380859 -11.0 89.7634 4.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 834.953 626.0 -0.0380859 -3.0 3.96191 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 143) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 454.688 289.0 -0.0380859 -11.0 158.839 2.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 704.062 289.0 -0.0380859 -11.0 86.0825 4.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 433.0 337.0 -0.0751953 -12.0 216.402 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.5 349.5 846.5 393.5 3.5 3.5 3.5 3.5) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Stroke) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 433.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 154) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 742.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 12.0 12.0 52.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 163) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 0.555556 0.0 0.0 524.0 0.0 0.555556 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 76.0 12.0 116.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 172) (Paint (Color 1.0 0.09411764705882353 0.4666666666666667 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 588.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 140.0 12.0 180.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 652.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 204.0 12.0 244.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 716.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 804.0 -1.0752 -12.0 96.4985 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 203) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 788.0 279.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 347.828 804.0 -1.0752 -12.0 122.268 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 348.0 788.0 581.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.078 804.0 -0.0751953 -12.0 32.9824 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 649.0 788.0 808.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 940.0 -0.0751953 -12.0 167.951 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 215) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 876.0 924.0 1236.0 945.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 219) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 971.0 -0.0380859 -11.0 103.577 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 959.0 1044.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 971.0 -1.03809 -11.0 131.443 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 959.0 1236.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 235) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 998.0 -0.0380859 -11.0 129.678 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1033.62 998.0 -0.0380859 -3.0 10.9619 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 244) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 998.0 -0.0380859 -11.0 136.216 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 986.0 1236.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 1025.0 -0.0380859 -11.0 96.1562 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 256) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 1013.0 1044.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 1025.0 -1.03809 -11.0 144.5 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 264) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 1013.0 1236.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 1143.0 -1.0752 -12.0 132.758 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 266) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 274) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 274) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 282) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 282) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 877.0 789.0 1235.0 891.0 11.0 11.0 11.0 11.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 286) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 961.0 1056.0 972.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 287) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 988.0 1056.0 999.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 288) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 1015.0 1056.0 1026.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 876.5 1045.5 1043.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 290) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 895.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 932.969 1082.0 -1.15625 -13.0 74.8841 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 295) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 160.727 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 298) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 933.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1056.5 1045.5 1223.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 300) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 303) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 1075.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1112.97 1082.0 -1.15625 -13.0 89.2292 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 305) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 80.0732 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 308) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 1113.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 312) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 876.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 316) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 929.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 320) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 982.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 324) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1035.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 328) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1088.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1141.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 225.984 1403.0 -1.0 -10.0 161.191 2.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 334) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 406.75 1404.0 479.781 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 406.75 1403.0 -1.0 -10.0 74.1641 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 335)) (Draw (Draw (Empty) (Rect 499.781 1404.0 578.094 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 344) (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 535.445 1403.0 539.139 1405.2)) (Rect 544.185 1403.0 547.604 1405.2)) (Rect 572.464 1403.0 576.159 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 499.781 1403.0 0.0 -10.0 79.7832 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 346) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 339)) (Draw (Draw (Empty) (Rect 598.094 1404.0 804.016 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 354) (Difference (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 725.765 1403.0 729.184 1405.2)) (Rect 761.38 1403.0 765.075 1405.2)) (Rect 770.12 1403.0 773.54 1405.2)) (Rect 798.4 1403.0 802.094 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 598.094 1403.0 -1.0 -10.0 207.406 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 356) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 348)) (Draw (Draw (Empty) (Rect 824.016 1404.0 940.969 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 362) (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 852.669 1403.0 856.089 1405.2)) (Rect 888.285 1403.0 891.979 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.016 1403.0 -1.0 -10.0 117.66 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 364) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 358)) (Draw (Draw (Empty) (Rect 989.969 1404.0 1054.02 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 989.969 1403.0 -1.0 -10.0 64.7559 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 368) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 366)) (ImageRect 878.0 790.0 1234.0 890.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 372) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 816.0 -1.0752 -12.0 173.339 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 375) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 834.0 -0.0751953 -11.0 107.964 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 376) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 890.0 850.0 1047.0 878.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 378) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 901.016 868.0 -1.0 -11.0 136.133 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 381) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 901.0 857.0 1036.0 871.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 71.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 384) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 70.0 1280.0 71.0) (Paint (Color 1.0 0.9254901960784314 0.9254901960784314 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 385) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 391) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 54.0 54.0)) (Matrix 0.0527344 0.0 0.0 44.0 0.0 0.0527344 0.0 8.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 399) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 399) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 0.015625 0.0 0.0 126.0 0.0 0.015625 0.0 27.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 147.0 41.0 -1.0752 -12.0 166.854 4.0) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (SaveLayer (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 1436.0) (Paint (Color 1.0 1.0 1.0 1.0) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 759.0 1280.0 1436.0) (Paint (Color 1.0 0.11764705882352941 0.11764705882352941 0.11764705882352941) (SrcOver) (Solid) (IdFilter) 4) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 5) (Paint (Color 0.10196078431372549 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 1239.0 -1.0752 -12.0 145.883 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 44.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 80.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 116.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 152.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 188.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 224.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 28.0 0.0 0.0 260.0 0.0 28.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 624.078 1239.0 -1.0752 -11.0 73.2334 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 824.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 874.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 924.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 974.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1024.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1074.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 1124.0 0.0 28.0 0.0 1254.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 82) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 624.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 674.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 724.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 42.0 0.0 0.0 774.0 0.0 28.0 0.0 1292.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 98) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 25.0 0.0 0.0 945.0 0.0 12.0 0.0 1393.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 393.0 103.0 887.0 667.0 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 433.0 211.0 847.0 293.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.0 414.0 847.0 462.0 24.0 24.0 24.0 24.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 563.281 158.0 -1.22461 -17.0 154.65 5.0) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 111) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 111) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.0136719 0.0 0.0 549.0 0.0 0.0136719 0.0 175.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 568.688 187.0 -1.0752 -12.0 163.075 4.0) (Paint (Color 1.0 0.0392156862745098 0.5333333333333333 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 117) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 514.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 468.562 270.0 -0.117188 -13.0 130.921 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 119) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 0.555556 0.0 0.0 727.0 0.0 0.555556 0.0 211.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 703.734 270.0 -0.117188 -12.0 86.5635 2.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 124) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 605.703 444.0 -1.15625 -14.0 69.2734 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 125) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 583.203 490.0 696.797 491.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 129) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 642.193 489.5 649.705 491.8)) (Rect 668.193 489.5 675.705 491.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 583.203 489.0 -1.03809 -11.0 113.958 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 549.828 538.0 -1.0752 -12.0 181.086 4.0) (Paint (Color 1.0 0.5333333333333333 0.5333333333333333 0.5333333333333333) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 441.234 626.0 -0.0380859 -11.0 190.139 4.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 133) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 633.875 627.0 717.0 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 134) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 633.875 626.0 -1.03809 -11.0 84.48 2.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 717.0 626.0 2.54199 -11.0 26.1479 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 746.688 627.0 834.953 628.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 140) (Difference (Difference (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 785.75 626.5 791.238 628.8)) (Rect 827.251 626.5 832.739 628.8)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 746.688 626.0 -0.0380859 -11.0 89.7634 4.0) (Paint (Color 1.0 0.0 0.396078431372549 0.7450980392156863) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 834.953 626.0 -0.0380859 -3.0 3.96191 2.0) (Paint (Color 1.0 0.2 0.2 0.2) (SrcOver) (Solid) (IdFilter) 143) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 454.688 289.0 -0.0380859 -11.0 158.839 2.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 704.062 289.0 -0.0380859 -11.0 86.0825 4.0) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 433.0 337.0 -0.0751953 -12.0 216.402 4.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 433.5 349.5 846.5 393.5 3.5 3.5 3.5 3.5) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Stroke) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 433.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 105.0 1.0) (Paint (Color 1.0 0.9019607843137255 0.9019607843137255 0.9019607843137255) (SrcOver) (Solid) (IdFilter) 154) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Matrix 1.0 0.0 0.0 742.0 0.0 0.5 0.0 533.25 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 12.0 12.0 52.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 72.0 72.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 163) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 0.555556 0.0 0.0 524.0 0.0 0.555556 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 76.0 12.0 116.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 172) (Paint (Color 1.0 0.09411764705882353 0.4666666666666667 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 588.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 140.0 12.0 180.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 652.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 204.0 12.0 244.0 52.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Matrix 1.0 0.0 0.0 512.0 0.0 1.0 0.0 542.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.13333333333333333 0.13333333333333333 0.13333333333333333) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 71.0 1236.0 699.0)) (Rect 512.0 542.0 768.0 614.0)) (Rect 0.0 0.0 40.0 40.0)) (Matrix 0.0390625 0.0 0.0 716.0 0.0 0.0390625 0.0 554.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 44.0 804.0 -1.0752 -12.0 96.4985 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 203) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 44.0 788.0 279.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 347.828 804.0 -1.0752 -12.0 122.268 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 348.0 788.0 581.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 649.078 804.0 -0.0751953 -12.0 32.9824 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 649.0 788.0 808.0 809.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 940.0 -0.0751953 -12.0 167.951 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 215) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 876.0 924.0 1236.0 945.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 219) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 971.0 -0.0380859 -11.0 103.577 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 223) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 959.0 1044.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 956.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 971.0 -1.03809 -11.0 131.443 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 959.0 1236.0 974.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 235) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 998.0 -0.0380859 -11.0 129.678 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 239) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1033.62 998.0 -0.0380859 -3.0 10.9619 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 986.0 1044.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 244) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 983.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 998.0 -0.0380859 -11.0 136.216 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 986.0 1236.0 1001.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 252) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 876.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.969 1025.0 -0.0380859 -11.0 96.1562 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 256) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 901.0 1013.0 1044.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 30.0 30.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 260) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.7 0.0 0.0 1067.0 0.0 0.7 0.0 1010.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.47 1025.0 -1.03809 -11.0 144.5 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 264) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 1092.0 1013.0 1236.0 1028.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 875.969 1143.0 -1.0752 -12.0 132.758 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 266) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 274) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 274) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 282) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 282) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 19.0 788.0 279.0 1185.0)) (Rect 0.0 0.0 74.0 74.0)) (Matrix 0.0722656 0.0 0.0 34.0 0.0 0.0722656 0.0 1121.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 877.0 789.0 1235.0 891.0 11.0 11.0 11.0 11.0) (Paint (Color 0.4 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 286) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 961.0 1056.0 972.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 287) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 988.0 1056.0 999.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 288) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1055.0 1015.0 1056.0 1026.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 876.5 1045.5 1043.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 290) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 895.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 932.969 1082.0 -1.15625 -13.0 74.8841 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 295) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 160.727 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 298) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 933.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1056.5 1045.5 1223.5 1094.5 24.5 24.5 24.5 24.5) (Paint (Color 1.0 0.25882352941176473 0.25882352941176473 0.25882352941176473) (SrcOver) (Stroke) (IdFilter) 300) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 303) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 30.0 0.0 0.0 1075.0 0.0 30.0 0.0 1056.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1112.97 1082.0 -1.15625 -13.0 89.2292 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 305) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 0.0 24.0 -0.128906 -17.0 80.0732 2.0) (Paint (Color 0.6 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 308) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 0.5 0.0 0.0 1113.0 0.0 0.5 0.0 1051.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 312) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 876.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 316) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 929.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 320) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 982.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 324) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1035.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 328) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1088.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 1.0 1.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 26.0 0.0 0.0 1141.0 0.0 26.0 0.0 1159.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 225.984 1403.0 -1.0 -10.0 161.191 2.0) (Paint (Color 0.5019607843137255 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 334) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 406.75 1404.0 479.781 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 406.75 1403.0 -1.0 -10.0 74.1641 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 335)) (Draw (Draw (Empty) (Rect 499.781 1404.0 578.094 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 344) (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 535.445 1403.0 539.139 1405.2)) (Rect 544.185 1403.0 547.604 1405.2)) (Rect 572.464 1403.0 576.159 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 499.781 1403.0 0.0 -10.0 79.7832 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 346) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 339)) (Draw (Draw (Empty) (Rect 598.094 1404.0 804.016 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 354) (Difference (Difference (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 725.765 1403.0 729.184 1405.2)) (Rect 761.38 1403.0 765.075 1405.2)) (Rect 770.12 1403.0 773.54 1405.2)) (Rect 798.4 1403.0 802.094 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 598.094 1403.0 -1.0 -10.0 207.406 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 356) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 348)) (Draw (Draw (Empty) (Rect 824.016 1404.0 940.969 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 362) (Difference (Difference (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 852.669 1403.0 856.089 1405.2)) (Rect 888.285 1403.0 891.979 1405.2)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 824.016 1403.0 -1.0 -10.0 117.66 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 364) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 358)) (Draw (Draw (Empty) (Rect 989.969 1404.0 1054.02 1405.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 989.969 1403.0 -1.0 -10.0 64.7559 2.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 368) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 366)) (ImageRect 878.0 790.0 1234.0 890.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 372) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 816.0 -1.0752 -12.0 173.339 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 375) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 889.969 834.0 -0.0751953 -11.0 107.964 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 376) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 890.0 802.0 1106.0 838.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 890.0 850.0 1047.0 878.0 14.0 14.0 14.0 14.0) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 378) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 901.016 868.0 -1.0 -11.0 136.133 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 381) (Intersect (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (RRect 878.0 790.0 1234.0 890.0 10.0 10.0 10.0 10.0)) (Rect 901.0 857.0 1036.0 871.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 71.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 384) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 70.0 1280.0 71.0) (Paint (Color 1.0 0.9254901960784314 0.9254901960784314 0.9254901960784314) (SrcOver) (Solid) (IdFilter) 385) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 391) (Paint (Color 1.0 0.984313725490196 0.4666666666666667 0.00392156862745098) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 54.0 54.0)) (Matrix 0.0527344 0.0 0.0 44.0 0.0 0.0527344 0.0 8.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 399) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 399) (Intersect (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Rect 0.0 0.0 16.0 16.0)) (Matrix 0.015625 0.0 0.0 126.0 0.0 0.015625 0.0 27.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 147.0 41.0 -1.0752 -12.0 166.854 4.0) (Paint (Color 1.0 0.047058823529411764 0.6705882352941176 0.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (Rect 0.0 -8388610.0 1280.0 8388610.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg b/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg index b2103455e..384a2e3aa 100644 --- a/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg +++ b/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 741.5 3685.0 -3.04688 -13.96 124.651 2.74658) (Paint (Color 1.0 0.07058823529411765 0.07058823529411765 0.07058823529411765) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -348.0 0.0 1.0 0.0 -3658.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Empty) (SaveLayer (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 17) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 27) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 24)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 19)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13)) (SaveLayer (Draw (Draw (Empty) (Path 37) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 48) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 45)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 40)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12)) (Draw (Draw (Empty) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 56)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 0.0 0.0 24.0 24.0) (Paint (Color 0.4980392156862745 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 488.0 0.0 1.0 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 78) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.2 0.0 0.0 488.0 0.0 1.2 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 69)) (Paint (Color 0.6509803921568628 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66))) +(let $test (SaveLayer (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 741.5 3685.0 -3.04688 -13.96 124.651 2.74658) (Paint (Color 1.0 0.07058823529411765 0.07058823529411765 0.07058823529411765) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -348.0 0.0 1.0 0.0 -3658.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (SaveLayer (Empty) (SaveLayer (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 2.25 2.25 20.75 20.75) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 17) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 27) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 27) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 28) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 28) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 0.0 0.0 23.0 23.0)) (Rect 0.4 0.4 22.6 22.6)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 24)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 19)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 13)) (SaveLayer (Draw (Draw (Empty) (Path 37) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 38) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 88.0 23.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 48) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 49) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Rect 18.0 -1.0 92.0 25.0)) (Rect 18.9455 3.6 91.5995 20.4)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 45)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 40)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12)) (Draw (Draw (Empty) (Path 57) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 58) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect -4.0 0.0 84.0 23.0)) (Rect 0.0 0.0 88.0 23.0)) (Matrix 1.0 0.0 0.0 6.0 0.0 1.0 0.0 300.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.9019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 56)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 0.0 0.0 24.0 24.0) (Paint (Color 0.4980392156862745 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 70) (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 488.0 0.0 1.0 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 78) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 24.0 24.0 12.0 12.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 1.2 0.0 0.0 488.0 0.0 1.2 0.0 295.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 69)) (Paint (Color 0.6509803921568628 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 66))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg b/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg index aafb60731..a66aa6467 100644 --- a/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg +++ b/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.054901960784313725 0.054901960784313725 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.054901960784313725 0.054901960784313725 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg b/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg index 4b66554ba..5770a6945 100644 --- a/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg +++ b/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Draw (Empty) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 8) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 6)) (Path 7)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 13) (Intersect (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 11)) (Path 12)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 0.6784313725490196 0.6784313725490196 0.7215686274509804) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 16)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.34901960784313724 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4)) (Rect 0.0 0.0 28.0 28.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Difference (Intersect (Full) (RRect 0.0 0.0 28.0 28.0 14.0 14.0 14.0 14.0)) (RRect 2.0 2.0 26.0 26.0 12.0 12.0 12.0 12.0)) (Path 21)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg index 9877d7039..07095fe62 100644 --- a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 262.0 350.0 587.0) (Paint (Color 1.0 0.9019607843137255 0.9254901960784314 0.996078431372549) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 262.5 349.5 586.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 291.0 344.0 359.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 291.5 343.5 358.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 364.0 344.0 581.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 364.5 343.5 580.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 396.0 343.0 397.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 597.5 349.5 1016.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 1027.5 349.5 1367.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 350.0 240.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 10.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.0 281.0 -5.213 -16.653 55.471 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 66.2344 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 73.3906 282.0 -4.632 -15.192 62.868 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 136.484 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.0 268.0 344.0 286.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.5 268.5 343.5 285.5) (Paint (Color 1.0 0.7176470588235294 0.7176470588235294 0.7176470588235294) (SrcOver) (Stroke) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 300.0 281.0 -3.86 -12.66 42.32 3.73) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 13.0 467.0 -5.018 -16.458 79.846 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.0 1054.0 -5.614 -17.934 240.618 6.258) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 252.047 1053.0 -4.632 -15.192 33.48 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.641 1053.0 -4.632 -15.192 26.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 33.0 1091.0 43.0 1101.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1091.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1091.0 -5.404 -17.724 34.104 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1112.0 -4.632 -15.192 204.024 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 49.0 1100.0 339.0 1114.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 33.0 1146.0 43.0 1156.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1146.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1146.0 -5.404 -17.724 108.01 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 52) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 53) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1167.0 -4.632 -15.192 58.668 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 104.375 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.266 1167.0 -4.632 -15.192 97.704 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 203.797 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 211.688 1167.0 -4.632 -15.192 73.7519 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Full) (Rect 33.0 1201.0 43.0 1211.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1201.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1201.0 -5.404 -17.724 143.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1222.0 -4.632 -15.192 98.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 148.594 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 156.484 1222.0 -4.632 -15.192 54.78 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 212.078 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 219.969 1222.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 79) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 33.0 1256.0 43.0 1266.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1256.0 -5.404 -17.724 45.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 89) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 95) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1277.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.594 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 120.484 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.969 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.859 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 112) (Paint (Color 1.0 0.23921568627450981 0.4627450980392157 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 112) (Intersect (Intersect (Full) (Rect 33.0 1311.0 43.0 1321.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1311.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1311.0 -5.404 -17.724 115.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 121) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 121) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 122) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.594 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 108.484 1332.0 -4.632 -15.192 50.508 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.312 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 130) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.203 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 157.0 1355.0 -5.018 -16.458 185.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 133) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 114.75 1409.0 -5.018 -16.458 123.5 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.1406 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 135) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 63.1406 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 72.4375 1430.0 -4.632 -15.192 98.064 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 137) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.719 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 138) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 182.016 1430.0 -4.632 -15.192 98.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 139) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.547 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 140) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.844 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 47.7812 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 142) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.781 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 110.078 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 144) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.078 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.375 1450.0 -4.632 -15.192 132.624 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 146) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.6562 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 147) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.703 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 145.0 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 149) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 269.047 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.344 1470.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 133.109 1503.0 -3.86 -12.66 89.9099 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 46.7188 345.0 -4.246 -13.926 35.112 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 164) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 165) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 166) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 168) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 167)) (Path 170) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 170) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 159)) (TextBlob 131.047 345.0 -4.246 -13.926 90.442 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 182) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 183) (Paint (Color 1.0 0.45098039215686275 0.2549019607843137 0.0) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.7803921568627451 0.48627450980392156 0.0) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 185) (Paint (Color 1.0 0.9647058823529412 0.7137254901960784 0.0) (SrcOver) (Solid) (IdFilter) 185) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 186) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 187) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 12.25 13.227 15.75 16.621) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 189) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 190) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 190) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 191) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Empty) (Path 195) (Paint (Color 1.0 0.5294117647058824 0.3215686274509804 0.0) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.403921568627451 0.2235294117647059 0.0) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 197) (Paint (Color 1.0 0.8980392156862745 0.7568627450980392 0.011764705882352941) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 206) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Rect 1.0 11.0 27.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 204)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 199)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 192)) (Path 212) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 119.0 302.0 120.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 215) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 245.297 344.0 -4.246 -13.926 85.954 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 216) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Path 227) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 236) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 236) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 234)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 229)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (SaveLayer (Draw (Empty) (Path 248) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 257) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 257) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 255)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 250)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 245)) (Rect 231.0 302.0 232.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 266) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 365.0 343.0 396.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 267) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 275) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 275) (Intersect (Intersect (Full) (Rect 17.0 375.0 27.0 385.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 0.555556 0.0 0.0 17.0 0.0 0.555556 0.0 375.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 385.0 -5.213 -16.653 130.065 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 279) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.0 385.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 280) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (SaveLayer (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 262.0 350.0 587.0) (Paint (Color 1.0 0.9019607843137255 0.9254901960784314 0.996078431372549) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 262.5 349.5 586.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 291.0 344.0 359.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 291.5 343.5 358.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.0 364.0 344.0 581.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 6.5 364.5 343.5 580.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 396.0 343.0 397.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 597.5 349.5 1016.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.5 1027.5 349.5 1367.5) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Stroke) (IdFilter) 9) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 350.0 240.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 10.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.0 281.0 -5.213 -16.653 55.471 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 66.2344 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 73.3906 282.0 -4.632 -15.192 62.868 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 136.484 281.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.0 268.0 344.0 286.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 296.5 268.5 343.5 285.5) (Paint (Color 1.0 0.7176470588235294 0.7176470588235294 0.7176470588235294) (SrcOver) (Stroke) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 300.0 281.0 -3.86 -12.66 42.32 3.73) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 13.0 467.0 -5.018 -16.458 79.846 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.0 1054.0 -5.614 -17.934 240.618 6.258) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 252.047 1053.0 -4.632 -15.192 33.48 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.641 1053.0 -4.632 -15.192 26.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 30) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 33.0 1091.0 43.0 1101.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1091.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1091.0 -5.404 -17.724 34.104 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1112.0 -4.632 -15.192 204.024 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Full) (Rect 49.0 1100.0 339.0 1114.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 33.0 1146.0 43.0 1156.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1146.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1146.0 -5.404 -17.724 108.01 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 52) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 53) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 151.0 1134.0 165.0 1147.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 151.0 0.0 1.0 0.0 1134.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1167.0 -4.632 -15.192 58.668 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 104.375 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 59) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.266 1167.0 -4.632 -15.192 97.704 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 203.797 1167.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 211.688 1167.0 -4.632 -15.192 73.7519 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 62) (Intersect (Full) (Rect 49.0 1155.0 339.0 1169.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Full) (Rect 33.0 1201.0 43.0 1211.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1201.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1201.0 -5.404 -17.724 143.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1222.0 -4.632 -15.192 98.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 148.594 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 156.484 1222.0 -4.632 -15.192 54.78 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 212.078 1222.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 78) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 219.969 1222.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 79) (Intersect (Full) (Rect 49.0 1210.0 339.0 1224.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 33.0 1256.0 43.0 1266.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1256.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1256.0 -5.404 -17.724 45.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 89) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 95) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Full) (Rect 91.0 1244.0 105.0 1257.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 91.0 0.0 1.0 0.0 1244.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1277.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 101) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 112.594 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 120.484 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.969 1277.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.859 1277.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 105) (Intersect (Full) (Rect 49.0 1265.0 339.0 1279.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 112) (Paint (Color 1.0 0.23921568627450981 0.4627450980392157 0.1803921568627451) (SrcOver) (Solid) (IdFilter) 112) (Intersect (Intersect (Full) (Rect 33.0 1311.0 43.0 1321.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 33.0 0.0 1.0 0.0 1311.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1311.0 -5.404 -17.724 115.248 5.222) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 115) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 121) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 121) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 122) (Paint (Color 1.0 0.5254901960784314 0.6235294117647059 0.8352941176470589) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Intersect (Full) (Rect 166.0 1299.0 180.0 1312.0)) (Rect 0.0 0.0 14.0 13.0)) (Matrix 1.0 0.0 0.0 166.0 0.0 1.0 0.0 1299.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 49.0 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 127) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.594 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 128) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 108.484 1332.0 -4.632 -15.192 50.508 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 129) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 155.312 1332.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 130) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.203 1332.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.4 0.4 0.4) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (Rect 49.0 1320.0 339.0 1334.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 157.0 1355.0 -5.018 -16.458 185.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 133) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 114.75 1409.0 -5.018 -16.458 123.5 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 134) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 10.1406 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 135) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 63.1406 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 72.4375 1430.0 -4.632 -15.192 98.064 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 137) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.719 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 138) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 182.016 1430.0 -4.632 -15.192 98.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 139) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.547 1429.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 140) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 291.844 1430.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 141) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 47.7812 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 142) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 100.781 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 143) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 110.078 1450.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 144) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 163.078 1449.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 145) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 172.375 1450.0 -4.632 -15.192 132.624 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 146) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 11.6562 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 147) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.703 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 148) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 145.0 1470.0 -4.632 -15.192 121.824 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 149) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 269.047 1469.0 -4.632 -15.192 14.784 4.476) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 150) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 278.344 1470.0 -4.632 -15.192 62.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 133.109 1503.0 -3.86 -12.66 89.9099 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 152) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 46.7188 345.0 -4.246 -13.926 35.112 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 153) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 164) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 164) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 165) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 166) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 168) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 168) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 167)) (Path 170) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 170) (Intersect (Intersect (Intersect (Full) (Rect 46.0 305.0 80.0 329.0)) (Rect 0.0 0.0 34.0 24.0)) (Rect 0.0 0.0 34.0 24.0)) (Matrix 0.485714 0.0 0.0 46.0 0.0 0.48 0.0 305.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 159)) (TextBlob 131.047 345.0 -4.246 -13.926 90.442 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 176) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 182) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 183) (Paint (Color 1.0 0.45098039215686275 0.2549019607843137 0.0) (SrcOver) (Solid) (IdFilter) 183) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 184) (Paint (Color 1.0 0.7803921568627451 0.48627450980392156 0.0) (SrcOver) (Solid) (IdFilter) 184) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 185) (Paint (Color 1.0 0.9647058823529412 0.7137254901960784 0.0) (SrcOver) (Solid) (IdFilter) 185) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 186) (Paint (Color 1.0 0.5882352941176471 0.3568627450980392 0.0) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 187) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 12.25 13.227 15.75 16.621) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 188) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 189) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 189) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 190) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 190) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 191) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Empty) (Path 195) (Paint (Color 1.0 0.5294117647058824 0.3215686274509804 0.0) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 196) (Paint (Color 1.0 0.403921568627451 0.2235294117647059 0.0) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 197) (Paint (Color 1.0 0.8980392156862745 0.7568627450980392 0.011764705882352941) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 206) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect 0.0 3.0 28.0 13.0)) (Rect 1.0 11.0 27.0 13.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 204)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 199)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 192)) (Path 212) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Intersect (Full) (Rect 161.0 302.0 189.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 161.0 0.0 1.0 0.0 302.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 119.0 302.0 120.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 215) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 245.297 344.0 -4.246 -13.926 85.954 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 216) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Path 227) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 227) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 236) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 236) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 234)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 229)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (SaveLayer (Draw (Empty) (Path 248) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 248) (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Empty) (Draw (Empty) (Path 257) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 257) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 273.0 302.0 301.0 330.0)) (Rect 0.0 0.0 28.0 28.0)) (Rect -7.0 -7.0 77.0 77.0)) (Rect -6.9825 -6.81 76.8075 76.998)) (Matrix 0.4 0.0 0.0 273.0 0.0 0.4 0.0 301.9248 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (LumaFilter) 255)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 250)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 245)) (Rect 231.0 302.0 232.0 348.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 266) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 365.0 343.0 396.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 267) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 275) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 275) (Intersect (Intersect (Full) (Rect 17.0 375.0 27.0 385.0)) (Rect 0.0 0.0 10.0 10.0)) (Matrix 0.555556 0.0 0.0 17.0 0.0 0.555556 0.0 375.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 32.0 385.0 -5.213 -16.653 130.065 5.811) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 279) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.0 385.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 280) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg index 087d25531..c4efcd844 100644 --- a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg +++ b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 100.0 1135.0 176.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.5 100.5 1134.5 175.5) (Paint (Color 1.0 0.7450980392156863 0.8 0.9176470588235294) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 186.0 1135.0 203.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 215.0 189.0 223.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 70.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 226.047 198.0 -5.018 -16.458 293.15 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 20) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 20) (Intersect (Intersect (Full) (Rect 536.0 189.0 544.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 391.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 547.188 198.0 -5.018 -16.458 287.196 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 29) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (Rect 851.0 189.0 859.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 706.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 862.375 198.0 -5.018 -16.458 205.582 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 0.0 1135.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 19.0 1135.0 20.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.4588235294117647 0.5294117647058824 0.6313725490196078) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 155.0 4.0 167.0 16.0)) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 10.0 0.0 1.0 0.0 4.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 173.0 14.0 -4.246 -13.926 122.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 898.0 14.0 -4.246 -13.926 61.9079 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 962.0 4.0 963.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 971.203 14.0 -4.246 -13.926 46.222 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1023.0 4.0 1024.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1031.88 14.0 -4.246 -13.926 46.552 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1084.0 4.0 1085.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.88 14.0 -4.246 -13.926 34.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 20.0 1135.0 100.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 60) (Paint (Color 1.0 0.13333333333333333 0.3607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 61) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 227.312 83.0 -4.632 -15.192 61.464 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 75) (Paint (Color 1.0 0.9137254901960784 0.3176470588235294 0.0) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 76) (Paint (Color 1.0 0.9882352941176471 0.4 0.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 311.984 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect -1.0 -1.0 12.0 12.0)) (Path 89)) (Matrix 0.475 0.0 0.0 295.425 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 95)) (Matrix 0.475 0.0 0.0 296.9925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 102) (Paint (Color 1.0 0.9882352941176471 0.5764705882352941 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 63.36 6.0)) (Path 101)) (Matrix 0.475 0.0 0.0 275.0 0.0 0.475 0.0 40.075 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 108) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 108) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 11.0)) (Path 107)) (Matrix 0.475 0.0 0.0 282.125 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 114) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 113)) (Matrix 0.475 0.0 0.0 283.6925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 120) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 120) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 59.0 31.0)) (Path 119)) (Matrix 0.475 0.0 0.0 276.59458 0.0 0.475 0.0 42.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 126) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 126) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 -1.0 64.0 57.0)) (Path 125)) (Matrix 0.475 0.0 0.0 280.7 0.0 0.475 0.0 35.8 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 132) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 7.0)) (Path 131)) (Matrix 0.475 0.0 0.0 307.775 0.0 0.475 0.0 35.325 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 403.312 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 144) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 145) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 146) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 147) (Paint (Color 1.0 0.9058823529411765 0.596078431372549 0.0) (SrcOver) (Solid) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 816.656 83.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 159) (Paint (Color 1.0 0.3764705882352941 0.3764705882352941 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 160) (Paint (Color 1.0 0.8117647058823529 0.6627450980392157 0.43137254901960786) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 161) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 913.984 83.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 176) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 177) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 178) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 180) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 179)) (Path 182) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 171)) (TextBlob 1005.55 83.0 -4.632 -15.192 38.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 194) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Intersect (Full) (Rect 534.0 35.0 747.0 89.0)) (Rect 0.0 0.0 213.0 54.0)) (Matrix 1.0 0.0 0.0 389.0 0.0 1.0 0.0 35.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 369.906 120.0 -5.213 -16.653 43.251 5.811) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 197) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 422.25 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 198) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 461.594 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 199) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 500.938 120.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 200) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 553.281 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 201) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 592.625 120.0 -5.018 -16.458 79.066 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 202) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 682.031 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 203) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 776.0 127.0 915.0 161.0) (Paint (Color 1.0 0.25098039215686274 0.4392156862745098 1.0) (SrcOver) (Solid) (IdFilter) 204) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 61.5938 13.0 -5.79 -18.99 35.48 5.595) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Full) (Matrix 1.0 0.0 0.0 631.5 0.0 1.0 0.0 136.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 218) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 218) (Intersect (Intersect (Full) (Rect 0.0 0.0 14.0 14.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.777778 0.0 0.0 674.5 0.0 0.777778 0.0 137.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 228) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 228) (Intersect (Intersect (Full) (Rect 382.0 165.0 390.0 169.0)) (Rect 0.0 0.0 8.0 4.0)) (Matrix 1.0 0.0 0.0 237.0 0.0 1.0 0.0 165.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 127.0 766.0 161.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.5 127.5 765.5 160.5) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Stroke) (IdFilter) 232) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 100.0 1135.0 176.0) (Paint (Color 1.0 0.9450980392156862 0.9607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.5 100.5 1134.5 175.5) (Paint (Color 1.0 0.7450980392156863 0.8 0.9176470588235294) (SrcOver) (Stroke) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 186.0 1135.0 203.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 11) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Intersect (Full) (Rect 215.0 189.0 223.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 70.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 226.047 198.0 -5.018 -16.458 293.15 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 20) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 20) (Intersect (Intersect (Full) (Rect 536.0 189.0 544.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 391.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 547.188 198.0 -5.018 -16.458 287.196 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 23) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 29) (Paint (Color 1.0 0.6196078431372549 0.7058823529411765 0.8588235294117647) (SrcOver) (Solid) (IdFilter) 29) (Intersect (Intersect (Full) (Rect 851.0 189.0 859.0 198.0)) (Rect 0.0 0.0 8.0 9.0)) (Matrix 1.0 0.0 0.0 706.0 0.0 1.0 0.0 189.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 862.375 198.0 -5.018 -16.458 205.582 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 0.0 1135.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 19.0 1135.0 20.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 34) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.4588235294117647 0.5294117647058824 0.6313725490196078) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 155.0 4.0 167.0 16.0)) (Rect 0.0 0.0 12.0 12.0)) (Matrix 1.0 0.0 0.0 10.0 0.0 1.0 0.0 4.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 173.0 14.0 -4.246 -13.926 122.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 43) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 898.0 14.0 -4.246 -13.926 61.9079 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 44) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 962.0 4.0 963.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 45) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 971.203 14.0 -4.246 -13.926 46.222 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 46) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1023.0 4.0 1024.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 47) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1031.88 14.0 -4.246 -13.926 46.552 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 48) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 1084.0 4.0 1085.0 15.0) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 49) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1092.88 14.0 -4.246 -13.926 34.672 4.103) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 145.0 20.0 1135.0 100.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 60) (Paint (Color 1.0 0.13333333333333333 0.3607843137254902 1.0) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 61) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 61) (Intersect (Intersect (Intersect (Full) (Rect 238.0 32.0 276.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 1.837 1.837 19.162 19.162)) (Matrix 1.80952 0.0 0.0 93.0 0.0 1.80952 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 227.312 83.0 -4.632 -15.192 61.464 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 73) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 73) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 74) (Paint (Color 1.0 0.9921568627450981 0.5803921568627451 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 74) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 75) (Paint (Color 1.0 0.9137254901960784 0.3176470588235294 0.0) (SrcOver) (Solid) (IdFilter) 75) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 76) (Paint (Color 1.0 0.9882352941176471 0.4 0.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Intersect (Full) (Rect 329.0 32.0 367.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 184.0 0.0 0.475 0.0 32.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 311.984 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 90) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 90) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect -1.0 -1.0 12.0 12.0)) (Path 89)) (Matrix 0.475 0.0 0.0 295.425 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 96) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 96) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 95)) (Matrix 0.475 0.0 0.0 296.9925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 102) (Paint (Color 1.0 0.9882352941176471 0.5764705882352941 0.30196078431372547) (SrcOver) (Solid) (IdFilter) 102) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 63.36 6.0)) (Path 101)) (Matrix 0.475 0.0 0.0 275.0 0.0 0.475 0.0 40.075 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 108) (Paint (Color 1.0 0.42745098039215684 0.42745098039215684 0.42745098039215684) (SrcOver) (Solid) (IdFilter) 108) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 11.0)) (Path 107)) (Matrix 0.475 0.0 0.0 282.125 0.0 0.475 0.0 61.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 114) (Paint (Color 1.0 0.8784313725490196 0.8784313725490196 0.8784313725490196) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 5.0 5.0)) (Path 113)) (Matrix 0.475 0.0 0.0 283.6925 0.0 0.475 0.0 63.4925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 120) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 120) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 59.0 31.0)) (Path 119)) (Matrix 0.475 0.0 0.0 276.59458 0.0 0.475 0.0 42.925 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 126) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 126) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 -1.0 64.0 57.0)) (Path 125)) (Matrix 0.475 0.0 0.0 280.7 0.0 0.475 0.0 35.8 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 132) (Paint (Color 1.0 0.984313725490196 0.4 0.0) (SrcOver) (Solid) (IdFilter) 132) (Intersect (Intersect (Intersect (Intersect (Full) (Rect 420.0 32.0 458.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Rect 0.0 0.0 11.0 7.0)) (Path 131)) (Matrix 0.475 0.0 0.0 307.775 0.0 0.475 0.0 35.325 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 403.312 83.0 -4.632 -15.192 74.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 136) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 144) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 144) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 145) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 145) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 146) (Paint (Color 1.0 0.7803921568627451 0.21568627450980393 0.0) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 147) (Paint (Color 1.0 0.9058823529411765 0.596078431372549 0.0) (SrcOver) (Solid) (IdFilter) 147) (Intersect (Intersect (Full) (Rect 822.0 32.0 860.0 70.0)) (Rect 0.0 0.0 38.0 38.0)) (Matrix 0.475 0.0 0.0 679.375 0.0 0.475 0.0 36.275 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 816.656 83.0 -4.632 -15.192 50.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 151) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 159) (Paint (Color 1.0 0.3764705882352941 0.3764705882352941 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 159) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 160) (Paint (Color 1.0 0.8117647058823529 0.6627450980392157 0.43137254901960786) (SrcOver) (Solid) (IdFilter) 160) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 161) (Paint (Color 1.0 0.8666666666666667 0.8666666666666667 0.8666666666666667) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Intersect (Full) (Rect 914.0 39.0 950.0 64.0)) (Rect 0.0 0.0 36.0 25.0)) (Matrix 0.514286 0.0 0.0 769.0 0.0 0.520833 0.0 39.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 913.984 83.0 -4.632 -15.192 38.784 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 165) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (SaveLayer (Draw (Draw (Draw (Empty) (Path 176) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 177) (Paint (Color 1.0 0.9607843137254902 0.9607843137254902 0.9607843137254902) (SrcOver) (Solid) (IdFilter) 177) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 178) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 178) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 180) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.10196078431372549 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 179)) (Path 182) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Intersect (Intersect (Full) (Rect 1005.0 38.0 1041.0 64.0)) (Rect 0.0 0.0 36.0 26.0)) (Rect 0.0 0.0 36.0 26.0)) (Matrix 0.514286 0.0 0.0 860.0 0.0 0.52 0.0 38.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 171)) (TextBlob 1005.55 83.0 -4.632 -15.192 38.304 4.476) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 188) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 194) (Paint (Color 1.0 1.0 0.0 0.2) (SrcOver) (Solid) (IdFilter) 194) (Intersect (Intersect (Full) (Rect 534.0 35.0 747.0 89.0)) (Rect 0.0 0.0 213.0 54.0)) (Matrix 1.0 0.0 0.0 389.0 0.0 1.0 0.0 35.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 369.906 120.0 -5.213 -16.653 43.251 5.811) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 197) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 422.25 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 198) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 461.594 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 199) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 500.938 120.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 200) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 553.281 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 201) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 592.625 120.0 -5.018 -16.458 79.066 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 202) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 682.031 120.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 203) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 776.0 127.0 915.0 161.0) (Paint (Color 1.0 0.25098039215686274 0.4392156862745098 1.0) (SrcOver) (Solid) (IdFilter) 204) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 61.5938 13.0 -5.79 -18.99 35.48 5.595) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 207) (Full) (Matrix 1.0 0.0 0.0 631.5 0.0 1.0 0.0 136.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 218) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 218) (Intersect (Intersect (Full) (Rect 0.0 0.0 14.0 14.0)) (Rect 0.0 0.0 14.0 14.0)) (Matrix 0.777778 0.0 0.0 674.5 0.0 0.777778 0.0 137.5 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 228) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Solid) (IdFilter) 228) (Intersect (Intersect (Full) (Rect 382.0 165.0 390.0 169.0)) (Rect 0.0 0.0 8.0 4.0)) (Matrix 1.0 0.0 0.0 237.0 0.0 1.0 0.0 165.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.0 127.0 766.0 161.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 231) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 365.5 127.5 765.5 160.5) (Paint (Color 1.0 0.6 0.6 0.6) (SrcOver) (Stroke) (IdFilter) 232) (Full) (Matrix 1.0 0.0 0.0 -145.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg index 46833f0ea..d80bebd64 100644 --- a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg +++ b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 12.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 38.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 96.0938 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 113.234 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.234 439.0 -5.018 -16.458 16.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.781 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 0.34 0.0 0.0 5.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 64.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 81.0938 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 93.0 430.0 94.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 181.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 207.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 265.094 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.188 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 296.188 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.281 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 0.34 0.0 0.0 174.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 233.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 250.094 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 262.0 430.0 263.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 175.0 403.0 176.0 448.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 498.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 497.0 -5.018 -16.458 198.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 475.0 343.0 476.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 41) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 42) (Paint (Color 1.0 1.0 0.9686274509803922 0.8) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 44) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 45) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 46) (Paint (Color 1.0 0.49019607843137253 0.803921568627451 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 533.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 532.0 -5.018 -16.458 226.811 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 510.0 343.0 511.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 63) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.3843137254901961 0.6784313725490196 0.0) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 68) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 71) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 70)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58)) (Rect 7.0 545.0 343.0 546.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 567.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 567.0 -5.018 -16.458 94.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.7686274509803922 0.5803921568627451 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 1.0 1.0 0.6823529411764706 0.0) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 88) (Paint (Color 1.0 0.996078431372549 0.803921568627451 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 25.0 551.0 34.0 560.0) (Paint (Color 1.0 0.9686274509803922 0.36470588235294116 0.3686274509803922) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 26.0 552.0 33.0 559.0 3.5 3.5 3.5 3.5)) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 25.5 551.5 33.5 559.5 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 12.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 38.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 96.0938 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 113.234 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 127.234 439.0 -5.018 -16.458 16.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 135.781 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 0.34 0.0 0.0 5.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 64.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 81.0938 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 93.0 430.0 94.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 15) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 181.0 414.0 -5.018 -16.458 29.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 16) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 207.0 414.0 -5.018 -16.458 42.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 17) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 265.094 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 18) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 282.188 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0392156862745098 0.4235294117647059 1.0) (SrcOver) (Solid) (IdFilter) 19) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 296.188 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 20) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 313.281 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 0.0 0.0 150.0 80.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Full) (Matrix 0.34 0.0 0.0 174.0 0.0 0.3375 0.0 19.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 233.0 439.0 -5.018 -16.458 24.557 4.849) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 26) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 250.094 439.0 -3.86 -12.66 12.32 3.73) (Paint (Color 1.0 0.9215686274509803 0.0 0.07450980392156863) (SrcOver) (Solid) (IdFilter) 27) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 262.0 430.0 263.0 439.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 28) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 175.0 403.0 176.0 448.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 29) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 498.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 30) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 497.0 -5.018 -16.458 198.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 31) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 475.0 343.0 476.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 32) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 40) (Paint (Color 1.0 0.8823529411764706 0.8823529411764706 0.8823529411764706) (SrcOver) (Solid) (IdFilter) 40) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 41) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 42) (Paint (Color 1.0 1.0 0.9686274509803922 0.8) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 43) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 44) (Paint (Color 1.0 0.4 0.6352941176470588 0.8705882352941177) (SrcOver) (Solid) (IdFilter) 44) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 45) (Paint (Color 1.0 1.0 0.8431372549019608 0.0) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 46) (Paint (Color 1.0 0.49019607843137253 0.803921568627451 0.0) (SrcOver) (Solid) (IdFilter) 46) (Intersect (Intersect (Full) (Rect 12.0 483.0 33.0 501.0)) (Rect 0.0 0.0 21.0 18.0)) (Matrix 1.0 0.0 0.0 5.525 0.0 1.0 0.0 81.1 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 533.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 532.0 -5.018 -16.458 226.811 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 51) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 7.0 510.0 343.0 511.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 52) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Path 63) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 63) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 64) (Paint (Color 1.0 0.6274509803921569 0.6274509803921569 0.6274509803921569) (SrcOver) (Solid) (IdFilter) 64) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 65) (Paint (Color 1.0 0.7647058823529411 0.7647058823529411 0.7647058823529411) (SrcOver) (Solid) (IdFilter) 65) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 66) (Paint (Color 1.0 0.32941176470588235 0.32941176470588235 0.32941176470588235) (SrcOver) (Solid) (IdFilter) 66) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 1.0 0.3843137254901961 0.6784313725490196 0.0) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 68) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 68) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 69) (Paint (Color 1.0 0.23529411764705882 0.23529411764705882 0.23529411764705882) (SrcOver) (Solid) (IdFilter) 69) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 71) (Paint (Color 1.0 0.8 0.8 0.8) (SrcOver) (Solid) (IdFilter) 71) (Intersect (Intersect (Intersect (Full) (Rect 12.0 517.0 33.0 538.0)) (Rect 0.0 0.0 21.0 21.0)) (Rect 0.0 0.0 21.0 21.0)) (Matrix 0.2625 0.0 0.0 7.625 0.0 0.2625 0.0 116.3125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (Multiply) (Solid) (IdFilter) 70)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 58)) (Rect 7.0 545.0 343.0 546.0) (Paint (Color 1.0 0.807843137254902 0.8549019607843137 0.9529411764705882) (SrcOver) (Solid) (IdFilter) 78) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 40.0 567.0 -5.018 -16.458 55.016 4.849) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 79) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 97.0 567.0 -5.018 -16.458 94.016 4.849) (Paint (Color 1.0 0.11372549019607843 0.2235294117647059 0.5803921568627451) (SrcOver) (Solid) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 86) (Paint (Color 1.0 0.7686274509803922 0.5803921568627451 0.054901960784313725) (SrcOver) (Solid) (IdFilter) 86) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 1.0 1.0 0.6823529411764706 0.0) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 88) (Paint (Color 1.0 0.996078431372549 0.803921568627451 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 88) (Intersect (Intersect (Full) (Rect 14.0 554.0 32.0 572.0)) (Rect 0.0 0.0 18.0 18.0)) (Matrix 1.0 0.0 0.0 7.0 0.0 1.0 0.0 152.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 25.0 551.0 34.0 560.0) (Paint (Color 1.0 0.9686274509803922 0.36470588235294116 0.3686274509803922) (SrcOver) (Solid) (IdFilter) 93) (Intersect (Full) (RRect 26.0 552.0 33.0 559.0 3.5 3.5 3.5 3.5)) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 25.5 551.5 33.5 559.5 4.0 4.0 4.0 4.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 95) (Full) (Matrix 1.0 0.0 0.0 -7.0 0.0 1.0 0.0 -402.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg index a8f117600..647e64bfa 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg index b350ddbf6..3fc9c4618 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg index 51fdcdb0b..236206d68 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 948.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 948.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 948.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 872.5 219.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33)) (RRect 524.5 872.5 555.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 885.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 885.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (RRect 860.5 872.5 891.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 54) (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 885.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Rect 900.0 872.0 1041.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 948.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 912.0 476.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 948.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 912.0 812.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 948.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 912.0 1148.0 952.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 872.0 220.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (RRect 188.0 872.0 220.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 872.5 219.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 872.0 443.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 872.0 556.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (RRect 524.0 872.0 556.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 33)) (RRect 524.5 872.5 555.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 38) (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 885.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 41) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 885.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 872.0 812.0 904.0)) (Rect 564.0 872.0 812.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 872.0 892.0 904.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (RRect 860.0 872.0 892.0 904.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 49)) (RRect 860.5 872.5 891.5 903.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 54) (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 885.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Intersect (Full) (Rect 860.0 872.0 1108.0 904.0)) (Rect 900.0 872.0 1041.0 888.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -680.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg index c8decf00c..ae4b3cf7b 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1296.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1644.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (RRect 188.5 1220.5 219.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 22) (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1233.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Rect 228.0 1220.0 394.0 1236.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32)) (RRect 188.5 1568.5 219.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 37) (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1028.5 491.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1724.5 491.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 172.0 1724.0 492.0 2056.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1296.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1260.0 476.0 1300.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1644.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 188.0 1608.0 476.0 1648.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1220.0 220.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 19) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (RRect 188.0 1220.0 220.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 17)) (RRect 188.5 1220.5 219.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 22) (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1233.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 1220.0 435.0 1252.0)) (Rect 228.0 1220.0 394.0 1236.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 33) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1568.0 220.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (RRect 188.0 1568.0 220.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 32)) (RRect 188.5 1568.5 219.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 37) (Intersect (Full) (Rect 188.0 1568.0 431.0 1600.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1028.5 491.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 39) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1724.5 491.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (RRect 172.0 1724.0 492.0 2056.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg index 118328b98..f0eec5720 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1296.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1644.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1992.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 860.5 1220.5 891.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1233.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Rect 900.0 1220.0 1109.0 1236.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 860.5 1568.5 891.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48)) (RRect 860.5 1916.5 891.5 1947.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 53) (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1929.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Rect 900.0 1916.0 1001.0 1932.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1028.5 1163.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1724.5 1163.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1296.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 860.0 1260.0 1148.0 1300.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1644.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 860.0 1608.0 1148.0 1648.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1992.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1956.0 1148.0 1996.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1220.0 892.0 1252.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (RRect 860.0 1220.0 892.0 1252.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 860.5 1220.5 891.5 1251.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1233.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 860.0 1220.0 1117.0 1252.0)) (Rect 900.0 1220.0 1109.0 1236.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1568.0 892.0 1600.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (RRect 860.0 1568.0 892.0 1600.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 860.5 1568.5 891.5 1599.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 860.0 1568.0 1100.0 1600.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 49) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1916.0 892.0 1948.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (RRect 860.0 1916.0 892.0 1948.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 48)) (RRect 860.5 1916.5 891.5 1947.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 53) (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1929.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Intersect (Full) (Rect 860.0 1916.0 1105.0 1948.0)) (Rect 900.0 1916.0 1001.0 1932.0)) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1028.5 1163.5 1359.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1724.5 1163.5 2055.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 -844.0 0.0 1.0 0.0 -1028.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg index 59bba84a6..46ccc0008 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) +(let $test (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg index bc5bfc4bb..b6f6de2db 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 246.0 1280.0 3160.0 24.0 24.0 24.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2066.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 631.0 0.0351562 -19.0 83.293 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 1.0 0.3254901960784314 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 184.0 0.0 1.0 0.0 2078.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 218.0 2099.0 -0.222656 -15.0 113.161 5.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 172.0 2118.0 828.0 2458.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14)) (TextBlob 217.0 2151.0 -1.15625 -13.0 563.173 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 779.453 2151.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2187.0 -0.15625 -13.0 370.592 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Full) (Rect 217.0 2171.0 587.0 2191.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2223.0 -1.15625 -13.0 388.124 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 217.0 2207.0 605.0 2227.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2259.0 -0.15625 -14.0 432.779 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Full) (Rect 217.0 2243.0 650.0 2263.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2295.0 -1.15625 -14.0 577.455 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 217.0 2279.0 794.0 2299.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2331.0 -1.15625 -13.0 554.838 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 771.25 2331.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2367.0 -1.15625 -13.0 491.931 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 217.0 2351.0 707.0 2371.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2403.0 -0.15625 -14.0 563.898 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 780.172 2403.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2439.0 -0.15625 -13.0 547.469 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 763.266 2439.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 300.0 0.0351562 -18.0 100.623 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 568.0 -0.15625 -14.0 122.655 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Full) (Rect 2.0 0.0 22.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 331.0 0.0 0.833333 0.0 552.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 338.0 -1.15625 -14.0 487.77 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 358.0 -0.15625 -13.0 67.7069 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 71) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 273.422 358.0 0.0 0.0 0.0 0.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 75)) (RRect 178.5 322.5 197.5 341.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 274.0 0.0 0.833333 0.0 342.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 396.0 -0.15625 -14.0 566.622 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 93)) (RRect 178.5 380.5 197.5 399.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 98) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 434.0 -0.15625 -13.0 522.479 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 102)) (RRect 178.5 418.5 197.5 437.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 107) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 472.0 -0.15625 -14.0 548.93 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 108) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 492.0 -0.15625 -10.0 95.795 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 109) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 113) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 112)) (RRect 178.5 456.5 197.5 475.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 117) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 530.0 -0.15625 -13.0 574.35 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 118) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 121)) (RRect 178.5 514.5 197.5 533.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 126) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1099.0 602.0 1164.0 642.0 12.0 12.0 12.0 12.0) (Paint (Color 1.0 0.9098039215686274 0.9176470588235294 0.9294117647058824) (SrcOver) (Solid) (IdFilter) 127) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1115.48 628.0 -0.15625 -14.0 33.1975 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 128) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 660.0 492.0 840.0) (Paint (Color 1.0 0.8470588235294118 0.8470588235294118 0.8470588235294118) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (RRect 172.0 660.0 492.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 952.0 -0.15625 -14.0 266.11 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 972.0 -0.15625 -13.0 258.051 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 445.531 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 881.0 -1.03809 -11.0 106.855 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.656 881.0 3.502 -11.0 109.294 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 660.0 828.0 840.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 508.0 660.0 828.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 952.0 -0.15625 -13.0 261.355 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 972.0 -0.15625 -10.0 253.845 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 151) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 777.078 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 152) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 881.0 -1.03809 -11.0 109.559 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 156) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 673.359 881.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 157) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 660.0 1164.0 840.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Full) (RRect 844.0 660.0 1164.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 952.0 -0.15625 -14.0 260.122 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 972.0 -0.15625 -13.0 274.054 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1133.45 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 167) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 881.0 -1.03809 -11.0 108.506 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 171) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.3 881.0 3.502 -11.0 109.529 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1008.0 492.0 1188.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Full) (RRect 172.0 1008.0 492.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1300.0 -0.15625 -13.0 198.953 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1320.0 -1.15625 -13.0 232.677 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 181) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 419.469 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1229.0 -1.03809 -11.0 98.8273 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 326.625 1229.0 3.502 -11.0 109.834 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1008.0 828.0 1188.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Full) (RRect 508.0 1008.0 828.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1300.0 -0.15625 -14.0 264.358 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1320.0 -1.15625 -14.0 259.252 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 782.734 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1229.0 -1.03809 -11.0 108.848 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 672.641 1229.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1008.0 1164.0 1188.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Full) (RRect 844.0 1008.0 1164.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1300.0 -0.15625 -14.0 261.551 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 210) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1320.0 -0.15625 -13.0 166.251 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1025.28 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1229.0 -1.03809 -11.0 108.544 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 216) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.34 1229.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 217) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 221) (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 229) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Rect 172.0 1356.0 492.0 1537.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 233) (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 232)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (TextBlob 188.0 1648.0 -0.15625 -13.0 200.54 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1668.0 -0.15625 -10.0 251.044 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 241) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 438.078 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 242) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1577.0 -1.03809 -11.0 104.837 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 246) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 332.625 1577.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 247) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 251) (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 259) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Rect 508.0 1356.0 828.0 1537.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 263) (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 262)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254)) (TextBlob 524.0 1648.0 -0.15625 -13.0 287.592 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 270) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1668.0 -0.15625 -13.0 198.157 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 271) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 721.188 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 272) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1577.0 -1.03809 -11.0 106.297 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 276) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 670.094 1577.0 3.502 -11.0 108.932 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 277) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 281) (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Rect 844.0 1356.0 1164.0 1537.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 292)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 284)) (TextBlob 860.0 1648.0 -0.15625 -13.0 280.49 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 300) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1668.0 -1.15625 -13.0 264.46 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 301) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1128.02 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 302) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1577.0 -1.03809 -11.0 100.281 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 306) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1000.08 1577.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 307) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 311) (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 319) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Rect 172.0 1704.0 492.0 1885.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 323) (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 322)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 314)) (TextBlob 188.0 1996.0 -1.15625 -14.0 280.902 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 330) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 2016.0 -0.15625 -13.0 253.595 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 331) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.891 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1925.0 -1.03809 -11.0 103.275 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 331.062 1925.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 341) (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 349) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Rect 508.0 1704.0 828.0 1885.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 353) (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 352)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 344)) (TextBlob 524.0 1996.0 -0.15625 -14.0 266.548 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 360) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 2016.0 -1.15625 -13.0 260.593 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 361) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 784.0 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 362) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1925.0 -1.03809 -11.0 101.436 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 366) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 665.234 1925.0 3.502 -11.0 85.6485 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 371) (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 379) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Rect 844.0 1704.0 1164.0 1885.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 383) (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 382)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 374)) (TextBlob 860.0 1996.0 -1.15625 -14.0 267.1 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 390) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2016.0 -0.15625 -13.0 219.508 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1078.84 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 392) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1925.0 -1.03809 -11.0 97.4879 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 396) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 997.281 1925.0 3.502 -11.0 108.628 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 397) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 403) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 401)) (RRect 189.5 2135.5 208.5 2154.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 406) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 410) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 411) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 409)) (RRect 189.5 2171.5 208.5 2190.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 414) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 418) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 419) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 417)) (RRect 189.5 2207.5 208.5 2226.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 422) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 426) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 427) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 425)) (RRect 189.5 2243.5 208.5 2262.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 430) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 434) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 435) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 433)) (RRect 189.5 2279.5 208.5 2298.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 438) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 442) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 443) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 441)) (RRect 189.5 2315.5 208.5 2334.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 446) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 450) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 451) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 449)) (RRect 189.5 2351.5 208.5 2370.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 454) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 458) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 459) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 457)) (RRect 189.5 2387.5 208.5 2406.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 462) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 466) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 467) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 465)) (RRect 189.5 2423.5 208.5 2442.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 470) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 471) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2355.0 -0.15625 -14.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 478) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2375.0 -1.15625 -10.0 266.51 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 479) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1125.12 2375.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 480) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2397.0 -1.15625 -13.0 179.452 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 484) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2417.0 -0.15625 -14.0 257.289 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 485) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1116.7 2417.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 486) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 496) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 496) (Intersect (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 0.0 0.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.5 0.0 0.0 860.0 0.0 0.5 0.0 2428.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.0 2439.0 -1.03809 -11.0 54.2103 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 501) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 927.547 2439.0 3.502 -11.0 91.0802 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 502) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 880.0 2326.0 -1.03809 -11.0 101.817 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 507) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 880.0 2313.0 981.0 2329.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 514) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 515) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 513)) (RRect 860.5 2313.5 875.5 2328.5 7.5 7.5 7.5 7.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 518) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2489.0 200.0 2517.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 524) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 2495.0 326.0 2511.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 525) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2539.5 491.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 526) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2540.0 491.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 529) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2729.0 217.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 530) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 2735.0 345.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 531) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2767.0 441.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 532) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2791.0 378.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 533) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2539.5 827.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 535) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2540.0 827.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 538) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2729.0 553.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 539) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 2735.0 681.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 540) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2767.0 777.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 541) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2791.0 714.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 542) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2539.5 1163.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 544) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2540.0 1163.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 547) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2729.0 889.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 548) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 2735.0 1017.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 549) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2767.0 1113.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 550) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2791.0 1050.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 551) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2840.5 491.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 553) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2841.0 491.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 556) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3030.0 217.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 557) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 3036.0 345.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 558) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3068.0 441.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 559) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3092.0 378.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 560) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2840.5 827.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 562) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2841.0 827.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 565) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3030.0 553.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 566) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 3036.0 681.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 567) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3068.0 777.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 568) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3092.0 714.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 569) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2840.5 1163.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 571) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2841.0 1163.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 574) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3030.0 889.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 575) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 3036.0 1017.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 576) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3068.0 1113.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 577) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3092.0 1050.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 578) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1604.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 583) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 584) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1604.0 -1.15625 -13.0 218.394 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 588) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1624.0 -1.15625 -14.0 246.858 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 589) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 769.484 1624.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 590) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1604.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 594) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 595) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1952.0 -1.15625 -14.0 279.778 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 599) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1972.0 -1.15625 -13.0 187.393 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 600) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 374.484 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 601) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1952.0 -0.15625 -14.0 285.051 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 605) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1972.0 -0.15625 -13.0 209.029 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 606) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.516 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 607) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1952.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 611) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 612) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 619) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 620) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 618)) (RRect 188.5 1548.5 219.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 623) (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 630) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 631) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 629)) (RRect 524.5 1548.5 555.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 634) (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 641) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 642) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 640)) (RRect 860.5 1548.5 891.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 645) (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 652) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 653) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 651)) (RRect 188.5 1896.5 219.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 656) (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1909.0 -0.0380859 -11.0 141.906 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 659) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Rect 228.0 1896.0 369.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 667) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 668) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 666)) (RRect 524.5 1896.5 555.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 671) (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1909.0 -0.0380859 -11.0 43.3945 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 674) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Rect 564.0 1896.0 607.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 682) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 683) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 681)) (RRect 860.5 1896.5 891.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 686) (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1909.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 689) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Rect 900.0 1896.0 1001.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1704.5 491.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 692) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1704.5 827.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 693) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1704.5 1163.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 694) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (Src) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 1280.0 3160.0) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 0.0 246.0 1280.0 3160.0 24.0 24.0 24.0 0.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2066.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (LinearGradient) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 631.0 0.0351562 -19.0 83.293 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 9) (Paint (Color 1.0 1.0 0.3254901960784314 0.09019607843137255) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 28.0 28.0)) (Matrix 1.0 0.0 0.0 184.0 0.0 1.0 0.0 2078.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 218.0 2099.0 -0.222656 -15.0 113.161 5.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 172.0 2118.0 828.0 2458.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 16) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (RRect 172.0 2118.0 828.0 2458.0 20.0 20.0 20.0 20.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 14)) (TextBlob 217.0 2151.0 -1.15625 -13.0 563.173 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 779.453 2151.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 22) (Intersect (Full) (Rect 217.0 2135.0 811.0 2155.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2187.0 -0.15625 -13.0 370.592 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 26) (Intersect (Full) (Rect 217.0 2171.0 587.0 2191.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2223.0 -1.15625 -13.0 388.124 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Full) (Rect 217.0 2207.0 605.0 2227.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2259.0 -0.15625 -14.0 432.779 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 34) (Intersect (Full) (Rect 217.0 2243.0 650.0 2263.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2295.0 -1.15625 -14.0 577.455 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Full) (Rect 217.0 2279.0 794.0 2299.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2331.0 -1.15625 -13.0 554.838 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 771.25 2331.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Full) (Rect 217.0 2315.0 811.0 2335.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2367.0 -1.15625 -13.0 491.931 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 47) (Intersect (Full) (Rect 217.0 2351.0 707.0 2371.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2403.0 -0.15625 -14.0 563.898 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 780.172 2403.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Full) (Rect 217.0 2387.0 811.0 2407.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 217.0 2439.0 -0.15625 -13.0 547.469 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 56) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 763.266 2439.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 57) (Intersect (Full) (Rect 217.0 2423.0 811.0 2443.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 300.0 0.0351562 -18.0 100.623 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 59) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 568.0 -0.15625 -14.0 122.655 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 67) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 67) (Intersect (Intersect (Full) (Rect 2.0 0.0 22.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 331.0 0.0 0.833333 0.0 552.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 338.0 -1.15625 -14.0 487.77 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 70) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 358.0 -0.15625 -13.0 67.7069 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 71) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 273.422 358.0 0.0 0.0 0.0 0.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 72) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 76) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 322.0 198.0 342.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 77) (Intersect (Full) (RRect 178.0 322.0 198.0 342.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 75)) (RRect 178.5 322.5 197.5 341.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 80) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 87) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 87) (Intersect (Intersect (Full) (Rect 0.0 0.0 20.0 20.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.833333 0.0 0.0 274.0 0.0 0.833333 0.0 342.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 396.0 -0.15625 -14.0 566.622 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 90) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 94) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 380.0 198.0 400.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 95) (Intersect (Full) (RRect 178.0 380.0 198.0 400.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 93)) (RRect 178.5 380.5 197.5 399.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 98) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 434.0 -0.15625 -13.0 522.479 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 99) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 103) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 418.0 198.0 438.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 104) (Intersect (Full) (RRect 178.0 418.0 198.0 438.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 102)) (RRect 178.5 418.5 197.5 437.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 107) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 472.0 -0.15625 -14.0 548.93 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 108) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 492.0 -0.15625 -10.0 95.795 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 109) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 113) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 456.0 198.0 476.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 114) (Intersect (Full) (RRect 178.0 456.0 198.0 476.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 112)) (RRect 178.5 456.5 197.5 475.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 117) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 206.0 530.0 -0.15625 -13.0 574.35 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 118) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 122) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 178.0 514.0 198.0 534.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 123) (Intersect (Full) (RRect 178.0 514.0 198.0 534.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 121)) (RRect 178.5 514.5 197.5 533.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 126) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 1099.0 602.0 1164.0 642.0 12.0 12.0 12.0 12.0) (Paint (Color 1.0 0.9098039215686274 0.9176470588235294 0.9294117647058824) (SrcOver) (Solid) (IdFilter) 127) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1115.48 628.0 -0.15625 -14.0 33.1975 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 128) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 660.0 492.0 840.0) (Paint (Color 1.0 0.8470588235294118 0.8470588235294118 0.8470588235294118) (SrcOver) (Solid) (IdFilter) 131) (Intersect (Full) (RRect 172.0 660.0 492.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 952.0 -0.15625 -14.0 266.11 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 135) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 972.0 -0.15625 -13.0 258.051 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 136) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 445.531 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 137) (Intersect (Full) (Rect 188.0 936.0 476.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 881.0 -1.03809 -11.0 106.855 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 141) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 334.656 881.0 3.502 -11.0 109.294 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 142) (Intersect (Full) (Rect 228.0 868.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 660.0 828.0 840.0) (Paint (Color 1.0 0.9098039215686274 0.9098039215686274 0.9098039215686274) (SrcOver) (Solid) (IdFilter) 146) (Intersect (Full) (RRect 508.0 660.0 828.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 952.0 -0.15625 -13.0 261.355 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 150) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 972.0 -0.15625 -10.0 253.845 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 151) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 777.078 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 152) (Intersect (Full) (Rect 524.0 936.0 812.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 881.0 -1.03809 -11.0 109.559 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 156) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 673.359 881.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 157) (Intersect (Full) (Rect 564.0 868.0 782.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 660.0 1164.0 840.0) (Paint (Color 1.0 0.06274509803921569 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 161) (Intersect (Full) (RRect 844.0 660.0 1164.0 840.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 952.0 -0.15625 -14.0 260.122 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 165) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 972.0 -0.15625 -13.0 274.054 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 166) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1133.45 972.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 167) (Intersect (Full) (Rect 860.0 936.0 1148.0 976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 881.0 -1.03809 -11.0 108.506 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 171) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.3 881.0 3.502 -11.0 109.529 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 172) (Intersect (Full) (Rect 900.0 868.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1008.0 492.0 1188.0) (Paint (Color 1.0 0.03137254901960784 0.03137254901960784 0.03137254901960784) (SrcOver) (Solid) (IdFilter) 176) (Intersect (Full) (RRect 172.0 1008.0 492.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1300.0 -0.15625 -13.0 198.953 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 180) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1320.0 -1.15625 -13.0 232.677 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 181) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 419.469 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 182) (Intersect (Full) (Rect 188.0 1284.0 476.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1229.0 -1.03809 -11.0 98.8273 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 186) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 326.625 1229.0 3.502 -11.0 109.834 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 187) (Intersect (Full) (Rect 228.0 1216.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1008.0 828.0 1188.0) (Paint (Color 1.0 0.18823529411764706 0.12549019607843137 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 191) (Intersect (Full) (RRect 508.0 1008.0 828.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1300.0 -0.15625 -14.0 264.358 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 195) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1320.0 -1.15625 -14.0 259.252 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 196) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 782.734 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 197) (Intersect (Full) (Rect 524.0 1284.0 812.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1229.0 -1.03809 -11.0 108.848 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 201) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 672.641 1229.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 202) (Intersect (Full) (Rect 564.0 1216.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1008.0 1164.0 1188.0) (Paint (Color 1.0 0.12549019607843137 0.06274509803921569 0.06274509803921569) (SrcOver) (Solid) (IdFilter) 206) (Intersect (Full) (RRect 844.0 1008.0 1164.0 1188.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1300.0 -0.15625 -14.0 261.551 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 210) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1320.0 -0.15625 -13.0 166.251 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 211) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1025.28 1320.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 212) (Intersect (Full) (Rect 860.0 1284.0 1148.0 1324.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1229.0 -1.03809 -11.0 108.544 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 216) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1008.34 1229.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 217) (Intersect (Full) (Rect 900.0 1216.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 221) (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (Color 1.0 0.12549019607843137 0.1568627450980392 0.1568627450980392) (SrcOver) (Solid) (IdFilter) 229) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Rect 172.0 1356.0 492.0 1537.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1356.0 492.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 233) (Intersect (Intersect (Full) (RRect 172.0 1356.0 492.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1356.0 492.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 232)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 224)) (TextBlob 188.0 1648.0 -0.15625 -13.0 200.54 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 240) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1668.0 -0.15625 -10.0 251.044 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 241) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 438.078 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 242) (Intersect (Full) (Rect 188.0 1632.0 476.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1577.0 -1.03809 -11.0 104.837 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 246) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 332.625 1577.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 247) (Intersect (Full) (Rect 228.0 1564.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 251) (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (Color 1.0 0.8156862745098039 0.8156862745098039 0.7843137254901961) (SrcOver) (Solid) (IdFilter) 259) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Rect 508.0 1356.0 828.0 1537.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1356.0 828.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 263) (Intersect (Intersect (Full) (RRect 508.0 1356.0 828.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1356.0 828.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 262)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 254)) (TextBlob 524.0 1648.0 -0.15625 -13.0 287.592 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 270) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1668.0 -0.15625 -13.0 198.157 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 271) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 721.188 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 272) (Intersect (Full) (Rect 524.0 1632.0 812.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1577.0 -1.03809 -11.0 106.297 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 276) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 670.094 1577.0 3.502 -11.0 108.932 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 277) (Intersect (Full) (Rect 564.0 1564.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 281) (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (Color 1.0 0.09411764705882353 0.12549019607843137 0.09411764705882353) (SrcOver) (Solid) (IdFilter) 289) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Rect 844.0 1356.0 1164.0 1537.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1356.0 1164.0 1536.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 293) (Intersect (Intersect (Full) (RRect 844.0 1356.0 1164.0 1536.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1356.0 1164.0 1536.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 292)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 284)) (TextBlob 860.0 1648.0 -0.15625 -13.0 280.49 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 300) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1668.0 -1.15625 -13.0 264.46 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 301) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1128.02 1668.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 302) (Intersect (Full) (Rect 860.0 1632.0 1148.0 1672.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1577.0 -1.03809 -11.0 100.281 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 306) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1000.08 1577.0 3.502 -11.0 100.53 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 307) (Intersect (Full) (Rect 900.0 1564.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 311) (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (Color 1.0 0.4392156862745098 0.3137254901960784 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 319) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Rect 172.0 1704.0 492.0 1885.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 172.0 1704.0 492.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 323) (Intersect (Intersect (Full) (RRect 172.0 1704.0 492.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 172.0 1704.0 492.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 322)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 314)) (TextBlob 188.0 1996.0 -1.15625 -14.0 280.902 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 330) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 2016.0 -0.15625 -13.0 253.595 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 331) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 440.891 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 332) (Intersect (Full) (Rect 188.0 1980.0 476.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1925.0 -1.03809 -11.0 103.275 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 336) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 331.062 1925.0 3.502 -11.0 110.05 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 337) (Intersect (Full) (Rect 228.0 1912.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 341) (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (Color 1.0 0.12549019607843137 0.12549019607843137 0.12549019607843137) (SrcOver) (Solid) (IdFilter) 349) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Rect 508.0 1704.0 828.0 1885.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 508.0 1704.0 828.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 353) (Intersect (Intersect (Full) (RRect 508.0 1704.0 828.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 508.0 1704.0 828.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 352)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 344)) (TextBlob 524.0 1996.0 -0.15625 -14.0 266.548 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 360) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 2016.0 -1.15625 -13.0 260.593 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 361) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 784.0 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 362) (Intersect (Full) (Rect 524.0 1980.0 812.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1925.0 -1.03809 -11.0 101.436 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 366) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 665.234 1925.0 3.502 -11.0 85.6485 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 367) (Intersect (Full) (Rect 564.0 1912.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 371) (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (Color 1.0 0.18823529411764706 0.18823529411764706 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 379) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Rect 844.0 1704.0 1164.0 1885.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 844.0 1704.0 1164.0 1884.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 383) (Intersect (Intersect (Full) (RRect 844.0 1704.0 1164.0 1884.0 20.0 20.0 20.0 0.0)) (Rect 844.0 1704.0 1164.0 1884.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 382)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 374)) (TextBlob 860.0 1996.0 -1.15625 -14.0 267.1 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 390) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2016.0 -0.15625 -13.0 219.508 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 391) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1078.84 2016.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 392) (Intersect (Full) (Rect 860.0 1980.0 1148.0 2020.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1925.0 -1.03809 -11.0 97.4879 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 396) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 997.281 1925.0 3.502 -11.0 108.628 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 397) (Intersect (Full) (Rect 900.0 1912.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 402) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2135.0 209.0 2155.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 403) (Intersect (Full) (RRect 189.0 2135.0 209.0 2155.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 401)) (RRect 189.5 2135.5 208.5 2154.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 406) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 410) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2171.0 209.0 2191.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 411) (Intersect (Full) (RRect 189.0 2171.0 209.0 2191.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 409)) (RRect 189.5 2171.5 208.5 2190.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 414) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 418) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2207.0 209.0 2227.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 419) (Intersect (Full) (RRect 189.0 2207.0 209.0 2227.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 417)) (RRect 189.5 2207.5 208.5 2226.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 422) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 426) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2243.0 209.0 2263.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 427) (Intersect (Full) (RRect 189.0 2243.0 209.0 2263.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 425)) (RRect 189.5 2243.5 208.5 2262.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 430) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 434) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2279.0 209.0 2299.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 435) (Intersect (Full) (RRect 189.0 2279.0 209.0 2299.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 433)) (RRect 189.5 2279.5 208.5 2298.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 438) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 442) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2315.0 209.0 2335.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 443) (Intersect (Full) (RRect 189.0 2315.0 209.0 2335.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 441)) (RRect 189.5 2315.5 208.5 2334.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 446) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 450) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2351.0 209.0 2371.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 451) (Intersect (Full) (RRect 189.0 2351.0 209.0 2371.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 449)) (RRect 189.5 2351.5 208.5 2370.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 454) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 458) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2387.0 209.0 2407.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 459) (Intersect (Full) (RRect 189.0 2387.0 209.0 2407.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 457)) (RRect 189.5 2387.5 208.5 2406.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 462) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 466) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 189.0 2423.0 209.0 2443.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 467) (Intersect (Full) (RRect 189.0 2423.0 209.0 2443.0 10.0 10.0 10.0 10.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 465)) (RRect 189.5 2423.5 208.5 2442.5 9.5 9.5 9.5 9.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 470) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 471) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2355.0 -0.15625 -14.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 478) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2375.0 -1.15625 -10.0 266.51 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 479) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1125.12 2375.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 480) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2339.0 1152.0 2379.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2397.0 -1.15625 -13.0 179.452 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 484) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 2417.0 -0.15625 -14.0 257.289 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 485) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1116.7 2417.0 -0.15625 -3.0 12.8438 2.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 486) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2381.0 1152.0 2421.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 496) (Paint (Color 0.3803921568627451 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 496) (Intersect (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 0.0 0.0 12.0 12.0)) (Rect 0.0 0.0 24.0 24.0)) (Matrix 0.5 0.0 0.0 860.0 0.0 0.5 0.0 2428.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 874.0 2439.0 -1.03809 -11.0 54.2103 4.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 501) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 927.547 2439.0 3.502 -11.0 91.0802 3.0) (Paint (Color 0.6 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 502) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2426.0 1152.0 2442.0)) (Rect 874.0 2426.0 1018.0 2442.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 880.0 2326.0 -1.03809 -11.0 101.817 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 507) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 880.0 2313.0 981.0 2329.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 514) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 2313.0 876.0 2329.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 515) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (RRect 860.0 2313.0 876.0 2329.0 8.0 8.0 8.0 8.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 513)) (RRect 860.5 2313.5 875.5 2328.5 7.5 7.5 7.5 7.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 518) (Intersect (Intersect (Intersect (Full) (RRect 844.0 2118.0 1164.0 2458.0 20.0 20.0 20.0 20.0)) (RRect 844.0 2298.0 1164.0 2458.0 0.0 0.0 0.0 20.0)) (Rect 860.0 2305.0 981.0 2337.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.0 2489.0 200.0 2517.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 524) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 206.0 2495.0 326.0 2511.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 525) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2539.5 491.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 526) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2540.0 491.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 529) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2729.0 217.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 530) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 2735.0 345.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 531) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2767.0 441.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 532) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 2791.0 378.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 533) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2540.0 491.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2539.5 827.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 535) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2540.0 827.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 538) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2729.0 553.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 539) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 2735.0 681.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 540) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2767.0 777.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 541) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 2791.0 714.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 542) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2540.0 827.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2539.5 1163.5 2823.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 544) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2540.0 1163.0 2719.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 547) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2729.0 889.0 2757.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 548) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 2735.0 1017.0 2751.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 549) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2767.0 1113.0 2783.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 550) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 2791.0 1050.0 2807.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 551) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2540.0 1163.0 2823.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 2840.5 491.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 553) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 173.0 2841.0 491.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 556) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3030.0 217.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 557) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 225.0 3036.0 345.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 558) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3068.0 441.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 559) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 189.0 3092.0 378.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 560) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 173.0 2841.0 491.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 2840.5 827.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 562) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 509.0 2841.0 827.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 565) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3030.0 553.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 566) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 561.0 3036.0 681.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 567) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3068.0 777.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 568) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 525.0 3092.0 714.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 569) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 509.0 2841.0 827.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 2840.5 1163.5 3124.5 19.5 19.5 19.5 19.5) (Paint (Color 1.0 0.9372549019607843 0.9411764705882353 0.9490196078431372) (SrcOver) (Stroke) (IdFilter) 571) (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 845.0 2841.0 1163.0 3020.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 574) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3030.0 889.0 3058.0 14.0 14.0 14.0 14.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 575) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 897.0 3036.0 1017.0 3052.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 576) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3068.0 1113.0 3084.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 577) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 861.0 3092.0 1050.0 3108.0 8.0 8.0 8.0 8.0) (Paint (Color 0.058823529411764705 0.0 0.043137254901960784 0.12941176470588237) (SrcOver) (Solid) (IdFilter) 578) (Intersect (Intersect (Full) (Rect 172.0 2483.0 1164.0 3130.0)) (RRect 845.0 2841.0 1163.0 3124.0 19.0 19.0 19.0 19.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1604.0 -1.15625 -13.0 282.668 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 583) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1624.0 -1.15625 -10.0 151.604 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 584) (Intersect (Full) (Rect 188.0 1588.0 476.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1604.0 -1.15625 -13.0 218.394 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 588) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1624.0 -1.15625 -14.0 246.858 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 589) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 769.484 1624.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 590) (Intersect (Full) (Rect 524.0 1588.0 812.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1604.0 -0.15625 -14.0 267.415 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 594) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1624.0 -1.15625 -14.0 275.386 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 595) (Intersect (Full) (Rect 860.0 1588.0 1148.0 1628.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1952.0 -1.15625 -14.0 279.778 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 599) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1972.0 -1.15625 -13.0 187.393 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 600) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 374.484 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 601) (Intersect (Full) (Rect 188.0 1936.0 476.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1952.0 -0.15625 -14.0 285.051 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 605) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1972.0 -0.15625 -13.0 209.029 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 606) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 732.516 1972.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 607) (Intersect (Full) (Rect 524.0 1936.0 812.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1952.0 -0.15625 -14.0 278.211 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 611) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1972.0 -0.15625 -13.0 180.266 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 612) (Intersect (Full) (Rect 860.0 1936.0 1148.0 1976.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 619) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1548.0 220.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 620) (Intersect (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (RRect 188.0 1548.0 220.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 618)) (RRect 188.5 1548.5 219.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 623) (Intersect (Full) (Rect 188.0 1548.0 442.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 630) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1548.0 556.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 631) (Intersect (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (RRect 524.0 1548.0 556.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 629)) (RRect 524.5 1548.5 555.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 634) (Intersect (Full) (Rect 524.0 1548.0 778.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 641) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1548.0 892.0 1580.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 642) (Intersect (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (RRect 860.0 1548.0 892.0 1580.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 640)) (RRect 860.5 1548.5 891.5 1579.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 645) (Intersect (Full) (Rect 860.0 1548.0 1100.0 1580.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 652) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1896.0 220.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 653) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (RRect 188.0 1896.0 220.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 651)) (RRect 188.5 1896.5 219.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 656) (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1909.0 -0.0380859 -11.0 141.906 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 659) (Intersect (Intersect (Full) (Rect 188.0 1896.0 440.0 1928.0)) (Rect 228.0 1896.0 369.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 667) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1896.0 556.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 668) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (RRect 524.0 1896.0 556.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 666)) (RRect 524.5 1896.5 555.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 671) (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1909.0 -0.0380859 -11.0 43.3945 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 674) (Intersect (Intersect (Full) (Rect 524.0 1896.0 750.0 1928.0)) (Rect 564.0 1896.0 607.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 682) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1896.0 892.0 1928.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 683) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (RRect 860.0 1896.0 892.0 1928.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 681)) (RRect 860.5 1896.5 891.5 1927.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 686) (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1909.0 -0.0380859 -11.0 102.6 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 689) (Intersect (Intersect (Full) (Rect 860.0 1896.0 1105.0 1928.0)) (Rect 900.0 1896.0 1001.0 1912.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1704.5 491.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 692) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1704.5 827.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 693) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1704.5 1163.5 2035.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 694) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg index a8f117600..647e64bfa 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (Color 1.0 0.06274509803921569 0.3137254901960784 0.3764705882352941) (SrcOver) (Solid) (IdFilter) 14) (Intersect (Intersect (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Rect 0.0 0.0 320.0 181.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 320.0 180.0) (Paint (RadialGradient) (SrcOver) (Solid) (IdFilter) 18) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 17)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9)) (Rect 0.0 180.0 320.0 181.0) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 21) (Intersect (Intersect (Full) (RRect 0.0 0.0 320.0 180.0 20.0 20.0 20.0 0.0)) (Rect 0.0 0.0 320.0 180.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg index b350ddbf6..3fc9c4618 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 496.0 647.0) (Paint (LinearGradient) (SoftLight) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg index a0e3eaadf..01bb063e4 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 908.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 908.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 908.0 -0.15625 -13.0 246.891 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -1.15625 -13.0 270.36 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1130.2 928.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23)) (RRect 188.5 852.5 219.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 28) (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (RRect 524.5 852.5 555.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 39) (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 865.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 865.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (RRect 860.5 852.5 891.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 55) (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 865.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Rect 900.0 852.0 1066.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (SaveLayer (Draw (Draw (Draw (SaveLayer (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 908.0 -0.15625 -13.0 244.914 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 928.0 -0.15625 -13.0 96.4708 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 892.0 476.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 908.0 -1.15625 -13.0 270.55 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 928.0 -0.15625 -10.0 191.9 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 892.0 812.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 908.0 -0.15625 -13.0 246.891 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 928.0 -1.15625 -13.0 270.36 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 1130.2 928.0 -0.15625 -4.0 13.8438 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 17) (Intersect (Full) (Rect 860.0 892.0 1148.0 932.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 852.0 220.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 25) (Intersect (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (RRect 188.0 852.0 220.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 23)) (RRect 188.5 852.5 219.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 28) (Intersect (Full) (Rect 188.0 852.0 443.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 35) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 852.0 556.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 36) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (RRect 524.0 852.0 556.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 34)) (RRect 524.5 852.5 555.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 39) (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 865.0 -1.03809 -11.0 235.329 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 42) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 797.891 865.0 -0.0380859 -3.0 11.9619 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 43) (Intersect (Intersect (Full) (Rect 524.0 852.0 812.0 884.0)) (Rect 564.0 852.0 812.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 51) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 852.0 892.0 884.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (RRect 860.0 852.0 892.0 884.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 50)) (RRect 860.5 852.5 891.5 883.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 55) (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 865.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 58) (Intersect (Intersect (Full) (Rect 860.0 852.0 1117.0 884.0)) (Rect 900.0 852.0 1066.0 868.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -660.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg index 8079d90ba..d53d3d3c0 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1256.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1256.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1276.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1256.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 1200.5 219.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1213.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Rect 228.0 1200.0 394.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 524.5 1200.5 555.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1213.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Rect 564.0 1200.0 705.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52)) (RRect 860.5 1200.5 891.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 57) (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1213.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Rect 900.0 1200.0 1109.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1008.5 491.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 63) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1008.5 827.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 64) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1008.5 1163.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1256.0 -0.15625 -13.0 241.941 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 188.0 1276.0 -1.15625 -13.0 169.099 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 6) (Intersect (Full) (Rect 188.0 1240.0 476.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1256.0 -0.15625 -13.0 261.56 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 10) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 524.0 1276.0 -1.15625 -13.0 92.5272 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 11) (Intersect (Full) (Rect 524.0 1240.0 812.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1256.0 -0.15625 -13.0 286.507 2.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 15) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 860.0 1276.0 -1.15625 -13.0 125.909 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 16) (Intersect (Full) (Rect 860.0 1240.0 1148.0 1280.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 23) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 188.0 1200.0 220.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 24) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (RRect 188.0 1200.0 220.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 22)) (RRect 188.5 1200.5 219.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 27) (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 228.0 1213.0 -0.0380859 -12.0 165.494 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 30) (Intersect (Intersect (Full) (Rect 188.0 1200.0 435.0 1232.0)) (Rect 228.0 1200.0 394.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 38) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 524.0 1200.0 556.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 39) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (RRect 524.0 1200.0 556.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 37)) (RRect 524.5 1200.5 555.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 42) (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 564.0 1213.0 -0.0380859 -11.0 141.032 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 45) (Intersect (Intersect (Full) (Rect 524.0 1200.0 772.0 1232.0)) (Rect 564.0 1200.0 705.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 53) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (ImageRect 860.0 1200.0 892.0 1232.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 54) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (RRect 860.0 1200.0 892.0 1232.0 16.0 16.0 16.0 16.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 52)) (RRect 860.5 1200.5 891.5 1231.5 15.5 15.5 15.5 15.5) (Paint (Color 0.12156862745098039 0.0 0.0 0.0) (SrcOver) (Stroke) (IdFilter) 57) (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 900.0 1213.0 -1.03809 -11.0 209.803 4.0) (Paint (Color 0.8705882352941177 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Solid) (IdFilter) 60) (Intersect (Intersect (Full) (Rect 860.0 1200.0 1117.0 1232.0)) (Rect 900.0 1200.0 1109.0 1216.0)) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 172.5 1008.5 491.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 63) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 508.5 1008.5 827.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 64) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 844.5 1008.5 1163.5 1339.5 19.5 19.5 19.5 19.5) (Paint (Color 0.25098039215686274 0.023529411764705882 0.023529411764705882 0.058823529411764705) (SrcOver) (Stroke) (IdFilter) 65) (Full) (Matrix 1.0 0.0 0.0 -172.0 0.0 1.0 0.0 -1008.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg index 59bba84a6..46ccc0008 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) +(let $test (SaveLayer (Draw (Draw (Draw (Empty) (Full) (Paint (Color 0.0 0.0 0.0 0.0) (Src) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (RRect 182.0 12.0 1098.0 60.0 13.0 13.0 13.0 13.0) (Paint (Color 1.0 1.0 0.8 0.0) (SrcOver) (Stroke) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (TextBlob 197.0 42.0 -0.219727 -14.0 128.075 4.0) (Paint (Color 1.0 0.4588235294117647 0.4588235294117647 0.4588235294117647) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 -181.0 0.0 1.0 0.0 -11.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 9) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 9) (Intersect (Full) (Rect 0.0 0.0 32.0 32.0)) (Matrix 1.0 0.0 0.0 782.0 0.0 1.0 0.0 9.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg index bfdb08836..ccd160d46 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Path 3) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 4) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 12) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 6)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) +(let $test (SaveLayer (Empty) (SaveLayer (Draw (Draw (Empty) (Path 3) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Path 4) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Stroke) (IdFilter) 4) (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Path 12) (Paint (Color 1.0 1.0 1.0 1.0) (SrcOver) (Solid) (IdFilter) 12) (Intersect (Intersect (Full) (Rect 2.0 1.0 18.0 21.0)) (Rect 2.0 1.0 18.0 21.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 6)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg index 9a6ac3388..43c0ea5bc 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Draw (Empty) (Oval 10.0 0.0 260.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Draw (Empty) (Oval 10.0 0.0 260.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Intersect (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Oval 40.0 0.0 160.0 120.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 7) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg index b098b5808..b89f23951 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Empty) (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0)) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Empty) (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0)) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg index abfbef31c..1b9faa7e5 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (Empty) (Rect 10.0 10.0 500.0 500.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 310.0 500.0 400.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Difference (Difference (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Rect 30.0 330.0 200.0 500.0)) (Rect 300.0 300.0 500.0 500.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (Empty) (Rect 10.0 10.0 500.0 500.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 310.0 500.0 400.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6) (Difference (Difference (Intersect (Intersect (Full) (Rect 30.0 30.0 200.0 200.0)) (Rect 0.0 0.0 35.0 35.0)) (Rect 30.0 330.0 200.0 500.0)) (Rect 300.0 300.0 500.0 500.0)) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__Draw.egg b/infra/nightly-resources/test-files/easteregg/unit__Draw.egg index 23d3d8543..fe9a69b05 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__Draw.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__Draw.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Empty) (Rect 20.0 20.0 100.0 100.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Empty) (Rect 20.0 20.0 100.0 100.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__Save.egg b/infra/nightly-resources/test-files/easteregg/unit__Save.egg index d21320ebd..09ad0bdfd 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__Save.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__Save.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 2.0 0.0 0.0 0.0 0.0 0.5 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Empty) (Oval 40.0 40.0 160.0 160.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Intersect (Full) (Rect 0.0 0.0 90.0 80.0)) (Matrix 2.0 0.0 0.0 0.0 0.0 0.5 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg index d28e1049b..e2f1af275 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg index b317110fd..693dddc8a 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2))) +(let $test (SaveLayer (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg index 90b059b7e..5eb33bcea 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 10.0 60.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 10.0 200.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 10.0 80.0 60.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 10.0 220.0 60.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 130.0 60.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 130.0 200.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 130.0 80.0 180.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 130.0 220.0 180.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10))) +(let $test (SaveLayer (SaveLayer (Draw (Draw (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 10.0 60.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 10.0 200.0 60.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 10.0 80.0 60.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 10.0 220.0 60.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 70.0 200.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 70.0 80.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 7) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 8) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 6)) (Draw (Draw (Draw (Draw (Empty) (Rect 10.0 130.0 60.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 11) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 150.0 130.0 200.0 180.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 12) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 130.0 80.0 180.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 13) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 130.0 220.0 180.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 14) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.30196078431372547 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 10))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg index 51d28fef4..ced08eb15 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (Draw (SaveLayer (Draw (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 2)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.011764705882352941 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (Draw (SaveLayer (Draw (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 1) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (DstIn) (Solid) (IdFilter) 2)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.0 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 0.011764705882352941 0.00784313725490196 0.00784313725490196 0.00784313725490196) (SrcOver) (Solid) (IdFilter) 6) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg index 65d4ac479..fb8bf8d93 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.06274509803921569 0.12549019607843137 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 150.0 60.0) (Paint (Color 1.0 0.5019607843137255 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Rect 0.0 0.0 50.0 60.0) (Paint (Color 1.0 0.06274509803921569 0.12549019607843137 0.18823529411764706) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Empty) (Rect 0.0 0.0 150.0 60.0) (Paint (Color 1.0 0.5019607843137255 0.0 0.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg index c94492228..d3eeaa637 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Empty) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) +(let $test (SaveLayer (Empty) (SaveLayer (Empty) (Draw (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 170.0 70.0 220.0 120.0) (Paint (Color 1.0 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg index 70128ed17..45e237c42 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Rect 10.0 60.0 100.0 120.0) (Paint (Color 0.5019607843137255 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 50.0 60.0 120.0 120.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 30.0 90.0 100.0) (Paint (Color 0.5019607843137255 0.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 110.0 90.0 140.0) (Paint (Color 0.5019607843137255 1.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Rect 10.0 60.0 100.0 120.0) (Paint (Color 0.5019607843137255 1.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (SaveLayer (Draw (Empty) (Rect 50.0 60.0 120.0 120.0) (Paint (Color 0.5019607843137255 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 2) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Draw (Draw (Empty) (Rect 30.0 30.0 90.0 100.0) (Paint (Color 0.5019607843137255 0.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 4) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Rect 30.0 110.0 90.0 140.0) (Paint (Color 0.5019607843137255 1.0 1.0 0.0) (SrcOver) (Solid) (IdFilter) 5) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 3)) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg index 13a207fe0..a3b8c10e3 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (SaveLayer (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) +(let $test (SaveLayer (Draw (Empty) (Rect 10.0 70.0 60.0 120.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg index c2f8f7ff4..f519dfb32 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Draw (SaveLayer (Draw (Empty) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Rect 110.0 130.0 190.0 190.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) +(let $test (Draw (SaveLayer (Draw (Empty) (Rect 90.0 90.0 110.0 130.0) (Paint (Color 1.0 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 0) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0)) (Empty) (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) (Solid) (IdFilter) 1)) (Rect 110.0 130.0 190.0 190.0) (Paint (Color 0.30196078431372547 0.0 0.0 1.0) (SrcOver) (Solid) (IdFilter) 3) (Full) (Matrix 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0))) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg index 722abfa87..25c0cb92f 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Empty)) +(let $test (Empty)) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg index 722abfa87..25c0cb92f 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg @@ -108,9 +108,9 @@ (Draw (Empty) shape (Paint (Color 1.0 0.0 0.0 0.0) (SrcOver) style (IdFilter) i1) clip transform) :ruleset opt) -(let test (Empty)) +(let $test (Empty)) (run-schedule ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 test) +(multi-extract 0 $test) From 05bab06134481dc0f552016cfa3c4b94df89c15b Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 09:45:33 -0800 Subject: [PATCH 07/16] checkpoint --- src/poach.rs | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/src/poach.rs b/src/poach.rs index 474f017dc..5b8216df2 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -67,8 +67,10 @@ enum RunMode { // Requires initial-egraph to be provided via Args // For each egg file under the input path, - // Deserialize the initial egraph - // Run the egglog program, skipping declarations of Sorts and Rules + // Run the egglog program from a fresh egraph and record extract outputs. + // Deserialize the initial egraph. + // Run the egglog program, skipping declarations of Sorts and Rules. + // Compare extract outputs between the two runs. // Save the completed timeline, for consumption by the nightly frontend Mine, } @@ -467,6 +469,25 @@ fn poach( out_dir, initial_egraph.as_deref(), |egg_file, out_dir, timed_egraph| { + let extract_outputs = |outputs: Vec| { + outputs + .into_iter() + .filter(|x| { + matches!( + x, + CommandOutput::ExtractBest(_, _, _) + | CommandOutput::ExtractVariants(_, _) + | CommandOutput::MultiExtractVariants(_, _) + ) + }) + .collect::>() + }; + + // First, run the file on a blank e-graph and track extracts + let mut fresh_egraph = TimedEgraph::new(); + let outputs = fresh_egraph.run_from_file(egg_file)?; + let fresh_extracts = extract_outputs(outputs); + // Namespace to avoid shadowing #[derive(Default)] struct Namespace { @@ -478,7 +499,7 @@ fn poach( if self.map.contains_key(&name) { panic!("duplicate variable names") } else { - let namespaced = format!("@@{name}"); + let namespaced = format!("{name}@@"); self.map.insert(name.clone(), namespaced.clone()); namespaced } @@ -636,7 +657,8 @@ fn poach( }) .unzip(); - timed_egraph.run_program_with_timeline( + // Run program on the mined e-graph + let mined_outputs = timed_egraph.run_program_with_timeline( filtered_cmds, &filtered_sexps .iter() @@ -645,6 +667,10 @@ fn poach( .join("\n"), )?; + let mined_extracts = extract_outputs(mined_outputs); + + compare_extracts(&fresh_extracts, &mined_extracts)?; + timed_egraph.write_timeline(out_dir)?; Ok(()) From eae11807f22d95c57194df87c9803d56332440ee Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 10:53:27 -0800 Subject: [PATCH 08/16] better compare_extracts --- src/poach.rs | 208 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 142 insertions(+), 66 deletions(-) diff --git a/src/poach.rs b/src/poach.rs index d0309edb7..61d35d5f4 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -4,7 +4,7 @@ use egglog::ast::{ all_sexps, GenericAction, GenericCommand, GenericExpr, GenericFact, GenericRunConfig, GenericSchedule, Sexp, SexpParser, }; -use egglog::{CommandOutput, EGraph, TimedEgraph}; +use egglog::{CommandOutput, EGraph, TermDag, TimedEgraph}; use env_logger::Env; use hashbrown::HashMap; use serde::Serialize; @@ -206,39 +206,128 @@ where (successes, failures) } +fn collect_extract_outputs(outputs: Vec) -> Vec { + outputs + .into_iter() + .filter(|output| { + matches!( + output, + CommandOutput::ExtractBest(_, _, _) + | CommandOutput::ExtractVariants(_, _) + | CommandOutput::MultiExtractVariants(_, _) + ) + }) + .collect() +} + +#[derive(Clone, Copy)] +enum ExtractComparison { + Exact, + AtLeastAsGood, +} + +fn compare_extract_pair( + dag1: &TermDag, + term1: &usize, + dag2: &TermDag, + term2: &usize, +) -> Result<()> { + let initial_term = dag1.to_string(*term1); + let final_term = dag2.to_string(*term2); + if initial_term != final_term { + anyhow::bail!( + "No match:\ninitial: {} \nfinal: {}", + initial_term, + final_term + ) + } + Ok(()) +} + fn compare_extracts( initial_extracts: &[CommandOutput], final_extracts: &[CommandOutput], + comparison: ExtractComparison, ) -> Result<()> { if initial_extracts.len() != final_extracts.len() { - anyhow::bail!("extract lengths mismatch") + anyhow::bail!( + "extract lengths mismatch: {} != {}", + initial_extracts.len(), + final_extracts.len() + ) } - for (x, y) in initial_extracts.iter().zip(final_extracts) { - match (x, y) { - (CommandOutput::ExtractBest(_, _, term1), CommandOutput::ExtractBest(_, _, term2)) => { - if term1 != term2 { - anyhow::bail!("No match : {:?} {:?}", x, y) + let pair_groups: Result>> = initial_extracts + .iter() + .zip(final_extracts) + .map(|(initial, final_)| match (initial, final_) { + ( + CommandOutput::ExtractBest(dag1, cost1, term1), + CommandOutput::ExtractBest(dag2, cost2, term2), + ) => match comparison { + ExtractComparison::Exact => Ok(vec![((dag1, term1), (dag2, term2))]), + ExtractComparison::AtLeastAsGood => { + if cost1 < cost2 { + anyhow::bail!("Cost got worse!"); + } + Ok(vec![]) } - } + }, ( - CommandOutput::ExtractVariants(_, terms1), - CommandOutput::ExtractVariants(_, terms2), + CommandOutput::ExtractVariants(dag1, items1), + CommandOutput::ExtractVariants(dag2, items2), ) => { - if terms1 != terms2 { - anyhow::bail!("No match : {:?} {:?}", x, y) + if items1.len() != items2.len() { + anyhow::bail!( + "extract variant lengths mismatch: {} != {}", + items1.len(), + items2.len() + ) } + Ok(items1 + .iter() + .zip(items2) + .map(|(term1, term2)| ((dag1, term1), (dag2, term2))) + .collect()) } ( - CommandOutput::MultiExtractVariants(_, items1), - CommandOutput::MultiExtractVariants(_, items2), + CommandOutput::MultiExtractVariants(dag1, items1), + CommandOutput::MultiExtractVariants(dag2, items2), ) => { - if items1 != items2 { - anyhow::bail!("No match : {:?} {:?}", x, y) + if items1.len() != items2.len() { + anyhow::bail!( + "multi-extract lengths mismatch: {} != {}", + items1.len(), + items2.len() + ) } + + let mut pairs = Vec::new(); + for (terms1, terms2) in items1.iter().zip(items2) { + if terms1.len() != terms2.len() { + anyhow::bail!( + "multi-extract variant lengths mismatch: {} != {}", + terms1.len(), + terms2.len() + ) + } + pairs.extend( + terms1 + .iter() + .zip(terms2) + .map(|(term1, term2)| ((dag1, term1), (dag2, term2))), + ); + } + + Ok(pairs) } - _ => anyhow::bail!("No match : {:?} {:?}", x, y), - } + _ => anyhow::bail!("Not an extract: {:?} != {:?}", initial, final_), + }) + .collect(); + + let pairs = pair_groups?.into_iter().flatten(); + for ((dag1, term1), (dag2, term2)) in pairs { + compare_extract_pair(dag1, term1, dag2, term2)?; } Ok(()) @@ -270,7 +359,17 @@ fn poach( initial_egraph.as_deref(), |egg_file, out_dir, timed_egraph| { let name = benchmark_name(egg_file); - timed_egraph.run_from_file(egg_file)?; + let outputs = timed_egraph.run_from_file(egg_file)?; + for output in outputs { + if matches!( + output, + CommandOutput::ExtractBest(_, _, _) + | CommandOutput::ExtractVariants(_, _) + | CommandOutput::MultiExtractVariants(_, _) + ) { + print!("{output}"); + } + } timed_egraph.to_file(&out_dir.join(format!("{name}-serialize.json")))?; timed_egraph.write_timeline(&out_dir.join(format!("{name}-timeline.json")))?; Ok(()) @@ -400,19 +499,8 @@ fn poach( initial_egraph.as_deref(), |egg_file, out_dir, timed_egraph| { let name = benchmark_name(egg_file); - let initial_outputs = timed_egraph.run_from_file(egg_file)?; - - let initial_extracts: Vec = initial_outputs - .into_iter() - .filter(|x| { - matches!( - x, - CommandOutput::ExtractBest(_, _, _) - | CommandOutput::ExtractVariants(_, _) - | CommandOutput::MultiExtractVariants(_, _) - ) - }) - .collect(); + let initial_extracts = + collect_extract_outputs(timed_egraph.run_from_file(egg_file)?); let program_string = &read_to_string(egg_file)?; @@ -456,10 +544,11 @@ fn poach( check_egraph_number(&timed_egraph, 2)?; - let final_extracts = - timed_egraph.run_program_with_timeline(extract_cmds, &extracts)?; + let final_extracts = collect_extract_outputs( + timed_egraph.run_program_with_timeline(extract_cmds, &extracts)?, + ); - compare_extracts(&initial_extracts, &final_extracts)?; + compare_extracts(&initial_extracts, &final_extracts, ExtractComparison::Exact)?; timed_egraph.write_timeline(&out_dir.join(format!("{name}-timeline.json")))?; @@ -477,24 +566,10 @@ fn poach( out_dir, initial_egraph.as_deref(), |egg_file, out_dir, timed_egraph| { - let extract_outputs = |outputs: Vec| { - outputs - .into_iter() - .filter(|x| { - matches!( - x, - CommandOutput::ExtractBest(_, _, _) - | CommandOutput::ExtractVariants(_, _) - | CommandOutput::MultiExtractVariants(_, _) - ) - }) - .collect::>() - }; - // First, run the file on a blank e-graph and track extracts let mut fresh_egraph = TimedEgraph::new(); - let outputs = fresh_egraph.run_from_file(egg_file)?; - let fresh_extracts = extract_outputs(outputs); + let fresh_extracts = + collect_extract_outputs(fresh_egraph.run_from_file(egg_file)?); let name = benchmark_name(egg_file); // Namespace to avoid shadowing @@ -602,19 +677,16 @@ fn poach( let (filtered_cmds, filtered_sexps): (Vec<_>, Vec<_>) = all_cmds .into_iter() .zip(all_sexps) - .filter(|(c, _)| { - match c { - GenericCommand::Action(GenericAction::Let(..)) => true, - egglog::ast::GenericCommand::Extract(..) => true, - egglog::ast::GenericCommand::MultiExtract(..) => true, - // TODO: Running rules on a deserialized egraph currently does not work - // | egglog::ast::GenericCommand::RunSchedule(_) - egglog::ast::GenericCommand::PrintOverallStatistics(..) => true, - egglog::ast::GenericCommand::Check(..) => true, - egglog::ast::GenericCommand::PrintFunction(..) => true, - egglog::ast::GenericCommand::PrintSize(..) => true, - _ => false, - } + .filter(|(c, _)| match c { + GenericCommand::Action(GenericAction::Let(..)) => true, + egglog::ast::GenericCommand::Extract(..) => true, + egglog::ast::GenericCommand::MultiExtract(..) => true, + egglog::ast::GenericCommand::RunSchedule(..) => true, + egglog::ast::GenericCommand::PrintOverallStatistics(..) => true, + egglog::ast::GenericCommand::Check(..) => true, + egglog::ast::GenericCommand::PrintFunction(..) => true, + egglog::ast::GenericCommand::PrintSize(..) => true, + _ => false, }) .map(|(cmd, sexp)| { ( @@ -676,9 +748,13 @@ fn poach( .join("\n"), )?; - let mined_extracts = extract_outputs(mined_outputs); + let mined_extracts = collect_extract_outputs(mined_outputs); - compare_extracts(&fresh_extracts, &mined_extracts)?; + compare_extracts( + &fresh_extracts, + &mined_extracts, + ExtractComparison::AtLeastAsGood, + )?; timed_egraph.write_timeline(&out_dir.join(format!("{name}-timeline.json")))?; From e9ed9057ea904459817467b817ba3e1081c48aa5 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 11:24:54 -0800 Subject: [PATCH 09/16] plumb costs for extract variants --- src/lib.rs | 32 ++++++++++---------------- src/poach.rs | 64 ++++++++++++++++++++++++++++------------------------ 2 files changed, 47 insertions(+), 49 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4910c1661..05ac98b7a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -373,9 +373,9 @@ pub enum CommandOutput { /// The best function found after extracting ExtractBest(TermDag, DefaultCost, TermId), /// The variants of a function found after extracting - ExtractVariants(TermDag, Vec), + ExtractVariants(TermDag, Vec<(DefaultCost, TermId)>), /// The variants of multiple functions found after extracting - MultiExtractVariants(TermDag, Vec>), + MultiExtractVariants(TermDag, Vec>), /// The report from all runs OverallStatistics(RunReport), /// A printed function and all its values @@ -402,7 +402,7 @@ impl std::fmt::Display for CommandOutput { } CommandOutput::ExtractVariants(termdag, terms) => { writeln!(f, "(")?; - for expr in terms { + for (_, expr) in terms { writeln!(f, " {}", termdag.to_string(*expr))?; } writeln!(f, ")") @@ -411,7 +411,7 @@ impl std::fmt::Display for CommandOutput { writeln!(f, "(")?; for variants in terms { writeln!(f, " (")?; - for expr in variants { + for (_, expr) in variants { writeln!(f, " {}", termdag.to_string(*expr))?; } writeln!(f, " )")?; @@ -1507,11 +1507,7 @@ impl EGraph { if n < 0 { panic!("Cannot extract negative number of variants"); } - let terms: Vec = extractor - .extract_variants(self, &mut termdag, x, n as usize) - .iter() - .map(|e| e.1) - .collect(); + let terms = extractor.extract_variants(self, &mut termdag, x, n as usize); if log_enabled!(Level::Info) { let expr_str = expr.to_string(); log::info!("extracted {} variants for {expr_str}", terms.len()); @@ -1544,17 +1540,13 @@ impl EGraph { .iter() .zip(exprs.iter()) .map(|(x, expr)| { - let variants: Vec<_> = extractor - .extract_variants_with_sort( - self, - &mut termdag, - *x, - n as usize, - expr.output_type(), - ) - .iter() - .map(|e| e.1.clone()) - .collect(); + let variants = extractor.extract_variants_with_sort( + self, + &mut termdag, + *x, + n as usize, + expr.output_type(), + ); if log_enabled!(Level::Info) { let expr_str = expr.to_string(); log::info!("extracted {} variants for {expr_str}", variants.len()); diff --git a/src/poach.rs b/src/poach.rs index 61d35d5f4..59c52a3e0 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -4,6 +4,7 @@ use egglog::ast::{ all_sexps, GenericAction, GenericCommand, GenericExpr, GenericFact, GenericRunConfig, GenericSchedule, Sexp, SexpParser, }; +use egglog::extract::DefaultCost; use egglog::{CommandOutput, EGraph, TermDag, TimedEgraph}; use env_logger::Env; use hashbrown::HashMap; @@ -228,18 +229,30 @@ enum ExtractComparison { fn compare_extract_pair( dag1: &TermDag, - term1: &usize, + cost1: DefaultCost, + term1: usize, dag2: &TermDag, - term2: &usize, + cost2: DefaultCost, + term2: usize, + comparison: ExtractComparison, ) -> Result<()> { - let initial_term = dag1.to_string(*term1); - let final_term = dag2.to_string(*term2); - if initial_term != final_term { - anyhow::bail!( - "No match:\ninitial: {} \nfinal: {}", - initial_term, - final_term - ) + match comparison { + ExtractComparison::Exact => { + let initial_term = dag1.to_string(term1); + let final_term = dag2.to_string(term2); + if initial_term != final_term { + anyhow::bail!( + "No match:\ninitial: {} \nfinal: {}", + initial_term, + final_term + ) + } + } + ExtractComparison::AtLeastAsGood => { + if cost2 > cost1 { + anyhow::bail!("Cost got worse: {} -> {}", cost1, cost2) + } + } } Ok(()) } @@ -257,22 +270,14 @@ fn compare_extracts( ) } - let pair_groups: Result>> = initial_extracts + let pair_groups: Result> = initial_extracts .iter() .zip(final_extracts) .map(|(initial, final_)| match (initial, final_) { ( CommandOutput::ExtractBest(dag1, cost1, term1), CommandOutput::ExtractBest(dag2, cost2, term2), - ) => match comparison { - ExtractComparison::Exact => Ok(vec![((dag1, term1), (dag2, term2))]), - ExtractComparison::AtLeastAsGood => { - if cost1 < cost2 { - anyhow::bail!("Cost got worse!"); - } - Ok(vec![]) - } - }, + ) => Ok(vec![((dag1, *cost1, *term1), (dag2, *cost2, *term2))]), ( CommandOutput::ExtractVariants(dag1, items1), CommandOutput::ExtractVariants(dag2, items2), @@ -287,7 +292,9 @@ fn compare_extracts( Ok(items1 .iter() .zip(items2) - .map(|(term1, term2)| ((dag1, term1), (dag2, term2))) + .map(|((cost1, term1), (cost2, term2))| { + ((dag1, *cost1, *term1), (dag2, *cost2, *term2)) + }) .collect()) } ( @@ -311,12 +318,11 @@ fn compare_extracts( terms2.len() ) } - pairs.extend( - terms1 - .iter() - .zip(terms2) - .map(|(term1, term2)| ((dag1, term1), (dag2, term2))), - ); + pairs.extend(terms1.iter().zip(terms2).map( + |((cost1, term1), (cost2, term2))| { + ((dag1, *cost1, *term1), (dag2, *cost2, *term2)) + }, + )); } Ok(pairs) @@ -326,8 +332,8 @@ fn compare_extracts( .collect(); let pairs = pair_groups?.into_iter().flatten(); - for ((dag1, term1), (dag2, term2)) in pairs { - compare_extract_pair(dag1, term1, dag2, term2)?; + for ((dag1, cost1, term1), (dag2, cost2, term2)) in pairs { + compare_extract_pair(dag1, cost1, term1, dag2, cost2, term2, comparison)?; } Ok(()) From 54c1fc94a41b00c58654e5239b9d3fe32b37c939 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 11:26:28 -0800 Subject: [PATCH 10/16] multi-extract 1 --- infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg | 2 +- .../test-files/easteregg/Bilibili__layer_5.egg | 2 +- .../test-files/easteregg/Bilibili__layer_56.egg | 2 +- .../test-files/easteregg/Bilibili__layer_57.egg | 2 +- .../nightly-resources/test-files/easteregg/GitHub__layer_18.egg | 2 +- .../nightly-resources/test-files/easteregg/GitHub__layer_4.egg | 2 +- .../nightly-resources/test-files/easteregg/Globo__layer_29.egg | 2 +- .../test-files/easteregg/Instagram__layer_0.egg | 2 +- infra/nightly-resources/test-files/easteregg/Live__layer_1.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_12.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_13.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_14.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_15.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_16.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_18.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_19.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_41.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_45.egg | 2 +- .../test-files/easteregg/Mail_ru__layer_49.egg | 2 +- .../test-files/easteregg/Microsoft_Bing__layer_7.egg | 2 +- .../test-files/easteregg/Microsoft_Bing__layer_8.egg | 2 +- .../test-files/easteregg/Pinterest__layer_106.egg | 2 +- .../test-files/easteregg/SharePoint__layer_1.egg | 2 +- infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg | 2 +- .../test-files/easteregg/The_New_York_Times__layer_3.egg | 2 +- .../nightly-resources/test-files/easteregg/Twitch__layer_27.egg | 2 +- .../nightly-resources/test-files/easteregg/Twitch__layer_9.egg | 2 +- .../test-files/easteregg/Yahoo_JP__layer_1.egg | 2 +- .../test-files/easteregg/Yahoo_JP__layer_10.egg | 2 +- .../test-files/easteregg/Yahoo_JP__layer_3.egg | 2 +- .../nightly-resources/test-files/easteregg/Yandex__layer_25.egg | 2 +- .../nightly-resources/test-files/easteregg/Yandex__layer_26.egg | 2 +- .../nightly-resources/test-files/easteregg/Yandex__layer_27.egg | 2 +- .../nightly-resources/test-files/easteregg/Yandex__layer_28.egg | 2 +- .../nightly-resources/test-files/easteregg/Yandex__layer_29.egg | 2 +- .../nightly-resources/test-files/easteregg/Yandex__layer_66.egg | 2 +- .../test-files/easteregg/Zen_News__layer_0.egg | 2 +- .../test-files/easteregg/Zen_News__layer_29.egg | 2 +- .../test-files/easteregg/Zen_News__layer_30.egg | 2 +- .../test-files/easteregg/Zen_News__layer_31.egg | 2 +- .../test-files/easteregg/Zen_News__layer_32.egg | 2 +- .../test-files/easteregg/Zen_News__layer_69.egg | 2 +- .../nightly-resources/test-files/easteregg/unit__ClipLayer.egg | 2 +- .../nightly-resources/test-files/easteregg/unit__ClipRect_1.egg | 2 +- .../nightly-resources/test-files/easteregg/unit__ClipRect_2.egg | 2 +- .../nightly-resources/test-files/easteregg/unit__ClipRect_3.egg | 2 +- infra/nightly-resources/test-files/easteregg/unit__Draw.egg | 2 +- infra/nightly-resources/test-files/easteregg/unit__Save.egg | 2 +- .../test-files/easteregg/unit__SaveLayer_1.egg | 2 +- .../test-files/easteregg/unit__SaveLayer_2.egg | 2 +- .../test-files/easteregg/unit__SaveLayer_3.egg | 2 +- .../test-files/easteregg/unit__SaveLayer_4.egg | 2 +- .../test-files/easteregg/unit__SaveLayer_5.egg | 2 +- .../test-files/easteregg/unit__nested_SaveLayer_1.egg | 2 +- .../test-files/easteregg/unit__nested_SaveLayer_2.egg | 2 +- .../test-files/easteregg/unit__noop_SaveLayer.egg | 2 +- .../test-files/easteregg/unit__noop_Save_1.egg | 2 +- .../test-files/easteregg/unit__noop_Save_2.egg | 2 +- .../test-files/easteregg/unit__noop_Save_3.egg | 2 +- 59 files changed, 59 insertions(+), 59 deletions(-) diff --git a/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg index bdab9e4b5..fd0decaa8 100644 --- a/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Baidu__layer_0.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg index 4f61dd6dd..11bcbd393 100644 --- a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg +++ b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_5.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg index 5a340036f..20aeacc47 100644 --- a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg +++ b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_56.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg index 2eb977ea0..b4b94e371 100644 --- a/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg +++ b/infra/nightly-resources/test-files/easteregg/Bilibili__layer_57.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg b/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg index 73453be23..f1978711c 100644 --- a/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg +++ b/infra/nightly-resources/test-files/easteregg/GitHub__layer_18.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg b/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg index a25fe5dc2..1a40492c2 100644 --- a/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg +++ b/infra/nightly-resources/test-files/easteregg/GitHub__layer_4.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg b/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg index 05349a1d3..3f1df9a27 100644 --- a/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg +++ b/infra/nightly-resources/test-files/easteregg/Globo__layer_29.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg index e3b1b88e0..d132a89ac 100644 --- a/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Instagram__layer_0.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg b/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg index 4920955e7..dc8f759bb 100644 --- a/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/Live__layer_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg index 071c40077..0ab54639a 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_12.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg index c77695c64..d5b58bc3b 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_13.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg index f8595debc..08244fc65 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_14.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg index 2085d5fc5..282fc8c45 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_15.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg index db93a6779..e17b94358 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_16.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg index 9ff7ec651..47f7738e9 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_18.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg index 6dfb8f7d5..4ae33ad17 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_19.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg index 9359ffea5..c5c00c550 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_41.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg index a8f4be307..fd1839f0a 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_45.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg index 019b00985..e77797c46 100644 --- a/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg +++ b/infra/nightly-resources/test-files/easteregg/Mail_ru__layer_49.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg index 7bcb34d2d..3410a686a 100644 --- a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg +++ b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_7.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg index 6b80ebf4b..85ac44e88 100644 --- a/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg +++ b/infra/nightly-resources/test-files/easteregg/Microsoft_Bing__layer_8.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg b/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg index 2362d7746..66b97e3b5 100644 --- a/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg +++ b/infra/nightly-resources/test-files/easteregg/Pinterest__layer_106.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg b/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg index b60407376..d8b77a0c4 100644 --- a/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/SharePoint__layer_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg index e90800f45..01f443a9d 100644 --- a/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Temu__layer_0.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg b/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg index 384a2e3aa..3ee564c12 100644 --- a/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg +++ b/infra/nightly-resources/test-files/easteregg/The_New_York_Times__layer_3.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg b/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg index a66aa6467..739c0304e 100644 --- a/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg +++ b/infra/nightly-resources/test-files/easteregg/Twitch__layer_27.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg b/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg index 5770a6945..874141244 100644 --- a/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg +++ b/infra/nightly-resources/test-files/easteregg/Twitch__layer_9.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg index 07095fe62..0fed9f6df 100644 --- a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg index c4efcd844..92d4ab715 100644 --- a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg +++ b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_10.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg index d80bebd64..2ffc42a4c 100644 --- a/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg +++ b/infra/nightly-resources/test-files/easteregg/Yahoo_JP__layer_3.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg index 647e64bfa..f2a9c2863 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_25.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg index 3fc9c4618..0ff81e4d2 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_26.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg index 236206d68..375deb9ee 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_27.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg index ae4b3cf7b..22ad346c9 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_28.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg index f0eec5720..e20ba9ad4 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_29.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg b/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg index 46ccc0008..c1f51486e 100644 --- a/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg +++ b/infra/nightly-resources/test-files/easteregg/Yandex__layer_66.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg index b6f6de2db..9dbcd2e64 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_0.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg index 647e64bfa..f2a9c2863 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_29.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg index 3fc9c4618..0ff81e4d2 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_30.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg index 01bb063e4..8e802ffd8 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_31.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg index d53d3d3c0..aed31d2b5 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_32.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg index 46ccc0008..c1f51486e 100644 --- a/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg +++ b/infra/nightly-resources/test-files/easteregg/Zen_News__layer_69.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg index ccd160d46..70f82c4c7 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipLayer.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg index 43c0ea5bc..69a0d8ef1 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg index b89f23951..cc872b362 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_2.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg index 1b9faa7e5..0a4a728b9 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__ClipRect_3.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__Draw.egg b/infra/nightly-resources/test-files/easteregg/unit__Draw.egg index fe9a69b05..a9761430a 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__Draw.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__Draw.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__Save.egg b/infra/nightly-resources/test-files/easteregg/unit__Save.egg index 09ad0bdfd..ea95b79a5 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__Save.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__Save.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg index e2f1af275..728910799 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg index 693dddc8a..b4e60482f 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_2.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg index 5eb33bcea..cc560cdf7 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_3.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg index ced08eb15..06f04d45a 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_4.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg index fb8bf8d93..fc4da55ae 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__SaveLayer_5.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg index d3eeaa637..0f4763566 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg index 45e237c42..c7d22d30b 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__nested_SaveLayer_2.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg index a3b8c10e3..447ae78d7 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_SaveLayer.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg index f519dfb32..8ddfb1964 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_1.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg index 25c0cb92f..fcddca4c6 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_2.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) diff --git a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg index 25c0cb92f..fcddca4c6 100644 --- a/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg +++ b/infra/nightly-resources/test-files/easteregg/unit__noop_Save_3.egg @@ -113,4 +113,4 @@ ;; (repeat 1 (run simp)) (saturate (run opt))) -(multi-extract 0 $test) +(multi-extract 1 $test) From 68493723cbd741a8d7f8537f5d3081937329a209 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 12:13:27 -0800 Subject: [PATCH 11/16] checkpoint --- src/poach.rs | 181 +++++++++++++++++++++------------------------------ 1 file changed, 75 insertions(+), 106 deletions(-) diff --git a/src/poach.rs b/src/poach.rs index 59c52a3e0..174cd8d4f 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -5,7 +5,7 @@ use egglog::ast::{ GenericSchedule, Sexp, SexpParser, }; use egglog::extract::DefaultCost; -use egglog::{CommandOutput, EGraph, TermDag, TimedEgraph}; +use egglog::{CommandOutput, EGraph, TimedEgraph}; use env_logger::Env; use hashbrown::HashMap; use serde::Serialize; @@ -221,121 +221,75 @@ fn collect_extract_outputs(outputs: Vec) -> Vec { .collect() } -#[derive(Clone, Copy)] -enum ExtractComparison { - Exact, - AtLeastAsGood, +#[derive(Serialize)] +struct MineExtractComparison { + initial_term: String, + initial_cost: DefaultCost, + final_term: String, + final_cost: DefaultCost, } -fn compare_extract_pair( - dag1: &TermDag, - cost1: DefaultCost, - term1: usize, - dag2: &TermDag, - cost2: DefaultCost, - term2: usize, - comparison: ExtractComparison, -) -> Result<()> { - match comparison { - ExtractComparison::Exact => { - let initial_term = dag1.to_string(term1); - let final_term = dag2.to_string(term2); - if initial_term != final_term { - anyhow::bail!( - "No match:\ninitial: {} \nfinal: {}", - initial_term, - final_term - ) +fn extract_term_costs_from_output(outputs: &[CommandOutput]) -> Result> { + let mut pairs = Vec::new(); + for output in outputs { + match output { + CommandOutput::ExtractBest(dag, cost, term) => { + pairs.push((dag.to_string(*term), *cost)); } - } - ExtractComparison::AtLeastAsGood => { - if cost2 > cost1 { - anyhow::bail!("Cost got worse: {} -> {}", cost1, cost2) + CommandOutput::ExtractVariants(dag, variants) => { + pairs.extend( + variants + .iter() + .map(|(cost, term)| (dag.to_string(*term), *cost)), + ); + } + CommandOutput::MultiExtractVariants(dag, groups) => { + pairs.extend(groups.iter().flat_map(|group| { + group + .iter() + .map(|(cost, term)| (dag.to_string(*term), *cost)) + })); } + _ => anyhow::bail!("Not an extract output: {output:?}"), } } - Ok(()) + Ok(pairs) } -fn compare_extracts( +fn add_mine_extract_summary( + report: &mut HashMap>, + benchmark: &str, initial_extracts: &[CommandOutput], final_extracts: &[CommandOutput], - comparison: ExtractComparison, ) -> Result<()> { - if initial_extracts.len() != final_extracts.len() { + let initial_pairs = extract_term_costs_from_output(initial_extracts)?; + let final_pairs = extract_term_costs_from_output(final_extracts)?; + if initial_pairs.len() != final_pairs.len() { anyhow::bail!( - "extract lengths mismatch: {} != {}", - initial_extracts.len(), - final_extracts.len() - ) + "extract lengths mismatch for {}: {} != {}", + benchmark, + initial_pairs.len(), + final_pairs.len() + ); } - let pair_groups: Result> = initial_extracts - .iter() - .zip(final_extracts) - .map(|(initial, final_)| match (initial, final_) { - ( - CommandOutput::ExtractBest(dag1, cost1, term1), - CommandOutput::ExtractBest(dag2, cost2, term2), - ) => Ok(vec![((dag1, *cost1, *term1), (dag2, *cost2, *term2))]), - ( - CommandOutput::ExtractVariants(dag1, items1), - CommandOutput::ExtractVariants(dag2, items2), - ) => { - if items1.len() != items2.len() { - anyhow::bail!( - "extract variant lengths mismatch: {} != {}", - items1.len(), - items2.len() - ) - } - Ok(items1 - .iter() - .zip(items2) - .map(|((cost1, term1), (cost2, term2))| { - ((dag1, *cost1, *term1), (dag2, *cost2, *term2)) - }) - .collect()) - } - ( - CommandOutput::MultiExtractVariants(dag1, items1), - CommandOutput::MultiExtractVariants(dag2, items2), - ) => { - if items1.len() != items2.len() { - anyhow::bail!( - "multi-extract lengths mismatch: {} != {}", - items1.len(), - items2.len() - ) - } - - let mut pairs = Vec::new(); - for (terms1, terms2) in items1.iter().zip(items2) { - if terms1.len() != terms2.len() { - anyhow::bail!( - "multi-extract variant lengths mismatch: {} != {}", - terms1.len(), - terms2.len() - ) + report.insert( + benchmark.to_string(), + initial_pairs + .into_iter() + .zip(final_pairs) + .map( + |((initial_term, initial_cost), (final_term, final_cost))| { + MineExtractComparison { + initial_term, + initial_cost, + final_term, + final_cost, } - pairs.extend(terms1.iter().zip(terms2).map( - |((cost1, term1), (cost2, term2))| { - ((dag1, *cost1, *term1), (dag2, *cost2, *term2)) - }, - )); - } - - Ok(pairs) - } - _ => anyhow::bail!("Not an extract: {:?} != {:?}", initial, final_), - }) - .collect(); - - let pairs = pair_groups?.into_iter().flatten(); - for ((dag1, cost1, term1), (dag2, cost2, term2)) in pairs { - compare_extract_pair(dag1, cost1, term1, dag2, cost2, term2, comparison)?; - } - + }, + ) + .collect(), + ); Ok(()) } @@ -554,7 +508,15 @@ fn poach( timed_egraph.run_program_with_timeline(extract_cmds, &extracts)?, ); - compare_extracts(&initial_extracts, &final_extracts, ExtractComparison::Exact)?; + let initial_pairs = extract_term_costs_from_output(&initial_extracts)?; + let final_pairs = extract_term_costs_from_output(&final_extracts)?; + if initial_pairs != final_pairs { + anyhow::bail!( + "extract outputs differ:\ninitial: {:?}\nfinal: {:?}", + initial_pairs, + final_pairs + ); + } timed_egraph.write_timeline(&out_dir.join(format!("{name}-timeline.json")))?; @@ -567,7 +529,8 @@ fn poach( initial_egraph.is_some(), "initial_egraph must be provided via CLI args for Mine run mode" ); - process_files( + let mut mine_extract_report = HashMap::new(); + let result = process_files( &files, out_dir, initial_egraph.as_deref(), @@ -756,17 +719,23 @@ fn poach( let mined_extracts = collect_extract_outputs(mined_outputs); - compare_extracts( + add_mine_extract_summary( + &mut mine_extract_report, + name, &fresh_extracts, &mined_extracts, - ExtractComparison::AtLeastAsGood, )?; timed_egraph.write_timeline(&out_dir.join(format!("{name}-timeline.json")))?; Ok(()) }, - ) + ); + let file = File::create(out_dir.join("mine-extracts.json")) + .expect("failed to create mine-extracts.json"); + serde_json::to_writer_pretty(BufWriter::new(file), &mine_extract_report) + .expect("failed to write mine-extracts.json"); + result } } } From 3ae654e54b2cd49693f048f8314246c429c59b56 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 12:16:02 -0800 Subject: [PATCH 12/16] refactor --- src/poach.rs | 224 +++++++++++++++++++++------------------------------ 1 file changed, 94 insertions(+), 130 deletions(-) diff --git a/src/poach.rs b/src/poach.rs index 174cd8d4f..3f6be0fdb 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -256,41 +256,76 @@ fn extract_term_costs_from_output(outputs: &[CommandOutput]) -> Result>, - benchmark: &str, - initial_extracts: &[CommandOutput], - final_extracts: &[CommandOutput], -) -> Result<()> { - let initial_pairs = extract_term_costs_from_output(initial_extracts)?; - let final_pairs = extract_term_costs_from_output(final_extracts)?; - if initial_pairs.len() != final_pairs.len() { - anyhow::bail!( - "extract lengths mismatch for {}: {} != {}", - benchmark, - initial_pairs.len(), - final_pairs.len() - ); +#[derive(Default)] +struct Namespace { + map: HashMap, +} + +impl Namespace { + fn add(&mut self, name: String) -> String { + if self.map.contains_key(&name) { + panic!("duplicate variable names") + } else { + let namespaced = format!("{name}@@"); + self.map.insert(name.clone(), namespaced.clone()); + namespaced + } } - report.insert( - benchmark.to_string(), - initial_pairs - .into_iter() - .zip(final_pairs) - .map( - |((initial_term, initial_cost), (final_term, final_cost))| { - MineExtractComparison { - initial_term, - initial_cost, - final_term, - final_cost, - } + fn get(&self, name: String) -> String { + self.map.get(&name).unwrap_or(&name).to_string() + } + + fn replace_expr(&self, expr: GenericExpr) -> GenericExpr { + match expr { + GenericExpr::Var(span, n) => GenericExpr::Var(span, self.get(n)), + GenericExpr::Call(span, h, generic_exprs) => GenericExpr::Call( + span, + self.get(h), + generic_exprs + .into_iter() + .map(|x| self.replace_expr(x)) + .collect(), + ), + GenericExpr::Lit(span, literal) => GenericExpr::Lit(span, literal), + } + } + + fn replace_fact(&self, fact: GenericFact) -> GenericFact { + match fact { + GenericFact::Eq(span, e1, e2) => { + GenericFact::Eq(span, self.replace_expr(e1), self.replace_expr(e2)) + } + GenericFact::Fact(e) => GenericFact::Fact(self.replace_expr(e)), + } + } + + fn replace_sched( + &self, + schedule: GenericSchedule, + ) -> GenericSchedule { + match schedule { + GenericSchedule::Saturate(span, sched) => { + GenericSchedule::Saturate(span, Box::new(self.replace_sched(*sched))) + } + GenericSchedule::Repeat(span, n, sched) => { + GenericSchedule::Repeat(span, n, Box::new(self.replace_sched(*sched))) + } + GenericSchedule::Run(span, config) => GenericSchedule::Run( + span, + GenericRunConfig { + ruleset: config.ruleset, + until: config + .until + .map(|facts| facts.into_iter().map(|f| self.replace_fact(f)).collect()), }, - ) - .collect(), - ); - Ok(()) + ), + GenericSchedule::Sequence(span, scheds) => GenericSchedule::Sequence( + span, + scheds.into_iter().map(|x| self.replace_sched(x)).collect(), + ), + } + } } fn poach( @@ -529,7 +564,7 @@ fn poach( initial_egraph.is_some(), "initial_egraph must be provided via CLI args for Mine run mode" ); - let mut mine_extract_report = HashMap::new(); + let mut extract_report: HashMap> = HashMap::new(); let result = process_files( &files, out_dir, @@ -541,96 +576,6 @@ fn poach( collect_extract_outputs(fresh_egraph.run_from_file(egg_file)?); let name = benchmark_name(egg_file); - // Namespace to avoid shadowing - #[derive(Default)] - struct Namespace { - map: HashMap, - } - - impl Namespace { - fn add(&mut self, name: String) -> String { - if self.map.contains_key(&name) { - panic!("duplicate variable names") - } else { - let namespaced = format!("{name}@@"); - self.map.insert(name.clone(), namespaced.clone()); - namespaced - } - } - - fn get(&self, name: String) -> String { - self.map.get(&name).unwrap_or(&name).to_string() - } - - fn replace_expr( - &self, - expr: GenericExpr, - ) -> GenericExpr { - match expr { - GenericExpr::Var(span, n) => GenericExpr::Var(span, self.get(n)), - GenericExpr::Call(span, h, generic_exprs) => GenericExpr::Call( - span, - self.get(h), - generic_exprs - .into_iter() - .map(|x| self.replace_expr(x)) - .collect(), - ), - GenericExpr::Lit(span, literal) => GenericExpr::Lit(span, literal), - } - } - - fn replace_fact( - &self, - fact: GenericFact, - ) -> GenericFact { - match fact { - GenericFact::Eq(span, e1, e2) => GenericFact::Eq( - span, - self.replace_expr(e1), - self.replace_expr(e2), - ), - GenericFact::Fact(e) => GenericFact::Fact(self.replace_expr(e)), - } - } - - fn replace_sched( - &self, - schedule: GenericSchedule, - ) -> GenericSchedule { - match schedule { - GenericSchedule::Saturate(span, sched) => { - GenericSchedule::Saturate( - span, - Box::new(self.replace_sched(*sched)), - ) - } - GenericSchedule::Repeat(span, n, sched) => GenericSchedule::Repeat( - span, - n, - Box::new(self.replace_sched(*sched)), - ), - GenericSchedule::Run(span, config) => GenericSchedule::Run( - span, - GenericRunConfig { - ruleset: config.ruleset, - until: config.until.map(|facts| { - facts - .into_iter() - .map(|f| self.replace_fact(f)) - .collect() - }), - }, - ), - GenericSchedule::Sequence(span, scheds) => { - GenericSchedule::Sequence( - span, - scheds.into_iter().map(|x| self.replace_sched(x)).collect(), - ) - } - } - } - } let mut namespace = Namespace::default(); let program_string = &read_to_string(egg_file)?; @@ -719,12 +664,31 @@ fn poach( let mined_extracts = collect_extract_outputs(mined_outputs); - add_mine_extract_summary( - &mut mine_extract_report, - name, - &fresh_extracts, - &mined_extracts, - )?; + let initial_pairs = extract_term_costs_from_output(&fresh_extracts)?; + let final_pairs = extract_term_costs_from_output(&mined_extracts)?; + if initial_pairs.len() != final_pairs.len() { + anyhow::bail!( + "extract lengths mismatch for {}: {} != {}", + name, + initial_pairs.len(), + final_pairs.len() + ); + } + extract_report.insert( + name.to_string(), + initial_pairs + .into_iter() + .zip(final_pairs) + .map(|((initial_term, initial_cost), (final_term, final_cost))| { + MineExtractComparison { + initial_term, + initial_cost, + final_term, + final_cost, + } + }) + .collect(), + ); timed_egraph.write_timeline(&out_dir.join(format!("{name}-timeline.json")))?; @@ -733,7 +697,7 @@ fn poach( ); let file = File::create(out_dir.join("mine-extracts.json")) .expect("failed to create mine-extracts.json"); - serde_json::to_writer_pretty(BufWriter::new(file), &mine_extract_report) + serde_json::to_writer_pretty(BufWriter::new(file), &extract_report) .expect("failed to write mine-extracts.json"); result } From 37581322b4fdc2550bb13b1e9255efd33c492687 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 12:36:28 -0800 Subject: [PATCH 13/16] frontend plumbing --- infra/nightly-resources/web/data.js | 1 + infra/nightly-resources/web/mined.html | 16 ++++++- infra/nightly-resources/web/mined.js | 56 +++++++++++++++++++++- infra/nightly-resources/web/stylesheet.css | 14 +++++- infra/nightly.py | 14 +++++- 5 files changed, 96 insertions(+), 5 deletions(-) diff --git a/infra/nightly-resources/web/data.js b/infra/nightly-resources/web/data.js index 61578765c..ee97eada7 100644 --- a/infra/nightly-resources/web/data.js +++ b/infra/nightly-resources/web/data.js @@ -59,6 +59,7 @@ function initializeGlobalData() { GLOBAL_DATA.extractChart = null; GLOBAL_DATA.differenceChart = null; GLOBAL_DATA.minedChart = null; + GLOBAL_DATA.mineExtracts = {}; return fetch("data/data.json") .then((response) => response.json()) diff --git a/infra/nightly-resources/web/mined.html b/infra/nightly-resources/web/mined.html index 8dbe0e7fe..1609288de 100644 --- a/infra/nightly-resources/web/mined.html +++ b/infra/nightly-resources/web/mined.html @@ -29,7 +29,21 @@

POACH vs Vanilla Egglog

+ +

Extraction Cost Summary (easteregg)

+ + + + + + + + + + + +
benchmark name# extractsavg initial costavg final costavg cost difference
- \ No newline at end of file + diff --git a/infra/nightly-resources/web/mined.js b/infra/nightly-resources/web/mined.js index 56cccded6..54eb50138 100644 --- a/infra/nightly-resources/web/mined.js +++ b/infra/nightly-resources/web/mined.js @@ -1,5 +1,22 @@ function initialize() { - initializeGlobalData().then(initializeCharts).then(plotMine); + Promise.all([initializeGlobalData(), loadMineExtracts()]) + .then(initializeCharts) + .then(() => { + plotMine(); + renderMineSummaryTable(); + }); +} + +function loadMineExtracts() { + return fetch("data/mine-extracts.json") + .then((response) => response.json()) + .then((data) => { + GLOBAL_DATA.mineExtracts = data; + }) + .catch((error) => { + console.error("Failed to load mine-extracts.json", error); + GLOBAL_DATA.mineExtracts = {}; + }); } function plotMine() { @@ -43,3 +60,40 @@ function plotMine() { GLOBAL_DATA.minedChart.update(); } + +function renderMineSummaryTable() { + const tableBody = document.getElementById("mine-summary-body"); + if (!tableBody) { + return; + } + + const summaries = GLOBAL_DATA.mineExtracts["mine-mega"] || {}; + const rows = Object.entries(summaries) + .sort(([a], [b]) => a.localeCompare(b)) + .map(([benchmarkName, entries]) => { + const extractCount = entries.length; + const initialTotal = entries.reduce( + (sum, entry) => sum + entry.initial_cost, + 0, + ); + const finalTotal = entries.reduce( + (sum, entry) => sum + entry.final_cost, + 0, + ); + const avgInitialCost = + extractCount === 0 ? 0 : initialTotal / extractCount; + const avgFinalCost = extractCount === 0 ? 0 : finalTotal / extractCount; + const avgCostDifference = avgInitialCost - avgFinalCost; + return ` + + ${benchmarkName} + ${extractCount} + ${avgInitialCost} + ${avgFinalCost} + ${avgCostDifference} + + `; + }); + + tableBody.innerHTML = rows.join("\n"); +} diff --git a/infra/nightly-resources/web/stylesheet.css b/infra/nightly-resources/web/stylesheet.css index 4e591be49..1331367e4 100644 --- a/infra/nightly-resources/web/stylesheet.css +++ b/infra/nightly-resources/web/stylesheet.css @@ -77,4 +77,16 @@ body { #on-error { display: none; -} \ No newline at end of file +} + +#mine-summary-table { + border-collapse: collapse; + margin-top: 16px; +} + +#mine-summary-table th, +#mine-summary-table td { + border: 1px solid #ddd; + padding: 6px 10px; + text-align: left; +} diff --git a/infra/nightly.py b/infra/nightly.py index 3e833356a..aa7bc458a 100644 --- a/infra/nightly.py +++ b/infra/nightly.py @@ -4,6 +4,7 @@ from pathlib import Path import transform import glob +import json ############################################################################### # IMPORTANT: @@ -97,6 +98,7 @@ def run_test_experiments(top_dir, tmp_dir, aggregator): cleanup_benchmark_files(timeline_file, tmp_dir / "summary.json", *extra_files) def run_mined_experiments(resource_dir, tmp_dir, aggregator): + mine_extracts = {"mine-indiv": {}, "mine-mega": {}} mega_serialize_file = tmp_dir / "mega-easteregg-serialize.json" mega_timeline_file = tmp_dir / "mega-easteregg-timeline.json" run_poach(resource_dir / "mega-easteregg.egg", tmp_dir, "serialize") @@ -111,14 +113,22 @@ def run_mined_experiments(resource_dir, tmp_dir, aggregator): run_poach(benchmark, tmp_dir, "mine", ["--initial-egraph=" + str(tmp_dir)]) + mine_extract_file = tmp_dir / "mine-extracts.json" + if mine_extract_file.exists(): + with open(mine_extract_file) as file: + mine_extracts["mine-indiv"].update(json.load(file)) add_benchmark_data(aggregator, timeline_file, f"easteregg/mine-indiv/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, serialize_file, tmp_dir / "summary.json") + cleanup_benchmark_files(timeline_file, serialize_file, mine_extract_file, tmp_dir / "summary.json") run_poach(benchmark, tmp_dir, "mine", ["--initial-egraph=" + str(mega_serialize_file)]) + if mine_extract_file.exists(): + with open(mine_extract_file) as file: + mine_extracts["mine-mega"].update(json.load(file)) add_benchmark_data(aggregator, timeline_file, f"easteregg/mine-mega/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, tmp_dir / "summary.json") + cleanup_benchmark_files(timeline_file, mine_extract_file, tmp_dir / "summary.json") + transform.save_json(aggregator.output_dir / "mine-extracts.json", mine_extracts) cleanup_benchmark_files(mega_serialize_file, tmp_dir / "summary.json") if __name__ == "__main__": From 160d6b46cc76e4a15354996bca0086a44712fd06 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 12:53:38 -0800 Subject: [PATCH 14/16] refactor --- infra/nightly.py | 62 ++++++++++++++++++++---------------------------- src/poach.rs | 11 ++------- 2 files changed, 28 insertions(+), 45 deletions(-) diff --git a/infra/nightly.py b/infra/nightly.py index aa7bc458a..b86881aa1 100644 --- a/infra/nightly.py +++ b/infra/nightly.py @@ -45,13 +45,12 @@ def add_benchmark_data(aggregator, timeline_file, benchmark_key): if timeline_file.exists(): aggregator.add_file(timeline_file, benchmark_key) -def remove_file(path): - if path.exists(): - path.unlink() - -def cleanup_benchmark_files(*paths): - for path in paths: - remove_file(path) +def cleanup_benchmark_files(tmp_dir): + for path in tmp_dir.iterdir(): + if path.is_dir(): + shutil.rmtree(path) + else: + path.unlink() def benchmark_files(input_dir, recursive = False): pattern = "**/*.egg" if recursive else "*.egg" @@ -64,7 +63,7 @@ def run_timeline_experiments(resource_dir, tmp_dir, aggregator): timeline_file = tmp_dir / f"{benchmark.stem}-timeline.json" run_poach(benchmark, tmp_dir, "timeline-only") add_benchmark_data(aggregator, timeline_file, f"{suite}/timeline/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, tmp_dir / "summary.json") + cleanup_benchmark_files(tmp_dir) def run_no_io_experiments(resource_dir, tmp_dir, aggregator): no_io_suites = ["easteregg", "herbie-hamming", "herbie-math-rewrite"] # herbie-math-taylor runs out of memory @@ -73,7 +72,7 @@ def run_no_io_experiments(resource_dir, tmp_dir, aggregator): timeline_file = tmp_dir / f"{benchmark.stem}-timeline.json" run_poach(benchmark, tmp_dir, "no-io") add_benchmark_data(aggregator, timeline_file, f"{suite}/no-io/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, tmp_dir / "summary.json") + cleanup_benchmark_files(tmp_dir) def run_test_experiments(top_dir, tmp_dir, aggregator): test_modes = [ @@ -88,48 +87,39 @@ def run_test_experiments(top_dir, tmp_dir, aggregator): timeline_file = tmp_dir / f"{benchmark.stem}-timeline.json" run_poach(benchmark, tmp_dir, run_mode) add_benchmark_data(aggregator, timeline_file, f"tests/{benchmark_name}/{benchmark.stem}/timeline.json") - extra_files = { - "sequential-round-trip": [tmp_dir / f"{benchmark.stem}-serialize1.json"], - "old-serialize": [ - tmp_dir / f"{benchmark.stem}-serialize-poach.json", - tmp_dir / f"{benchmark.stem}-serialize-old.json", - ], - }.get(run_mode, []) - cleanup_benchmark_files(timeline_file, tmp_dir / "summary.json", *extra_files) + cleanup_benchmark_files(tmp_dir) def run_mined_experiments(resource_dir, tmp_dir, aggregator): mine_extracts = {"mine-indiv": {}, "mine-mega": {}} - mega_serialize_file = tmp_dir / "mega-easteregg-serialize.json" - mega_timeline_file = tmp_dir / "mega-easteregg-timeline.json" - run_poach(resource_dir / "mega-easteregg.egg", tmp_dir, "serialize") - add_benchmark_data(aggregator, mega_timeline_file, "easteregg/serialize/mega-easteregg/timeline.json") - cleanup_benchmark_files(mega_timeline_file, tmp_dir / "summary.json") + mega_seed_dir = tmp_dir.parent / "cache" + mega_seed_dir.mkdir(exist_ok = True) + mega_serialize_file = mega_seed_dir / "mega-easteregg-serialize.json" + mega_timeline_file = mega_seed_dir / "mega-easteregg-timeline.json" + run_poach(resource_dir / "mega-easteregg.egg", mega_seed_dir, "serialize") + for benchmark in benchmark_files(resource_dir / "test-files" / "easteregg"): timeline_file = tmp_dir / f"{benchmark.stem}-timeline.json" - serialize_file = tmp_dir / f"{benchmark.stem}-serialize.json" + mine_extract_file = tmp_dir / "mine-extracts.json" + + # First, make sure we have a serialized e-graph for the benchmark run_poach(benchmark, tmp_dir, "serialize") - add_benchmark_data(aggregator, timeline_file, f"easteregg/serialize/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, tmp_dir / "summary.json") + # Mine Individual: Run the file starting from the serialized e-graph for the benchmark run_poach(benchmark, tmp_dir, "mine", - ["--initial-egraph=" + str(tmp_dir)]) - mine_extract_file = tmp_dir / "mine-extracts.json" - if mine_extract_file.exists(): - with open(mine_extract_file) as file: - mine_extracts["mine-indiv"].update(json.load(file)) + ["--initial-egraph=" + str(tmp_dir / f"{benchmark.stem}-serialize.json")]) + with open(mine_extract_file) as file: + mine_extracts["mine-indiv"].update(json.load(file)) add_benchmark_data(aggregator, timeline_file, f"easteregg/mine-indiv/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, serialize_file, mine_extract_file, tmp_dir / "summary.json") + # Mine Mega: Run the file starting from the mega e-graph for all of easteregg run_poach(benchmark, tmp_dir, "mine", ["--initial-egraph=" + str(mega_serialize_file)]) - if mine_extract_file.exists(): - with open(mine_extract_file) as file: - mine_extracts["mine-mega"].update(json.load(file)) + with open(mine_extract_file) as file: + mine_extracts["mine-mega"].update(json.load(file)) add_benchmark_data(aggregator, timeline_file, f"easteregg/mine-mega/{benchmark.stem}/timeline.json") - cleanup_benchmark_files(timeline_file, mine_extract_file, tmp_dir / "summary.json") + cleanup_benchmark_files(tmp_dir) transform.save_json(aggregator.output_dir / "mine-extracts.json", mine_extracts) - cleanup_benchmark_files(mega_serialize_file, tmp_dir / "summary.json") if __name__ == "__main__": print("Beginning poach nightly") diff --git a/src/poach.rs b/src/poach.rs index 3f6be0fdb..5e1f15967 100644 --- a/src/poach.rs +++ b/src/poach.rs @@ -102,10 +102,7 @@ struct Args { output_dir: PathBuf, run_mode: RunMode, - // If this is a single file, it will be used as the initial egraph for - // every file in the input_path directory - // If it is a directory, we will look for a file matching the name of each - // file in the input_path directory + // Path to an initial serialized egraph file to load before running each benchmark. #[arg(long)] initial_egraph: Option, } @@ -176,11 +173,7 @@ where .unwrap_or("unknown"); let mut timed_egraph = if let Some(path) = initial_egraph { - if path.is_file() { - TimedEgraph::new_from_file(path) - } else { - TimedEgraph::new_from_file(&path.join(format!("{name}-serialize.json"))) - } + TimedEgraph::new_from_file(path) } else { TimedEgraph::new() }; From 698c79cc414dc2a9c7aef046a4463fd674b9cba6 Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 13:25:22 -0800 Subject: [PATCH 15/16] unify chart and table data --- infra/nightly-resources/web/data.js | 2 +- infra/nightly-resources/web/mined.js | 68 ++++++++++++++++------------ infra/nightly.py | 28 ++++++++++-- 3 files changed, 64 insertions(+), 34 deletions(-) diff --git a/infra/nightly-resources/web/data.js b/infra/nightly-resources/web/data.js index ee97eada7..fa023d52f 100644 --- a/infra/nightly-resources/web/data.js +++ b/infra/nightly-resources/web/data.js @@ -59,7 +59,7 @@ function initializeGlobalData() { GLOBAL_DATA.extractChart = null; GLOBAL_DATA.differenceChart = null; GLOBAL_DATA.minedChart = null; - GLOBAL_DATA.mineExtracts = {}; + GLOBAL_DATA.mineData = {}; return fetch("data/data.json") .then((response) => response.json()) diff --git a/infra/nightly-resources/web/mined.js b/infra/nightly-resources/web/mined.js index 54eb50138..fe5ff2f88 100644 --- a/infra/nightly-resources/web/mined.js +++ b/infra/nightly-resources/web/mined.js @@ -1,5 +1,5 @@ function initialize() { - Promise.all([initializeGlobalData(), loadMineExtracts()]) + Promise.all([initializeGlobalData(), loadMineData()]) .then(initializeCharts) .then(() => { plotMine(); @@ -7,53 +7,48 @@ function initialize() { }); } -function loadMineExtracts() { - return fetch("data/mine-extracts.json") +function loadMineData() { + return fetch("data/mine-data.json") .then((response) => response.json()) .then((data) => { - GLOBAL_DATA.mineExtracts = data; + GLOBAL_DATA.mineData = data; }) .catch((error) => { - console.error("Failed to load mine-extracts.json", error); - GLOBAL_DATA.mineExtracts = {}; + console.error("Failed to load mine-data.json", error); + GLOBAL_DATA.mineData = {}; }); } function plotMine() { - const mega_mined = GLOBAL_DATA.data.easteregg["mine-mega"]; - const indiv_mined = GLOBAL_DATA.data.easteregg["mine-indiv"]; - const baseline = GLOBAL_DATA.data.easteregg.timeline; - if (GLOBAL_DATA.minedChart === null) { return; } - const benchmarks = Object.keys(baseline); - - const data = {}; - - benchmarks.forEach((b) => { - data[b] = {}; - - data[b].baseline = benchmarkTotalTime(baseline[b]); - data[b].mega_mined = benchmarkTotalTime(mega_mined[b]); - data[b].indiv_mined = benchmarkTotalTime(indiv_mined[b]); - }); + const benchmarks = Object.keys(GLOBAL_DATA.mineData).sort(); GLOBAL_DATA.minedChart.data = { labels: benchmarks, datasets: [ { label: "baseline", - data: Object.values(data).map((d) => d.baseline), + data: benchmarks.map((b) => + runtimeMsFromTimelines( + GLOBAL_DATA.mineData[b].baseline_timeline, + new Set(["serialize", "write"]), + ), + ), }, { label: "mined (mega)", - data: Object.values(data).map((d) => d.mega_mined), + data: benchmarks.map((b) => + runtimeMsFromTimelines(GLOBAL_DATA.mineData[b].mine_mega_timeline), + ), }, { label: "mined (indiv)", - data: Object.values(data).map((d) => d.indiv_mined), + data: benchmarks.map((b) => + runtimeMsFromTimelines(GLOBAL_DATA.mineData[b].mine_indiv_timeline), + ), }, ], }; @@ -67,10 +62,10 @@ function renderMineSummaryTable() { return; } - const summaries = GLOBAL_DATA.mineExtracts["mine-mega"] || {}; - const rows = Object.entries(summaries) + const rows = Object.entries(GLOBAL_DATA.mineData) .sort(([a], [b]) => a.localeCompare(b)) - .map(([benchmarkName, entries]) => { + .map(([benchmarkName, data]) => { + const entries = data.mine_mega_extracts || []; const extractCount = entries.length; const initialTotal = entries.reduce( (sum, entry) => sum + entry.initial_cost, @@ -83,17 +78,32 @@ function renderMineSummaryTable() { const avgInitialCost = extractCount === 0 ? 0 : initialTotal / extractCount; const avgFinalCost = extractCount === 0 ? 0 : finalTotal / extractCount; - const avgCostDifference = avgInitialCost - avgFinalCost; return ` ${benchmarkName} ${extractCount} ${avgInitialCost} ${avgFinalCost} - ${avgCostDifference} + ${avgInitialCost - avgFinalCost} `; }); tableBody.innerHTML = rows.join("\n"); } + +function runtimeMsFromTimelines(timelines, ignoredCmdTypes = new Set()) { + return ( + aggregate( + (timelines || []).flatMap((timeline) => + (timeline.events || []) + .map((timeMicros, i) => { + const cmdType = getCmdType(getCmd((timeline.sexps || [])[i] || "")); + return ignoredCmdTypes.has(cmdType) ? null : timeMicros; + }) + .filter((timeMicros) => timeMicros !== null), + ), + "total", + ) / 1000 + ); +} diff --git a/infra/nightly.py b/infra/nightly.py index b86881aa1..675ec8ec2 100644 --- a/infra/nightly.py +++ b/infra/nightly.py @@ -90,7 +90,8 @@ def run_test_experiments(top_dir, tmp_dir, aggregator): cleanup_benchmark_files(tmp_dir) def run_mined_experiments(resource_dir, tmp_dir, aggregator): - mine_extracts = {"mine-indiv": {}, "mine-mega": {}} + mine_data = {} + mined_timeline_aggregator = transform.TimelineAggregator(tmp_dir) mega_seed_dir = tmp_dir.parent / "cache" mega_seed_dir.mkdir(exist_ok = True) mega_serialize_file = mega_seed_dir / "mega-easteregg-serialize.json" @@ -98,28 +99,47 @@ def run_mined_experiments(resource_dir, tmp_dir, aggregator): run_poach(resource_dir / "mega-easteregg.egg", mega_seed_dir, "serialize") for benchmark in benchmark_files(resource_dir / "test-files" / "easteregg"): + benchmark_name = benchmark.stem timeline_file = tmp_dir / f"{benchmark.stem}-timeline.json" mine_extract_file = tmp_dir / "mine-extracts.json" + baseline_key = f"{benchmark_name}/baseline" + mine_indiv_key = f"{benchmark_name}/mine-indiv" + mine_mega_key = f"{benchmark_name}/mine-mega" # First, make sure we have a serialized e-graph for the benchmark run_poach(benchmark, tmp_dir, "serialize") + mined_timeline_aggregator.add_file(timeline_file, baseline_key) + baseline_timeline = mined_timeline_aggregator.aggregated[baseline_key] + add_benchmark_data(aggregator, timeline_file, f"easteregg/serialize/{benchmark.stem}/timeline.json") # Mine Individual: Run the file starting from the serialized e-graph for the benchmark run_poach(benchmark, tmp_dir, "mine", ["--initial-egraph=" + str(tmp_dir / f"{benchmark.stem}-serialize.json")]) + mined_timeline_aggregator.add_file(timeline_file, mine_indiv_key) + mine_indiv_timeline = mined_timeline_aggregator.aggregated[mine_indiv_key] with open(mine_extract_file) as file: - mine_extracts["mine-indiv"].update(json.load(file)) + mine_indiv_extracts = json.load(file)[benchmark_name] add_benchmark_data(aggregator, timeline_file, f"easteregg/mine-indiv/{benchmark.stem}/timeline.json") # Mine Mega: Run the file starting from the mega e-graph for all of easteregg run_poach(benchmark, tmp_dir, "mine", ["--initial-egraph=" + str(mega_serialize_file)]) + mined_timeline_aggregator.add_file(timeline_file, mine_mega_key) + mine_mega_timeline = mined_timeline_aggregator.aggregated[mine_mega_key] with open(mine_extract_file) as file: - mine_extracts["mine-mega"].update(json.load(file)) + mine_mega_extracts = json.load(file)[benchmark_name] add_benchmark_data(aggregator, timeline_file, f"easteregg/mine-mega/{benchmark.stem}/timeline.json") + + mine_data[benchmark_name] = { + "baseline_timeline": baseline_timeline, + "mine_indiv_timeline": mine_indiv_timeline, + "mine_mega_timeline": mine_mega_timeline, + "mine_indiv_extracts": mine_indiv_extracts, + "mine_mega_extracts": mine_mega_extracts, + } cleanup_benchmark_files(tmp_dir) - transform.save_json(aggregator.output_dir / "mine-extracts.json", mine_extracts) + transform.save_json(aggregator.output_dir / "mine-data.json", mine_data) if __name__ == "__main__": print("Beginning poach nightly") From a90e4333429ff1fa679cebb28dadf9971f22d94e Mon Sep 17 00:00:00 2001 From: Anjali Pal Date: Wed, 4 Mar 2026 14:05:17 -0800 Subject: [PATCH 16/16] mine chart update --- infra/nightly-resources/web/chart.js | 2 +- infra/nightly-resources/web/data.js | 13 +--- infra/nightly-resources/web/mined.js | 92 ++++++++++++++++++---------- infra/nightly-resources/web/util.js | 16 +++++ 4 files changed, 78 insertions(+), 45 deletions(-) diff --git a/infra/nightly-resources/web/chart.js b/infra/nightly-resources/web/chart.js index 466b69975..c96d8426e 100644 --- a/infra/nightly-resources/web/chart.js +++ b/infra/nightly-resources/web/chart.js @@ -197,7 +197,7 @@ function initializeCharts() { }, }, y: { - stacked: false, + stacked: true, title: { display: true, text: "Time (ms)", diff --git a/infra/nightly-resources/web/data.js b/infra/nightly-resources/web/data.js index fa023d52f..c6a711e95 100644 --- a/infra/nightly-resources/web/data.js +++ b/infra/nightly-resources/web/data.js @@ -87,22 +87,11 @@ function processRawData(blob) { if (!GLOBAL_DATA.data[suite]) { return; } - // Aggregate commands across all timelines const times = { benchmark, - ...Object.fromEntries(CMDS.map((cmd) => [cmd, []])), - other: [], + ...aggregateTimelinesByCommand(timelines), }; - timelines.forEach(({ events, sexps }) => { - events.forEach((time_micros, idx) => { - const cmd = getCmd(sexps[idx]); - - // Group times by command type - times[getCmdType(cmd)].push(time_micros / 1000); // we measure microseconds, but for charts, it's nicer to show in ms - }); - }); - GLOBAL_DATA.data[suite][runMode][benchmark] = times; }); } diff --git a/infra/nightly-resources/web/mined.js b/infra/nightly-resources/web/mined.js index fe5ff2f88..b0920dbd2 100644 --- a/infra/nightly-resources/web/mined.js +++ b/infra/nightly-resources/web/mined.js @@ -25,30 +25,75 @@ function plotMine() { } const benchmarks = Object.keys(GLOBAL_DATA.mineData).sort(); + const byBenchmark = Object.fromEntries( + benchmarks.map((b) => { + const baseline = aggregateTimelinesByCommand( + GLOBAL_DATA.mineData[b].baseline_timeline, + ); + const mega = aggregateTimelinesByCommand( + GLOBAL_DATA.mineData[b].mine_mega_timeline, + ); + const indiv = aggregateTimelinesByCommand( + GLOBAL_DATA.mineData[b].mine_indiv_timeline, + ); + return [ + b, + { + baseline: { + run: aggregate(baseline.run, "total"), + extract: aggregate(baseline.extract, "total"), + }, + mega: { + run: aggregate(mega.run, "total"), + extract: aggregate(mega.extract, "total"), + }, + indiv: { + run: aggregate(indiv.run, "total"), + extract: aggregate(indiv.extract, "total"), + }, + }, + ]; + }), + ); GLOBAL_DATA.minedChart.data = { labels: benchmarks, datasets: [ { - label: "baseline", - data: benchmarks.map((b) => - runtimeMsFromTimelines( - GLOBAL_DATA.mineData[b].baseline_timeline, - new Set(["serialize", "write"]), - ), - ), + label: "baseline: run", + stack: "baseline", + backgroundColor: "#1e3a8a", + data: benchmarks.map((b) => byBenchmark[b].baseline.run), }, { - label: "mined (mega)", - data: benchmarks.map((b) => - runtimeMsFromTimelines(GLOBAL_DATA.mineData[b].mine_mega_timeline), - ), + label: "baseline: extract", + stack: "baseline", + backgroundColor: "#60a5fa", + data: benchmarks.map((b) => byBenchmark[b].baseline.extract), }, { - label: "mined (indiv)", - data: benchmarks.map((b) => - runtimeMsFromTimelines(GLOBAL_DATA.mineData[b].mine_indiv_timeline), - ), + label: "mined (mega): run", + stack: "mega", + backgroundColor: "#b91c1c", + data: benchmarks.map((b) => byBenchmark[b].mega.run), + }, + { + label: "mined (mega): extract", + stack: "mega", + backgroundColor: "#f472b6", + data: benchmarks.map((b) => byBenchmark[b].mega.extract), + }, + { + label: "mined (indiv): run", + stack: "indiv", + backgroundColor: "#166534", + data: benchmarks.map((b) => byBenchmark[b].indiv.run), + }, + { + label: "mined (indiv): extract", + stack: "indiv", + backgroundColor: "#86efac", + data: benchmarks.map((b) => byBenchmark[b].indiv.extract), }, ], }; @@ -84,26 +129,9 @@ function renderMineSummaryTable() { ${extractCount} ${avgInitialCost} ${avgFinalCost} - ${avgInitialCost - avgFinalCost} `; }); tableBody.innerHTML = rows.join("\n"); } - -function runtimeMsFromTimelines(timelines, ignoredCmdTypes = new Set()) { - return ( - aggregate( - (timelines || []).flatMap((timeline) => - (timeline.events || []) - .map((timeMicros, i) => { - const cmdType = getCmdType(getCmd((timeline.sexps || [])[i] || "")); - return ignoredCmdTypes.has(cmdType) ? null : timeMicros; - }) - .filter((timeMicros) => timeMicros !== null), - ), - "total", - ) / 1000 - ); -} diff --git a/infra/nightly-resources/web/util.js b/infra/nightly-resources/web/util.js index 13fc415af..39022a86d 100644 --- a/infra/nightly-resources/web/util.js +++ b/infra/nightly-resources/web/util.js @@ -53,3 +53,19 @@ function getCmdType(cmd) { return "other"; } } + +function aggregateTimelinesByCommand(timelines) { + const times = { + ...Object.fromEntries(CMDS.map((cmd) => [cmd, []])), + other: [], + }; + + (timelines || []).forEach(({ events, sexps }) => { + (events || []).forEach((timeMicros, idx) => { + const cmd = getCmd((sexps || [])[idx] || ""); + times[getCmdType(cmd)].push(timeMicros / 1000); + }); + }); + + return times; +}