Static site generator + my presonnal website written in rust for some reason.

Initial commit

+1
.gitignore
···
+
/target
+1898
Cargo.lock
···
+
# This file is automatically @generated by Cargo.
+
# It is not intended for manual editing.
+
version = 3
+
+
[[package]]
+
name = "addr2line"
+
version = "0.22.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
+
dependencies = [
+
"gimli",
+
]
+
+
[[package]]
+
name = "adler"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+
+
[[package]]
+
name = "adler2"
+
version = "2.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
+
+
[[package]]
+
name = "aho-corasick"
+
version = "1.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "anstream"
+
version = "0.6.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
+
dependencies = [
+
"anstyle",
+
"anstyle-parse",
+
"anstyle-query",
+
"anstyle-wincon",
+
"colorchoice",
+
"is_terminal_polyfill",
+
"utf8parse",
+
]
+
+
[[package]]
+
name = "anstyle"
+
version = "1.0.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
+
+
[[package]]
+
name = "anstyle-parse"
+
version = "0.2.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
+
dependencies = [
+
"utf8parse",
+
]
+
+
[[package]]
+
name = "anstyle-query"
+
version = "1.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
+
dependencies = [
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "anstyle-wincon"
+
version = "3.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
+
dependencies = [
+
"anstyle",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "askama"
+
version = "0.12.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
+
dependencies = [
+
"askama_derive",
+
"askama_escape",
+
"humansize",
+
"num-traits",
+
"percent-encoding",
+
]
+
+
[[package]]
+
name = "askama_axum"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a41603f7cdbf5ac4af60760f17253eb6adf6ec5b6f14a7ed830cf687d375f163"
+
dependencies = [
+
"askama",
+
"axum-core",
+
"http",
+
]
+
+
[[package]]
+
name = "askama_derive"
+
version = "0.12.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"
+
dependencies = [
+
"askama_parser",
+
"basic-toml",
+
"mime",
+
"mime_guess",
+
"proc-macro2",
+
"quote",
+
"serde",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "askama_escape"
+
version = "0.10.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
+
+
[[package]]
+
name = "askama_parser"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"
+
dependencies = [
+
"nom",
+
]
+
+
[[package]]
+
name = "async-trait"
+
version = "0.1.81"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "autocfg"
+
version = "1.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
+
+
[[package]]
+
name = "axum"
+
version = "0.7.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf"
+
dependencies = [
+
"async-trait",
+
"axum-core",
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"http-body-util",
+
"hyper",
+
"hyper-util",
+
"itoa",
+
"matchit",
+
"memchr",
+
"mime",
+
"percent-encoding",
+
"pin-project-lite",
+
"rustversion",
+
"serde",
+
"serde_json",
+
"serde_path_to_error",
+
"serde_urlencoded",
+
"sync_wrapper 1.0.1",
+
"tokio",
+
"tower",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
]
+
+
[[package]]
+
name = "axum-core"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3"
+
dependencies = [
+
"async-trait",
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"http-body-util",
+
"mime",
+
"pin-project-lite",
+
"rustversion",
+
"sync_wrapper 0.1.2",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
]
+
+
[[package]]
+
name = "backtrace"
+
version = "0.3.73"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
+
dependencies = [
+
"addr2line",
+
"cc",
+
"cfg-if",
+
"libc",
+
"miniz_oxide 0.7.4",
+
"object",
+
"rustc-demangle",
+
]
+
+
[[package]]
+
name = "base64"
+
version = "0.22.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
+
+
[[package]]
+
name = "basic-toml"
+
version = "0.1.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "bincode"
+
version = "1.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "bit-set"
+
version = "0.5.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
+
dependencies = [
+
"bit-vec",
+
]
+
+
[[package]]
+
name = "bit-vec"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
+
+
[[package]]
+
name = "bitflags"
+
version = "1.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+
+
[[package]]
+
name = "bitflags"
+
version = "2.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
+
+
[[package]]
+
name = "bumpalo"
+
version = "3.16.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
+
+
[[package]]
+
name = "byteorder"
+
version = "1.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+
+
[[package]]
+
name = "bytes"
+
version = "1.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
+
+
[[package]]
+
name = "caseless"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f"
+
dependencies = [
+
"regex",
+
"unicode-normalization",
+
]
+
+
[[package]]
+
name = "cc"
+
version = "1.1.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
+
dependencies = [
+
"shlex",
+
]
+
+
[[package]]
+
name = "cfg-if"
+
version = "1.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
+
+
[[package]]
+
name = "clap"
+
version = "4.5.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
+
dependencies = [
+
"clap_builder",
+
"clap_derive",
+
]
+
+
[[package]]
+
name = "clap_builder"
+
version = "4.5.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
+
dependencies = [
+
"anstream",
+
"anstyle",
+
"clap_lex",
+
"strsim",
+
"terminal_size",
+
]
+
+
[[package]]
+
name = "clap_derive"
+
version = "4.5.13"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
+
dependencies = [
+
"heck",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "clap_lex"
+
version = "0.7.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
+
+
[[package]]
+
name = "colorchoice"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
+
+
[[package]]
+
name = "comrak"
+
version = "0.27.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2d061c6d53fe98c25efda0d91b7f6b4b4020a51dad78a3eac5028710aa26f8e7"
+
dependencies = [
+
"caseless",
+
"clap",
+
"derive_builder",
+
"entities",
+
"memchr",
+
"once_cell",
+
"regex",
+
"shell-words",
+
"slug",
+
"syntect",
+
"typed-arena",
+
"unicode_categories",
+
"xdg",
+
]
+
+
[[package]]
+
name = "crc32fast"
+
version = "1.4.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
+
dependencies = [
+
"cfg-if",
+
]
+
+
[[package]]
+
name = "darling"
+
version = "0.20.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
+
dependencies = [
+
"darling_core",
+
"darling_macro",
+
]
+
+
[[package]]
+
name = "darling_core"
+
version = "0.20.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
+
dependencies = [
+
"fnv",
+
"ident_case",
+
"proc-macro2",
+
"quote",
+
"strsim",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "darling_macro"
+
version = "0.20.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
+
dependencies = [
+
"darling_core",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "deranged"
+
version = "0.3.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
+
dependencies = [
+
"powerfmt",
+
]
+
+
[[package]]
+
name = "derive_builder"
+
version = "0.20.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
+
dependencies = [
+
"derive_builder_macro",
+
]
+
+
[[package]]
+
name = "derive_builder_core"
+
version = "0.20.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
+
dependencies = [
+
"darling",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "derive_builder_macro"
+
version = "0.20.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
+
dependencies = [
+
"derive_builder_core",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "deunicode"
+
version = "1.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
+
+
[[package]]
+
name = "entities"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
+
+
[[package]]
+
name = "enum-iterator"
+
version = "0.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c79a6321a1197d7730510c7e3f6cb80432dfefecb32426de8cea0aa19b4bb8d7"
+
dependencies = [
+
"enum-iterator-derive",
+
]
+
+
[[package]]
+
name = "enum-iterator-derive"
+
version = "0.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e94aa31f7c0dc764f57896dc615ddd76fc13b0d5dca7eb6cc5e018a5a09ec06"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "equivalent"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
+
+
[[package]]
+
name = "errno"
+
version = "0.3.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
+
dependencies = [
+
"libc",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "fancy-regex"
+
version = "0.11.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
+
dependencies = [
+
"bit-set",
+
"regex",
+
]
+
+
[[package]]
+
name = "flate2"
+
version = "1.0.33"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253"
+
dependencies = [
+
"crc32fast",
+
"miniz_oxide 0.8.0",
+
]
+
+
[[package]]
+
name = "fnv"
+
version = "1.0.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+
[[package]]
+
name = "form_urlencoded"
+
version = "1.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
+
dependencies = [
+
"percent-encoding",
+
]
+
+
[[package]]
+
name = "futures-channel"
+
version = "0.3.30"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
+
dependencies = [
+
"futures-core",
+
]
+
+
[[package]]
+
name = "futures-core"
+
version = "0.3.30"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
+
+
[[package]]
+
name = "futures-sink"
+
version = "0.3.30"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
+
+
[[package]]
+
name = "futures-task"
+
version = "0.3.30"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
+
+
[[package]]
+
name = "futures-util"
+
version = "0.3.30"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
+
dependencies = [
+
"futures-core",
+
"futures-task",
+
"pin-project-lite",
+
"pin-utils",
+
]
+
+
[[package]]
+
name = "getrandom"
+
version = "0.2.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
+
dependencies = [
+
"cfg-if",
+
"libc",
+
"wasi",
+
]
+
+
[[package]]
+
name = "getset"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9"
+
dependencies = [
+
"proc-macro-error",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "gimli"
+
version = "0.29.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
+
+
[[package]]
+
name = "hashbrown"
+
version = "0.12.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
+
+
[[package]]
+
name = "hashbrown"
+
version = "0.14.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
+
+
[[package]]
+
name = "heck"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
+
+
[[package]]
+
name = "hermit-abi"
+
version = "0.3.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
+
+
[[package]]
+
name = "http"
+
version = "1.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
+
dependencies = [
+
"bytes",
+
"fnv",
+
"itoa",
+
]
+
+
[[package]]
+
name = "http-body"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
+
dependencies = [
+
"bytes",
+
"http",
+
]
+
+
[[package]]
+
name = "http-body-util"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
+
dependencies = [
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"pin-project-lite",
+
]
+
+
[[package]]
+
name = "http-range-header"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "08a397c49fec283e3d6211adbe480be95aae5f304cfb923e9970e08956d5168a"
+
+
[[package]]
+
name = "httparse"
+
version = "1.9.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
+
+
[[package]]
+
name = "httpdate"
+
version = "1.0.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
+
+
[[package]]
+
name = "humansize"
+
version = "2.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
+
dependencies = [
+
"libm",
+
]
+
+
[[package]]
+
name = "hyper"
+
version = "1.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
+
dependencies = [
+
"bytes",
+
"futures-channel",
+
"futures-util",
+
"http",
+
"http-body",
+
"httparse",
+
"httpdate",
+
"itoa",
+
"pin-project-lite",
+
"smallvec",
+
"tokio",
+
]
+
+
[[package]]
+
name = "hyper-util"
+
version = "0.1.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9"
+
dependencies = [
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"hyper",
+
"pin-project-lite",
+
"tokio",
+
]
+
+
[[package]]
+
name = "ident_case"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
+
+
[[package]]
+
name = "indexmap"
+
version = "1.9.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
+
dependencies = [
+
"autocfg",
+
"hashbrown 0.12.3",
+
]
+
+
[[package]]
+
name = "indexmap"
+
version = "2.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
+
dependencies = [
+
"equivalent",
+
"hashbrown 0.14.5",
+
]
+
+
[[package]]
+
name = "is_terminal_polyfill"
+
version = "1.70.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
+
+
[[package]]
+
name = "itoa"
+
version = "1.0.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
+
+
[[package]]
+
name = "lazy_static"
+
version = "1.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
+
+
[[package]]
+
name = "libc"
+
version = "0.2.158"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
+
+
[[package]]
+
name = "libm"
+
version = "0.2.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
+
+
[[package]]
+
name = "linked-hash-map"
+
version = "0.5.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
+
+
[[package]]
+
name = "linux-raw-sys"
+
version = "0.4.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
+
+
[[package]]
+
name = "log"
+
version = "0.4.22"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
+
+
[[package]]
+
name = "markdown-parser"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cf523952b36c9ad1a650d608d38187f12f4ad1b9e402a8c9df79743989289def"
+
dependencies = [
+
"enum-iterator",
+
"enum-iterator-derive",
+
"getset",
+
"lazy_static",
+
"quick-error",
+
"regex",
+
"serde",
+
"serde_json",
+
"serde_yaml 0.8.26",
+
"toml",
+
]
+
+
[[package]]
+
name = "matchit"
+
version = "0.7.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
+
+
[[package]]
+
name = "memchr"
+
version = "2.7.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
+
+
[[package]]
+
name = "mime"
+
version = "0.3.17"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
+
+
[[package]]
+
name = "mime_guess"
+
version = "2.0.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
+
dependencies = [
+
"mime",
+
"unicase",
+
]
+
+
[[package]]
+
name = "minimal-lexical"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
+
+
[[package]]
+
name = "miniz_oxide"
+
version = "0.7.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
+
dependencies = [
+
"adler",
+
]
+
+
[[package]]
+
name = "miniz_oxide"
+
version = "0.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
+
dependencies = [
+
"adler2",
+
]
+
+
[[package]]
+
name = "mio"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
+
dependencies = [
+
"hermit-abi",
+
"libc",
+
"wasi",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "nom"
+
version = "7.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
+
dependencies = [
+
"memchr",
+
"minimal-lexical",
+
]
+
+
[[package]]
+
name = "num-conv"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
+
+
[[package]]
+
name = "num-traits"
+
version = "0.2.19"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
+
dependencies = [
+
"autocfg",
+
]
+
+
[[package]]
+
name = "object"
+
version = "0.36.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "once_cell"
+
version = "1.19.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
+
+
[[package]]
+
name = "onig"
+
version = "6.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
+
dependencies = [
+
"bitflags 1.3.2",
+
"libc",
+
"once_cell",
+
"onig_sys",
+
]
+
+
[[package]]
+
name = "onig_sys"
+
version = "69.8.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
+
dependencies = [
+
"cc",
+
"pkg-config",
+
]
+
+
[[package]]
+
name = "percent-encoding"
+
version = "2.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
+
+
[[package]]
+
name = "pin-project"
+
version = "1.1.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
+
dependencies = [
+
"pin-project-internal",
+
]
+
+
[[package]]
+
name = "pin-project-internal"
+
version = "1.1.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "pin-project-lite"
+
version = "0.2.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
+
+
[[package]]
+
name = "pin-utils"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+
+
[[package]]
+
name = "pkg-config"
+
version = "0.3.30"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
+
+
[[package]]
+
name = "plist"
+
version = "1.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
+
dependencies = [
+
"base64",
+
"indexmap 2.4.0",
+
"quick-xml",
+
"serde",
+
"time",
+
]
+
+
[[package]]
+
name = "powerfmt"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
+
+
[[package]]
+
name = "ppv-lite86"
+
version = "0.2.20"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
+
dependencies = [
+
"zerocopy",
+
]
+
+
[[package]]
+
name = "proc-macro-error"
+
version = "1.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
+
dependencies = [
+
"proc-macro-error-attr",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
"version_check",
+
]
+
+
[[package]]
+
name = "proc-macro-error-attr"
+
version = "1.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"version_check",
+
]
+
+
[[package]]
+
name = "proc-macro2"
+
version = "1.0.86"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
+
dependencies = [
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "quick-error"
+
version = "2.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
+
+
[[package]]
+
name = "quick-xml"
+
version = "0.32.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "quote"
+
version = "1.0.37"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
+
dependencies = [
+
"proc-macro2",
+
]
+
+
[[package]]
+
name = "rand"
+
version = "0.8.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+
dependencies = [
+
"libc",
+
"rand_chacha",
+
"rand_core",
+
]
+
+
[[package]]
+
name = "rand_chacha"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+
dependencies = [
+
"ppv-lite86",
+
"rand_core",
+
]
+
+
[[package]]
+
name = "rand_core"
+
version = "0.6.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
+
dependencies = [
+
"getrandom",
+
]
+
+
[[package]]
+
name = "regex"
+
version = "1.10.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
+
dependencies = [
+
"aho-corasick",
+
"memchr",
+
"regex-automata",
+
"regex-syntax",
+
]
+
+
[[package]]
+
name = "regex-automata"
+
version = "0.4.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
+
dependencies = [
+
"aho-corasick",
+
"memchr",
+
"regex-syntax",
+
]
+
+
[[package]]
+
name = "regex-syntax"
+
version = "0.8.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
+
+
[[package]]
+
name = "rustc-demangle"
+
version = "0.1.24"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
+
+
[[package]]
+
name = "rustix"
+
version = "0.38.35"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f"
+
dependencies = [
+
"bitflags 2.6.0",
+
"errno",
+
"libc",
+
"linux-raw-sys",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "rustversion"
+
version = "1.0.17"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
+
+
[[package]]
+
name = "rusty_duck"
+
version = "0.1.0"
+
dependencies = [
+
"askama",
+
"askama_axum",
+
"axum",
+
"comrak",
+
"markdown-parser",
+
"rand",
+
"serde",
+
"serde_yaml 0.9.34+deprecated",
+
"tokio",
+
"tower-http",
+
]
+
+
[[package]]
+
name = "ryu"
+
version = "1.0.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
+
+
[[package]]
+
name = "same-file"
+
version = "1.0.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
+
dependencies = [
+
"winapi-util",
+
]
+
+
[[package]]
+
name = "serde"
+
version = "1.0.209"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09"
+
dependencies = [
+
"serde_derive",
+
]
+
+
[[package]]
+
name = "serde_derive"
+
version = "1.0.209"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "serde_json"
+
version = "1.0.127"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad"
+
dependencies = [
+
"itoa",
+
"memchr",
+
"ryu",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_path_to_error"
+
version = "0.1.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
+
dependencies = [
+
"itoa",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_urlencoded"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
+
dependencies = [
+
"form_urlencoded",
+
"itoa",
+
"ryu",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_yaml"
+
version = "0.8.26"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
+
dependencies = [
+
"indexmap 1.9.3",
+
"ryu",
+
"serde",
+
"yaml-rust",
+
]
+
+
[[package]]
+
name = "serde_yaml"
+
version = "0.9.34+deprecated"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
+
dependencies = [
+
"indexmap 2.4.0",
+
"itoa",
+
"ryu",
+
"serde",
+
"unsafe-libyaml",
+
]
+
+
[[package]]
+
name = "shell-words"
+
version = "1.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
+
+
[[package]]
+
name = "shlex"
+
version = "1.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
+
+
[[package]]
+
name = "slug"
+
version = "0.1.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
+
dependencies = [
+
"deunicode",
+
"wasm-bindgen",
+
]
+
+
[[package]]
+
name = "smallvec"
+
version = "1.13.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
+
+
[[package]]
+
name = "socket2"
+
version = "0.5.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
+
dependencies = [
+
"libc",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "strsim"
+
version = "0.11.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
+
+
[[package]]
+
name = "syn"
+
version = "1.0.109"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "syn"
+
version = "2.0.76"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "sync_wrapper"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
+
+
[[package]]
+
name = "sync_wrapper"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
+
+
[[package]]
+
name = "syntect"
+
version = "5.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
+
dependencies = [
+
"bincode",
+
"bitflags 1.3.2",
+
"fancy-regex",
+
"flate2",
+
"fnv",
+
"once_cell",
+
"onig",
+
"plist",
+
"regex-syntax",
+
"serde",
+
"serde_derive",
+
"serde_json",
+
"thiserror",
+
"walkdir",
+
"yaml-rust",
+
]
+
+
[[package]]
+
name = "terminal_size"
+
version = "0.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
+
dependencies = [
+
"rustix",
+
"windows-sys 0.48.0",
+
]
+
+
[[package]]
+
name = "thiserror"
+
version = "1.0.63"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
+
dependencies = [
+
"thiserror-impl",
+
]
+
+
[[package]]
+
name = "thiserror-impl"
+
version = "1.0.63"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "time"
+
version = "0.3.36"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
+
dependencies = [
+
"deranged",
+
"itoa",
+
"num-conv",
+
"powerfmt",
+
"serde",
+
"time-core",
+
"time-macros",
+
]
+
+
[[package]]
+
name = "time-core"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
+
+
[[package]]
+
name = "time-macros"
+
version = "0.2.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
+
dependencies = [
+
"num-conv",
+
"time-core",
+
]
+
+
[[package]]
+
name = "tinyvec"
+
version = "1.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
+
dependencies = [
+
"tinyvec_macros",
+
]
+
+
[[package]]
+
name = "tinyvec_macros"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
+
+
[[package]]
+
name = "tokio"
+
version = "1.39.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5"
+
dependencies = [
+
"backtrace",
+
"bytes",
+
"libc",
+
"mio",
+
"pin-project-lite",
+
"socket2",
+
"tokio-macros",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "tokio-macros"
+
version = "2.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+
+
[[package]]
+
name = "tokio-util"
+
version = "0.7.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
+
dependencies = [
+
"bytes",
+
"futures-core",
+
"futures-sink",
+
"pin-project-lite",
+
"tokio",
+
]
+
+
[[package]]
+
name = "toml"
+
version = "0.5.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "tower"
+
version = "0.4.13"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
+
dependencies = [
+
"futures-core",
+
"futures-util",
+
"pin-project",
+
"pin-project-lite",
+
"tokio",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
]
+
+
[[package]]
+
name = "tower-http"
+
version = "0.5.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
+
dependencies = [
+
"bitflags 2.6.0",
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"http-body-util",
+
"http-range-header",
+
"httpdate",
+
"mime",
+
"mime_guess",
+
"percent-encoding",
+
"pin-project-lite",
+
"tokio",
+
"tokio-util",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
]
+
+
[[package]]
+
name = "tower-layer"
+
version = "0.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
+
+
[[package]]
+
name = "tower-service"
+
version = "0.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
+
+
[[package]]
+
name = "tracing"
+
version = "0.1.40"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
+
dependencies = [
+
"log",
+
"pin-project-lite",
+
"tracing-core",
+
]
+
+
[[package]]
+
name = "tracing-core"
+
version = "0.1.32"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
+
dependencies = [
+
"once_cell",
+
]
+
+
[[package]]
+
name = "typed-arena"
+
version = "2.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
+
+
[[package]]
+
name = "unicase"
+
version = "2.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
+
dependencies = [
+
"version_check",
+
]
+
+
[[package]]
+
name = "unicode-ident"
+
version = "1.0.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+
+
[[package]]
+
name = "unicode-normalization"
+
version = "0.1.23"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
+
dependencies = [
+
"tinyvec",
+
]
+
+
[[package]]
+
name = "unicode_categories"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
+
+
[[package]]
+
name = "unsafe-libyaml"
+
version = "0.2.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
+
+
[[package]]
+
name = "utf8parse"
+
version = "0.2.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
+
+
[[package]]
+
name = "version_check"
+
version = "0.9.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
+
+
[[package]]
+
name = "walkdir"
+
version = "2.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
+
dependencies = [
+
"same-file",
+
"winapi-util",
+
]
+
+
[[package]]
+
name = "wasi"
+
version = "0.11.0+wasi-snapshot-preview1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
+
+
[[package]]
+
name = "wasm-bindgen"
+
version = "0.2.93"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
+
dependencies = [
+
"cfg-if",
+
"once_cell",
+
"wasm-bindgen-macro",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-backend"
+
version = "0.2.93"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
+
dependencies = [
+
"bumpalo",
+
"log",
+
"once_cell",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
"wasm-bindgen-shared",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-macro"
+
version = "0.2.93"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
+
dependencies = [
+
"quote",
+
"wasm-bindgen-macro-support",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-macro-support"
+
version = "0.2.93"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
"wasm-bindgen-backend",
+
"wasm-bindgen-shared",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-shared"
+
version = "0.2.93"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
+
+
[[package]]
+
name = "winapi-util"
+
version = "0.1.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
+
dependencies = [
+
"windows-sys 0.59.0",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
+
dependencies = [
+
"windows-targets 0.48.5",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.52.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+
dependencies = [
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.59.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
+
dependencies = [
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-targets"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
+
dependencies = [
+
"windows_aarch64_gnullvm 0.48.5",
+
"windows_aarch64_msvc 0.48.5",
+
"windows_i686_gnu 0.48.5",
+
"windows_i686_msvc 0.48.5",
+
"windows_x86_64_gnu 0.48.5",
+
"windows_x86_64_gnullvm 0.48.5",
+
"windows_x86_64_msvc 0.48.5",
+
]
+
+
[[package]]
+
name = "windows-targets"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
+
dependencies = [
+
"windows_aarch64_gnullvm 0.52.6",
+
"windows_aarch64_msvc 0.52.6",
+
"windows_i686_gnu 0.52.6",
+
"windows_i686_gnullvm",
+
"windows_i686_msvc 0.52.6",
+
"windows_x86_64_gnu 0.52.6",
+
"windows_x86_64_gnullvm 0.52.6",
+
"windows_x86_64_msvc 0.52.6",
+
]
+
+
[[package]]
+
name = "windows_aarch64_gnullvm"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
+
+
[[package]]
+
name = "windows_aarch64_gnullvm"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
+
+
[[package]]
+
name = "windows_aarch64_msvc"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
+
+
[[package]]
+
name = "windows_aarch64_msvc"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
+
+
[[package]]
+
name = "windows_i686_gnu"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
+
+
[[package]]
+
name = "windows_i686_gnu"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
+
+
[[package]]
+
name = "windows_i686_gnullvm"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
+
+
[[package]]
+
name = "windows_i686_msvc"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
+
+
[[package]]
+
name = "windows_i686_msvc"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
+
+
[[package]]
+
name = "windows_x86_64_gnu"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
+
+
[[package]]
+
name = "windows_x86_64_gnu"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
+
+
[[package]]
+
name = "windows_x86_64_gnullvm"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
+
+
[[package]]
+
name = "windows_x86_64_gnullvm"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
+
+
[[package]]
+
name = "windows_x86_64_msvc"
+
version = "0.48.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
+
+
[[package]]
+
name = "windows_x86_64_msvc"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
+
+
[[package]]
+
name = "xdg"
+
version = "2.5.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
+
+
[[package]]
+
name = "yaml-rust"
+
version = "0.4.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
+
dependencies = [
+
"linked-hash-map",
+
]
+
+
[[package]]
+
name = "zerocopy"
+
version = "0.7.35"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
+
dependencies = [
+
"byteorder",
+
"zerocopy-derive",
+
]
+
+
[[package]]
+
name = "zerocopy-derive"
+
version = "0.7.35"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.76",
+
]
+23
Cargo.toml
···
+
[package]
+
name = "rusty_duck"
+
version = "0.1.0"
+
edition = "2021"
+
+
[profile.release]
+
opt-level = 'z' # Optimize for size.
+
lto = true # Enable Link Time Optimisation
+
codegen-units = 1 # Reduced to increase optimisations.
+
panic = 'abort' # Abort on panic
+
strip = "symbols" # Strip symbols from binary
+
+
[dependencies]
+
askama = { version = "0.12.1", features = ["with-axum"] }
+
askama_axum = "0.4.0"
+
axum = "0.7.5"
+
comrak = "0.27.0"
+
markdown-parser = "0.1.2"
+
rand = "0.8.5"
+
serde = { version = "1.0.209", features = ["derive"] }
+
serde_yaml = "0.9.34"
+
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
+
tower-http = { version = "0.5.2", features = ["fs"] }
+13
assets/duck.asc
···
+
-----BEGIN PGP PUBLIC KEY BLOCK-----
+
+
mDMEZMNBMhYJKwYBBAHaRw8BAQdAmPlgCTcSG+IWCXqaE5muoTUnU5phhTx0r7Rb
+
/+KkBn20IFRlY2hubyBEdWNrIDxkdWNrQHRlY2hub2R1Y2subWU+iJkEExYKAEEW
+
IQSNINxoxA6qXTt7s4AEGKzIL/qdBAUCZMNBMgIbAwUJA8JnAAULCQgHAgIiAgYV
+
CgkICwIEFgIDAQIeBwIXgAAKCRAEGKzIL/qdBMi6APwNf+l6lEAe43VqFdX2JQBG
+
Ix0zhcpFIsbj8uuGJigEFgD9GuMFECAIdnjeYKJCAl5HgOgmR8TK+rY5bMeVa93v
+
wAS4OARkw0EyEgorBgEEAZdVAQUBAQdAl4PNh37rKOOd0bb47BhcaWMPhgBvWuz4
+
uUbXpZOilyQDAQgHiH4EGBYKACYWIQSNINxoxA6qXTt7s4AEGKzIL/qdBAUCZMNB
+
MgIbDAUJA8JnAAAKCRAEGKzIL/qdBP6iAQCJkWOreY5Kwz1JDwu0mICt3MobMJsX
+
IT+H2MdjE5uyDQD/TBgZjHRp6xILvSSzS8H5e0ClBkKNqUhJMVZ+hPdx/wU=
+
=dSiL
+
-----END PGP PUBLIC KEY BLOCK-----
assets/favicon.png

This is a binary file and will not be displayed.

assets/gnu-linux.gif

This is a binary file and will not be displayed.

+1614
assets/img/led_hoop/pcb.svg
···
+
<?xml version="1.0" encoding="UTF-8"?>
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="595.275591" height="841.889764" viewBox="0 0 595.275591 841.889764">
+
<rect x="-59.527559" y="-84.188976" width="714.330709" height="1010.267717" fill="rgb(0%, 6.27451%, 13.72549%)" fill-opacity="1"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 31276.5625 L 2040.625 31762.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 31519.53125 L 2040.625 31519.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 32045.572917 L 2040.625 32045.572917 L 2040.625 32369.53125 L 2080.46875 32450.520833 L 2121.614583 32490.625 L 2202.604167 32531.510417 L 2323.4375 32531.510417 L 2404.427083 32490.625 L 2445.572917 32450.520833 L 2485.416667 32369.53125 L 2485.416667 32045.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2121.614583 32855.46875 L 2080.46875 32895.572917 L 2040.625 32976.5625 L 2040.625 33178.385417 L 2080.46875 33259.375 L 2121.614583 33300.520833 L 2202.604167 33340.625 L 2283.59375 33340.625 L 2404.427083 33300.520833 L 2890.625 32814.583333 L 2890.625 33340.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 32884.114583 L 3583.072917 32884.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 32884.114583 L 3583.072917 31813.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 31813.020833 L 1423.958333 32884.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 31813.020833 L 1423.958333 31813.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 29270.572917 L 2040.625 29756.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 29513.541667 L 2040.625 29513.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 30039.583333 L 2040.625 30039.583333 L 2040.625 30363.541667 L 2080.46875 30444.53125 L 2121.614583 30484.375 L 2202.604167 30525.520833 L 2323.4375 30525.520833 L 2404.427083 30484.375 L 2445.572917 30444.53125 L 2485.416667 30363.541667 L 2485.416667 30039.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 30808.59375 L 2040.625 31334.375 L 2364.583333 31051.5625 L 2364.583333 31173.4375 L 2404.427083 31253.385417 L 2445.572917 31294.53125 L 2525.520833 31334.375 L 2728.385417 31334.375 L 2809.375 31294.53125 L 2849.479167 31253.385417 L 2890.625 31173.4375 L 2890.625 30930.46875 L 2849.479167 30849.479167 L 2809.375 30808.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 30878.125 L 3583.072917 30878.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 30878.125 L 3583.072917 29807.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 29807.03125 L 1423.958333 30878.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 29807.03125 L 1423.958333 29807.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 23253.385417 L 2040.625 23738.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 23496.614583 L 2040.625 23496.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 24022.395833 L 2040.625 24022.395833 L 2040.625 24346.614583 L 2080.46875 24426.5625 L 2121.614583 24467.447917 L 2202.604167 24507.552083 L 2323.4375 24507.552083 L 2404.427083 24467.447917 L 2445.572917 24426.5625 L 2485.416667 24346.614583 L 2485.416667 24022.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 25236.458333 L 2040.625 25074.479167 L 2080.46875 24993.489583 L 2121.614583 24953.385417 L 2242.447917 24872.395833 L 2404.427083 24831.510417 L 2728.385417 24831.510417 L 2809.375 24872.395833 L 2849.479167 24912.5 L 2890.625 24993.489583 L 2890.625 25155.46875 L 2849.479167 25236.458333 L 2809.375 25276.5625 L 2728.385417 25317.447917 L 2525.520833 25317.447917 L 2445.572917 25276.5625 L 2404.427083 25236.458333 L 2364.583333 25155.46875 L 2364.583333 24993.489583 L 2404.427083 24912.5 L 2445.572917 24872.395833 L 2525.520833 24831.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 24860.9375 L 3583.072917 24860.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 24860.9375 L 3583.072917 23790.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 23790.104167 L 1423.958333 24860.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 23790.104167 L 1423.958333 23790.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 27264.583333 L 2040.625 27750.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 27507.552083 L 2040.625 27507.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 28033.59375 L 2040.625 28033.59375 L 2040.625 28357.552083 L 2080.46875 28438.541667 L 2121.614583 28479.427083 L 2202.604167 28519.53125 L 2323.4375 28519.53125 L 2404.427083 28479.427083 L 2445.572917 28438.541667 L 2485.416667 28357.552083 L 2485.416667 28033.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2323.4375 29248.4375 L 2890.625 29248.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1999.479167 29045.572917 L 2606.510417 28843.489583 L 2606.510417 29369.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 28871.875 L 3583.072917 28871.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 28871.875 L 3583.072917 27802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 27802.083333 L 1423.958333 28871.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 27802.083333 L 1423.958333 27802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 25259.375 L 2040.625 25744.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 25501.5625 L 2040.625 25501.5625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2890.625 26028.385417 L 2040.625 26028.385417 L 2040.625 26351.5625 L 2080.46875 26432.552083 L 2121.614583 26473.4375 L 2202.604167 26513.541667 L 2323.4375 26513.541667 L 2404.427083 26473.4375 L 2445.572917 26432.552083 L 2485.416667 26351.5625 L 2485.416667 26028.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2040.625 27282.552083 L 2040.625 26878.385417 L 2445.572917 26837.5 L 2404.427083 26878.385417 L 2364.583333 26958.59375 L 2364.583333 27161.458333 L 2404.427083 27242.447917 L 2445.572917 27282.552083 L 2525.520833 27323.4375 L 2728.385417 27323.4375 L 2809.375 27282.552083 L 2849.479167 27242.447917 L 2890.625 27161.458333 L 2890.625 26958.59375 L 2849.479167 26878.385417 L 2809.375 26837.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 26866.927083 L 3583.072917 26866.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 26866.927083 L 3583.072917 25796.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 25796.09375 L 1423.958333 26866.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 25796.09375 L 1423.958333 25796.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5093.489583 34741.40625 L 5377.604167 34336.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5579.427083 34741.40625 L 5579.427083 33891.40625 L 5255.46875 33891.40625 L 5174.479167 33932.552083 L 5134.375 33972.395833 L 5093.489583 34053.385417 L 5093.489583 34174.479167 L 5134.375 34255.46875 L 5174.479167 34296.614583 L 5255.46875 34336.458333 L 5579.427083 34336.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4770.572917 34701.5625 L 4648.4375 34741.40625 L 4446.614583 34741.40625 L 4365.625 34701.5625 L 4324.479167 34660.416667 L 4284.375 34579.427083 L 4284.375 34498.4375 L 4324.479167 34417.447917 L 4365.625 34377.604167 L 4446.614583 34336.458333 L 4608.59375 34296.614583 L 4689.583333 34255.46875 L 4729.427083 34215.625 L 4770.572917 34134.375 L 4770.572917 34053.385417 L 4729.427083 33972.395833 L 4689.583333 33932.552083 L 4608.59375 33891.40625 L 4405.46875 33891.40625 L 4284.375 33932.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4041.40625 33891.40625 L 3555.46875 33891.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3798.4375 34741.40625 L 3798.4375 33891.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 34890.104167 L 3583.072917 34890.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 34890.104167 L 3583.072917 33819.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 33819.010417 L 1423.958333 34890.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 33819.010417 L 1423.958333 33819.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28147.395833 42223.4375 L 28077.604167 42279.427083 L 28060.416667 42315.625 L 28053.385417 42378.385417 L 28082.552083 42458.59375 L 28128.385417 42502.604167 L 28164.583333 42519.53125 L 28227.604167 42526.5625 L 28440.625 42449.479167 L 28236.458333 41889.583333 L 28050.520833 41957.552083 L 28006.510417 42003.385417 L 27990.625 42040.625 L 27982.552083 42103.385417 L 28002.604167 42156.510417 L 28048.4375 42199.479167 L 28084.375 42216.40625 L 28147.395833 42223.4375 L 28333.59375 42156.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27757.552083 42064.583333 L 27438.541667 42180.46875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27801.5625 42681.510417 L 27597.395833 42122.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27162.5 42914.583333 L 27481.510417 42797.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27322.395833 42855.46875 L 27118.489583 42296.614583 L 27201.5625 42357.552083 L 27273.4375 42391.40625 L 27336.458333 42398.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30314.0625 43041.927083 L 29563.020833 45078.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29563.020833 45078.90625 L 26447.916667 46211.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26447.916667 46211.979167 L 24563.020833 45134.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28613.020833 38369.010417 L 30298.958333 43002.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24563.020833 45134.895833 L 22834.114583 40383.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27729.166667 38673.177083 C 27739.322917 38539.583333 27801.822917 38415.104167 27902.604167 38326.822917 C 28003.385417 38238.28125 28134.895833 38192.96875 28268.75 38200.260417 C 28402.864583 38207.552083 28528.645833 38266.927083 28619.270833 38365.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27725.78125 38665.104167 C 27238.28125 39216.927083 26621.09375 39639.0625 25930.208333 39893.489583 C 25239.322917 40147.916667 24495.833333 40227.083333 23766.666667 40123.697917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22851.822917 40430.729167 C 22869.53125 40302.083333 22933.854167 40184.635417 23032.552083 40100.520833 C 23131.25 40016.145833 23257.552083 39971.354167 23387.239583 39974.21875 C 23516.927083 39977.083333 23641.145833 40027.604167 23735.9375 40116.145833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11229.427083 45013.541667 L 11140.625 45004.427083 L 11103.385417 45019.53125 L 11054.427083 45059.375 L 11019.53125 45137.5 L 11022.395833 45200.520833 L 11036.458333 45237.5 L 11077.604167 45286.458333 L 11284.375 45378.385417 L 11526.5625 44835.416667 L 11344.53125 44754.427083 L 11281.510417 44757.552083 L 11244.53125 44771.614583 L 11195.572917 44812.5 L 11172.395833 44863.541667 L 11175.520833 44927.604167 L 11189.583333 44964.583333 L 11229.427083 45013.541667 L 11410.416667 45094.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11060.416667 44627.604167 L 10749.479167 44489.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10662.5 45102.604167 L 10904.427083 44558.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10571.614583 44472.395833 L 10556.510417 44434.375 L 10516.40625 44385.416667 L 10387.5 44328.385417 L 10324.479167 44331.510417 L 10286.458333 44345.572917 L 10237.5 44385.416667 L 10214.583333 44437.5 L 10205.46875 44526.5625 L 10378.385417 44975.520833 L 10041.40625 44825.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14192.96875 44938.020833 L 12238.020833 45880.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12238.020833 45880.989583 L 9209.895833 44533.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9209.895833 44533.072917 L 8603.125 42448.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16215.885417 40395.052083 L 14210.9375 44898.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8603.125 42448.958333 L 10659.895833 37828.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15368.75 40000.260417 C 15469.270833 39911.197917 15600.520833 39865.104167 15734.375 39871.614583 C 15868.229167 39878.125 15994.53125 39936.71875 16085.677083 40035.15625 C 16177.083333 40133.333333 16226.302083 40263.28125 16222.916667 40397.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15372.395833 39992.447917 C 14638.28125 40050.520833 13901.302083 39925.520833 13227.34375 39628.645833 C 12553.645833 39331.770833 11963.802083 38872.135417 11511.458333 38291.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(34.509804%, 36.470588%, 51.764706%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10639.583333 37876.302083 C 10741.666667 37795.833333 10869.53125 37755.989583 10999.21875 37764.0625 C 11128.645833 37772.135417 11250.78125 37827.34375 11341.927083 37919.53125 C 11433.333333 38011.979167 11487.5 38134.375 11494.270833 38264.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 32884.114583 L 1423.958333 32884.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 34890.104167 L 1423.958333 33819.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 34890.104167 L 1423.958333 34890.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 33819.010417 L 3583.072917 33819.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 33819.010417 L 3583.072917 34890.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 32884.114583 L 1423.958333 31813.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 31813.020833 L 3583.072917 31813.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 31813.020833 L 3583.072917 32884.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 30878.125 L 1423.958333 29807.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 30878.125 L 1423.958333 30878.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 29807.03125 L 3583.072917 29807.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 29807.03125 L 3583.072917 30878.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 28871.875 L 1423.958333 27802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 28871.875 L 1423.958333 28871.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 27802.083333 L 3583.072917 27802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 27802.083333 L 3583.072917 28871.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 24860.9375 L 1423.958333 23790.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 24860.9375 L 1423.958333 24860.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 23790.104167 L 3583.072917 23790.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 23790.104167 L 3583.072917 24860.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 26866.927083 L 1423.958333 25796.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 26866.927083 L 1423.958333 26866.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1423.958333 25796.09375 L 3583.072917 25796.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3583.072917 25796.09375 L 3583.072917 26866.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32834.114583 44250 L 23409.114583 47679.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29955.989583 36342.96875 L 32834.114583 44250 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23409.114583 47679.947917 L 20532.03125 39772.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20532.03125 39772.916667 L 29955.989583 36342.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15166.927083 47558.072917 L 6004.947917 43478.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18589.0625 39871.09375 L 15166.927083 47558.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6004.947917 43478.125 L 9427.083333 35790.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(14.901961%, 91.372549%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9427.083333 35790.885417 L 18589.0625 39871.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 27.988281 482.039062 L 47.113281 482.039062 L 47.113281 488.414062 L 27.988281 488.414062 Z M 27.988281 482.039062 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 32560.9375 L 3140.885417 32135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 32135.9375 L 1865.885417 32135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 32135.9375 L 1865.885417 32560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 32560.9375 L 3140.885417 32560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 27.988281 451.949219 L 47.113281 451.949219 L 47.113281 458.324219 L 27.988281 458.324219 Z M 27.988281 451.949219 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 30554.947917 L 3140.885417 30129.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 30129.947917 L 1865.885417 30129.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 30129.947917 L 1865.885417 30554.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 30554.947917 L 3140.885417 30554.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 27.988281 361.695312 L 47.113281 361.695312 L 47.113281 368.070312 L 27.988281 368.070312 Z M 27.988281 361.695312 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 24538.020833 L 3140.885417 24113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 24113.020833 L 1865.885417 24113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 24113.020833 L 1865.885417 24538.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 24538.020833 L 3140.885417 24538.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 27.988281 421.875 L 47.113281 421.875 L 47.113281 428.234375 L 27.988281 428.234375 Z M 27.988281 421.875 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 28548.958333 L 3140.885417 28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 28125 L 1865.885417 28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 28125 L 1865.885417 28548.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 28548.958333 L 3140.885417 28548.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 27.988281 391.785156 L 47.113281 391.785156 L 47.113281 398.160156 L 27.988281 398.160156 Z M 27.988281 391.785156 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 26544.010417 L 3140.885417 26119.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 26119.010417 L 1865.885417 26119.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 26119.010417 L 1865.885417 26544.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 26544.010417 L 3140.885417 26544.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 27.988281 512.128906 L 47.113281 512.128906 L 47.113281 518.503906 L 27.988281 518.503906 Z M 27.988281 512.128906 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 34566.927083 L 3140.885417 34141.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 34141.927083 L 1865.885417 34141.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 34141.927083 L 1865.885417 34566.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 34566.927083 L 3140.885417 34566.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 456.796875 577.171875 L 435.464844 584.925781 L 457.621094 645.796875 L 478.933594 638.023438 L 456.796875 577.171875 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 344.175781 618.148438 L 322.84375 625.921875 L 345 686.773438 L 366.328125 679.019531 L 344.175781 618.148438 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 415.980469 599.609375 L 368.535156 616.890625 L 385.800781 664.320312 L 433.246094 647.054688 L 415.980469 599.609375 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 261.960938 626.265625 L 241.214844 617.039062 L 214.875 676.199219 L 235.605469 685.441406 L 261.960938 626.265625 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 152.476562 577.53125 L 131.746094 568.289062 L 105.40625 627.464844 L 126.136719 636.691406 L 152.476562 577.53125 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 76.078431%, 76.078431%)" fill-opacity="1" d="M 217.003906 614.070312 L 170.878906 593.535156 L 150.34375 639.660156 L 196.46875 660.195312 L 217.003906 614.070312 "/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37680.46875 24858.59375 L 38287.5 24858.59375 L 38409.375 24817.447917 L 38490.625 24736.458333 L 38530.46875 24615.625 L 38530.46875 24534.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38530.46875 25667.447917 L 38530.46875 25263.541667 L 37680.46875 25263.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38449.479167 26436.458333 L 38490.625 26396.614583 L 38530.46875 26274.479167 L 38530.46875 26193.489583 L 38490.625 26072.395833 L 38409.375 25991.40625 L 38328.385417 25951.5625 L 38166.40625 25910.416667 L 38044.53125 25910.416667 L 37882.552083 25951.5625 L 37802.604167 25991.40625 L 37721.614583 26072.395833 L 37680.46875 26193.489583 L 37680.46875 26274.479167 L 37721.614583 26396.614583 L 37761.458333 26436.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37680.46875 27043.489583 L 38287.5 27043.489583 L 38409.375 27003.385417 L 38490.625 26922.395833 L 38530.46875 26800.520833 L 38530.46875 26720.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38530.46875 27853.385417 L 38530.46875 27448.4375 L 37680.46875 27448.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38449.479167 28622.395833 L 38490.625 28581.510417 L 38530.46875 28460.416667 L 38530.46875 28379.427083 L 38490.625 28258.59375 L 38409.375 28177.604167 L 38328.385417 28136.458333 L 38166.40625 28096.614583 L 38044.53125 28096.614583 L 37882.552083 28136.458333 L 37802.604167 28177.604167 L 37721.614583 28258.59375 L 37680.46875 28379.427083 L 37680.46875 28460.416667 L 37721.614583 28581.510417 L 37761.458333 28622.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37680.46875 29229.427083 L 38287.5 29229.427083 L 38409.375 29188.541667 L 38490.625 29107.552083 L 38530.46875 28986.458333 L 38530.46875 28905.46875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38530.46875 30038.541667 L 38530.46875 29634.375 L 37680.46875 29634.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38449.479167 30807.552083 L 38490.625 30767.447917 L 38530.46875 30645.572917 L 38530.46875 30564.583333 L 38490.625 30443.489583 L 38409.375 30362.5 L 38328.385417 30322.395833 L 38166.40625 30281.510417 L 38044.53125 30281.510417 L 37882.552083 30322.395833 L 37802.604167 30362.5 L 37721.614583 30443.489583 L 37680.46875 30564.583333 L 37680.46875 30645.572917 L 37721.614583 30767.447917 L 37761.458333 30807.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37680.46875 31414.583333 L 38287.5 31414.583333 L 38409.375 31374.479167 L 38490.625 31293.489583 L 38530.46875 31172.395833 L 38530.46875 31091.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38530.46875 32224.479167 L 38530.46875 31819.53125 L 37680.46875 31819.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38449.479167 32993.489583 L 38490.625 32952.604167 L 38530.46875 32831.510417 L 38530.46875 32750.520833 L 38490.625 32629.427083 L 38409.375 32548.4375 L 38328.385417 32507.552083 L 38166.40625 32467.447917 L 38044.53125 32467.447917 L 37882.552083 32507.552083 L 37802.604167 32548.4375 L 37721.614583 32629.427083 L 37680.46875 32750.520833 L 37680.46875 32831.510417 L 37721.614583 32952.604167 L 37761.458333 32993.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28664.0625 38259.895833 L 30408.072917 43053.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27625.520833 38638.541667 C 27671.354167 38416.145833 27829.6875 38233.854167 28043.489583 38157.8125 C 28257.291667 38081.770833 28495.3125 38122.916667 28671.09375 38266.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27626.041667 38638.28125 C 27151.5625 39166.666667 26554.427083 39570.3125 25887.5 39813.802083 C 25220.3125 40057.291667 24503.645833 40133.333333 23800.520833 40034.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26113.541667 38493.489583 L 26013.541667 38573.4375 L 25988.541667 38625.520833 L 25978.385417 38715.625 L 26020.572917 38829.427083 L 26085.416667 38891.40625 L 26137.5 38915.625 L 26227.604167 38926.5625 L 26531.510417 38815.625 L 26241.40625 38016.40625 L 25974.479167 38113.541667 L 25912.5 38179.427083 L 25888.541667 38231.510417 L 25878.385417 38321.614583 L 25905.46875 38397.395833 L 25971.614583 38459.375 L 26023.4375 38483.59375 L 26113.541667 38493.489583 L 26379.427083 38397.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25556.510417 38265.625 L 25100.520833 38432.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25619.53125 39147.395833 L 25328.385417 38348.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24706.510417 39479.427083 L 25162.5 39313.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24934.375 39396.614583 L 24643.489583 38598.4375 L 24761.458333 38684.375 L 24865.625 38732.552083 L 24955.46875 38743.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29632.03125 45144.010417 L 30408.072917 43053.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29632.03125 45144.010417 L 26436.979167 46307.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26436.979167 46307.03125 L 24497.916667 45203.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22753.90625 40411.979167 L 24497.916667 45203.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22751.041667 40413.020833 C 22796.354167 40189.84375 22954.947917 40006.25 23169.53125 39929.427083 C 23384.114583 39852.34375 23623.177083 39893.229167 23800 40036.71875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16328.125 40352.083333 L 14253.90625 45010.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12241.927083 45976.041667 L 14253.90625 45010.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12241.927083 45976.041667 L 9136.979167 44594.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9136.979167 44594.010417 L 8508.072917 42453.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10582.03125 37794.010417 L 8508.072917 42453.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15319.010417 39903.125 C 15506.25 39775 15746.875 39753.90625 15953.645833 39847.916667 C 16160.15625 39941.666667 16302.864583 40136.458333 16329.6875 40361.71875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15319.270833 39903.125 C 14610.9375 39953.645833 13901.302083 39829.427083 13252.34375 39541.145833 C 12603.125 39252.864583 12034.895833 38809.635417 11597.395833 38250.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10580.208333 37794.010417 C 10767.96875 37664.84375 11009.375 37642.96875 11217.1875 37736.71875 C 11425 37830.208333 11568.489583 38025.78125 11596.09375 38251.822917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14331.510417 38748.4375 L 14204.427083 38735.416667 L 14150.520833 38756.510417 L 14080.46875 38813.541667 L 14031.510417 38924.479167 L 14035.416667 39015.625 L 14055.46875 39068.489583 L 14113.541667 39138.541667 L 14409.375 39270.572917 L 14754.427083 38493.489583 L 14496.614583 38378.385417 L 14405.46875 38382.552083 L 14352.604167 38403.385417 L 14282.552083 38460.416667 L 14249.479167 38534.375 L 14253.385417 38625.520833 L 14273.4375 38678.385417 L 14331.510417 38748.4375 L 14590.625 38863.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14089.583333 38197.395833 L 13645.572917 37999.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13521.614583 38875.520833 L 13867.447917 38098.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(90.980392%, 69.803922%, 65.490196%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13390.625 37975.520833 L 13370.572917 37921.614583 L 13312.5 37851.5625 L 13128.385417 37769.53125 L 13037.5 37773.4375 L 12984.375 37794.53125 L 12914.583333 37851.5625 L 12881.510417 37925.520833 L 12868.489583 38052.604167 L 13115.625 38694.53125 L 12634.375 38480.46875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 27.988281 482.039062 L 47.113281 482.039062 L 47.113281 488.414062 L 27.988281 488.414062 Z M 27.988281 482.039062 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 32560.9375 L 3140.885417 32135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 32135.9375 L 1865.885417 32135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 32135.9375 L 1865.885417 32560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 32560.9375 L 3140.885417 32560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 27.988281 451.949219 L 47.113281 451.949219 L 47.113281 458.324219 L 27.988281 458.324219 Z M 27.988281 451.949219 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 30554.947917 L 3140.885417 30129.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 30129.947917 L 1865.885417 30129.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 30129.947917 L 1865.885417 30554.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 30554.947917 L 3140.885417 30554.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 27.988281 361.695312 L 47.113281 361.695312 L 47.113281 368.070312 L 27.988281 368.070312 Z M 27.988281 361.695312 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 24538.020833 L 3140.885417 24113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 24113.020833 L 1865.885417 24113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 24113.020833 L 1865.885417 24538.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 24538.020833 L 3140.885417 24538.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 27.988281 421.875 L 47.113281 421.875 L 47.113281 428.234375 L 27.988281 428.234375 Z M 27.988281 421.875 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 28548.958333 L 3140.885417 28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 28125 L 1865.885417 28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 28125 L 1865.885417 28548.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 28548.958333 L 3140.885417 28548.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 27.988281 391.785156 L 47.113281 391.785156 L 47.113281 398.160156 L 27.988281 398.160156 Z M 27.988281 391.785156 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 26544.010417 L 3140.885417 26119.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 26119.010417 L 1865.885417 26119.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 26119.010417 L 1865.885417 26544.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 26544.010417 L 3140.885417 26544.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 27.988281 512.128906 L 47.113281 512.128906 L 47.113281 518.503906 L 27.988281 518.503906 Z M 27.988281 512.128906 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 34566.927083 L 3140.885417 34141.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 34141.927083 L 1865.885417 34141.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 34141.927083 L 1865.885417 34566.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0.784314%, 100%, 93.333333%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 34566.927083 L 3140.885417 34566.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 456.796875 577.171875 L 435.464844 584.925781 L 457.621094 645.796875 L 478.933594 638.023438 L 456.796875 577.171875 "/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 344.175781 618.148438 L 322.84375 625.921875 L 345 686.773438 L 366.328125 679.019531 L 344.175781 618.148438 "/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 415.980469 599.609375 L 368.535156 616.890625 L 385.800781 664.320312 L 433.246094 647.054688 L 415.980469 599.609375 "/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 261.960938 626.265625 L 241.214844 617.039062 L 214.875 676.199219 L 235.605469 685.441406 L 261.960938 626.265625 "/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 152.476562 577.53125 L 131.746094 568.289062 L 105.40625 627.464844 L 126.136719 636.691406 L 152.476562 577.53125 "/>
+
<path fill-rule="nonzero" fill="rgb(0.784314%, 100%, 93.333333%)" fill-opacity="1" d="M 217.003906 614.070312 L 170.878906 593.535156 L 150.34375 639.660156 L 196.46875 660.195312 L 217.003906 614.070312 "/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17190.104167 44192.96875 L 17190.104167 44171.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17107.03125 45565.885417 L 16796.875 45565.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16455.989583 44927.083333 L 17190.104167 44192.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16455.989583 45226.041667 L 16455.989583 44927.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17190.104167 44171.09375 L 17146.875 44214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17854.947917 44819.010417 L 17107.03125 45565.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.895833 44819.010417 L 17854.947917 44819.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17886.979167 45360.9375 L 17886.979167 45615.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17886.979167 45615.885417 L 18471.09375 46201.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17578.125 43415.885417 L 20276.041667 43415.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16952.083333 45190.885417 L 18057.03125 44085.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18057.03125 44085.9375 L 20182.03125 44085.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22665.104167 46801.041667 L 22366.927083 46801.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21105.989583 46201.041667 L 21371.875 46465.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22017.96875 45721.875 L 22336.979167 46040.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22336.979167 46040.885417 L 22391.927083 46040.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17310.9375 45936.979167 L 17886.979167 45360.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17620.052083 47146.09375 L 19963.020833 47146.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16534.114583 46994.010417 L 17334.114583 47115.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16108.072917 46911.979167 L 16534.114583 46994.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17334.114583 47115.104167 L 17620.052083 47146.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22366.927083 46801.041667 L 20384.895833 44819.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18471.09375 46201.041667 L 21105.989583 46201.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20276.041667 43415.885417 L 22017.96875 45157.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22017.96875 45157.03125 L 22017.96875 45721.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19963.020833 47146.09375 L 20290.885417 46817.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17427.083333 43265.104167 L 17578.125 43415.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17978.125 42130.989583 L 17121.875 42130.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18959.895833 43113.020833 L 17978.125 42130.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19500 42725 L 19025 42250 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14598.958333 42486.979167 L 13903.125 41790.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13903.125 41790.885417 L 12245.052083 41790.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14578.125 42465.885417 L 14598.958333 42486.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13222.916667 40755.989583 L 12283.072917 41696.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13745.052083 45721.875 L 11885.9375 43861.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14678.125 45721.875 L 13745.052083 45721.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11145.052083 44495.052083 L 12155.989583 44495.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12155.989583 44495.052083 L 13814.0625 46153.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11885.9375 43861.979167 L 8917.96875 43861.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7403.125 42346.875 L 7033.072917 42346.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6419.010417 41734.114583 L 6419.010417 39744.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7033.072917 42346.875 L 6419.010417 41734.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8917.96875 43861.979167 L 7403.125 42346.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9664.0625 39097.916667 L 8596.09375 40165.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8028.125 39465.885417 L 8633.072917 40071.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10325 39097.916667 L 9664.0625 39097.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16796.875 45565.885417 L 16455.989583 45226.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15496.875 45936.979167 L 17310.9375 45936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14684.895833 45728.90625 L 14853.125 45896.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14853.125 45896.875 L 15455.989583 45896.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15455.989583 45896.875 L 15496.875 45936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13814.0625 46153.125 L 15350 46153.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15350 46153.125 L 16108.072917 46911.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3114.0625 36615.104167 L 3114.0625 36594.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6264.0625 39744.010417 L 3135.9375 36615.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3135.9375 36615.104167 L 3114.0625 36615.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6159.114583 34828.90625 L 7553.125 36222.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6419.010417 39744.010417 L 6264.0625 39744.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7553.125 37577.083333 L 8028.125 38052.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7553.125 36222.916667 L 7553.125 37577.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8028.125 38052.083333 L 8028.125 39465.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5553.90625 36813.020833 L 6905.989583 38165.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22972.916667 43497.916667 L 22972.916667 46494.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22972.916667 46494.010417 L 22665.104167 46801.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22972.916667 43497.916667 L 22972.916667 42790.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22572.916667 41064.0625 L 23030.989583 40971.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22455.989583 41182.03125 L 22572.916667 41064.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34630.989583 37116.927083 L 32590.885417 39157.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28076.041667 39677.083333 L 30591.927083 37160.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30591.927083 37160.9375 L 31141.927083 36645.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33865.885417 41100 L 31782.03125 43183.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33865.885417 38391.927083 L 33865.885417 41100 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21541.927083 43321.09375 L 21334.114583 43113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21334.114583 43113.020833 L 18959.895833 43113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21588.020833 41403.90625 L 21053.90625 41938.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21878.90625 41403.90625 L 22101.041667 41182.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21053.90625 42725 L 19500 42725 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21588.020833 41403.90625 L 21878.90625 41403.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22101.041667 41182.03125 L 22455.989583 41182.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21053.90625 41938.020833 L 21053.90625 42725 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32589.0625 35161.979167 L 33440.885417 35161.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33440.885417 35161.979167 L 36501.041667 32102.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33101.041667 14594.010417 L 33101.041667 15157.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36925 18982.03125 L 36925 35332.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33101.041667 15157.03125 L 36925 18982.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25929.947917 40082.03125 L 26578.125 40082.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24750 40520.052083 L 25491.927083 40520.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24297.916667 40971.875 L 24750 40520.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23030.989583 40971.875 L 24297.916667 40971.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25491.927083 40520.052083 L 25929.947917 40082.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26578.125 40082.03125 L 26983.072917 39677.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31947.916667 42483.072917 L 30479.947917 41015.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26983.072917 39677.083333 L 28076.041667 39677.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31782.03125 43183.072917 L 31430.989583 43444.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31430.989583 43444.010417 L 28039.0625 43444.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28039.0625 43444.010417 L 26726.041667 42130.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34630.989583 35416.927083 L 34630.989583 37116.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31667.96875 36103.90625 L 31829.947917 35921.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31829.947917 35921.09375 L 32589.0625 35161.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31141.927083 36645.052083 L 31667.96875 36103.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36925 35332.03125 L 33865.885417 38391.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3114.0625 36594.010417 L 3114.0625 36594.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2503.125 32348.958333 L 3871.875 33716.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3871.875 33716.927083 L 4542.96875 33716.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4671.875 34354.947917 L 2503.125 34354.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5553.90625 34003.90625 L 5553.90625 36813.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3767.96875 31905.989583 L 5553.90625 33692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4025 31434.114583 L 5378.90625 32789.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4025 29455.989583 L 4025 31434.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3767.96875 29602.083333 L 3767.96875 31905.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 891.927083 30939.0625 L 1488.020833 30342.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5378.90625 32789.0625 L 5378.90625 33067.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6159.114583 34078.90625 L 6159.114583 34828.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5378.90625 33067.96875 L 5753.90625 33442.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5753.90625 33442.96875 L 6159.114583 34078.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5178.90625 33847.916667 L 4671.875 34354.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5553.90625 33692.96875 L 5553.90625 34003.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5553.90625 34003.125 L 5553.90625 34003.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2503.125 26330.989583 L 3585.9375 27414.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3585.9375 27414.0625 L 3647.916667 27825 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2503.125 24325 L 2503.125 22319.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2842.96875 21978.90625 L 2503.125 22319.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2842.96875 20713.020833 L 2842.96875 21978.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3796.09375 28565.104167 L 3977.083333 29296.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3647.916667 27825 L 3796.09375 28565.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3977.083333 29296.875 L 4025 29455.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2503.125 28336.979167 L 3767.96875 29602.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1488.020833 30342.96875 L 2503.125 30342.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 27.988281 482.039062 L 47.113281 482.039062 L 47.113281 488.414062 L 27.988281 488.414062 Z M 27.988281 482.039062 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 32560.9375 L 3140.885417 32135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 32135.9375 L 1865.885417 32135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 32135.9375 L 1865.885417 32560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 32560.9375 L 3140.885417 32560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 27.988281 451.949219 L 47.113281 451.949219 L 47.113281 458.324219 L 27.988281 458.324219 Z M 27.988281 451.949219 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 30554.947917 L 3140.885417 30129.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 30129.947917 L 1865.885417 30129.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 30129.947917 L 1865.885417 30554.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 30554.947917 L 3140.885417 30554.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 27.988281 361.695312 L 47.113281 361.695312 L 47.113281 368.070312 L 27.988281 368.070312 Z M 27.988281 361.695312 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 24538.020833 L 3140.885417 24113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 24113.020833 L 1865.885417 24113.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 24113.020833 L 1865.885417 24538.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 24538.020833 L 3140.885417 24538.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 27.988281 421.875 L 47.113281 421.875 L 47.113281 428.234375 L 27.988281 428.234375 Z M 27.988281 421.875 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 28548.958333 L 3140.885417 28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 28125 L 1865.885417 28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 28125 L 1865.885417 28548.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 28548.958333 L 3140.885417 28548.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 27.988281 391.785156 L 47.113281 391.785156 L 47.113281 398.160156 L 27.988281 398.160156 Z M 27.988281 391.785156 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 26544.010417 L 3140.885417 26119.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 26119.010417 L 1865.885417 26119.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 26119.010417 L 1865.885417 26544.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 26544.010417 L 3140.885417 26544.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 27.988281 512.128906 L 47.113281 512.128906 L 47.113281 518.503906 L 27.988281 518.503906 Z M 27.988281 512.128906 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 34566.927083 L 3140.885417 34141.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3140.885417 34141.927083 L 1865.885417 34141.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 34141.927083 L 1865.885417 34566.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(30.196078%, 49.803922%, 76.862745%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1865.885417 34566.927083 L 3140.885417 34566.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 456.796875 577.171875 L 435.464844 584.925781 L 457.621094 645.796875 L 478.933594 638.023438 L 456.796875 577.171875 "/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 344.175781 618.148438 L 322.84375 625.921875 L 345 686.773438 L 366.328125 679.019531 L 344.175781 618.148438 "/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 415.980469 599.609375 L 368.535156 616.890625 L 385.800781 664.320312 L 433.246094 647.054688 L 415.980469 599.609375 "/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 261.960938 626.265625 L 241.214844 617.039062 L 214.875 676.199219 L 235.605469 685.441406 L 261.960938 626.265625 "/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 152.476562 577.53125 L 131.746094 568.289062 L 105.40625 627.464844 L 126.136719 636.691406 L 152.476562 577.53125 "/>
+
<path fill-rule="nonzero" fill="rgb(30.196078%, 49.803922%, 76.862745%)" fill-opacity="1" d="M 217.003906 614.070312 L 170.878906 593.535156 L 150.34375 639.660156 L 196.46875 660.195312 L 217.003906 614.070312 "/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2588.020833 23701.041667 L 2588.020833 22340.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2743.489583 31320.572917 L 2403.385417 31320.572917 L 2403.385417 31240.625 L 2419.53125 31191.40625 L 2451.5625 31159.375 L 2484.375 31142.447917 L 2548.4375 31126.5625 L 2597.395833 31126.5625 L 2662.5 31142.447917 L 2694.53125 31159.375 L 2727.604167 31191.40625 L 2743.489583 31240.625 L 2743.489583 31320.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2403.385417 31013.541667 L 2403.385417 30802.604167 L 2532.552083 30916.40625 L 2532.552083 30867.447917 L 2548.4375 30835.416667 L 2565.625 30819.53125 L 2597.395833 30802.604167 L 2678.385417 30802.604167 L 2710.416667 30819.53125 L 2727.604167 30835.416667 L 2743.489583 30867.447917 L 2743.489583 30964.583333 L 2727.604167 30997.395833 L 2710.416667 31013.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2503.125 31748.958333 L 2928.125 31748.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2928.125 31748.958333 L 2928.125 30390.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2247.916667 31494.010417 L 2503.125 31748.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2247.916667 30390.104167 L 2247.916667 31494.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2928.125 30390.104167 L 2247.916667 30390.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4190.625 31616.40625 L 4190.625 32021.614583 L 3340.625 32021.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3745.572917 31333.59375 L 3745.572917 31049.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4190.625 30928.385417 L 4190.625 31333.59375 L 3340.625 31333.59375 L 3340.625 30928.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4190.625 30564.583333 L 3340.625 30564.583333 L 3340.625 30361.458333 L 3381.510417 30240.625 L 3462.5 30159.375 L 3543.489583 30118.489583 L 3704.427083 30078.385417 L 3826.5625 30078.385417 L 3988.541667 30118.489583 L 4069.53125 30159.375 L 4150.520833 30240.625 L 4190.625 30361.458333 L 4190.625 30564.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19442.447917 44394.53125 L 20130.46875 44394.53125 L 20211.458333 44353.385417 L 20252.604167 44313.541667 L 20292.447917 44232.552083 L 20292.447917 44070.572917 L 20252.604167 43989.583333 L 20211.458333 43949.479167 L 20130.46875 43908.59375 L 19442.447917 43908.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19523.4375 43544.53125 L 19483.59375 43503.385417 L 19442.447917 43423.4375 L 19442.447917 43220.572917 L 19483.59375 43139.583333 L 19523.4375 43099.479167 L 19604.427083 43058.59375 L 19685.416667 43058.59375 L 19806.510417 43099.479167 L 20292.447917 43584.375 L 20292.447917 43058.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19055.989583 45446.09375 L 18205.989583 44596.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21604.947917 45446.09375 L 19055.989583 45446.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21604.947917 42046.09375 L 21604.947917 45446.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22854.427083 47611.458333 L 22854.427083 47207.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23097.395833 47692.447917 L 22247.395833 47409.375 L 23097.395833 47126.5625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22247.395833 46964.583333 L 22247.395833 46478.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23097.395833 46721.614583 L 22247.395833 46721.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22530.46875 46316.40625 L 22530.46875 45993.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22247.395833 46195.572917 L 22975.520833 46195.572917 L 23056.510417 46154.427083 L 23097.395833 46074.479167 L 23097.395833 45993.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23097.395833 45709.375 L 22530.46875 45709.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22247.395833 45709.375 L 22287.5 45750.520833 L 22328.385417 45709.375 L 22287.5 45669.53125 L 22247.395833 45709.375 L 22328.385417 45709.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22530.46875 45305.46875 L 23097.395833 45305.46875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22611.458333 45305.46875 L 22571.614583 45264.583333 L 22530.46875 45183.59375 L 22530.46875 45062.5 L 22571.614583 44981.510417 L 22652.604167 44940.625 L 23097.395833 44940.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22530.46875 44616.40625 L 23097.395833 44414.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22530.46875 44212.5 L 23097.395833 44414.583333 L 23299.479167 44495.572917 L 23340.625 44536.458333 L 23380.46875 44616.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22530.46875 43524.479167 L 23097.395833 43524.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22207.552083 43726.5625 L 22814.583333 43928.385417 L 22814.583333 43402.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22530.46875 42714.583333 L 23097.395833 42714.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22207.552083 42917.447917 L 22814.583333 43119.53125 L 22814.583333 42593.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22854.427083 42310.416667 L 22854.427083 41905.46875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23097.395833 42390.625 L 22247.395833 42107.552083 L 23097.395833 41824.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22773.4375 41541.40625 L 22773.4375 40893.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23097.395833 40488.541667 L 22247.395833 40488.541667 L 22854.427083 40205.46875 L 22247.395833 39922.395833 L 23097.395833 39922.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18205.989583 44596.09375 L 18205.989583 42046.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18205.989583 42046.09375 L 21604.947917 42046.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12857.552083 42395.572917 L 12517.447917 42395.572917 L 12517.447917 42314.583333 L 12533.59375 42266.40625 L 12566.40625 42233.59375 L 12598.4375 42217.447917 L 12663.541667 42201.5625 L 12711.458333 42201.5625 L 12776.5625 42217.447917 L 12808.59375 42233.59375 L 12841.40625 42266.40625 L 12857.552083 42314.583333 L 12857.552083 42395.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12517.447917 41893.489583 L 12517.447917 42055.46875 L 12679.427083 42071.614583 L 12663.541667 42055.46875 L 12647.395833 42023.4375 L 12647.395833 41942.447917 L 12663.541667 41909.375 L 12679.427083 41893.489583 L 12711.458333 41877.604167 L 12792.447917 41877.604167 L 12825.520833 41893.489583 L 12841.40625 41909.375 L 12857.552083 41942.447917 L 12857.552083 42023.4375 L 12841.40625 42055.46875 L 12825.520833 42071.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13041.927083 41719.010417 L 12786.979167 41464.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13041.927083 42823.958333 L 13041.927083 41719.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12361.979167 42823.958333 L 13041.927083 42823.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5803.385417 37720.572917 L 5463.541667 37720.572917 L 5463.541667 37640.625 L 5479.427083 37591.40625 L 5511.458333 37559.375 L 5544.53125 37542.447917 L 5608.59375 37526.5625 L 5657.552083 37526.5625 L 5722.395833 37542.447917 L 5754.427083 37559.375 L 5786.458333 37591.40625 L 5803.385417 37640.625 L 5803.385417 37720.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5576.5625 37235.416667 L 5803.385417 37235.416667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5446.614583 37316.40625 L 5689.583333 37397.395833 L 5689.583333 37186.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5733.072917 36790.104167 L 5308.072917 36790.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5308.072917 36790.104167 L 5308.072917 38148.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5988.020833 37045.052083 L 5733.072917 36790.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4819.53125 38016.40625 L 4819.53125 38421.614583 L 3969.53125 38421.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4374.479167 37733.59375 L 4374.479167 37449.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4819.53125 37328.385417 L 4819.53125 37733.59375 L 3969.53125 37733.59375 L 3969.53125 37328.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4819.53125 36964.583333 L 3969.53125 36964.583333 L 3969.53125 36761.458333 L 4010.416667 36640.625 L 4091.40625 36559.375 L 4171.614583 36518.489583 L 4333.59375 36478.385417 L 4455.46875 36478.385417 L 4617.447917 36518.489583 L 4698.4375 36559.375 L 4779.427083 36640.625 L 4819.53125 36761.458333 L 4819.53125 36964.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5988.020833 38148.958333 L 5988.020833 37045.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5308.072917 38148.958333 L 5988.020833 38148.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12786.979167 41464.0625 L 12361.979167 41464.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12361.979167 41464.0625 L 12361.979167 42823.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11874.479167 42691.40625 L 11874.479167 43095.572917 L 11024.479167 43095.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11428.385417 42407.552083 L 11428.385417 42124.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11874.479167 42003.385417 L 11874.479167 42407.552083 L 11024.479167 42407.552083 L 11024.479167 42003.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11874.479167 41638.541667 L 11024.479167 41638.541667 L 11024.479167 41436.458333 L 11064.583333 41314.583333 L 11145.572917 41234.375 L 11226.5625 41193.489583 L 11388.541667 41153.385417 L 11509.375 41153.385417 L 11671.614583 41193.489583 L 11752.604167 41234.375 L 11833.59375 41314.583333 L 11874.479167 41436.458333 L 11874.479167 41638.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37505.46875 23416.40625 L 37165.625 23416.40625 L 37165.625 23335.416667 L 37181.510417 23287.5 L 37214.583333 23254.427083 L 37246.614583 23238.541667 L 37311.458333 23222.395833 L 37359.375 23222.395833 L 37424.479167 23238.541667 L 37457.552083 23254.427083 L 37489.583333 23287.5 L 37505.46875 23335.416667 L 37505.46875 23416.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37505.46875 23060.416667 L 37505.46875 22995.572917 L 37489.583333 22963.541667 L 37473.4375 22947.395833 L 37424.479167 22914.583333 L 37359.375 22898.4375 L 37230.46875 22898.4375 L 37197.395833 22914.583333 L 37181.510417 22930.46875 L 37165.625 22963.541667 L 37165.625 23028.385417 L 37181.510417 23060.416667 L 37197.395833 23076.5625 L 37230.46875 23092.447917 L 37311.458333 23092.447917 L 37343.489583 23076.5625 L 37359.375 23060.416667 L 37376.5625 23028.385417 L 37376.5625 22963.541667 L 37359.375 22930.46875 L 37343.489583 22914.583333 L 37311.458333 22898.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37265.104167 23845.052083 L 37690.104167 23845.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37690.104167 23845.052083 L 37690.104167 22484.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37690.104167 22484.895833 L 37009.895833 22484.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38952.604167 23712.5 L 38952.604167 24116.40625 L 38103.385417 24116.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38507.552083 23428.385417 L 38507.552083 23145.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38952.604167 23023.4375 L 38952.604167 23428.385417 L 38103.385417 23428.385417 L 38103.385417 23023.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38952.604167 22659.375 L 38103.385417 22659.375 L 38103.385417 22457.552083 L 38143.489583 22335.416667 L 38224.479167 22254.427083 L 38305.46875 22214.583333 L 38467.447917 22174.479167 L 38588.541667 22174.479167 L 38750.520833 22214.583333 L 38831.510417 22254.427083 L 38912.5 22335.416667 L 38952.604167 22457.552083 L 38952.604167 22659.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37009.895833 23590.104167 L 37265.104167 23845.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37009.895833 22484.895833 L 37009.895833 23590.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33982.552083 15528.385417 L 34317.447917 15469.53125 L 34331.510417 15549.479167 L 34323.4375 15600.520833 L 34297.395833 15637.5 L 34268.489583 15659.375 L 34207.552083 15686.458333 L 34159.375 15694.53125 L 34092.447917 15690.625 L 34058.59375 15679.427083 L 34020.572917 15653.385417 L 33996.614583 15608.59375 L 33982.552083 15528.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34072.395833 16038.541667 L 34038.541667 15847.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34055.46875 15943.489583 L 34390.625 15884.375 L 34336.458333 15860.416667 L 34299.479167 15834.375 L 34277.604167 15805.46875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34443.489583 16187.5 L 34449.479167 16219.53125 L 34438.541667 16253.385417 L 34425.520833 16272.395833 L 34396.614583 16294.53125 L 34335.416667 16321.614583 L 34255.46875 16335.416667 L 34189.583333 16330.46875 L 34154.427083 16320.572917 L 34135.416667 16307.552083 L 34114.583333 16278.385417 L 34108.59375 16246.614583 L 34119.53125 16211.458333 L 34132.552083 16192.447917 L 34161.458333 16171.614583 L 34222.395833 16144.53125 L 34301.5625 16129.427083 L 34368.489583 16134.375 L 34403.385417 16144.53125 L 34421.614583 16158.59375 L 34443.489583 16187.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34466.927083 15429.947917 L 34171.09375 15223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34659.114583 16519.010417 L 34466.927083 15429.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33989.0625 16636.979167 L 34659.114583 16519.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33765.625 37028.385417 L 33425.520833 37028.385417 L 33425.520833 36947.395833 L 33442.447917 36898.4375 L 33474.479167 36866.40625 L 33506.510417 36850.520833 L 33571.614583 36834.375 L 33620.572917 36834.375 L 33684.375 36850.520833 L 33717.447917 36866.40625 L 33749.479167 36898.4375 L 33765.625 36947.395833 L 33765.625 37028.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33425.520833 36720.572917 L 33425.520833 36494.53125 L 33765.625 36639.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33951.041667 37457.03125 L 33951.041667 36096.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33271.09375 36096.875 L 33271.09375 37202.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33951.041667 36096.875 L 33271.09375 36096.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35213.541667 37323.4375 L 35213.541667 37728.385417 L 34363.541667 37728.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34768.489583 37040.625 L 34768.489583 36757.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35213.541667 36635.416667 L 35213.541667 37040.625 L 34363.541667 37040.625 L 34363.541667 36635.416667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35213.541667 36271.614583 L 34363.541667 36271.614583 L 34363.541667 36069.53125 L 34403.385417 35947.395833 L 34484.375 35866.40625 L 34565.625 35826.5625 L 34727.604167 35785.416667 L 34848.4375 35785.416667 L 35010.416667 35826.5625 L 35091.40625 35866.40625 L 35172.395833 35947.395833 L 35213.541667 36069.53125 L 35213.541667 36271.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33526.041667 37457.03125 L 33951.041667 37457.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33271.09375 37202.083333 L 33526.041667 37457.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27067.96875 41350 L 26642.96875 41350 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27322.916667 41604.947917 L 27067.96875 41350 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27138.541667 42281.510417 L 26798.4375 42281.510417 L 26798.4375 42200.520833 L 26814.583333 42151.5625 L 26846.614583 42119.53125 L 26879.427083 42103.385417 L 26943.489583 42087.5 L 26992.447917 42087.5 L 27057.552083 42103.385417 L 27089.583333 42119.53125 L 27121.614583 42151.5625 L 27138.541667 42200.520833 L 27138.541667 42281.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26798.4375 41795.572917 L 26798.4375 41860.416667 L 26814.583333 41892.447917 L 26830.46875 41908.59375 L 26879.427083 41941.40625 L 26943.489583 41957.552083 L 27073.4375 41957.552083 L 27105.46875 41941.40625 L 27121.614583 41925.520833 L 27138.541667 41892.447917 L 27138.541667 41827.604167 L 27121.614583 41795.572917 L 27105.46875 41779.427083 L 27073.4375 41763.541667 L 26992.447917 41763.541667 L 26960.416667 41779.427083 L 26943.489583 41795.572917 L 26927.604167 41827.604167 L 26927.604167 41892.447917 L 26943.489583 41925.520833 L 26960.416667 41941.40625 L 26992.447917 41957.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26642.96875 41350 L 26642.96875 42709.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27322.916667 42709.895833 L 27322.916667 41604.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26642.96875 42709.895833 L 27322.916667 42709.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26154.427083 42576.5625 L 26154.427083 42981.510417 L 25304.427083 42981.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25709.375 42293.489583 L 25709.375 42010.416667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26154.427083 41888.541667 L 26154.427083 42293.489583 L 25304.427083 42293.489583 L 25304.427083 41888.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26154.427083 41524.479167 L 25304.427083 41524.479167 L 25304.427083 41322.395833 L 25345.572917 41200.520833 L 25426.5625 41119.53125 L 25507.552083 41079.427083 L 25668.489583 41038.541667 L 25790.625 41038.541667 L 25952.604167 41079.427083 L 26033.59375 41119.53125 L 26114.583333 41200.520833 L 26154.427083 41322.395833 L 26154.427083 41524.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37505.46875 31065.625 L 37165.625 31065.625 L 37165.625 30985.416667 L 37181.510417 30936.458333 L 37214.583333 30904.427083 L 37246.614583 30887.5 L 37311.458333 30871.614583 L 37359.375 30871.614583 L 37424.479167 30887.5 L 37457.552083 30904.427083 L 37489.583333 30936.458333 L 37505.46875 30985.416667 L 37505.46875 31065.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37311.458333 30677.604167 L 37295.572917 30709.375 L 37278.385417 30726.5625 L 37246.614583 30742.447917 L 37230.46875 30742.447917 L 37197.395833 30726.5625 L 37181.510417 30709.375 L 37165.625 30677.604167 L 37165.625 30612.5 L 37181.510417 30580.46875 L 37197.395833 30564.583333 L 37230.46875 30547.395833 L 37246.614583 30547.395833 L 37278.385417 30564.583333 L 37295.572917 30580.46875 L 37311.458333 30612.5 L 37311.458333 30677.604167 L 37327.604167 30709.375 L 37343.489583 30726.5625 L 37376.5625 30742.447917 L 37440.625 30742.447917 L 37473.4375 30726.5625 L 37489.583333 30709.375 L 37505.46875 30677.604167 L 37505.46875 30612.5 L 37489.583333 30580.46875 L 37473.4375 30564.583333 L 37440.625 30547.395833 L 37376.5625 30547.395833 L 37343.489583 30564.583333 L 37327.604167 30580.46875 L 37311.458333 30612.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37265.104167 31494.010417 L 37690.104167 31494.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37690.104167 31494.010417 L 37690.104167 30134.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37009.895833 31240.104167 L 37265.104167 31494.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37009.895833 30134.895833 L 37009.895833 31240.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37690.104167 30134.895833 L 37009.895833 30134.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38952.604167 31361.458333 L 38952.604167 31766.40625 L 38103.385417 31766.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38507.552083 31078.385417 L 38507.552083 30794.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38952.604167 30673.4375 L 38952.604167 31078.385417 L 38103.385417 31078.385417 L 38103.385417 30673.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38952.604167 30309.375 L 38103.385417 30309.375 L 38103.385417 30106.510417 L 38143.489583 29985.416667 L 38224.479167 29904.427083 L 38305.46875 29863.541667 L 38467.447917 29823.4375 L 38588.541667 29823.4375 L 38750.520833 29863.541667 L 38831.510417 29904.427083 L 38912.5 29985.416667 L 38952.604167 30106.510417 L 38952.604167 30309.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2403.385417 23272.395833 L 2063.541667 23272.395833 L 2063.541667 23191.40625 L 2079.427083 23142.447917 L 2111.458333 23110.416667 L 2144.53125 23093.489583 L 2209.375 23077.604167 L 2257.552083 23077.604167 L 2322.395833 23093.489583 L 2354.427083 23110.416667 L 2387.5 23142.447917 L 2403.385417 23191.40625 L 2403.385417 23272.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2095.572917 22948.4375 L 2079.427083 22932.552083 L 2063.541667 22899.479167 L 2063.541667 22818.489583 L 2079.427083 22786.458333 L 2095.572917 22770.572917 L 2128.385417 22754.427083 L 2160.416667 22754.427083 L 2209.375 22770.572917 L 2403.385417 22964.583333 L 2403.385417 22754.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2163.020833 23701.041667 L 2588.020833 23701.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1908.072917 23446.09375 L 2163.020833 23701.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1908.072917 22340.885417 L 1908.072917 23446.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2588.020833 22340.885417 L 1908.072917 22340.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3850.520833 23567.447917 L 3850.520833 23972.395833 L 3000.520833 23972.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3405.46875 23284.375 L 3405.46875 23000.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3850.520833 22879.427083 L 3850.520833 23284.375 L 3000.520833 23284.375 L 3000.520833 22879.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3850.520833 22515.625 L 3000.520833 22515.625 L 3000.520833 22312.5 L 3041.40625 22191.40625 L 3122.395833 22110.416667 L 3203.385417 22070.572917 L 3364.583333 22029.427083 L 3486.458333 22029.427083 L 3648.4375 22070.572917 L 3729.427083 22110.416667 L 3810.416667 22191.40625 L 3850.520833 22312.5 L 3850.520833 22515.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5079.427083 16791.40625 L 4745.572917 16731.510417 L 4759.375 16652.604167 L 4783.59375 16607.552083 L 4821.614583 16580.46875 L 4855.46875 16570.572917 L 4922.395833 16565.625 L 4970.572917 16574.479167 L 5031.510417 16601.5625 L 5060.416667 16623.4375 L 5086.458333 16660.416667 L 5093.489583 16711.458333 L 5079.427083 16791.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5169.53125 16280.46875 L 5136.458333 16472.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="51" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5153.385417 16376.5625 L 4818.489583 16317.447917 L 4860.416667 16357.552083 L 4886.458333 16395.572917 L 4897.395833 16429.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4769.010417 17171.09375 L 5186.979167 17245.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5186.979167 17245.052083 L 5423.958333 15905.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4561.979167 16876.041667 L 4769.010417 17171.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4753.90625 15788.020833 L 4561.979167 16876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5423.958333 15905.989583 L 4753.90625 15788.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6453.385417 17333.59375 L 6383.59375 17731.510417 L 5546.614583 17584.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6064.583333 16976.5625 L 6113.541667 16697.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6573.4375 16655.46875 L 6503.385417 17054.427083 L 5666.40625 16906.510417 L 5736.458333 16508.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6636.458333 16296.614583 L 5799.479167 16149.479167 L 5834.375 15950.520833 L 5895.572917 15837.5 L 5989.583333 15771.614583 L 6076.5625 15746.614583 L 6242.447917 15734.375 L 6362.5 15755.46875 L 6514.583333 15823.4375 L 6587.5 15877.604167 L 6653.385417 15971.614583 L 6671.614583 16097.395833 L 6636.458333 16296.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34171.09375 15223.958333 L 33753.125 15296.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33753.125 15296.875 L 33989.0625 16636.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32533.59375 15648.4375 L 32463.541667 15249.479167 L 33300.520833 15102.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33021.614583 15850.520833 L 33070.572917 16129.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32653.385417 16326.5625 L 32582.552083 15927.604167 L 33419.53125 15779.427083 L 33490.625 16178.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32716.40625 16684.375 L 33553.385417 16537.5 L 33588.541667 16736.458333 L 33569.53125 16863.541667 L 33504.427083 16956.510417 L 33431.510417 17010.416667 L 33279.427083 17078.385417 L 33159.375 17099.479167 L 32993.489583 17088.541667 L 32906.510417 17062.5 L 32812.5 16996.614583 L 32751.5625 16884.375 L 32716.40625 16684.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26450 9152.083333 L 28355.989583 10165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28355.989583 10165.104167 L 27853.125 11110.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12366.40625 8518.489583 L 12548.4375 8969.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11669.53125 9062.5 L 12457.552083 8744.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11866.40625 9550.520833 L 12654.427083 9231.510417 L 12775.520833 9532.552083 L 12768.489583 9622.395833 L 12746.614583 9675.520833 L 12686.458333 9742.447917 L 12573.4375 9788.541667 L 12483.59375 9781.510417 L 12431.510417 9758.59375 L 12363.541667 9698.4375 L 12241.40625 9398.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12207.552083 10285.416667 L 12215.625 10413.541667 L 12291.40625 10601.5625 L 12359.375 10660.416667 L 12411.458333 10683.59375 L 12501.5625 10690.625 L 12576.5625 10660.416667 L 12636.458333 10592.447917 L 12659.375 10539.583333 L 12666.40625 10449.479167 L 12643.489583 10284.375 L 12650.520833 10193.489583 L 12672.395833 10141.40625 L 12732.552083 10073.4375 L 12807.552083 10043.489583 L 12898.4375 10050.520833 L 12950.520833 10072.395833 L 13018.489583 10132.552083 L 13094.53125 10320.572917 L 13102.604167 10447.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13186.458333 10763.541667 L 13238.541667 10785.416667 L 13306.510417 10845.572917 L 13382.552083 11033.59375 L 13375.520833 11123.4375 L 13352.604167 11176.5625 L 13292.447917 11243.489583 L 13217.447917 11274.479167 L 13090.625 11282.552083 L 12457.552083 11013.541667 L 12655.46875 11501.5625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11690.104167 10963.020833 L 11288.020833 9970.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13690.885417 10153.90625 L 11690.104167 10963.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11288.020833 9970.052083 L 13290.104167 9160.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13290.104167 9160.9375 L 13690.885417 10153.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26049.479167 11218.489583 L 26277.604167 10789.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26913.541667 11403.385417 L 26163.541667 11004.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27160.416667 10938.541667 L 26410.416667 10539.583333 L 26562.5 10253.385417 L 26635.416667 10201.5625 L 26690.625 10184.375 L 26781.510417 10186.458333 L 26888.541667 10243.489583 L 26940.625 10317.447917 L 26957.552083 10372.395833 L 26955.46875 10462.5 L 26803.385417 10748.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27504.427083 10205.46875 L 27597.395833 10116.40625 L 27692.447917 9938.541667 L 27694.53125 9847.395833 L 27678.385417 9792.447917 L 27625.520833 9719.53125 L 27554.427083 9681.510417 L 27463.541667 9678.385417 L 27408.59375 9695.572917 L 27335.416667 9748.4375 L 27223.4375 9872.395833 L 27149.479167 9924.479167 L 27095.572917 9941.40625 L 27004.427083 9939.583333 L 26933.59375 9901.5625 L 26880.46875 9827.604167 L 26863.541667 9772.395833 L 26866.40625 9682.552083 L 26961.458333 9503.385417 L 27053.385417 9415.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28148.4375 9080.46875 L 27920.572917 9509.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28034.375 9294.53125 L 27284.375 8895.572917 L 27353.385417 9024.479167 L 27386.458333 9133.59375 L 27384.375 9224.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25946.875 10096.875 L 26450 9152.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(68.627451%, 68.627451%, 68.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27853.125 11110.9375 L 25946.875 10096.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36729.947917 21907.03125 L 37971.09375 21907.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34597.916667 14560.9375 L 35034.895833 17039.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33376.041667 14777.083333 L 34597.916667 14560.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35034.895833 17039.0625 L 33813.020833 17254.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33813.020833 17254.947917 L 33376.041667 14777.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36729.947917 24422.916667 L 36729.947917 21907.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37971.09375 24422.916667 L 36729.947917 24422.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37971.09375 21907.03125 L 37971.09375 24422.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36729.947917 32071.875 L 36729.947917 29557.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36729.947917 29557.03125 L 37971.09375 29557.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37971.09375 29557.03125 L 37971.09375 32071.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32990.104167 38034.895833 L 32990.104167 35519.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34230.989583 38034.895833 L 32990.104167 38034.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32990.104167 35519.010417 L 34230.989583 35519.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34230.989583 35519.010417 L 34230.989583 38034.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37971.09375 32071.875 L 36729.947917 32071.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11690.104167 10963.020833 L 13690.885417 10153.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13690.885417 10153.90625 L 13290.104167 9160.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11288.020833 9970.052083 L 11690.104167 10963.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13290.104167 9160.9375 L 11288.020833 9970.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25946.875 10096.875 L 27853.125 11110.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27853.125 11110.9375 L 28355.989583 10165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26450 9152.083333 L 25946.875 10096.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28355.989583 10165.104167 L 26450 9152.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22115.104167 45955.989583 L 22115.104167 41535.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27603.125 40771.875 L 27603.125 43288.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26363.020833 40771.875 L 27603.125 40771.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27603.125 43288.020833 L 26363.020833 43288.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26363.020833 43288.020833 L 26363.020833 40771.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1628.125 24278.90625 L 1628.125 21763.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2869.010417 24278.90625 L 1628.125 24278.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1628.125 21763.020833 L 2869.010417 21763.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2869.010417 21763.020833 L 2869.010417 24278.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4140.885417 17647.916667 L 4578.125 15170.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5363.020833 17863.020833 L 4140.885417 17647.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4578.125 15170.052083 L 5800 15384.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5800 15384.895833 L 5363.020833 17863.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17696.09375 45955.989583 L 22115.104167 45955.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17696.09375 41535.9375 L 17696.09375 45955.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22115.104167 41535.9375 L 17696.09375 41535.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6267.96875 38727.083333 L 5027.083333 38727.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13322.916667 40885.9375 L 13322.916667 43402.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12082.03125 40885.9375 L 13322.916667 40885.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13322.916667 43402.083333 L 12082.03125 43402.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12082.03125 43402.083333 L 12082.03125 40885.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6267.96875 36211.979167 L 6267.96875 38727.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5027.083333 36211.979167 L 6267.96875 36211.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5027.083333 38727.083333 L 5027.083333 36211.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1967.96875 32327.083333 L 1967.96875 29811.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3209.114583 32327.083333 L 1967.96875 32327.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1967.96875 29811.979167 L 3209.114583 29811.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="42" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(100%, 14.901961%, 88.627451%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3209.114583 29811.979167 L 3209.114583 32327.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 556.996094 354.734375 L 563.519531 354.734375 L 563.519531 360.300781 L 556.996094 360.300781 Z M 556.996094 354.734375 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 24020.052083 L 37567.96875 23648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 23648.958333 L 37133.072917 23648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 23648.958333 L 37133.072917 24020.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 24020.052083 L 37567.96875 24020.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 556.996094 334.648438 L 563.519531 334.648438 L 563.519531 340.230469 L 556.996094 340.230469 Z M 556.996094 334.648438 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 22682.03125 L 37567.96875 22309.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 22309.895833 L 37133.072917 22309.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 22309.895833 L 37133.072917 22682.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 22682.03125 L 37567.96875 22682.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 507.644531 226.558594 L 508.605469 232.050781 L 515.039062 230.910156 L 514.078125 225.421875 L 507.644531 226.558594 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33842.96875 15103.90625 L 33907.03125 15470.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33907.03125 15470.052083 L 34335.9375 15394.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34335.9375 15394.010417 L 34271.875 15028.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34271.875 15028.125 L 33842.96875 15103.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 511.125 246.328125 L 512.101562 251.820312 L 518.535156 250.679688 L 517.558594 245.191406 L 511.125 246.328125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34075 16421.875 L 34140.104167 16788.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34140.104167 16788.020833 L 34569.010417 16711.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34569.010417 16711.979167 L 34503.90625 16346.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34503.90625 16346.09375 L 34075 16421.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 556.996094 469.46875 L 563.519531 469.46875 L 563.519531 475.050781 L 556.996094 475.050781 Z M 556.996094 469.46875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 31670.052083 L 37567.96875 31297.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 31297.916667 L 37133.072917 31297.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 31297.916667 L 37133.072917 31670.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 31670.052083 L 37567.96875 31670.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 556.996094 449.386719 L 563.519531 449.386719 L 563.519531 454.964844 L 556.996094 454.964844 Z M 556.996094 449.386719 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 30330.989583 L 37567.96875 29959.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 29959.114583 L 37133.072917 29959.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 29959.114583 L 37133.072917 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 30330.989583 L 37567.96875 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 415.515625 158.878906 L 417.601562 154.933594 L 399.03125 145.066406 L 396.929688 149.011719 L 415.515625 158.878906 "/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27701.041667 10591.927083 L 27840.104167 10328.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27840.104167 10328.90625 L 26602.083333 9671.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26602.083333 9671.09375 L 26461.979167 9934.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26461.979167 9934.114583 L 27701.041667 10591.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 291.40625 627.03125 L 293.011719 627.03125 L 293.011719 636.269531 L 291.40625 636.269531 Z M 291.40625 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 42417.96875 L 19534.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 41802.083333 L 19427.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 41802.083333 L 19427.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 42417.96875 L 19534.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 285.046875 627.03125 L 286.636719 627.03125 L 286.636719 636.269531 L 285.046875 636.269531 Z M 285.046875 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 42417.96875 L 19109.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 41802.083333 L 19003.125 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 41802.083333 L 19003.125 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 42417.96875 L 19109.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 81.449219 549.210938 L 87.988281 549.210938 L 87.988281 554.789062 L 81.449219 554.789062 Z M 81.449219 549.210938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 36614.0625 L 5429.947917 36985.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 36985.9375 L 5865.885417 36985.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 36985.9375 L 5865.885417 36614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 36614.0625 L 5429.947917 36614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 81.449219 569.296875 L 87.988281 569.296875 L 87.988281 574.875 L 81.449219 574.875 Z M 81.449219 569.296875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 37953.125 L 5429.947917 38325 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 38325 L 5865.885417 38325 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 38325 L 5865.885417 37953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 37953.125 L 5429.947917 37953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 35.550781 473.296875 L 42.089844 473.296875 L 42.089844 478.875 L 35.550781 478.875 Z M 35.550781 473.296875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 31925 L 2805.989583 31553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 31553.125 L 2370.052083 31553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 31553.125 L 2370.052083 31925 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 31925 L 2805.989583 31925 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 187.273438 619.335938 L 193.800781 619.335938 L 193.800781 624.914062 L 187.273438 624.914062 Z M 187.273438 619.335938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 41289.0625 L 12484.895833 41660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 41660.9375 L 12920.052083 41660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 41660.9375 L 12920.052083 41289.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 41289.0625 L 12484.895833 41289.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 187.273438 639.421875 L 193.800781 639.421875 L 193.800781 644.984375 L 187.273438 644.984375 Z M 187.273438 639.421875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 42628.125 L 12484.895833 42998.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 42998.958333 L 12920.052083 42998.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 42998.958333 L 12920.052083 42628.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 42628.125 L 12484.895833 42628.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 286.785156 660.976562 L 293.804688 660.976562 L 293.804688 667.980469 L 286.785156 667.980469 Z M 286.785156 660.976562 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19586.979167 44532.03125 L 19586.979167 44065.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19586.979167 44065.104167 L 19119.010417 44065.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19119.010417 44065.104167 L 19119.010417 44532.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19119.010417 44532.03125 L 19586.979167 44532.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 285.046875 676.109375 L 286.636719 676.109375 L 286.636719 685.363281 L 285.046875 685.363281 Z M 285.046875 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 45690.885417 L 19109.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 45073.958333 L 19003.125 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 45073.958333 L 19003.125 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 45690.885417 L 19109.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 291.40625 676.109375 L 293.011719 676.109375 L 293.011719 685.363281 L 291.40625 685.363281 Z M 291.40625 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 45690.885417 L 19534.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 45073.958333 L 19427.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 45073.958333 L 19427.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 45690.885417 L 19534.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 297.78125 676.109375 L 299.386719 676.109375 L 299.386719 685.363281 L 297.78125 685.363281 Z M 297.78125 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 45690.885417 L 19959.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 45073.958333 L 19852.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 45073.958333 L 19852.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 45690.885417 L 19959.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 304.15625 676.109375 L 305.761719 676.109375 L 305.761719 685.363281 L 304.15625 685.363281 Z M 304.15625 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 45690.885417 L 20384.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 45073.958333 L 20277.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 45073.958333 L 20277.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 45690.885417 L 20384.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 303.359375 660.976562 L 310.378906 660.976562 L 310.378906 667.980469 L 303.359375 667.980469 Z M 303.359375 660.976562 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20691.927083 44532.03125 L 20691.927083 44065.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20691.927083 44065.104167 L 20223.958333 44065.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20223.958333 44065.104167 L 20223.958333 44532.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20223.958333 44532.03125 L 20691.927083 44532.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 310.53125 676.109375 L 312.136719 676.109375 L 312.136719 685.363281 L 310.53125 685.363281 Z M 310.53125 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 45690.885417 L 20809.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 45073.958333 L 20702.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 45073.958333 L 20702.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 45690.885417 L 20809.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 318.511719 668.144531 L 327.75 668.144531 L 327.75 669.734375 L 318.511719 669.734375 Z M 318.511719 668.144531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44648.958333 L 21850 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44542.96875 L 21234.114583 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44542.96875 L 21234.114583 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44648.958333 L 21850 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 318.511719 661.769531 L 327.75 661.769531 L 327.75 663.359375 L 318.511719 663.359375 Z M 318.511719 661.769531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44223.958333 L 21850 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44117.96875 L 21234.114583 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44117.96875 L 21234.114583 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44223.958333 L 21850 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 318.511719 655.394531 L 327.75 655.394531 L 327.75 656.984375 L 318.511719 656.984375 Z M 318.511719 655.394531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43798.958333 L 21850 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43692.96875 L 21234.114583 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43692.96875 L 21234.114583 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43798.958333 L 21850 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 286.785156 644.398438 L 293.804688 644.398438 L 293.804688 651.421875 L 286.785156 651.421875 Z M 286.785156 644.398438 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19586.979167 43428.125 L 19586.979167 42959.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19586.979167 42959.895833 L 19119.010417 42959.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19119.010417 42959.895833 L 19119.010417 43428.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19119.010417 43428.125 L 19586.979167 43428.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 303.359375 644.398438 L 310.378906 644.398438 L 310.378906 651.421875 L 303.359375 651.421875 Z M 303.359375 644.398438 "/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20691.927083 43428.125 L 20691.927083 42959.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20691.927083 42959.895833 L 20223.958333 42959.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20223.958333 42959.895833 L 20223.958333 43428.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="425" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20223.958333 43428.125 L 20691.927083 43428.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 310.53125 627.03125 L 312.136719 627.03125 L 312.136719 636.269531 L 310.53125 636.269531 Z M 310.53125 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 42417.96875 L 20809.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 41802.083333 L 20702.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 41802.083333 L 20702.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 42417.96875 L 20809.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 304.15625 627.03125 L 305.761719 627.03125 L 305.761719 636.269531 L 304.15625 636.269531 Z M 304.15625 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 42417.96875 L 20384.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 41802.083333 L 20277.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 41802.083333 L 20277.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 42417.96875 L 20384.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 297.78125 627.03125 L 299.386719 627.03125 L 299.386719 636.269531 L 297.78125 636.269531 Z M 297.78125 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 42417.96875 L 19959.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 41802.083333 L 19852.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 41802.083333 L 19852.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 42417.96875 L 19959.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 269.414062 642.644531 L 278.671875 642.644531 L 278.671875 644.234375 L 269.414062 644.234375 Z M 269.414062 642.644531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 42948.958333 L 18578.125 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 42842.96875 L 17960.9375 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 42842.96875 L 17960.9375 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 42948.958333 L 18578.125 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 269.414062 649.019531 L 278.671875 649.019531 L 278.671875 650.609375 L 269.414062 650.609375 Z M 269.414062 649.019531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43373.958333 L 18578.125 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43267.96875 L 17960.9375 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43267.96875 L 17960.9375 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43373.958333 L 18578.125 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 269.414062 655.394531 L 278.671875 655.394531 L 278.671875 656.984375 L 269.414062 656.984375 Z M 269.414062 655.394531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43798.958333 L 18578.125 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43692.96875 L 17960.9375 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43692.96875 L 17960.9375 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43798.958333 L 18578.125 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 269.414062 661.769531 L 278.671875 661.769531 L 278.671875 663.359375 L 269.414062 663.359375 Z M 269.414062 661.769531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44223.958333 L 18578.125 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44117.96875 L 17960.9375 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44117.96875 L 17960.9375 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44223.958333 L 18578.125 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 269.414062 668.144531 L 278.671875 668.144531 L 278.671875 669.734375 L 269.414062 669.734375 Z M 269.414062 668.144531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44648.958333 L 18578.125 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44542.96875 L 17960.9375 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44542.96875 L 17960.9375 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44648.958333 L 18578.125 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 318.511719 649.019531 L 327.75 649.019531 L 327.75 650.609375 L 318.511719 650.609375 Z M 318.511719 649.019531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43373.958333 L 21850 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43267.96875 L 21234.114583 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43267.96875 L 21234.114583 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43373.958333 L 21850 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 318.511719 642.644531 L 327.75 642.644531 L 327.75 644.234375 L 318.511719 644.234375 Z M 318.511719 642.644531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 42948.958333 L 21850 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 42842.96875 L 21234.114583 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 42842.96875 L 21234.114583 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 42948.958333 L 21850 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 500.894531 558.898438 L 507.433594 558.898438 L 507.433594 564.480469 L 500.894531 564.480469 Z M 500.894531 558.898438 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 37632.03125 L 33828.90625 37259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 37259.895833 L 33392.96875 37259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 37259.895833 L 33392.96875 37632.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 37632.03125 L 33828.90625 37632.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 500.894531 538.828125 L 507.433594 538.828125 L 507.433594 544.394531 L 500.894531 544.394531 Z M 500.894531 538.828125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 36292.96875 L 33828.90625 35921.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 35921.875 L 33392.96875 35921.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 35921.875 L 33392.96875 36292.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 36292.96875 L 33828.90625 36292.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 401.476562 617.625 L 408.015625 617.625 L 408.015625 623.191406 L 401.476562 623.191406 Z M 401.476562 617.625 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 41175 L 26765.104167 41546.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 41546.09375 L 27201.041667 41546.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 41546.09375 L 27201.041667 41175 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 41175 L 26765.104167 41175 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 401.476562 637.695312 L 408.015625 637.695312 L 408.015625 643.273438 L 401.476562 643.273438 Z M 401.476562 637.695312 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 42513.020833 L 26765.104167 42884.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 42884.895833 L 27201.041667 42884.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 42884.895833 L 27201.041667 42513.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 42513.020833 L 26765.104167 42513.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 30.449219 352.558594 L 36.988281 352.558594 L 36.988281 358.140625 L 30.449219 358.140625 Z M 30.449219 352.558594 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 23876.041667 L 2465.885417 23503.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 23503.90625 L 2029.947917 23503.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 23503.90625 L 2029.947917 23876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 23876.041667 L 2465.885417 23876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 30.449219 332.476562 L 36.988281 332.476562 L 36.988281 338.054688 L 30.449219 338.054688 Z M 30.449219 332.476562 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 22536.979167 L 2465.885417 22165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 22165.104167 L 2029.947917 22165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 22165.104167 L 2029.947917 22536.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 22536.979167 L 2465.885417 22536.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 197.941406 149.054688 L 196.261719 144.914062 L 176.761719 152.789062 L 178.425781 156.929688 L 197.941406 149.054688 "/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13196.09375 9936.979167 L 13084.114583 9660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13084.114583 9660.9375 L 11784.114583 10185.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11784.114583 10185.9375 L 11895.052083 10461.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11895.052083 10461.979167 L 13196.09375 9936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 35.550781 453.210938 L 42.089844 453.210938 L 42.089844 458.789062 L 35.550781 458.789062 Z M 35.550781 453.210938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 30585.9375 L 2805.989583 30214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 30214.0625 L 2370.052083 30214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 30214.0625 L 2370.052083 30585.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 30585.9375 L 2805.989583 30585.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 75.554688 260.953125 L 76.515625 255.449219 L 70.078125 254.324219 L 69.121094 259.816406 L 75.554688 260.953125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5036.979167 17396.875 L 5101.041667 17029.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5101.041667 17029.947917 L 4671.875 16954.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4671.875 16954.947917 L 4608.072917 17321.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4608.072917 17321.09375 L 5036.979167 17396.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(70.588235%, 62.745098%, 60.392157%)" fill-opacity="1" d="M 79.035156 241.171875 L 80.011719 235.679688 L 73.574219 234.539062 L 72.601562 240.046875 L 79.035156 241.171875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5269.010417 16078.125 L 5334.114583 15711.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5334.114583 15711.979167 L 4904.947917 15635.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4904.947917 15635.9375 L 4840.104167 16003.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(70.588235%, 62.745098%, 60.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4840.104167 16003.125 L 5269.010417 16078.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1622.916667 24283.072917 L 2872.916667 24283.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2872.916667 24283.072917 L 2872.916667 22340.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1622.916667 22340.885417 L 1622.916667 24283.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2637.5 25866.40625 L 1787.5 25866.40625 L 1787.5 25663.541667 L 1828.385417 25542.447917 L 1909.375 25461.458333 L 1990.625 25420.572917 L 2151.5625 25380.46875 L 2273.4375 25380.46875 L 2435.416667 25420.572917 L 2516.40625 25461.458333 L 2597.395833 25542.447917 L 2637.5 25663.541667 L 2637.5 25866.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1868.489583 25056.510417 L 1828.385417 25016.40625 L 1787.5 24935.416667 L 1787.5 24732.552083 L 1828.385417 24651.5625 L 1868.489583 24611.458333 L 1949.479167 24571.614583 L 2030.46875 24571.614583 L 2151.5625 24611.458333 L 2637.5 25097.395833 L 2637.5 24571.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4120.572917 19274.479167 L 3283.59375 19126.5625 L 3318.489583 18927.604167 L 3379.427083 18815.625 L 3473.4375 18749.479167 L 3559.375 18723.4375 L 3726.5625 18711.458333 L 3846.614583 18732.552083 L 3998.4375 18800.520833 L 4071.614583 18854.427083 L 4136.458333 18948.4375 L 4155.46875 19075.520833 L 4120.572917 19274.479167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4345.572917 17999.479167 L 4260.416667 18477.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4303.385417 18238.541667 L 3466.40625 18090.625 L 3571.614583 18191.40625 L 3637.5 18285.416667 L 3663.541667 18371.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21698.958333 45540.104167 L 21083.072917 45540.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18111.979167 44922.916667 L 18111.979167 45540.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18111.979167 42569.010417 L 18111.979167 41953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18111.979167 41953.125 L 18728.125 41953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19258.59375 46109.375 L 19258.59375 46797.395833 L 19298.4375 46878.385417 L 19339.583333 46918.489583 L 19420.572917 46959.375 L 19582.552083 46959.375 L 19663.541667 46918.489583 L 19703.385417 46878.385417 L 19744.53125 46797.395833 L 19744.53125 46109.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20108.59375 46190.625 L 20148.4375 46149.479167 L 20229.427083 46109.375 L 20432.552083 46109.375 L 20513.541667 46149.479167 L 20553.385417 46190.625 L 20594.53125 46271.614583 L 20594.53125 46352.604167 L 20553.385417 46473.4375 L 20067.447917 46959.375 L 20594.53125 46959.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21698.958333 44922.916667 L 21698.958333 45540.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21698.958333 42569.010417 L 21698.958333 41953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21698.958333 41953.125 L 21083.072917 41953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27608.072917 40767.96875 L 26358.072917 40767.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26358.072917 40767.96875 L 26358.072917 42709.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27608.072917 42709.895833 L 27608.072917 40767.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28585.416667 42657.552083 L 27735.416667 42657.552083 L 27735.416667 42455.46875 L 27775.520833 42333.59375 L 27856.510417 42252.604167 L 27937.5 42212.5 L 28099.479167 42172.395833 L 28221.614583 42172.395833 L 28383.59375 42212.5 L 28464.583333 42252.604167 L 28544.53125 42333.59375 L 28585.416667 42455.46875 L 28585.416667 42657.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27735.416667 41443.489583 L 27735.416667 41605.46875 L 27775.520833 41686.458333 L 27816.40625 41726.5625 L 27937.5 41807.552083 L 28099.479167 41848.4375 L 28423.4375 41848.4375 L 28504.427083 41807.552083 L 28544.53125 41767.447917 L 28585.416667 41686.458333 L 28585.416667 41524.479167 L 28544.53125 41443.489583 L 28504.427083 41403.385417 L 28423.4375 41362.5 L 28221.614583 41362.5 L 28140.625 41403.385417 L 28099.479167 41443.489583 L 28059.375 41524.479167 L 28059.375 41686.458333 L 28099.479167 41767.447917 L 28140.625 41807.552083 L 28221.614583 41848.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6272.916667 36207.03125 L 5022.916667 36207.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5022.916667 36207.03125 L 5022.916667 38148.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6272.916667 38148.958333 L 6272.916667 36207.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7250.520833 38097.395833 L 6400.520833 38097.395833 L 6400.520833 37895.572917 L 6440.625 37773.4375 L 6521.614583 37692.447917 L 6602.604167 37652.604167 L 6764.583333 37611.458333 L 6886.458333 37611.458333 L 7048.4375 37652.604167 L 7128.385417 37692.447917 L 7209.375 37773.4375 L 7250.520833 37895.572917 L 7250.520833 38097.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6683.59375 36883.59375 L 7250.520833 36883.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6359.375 37085.416667 L 6967.447917 37287.5 L 6967.447917 36761.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1963.020833 32332.03125 L 3213.020833 32332.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3213.020833 32332.03125 L 3213.020833 30390.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1963.020833 30390.104167 L 1963.020833 32332.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1759.375 31697.395833 L 909.375 31697.395833 L 909.375 31494.53125 L 950.520833 31373.4375 L 1031.510417 31292.447917 L 1112.5 31252.604167 L 1274.479167 31211.458333 L 1395.572917 31211.458333 L 1557.552083 31252.604167 L 1638.541667 31292.447917 L 1719.53125 31373.4375 L 1759.375 31494.53125 L 1759.375 31697.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 909.375 30928.385417 L 909.375 30402.604167 L 1233.59375 30685.416667 L 1233.59375 30564.583333 L 1274.479167 30483.59375 L 1314.583333 30442.447917 L 1395.572917 30402.604167 L 1597.395833 30402.604167 L 1678.385417 30442.447917 L 1719.53125 30483.59375 L 1759.375 30564.583333 L 1759.375 30806.510417 L 1719.53125 30887.5 L 1678.385417 30928.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13327.083333 40882.03125 L 12078.125 40882.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12078.125 40882.03125 L 12078.125 42823.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13327.083333 42823.958333 L 13327.083333 40882.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14304.427083 42772.395833 L 13454.427083 42772.395833 L 13454.427083 42569.53125 L 13495.572917 42448.4375 L 13576.5625 42367.447917 L 13657.552083 42326.5625 L 13819.53125 42286.458333 L 13940.625 42286.458333 L 14102.604167 42326.5625 L 14183.59375 42367.447917 L 14264.583333 42448.4375 L 14304.427083 42569.53125 L 14304.427083 42772.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13454.427083 41517.447917 L 13454.427083 41922.395833 L 13859.375 41962.5 L 13819.53125 41922.395833 L 13778.385417 41841.40625 L 13778.385417 41638.541667 L 13819.53125 41557.552083 L 13859.375 41517.447917 L 13940.625 41476.5625 L 14142.447917 41476.5625 L 14223.4375 41517.447917 L 14264.583333 41557.552083 L 14304.427083 41638.541667 L 14304.427083 41841.40625 L 14264.583333 41922.395833 L 14223.4375 41962.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36726.041667 24427.083333 L 37975 24427.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37975 24427.083333 L 37975 22484.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36726.041667 22484.895833 L 36726.041667 24427.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36522.395833 23792.447917 L 35672.395833 23792.447917 L 35672.395833 23590.625 L 35712.5 23469.53125 L 35793.489583 23388.541667 L 35874.479167 23347.395833 L 36036.458333 23307.552083 L 36157.552083 23307.552083 L 36319.53125 23347.395833 L 36400.520833 23388.541667 L 36481.510417 23469.53125 L 36522.395833 23590.625 L 36522.395833 23792.447917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36522.395833 22902.604167 L 36522.395833 22740.625 L 36481.510417 22659.375 L 36441.40625 22619.53125 L 36319.53125 22538.541667 L 36157.552083 22497.395833 L 35834.375 22497.395833 L 35753.385417 22538.541667 L 35712.5 22578.385417 L 35672.395833 22659.375 L 35672.395833 22821.614583 L 35712.5 22902.604167 L 35753.385417 22943.489583 L 35834.375 22983.59375 L 36036.458333 22983.59375 L 36117.447917 22943.489583 L 36157.552083 22902.604167 L 36198.4375 22821.614583 L 36198.4375 22659.375 L 36157.552083 22578.385417 L 36117.447917 22538.541667 L 36036.458333 22497.395833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34958.59375 17402.604167 L 35795.572917 17255.46875 L 35830.46875 17454.427083 L 35812.5 17581.510417 L 35746.614583 17674.479167 L 35673.4375 17728.385417 L 35521.614583 17796.614583 L 35401.5625 17817.447917 L 35235.416667 17806.510417 L 35148.4375 17780.46875 L 35054.427083 17714.583333 L 34993.489583 17602.604167 L 34958.59375 17402.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35183.59375 18678.385417 L 35099.479167 18200.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35141.40625 18439.583333 L 35978.385417 18291.40625 L 35844.53125 18232.552083 L 35751.5625 18167.447917 L 35697.395833 18094.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36112.5 19048.4375 L 36126.5625 19128.385417 L 36100.520833 19215.625 L 36067.447917 19262.5 L 35994.53125 19316.40625 L 35842.447917 19384.375 L 35643.489583 19419.53125 L 35476.5625 19407.552083 L 35389.583333 19381.510417 L 35343.489583 19348.4375 L 35289.583333 19276.5625 L 35275.520833 19196.614583 L 35300.520833 19109.375 L 35333.59375 19062.5 L 35406.510417 19008.59375 L 35558.59375 18940.625 L 35758.59375 18905.46875 L 35924.479167 18917.447917 L 36011.458333 18943.489583 L 36058.59375 18976.5625 L 36112.5 19048.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32985.9375 38039.0625 L 34234.895833 38039.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34234.895833 38039.0625 L 34234.895833 36096.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32985.9375 36096.875 L 32985.9375 38039.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32782.552083 37404.427083 L 31932.552083 37404.427083 L 31932.552083 37202.604167 L 31972.395833 37080.46875 L 32053.385417 36999.479167 L 32134.375 36959.375 L 32296.614583 36918.489583 L 32418.489583 36918.489583 L 32580.46875 36959.375 L 32660.416667 36999.479167 L 32741.40625 37080.46875 L 32782.552083 37202.604167 L 32782.552083 37404.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31932.552083 36635.416667 L 31932.552083 36069.53125 L 32782.552083 36433.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36726.041667 32077.083333 L 37975 32077.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37975 32077.083333 L 37975 30134.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36726.041667 30134.895833 L 36726.041667 32077.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36522.395833 31442.447917 L 35672.395833 31442.447917 L 35672.395833 31240.625 L 35712.5 31118.489583 L 35793.489583 31037.5 L 35874.479167 30997.395833 L 36036.458333 30956.510417 L 36157.552083 30956.510417 L 36319.53125 30997.395833 L 36400.520833 31037.5 L 36481.510417 31118.489583 L 36522.395833 31240.625 L 36522.395833 31442.447917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36036.458333 30471.614583 L 35995.572917 30551.5625 L 35955.46875 30592.447917 L 35874.479167 30632.552083 L 35834.375 30632.552083 L 35753.385417 30592.447917 L 35712.5 30551.5625 L 35672.395833 30471.614583 L 35672.395833 30309.375 L 35712.5 30228.385417 L 35753.385417 30187.5 L 35834.375 30147.395833 L 35874.479167 30147.395833 L 35955.46875 30187.5 L 35995.572917 30228.385417 L 36036.458333 30309.375 L 36036.458333 30471.614583 L 36076.5625 30551.5625 L 36117.447917 30592.447917 L 36198.4375 30632.552083 L 36360.416667 30632.552083 L 36441.40625 30592.447917 L 36481.510417 30551.5625 L 36522.395833 30471.614583 L 36522.395833 30309.375 L 36481.510417 30228.385417 L 36441.40625 30187.5 L 36360.416667 30147.395833 L 36198.4375 30147.395833 L 36117.447917 30187.5 L 36076.5625 30228.385417 L 36036.458333 30309.375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8351.5625 11984.375 L 8763.541667 11727.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9008.59375 12576.5625 L 8557.552083 11856.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9454.427083 12298.4375 L 9003.385417 11577.604167 L 9278.385417 11405.46875 L 9368.489583 11397.395833 L 9424.479167 11410.416667 L 9501.5625 11457.552083 L 9566.40625 11560.416667 L 9574.479167 11650.520833 L 9561.458333 11706.510417 L 9514.583333 11783.59375 L 9239.583333 11954.427083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10119.53125 11834.375 L 10243.489583 11804.427083 L 10415.625 11697.395833 L 10462.5 11620.572917 L 10475.520833 11564.583333 L 10466.40625 11474.479167 L 10424.479167 11405.46875 L 10346.614583 11358.59375 L 10291.40625 11345.572917 L 10200.520833 11354.427083 L 10042.447917 11405.46875 L 9952.604167 11414.583333 L 9896.614583 11401.5625 L 9819.53125 11354.427083 L 9776.5625 11285.416667 L 9767.447917 11195.572917 L 9780.46875 11139.583333 L 9827.604167 11062.5 L 9999.479167 10955.46875 L 10123.4375 10925.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10419.53125 10788.541667 L 10432.552083 10732.552083 L 10479.427083 10655.46875 L 10651.5625 10547.395833 L 10741.40625 10539.583333 L 10797.395833 10552.604167 L 10874.479167 10599.479167 L 10917.447917 10668.489583 L 10947.395833 10792.447917 L 10792.447917 11461.458333 L 11239.583333 11182.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4135.9375 17651.041667 L 5366.927083 17867.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5366.927083 17867.96875 L 5703.90625 15954.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4473.958333 15738.020833 L 4135.9375 17651.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34602.083333 14557.03125 L 33371.09375 14772.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33371.09375 14772.916667 L 33709.114583 16685.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="102" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34939.0625 16469.010417 L 34602.083333 14557.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29156.510417 10600.520833 L 29539.583333 10900.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28824.479167 11420.572917 L 29347.395833 10750.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29239.583333 11744.53125 L 29762.5 11074.479167 L 30017.447917 11273.4375 L 30056.510417 11355.46875 L 30063.541667 11412.5 L 30045.572917 11501.5625 L 29970.572917 11596.614583 L 29889.583333 11635.416667 L 29832.552083 11642.447917 L 29743.489583 11624.479167 L 29488.541667 11425.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29901.5625 12210.416667 L 29972.395833 12317.447917 L 30132.552083 12441.40625 L 30220.572917 12459.375 L 30277.604167 12452.604167 L 30359.375 12413.541667 L 30409.375 12350.520833 L 30427.604167 12261.458333 L 30420.572917 12204.427083 L 30381.510417 12122.395833 L 30278.385417 11991.40625 L 30239.583333 11909.375 L 30232.552083 11852.604167 L 30250.520833 11764.583333 L 30300.520833 11700.520833 L 30382.552083 11661.458333 L 30439.583333 11654.427083 L 30527.604167 11672.395833 L 30687.5 11797.395833 L 30758.59375 11903.385417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30897.395833 13039.583333 L 30514.583333 12740.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="127" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(94.901961%, 92.941176%, 63.137255%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30706.510417 12890.625 L 31229.427083 12220.572917 L 31090.625 12266.40625 L 30977.604167 12280.46875 L 30888.541667 12262.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 556.996094 354.734375 L 563.519531 354.734375 L 563.519531 360.300781 L 556.996094 360.300781 Z M 556.996094 354.734375 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 24020.052083 L 37567.96875 23648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 23648.958333 L 37133.072917 23648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 23648.958333 L 37133.072917 24020.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 24020.052083 L 37567.96875 24020.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 556.996094 334.648438 L 563.519531 334.648438 L 563.519531 340.230469 L 556.996094 340.230469 Z M 556.996094 334.648438 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 22682.03125 L 37567.96875 22309.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 22309.895833 L 37133.072917 22309.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 22309.895833 L 37133.072917 22682.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 22682.03125 L 37567.96875 22682.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 507.644531 226.558594 L 508.605469 232.050781 L 515.039062 230.910156 L 514.078125 225.421875 L 507.644531 226.558594 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33842.96875 15103.90625 L 33907.03125 15470.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33907.03125 15470.052083 L 34335.9375 15394.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34335.9375 15394.010417 L 34271.875 15028.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34271.875 15028.125 L 33842.96875 15103.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 511.125 246.328125 L 512.101562 251.820312 L 518.535156 250.679688 L 517.558594 245.191406 L 511.125 246.328125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34075 16421.875 L 34140.104167 16788.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34140.104167 16788.020833 L 34569.010417 16711.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34569.010417 16711.979167 L 34503.90625 16346.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34503.90625 16346.09375 L 34075 16421.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 556.996094 469.46875 L 563.519531 469.46875 L 563.519531 475.050781 L 556.996094 475.050781 Z M 556.996094 469.46875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 31670.052083 L 37567.96875 31297.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 31297.916667 L 37133.072917 31297.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 31297.916667 L 37133.072917 31670.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 31670.052083 L 37567.96875 31670.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 556.996094 449.386719 L 563.519531 449.386719 L 563.519531 454.964844 L 556.996094 454.964844 Z M 556.996094 449.386719 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 30330.989583 L 37567.96875 29959.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 29959.114583 L 37133.072917 29959.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 29959.114583 L 37133.072917 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 30330.989583 L 37567.96875 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 415.515625 158.878906 L 417.601562 154.933594 L 399.03125 145.066406 L 396.929688 149.011719 L 415.515625 158.878906 "/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27701.041667 10591.927083 L 27840.104167 10328.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27840.104167 10328.90625 L 26602.083333 9671.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26602.083333 9671.09375 L 26461.979167 9934.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26461.979167 9934.114583 L 27701.041667 10591.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 285.046875 627.03125 L 286.636719 627.03125 L 286.636719 636.269531 L 285.046875 636.269531 Z M 285.046875 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 42417.96875 L 19109.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 41802.083333 L 19003.125 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 41802.083333 L 19003.125 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 42417.96875 L 19109.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 269.414062 642.644531 L 278.671875 642.644531 L 278.671875 644.234375 L 269.414062 644.234375 Z M 269.414062 642.644531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 42948.958333 L 18578.125 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 42842.96875 L 17960.9375 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 42842.96875 L 17960.9375 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 42948.958333 L 18578.125 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 81.449219 549.210938 L 87.988281 549.210938 L 87.988281 554.789062 L 81.449219 554.789062 Z M 81.449219 549.210938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 36614.0625 L 5429.947917 36985.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 36985.9375 L 5865.885417 36985.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 36985.9375 L 5865.885417 36614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 36614.0625 L 5429.947917 36614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 81.449219 569.296875 L 87.988281 569.296875 L 87.988281 574.875 L 81.449219 574.875 Z M 81.449219 569.296875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 37953.125 L 5429.947917 38325 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 38325 L 5865.885417 38325 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 38325 L 5865.885417 37953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 37953.125 L 5429.947917 37953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 35.550781 473.296875 L 42.089844 473.296875 L 42.089844 478.875 L 35.550781 478.875 Z M 35.550781 473.296875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 31925 L 2805.989583 31553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 31553.125 L 2370.052083 31553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 31553.125 L 2370.052083 31925 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 31925 L 2805.989583 31925 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 187.273438 619.335938 L 193.800781 619.335938 L 193.800781 624.914062 L 187.273438 624.914062 Z M 187.273438 619.335938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 41289.0625 L 12484.895833 41660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 41660.9375 L 12920.052083 41660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 41660.9375 L 12920.052083 41289.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 41289.0625 L 12484.895833 41289.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 187.273438 639.421875 L 193.800781 639.421875 L 193.800781 644.984375 L 187.273438 644.984375 Z M 187.273438 639.421875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 42628.125 L 12484.895833 42998.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 42998.958333 L 12920.052083 42998.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 42998.958333 L 12920.052083 42628.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 42628.125 L 12484.895833 42628.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 297.78125 676.109375 L 299.386719 676.109375 L 299.386719 685.363281 L 297.78125 685.363281 Z M 297.78125 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 45690.885417 L 19959.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 45073.958333 L 19852.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 45073.958333 L 19852.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 45690.885417 L 19959.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 304.15625 676.109375 L 305.761719 676.109375 L 305.761719 685.363281 L 304.15625 685.363281 Z M 304.15625 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 45690.885417 L 20384.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 45073.958333 L 20277.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 45073.958333 L 20277.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 45690.885417 L 20384.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 310.53125 676.109375 L 312.136719 676.109375 L 312.136719 685.363281 L 310.53125 685.363281 Z M 310.53125 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 45690.885417 L 20809.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 45073.958333 L 20702.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 45073.958333 L 20702.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 45690.885417 L 20809.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 318.511719 668.144531 L 327.75 668.144531 L 327.75 669.734375 L 318.511719 669.734375 Z M 318.511719 668.144531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44648.958333 L 21850 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44542.96875 L 21234.114583 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44542.96875 L 21234.114583 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44648.958333 L 21850 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 318.511719 661.769531 L 327.75 661.769531 L 327.75 663.359375 L 318.511719 663.359375 Z M 318.511719 661.769531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44223.958333 L 21850 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44117.96875 L 21234.114583 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44117.96875 L 21234.114583 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44223.958333 L 21850 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 318.511719 655.394531 L 327.75 655.394531 L 327.75 656.984375 L 318.511719 656.984375 Z M 318.511719 655.394531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43798.958333 L 21850 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43692.96875 L 21234.114583 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43692.96875 L 21234.114583 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43798.958333 L 21850 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 318.511719 649.019531 L 327.75 649.019531 L 327.75 650.609375 L 318.511719 650.609375 Z M 318.511719 649.019531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43373.958333 L 21850 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43267.96875 L 21234.114583 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43267.96875 L 21234.114583 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43373.958333 L 21850 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 304.15625 627.03125 L 305.761719 627.03125 L 305.761719 636.269531 L 304.15625 636.269531 Z M 304.15625 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 42417.96875 L 20384.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 41802.083333 L 20277.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 41802.083333 L 20277.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 42417.96875 L 20384.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 297.78125 627.03125 L 299.386719 627.03125 L 299.386719 636.269531 L 297.78125 636.269531 Z M 297.78125 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 42417.96875 L 19959.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 41802.083333 L 19852.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 41802.083333 L 19852.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 42417.96875 L 19959.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 285.046875 676.109375 L 286.636719 676.109375 L 286.636719 685.363281 L 285.046875 685.363281 Z M 285.046875 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 45690.885417 L 19109.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 45073.958333 L 19003.125 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 45073.958333 L 19003.125 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 45690.885417 L 19109.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 291.40625 676.109375 L 293.011719 676.109375 L 293.011719 685.363281 L 291.40625 685.363281 Z M 291.40625 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 45690.885417 L 19534.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 45073.958333 L 19427.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 45073.958333 L 19427.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 45690.885417 L 19534.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 291.40625 627.03125 L 293.011719 627.03125 L 293.011719 636.269531 L 291.40625 636.269531 Z M 291.40625 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 42417.96875 L 19534.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 41802.083333 L 19427.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 41802.083333 L 19427.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 42417.96875 L 19534.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 269.414062 649.019531 L 278.671875 649.019531 L 278.671875 650.609375 L 269.414062 650.609375 Z M 269.414062 649.019531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43373.958333 L 18578.125 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43267.96875 L 17960.9375 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43267.96875 L 17960.9375 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43373.958333 L 18578.125 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 269.414062 655.394531 L 278.671875 655.394531 L 278.671875 656.984375 L 269.414062 656.984375 Z M 269.414062 655.394531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43798.958333 L 18578.125 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43692.96875 L 17960.9375 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43692.96875 L 17960.9375 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43798.958333 L 18578.125 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 269.414062 661.769531 L 278.671875 661.769531 L 278.671875 663.359375 L 269.414062 663.359375 Z M 269.414062 661.769531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44223.958333 L 18578.125 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44117.96875 L 17960.9375 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44117.96875 L 17960.9375 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44223.958333 L 18578.125 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 269.414062 668.144531 L 278.671875 668.144531 L 278.671875 669.734375 L 269.414062 669.734375 Z M 269.414062 668.144531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44648.958333 L 18578.125 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44542.96875 L 17960.9375 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44542.96875 L 17960.9375 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44648.958333 L 18578.125 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 282.015625 639.613281 L 315.148438 639.613281 L 315.148438 672.765625 L 282.015625 672.765625 Z M 282.015625 639.613281 "/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 318.511719 642.644531 L 327.75 642.644531 L 327.75 644.234375 L 318.511719 644.234375 Z M 318.511719 642.644531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 42948.958333 L 21850 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 42842.96875 L 21234.114583 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 42842.96875 L 21234.114583 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 42948.958333 L 21850 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 310.53125 627.03125 L 312.136719 627.03125 L 312.136719 636.269531 L 310.53125 636.269531 Z M 310.53125 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 42417.96875 L 20809.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 41802.083333 L 20702.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 41802.083333 L 20702.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 42417.96875 L 20809.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 500.894531 558.898438 L 507.433594 558.898438 L 507.433594 564.480469 L 500.894531 564.480469 Z M 500.894531 558.898438 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 37632.03125 L 33828.90625 37259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 37259.895833 L 33392.96875 37259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 37259.895833 L 33392.96875 37632.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 37632.03125 L 33828.90625 37632.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 500.894531 538.828125 L 507.433594 538.828125 L 507.433594 544.394531 L 500.894531 544.394531 Z M 500.894531 538.828125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 36292.96875 L 33828.90625 35921.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 35921.875 L 33392.96875 35921.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 35921.875 L 33392.96875 36292.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 36292.96875 L 33828.90625 36292.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 401.476562 617.625 L 408.015625 617.625 L 408.015625 623.191406 L 401.476562 623.191406 Z M 401.476562 617.625 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 41175 L 26765.104167 41546.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 41546.09375 L 27201.041667 41546.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 41546.09375 L 27201.041667 41175 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 41175 L 26765.104167 41175 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 401.476562 637.695312 L 408.015625 637.695312 L 408.015625 643.273438 L 401.476562 643.273438 Z M 401.476562 637.695312 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 42513.020833 L 26765.104167 42884.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 42884.895833 L 27201.041667 42884.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 42884.895833 L 27201.041667 42513.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 42513.020833 L 26765.104167 42513.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 30.449219 352.558594 L 36.988281 352.558594 L 36.988281 358.140625 L 30.449219 358.140625 Z M 30.449219 352.558594 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 23876.041667 L 2465.885417 23503.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 23503.90625 L 2029.947917 23503.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 23503.90625 L 2029.947917 23876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 23876.041667 L 2465.885417 23876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 30.449219 332.476562 L 36.988281 332.476562 L 36.988281 338.054688 L 30.449219 338.054688 Z M 30.449219 332.476562 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 22536.979167 L 2465.885417 22165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 22165.104167 L 2029.947917 22165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 22165.104167 L 2029.947917 22536.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 22536.979167 L 2465.885417 22536.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 197.941406 149.054688 L 196.261719 144.914062 L 176.761719 152.789062 L 178.425781 156.929688 L 197.941406 149.054688 "/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13196.09375 9936.979167 L 13084.114583 9660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13084.114583 9660.9375 L 11784.114583 10185.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11784.114583 10185.9375 L 11895.052083 10461.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11895.052083 10461.979167 L 13196.09375 9936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 35.550781 453.210938 L 42.089844 453.210938 L 42.089844 458.789062 L 35.550781 458.789062 Z M 35.550781 453.210938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 30585.9375 L 2805.989583 30214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 30214.0625 L 2370.052083 30214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 30214.0625 L 2370.052083 30585.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 30585.9375 L 2805.989583 30585.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 75.554688 260.953125 L 76.515625 255.449219 L 70.078125 254.324219 L 69.121094 259.816406 L 75.554688 260.953125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5036.979167 17396.875 L 5101.041667 17029.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5101.041667 17029.947917 L 4671.875 16954.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4671.875 16954.947917 L 4608.072917 17321.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4608.072917 17321.09375 L 5036.979167 17396.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(84.705882%, 39.215686%, 100%)" fill-opacity="1" d="M 79.035156 241.171875 L 80.011719 235.679688 L 73.574219 234.539062 L 72.601562 240.046875 L 79.035156 241.171875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5269.010417 16078.125 L 5334.114583 15711.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5334.114583 15711.979167 L 4904.947917 15635.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4904.947917 15635.9375 L 4840.104167 16003.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(84.705882%, 39.215686%, 100%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4840.104167 16003.125 L 5269.010417 16078.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19055.989583 45382.03125 L 18398.958333 46039.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18398.958333 46039.0625 L 16722.916667 46039.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18227.083333 45360.9375 L 18396.875 45190.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17886.979167 45360.9375 L 18227.083333 45360.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18396.875 45190.885417 L 18396.875 44723.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15903.90625 46584.895833 L 19141.927083 46584.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16615.885417 46296.09375 L 19067.96875 46296.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16348.958333 45190.885417 L 16952.083333 45190.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15803.90625 46847.916667 L 19813.020833 46847.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20330.989583 45850 L 20330.989583 45382.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20290.885417 45890.104167 L 20330.989583 45850 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19905.989583 45821.875 L 19905.989583 45382.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19480.989583 45884.114583 L 19480.989583 45382.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20754.947917 45754.947917 L 20754.947917 45382.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20938.020833 45936.979167 L 20754.947917 45754.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17190.104167 44192.96875 L 16304.947917 44192.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18396.875 44723.958333 L 18269.010417 44596.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19905.989583 41472.916667 L 19905.989583 42109.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19746.09375 41314.0625 L 19905.989583 41472.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21073.958333 41790.885417 L 20754.947917 42109.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21541.927083 43746.09375 L 19905.989583 43746.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20704.947917 41451.041667 L 20330.989583 41826.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20330.989583 41826.041667 L 20330.989583 41919.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14940.885417 41234.895833 L 15757.03125 42052.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16822.916667 41257.03125 L 16860.9375 41295.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19553.125 41315.885417 L 19746.09375 41314.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18908.072917 41295.052083 L 19553.125 41315.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16860.9375 41295.052083 L 18908.072917 41295.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20290.885417 46817.96875 L 20290.885417 45890.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19141.927083 46584.895833 L 19905.989583 45821.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19067.96875 46296.09375 L 19480.989583 45884.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19813.020833 46847.916667 L 19915.104167 46951.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20938.020833 46692.96875 L 20938.020833 45936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20665.885417 46965.885417 L 20938.020833 46692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16722.916667 46039.0625 L 14559.114583 43875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15045.052083 45726.041667 L 15903.90625 46584.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14529.947917 44209.895833 L 16615.885417 46296.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14589.0625 43619.010417 L 14776.041667 43619.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14776.041667 43619.010417 L 16348.958333 45190.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14938.020833 45982.03125 L 15803.90625 46847.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19915.104167 46951.041667 L 19915.104167 46972.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20665.885417 46972.916667 L 20665.885417 46965.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19915.104167 46972.916667 L 20134.895833 47192.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20134.895833 47192.96875 L 20446.09375 47192.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20446.09375 47192.96875 L 20665.885417 46972.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13421.09375 42814.0625 L 11553.90625 42814.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13288.020833 41621.09375 L 13288.020833 41135.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11809.895833 40264.0625 L 13022.916667 40264.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12003.90625 40007.03125 L 13240.885417 40007.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11936.979167 40966.927083 L 14589.0625 43619.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16304.947917 44192.96875 L 14598.958333 42486.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17427.083333 43265.104167 L 17795.052083 42896.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17795.052083 42896.09375 L 18269.010417 42896.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16347.916667 43265.104167 L 14704.947917 41621.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17427.083333 43265.104167 L 16347.916667 43265.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14146.09375 40910.9375 L 16119.010417 40910.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16119.010417 40910.9375 L 16464.0625 41257.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16464.0625 41257.03125 L 16822.916667 41257.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12691.927083 40540.104167 L 11119.010417 40540.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11145.052083 44495.052083 L 10865.104167 44215.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10865.104167 44215.104167 L 10110.9375 44215.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12044.010417 44702.083333 L 12734.895833 44702.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10747.916667 40966.927083 L 11936.979167 40966.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11277.083333 45290.104167 L 12303.125 45290.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10458.072917 44471.09375 L 11277.083333 45290.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14483.072917 43875 L 13421.09375 42814.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14559.114583 43875 L 14483.072917 43875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13758.072917 45726.041667 L 15045.052083 45726.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12230.989583 44209.895833 L 14529.947917 44209.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14704.947917 41621.09375 L 13288.020833 41621.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13288.020833 41135.9375 L 12691.927083 40540.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13022.916667 40264.0625 L 13995.052083 41234.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13995.052083 41234.895833 L 14940.885417 41234.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13240.885417 40007.03125 L 14146.09375 40910.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12734.895833 44702.083333 L 13758.072917 45726.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12734.895833 44702.083333 L 12798.958333 44702.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12303.125 45290.104167 L 12951.041667 45936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13642.96875 45982.03125 L 14938.020833 45982.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13597.916667 45936.979167 L 13642.96875 45982.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12951.041667 45936.979167 L 13597.916667 45936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4542.96875 33964.0625 L 4542.96875 33716.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4530.989583 38634.895833 L 4530.989583 35535.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2588.020833 32808.072917 L 5817.96875 36036.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1725 33240.104167 L 4098.958333 35614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3114.0625 35039.0625 L 3114.0625 36615.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11553.90625 42814.0625 L 6905.989583 38165.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7496.875 41090.104167 L 8430.989583 41090.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10645.052083 39097.916667 L 11809.895833 40264.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10163.020833 38378.90625 L 10376.041667 38378.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10376.041667 38378.90625 L 12003.90625 40007.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11119.010417 40540.104167 L 4542.96875 33964.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4963.020833 38557.03125 L 7496.875 41090.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5817.96875 38309.114583 L 8173.958333 40665.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5178.90625 33847.916667 L 9055.989583 37726.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5817.96875 36036.979167 L 10747.916667 40966.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10110.9375 44215.104167 L 4530.989583 38634.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10325 39097.916667 L 10645.052083 39097.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9509.895833 37726.041667 L 10163.020833 38378.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9055.989583 37726.041667 L 9509.895833 37726.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4098.958333 39222.916667 L 4641.927083 39222.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4641.927083 39222.916667 L 9890.885417 44471.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1940.104167 31065.104167 L 1940.104167 32553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2588.020833 31482.03125 L 2588.020833 32808.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1725 33092.96875 L 1725 33240.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1014.0625 32745.052083 L 1084.114583 32814.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1014.0625 31060.9375 L 1014.0625 32745.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 891.927083 30939.0625 L 1014.0625 31060.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 891.927083 30939.0625 L 853.90625 30939.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4963.020833 35575 L 4963.020833 38557.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5647.916667 36207.03125 L 5817.96875 36036.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5647.916667 36800 L 5647.916667 36207.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4098.958333 35614.0625 L 4098.958333 39222.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8430.989583 41090.104167 L 12044.010417 44702.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8173.958333 40665.104167 L 8685.9375 40665.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8685.9375 40665.104167 L 12230.989583 44209.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 9890.885417 44471.09375 L 10458.072917 44471.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4530.989583 35535.9375 L 1600 32604.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1940.104167 32553.125 L 4963.020833 35575 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1292.96875 32660.9375 L 1725 33092.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1084.114583 33009.114583 L 3114.0625 35039.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1084.114583 32814.0625 L 1084.114583 33009.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22665.104167 46801.041667 L 23972.916667 46801.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24403.90625 46369.010417 L 25536.979167 46369.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23972.916667 46801.041667 L 24403.90625 46369.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25139.0625 42698.958333 L 21371.875 46465.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24601.041667 46040.885417 L 22391.927083 46040.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23157.03125 43746.09375 L 21541.927083 43746.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29421.875 42483.072917 L 31947.916667 42483.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 31485.9375 39157.03125 L 24601.041667 46040.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32590.885417 39157.03125 L 31485.9375 39157.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28164.0625 41360.9375 L 26983.072917 41360.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33940.104167 36108.072917 L 34630.989583 35416.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33610.9375 36108.072917 L 33940.104167 36108.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35928.125 32673.958333 L 27846.09375 40755.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32078.90625 37446.09375 L 28164.0625 41360.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33610.9375 37446.09375 L 32078.90625 37446.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35617.96875 32559.114583 L 27698.958333 40478.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25536.979167 46369.010417 L 29421.875 42483.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24430.989583 41790.885417 L 21073.958333 41790.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25130.989583 41771.09375 L 23157.03125 43746.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26571.875 41771.09375 L 25130.989583 41771.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24378.125 41451.041667 L 20704.947917 41451.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26983.072917 42698.958333 L 25139.0625 42698.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25466.927083 40755.989583 L 24430.989583 41790.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27846.09375 40755.989583 L 25466.927083 40755.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26983.072917 41360.9375 L 26571.875 41771.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25352.083333 40478.125 L 24378.125 41451.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27698.958333 40478.125 L 25352.083333 40478.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1600 32604.947917 L 1600 23257.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2179.947917 31065.104167 L 1940.104167 31065.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2588.020833 30657.03125 L 2179.947917 31065.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2247.916667 25002.083333 L 3235.9375 25990.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3235.9375 25990.104167 L 3235.9375 30834.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3235.9375 30834.114583 L 2588.020833 31482.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2247.916667 23433.072917 L 2247.916667 25002.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1292.96875 22973.958333 L 1292.96875 32660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1600 23257.03125 L 2247.916667 22608.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3020.052083 22660.9375 L 2247.916667 23433.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3020.052083 20890.104167 L 3020.052083 22660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2163.020833 20967.96875 L 1409.114583 21722.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1409.114583 21722.916667 L 1409.114583 22858.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1409.114583 22858.072917 L 1292.96875 22973.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3969.010417 18046.875 L 5813.020833 16203.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11359.114583 10294.010417 L 11617.96875 10165.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5813.020833 16203.125 L 5813.020833 15840.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11617.96875 10165.885417 L 11697.916667 10130.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5813.020833 15840.104167 L 11359.114583 10294.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11697.916667 10130.989583 L 12490.104167 10130.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4948.958333 15846.875 L 3667.96875 17128.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3969.010417 19586.979167 L 3969.010417 18046.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2842.96875 20713.020833 L 3969.010417 19586.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2842.96875 20713.020833 L 3020.052083 20890.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2163.020833 20671.875 L 2163.020833 20967.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3667.96875 17128.90625 L 3667.96875 19167.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3667.96875 19167.96875 L 2163.020833 20671.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36501.041667 31252.083333 L 36501.041667 32102.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 30402.083333 L 36501.041667 31252.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36482.03125 30826.041667 L 35928.125 31378.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38425 30409.895833 L 37350 31484.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36050 30609.895833 L 35617.96875 31040.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 22753.125 L 36482.03125 23621.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38425 22759.895833 L 38425 22405.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 23834.114583 L 38425 22759.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38425 22405.989583 L 37560.9375 21542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37560.9375 21542.96875 L 37560.9375 19815.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35402.083333 17657.03125 L 35402.083333 16360.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37560.9375 19815.885417 L 35402.083333 17657.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34205.989583 16577.083333 L 34848.958333 17221.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34848.958333 18183.072917 L 36050 19384.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34848.958333 17221.09375 L 34848.958333 18183.072917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35928.125 31378.90625 L 35928.125 32673.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 33705.989583 L 33610.9375 37446.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 31484.114583 L 37350 33705.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35617.96875 31040.885417 L 35617.96875 32559.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36482.03125 23621.875 L 36482.03125 30826.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 23834.114583 L 37350 27160.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37350 27160.9375 L 38425 28234.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38425 28234.895833 L 38425 30409.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36050 19384.114583 L 36050 30609.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35402.083333 16360.9375 L 34279.947917 15239.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30869.010417 12259.895833 L 30436.979167 12259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33101.041667 14594.010417 L 33101.041667 14491.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33101.041667 14491.927083 L 30869.010417 12259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30436.979167 12259.895833 L 29573.958333 11396.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29573.958333 11396.09375 L 29358.072917 11396.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29358.072917 11396.09375 L 28709.895833 10747.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 28709.895833 10747.916667 L 27767.96875 10747.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="149" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27767.96875 10747.916667 L 27151.041667 10130.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 556.996094 354.734375 L 563.519531 354.734375 L 563.519531 360.300781 L 556.996094 360.300781 Z M 556.996094 354.734375 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 24020.052083 L 37567.96875 23648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 23648.958333 L 37133.072917 23648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 23648.958333 L 37133.072917 24020.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 24020.052083 L 37567.96875 24020.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 556.996094 334.648438 L 563.519531 334.648438 L 563.519531 340.230469 L 556.996094 340.230469 Z M 556.996094 334.648438 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 22682.03125 L 37567.96875 22309.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 22309.895833 L 37133.072917 22309.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 22309.895833 L 37133.072917 22682.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 22682.03125 L 37567.96875 22682.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 507.644531 226.558594 L 508.605469 232.050781 L 515.039062 230.910156 L 514.078125 225.421875 L 507.644531 226.558594 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33842.96875 15103.90625 L 33907.03125 15470.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33907.03125 15470.052083 L 34335.9375 15394.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34335.9375 15394.010417 L 34271.875 15028.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34271.875 15028.125 L 33842.96875 15103.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 511.125 246.328125 L 512.101562 251.820312 L 518.535156 250.679688 L 517.558594 245.191406 L 511.125 246.328125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34075 16421.875 L 34140.104167 16788.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34140.104167 16788.020833 L 34569.010417 16711.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34569.010417 16711.979167 L 34503.90625 16346.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34503.90625 16346.09375 L 34075 16421.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 556.996094 469.46875 L 563.519531 469.46875 L 563.519531 475.050781 L 556.996094 475.050781 Z M 556.996094 469.46875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 31670.052083 L 37567.96875 31297.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 31297.916667 L 37133.072917 31297.916667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 31297.916667 L 37133.072917 31670.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 31670.052083 L 37567.96875 31670.052083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 556.996094 449.386719 L 563.519531 449.386719 L 563.519531 454.964844 L 556.996094 454.964844 Z M 556.996094 449.386719 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 30330.989583 L 37567.96875 29959.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37567.96875 29959.114583 L 37133.072917 29959.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 29959.114583 L 37133.072917 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37133.072917 30330.989583 L 37567.96875 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 415.515625 158.878906 L 417.601562 154.933594 L 399.03125 145.066406 L 396.929688 149.011719 L 415.515625 158.878906 "/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27701.041667 10591.927083 L 27840.104167 10328.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27840.104167 10328.90625 L 26602.083333 9671.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26602.083333 9671.09375 L 26461.979167 9934.114583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26461.979167 9934.114583 L 27701.041667 10591.927083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 285.046875 627.03125 L 286.636719 627.03125 L 286.636719 636.269531 L 285.046875 636.269531 Z M 285.046875 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 42417.96875 L 19109.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 41802.083333 L 19003.125 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 41802.083333 L 19003.125 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 42417.96875 L 19109.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 269.414062 642.644531 L 278.671875 642.644531 L 278.671875 644.234375 L 269.414062 644.234375 Z M 269.414062 642.644531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 42948.958333 L 18578.125 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 42842.96875 L 17960.9375 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 42842.96875 L 17960.9375 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 42948.958333 L 18578.125 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 81.449219 549.210938 L 87.988281 549.210938 L 87.988281 554.789062 L 81.449219 554.789062 Z M 81.449219 549.210938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 36614.0625 L 5429.947917 36985.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 36985.9375 L 5865.885417 36985.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 36985.9375 L 5865.885417 36614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 36614.0625 L 5429.947917 36614.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 81.449219 569.296875 L 87.988281 569.296875 L 87.988281 574.875 L 81.449219 574.875 Z M 81.449219 569.296875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 37953.125 L 5429.947917 38325 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5429.947917 38325 L 5865.885417 38325 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 38325 L 5865.885417 37953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5865.885417 37953.125 L 5429.947917 37953.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 35.550781 473.296875 L 42.089844 473.296875 L 42.089844 478.875 L 35.550781 478.875 Z M 35.550781 473.296875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 31925 L 2805.989583 31553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 31553.125 L 2370.052083 31553.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 31553.125 L 2370.052083 31925 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 31925 L 2805.989583 31925 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 187.273438 619.335938 L 193.800781 619.335938 L 193.800781 624.914062 L 187.273438 624.914062 Z M 187.273438 619.335938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 41289.0625 L 12484.895833 41660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 41660.9375 L 12920.052083 41660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 41660.9375 L 12920.052083 41289.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 41289.0625 L 12484.895833 41289.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 187.273438 639.421875 L 193.800781 639.421875 L 193.800781 644.984375 L 187.273438 644.984375 Z M 187.273438 639.421875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 42628.125 L 12484.895833 42998.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12484.895833 42998.958333 L 12920.052083 42998.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 42998.958333 L 12920.052083 42628.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12920.052083 42628.125 L 12484.895833 42628.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 297.78125 676.109375 L 299.386719 676.109375 L 299.386719 685.363281 L 297.78125 685.363281 Z M 297.78125 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 45690.885417 L 19959.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 45073.958333 L 19852.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 45073.958333 L 19852.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 45690.885417 L 19959.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 304.15625 676.109375 L 305.761719 676.109375 L 305.761719 685.363281 L 304.15625 685.363281 Z M 304.15625 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 45690.885417 L 20384.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 45073.958333 L 20277.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 45073.958333 L 20277.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 45690.885417 L 20384.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 310.53125 676.109375 L 312.136719 676.109375 L 312.136719 685.363281 L 310.53125 685.363281 Z M 310.53125 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 45690.885417 L 20809.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 45073.958333 L 20702.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 45073.958333 L 20702.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 45690.885417 L 20809.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 318.511719 668.144531 L 327.75 668.144531 L 327.75 669.734375 L 318.511719 669.734375 Z M 318.511719 668.144531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44648.958333 L 21850 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44542.96875 L 21234.114583 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44542.96875 L 21234.114583 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44648.958333 L 21850 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 318.511719 661.769531 L 327.75 661.769531 L 327.75 663.359375 L 318.511719 663.359375 Z M 318.511719 661.769531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44223.958333 L 21850 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 44117.96875 L 21234.114583 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44117.96875 L 21234.114583 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 44223.958333 L 21850 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 318.511719 655.394531 L 327.75 655.394531 L 327.75 656.984375 L 318.511719 656.984375 Z M 318.511719 655.394531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43798.958333 L 21850 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43692.96875 L 21234.114583 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43692.96875 L 21234.114583 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43798.958333 L 21850 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 318.511719 649.019531 L 327.75 649.019531 L 327.75 650.609375 L 318.511719 650.609375 Z M 318.511719 649.019531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43373.958333 L 21850 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 43267.96875 L 21234.114583 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43267.96875 L 21234.114583 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 43373.958333 L 21850 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 304.15625 627.03125 L 305.761719 627.03125 L 305.761719 636.269531 L 304.15625 636.269531 Z M 304.15625 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 42417.96875 L 20384.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.114583 41802.083333 L 20277.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 41802.083333 L 20277.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20277.083333 42417.96875 L 20384.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 297.78125 627.03125 L 299.386719 627.03125 L 299.386719 636.269531 L 297.78125 636.269531 Z M 297.78125 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 42417.96875 L 19959.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19959.114583 41802.083333 L 19852.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 41802.083333 L 19852.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19852.083333 42417.96875 L 19959.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 285.046875 676.109375 L 286.636719 676.109375 L 286.636719 685.363281 L 285.046875 685.363281 Z M 285.046875 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 45690.885417 L 19109.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19109.114583 45073.958333 L 19003.125 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 45073.958333 L 19003.125 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19003.125 45690.885417 L 19109.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 291.40625 676.109375 L 293.011719 676.109375 L 293.011719 685.363281 L 291.40625 685.363281 Z M 291.40625 676.109375 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 45690.885417 L 19534.114583 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 45073.958333 L 19427.083333 45073.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 45073.958333 L 19427.083333 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 45690.885417 L 19534.114583 45690.885417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 291.40625 627.03125 L 293.011719 627.03125 L 293.011719 636.269531 L 291.40625 636.269531 Z M 291.40625 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 42417.96875 L 19534.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19534.114583 41802.083333 L 19427.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 41802.083333 L 19427.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19427.083333 42417.96875 L 19534.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 269.414062 649.019531 L 278.671875 649.019531 L 278.671875 650.609375 L 269.414062 650.609375 Z M 269.414062 649.019531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43373.958333 L 18578.125 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43267.96875 L 17960.9375 43267.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43267.96875 L 17960.9375 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43373.958333 L 18578.125 43373.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 269.414062 655.394531 L 278.671875 655.394531 L 278.671875 656.984375 L 269.414062 656.984375 Z M 269.414062 655.394531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43798.958333 L 18578.125 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 43692.96875 L 17960.9375 43692.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43692.96875 L 17960.9375 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 43798.958333 L 18578.125 43798.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 269.414062 661.769531 L 278.671875 661.769531 L 278.671875 663.359375 L 269.414062 663.359375 Z M 269.414062 661.769531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44223.958333 L 18578.125 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44117.96875 L 17960.9375 44117.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44117.96875 L 17960.9375 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44223.958333 L 18578.125 44223.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 269.414062 668.144531 L 278.671875 668.144531 L 278.671875 669.734375 L 269.414062 669.734375 Z M 269.414062 668.144531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44648.958333 L 18578.125 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18578.125 44542.96875 L 17960.9375 44542.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44542.96875 L 17960.9375 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17960.9375 44648.958333 L 18578.125 44648.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 282.015625 639.613281 L 315.148438 639.613281 L 315.148438 672.765625 L 282.015625 672.765625 Z M 282.015625 639.613281 "/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 318.511719 642.644531 L 327.75 642.644531 L 327.75 644.234375 L 318.511719 644.234375 Z M 318.511719 642.644531 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 42948.958333 L 21850 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21850 42842.96875 L 21234.114583 42842.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 42842.96875 L 21234.114583 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21234.114583 42948.958333 L 21850 42948.958333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 310.53125 627.03125 L 312.136719 627.03125 L 312.136719 636.269531 L 310.53125 636.269531 Z M 310.53125 627.03125 "/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 42417.96875 L 20809.114583 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20809.114583 41802.083333 L 20702.083333 41802.083333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 41802.083333 L 20702.083333 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="106" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20702.083333 42417.96875 L 20809.114583 42417.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 500.894531 558.898438 L 507.433594 558.898438 L 507.433594 564.480469 L 500.894531 564.480469 Z M 500.894531 558.898438 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 37632.03125 L 33828.90625 37259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 37259.895833 L 33392.96875 37259.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 37259.895833 L 33392.96875 37632.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 37632.03125 L 33828.90625 37632.03125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 500.894531 538.828125 L 507.433594 538.828125 L 507.433594 544.394531 L 500.894531 544.394531 Z M 500.894531 538.828125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 36292.96875 L 33828.90625 35921.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33828.90625 35921.875 L 33392.96875 35921.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 35921.875 L 33392.96875 36292.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33392.96875 36292.96875 L 33828.90625 36292.96875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 401.476562 617.625 L 408.015625 617.625 L 408.015625 623.191406 L 401.476562 623.191406 Z M 401.476562 617.625 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 41175 L 26765.104167 41546.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 41546.09375 L 27201.041667 41546.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 41546.09375 L 27201.041667 41175 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 41175 L 26765.104167 41175 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 401.476562 637.695312 L 408.015625 637.695312 L 408.015625 643.273438 L 401.476562 643.273438 Z M 401.476562 637.695312 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 42513.020833 L 26765.104167 42884.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26765.104167 42884.895833 L 27201.041667 42884.895833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 42884.895833 L 27201.041667 42513.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 27201.041667 42513.020833 L 26765.104167 42513.020833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 30.449219 352.558594 L 36.988281 352.558594 L 36.988281 358.140625 L 30.449219 358.140625 Z M 30.449219 352.558594 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 23876.041667 L 2465.885417 23503.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 23503.90625 L 2029.947917 23503.90625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 23503.90625 L 2029.947917 23876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 23876.041667 L 2465.885417 23876.041667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 30.449219 332.476562 L 36.988281 332.476562 L 36.988281 338.054688 L 30.449219 338.054688 Z M 30.449219 332.476562 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 22536.979167 L 2465.885417 22165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2465.885417 22165.104167 L 2029.947917 22165.104167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 22165.104167 L 2029.947917 22536.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2029.947917 22536.979167 L 2465.885417 22536.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 197.941406 149.054688 L 196.261719 144.914062 L 176.761719 152.789062 L 178.425781 156.929688 L 197.941406 149.054688 "/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13196.09375 9936.979167 L 13084.114583 9660.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 13084.114583 9660.9375 L 11784.114583 10185.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11784.114583 10185.9375 L 11895.052083 10461.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="297" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11895.052083 10461.979167 L 13196.09375 9936.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 35.550781 453.210938 L 42.089844 453.210938 L 42.089844 458.789062 L 35.550781 458.789062 Z M 35.550781 453.210938 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 30585.9375 L 2805.989583 30214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2805.989583 30214.0625 L 2370.052083 30214.0625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 30214.0625 L 2370.052083 30585.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2370.052083 30585.9375 L 2805.989583 30585.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 75.554688 260.953125 L 76.515625 255.449219 L 70.078125 254.324219 L 69.121094 259.816406 L 75.554688 260.953125 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5036.979167 17396.875 L 5101.041667 17029.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5101.041667 17029.947917 L 4671.875 16954.947917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4671.875 16954.947917 L 4608.072917 17321.09375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4608.072917 17321.09375 L 5036.979167 17396.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(78.431373%, 20.392157%, 20.392157%)" fill-opacity="1" d="M 79.035156 241.171875 L 80.011719 235.679688 L 73.574219 234.539062 L 72.601562 240.046875 L 79.035156 241.171875 "/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5269.010417 16078.125 L 5334.114583 15711.979167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5334.114583 15711.979167 L 4904.947917 15635.9375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4904.947917 15635.9375 L 4840.104167 16003.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="372" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(78.431373%, 20.392157%, 20.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4840.104167 16003.125 L 5269.010417 16078.125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(76.078431%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 29616.927083 42131.510417 C 29616.927083 43164.0625 29066.145833 44118.489583 28171.875 44634.635417 C 27277.34375 45151.041667 26175.520833 45151.041667 25281.25 44634.635417 C 24386.979167 44118.489583 23835.9375 43164.0625 23835.9375 42131.510417 C 23835.9375 41098.697917 24386.979167 40144.53125 25281.25 39628.125 C 26175.520833 39111.979167 27277.34375 39111.979167 28171.875 39628.125 C 29066.145833 40144.53125 29616.927083 41098.697917 29616.927083 42131.510417 Z M 29616.927083 42131.510417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(76.078431%, 76.078431%, 76.078431%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15135.9375 41791.40625 C 15135.9375 42824.21875 14585.15625 43778.385417 13690.625 44294.791667 C 12796.354167 44811.197917 11694.53125 44811.197917 10800.260417 44294.791667 C 9905.989583 43778.385417 9354.947917 42824.21875 9354.947917 41791.40625 C 9354.947917 40758.854167 9905.989583 39804.6875 10800.260417 39288.28125 C 11694.53125 38771.875 12796.354167 38771.875 13690.625 39288.28125 C 14585.15625 39804.6875 15135.9375 40758.854167 15135.9375 41791.40625 Z M 15135.9375 41791.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22792.96875 46801.5625 C 22792.96875 46871.875 22735.9375 46928.90625 22665.625 46928.90625 C 22595.052083 46928.90625 22538.020833 46871.875 22538.020833 46801.5625 C 22538.020833 46730.989583 22595.052083 46673.958333 22665.625 46673.958333 C 22735.9375 46673.958333 22792.96875 46730.989583 22792.96875 46801.5625 Z M 22792.96875 46801.5625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21500 46466.40625 C 21500 46536.979167 21442.96875 46594.010417 21372.395833 46594.010417 C 21302.083333 46594.010417 21245.052083 46536.979167 21245.052083 46466.40625 C 21245.052083 46396.09375 21302.083333 46339.0625 21372.395833 46339.0625 C 21442.96875 46339.0625 21500 46396.09375 21500 46466.40625 Z M 21500 46466.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20419.010417 46818.489583 C 20419.010417 46888.802083 20361.979167 46946.09375 20291.40625 46946.09375 C 20221.09375 46946.09375 20164.0625 46888.802083 20164.0625 46818.489583 C 20164.0625 46748.177083 20221.09375 46690.885417 20291.40625 46690.885417 C 20361.979167 46690.885417 20419.010417 46748.177083 20419.010417 46818.489583 Z M 20419.010417 46818.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21670.052083 43321.614583 C 21670.052083 43391.927083 21613.020833 43448.958333 21542.447917 43448.958333 C 21472.135417 43448.958333 21415.104167 43391.927083 21415.104167 43321.614583 C 21415.104167 43251.041667 21472.135417 43194.010417 21542.447917 43194.010417 C 21613.020833 43194.010417 21670.052083 43251.041667 21670.052083 43321.614583 Z M 21670.052083 43321.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7034.114583 38166.40625 C 7034.114583 38236.979167 6976.822917 38294.010417 6906.510417 38294.010417 C 6836.197917 38294.010417 6778.90625 38236.979167 6778.90625 38166.40625 C 6778.90625 38096.09375 6836.197917 38039.0625 6906.510417 38039.0625 C 6976.822917 38039.0625 7034.114583 38096.09375 7034.114583 38166.40625 Z M 7034.114583 38166.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1020.052083 30939.583333 C 1020.052083 31009.895833 963.020833 31066.927083 892.447917 31066.927083 C 822.135417 31066.927083 765.104167 31009.895833 765.104167 30939.583333 C 765.104167 30869.010417 822.135417 30811.979167 892.447917 30811.979167 C 963.020833 30811.979167 1020.052083 30869.010417 1020.052083 30939.583333 Z M 1020.052083 30939.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3241.927083 36615.625 C 3241.927083 36685.9375 3184.895833 36742.96875 3114.583333 36742.96875 C 3044.010417 36742.96875 2986.979167 36685.9375 2986.979167 36615.625 C 2986.979167 36545.052083 3044.010417 36488.020833 3114.583333 36488.020833 C 3184.895833 36488.020833 3241.927083 36545.052083 3241.927083 36615.625 Z M 3241.927083 36615.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4671.09375 33717.447917 C 4671.09375 33788.020833 4613.802083 33845.052083 4543.489583 33845.052083 C 4473.177083 33845.052083 4415.885417 33788.020833 4415.885417 33717.447917 C 4415.885417 33647.135417 4473.177083 33590.104167 4543.489583 33590.104167 C 4613.802083 33590.104167 4671.09375 33647.135417 4671.09375 33717.447917 Z M 4671.09375 33717.447917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5307.03125 33848.4375 C 5307.03125 33919.010417 5250 33976.041667 5179.427083 33976.041667 C 5109.114583 33976.041667 5052.083333 33919.010417 5052.083333 33848.4375 C 5052.083333 33778.125 5109.114583 33721.09375 5179.427083 33721.09375 C 5250 33721.09375 5307.03125 33778.125 5307.03125 33848.4375 Z M 5307.03125 33848.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2971.09375 20713.541667 C 2971.09375 20783.854167 2913.802083 20840.885417 2843.489583 20840.885417 C 2773.177083 20840.885417 2715.885417 20783.854167 2715.885417 20713.541667 C 2715.885417 20642.96875 2773.177083 20585.9375 2843.489583 20585.9375 C 2913.802083 20585.9375 2971.09375 20642.96875 2971.09375 20713.541667 Z M 2971.09375 20713.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32076.041667 42483.59375 C 32076.041667 42553.90625 32019.010417 42610.9375 31948.4375 42610.9375 C 31878.125 42610.9375 31821.09375 42553.90625 31821.09375 42483.59375 C 31821.09375 42413.020833 31878.125 42355.989583 31948.4375 42355.989583 C 32019.010417 42355.989583 32076.041667 42413.020833 32076.041667 42483.59375 Z M 32076.041667 42483.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34759.114583 35417.447917 C 34759.114583 35488.020833 34701.822917 35545.052083 34631.510417 35545.052083 C 34561.197917 35545.052083 34503.90625 35488.020833 34503.90625 35417.447917 C 34503.90625 35347.135417 34561.197917 35290.104167 34631.510417 35290.104167 C 34701.822917 35290.104167 34759.114583 35347.135417 34759.114583 35417.447917 Z M 34759.114583 35417.447917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22520.052083 46041.40625 C 22520.052083 46111.979167 22463.020833 46169.010417 22392.447917 46169.010417 C 22322.135417 46169.010417 22265.104167 46111.979167 22265.104167 46041.40625 C 22265.104167 45971.09375 22322.135417 45914.0625 22392.447917 45914.0625 C 22463.020833 45914.0625 22520.052083 45971.09375 22520.052083 46041.40625 Z M 22520.052083 46041.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32719.010417 39157.552083 C 32719.010417 39227.864583 32661.979167 39284.895833 32591.40625 39284.895833 C 32521.09375 39284.895833 32464.0625 39227.864583 32464.0625 39157.552083 C 32464.0625 39086.979167 32521.09375 39029.947917 32591.40625 39029.947917 C 32661.979167 39029.947917 32719.010417 39086.979167 32719.010417 39157.552083 Z M 32719.010417 39157.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36628.90625 32102.604167 C 36628.90625 32172.916667 36571.875 32229.947917 36501.5625 32229.947917 C 36430.989583 32229.947917 36373.958333 32172.916667 36373.958333 32102.604167 C 36373.958333 32032.03125 36430.989583 31975 36501.5625 31975 C 36571.875 31975 36628.90625 32032.03125 36628.90625 32102.604167 Z M 36628.90625 32102.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33228.90625 14594.53125 C 33228.90625 14664.84375 33171.875 14721.875 33101.5625 14721.875 C 33030.989583 14721.875 32973.958333 14664.84375 32973.958333 14594.53125 C 32973.958333 14523.958333 33030.989583 14466.927083 33101.5625 14466.927083 C 33171.875 14466.927083 33228.90625 14523.958333 33228.90625 14594.53125 Z M 33228.90625 14594.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14727.083333 42487.5 C 14727.083333 42557.8125 14669.791667 42615.104167 14599.479167 42615.104167 C 14529.166667 42615.104167 14471.875 42557.8125 14471.875 42487.5 C 14471.875 42417.1875 14529.166667 42359.895833 14599.479167 42359.895833 C 14669.791667 42359.895833 14727.083333 42417.1875 14727.083333 42487.5 Z M 14727.083333 42487.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11272.916667 44495.572917 C 11272.916667 44565.885417 11215.885417 44622.916667 11145.572917 44622.916667 C 11075 44622.916667 11017.96875 44565.885417 11017.96875 44495.572917 C 11017.96875 44425 11075 44367.96875 11145.572917 44367.96875 C 11215.885417 44367.96875 11272.916667 44425 11272.916667 44495.572917 Z M 11272.916667 44495.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15884.895833 42052.604167 C 15884.895833 42122.916667 15827.864583 42179.947917 15757.552083 42179.947917 C 15686.979167 42179.947917 15629.947917 42122.916667 15629.947917 42052.604167 C 15629.947917 41982.03125 15686.979167 41925 15757.552083 41925 C 15827.864583 41925 15884.895833 41982.03125 15884.895833 42052.604167 Z M 15884.895833 42052.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10453.125 39098.4375 C 10453.125 39169.010417 10395.833333 39226.041667 10325.520833 39226.041667 C 10255.208333 39226.041667 10197.916667 39169.010417 10197.916667 39098.4375 C 10197.916667 39028.125 10255.208333 38971.09375 10325.520833 38971.09375 C 10395.833333 38971.09375 10453.125 39028.125 10453.125 39098.4375 Z M 10453.125 39098.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17317.96875 44193.489583 C 17317.96875 44263.802083 17260.9375 44321.09375 17190.625 44321.09375 C 17120.052083 44321.09375 17063.020833 44263.802083 17063.020833 44193.489583 C 17063.020833 44123.177083 17120.052083 44065.885417 17190.625 44065.885417 C 17260.9375 44065.885417 17317.96875 44123.177083 17317.96875 44193.489583 Z M 17317.96875 44193.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 18015.104167 45361.458333 C 18015.104167 45432.03125 17957.8125 45489.0625 17887.5 45489.0625 C 17817.1875 45489.0625 17759.895833 45432.03125 17759.895833 45361.458333 C 17759.895833 45291.145833 17817.1875 45234.114583 17887.5 45234.114583 C 17957.8125 45234.114583 18015.104167 45291.145833 18015.104167 45361.458333 Z M 18015.104167 45361.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17554.947917 43265.625 C 17554.947917 43335.9375 17497.916667 43392.96875 17427.604167 43392.96875 C 17357.03125 43392.96875 17300 43335.9375 17300 43265.625 C 17300 43195.052083 17357.03125 43138.020833 17427.604167 43138.020833 C 17497.916667 43138.020833 17554.947917 43195.052083 17554.947917 43265.625 Z M 17554.947917 43265.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19153.125 42250.520833 C 19153.125 42320.833333 19095.833333 42378.125 19025.520833 42378.125 C 18955.208333 42378.125 18897.916667 42320.833333 18897.916667 42250.520833 C 18897.916667 42180.208333 18955.208333 42122.916667 19025.520833 42122.916667 C 19095.833333 42122.916667 19153.125 42180.208333 19153.125 42250.520833 Z M 19153.125 42250.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20309.895833 44086.458333 C 20309.895833 44157.03125 20252.864583 44214.0625 20182.552083 44214.0625 C 20111.979167 44214.0625 20054.947917 44157.03125 20054.947917 44086.458333 C 20054.947917 44016.145833 20111.979167 43959.114583 20182.552083 43959.114583 C 20252.864583 43959.114583 20309.895833 44016.145833 20309.895833 44086.458333 Z M 20309.895833 44086.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17079.947917 45191.40625 C 17079.947917 45261.979167 17022.916667 45319.010417 16952.604167 45319.010417 C 16882.03125 45319.010417 16825 45261.979167 16825 45191.40625 C 16825 45121.09375 16882.03125 45064.0625 16952.604167 45064.0625 C 17022.916667 45064.0625 17079.947917 45121.09375 17079.947917 45191.40625 Z M 17079.947917 45191.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22759.114583 46801.5625 C 22759.114583 46853.125 22717.1875 46895.052083 22665.625 46895.052083 C 22613.802083 46895.052083 22571.875 46853.125 22571.875 46801.5625 C 22571.875 46749.739583 22613.802083 46708.072917 22665.625 46708.072917 C 22717.1875 46708.072917 22759.114583 46749.739583 22759.114583 46801.5625 Z M 22759.114583 46801.5625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21465.885417 46466.40625 C 21465.885417 46518.229167 21424.21875 46559.895833 21372.395833 46559.895833 C 21320.833333 46559.895833 21278.90625 46518.229167 21278.90625 46466.40625 C 21278.90625 46414.84375 21320.833333 46372.916667 21372.395833 46372.916667 C 21424.21875 46372.916667 21465.885417 46414.84375 21465.885417 46466.40625 Z M 21465.885417 46466.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20384.895833 46818.489583 C 20384.895833 46870.052083 20343.229167 46911.979167 20291.40625 46911.979167 C 20239.84375 46911.979167 20197.916667 46870.052083 20197.916667 46818.489583 C 20197.916667 46766.927083 20239.84375 46725 20291.40625 46725 C 20343.229167 46725 20384.895833 46766.927083 20384.895833 46818.489583 Z M 20384.895833 46818.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 21635.9375 43321.614583 C 21635.9375 43373.177083 21594.010417 43415.104167 21542.447917 43415.104167 C 21490.885417 43415.104167 21448.958333 43373.177083 21448.958333 43321.614583 C 21448.958333 43269.791667 21490.885417 43228.125 21542.447917 43228.125 C 21594.010417 43228.125 21635.9375 43269.791667 21635.9375 43321.614583 Z M 21635.9375 43321.614583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7000 38166.40625 C 7000 38218.229167 6958.072917 38259.895833 6906.510417 38259.895833 C 6854.947917 38259.895833 6813.020833 38218.229167 6813.020833 38166.40625 C 6813.020833 38114.84375 6854.947917 38072.916667 6906.510417 38072.916667 C 6958.072917 38072.916667 7000 38114.84375 7000 38166.40625 Z M 7000 38166.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 985.9375 30939.583333 C 985.9375 30991.145833 944.010417 31033.072917 892.447917 31033.072917 C 840.885417 31033.072917 798.958333 30991.145833 798.958333 30939.583333 C 798.958333 30887.760417 840.885417 30846.09375 892.447917 30846.09375 C 944.010417 30846.09375 985.9375 30887.760417 985.9375 30939.583333 Z M 985.9375 30939.583333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3208.072917 36615.625 C 3208.072917 36667.1875 3166.145833 36709.114583 3114.583333 36709.114583 C 3062.760417 36709.114583 3021.09375 36667.1875 3021.09375 36615.625 C 3021.09375 36563.802083 3062.760417 36521.875 3114.583333 36521.875 C 3166.145833 36521.875 3208.072917 36563.802083 3208.072917 36615.625 Z M 3208.072917 36615.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 4636.979167 33717.447917 C 4636.979167 33769.010417 4595.052083 33810.9375 4543.489583 33810.9375 C 4491.927083 33810.9375 4450 33769.010417 4450 33717.447917 C 4450 33665.885417 4491.927083 33623.958333 4543.489583 33623.958333 C 4595.052083 33623.958333 4636.979167 33665.885417 4636.979167 33717.447917 Z M 4636.979167 33717.447917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 5272.916667 33848.4375 C 5272.916667 33900.260417 5231.25 33941.927083 5179.427083 33941.927083 C 5127.864583 33941.927083 5085.9375 33900.260417 5085.9375 33848.4375 C 5085.9375 33796.875 5127.864583 33754.947917 5179.427083 33754.947917 C 5231.25 33754.947917 5272.916667 33796.875 5272.916667 33848.4375 Z M 5272.916667 33848.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2936.979167 20713.541667 C 2936.979167 20765.104167 2895.052083 20807.03125 2843.489583 20807.03125 C 2791.927083 20807.03125 2750 20765.104167 2750 20713.541667 C 2750 20661.979167 2791.927083 20620.052083 2843.489583 20620.052083 C 2895.052083 20620.052083 2936.979167 20661.979167 2936.979167 20713.541667 Z M 2936.979167 20713.541667 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32041.927083 42483.59375 C 32041.927083 42535.15625 32000.260417 42577.083333 31948.4375 42577.083333 C 31896.875 42577.083333 31854.947917 42535.15625 31854.947917 42483.59375 C 31854.947917 42431.770833 31896.875 42390.104167 31948.4375 42390.104167 C 32000.260417 42390.104167 32041.927083 42431.770833 32041.927083 42483.59375 Z M 32041.927083 42483.59375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 34725 35417.447917 C 34725 35469.010417 34683.072917 35510.9375 34631.510417 35510.9375 C 34579.947917 35510.9375 34538.020833 35469.010417 34538.020833 35417.447917 C 34538.020833 35365.885417 34579.947917 35323.958333 34631.510417 35323.958333 C 34683.072917 35323.958333 34725 35365.885417 34725 35417.447917 Z M 34725 35417.447917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22485.9375 46041.40625 C 22485.9375 46093.229167 22444.010417 46134.895833 22392.447917 46134.895833 C 22340.885417 46134.895833 22298.958333 46093.229167 22298.958333 46041.40625 C 22298.958333 45989.84375 22340.885417 45947.916667 22392.447917 45947.916667 C 22444.010417 45947.916667 22485.9375 45989.84375 22485.9375 46041.40625 Z M 22485.9375 46041.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32684.895833 39157.552083 C 32684.895833 39209.114583 32643.229167 39251.041667 32591.40625 39251.041667 C 32539.84375 39251.041667 32497.916667 39209.114583 32497.916667 39157.552083 C 32497.916667 39105.989583 32539.84375 39064.0625 32591.40625 39064.0625 C 32643.229167 39064.0625 32684.895833 39105.989583 32684.895833 39157.552083 Z M 32684.895833 39157.552083 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 36595.052083 32102.604167 C 36595.052083 32154.166667 36553.125 32196.09375 36501.5625 32196.09375 C 36449.739583 32196.09375 36408.072917 32154.166667 36408.072917 32102.604167 C 36408.072917 32050.78125 36449.739583 32009.114583 36501.5625 32009.114583 C 36553.125 32009.114583 36595.052083 32050.78125 36595.052083 32102.604167 Z M 36595.052083 32102.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 33195.052083 14594.53125 C 33195.052083 14646.09375 33153.125 14688.020833 33101.5625 14688.020833 C 33049.739583 14688.020833 33008.072917 14646.09375 33008.072917 14594.53125 C 33008.072917 14542.96875 33049.739583 14501.041667 33101.5625 14501.041667 C 33153.125 14501.041667 33195.052083 14542.96875 33195.052083 14594.53125 Z M 33195.052083 14594.53125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14692.96875 42487.5 C 14692.96875 42539.0625 14651.041667 42580.989583 14599.479167 42580.989583 C 14547.916667 42580.989583 14505.989583 42539.0625 14505.989583 42487.5 C 14505.989583 42435.9375 14547.916667 42394.010417 14599.479167 42394.010417 C 14651.041667 42394.010417 14692.96875 42435.9375 14692.96875 42487.5 Z M 14692.96875 42487.5 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 11239.0625 44495.572917 C 11239.0625 44547.135417 11197.135417 44589.0625 11145.572917 44589.0625 C 11093.75 44589.0625 11052.083333 44547.135417 11052.083333 44495.572917 C 11052.083333 44443.75 11093.75 44402.083333 11145.572917 44402.083333 C 11197.135417 44402.083333 11239.0625 44443.75 11239.0625 44495.572917 Z M 11239.0625 44495.572917 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15851.041667 42052.604167 C 15851.041667 42104.166667 15809.114583 42146.09375 15757.552083 42146.09375 C 15705.989583 42146.09375 15664.0625 42104.166667 15664.0625 42052.604167 C 15664.0625 42000.78125 15705.989583 41959.114583 15757.552083 41959.114583 C 15809.114583 41959.114583 15851.041667 42000.78125 15851.041667 42052.604167 Z M 15851.041667 42052.604167 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10419.010417 39098.4375 C 10419.010417 39150.260417 10377.083333 39191.927083 10325.520833 39191.927083 C 10273.958333 39191.927083 10232.03125 39150.260417 10232.03125 39098.4375 C 10232.03125 39046.875 10273.958333 39004.947917 10325.520833 39004.947917 C 10377.083333 39004.947917 10419.010417 39046.875 10419.010417 39098.4375 Z M 10419.010417 39098.4375 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17284.114583 44193.489583 C 17284.114583 44245.052083 17242.1875 44286.979167 17190.625 44286.979167 C 17138.802083 44286.979167 17096.875 44245.052083 17096.875 44193.489583 C 17096.875 44141.927083 17138.802083 44100 17190.625 44100 C 17242.1875 44100 17284.114583 44141.927083 17284.114583 44193.489583 Z M 17284.114583 44193.489583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17980.989583 45361.458333 C 17980.989583 45413.020833 17939.0625 45454.947917 17887.5 45454.947917 C 17835.9375 45454.947917 17794.010417 45413.020833 17794.010417 45361.458333 C 17794.010417 45309.895833 17835.9375 45267.96875 17887.5 45267.96875 C 17939.0625 45267.96875 17980.989583 45309.895833 17980.989583 45361.458333 Z M 17980.989583 45361.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17521.09375 43265.625 C 17521.09375 43317.1875 17479.166667 43359.114583 17427.604167 43359.114583 C 17375.78125 43359.114583 17334.114583 43317.1875 17334.114583 43265.625 C 17334.114583 43213.802083 17375.78125 43171.875 17427.604167 43171.875 C 17479.166667 43171.875 17521.09375 43213.802083 17521.09375 43265.625 Z M 17521.09375 43265.625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19119.010417 42250.520833 C 19119.010417 42302.083333 19077.083333 42344.010417 19025.520833 42344.010417 C 18973.958333 42344.010417 18932.03125 42302.083333 18932.03125 42250.520833 C 18932.03125 42198.958333 18973.958333 42157.03125 19025.520833 42157.03125 C 19077.083333 42157.03125 19119.010417 42198.958333 19119.010417 42250.520833 Z M 19119.010417 42250.520833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 20276.041667 44086.458333 C 20276.041667 44138.020833 20234.114583 44179.947917 20182.552083 44179.947917 C 20130.989583 44179.947917 20089.0625 44138.020833 20089.0625 44086.458333 C 20089.0625 44034.895833 20130.989583 43992.96875 20182.552083 43992.96875 C 20234.114583 43992.96875 20276.041667 44034.895833 20276.041667 44086.458333 Z M 20276.041667 44086.458333 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="17" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(92.54902%, 92.54902%, 92.54902%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17046.09375 45191.40625 C 17046.09375 45243.229167 17004.166667 45284.895833 16952.604167 45284.895833 C 16900.78125 45284.895833 16859.114583 45243.229167 16859.114583 45191.40625 C 16859.114583 45139.84375 16900.78125 45097.916667 16952.604167 45097.916667 C 17004.166667 45097.916667 17046.09375 45139.84375 17046.09375 45191.40625 Z M 17046.09375 45191.40625 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 341.257812 702.015625 C 341.257812 702.722656 340.683594 703.296875 339.976562 703.296875 C 339.265625 703.296875 338.691406 702.722656 338.691406 702.015625 C 338.691406 701.308594 339.265625 700.734375 339.976562 700.734375 C 340.683594 700.734375 341.257812 701.308594 341.257812 702.015625 Z M 341.257812 702.015625 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 321.863281 696.988281 C 321.863281 697.699219 321.289062 698.273438 320.578125 698.273438 C 319.871094 698.273438 319.296875 697.699219 319.296875 696.988281 C 319.296875 696.28125 319.871094 695.707031 320.578125 695.707031 C 321.289062 695.707031 321.863281 696.28125 321.863281 696.988281 Z M 321.863281 696.988281 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 305.648438 702.269531 C 305.648438 702.976562 305.074219 703.550781 304.363281 703.550781 C 303.65625 703.550781 303.082031 702.976562 303.082031 702.269531 C 303.082031 701.5625 303.65625 700.988281 304.363281 700.988281 C 305.074219 700.988281 305.648438 701.5625 305.648438 702.269531 Z M 305.648438 702.269531 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 324.414062 649.816406 C 324.414062 650.523438 323.839844 651.097656 323.128906 651.097656 C 322.421875 651.097656 321.847656 650.523438 321.847656 649.816406 C 321.847656 649.105469 322.421875 648.53125 323.128906 648.53125 C 323.839844 648.53125 324.414062 649.105469 324.414062 649.816406 Z M 324.414062 649.816406 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 104.871094 572.488281 C 104.871094 573.199219 104.296875 573.773438 103.589844 573.773438 C 102.882812 573.773438 102.308594 573.199219 102.308594 572.488281 C 102.308594 571.78125 102.882812 571.207031 103.589844 571.207031 C 104.296875 571.207031 104.871094 571.78125 104.871094 572.488281 Z M 104.871094 572.488281 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 14.664062 464.085938 C 14.664062 464.792969 14.089844 465.367188 13.378906 465.367188 C 12.671875 465.367188 12.097656 464.792969 12.097656 464.085938 C 12.097656 463.375 12.671875 462.800781 13.378906 462.800781 C 14.089844 462.800781 14.664062 463.375 14.664062 464.085938 Z M 14.664062 464.085938 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 47.992188 549.226562 C 47.992188 549.933594 47.417969 550.507812 46.710938 550.507812 C 46 550.507812 45.425781 549.933594 45.425781 549.226562 C 45.425781 548.515625 46 547.941406 46.710938 547.941406 C 47.417969 547.941406 47.992188 548.515625 47.992188 549.226562 Z M 47.992188 549.226562 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 69.425781 505.753906 C 69.425781 506.464844 68.851562 507.039062 68.144531 507.039062 C 67.4375 507.039062 66.863281 506.464844 66.863281 505.753906 C 66.863281 505.046875 67.4375 504.472656 68.144531 504.472656 C 68.851562 504.472656 69.425781 505.046875 69.425781 505.753906 Z M 69.425781 505.753906 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 78.96875 507.71875 C 78.96875 508.429688 78.394531 509.003906 77.683594 509.003906 C 76.976562 509.003906 76.402344 508.429688 76.402344 507.71875 C 76.402344 507.011719 76.976562 506.4375 77.683594 506.4375 C 78.394531 506.4375 78.96875 507.011719 78.96875 507.71875 Z M 78.96875 507.71875 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 43.925781 310.695312 C 43.925781 311.402344 43.351562 311.976562 42.644531 311.976562 C 41.9375 311.976562 41.363281 311.402344 41.363281 310.695312 C 41.363281 309.988281 41.9375 309.414062 42.644531 309.414062 C 43.351562 309.414062 43.925781 309.988281 43.925781 310.695312 Z M 43.925781 310.695312 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 480.503906 637.246094 C 480.503906 637.953125 479.929688 638.527344 479.21875 638.527344 C 478.511719 638.527344 477.9375 637.953125 477.9375 637.246094 C 477.9375 636.535156 478.511719 635.960938 479.21875 635.960938 C 479.929688 635.960938 480.503906 636.535156 480.503906 637.246094 Z M 480.503906 637.246094 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 520.746094 531.253906 C 520.746094 531.964844 520.171875 532.539062 519.464844 532.539062 C 518.757812 532.539062 518.183594 531.964844 518.183594 531.253906 C 518.183594 530.546875 518.757812 529.972656 519.464844 529.972656 C 520.171875 529.972656 520.746094 530.546875 520.746094 531.253906 Z M 520.746094 531.253906 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 337.164062 690.613281 C 337.164062 691.324219 336.589844 691.898438 335.878906 691.898438 C 335.171875 691.898438 334.597656 691.324219 334.597656 690.613281 C 334.597656 689.90625 335.171875 689.332031 335.878906 689.332031 C 336.589844 689.332031 337.164062 689.90625 337.164062 690.613281 Z M 337.164062 690.613281 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 490.148438 587.355469 C 490.148438 588.0625 489.574219 588.636719 488.863281 588.636719 C 488.15625 588.636719 487.582031 588.0625 487.582031 587.355469 C 487.582031 586.648438 488.15625 586.074219 488.863281 586.074219 C 489.574219 586.074219 490.148438 586.648438 490.148438 587.355469 Z M 490.148438 587.355469 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 548.796875 481.53125 C 548.796875 482.238281 548.222656 482.8125 547.515625 482.8125 C 546.808594 482.8125 546.234375 482.238281 546.234375 481.53125 C 546.234375 480.820312 546.808594 480.246094 547.515625 480.246094 C 548.222656 480.246094 548.796875 480.820312 548.796875 481.53125 Z M 548.796875 481.53125 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 497.796875 218.910156 C 497.796875 219.617188 497.222656 220.191406 496.515625 220.191406 C 495.808594 220.191406 495.234375 219.617188 495.234375 218.910156 C 495.234375 218.203125 495.808594 217.628906 496.515625 217.628906 C 497.222656 217.628906 497.796875 218.203125 497.796875 218.910156 Z M 497.796875 218.910156 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 220.265625 637.304688 C 220.265625 638.011719 219.691406 638.585938 218.984375 638.585938 C 218.277344 638.585938 217.703125 638.011719 217.703125 637.304688 C 217.703125 636.597656 218.277344 636.023438 218.984375 636.023438 C 219.691406 636.023438 220.265625 636.597656 220.265625 637.304688 Z M 220.265625 637.304688 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 168.457031 667.425781 C 168.457031 668.132812 167.882812 668.707031 167.175781 668.707031 C 166.464844 668.707031 165.890625 668.132812 165.890625 667.425781 C 165.890625 666.714844 166.464844 666.140625 167.175781 666.140625 C 167.882812 666.140625 168.457031 666.714844 168.457031 667.425781 Z M 168.457031 667.425781 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 237.636719 630.78125 C 237.636719 631.488281 237.0625 632.0625 236.355469 632.0625 C 235.648438 632.0625 235.074219 631.488281 235.074219 630.78125 C 235.074219 630.070312 235.648438 629.496094 236.355469 629.496094 C 237.0625 629.496094 237.636719 630.070312 237.636719 630.78125 Z M 237.636719 630.78125 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 156.15625 586.46875 C 156.15625 587.179688 155.582031 587.753906 154.875 587.753906 C 154.167969 587.753906 153.59375 587.179688 153.59375 586.46875 C 153.59375 585.761719 154.167969 585.1875 154.875 585.1875 C 155.582031 585.1875 156.15625 585.761719 156.15625 586.46875 Z M 156.15625 586.46875 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 259.132812 662.894531 C 259.132812 663.601562 258.558594 664.175781 257.851562 664.175781 C 257.140625 664.175781 256.566406 663.601562 256.566406 662.894531 C 256.566406 662.1875 257.140625 661.613281 257.851562 661.613281 C 258.558594 661.613281 259.132812 662.1875 259.132812 662.894531 Z M 259.132812 662.894531 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 269.585938 680.414062 C 269.585938 681.125 269.011719 681.699219 268.304688 681.699219 C 267.597656 681.699219 267.023438 681.125 267.023438 680.414062 C 267.023438 679.707031 267.597656 679.132812 268.304688 679.132812 C 269.011719 679.132812 269.585938 679.707031 269.585938 680.414062 Z M 269.585938 680.414062 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 262.6875 648.976562 C 262.6875 649.683594 262.113281 650.257812 261.40625 650.257812 C 260.695312 650.257812 260.121094 649.683594 260.121094 648.976562 C 260.121094 648.265625 260.695312 647.691406 261.40625 647.691406 C 262.113281 647.691406 262.6875 648.265625 262.6875 648.976562 Z M 262.6875 648.976562 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 286.65625 633.75 C 286.65625 634.457031 286.082031 635.03125 285.375 635.03125 C 284.667969 635.03125 284.09375 634.457031 284.09375 633.75 C 284.09375 633.042969 284.667969 632.46875 285.375 632.46875 C 286.082031 632.46875 286.65625 633.042969 286.65625 633.75 Z M 286.65625 633.75 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 304.011719 661.289062 C 304.011719 662 303.4375 662.574219 302.730469 662.574219 C 302.023438 662.574219 301.449219 662 301.449219 661.289062 C 301.449219 660.582031 302.023438 660.007812 302.730469 660.007812 C 303.4375 660.007812 304.011719 660.582031 304.011719 661.289062 Z M 304.011719 661.289062 "/>
+
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 255.5625 677.863281 C 255.5625 678.574219 254.988281 679.148438 254.28125 679.148438 C 253.570312 679.148438 252.996094 678.574219 252.996094 677.863281 C 252.996094 677.15625 253.570312 676.582031 254.28125 676.582031 C 254.988281 676.582031 255.5625 677.15625 255.5625 677.863281 Z M 255.5625 677.863281 "/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(81.568627%, 82.352941%, 80.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23844.53125 9572.65625 C 27602.083333 10578.125 30863.802083 12920.3125 33017.708333 16159.375 C 35171.614583 19398.4375 36069.791667 23312.239583 35543.489583 27166.40625 C 35017.447917 31020.572917 33103.125 34550.260417 30159.895833 37093.489583 C 27216.666667 39636.979167 23446.614583 41019.010417 19557.03125 40980.729167 C 15667.1875 40942.1875 11925.260417 39485.9375 9032.552083 36885.15625 C 6140.104167 34284.375 4295.833333 30717.447917 3845.833333 26853.645833 C 3395.833333 22989.84375 4371.09375 19094.791667 6588.28125 15898.697917 C 8805.729167 12702.604167 12113.020833 10425.520833 15889.84375 9494.270833 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(81.568627%, 82.352941%, 80.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24090.104167 8475 L 23844.010417 9571.875 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(81.568627%, 82.352941%, 80.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24089.583333 8475 C 28863.802083 9524.21875 33080.989583 12302.604167 35929.166667 16275.260417 C 38777.604167 20247.65625 40055.46875 25133.59375 39516.927083 29991.927083 C 38978.645833 34850.260417 36661.71875 39337.5 33012.760417 42590.104167 C 29363.802083 45842.447917 24640.625 47629.947917 19752.34375 47608.333333 C 14864.322917 47586.71875 10157.03125 45757.552083 6536.979167 42472.916667 C 2916.927083 39188.28125 639.84375 34680.729167 144.53125 29817.708333 C -351.041667 24954.6875 970.052083 20080.46875 3853.385417 16133.333333 C 6736.71875 12186.197917 10978.125 9445.052083 15761.458333 8438.28125 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
<path fill="none" stroke-width="85" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(81.568627%, 82.352941%, 80.392157%)" stroke-opacity="1" stroke-miterlimit="10" d="M 15761.979167 8438.020833 L 15890.104167 9494.010417 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/>
+
</svg>
assets/img/led_hoop/schematic.png

This is a binary file and will not be displayed.

assets/mastodon_button_2.gif

This is a binary file and will not be displayed.

+28
assets/old_style.css
···
+
:root {
+
font-size:1rem;
+
--rhythm: 1.5rem;
+
--line-length: 60vw;
+
}
+
+
header {
+
margin-bottom: 0px;
+
}
+
+
h1,
+
h2,
+
h3,
+
h4,
+
h5,
+
h6,
+
.\<h1\>,
+
.\<h2\>,
+
.\<h3\>,
+
.\<h4\>,
+
.\<h5\>,
+
.\<h6\> {
+
margin-block-start:var(--gap);
+
}
+
+
p {
+
font-size: 1.2em;
+
}
+5
assets/robots.txt
···
+
User-agent: *
+
Disallow: /
+
+
User-agent: ChatGPT-User
+
Disallow: /
+122
assets/style.css
···
+
html {
+
overflow-y: scroll;
+
}
+
body {
+
background-color: #fff;
+
color: #000;
+
font-family: sans-serif;
+
margin: 0;
+
padding: 1ex;
+
}
+
/* HTML5 semantic tags: some (older) browsers display this inline by default */
+
article, figcaption, figure, header, main, nav {
+
display: block;
+
}
+
/* center images */
+
img {
+
margin: 0 auto;
+
}
+
table, img {
+
border: 0;
+
}
+
hr {
+
border: 0;
+
border-bottom: 3px solid #aaa;
+
height: 3px;
+
}
+
h1 {
+
font-size: 140%;
+
}
+
h2 {
+
font-size: 120%;
+
}
+
h3 {
+
font-size: 120%;
+
}
+
h1,
+
h1 a,
+
h1 a:visited,
+
h2,
+
h2 a,
+
h2 a:visited,
+
h3,
+
h3 a,
+
h3 a:visited,
+
h1 a:hover,
+
h2 a:hover,
+
h3 a:hover {
+
color: inherit;
+
text-decoration: none;
+
}
+
table tr td {
+
padding: 2px 10px 2px 0px;
+
}
+
pre {
+
margin: 0;
+
}
+
pre code {
+
display: block;
+
border: 3px solid #aaa;
+
padding: 5px;
+
}
+
+
code {
+
background-color: #eee;
+
border: 1px solid #aaa;
+
font-family: monospace;
+
overflow-x: auto;
+
padding: 1px;
+
word-wrap: normal;
+
}
+
#menu td {
+
padding: 1ex 0;
+
}
+
#main {
+
border-top: 3px solid #aaa;
+
}
+
#menuwrap,
+
#menu,
+
#main {
+
margin: 0px auto;
+
max-width: 100ex;
+
}
+
.hidden {
+
display: none;
+
}
+
.logo {
+
display: flex;
+
}
+
img.logo {
+
width: 7em;
+
}
+
.footer {
+
margin-top: 4em;
+
}
+
.footer a img {
+
float: left;
+
margin-bottom: 3em;
+
}
+
@media (prefers-color-scheme: dark) {
+
body {
+
background-color: #121210;
+
color: #bdbdbd;
+
}
+
pre code, code {
+
background-color: #333;
+
border-color: #444;
+
}
+
hr {
+
border-color: #444;
+
}
+
a {
+
color: #56c8ff;
+
}
+
#main {
+
border-top: 3px solid #444;
+
}
+
}
+
+
+
+
+
assets/technoduck.png

This is a binary file and will not be displayed.

+14
posts/000-genesis.md
···
+
---
+
title: Full website Update
+
date: 2023-01-12
+
---
+
## New Website
+
+
### Saait
+
+
I got a little bit tired of the old site, so changed it to something more ~websit-y~
+
+
Now its made using [Saait](https://git.codemadness.org/saait/) and what a treat it is.
+
+
More Updates coming.
+
+11
posts/001-bash_blogger.md
···
+
---
+
title: Creating posts with bash and git from terminal
+
date: 2023-01-13
+
---
+
Since updating this website with Saait, I have decided to create a tool to streamline page creation from the terminal.
+
+
Inspired by [bash_blog](https://github.com/j0m/bash_blog) and [bashblog](https://github.com/cfenollosa/bashblog) especially bash was chosen.
+
+
It is goofy, not as practical as I would think, but neat nevertheless.
+
+
Source at my [git](https://git.technoduck.me) repo.
+32
posts/002-services.md
···
+
---
+
title: List of Services running on the server
+
date: 2023-01-13
+
---
+
+
### This blog
+
+
Self explanatory. This is my [website](/), my little corner of the internet.
+
+
### Email
+
+
Self hosted email server using Dovecot + Posfix.
+
+
### Git
+
+
[forgejo](https://git.technoduck.me) instance for my personal projects.
+
+
### Etebase
+
+
An [Etebase](https://etebase.technoduck.me) instance for syncing my tasks, to-do's and contacts between devices.
+
+
### Grocy
+
+
[Grocy](https://grocy.technoduck.me) instance for keeping track of food and grocery lists ( and literally anything else in your house including batteris in devices? ) it's really cool give it a check.
+
+
### Wiki
+
+
A [wikimedia](https://wiki.cold-metal.technoduck.me) instance running for a friend for categorizing all the lore of the world that is being created for a soft fiction story.
+
+
### WIP
+
+
Work in progress of a [website](https://wip.technoduck.me) I am making for a photographer/photography business.
+41
posts/003-led_hoop.md
···
+
---
+
title: PCB LED hoop earring project
+
date: 2024-01-02
+
---
+
## LED Hoops
+
+
### What?
+
+
First, a blog post by [mitxela](https://mitxela.com) came upon my eyes, and piqued my interest.
+
+
Inspired by the [industrial piercing](https://mitxela.com/projects/scaffold) and the electronics that went into it, I though if other pieces of jewelry can be made with electronics (they can, it was specifically a question if my measly hands could craft them).
+
+
Since for the first time, I didn't want to experiment with absolute microscopic sizes, I decided that a 4 cm hoop was an adequate project to attempt.
+
+
![schematic_kicad_image](img/led_hoop/schematic.png =800x)
+
+
An Attiny 24/44/84A can be used, I went with a -M variant, since it is slightly larger then the -MM variant, by a whole mm, which I assume will be easier to solder.
+
+
Placing them all in a nice hoop looking pcb, we obtain this:
+
+
![pcb_kicad_image](/assets/img/led_hoop/pcb.svg)
+
+
The test version comes with ISP pins for debugging and programming the chip when it's already installed.
+
+
0603 LED's were chosen for the same reason, they are small enough to be not that noticeable, but large enough to be not an incredible pain to work with.
+
+
### Why??
+
+
It looked and sounded fun, my only previous projects related to PCB production before this was edition a split [Sweep](https://github.com/davidphilipbarr/Sweep) keyboard.
+
+
And so I did.
+
+
### Cool. What now?
+
+
You can take your chance and go to [the git repository](https://git.technoduck.me/technoduck/led_hoop) for the project, `git pull`, and try your own luck.
+
+
+
+
+
Batteries not included.
+
+16
posts/004-pantheon.md
···
+
---
+
title: Pantheon
+
date: 2024-03-03
+
---
+
# WATCH PANTHEON
+
+
## I DO NOT CARE WHAT DAY IT IS
+
+
### HERE'S YOUR PLAN
+
+
1. Wake up.
+
2. Open whatever device you watch things on.
+
3. Obtain, legally or illegaly, by any means necessary, 2 (two) seasons of Pantheon, created by Craig Silverstein based on short stories by Ken Liu.
+
4. Binge the 2 sesons in a single night (it is feasable I checked)
+
+
Thank you for coming to my Ted Talk.
+36
posts/005-regenesis.md
···
+
---
+
title: Full website Re-Update
+
date: 2024-08-29
+
---
+
## New Website?
+
+
### Rust
+
+
The time has come and another re-write is upon us.
+
+
This time inspied by [this article](https://blog.transrights.art/blogs/2024_Screw-Frameworks-New-Site-2),
+
[theprimeagen](https://www.youtube.com/watch?v=rcZSOLAI1lM), and everpresent desire to rewrite everything in Rust,
+
the new website is a complete rewrite using rust and adjacent techniques.
+
+
Using only
+
```
+
[dependencies]
+
askama = { version = "0.12.1", features = ["with-axum"] }
+
askama_axum = "0.4.0"
+
axum = "0.7.5"
+
comrak = "0.27.0"
+
markdown-parser = "0.1.2"
+
rand = "0.8.5"
+
serde = { version = "1.0.209", features = ["derive"] }
+
serde_yaml = "0.9.34"
+
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
+
tower-http = { version = "0.5.2", features = ["fs"] }
+
```
+
+
as dependancies in the end we get a clean~ish, 2.8MB executable.
+
+
All markdown compilation gets done every time page is loaded, which is sub-optimal,
+
But reading time for all posts is non-significant compared to other loading times.
+
+
And voila, there is the new post.
+
+40
src/blog_entries.rs
···
+
use std::{fs::read_dir, path::Path};
+
+
use markdown_parser::*;
+
+
use crate::structs::{BlogInfo, IndexPostEntry};
+
+
pub fn get_blog_entry_markdown(path:&String) -> Result<Markdown,Error> {
+
let location = format!("posts/{path}.md").to_string();
+
read_file(Path::new(&location))
+
}
+
+
pub fn get_all_markdowns() -> Vec<IndexPostEntry> {
+
let mut post_vec:Vec<IndexPostEntry> = Vec::new();
+
let mr_dir_iter = match read_dir("posts/") {
+
Ok(iter) => iter,
+
Err(err) => panic!("could ls files, err {err}")
+
};
+
+
for entry in mr_dir_iter {
+
if let Ok(entry) = entry {
+
+
let filename = entry.file_name().into_string().unwrap().split(".").collect::<Vec<_>>()[0].to_string();
+
+
+
let front_matter_string = get_blog_entry_markdown(&filename).unwrap();
+
+
let front_matter:BlogInfo = serde_yaml::from_str(&front_matter_string.front_matter()).unwrap();
+
+
post_vec.push(IndexPostEntry{
+
title: front_matter.title,
+
date: front_matter.date,
+
path: format!("/blog/{filename}"),
+
});
+
+
}
+
}
+
post_vec.sort_by_key(|e| e.path.clone() );
+
post_vec.reverse();
+
post_vec
+
}
+36
src/handlers.rs
···
+
use axum::{extract::Path,response::Html};
+
use crate::structs::*;
+
use crate::rand_quote::get_quote;
+
use crate::blog_entries::{get_all_markdowns, get_blog_entry_markdown};
+
+
pub async fn index() -> Html<String> {
+
let all_entries = get_all_markdowns();
+
let quote = get_quote();
+
let new_page = IndexTemplate { random_quote: quote, index_post_entries:&all_entries};
+
Html(new_page.to_string())
+
}
+
+
pub async fn about() -> Html<String> {
+
+
let about_content = comrak::markdown_to_html("about", &comrak::Options::default());
+
let page_content = AboutTemplate{about_content: &about_content};
+
Html(page_content.to_string())
+
}
+
+
+
pub async fn blog(Path(blog_path):Path<String>) -> Html<String> {
+
+
match get_blog_entry_markdown(&blog_path){
+
Ok(markdown) => Html(
+
BlogTemplate{
+
blog_content: &comrak::markdown_to_html(markdown.content(), &comrak::Options::default()),
+
front_matter:&serde_yaml::from_str(markdown.front_matter()).unwrap()}.to_string()
+
),
+
Err(..) => not_found().await,
+
}
+
+
}
+
+
pub async fn not_found() -> Html<String> {
+
Html(NotFoundTemplate{}.to_string())
+
}
+27
src/main.rs
···
+
use axum::{routing::get, Router};
+
use tower_http::services::{ServeDir, ServeFile};
+
+
+
mod handlers;
+
mod structs;
+
pub mod blog_entries;
+
pub mod rand_quote;
+
+
+
+
#[tokio::main]
+
async fn main() {
+
+
let app: axum::Router = Router::new()
+
.route("/", get(handlers::index))
+
.route("/about", get(handlers::about))
+
.route("/blog",get(handlers::index))
+
.route("/blog/:blog_path",get(handlers::blog))
+
.route_service("/robots.txt", ServeFile::new("assets/robots.txt"))
+
.fallback(get(handlers::not_found))
+
.nest_service("/assets", ServeDir::new("assets"));
+
+
+
let listener = tokio::net::TcpListener::bind("127.0.0.1:3000").await.unwrap();
+
axum::serve(listener, app).await.unwrap();
+
}
+19
src/rand_quote.rs
···
+
use rand::Rng;
+
+
pub fn get_quote() -> &'static str {
+
let vs = vec![
+
"Silliness and tomfooler are afoot, and who am I to stop it.",
+
"Low entropy self replicating phenomenon that generates a binding force called compassion.",
+
"I was born in the late Holocene and I've seen some shit.",
+
"If there's a deal meant for you, any wild place on earth will do.",
+
"Live long and prosper.",
+
"Prometheus they say brought gods fire down to man and we've caught it tamed it trained it since our history began.",
+
"Oh, so, wenn PETER PARKER eine Reizüberflutung hat, dann sind es \"Spidey-Sinne\", aber wenn ich es tue, ICH HABE AUTISM.",
+
"Guess we are doing Rust now",
+
];
+
let mut rng = rand::thread_rng();
+
match vs.get(rng.gen_range(0..vs.len())) {
+
Some(quote) => quote,
+
None => "You have caught me off guard.",
+
}
+
}
+40
src/structs.rs
···
+
use askama::Template;
+
use serde::{Serialize,Deserialize};
+
+
#[derive(Template)]
+
#[template(path="index.html")]
+
pub struct IndexTemplate<'a> {
+
pub random_quote: &'a str,
+
pub index_post_entries: &'a Vec<IndexPostEntry>
+
}
+
+
#[derive(Template)]
+
#[template(path="about.html")]
+
pub struct AboutTemplate<'a> {
+
pub about_content: &'a String,
+
}
+
+
#[derive(Template)]
+
#[template(path="404.html")]
+
pub struct NotFoundTemplate {
+
}
+
+
#[derive(Template)]
+
#[template(path="blog_entry.html")]
+
pub struct BlogTemplate<'a> {
+
pub front_matter: &'a BlogInfo,
+
pub blog_content: &'a String,
+
}
+
+
#[derive(Debug,Serialize,Deserialize)]
+
pub struct BlogInfo {
+
pub title: String,
+
pub date: String,
+
}
+
+
#[derive(Debug,Serialize,Deserialize,PartialEq, Eq, PartialOrd, Ord)]
+
pub struct IndexPostEntry {
+
pub title: String,
+
pub date: String,
+
pub path: String,
+
}
+7
templates/404.html
···
+
{% extends "layout.html" %}
+
+
{% block content %}
+
+
<p>Sadly this page doesnt seem to exist</p>
+
+
{% endblock %}
+15
templates/about.html
···
+
{% extends "layout.html" %}
+
+
{% block title %}
+
About -
+
{% endblock %}
+
+
{% block content %}
+
+
<h2> yepper yapper yapper</h2>
+
+
<p> this is an about page </p>
+
+
{{ about_content|safe }}
+
+
{% endblock %}
+15
templates/blog_entry.html
···
+
{% extends "layout.html" %}
+
+
{% block title %}
+
{{front_matter.title}} -
+
{% endblock %}
+
+
{% block content %}
+
+
<h1> {{front_matter.title}} </h1>
+
+
+
{{ blog_content|safe }}
+
+
+
{% endblock %}
+24
templates/index.html
···
+
{% extends "layout.html" %}
+
+
{% block quote %}
+
{{ random_quote }}
+
{% endblock %}
+
+
{% block content %}
+
<h1 style="margin-top:0.5em"> Posts </h1>
+
+
<div class="table">
+
{% for entry in index_post_entries %}
+
+
<div>
+
<time> {{ entry.date }} </time>
+
<a href="{{ entry.path }}"> {{ entry.title }}</a>
+
</div>
+
{% endfor %}
+
+
</div>
+
+
+
+
+
{% endblock %}
+54
templates/layout.html
···
+
<!doctype html>
+
<html lang="en">
+
<head>
+
<title>{% block title %}{% endblock %} Technoduck</title>
+
<link rel="stylesheet" href="/assets/style.css">
+
<link rel="stylesheet" href="https://unpkg.com/missing.css@1.1.2">
+
<link rel="stylesheet" href="/assets/old_style.css">
+
<link rel="icon" href="/assets/favicon.png" type="image/png" />
+
</head>
+
+
<body>
+
<main>
+
<header>
+
<a href="/">
+
<img style="display: flex; width: 7em;" align="left" alt="technoduck" src="/assets/technoduck.png">
+
</a>
+
<div class="table">
+
<div class="float:left">
+
<a href="/">Blog</a> |
+
<a href="https://git.technoduck.me" title="Git repository with some of my projects">Git</a> |
+
<a href="https://cv.technoduck.me">Files</a> |
+
<a href="https://wip.technoduck.me">[WIP]</a> |
+
</div>
+
+
<div class="float:right">
+
<a href="/about">About</a> |
+
<a href="assets/duck.asc">PGP</a> |
+
<a href="mailto:duck@technoduck.me">Mail</a>
+
</div>
+
</div>
+
<p>
+
{% block quote %}{% endblock %}
+
</p>
+
+
</header>
+
{% block content%}{% endblock %}
+
+
<footer>
+
<h4>
+
Copyleft (c) 2022-2024 technoduck
+
</h4>
+
<a href="https://yesterweb.org/no-to-web3/" target="_blank">
+
<img alt="a button that says 'keep the web free, say no to web3', linking to a page about web3" src="https://auzziejay.com/images/noweb32.gif">
+
</a>
+
<a href="https://voidlinux.org" target="_blank">
+
<img alt="A button indicating this site was made with Gnu+Linux, linking to Voidlinux website" src="/assets/gnu-linux.gif">
+
</a>
+
<a href="https://joinfediverse.wiki/Main_Page/Fancy" target="_blank">
+
<img alt="Button with Mastodon on it, linking to joinfediverse wiki" src="/assets/mastodon_button_2.gif">
+
</a>
+
</footer>
+
</main>
+
</body>
+
</html>