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

Initial commit

+4131
+1
.gitignore
··· 1 + /target
+1898
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "addr2line" 7 + version = "0.22.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "adler2" 22 + version = "2.0.0" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 25 + 26 + [[package]] 27 + name = "aho-corasick" 28 + version = "1.1.3" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 31 + dependencies = [ 32 + "memchr", 33 + ] 34 + 35 + [[package]] 36 + name = "anstream" 37 + version = "0.6.15" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 40 + dependencies = [ 41 + "anstyle", 42 + "anstyle-parse", 43 + "anstyle-query", 44 + "anstyle-wincon", 45 + "colorchoice", 46 + "is_terminal_polyfill", 47 + "utf8parse", 48 + ] 49 + 50 + [[package]] 51 + name = "anstyle" 52 + version = "1.0.8" 53 + source = "registry+https://github.com/rust-lang/crates.io-index" 54 + checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 55 + 56 + [[package]] 57 + name = "anstyle-parse" 58 + version = "0.2.5" 59 + source = "registry+https://github.com/rust-lang/crates.io-index" 60 + checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 61 + dependencies = [ 62 + "utf8parse", 63 + ] 64 + 65 + [[package]] 66 + name = "anstyle-query" 67 + version = "1.1.1" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 70 + dependencies = [ 71 + "windows-sys 0.52.0", 72 + ] 73 + 74 + [[package]] 75 + name = "anstyle-wincon" 76 + version = "3.0.4" 77 + source = "registry+https://github.com/rust-lang/crates.io-index" 78 + checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 79 + dependencies = [ 80 + "anstyle", 81 + "windows-sys 0.52.0", 82 + ] 83 + 84 + [[package]] 85 + name = "askama" 86 + version = "0.12.1" 87 + source = "registry+https://github.com/rust-lang/crates.io-index" 88 + checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" 89 + dependencies = [ 90 + "askama_derive", 91 + "askama_escape", 92 + "humansize", 93 + "num-traits", 94 + "percent-encoding", 95 + ] 96 + 97 + [[package]] 98 + name = "askama_axum" 99 + version = "0.4.0" 100 + source = "registry+https://github.com/rust-lang/crates.io-index" 101 + checksum = "a41603f7cdbf5ac4af60760f17253eb6adf6ec5b6f14a7ed830cf687d375f163" 102 + dependencies = [ 103 + "askama", 104 + "axum-core", 105 + "http", 106 + ] 107 + 108 + [[package]] 109 + name = "askama_derive" 110 + version = "0.12.5" 111 + source = "registry+https://github.com/rust-lang/crates.io-index" 112 + checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" 113 + dependencies = [ 114 + "askama_parser", 115 + "basic-toml", 116 + "mime", 117 + "mime_guess", 118 + "proc-macro2", 119 + "quote", 120 + "serde", 121 + "syn 2.0.76", 122 + ] 123 + 124 + [[package]] 125 + name = "askama_escape" 126 + version = "0.10.3" 127 + source = "registry+https://github.com/rust-lang/crates.io-index" 128 + checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 129 + 130 + [[package]] 131 + name = "askama_parser" 132 + version = "0.2.1" 133 + source = "registry+https://github.com/rust-lang/crates.io-index" 134 + checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" 135 + dependencies = [ 136 + "nom", 137 + ] 138 + 139 + [[package]] 140 + name = "async-trait" 141 + version = "0.1.81" 142 + source = "registry+https://github.com/rust-lang/crates.io-index" 143 + checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 144 + dependencies = [ 145 + "proc-macro2", 146 + "quote", 147 + "syn 2.0.76", 148 + ] 149 + 150 + [[package]] 151 + name = "autocfg" 152 + version = "1.3.0" 153 + source = "registry+https://github.com/rust-lang/crates.io-index" 154 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 155 + 156 + [[package]] 157 + name = "axum" 158 + version = "0.7.5" 159 + source = "registry+https://github.com/rust-lang/crates.io-index" 160 + checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 161 + dependencies = [ 162 + "async-trait", 163 + "axum-core", 164 + "bytes", 165 + "futures-util", 166 + "http", 167 + "http-body", 168 + "http-body-util", 169 + "hyper", 170 + "hyper-util", 171 + "itoa", 172 + "matchit", 173 + "memchr", 174 + "mime", 175 + "percent-encoding", 176 + "pin-project-lite", 177 + "rustversion", 178 + "serde", 179 + "serde_json", 180 + "serde_path_to_error", 181 + "serde_urlencoded", 182 + "sync_wrapper 1.0.1", 183 + "tokio", 184 + "tower", 185 + "tower-layer", 186 + "tower-service", 187 + "tracing", 188 + ] 189 + 190 + [[package]] 191 + name = "axum-core" 192 + version = "0.4.3" 193 + source = "registry+https://github.com/rust-lang/crates.io-index" 194 + checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 195 + dependencies = [ 196 + "async-trait", 197 + "bytes", 198 + "futures-util", 199 + "http", 200 + "http-body", 201 + "http-body-util", 202 + "mime", 203 + "pin-project-lite", 204 + "rustversion", 205 + "sync_wrapper 0.1.2", 206 + "tower-layer", 207 + "tower-service", 208 + "tracing", 209 + ] 210 + 211 + [[package]] 212 + name = "backtrace" 213 + version = "0.3.73" 214 + source = "registry+https://github.com/rust-lang/crates.io-index" 215 + checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 216 + dependencies = [ 217 + "addr2line", 218 + "cc", 219 + "cfg-if", 220 + "libc", 221 + "miniz_oxide 0.7.4", 222 + "object", 223 + "rustc-demangle", 224 + ] 225 + 226 + [[package]] 227 + name = "base64" 228 + version = "0.22.1" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 231 + 232 + [[package]] 233 + name = "basic-toml" 234 + version = "0.1.9" 235 + source = "registry+https://github.com/rust-lang/crates.io-index" 236 + checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" 237 + dependencies = [ 238 + "serde", 239 + ] 240 + 241 + [[package]] 242 + name = "bincode" 243 + version = "1.3.3" 244 + source = "registry+https://github.com/rust-lang/crates.io-index" 245 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 246 + dependencies = [ 247 + "serde", 248 + ] 249 + 250 + [[package]] 251 + name = "bit-set" 252 + version = "0.5.3" 253 + source = "registry+https://github.com/rust-lang/crates.io-index" 254 + checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 255 + dependencies = [ 256 + "bit-vec", 257 + ] 258 + 259 + [[package]] 260 + name = "bit-vec" 261 + version = "0.6.3" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 264 + 265 + [[package]] 266 + name = "bitflags" 267 + version = "1.3.2" 268 + source = "registry+https://github.com/rust-lang/crates.io-index" 269 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 270 + 271 + [[package]] 272 + name = "bitflags" 273 + version = "2.6.0" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 276 + 277 + [[package]] 278 + name = "bumpalo" 279 + version = "3.16.0" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 282 + 283 + [[package]] 284 + name = "byteorder" 285 + version = "1.5.0" 286 + source = "registry+https://github.com/rust-lang/crates.io-index" 287 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 288 + 289 + [[package]] 290 + name = "bytes" 291 + version = "1.7.1" 292 + source = "registry+https://github.com/rust-lang/crates.io-index" 293 + checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" 294 + 295 + [[package]] 296 + name = "caseless" 297 + version = "0.2.1" 298 + source = "registry+https://github.com/rust-lang/crates.io-index" 299 + checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f" 300 + dependencies = [ 301 + "regex", 302 + "unicode-normalization", 303 + ] 304 + 305 + [[package]] 306 + name = "cc" 307 + version = "1.1.15" 308 + source = "registry+https://github.com/rust-lang/crates.io-index" 309 + checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" 310 + dependencies = [ 311 + "shlex", 312 + ] 313 + 314 + [[package]] 315 + name = "cfg-if" 316 + version = "1.0.0" 317 + source = "registry+https://github.com/rust-lang/crates.io-index" 318 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 319 + 320 + [[package]] 321 + name = "clap" 322 + version = "4.5.16" 323 + source = "registry+https://github.com/rust-lang/crates.io-index" 324 + checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" 325 + dependencies = [ 326 + "clap_builder", 327 + "clap_derive", 328 + ] 329 + 330 + [[package]] 331 + name = "clap_builder" 332 + version = "4.5.15" 333 + source = "registry+https://github.com/rust-lang/crates.io-index" 334 + checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" 335 + dependencies = [ 336 + "anstream", 337 + "anstyle", 338 + "clap_lex", 339 + "strsim", 340 + "terminal_size", 341 + ] 342 + 343 + [[package]] 344 + name = "clap_derive" 345 + version = "4.5.13" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" 348 + dependencies = [ 349 + "heck", 350 + "proc-macro2", 351 + "quote", 352 + "syn 2.0.76", 353 + ] 354 + 355 + [[package]] 356 + name = "clap_lex" 357 + version = "0.7.2" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 360 + 361 + [[package]] 362 + name = "colorchoice" 363 + version = "1.0.2" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 366 + 367 + [[package]] 368 + name = "comrak" 369 + version = "0.27.0" 370 + source = "registry+https://github.com/rust-lang/crates.io-index" 371 + checksum = "2d061c6d53fe98c25efda0d91b7f6b4b4020a51dad78a3eac5028710aa26f8e7" 372 + dependencies = [ 373 + "caseless", 374 + "clap", 375 + "derive_builder", 376 + "entities", 377 + "memchr", 378 + "once_cell", 379 + "regex", 380 + "shell-words", 381 + "slug", 382 + "syntect", 383 + "typed-arena", 384 + "unicode_categories", 385 + "xdg", 386 + ] 387 + 388 + [[package]] 389 + name = "crc32fast" 390 + version = "1.4.2" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 393 + dependencies = [ 394 + "cfg-if", 395 + ] 396 + 397 + [[package]] 398 + name = "darling" 399 + version = "0.20.10" 400 + source = "registry+https://github.com/rust-lang/crates.io-index" 401 + checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 402 + dependencies = [ 403 + "darling_core", 404 + "darling_macro", 405 + ] 406 + 407 + [[package]] 408 + name = "darling_core" 409 + version = "0.20.10" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 412 + dependencies = [ 413 + "fnv", 414 + "ident_case", 415 + "proc-macro2", 416 + "quote", 417 + "strsim", 418 + "syn 2.0.76", 419 + ] 420 + 421 + [[package]] 422 + name = "darling_macro" 423 + version = "0.20.10" 424 + source = "registry+https://github.com/rust-lang/crates.io-index" 425 + checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 426 + dependencies = [ 427 + "darling_core", 428 + "quote", 429 + "syn 2.0.76", 430 + ] 431 + 432 + [[package]] 433 + name = "deranged" 434 + version = "0.3.11" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 437 + dependencies = [ 438 + "powerfmt", 439 + ] 440 + 441 + [[package]] 442 + name = "derive_builder" 443 + version = "0.20.0" 444 + source = "registry+https://github.com/rust-lang/crates.io-index" 445 + checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7" 446 + dependencies = [ 447 + "derive_builder_macro", 448 + ] 449 + 450 + [[package]] 451 + name = "derive_builder_core" 452 + version = "0.20.0" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d" 455 + dependencies = [ 456 + "darling", 457 + "proc-macro2", 458 + "quote", 459 + "syn 2.0.76", 460 + ] 461 + 462 + [[package]] 463 + name = "derive_builder_macro" 464 + version = "0.20.0" 465 + source = "registry+https://github.com/rust-lang/crates.io-index" 466 + checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" 467 + dependencies = [ 468 + "derive_builder_core", 469 + "syn 2.0.76", 470 + ] 471 + 472 + [[package]] 473 + name = "deunicode" 474 + version = "1.6.0" 475 + source = "registry+https://github.com/rust-lang/crates.io-index" 476 + checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" 477 + 478 + [[package]] 479 + name = "entities" 480 + version = "1.0.1" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca" 483 + 484 + [[package]] 485 + name = "enum-iterator" 486 + version = "0.6.0" 487 + source = "registry+https://github.com/rust-lang/crates.io-index" 488 + checksum = "c79a6321a1197d7730510c7e3f6cb80432dfefecb32426de8cea0aa19b4bb8d7" 489 + dependencies = [ 490 + "enum-iterator-derive", 491 + ] 492 + 493 + [[package]] 494 + name = "enum-iterator-derive" 495 + version = "0.6.0" 496 + source = "registry+https://github.com/rust-lang/crates.io-index" 497 + checksum = "1e94aa31f7c0dc764f57896dc615ddd76fc13b0d5dca7eb6cc5e018a5a09ec06" 498 + dependencies = [ 499 + "proc-macro2", 500 + "quote", 501 + "syn 1.0.109", 502 + ] 503 + 504 + [[package]] 505 + name = "equivalent" 506 + version = "1.0.1" 507 + source = "registry+https://github.com/rust-lang/crates.io-index" 508 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 509 + 510 + [[package]] 511 + name = "errno" 512 + version = "0.3.9" 513 + source = "registry+https://github.com/rust-lang/crates.io-index" 514 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 515 + dependencies = [ 516 + "libc", 517 + "windows-sys 0.52.0", 518 + ] 519 + 520 + [[package]] 521 + name = "fancy-regex" 522 + version = "0.11.0" 523 + source = "registry+https://github.com/rust-lang/crates.io-index" 524 + checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 525 + dependencies = [ 526 + "bit-set", 527 + "regex", 528 + ] 529 + 530 + [[package]] 531 + name = "flate2" 532 + version = "1.0.33" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253" 535 + dependencies = [ 536 + "crc32fast", 537 + "miniz_oxide 0.8.0", 538 + ] 539 + 540 + [[package]] 541 + name = "fnv" 542 + version = "1.0.7" 543 + source = "registry+https://github.com/rust-lang/crates.io-index" 544 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 545 + 546 + [[package]] 547 + name = "form_urlencoded" 548 + version = "1.2.1" 549 + source = "registry+https://github.com/rust-lang/crates.io-index" 550 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 551 + dependencies = [ 552 + "percent-encoding", 553 + ] 554 + 555 + [[package]] 556 + name = "futures-channel" 557 + version = "0.3.30" 558 + source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 560 + dependencies = [ 561 + "futures-core", 562 + ] 563 + 564 + [[package]] 565 + name = "futures-core" 566 + version = "0.3.30" 567 + source = "registry+https://github.com/rust-lang/crates.io-index" 568 + checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 569 + 570 + [[package]] 571 + name = "futures-sink" 572 + version = "0.3.30" 573 + source = "registry+https://github.com/rust-lang/crates.io-index" 574 + checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 575 + 576 + [[package]] 577 + name = "futures-task" 578 + version = "0.3.30" 579 + source = "registry+https://github.com/rust-lang/crates.io-index" 580 + checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 581 + 582 + [[package]] 583 + name = "futures-util" 584 + version = "0.3.30" 585 + source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 587 + dependencies = [ 588 + "futures-core", 589 + "futures-task", 590 + "pin-project-lite", 591 + "pin-utils", 592 + ] 593 + 594 + [[package]] 595 + name = "getrandom" 596 + version = "0.2.15" 597 + source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 599 + dependencies = [ 600 + "cfg-if", 601 + "libc", 602 + "wasi", 603 + ] 604 + 605 + [[package]] 606 + name = "getset" 607 + version = "0.1.2" 608 + source = "registry+https://github.com/rust-lang/crates.io-index" 609 + checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9" 610 + dependencies = [ 611 + "proc-macro-error", 612 + "proc-macro2", 613 + "quote", 614 + "syn 1.0.109", 615 + ] 616 + 617 + [[package]] 618 + name = "gimli" 619 + version = "0.29.0" 620 + source = "registry+https://github.com/rust-lang/crates.io-index" 621 + checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 622 + 623 + [[package]] 624 + name = "hashbrown" 625 + version = "0.12.3" 626 + source = "registry+https://github.com/rust-lang/crates.io-index" 627 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 628 + 629 + [[package]] 630 + name = "hashbrown" 631 + version = "0.14.5" 632 + source = "registry+https://github.com/rust-lang/crates.io-index" 633 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 634 + 635 + [[package]] 636 + name = "heck" 637 + version = "0.5.0" 638 + source = "registry+https://github.com/rust-lang/crates.io-index" 639 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 640 + 641 + [[package]] 642 + name = "hermit-abi" 643 + version = "0.3.9" 644 + source = "registry+https://github.com/rust-lang/crates.io-index" 645 + checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 646 + 647 + [[package]] 648 + name = "http" 649 + version = "1.1.0" 650 + source = "registry+https://github.com/rust-lang/crates.io-index" 651 + checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 652 + dependencies = [ 653 + "bytes", 654 + "fnv", 655 + "itoa", 656 + ] 657 + 658 + [[package]] 659 + name = "http-body" 660 + version = "1.0.1" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 663 + dependencies = [ 664 + "bytes", 665 + "http", 666 + ] 667 + 668 + [[package]] 669 + name = "http-body-util" 670 + version = "0.1.2" 671 + source = "registry+https://github.com/rust-lang/crates.io-index" 672 + checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 673 + dependencies = [ 674 + "bytes", 675 + "futures-util", 676 + "http", 677 + "http-body", 678 + "pin-project-lite", 679 + ] 680 + 681 + [[package]] 682 + name = "http-range-header" 683 + version = "0.4.1" 684 + source = "registry+https://github.com/rust-lang/crates.io-index" 685 + checksum = "08a397c49fec283e3d6211adbe480be95aae5f304cfb923e9970e08956d5168a" 686 + 687 + [[package]] 688 + name = "httparse" 689 + version = "1.9.4" 690 + source = "registry+https://github.com/rust-lang/crates.io-index" 691 + checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 692 + 693 + [[package]] 694 + name = "httpdate" 695 + version = "1.0.3" 696 + source = "registry+https://github.com/rust-lang/crates.io-index" 697 + checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 698 + 699 + [[package]] 700 + name = "humansize" 701 + version = "2.1.3" 702 + source = "registry+https://github.com/rust-lang/crates.io-index" 703 + checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 704 + dependencies = [ 705 + "libm", 706 + ] 707 + 708 + [[package]] 709 + name = "hyper" 710 + version = "1.4.1" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 713 + dependencies = [ 714 + "bytes", 715 + "futures-channel", 716 + "futures-util", 717 + "http", 718 + "http-body", 719 + "httparse", 720 + "httpdate", 721 + "itoa", 722 + "pin-project-lite", 723 + "smallvec", 724 + "tokio", 725 + ] 726 + 727 + [[package]] 728 + name = "hyper-util" 729 + version = "0.1.7" 730 + source = "registry+https://github.com/rust-lang/crates.io-index" 731 + checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" 732 + dependencies = [ 733 + "bytes", 734 + "futures-util", 735 + "http", 736 + "http-body", 737 + "hyper", 738 + "pin-project-lite", 739 + "tokio", 740 + ] 741 + 742 + [[package]] 743 + name = "ident_case" 744 + version = "1.0.1" 745 + source = "registry+https://github.com/rust-lang/crates.io-index" 746 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 747 + 748 + [[package]] 749 + name = "indexmap" 750 + version = "1.9.3" 751 + source = "registry+https://github.com/rust-lang/crates.io-index" 752 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 753 + dependencies = [ 754 + "autocfg", 755 + "hashbrown 0.12.3", 756 + ] 757 + 758 + [[package]] 759 + name = "indexmap" 760 + version = "2.4.0" 761 + source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c" 763 + dependencies = [ 764 + "equivalent", 765 + "hashbrown 0.14.5", 766 + ] 767 + 768 + [[package]] 769 + name = "is_terminal_polyfill" 770 + version = "1.70.1" 771 + source = "registry+https://github.com/rust-lang/crates.io-index" 772 + checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 773 + 774 + [[package]] 775 + name = "itoa" 776 + version = "1.0.11" 777 + source = "registry+https://github.com/rust-lang/crates.io-index" 778 + checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 779 + 780 + [[package]] 781 + name = "lazy_static" 782 + version = "1.5.0" 783 + source = "registry+https://github.com/rust-lang/crates.io-index" 784 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 785 + 786 + [[package]] 787 + name = "libc" 788 + version = "0.2.158" 789 + source = "registry+https://github.com/rust-lang/crates.io-index" 790 + checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" 791 + 792 + [[package]] 793 + name = "libm" 794 + version = "0.2.8" 795 + source = "registry+https://github.com/rust-lang/crates.io-index" 796 + checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 797 + 798 + [[package]] 799 + name = "linked-hash-map" 800 + version = "0.5.6" 801 + source = "registry+https://github.com/rust-lang/crates.io-index" 802 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 803 + 804 + [[package]] 805 + name = "linux-raw-sys" 806 + version = "0.4.14" 807 + source = "registry+https://github.com/rust-lang/crates.io-index" 808 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 809 + 810 + [[package]] 811 + name = "log" 812 + version = "0.4.22" 813 + source = "registry+https://github.com/rust-lang/crates.io-index" 814 + checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 815 + 816 + [[package]] 817 + name = "markdown-parser" 818 + version = "0.1.2" 819 + source = "registry+https://github.com/rust-lang/crates.io-index" 820 + checksum = "cf523952b36c9ad1a650d608d38187f12f4ad1b9e402a8c9df79743989289def" 821 + dependencies = [ 822 + "enum-iterator", 823 + "enum-iterator-derive", 824 + "getset", 825 + "lazy_static", 826 + "quick-error", 827 + "regex", 828 + "serde", 829 + "serde_json", 830 + "serde_yaml 0.8.26", 831 + "toml", 832 + ] 833 + 834 + [[package]] 835 + name = "matchit" 836 + version = "0.7.3" 837 + source = "registry+https://github.com/rust-lang/crates.io-index" 838 + checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 839 + 840 + [[package]] 841 + name = "memchr" 842 + version = "2.7.4" 843 + source = "registry+https://github.com/rust-lang/crates.io-index" 844 + checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 845 + 846 + [[package]] 847 + name = "mime" 848 + version = "0.3.17" 849 + source = "registry+https://github.com/rust-lang/crates.io-index" 850 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 851 + 852 + [[package]] 853 + name = "mime_guess" 854 + version = "2.0.5" 855 + source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 857 + dependencies = [ 858 + "mime", 859 + "unicase", 860 + ] 861 + 862 + [[package]] 863 + name = "minimal-lexical" 864 + version = "0.2.1" 865 + source = "registry+https://github.com/rust-lang/crates.io-index" 866 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 867 + 868 + [[package]] 869 + name = "miniz_oxide" 870 + version = "0.7.4" 871 + source = "registry+https://github.com/rust-lang/crates.io-index" 872 + checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 873 + dependencies = [ 874 + "adler", 875 + ] 876 + 877 + [[package]] 878 + name = "miniz_oxide" 879 + version = "0.8.0" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 882 + dependencies = [ 883 + "adler2", 884 + ] 885 + 886 + [[package]] 887 + name = "mio" 888 + version = "1.0.2" 889 + source = "registry+https://github.com/rust-lang/crates.io-index" 890 + checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 891 + dependencies = [ 892 + "hermit-abi", 893 + "libc", 894 + "wasi", 895 + "windows-sys 0.52.0", 896 + ] 897 + 898 + [[package]] 899 + name = "nom" 900 + version = "7.1.3" 901 + source = "registry+https://github.com/rust-lang/crates.io-index" 902 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 903 + dependencies = [ 904 + "memchr", 905 + "minimal-lexical", 906 + ] 907 + 908 + [[package]] 909 + name = "num-conv" 910 + version = "0.1.0" 911 + source = "registry+https://github.com/rust-lang/crates.io-index" 912 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 913 + 914 + [[package]] 915 + name = "num-traits" 916 + version = "0.2.19" 917 + source = "registry+https://github.com/rust-lang/crates.io-index" 918 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 919 + dependencies = [ 920 + "autocfg", 921 + ] 922 + 923 + [[package]] 924 + name = "object" 925 + version = "0.36.3" 926 + source = "registry+https://github.com/rust-lang/crates.io-index" 927 + checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9" 928 + dependencies = [ 929 + "memchr", 930 + ] 931 + 932 + [[package]] 933 + name = "once_cell" 934 + version = "1.19.0" 935 + source = "registry+https://github.com/rust-lang/crates.io-index" 936 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 937 + 938 + [[package]] 939 + name = "onig" 940 + version = "6.4.0" 941 + source = "registry+https://github.com/rust-lang/crates.io-index" 942 + checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 943 + dependencies = [ 944 + "bitflags 1.3.2", 945 + "libc", 946 + "once_cell", 947 + "onig_sys", 948 + ] 949 + 950 + [[package]] 951 + name = "onig_sys" 952 + version = "69.8.1" 953 + source = "registry+https://github.com/rust-lang/crates.io-index" 954 + checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 955 + dependencies = [ 956 + "cc", 957 + "pkg-config", 958 + ] 959 + 960 + [[package]] 961 + name = "percent-encoding" 962 + version = "2.3.1" 963 + source = "registry+https://github.com/rust-lang/crates.io-index" 964 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 965 + 966 + [[package]] 967 + name = "pin-project" 968 + version = "1.1.5" 969 + source = "registry+https://github.com/rust-lang/crates.io-index" 970 + checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 971 + dependencies = [ 972 + "pin-project-internal", 973 + ] 974 + 975 + [[package]] 976 + name = "pin-project-internal" 977 + version = "1.1.5" 978 + source = "registry+https://github.com/rust-lang/crates.io-index" 979 + checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 980 + dependencies = [ 981 + "proc-macro2", 982 + "quote", 983 + "syn 2.0.76", 984 + ] 985 + 986 + [[package]] 987 + name = "pin-project-lite" 988 + version = "0.2.14" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 991 + 992 + [[package]] 993 + name = "pin-utils" 994 + version = "0.1.0" 995 + source = "registry+https://github.com/rust-lang/crates.io-index" 996 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 997 + 998 + [[package]] 999 + name = "pkg-config" 1000 + version = "0.3.30" 1001 + source = "registry+https://github.com/rust-lang/crates.io-index" 1002 + checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1003 + 1004 + [[package]] 1005 + name = "plist" 1006 + version = "1.7.0" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" 1009 + dependencies = [ 1010 + "base64", 1011 + "indexmap 2.4.0", 1012 + "quick-xml", 1013 + "serde", 1014 + "time", 1015 + ] 1016 + 1017 + [[package]] 1018 + name = "powerfmt" 1019 + version = "0.2.0" 1020 + source = "registry+https://github.com/rust-lang/crates.io-index" 1021 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1022 + 1023 + [[package]] 1024 + name = "ppv-lite86" 1025 + version = "0.2.20" 1026 + source = "registry+https://github.com/rust-lang/crates.io-index" 1027 + checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 1028 + dependencies = [ 1029 + "zerocopy", 1030 + ] 1031 + 1032 + [[package]] 1033 + name = "proc-macro-error" 1034 + version = "1.0.4" 1035 + source = "registry+https://github.com/rust-lang/crates.io-index" 1036 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1037 + dependencies = [ 1038 + "proc-macro-error-attr", 1039 + "proc-macro2", 1040 + "quote", 1041 + "syn 1.0.109", 1042 + "version_check", 1043 + ] 1044 + 1045 + [[package]] 1046 + name = "proc-macro-error-attr" 1047 + version = "1.0.4" 1048 + source = "registry+https://github.com/rust-lang/crates.io-index" 1049 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1050 + dependencies = [ 1051 + "proc-macro2", 1052 + "quote", 1053 + "version_check", 1054 + ] 1055 + 1056 + [[package]] 1057 + name = "proc-macro2" 1058 + version = "1.0.86" 1059 + source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 1061 + dependencies = [ 1062 + "unicode-ident", 1063 + ] 1064 + 1065 + [[package]] 1066 + name = "quick-error" 1067 + version = "2.0.1" 1068 + source = "registry+https://github.com/rust-lang/crates.io-index" 1069 + checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 1070 + 1071 + [[package]] 1072 + name = "quick-xml" 1073 + version = "0.32.0" 1074 + source = "registry+https://github.com/rust-lang/crates.io-index" 1075 + checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" 1076 + dependencies = [ 1077 + "memchr", 1078 + ] 1079 + 1080 + [[package]] 1081 + name = "quote" 1082 + version = "1.0.37" 1083 + source = "registry+https://github.com/rust-lang/crates.io-index" 1084 + checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 1085 + dependencies = [ 1086 + "proc-macro2", 1087 + ] 1088 + 1089 + [[package]] 1090 + name = "rand" 1091 + version = "0.8.5" 1092 + source = "registry+https://github.com/rust-lang/crates.io-index" 1093 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1094 + dependencies = [ 1095 + "libc", 1096 + "rand_chacha", 1097 + "rand_core", 1098 + ] 1099 + 1100 + [[package]] 1101 + name = "rand_chacha" 1102 + version = "0.3.1" 1103 + source = "registry+https://github.com/rust-lang/crates.io-index" 1104 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1105 + dependencies = [ 1106 + "ppv-lite86", 1107 + "rand_core", 1108 + ] 1109 + 1110 + [[package]] 1111 + name = "rand_core" 1112 + version = "0.6.4" 1113 + source = "registry+https://github.com/rust-lang/crates.io-index" 1114 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1115 + dependencies = [ 1116 + "getrandom", 1117 + ] 1118 + 1119 + [[package]] 1120 + name = "regex" 1121 + version = "1.10.6" 1122 + source = "registry+https://github.com/rust-lang/crates.io-index" 1123 + checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" 1124 + dependencies = [ 1125 + "aho-corasick", 1126 + "memchr", 1127 + "regex-automata", 1128 + "regex-syntax", 1129 + ] 1130 + 1131 + [[package]] 1132 + name = "regex-automata" 1133 + version = "0.4.7" 1134 + source = "registry+https://github.com/rust-lang/crates.io-index" 1135 + checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 1136 + dependencies = [ 1137 + "aho-corasick", 1138 + "memchr", 1139 + "regex-syntax", 1140 + ] 1141 + 1142 + [[package]] 1143 + name = "regex-syntax" 1144 + version = "0.8.4" 1145 + source = "registry+https://github.com/rust-lang/crates.io-index" 1146 + checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 1147 + 1148 + [[package]] 1149 + name = "rustc-demangle" 1150 + version = "0.1.24" 1151 + source = "registry+https://github.com/rust-lang/crates.io-index" 1152 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1153 + 1154 + [[package]] 1155 + name = "rustix" 1156 + version = "0.38.35" 1157 + source = "registry+https://github.com/rust-lang/crates.io-index" 1158 + checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f" 1159 + dependencies = [ 1160 + "bitflags 2.6.0", 1161 + "errno", 1162 + "libc", 1163 + "linux-raw-sys", 1164 + "windows-sys 0.52.0", 1165 + ] 1166 + 1167 + [[package]] 1168 + name = "rustversion" 1169 + version = "1.0.17" 1170 + source = "registry+https://github.com/rust-lang/crates.io-index" 1171 + checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1172 + 1173 + [[package]] 1174 + name = "rusty_duck" 1175 + version = "0.1.0" 1176 + dependencies = [ 1177 + "askama", 1178 + "askama_axum", 1179 + "axum", 1180 + "comrak", 1181 + "markdown-parser", 1182 + "rand", 1183 + "serde", 1184 + "serde_yaml 0.9.34+deprecated", 1185 + "tokio", 1186 + "tower-http", 1187 + ] 1188 + 1189 + [[package]] 1190 + name = "ryu" 1191 + version = "1.0.18" 1192 + source = "registry+https://github.com/rust-lang/crates.io-index" 1193 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1194 + 1195 + [[package]] 1196 + name = "same-file" 1197 + version = "1.0.6" 1198 + source = "registry+https://github.com/rust-lang/crates.io-index" 1199 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1200 + dependencies = [ 1201 + "winapi-util", 1202 + ] 1203 + 1204 + [[package]] 1205 + name = "serde" 1206 + version = "1.0.209" 1207 + source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" 1209 + dependencies = [ 1210 + "serde_derive", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "serde_derive" 1215 + version = "1.0.209" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" 1218 + dependencies = [ 1219 + "proc-macro2", 1220 + "quote", 1221 + "syn 2.0.76", 1222 + ] 1223 + 1224 + [[package]] 1225 + name = "serde_json" 1226 + version = "1.0.127" 1227 + source = "registry+https://github.com/rust-lang/crates.io-index" 1228 + checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" 1229 + dependencies = [ 1230 + "itoa", 1231 + "memchr", 1232 + "ryu", 1233 + "serde", 1234 + ] 1235 + 1236 + [[package]] 1237 + name = "serde_path_to_error" 1238 + version = "0.1.16" 1239 + source = "registry+https://github.com/rust-lang/crates.io-index" 1240 + checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 1241 + dependencies = [ 1242 + "itoa", 1243 + "serde", 1244 + ] 1245 + 1246 + [[package]] 1247 + name = "serde_urlencoded" 1248 + version = "0.7.1" 1249 + source = "registry+https://github.com/rust-lang/crates.io-index" 1250 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1251 + dependencies = [ 1252 + "form_urlencoded", 1253 + "itoa", 1254 + "ryu", 1255 + "serde", 1256 + ] 1257 + 1258 + [[package]] 1259 + name = "serde_yaml" 1260 + version = "0.8.26" 1261 + source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" 1263 + dependencies = [ 1264 + "indexmap 1.9.3", 1265 + "ryu", 1266 + "serde", 1267 + "yaml-rust", 1268 + ] 1269 + 1270 + [[package]] 1271 + name = "serde_yaml" 1272 + version = "0.9.34+deprecated" 1273 + source = "registry+https://github.com/rust-lang/crates.io-index" 1274 + checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 1275 + dependencies = [ 1276 + "indexmap 2.4.0", 1277 + "itoa", 1278 + "ryu", 1279 + "serde", 1280 + "unsafe-libyaml", 1281 + ] 1282 + 1283 + [[package]] 1284 + name = "shell-words" 1285 + version = "1.1.0" 1286 + source = "registry+https://github.com/rust-lang/crates.io-index" 1287 + checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 1288 + 1289 + [[package]] 1290 + name = "shlex" 1291 + version = "1.3.0" 1292 + source = "registry+https://github.com/rust-lang/crates.io-index" 1293 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1294 + 1295 + [[package]] 1296 + name = "slug" 1297 + version = "0.1.6" 1298 + source = "registry+https://github.com/rust-lang/crates.io-index" 1299 + checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724" 1300 + dependencies = [ 1301 + "deunicode", 1302 + "wasm-bindgen", 1303 + ] 1304 + 1305 + [[package]] 1306 + name = "smallvec" 1307 + version = "1.13.2" 1308 + source = "registry+https://github.com/rust-lang/crates.io-index" 1309 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1310 + 1311 + [[package]] 1312 + name = "socket2" 1313 + version = "0.5.7" 1314 + source = "registry+https://github.com/rust-lang/crates.io-index" 1315 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1316 + dependencies = [ 1317 + "libc", 1318 + "windows-sys 0.52.0", 1319 + ] 1320 + 1321 + [[package]] 1322 + name = "strsim" 1323 + version = "0.11.1" 1324 + source = "registry+https://github.com/rust-lang/crates.io-index" 1325 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1326 + 1327 + [[package]] 1328 + name = "syn" 1329 + version = "1.0.109" 1330 + source = "registry+https://github.com/rust-lang/crates.io-index" 1331 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1332 + dependencies = [ 1333 + "proc-macro2", 1334 + "quote", 1335 + "unicode-ident", 1336 + ] 1337 + 1338 + [[package]] 1339 + name = "syn" 1340 + version = "2.0.76" 1341 + source = "registry+https://github.com/rust-lang/crates.io-index" 1342 + checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" 1343 + dependencies = [ 1344 + "proc-macro2", 1345 + "quote", 1346 + "unicode-ident", 1347 + ] 1348 + 1349 + [[package]] 1350 + name = "sync_wrapper" 1351 + version = "0.1.2" 1352 + source = "registry+https://github.com/rust-lang/crates.io-index" 1353 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 1354 + 1355 + [[package]] 1356 + name = "sync_wrapper" 1357 + version = "1.0.1" 1358 + source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 1360 + 1361 + [[package]] 1362 + name = "syntect" 1363 + version = "5.2.0" 1364 + source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1" 1366 + dependencies = [ 1367 + "bincode", 1368 + "bitflags 1.3.2", 1369 + "fancy-regex", 1370 + "flate2", 1371 + "fnv", 1372 + "once_cell", 1373 + "onig", 1374 + "plist", 1375 + "regex-syntax", 1376 + "serde", 1377 + "serde_derive", 1378 + "serde_json", 1379 + "thiserror", 1380 + "walkdir", 1381 + "yaml-rust", 1382 + ] 1383 + 1384 + [[package]] 1385 + name = "terminal_size" 1386 + version = "0.3.0" 1387 + source = "registry+https://github.com/rust-lang/crates.io-index" 1388 + checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 1389 + dependencies = [ 1390 + "rustix", 1391 + "windows-sys 0.48.0", 1392 + ] 1393 + 1394 + [[package]] 1395 + name = "thiserror" 1396 + version = "1.0.63" 1397 + source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 1399 + dependencies = [ 1400 + "thiserror-impl", 1401 + ] 1402 + 1403 + [[package]] 1404 + name = "thiserror-impl" 1405 + version = "1.0.63" 1406 + source = "registry+https://github.com/rust-lang/crates.io-index" 1407 + checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 1408 + dependencies = [ 1409 + "proc-macro2", 1410 + "quote", 1411 + "syn 2.0.76", 1412 + ] 1413 + 1414 + [[package]] 1415 + name = "time" 1416 + version = "0.3.36" 1417 + source = "registry+https://github.com/rust-lang/crates.io-index" 1418 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1419 + dependencies = [ 1420 + "deranged", 1421 + "itoa", 1422 + "num-conv", 1423 + "powerfmt", 1424 + "serde", 1425 + "time-core", 1426 + "time-macros", 1427 + ] 1428 + 1429 + [[package]] 1430 + name = "time-core" 1431 + version = "0.1.2" 1432 + source = "registry+https://github.com/rust-lang/crates.io-index" 1433 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1434 + 1435 + [[package]] 1436 + name = "time-macros" 1437 + version = "0.2.18" 1438 + source = "registry+https://github.com/rust-lang/crates.io-index" 1439 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1440 + dependencies = [ 1441 + "num-conv", 1442 + "time-core", 1443 + ] 1444 + 1445 + [[package]] 1446 + name = "tinyvec" 1447 + version = "1.8.0" 1448 + source = "registry+https://github.com/rust-lang/crates.io-index" 1449 + checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 1450 + dependencies = [ 1451 + "tinyvec_macros", 1452 + ] 1453 + 1454 + [[package]] 1455 + name = "tinyvec_macros" 1456 + version = "0.1.1" 1457 + source = "registry+https://github.com/rust-lang/crates.io-index" 1458 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1459 + 1460 + [[package]] 1461 + name = "tokio" 1462 + version = "1.39.3" 1463 + source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" 1465 + dependencies = [ 1466 + "backtrace", 1467 + "bytes", 1468 + "libc", 1469 + "mio", 1470 + "pin-project-lite", 1471 + "socket2", 1472 + "tokio-macros", 1473 + "windows-sys 0.52.0", 1474 + ] 1475 + 1476 + [[package]] 1477 + name = "tokio-macros" 1478 + version = "2.4.0" 1479 + source = "registry+https://github.com/rust-lang/crates.io-index" 1480 + checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 1481 + dependencies = [ 1482 + "proc-macro2", 1483 + "quote", 1484 + "syn 2.0.76", 1485 + ] 1486 + 1487 + [[package]] 1488 + name = "tokio-util" 1489 + version = "0.7.11" 1490 + source = "registry+https://github.com/rust-lang/crates.io-index" 1491 + checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 1492 + dependencies = [ 1493 + "bytes", 1494 + "futures-core", 1495 + "futures-sink", 1496 + "pin-project-lite", 1497 + "tokio", 1498 + ] 1499 + 1500 + [[package]] 1501 + name = "toml" 1502 + version = "0.5.11" 1503 + source = "registry+https://github.com/rust-lang/crates.io-index" 1504 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 1505 + dependencies = [ 1506 + "serde", 1507 + ] 1508 + 1509 + [[package]] 1510 + name = "tower" 1511 + version = "0.4.13" 1512 + source = "registry+https://github.com/rust-lang/crates.io-index" 1513 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 1514 + dependencies = [ 1515 + "futures-core", 1516 + "futures-util", 1517 + "pin-project", 1518 + "pin-project-lite", 1519 + "tokio", 1520 + "tower-layer", 1521 + "tower-service", 1522 + "tracing", 1523 + ] 1524 + 1525 + [[package]] 1526 + name = "tower-http" 1527 + version = "0.5.2" 1528 + source = "registry+https://github.com/rust-lang/crates.io-index" 1529 + checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" 1530 + dependencies = [ 1531 + "bitflags 2.6.0", 1532 + "bytes", 1533 + "futures-util", 1534 + "http", 1535 + "http-body", 1536 + "http-body-util", 1537 + "http-range-header", 1538 + "httpdate", 1539 + "mime", 1540 + "mime_guess", 1541 + "percent-encoding", 1542 + "pin-project-lite", 1543 + "tokio", 1544 + "tokio-util", 1545 + "tower-layer", 1546 + "tower-service", 1547 + "tracing", 1548 + ] 1549 + 1550 + [[package]] 1551 + name = "tower-layer" 1552 + version = "0.3.3" 1553 + source = "registry+https://github.com/rust-lang/crates.io-index" 1554 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1555 + 1556 + [[package]] 1557 + name = "tower-service" 1558 + version = "0.3.3" 1559 + source = "registry+https://github.com/rust-lang/crates.io-index" 1560 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1561 + 1562 + [[package]] 1563 + name = "tracing" 1564 + version = "0.1.40" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1567 + dependencies = [ 1568 + "log", 1569 + "pin-project-lite", 1570 + "tracing-core", 1571 + ] 1572 + 1573 + [[package]] 1574 + name = "tracing-core" 1575 + version = "0.1.32" 1576 + source = "registry+https://github.com/rust-lang/crates.io-index" 1577 + checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1578 + dependencies = [ 1579 + "once_cell", 1580 + ] 1581 + 1582 + [[package]] 1583 + name = "typed-arena" 1584 + version = "2.0.2" 1585 + source = "registry+https://github.com/rust-lang/crates.io-index" 1586 + checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 1587 + 1588 + [[package]] 1589 + name = "unicase" 1590 + version = "2.7.0" 1591 + source = "registry+https://github.com/rust-lang/crates.io-index" 1592 + checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 1593 + dependencies = [ 1594 + "version_check", 1595 + ] 1596 + 1597 + [[package]] 1598 + name = "unicode-ident" 1599 + version = "1.0.12" 1600 + source = "registry+https://github.com/rust-lang/crates.io-index" 1601 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1602 + 1603 + [[package]] 1604 + name = "unicode-normalization" 1605 + version = "0.1.23" 1606 + source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 1608 + dependencies = [ 1609 + "tinyvec", 1610 + ] 1611 + 1612 + [[package]] 1613 + name = "unicode_categories" 1614 + version = "0.1.1" 1615 + source = "registry+https://github.com/rust-lang/crates.io-index" 1616 + checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 1617 + 1618 + [[package]] 1619 + name = "unsafe-libyaml" 1620 + version = "0.2.11" 1621 + source = "registry+https://github.com/rust-lang/crates.io-index" 1622 + checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 1623 + 1624 + [[package]] 1625 + name = "utf8parse" 1626 + version = "0.2.2" 1627 + source = "registry+https://github.com/rust-lang/crates.io-index" 1628 + checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1629 + 1630 + [[package]] 1631 + name = "version_check" 1632 + version = "0.9.5" 1633 + source = "registry+https://github.com/rust-lang/crates.io-index" 1634 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1635 + 1636 + [[package]] 1637 + name = "walkdir" 1638 + version = "2.5.0" 1639 + source = "registry+https://github.com/rust-lang/crates.io-index" 1640 + checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1641 + dependencies = [ 1642 + "same-file", 1643 + "winapi-util", 1644 + ] 1645 + 1646 + [[package]] 1647 + name = "wasi" 1648 + version = "0.11.0+wasi-snapshot-preview1" 1649 + source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1651 + 1652 + [[package]] 1653 + name = "wasm-bindgen" 1654 + version = "0.2.93" 1655 + source = "registry+https://github.com/rust-lang/crates.io-index" 1656 + checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" 1657 + dependencies = [ 1658 + "cfg-if", 1659 + "once_cell", 1660 + "wasm-bindgen-macro", 1661 + ] 1662 + 1663 + [[package]] 1664 + name = "wasm-bindgen-backend" 1665 + version = "0.2.93" 1666 + source = "registry+https://github.com/rust-lang/crates.io-index" 1667 + checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" 1668 + dependencies = [ 1669 + "bumpalo", 1670 + "log", 1671 + "once_cell", 1672 + "proc-macro2", 1673 + "quote", 1674 + "syn 2.0.76", 1675 + "wasm-bindgen-shared", 1676 + ] 1677 + 1678 + [[package]] 1679 + name = "wasm-bindgen-macro" 1680 + version = "0.2.93" 1681 + source = "registry+https://github.com/rust-lang/crates.io-index" 1682 + checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" 1683 + dependencies = [ 1684 + "quote", 1685 + "wasm-bindgen-macro-support", 1686 + ] 1687 + 1688 + [[package]] 1689 + name = "wasm-bindgen-macro-support" 1690 + version = "0.2.93" 1691 + source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" 1693 + dependencies = [ 1694 + "proc-macro2", 1695 + "quote", 1696 + "syn 2.0.76", 1697 + "wasm-bindgen-backend", 1698 + "wasm-bindgen-shared", 1699 + ] 1700 + 1701 + [[package]] 1702 + name = "wasm-bindgen-shared" 1703 + version = "0.2.93" 1704 + source = "registry+https://github.com/rust-lang/crates.io-index" 1705 + checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" 1706 + 1707 + [[package]] 1708 + name = "winapi-util" 1709 + version = "0.1.9" 1710 + source = "registry+https://github.com/rust-lang/crates.io-index" 1711 + checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 1712 + dependencies = [ 1713 + "windows-sys 0.59.0", 1714 + ] 1715 + 1716 + [[package]] 1717 + name = "windows-sys" 1718 + version = "0.48.0" 1719 + source = "registry+https://github.com/rust-lang/crates.io-index" 1720 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1721 + dependencies = [ 1722 + "windows-targets 0.48.5", 1723 + ] 1724 + 1725 + [[package]] 1726 + name = "windows-sys" 1727 + version = "0.52.0" 1728 + source = "registry+https://github.com/rust-lang/crates.io-index" 1729 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1730 + dependencies = [ 1731 + "windows-targets 0.52.6", 1732 + ] 1733 + 1734 + [[package]] 1735 + name = "windows-sys" 1736 + version = "0.59.0" 1737 + source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1739 + dependencies = [ 1740 + "windows-targets 0.52.6", 1741 + ] 1742 + 1743 + [[package]] 1744 + name = "windows-targets" 1745 + version = "0.48.5" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1748 + dependencies = [ 1749 + "windows_aarch64_gnullvm 0.48.5", 1750 + "windows_aarch64_msvc 0.48.5", 1751 + "windows_i686_gnu 0.48.5", 1752 + "windows_i686_msvc 0.48.5", 1753 + "windows_x86_64_gnu 0.48.5", 1754 + "windows_x86_64_gnullvm 0.48.5", 1755 + "windows_x86_64_msvc 0.48.5", 1756 + ] 1757 + 1758 + [[package]] 1759 + name = "windows-targets" 1760 + version = "0.52.6" 1761 + source = "registry+https://github.com/rust-lang/crates.io-index" 1762 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1763 + dependencies = [ 1764 + "windows_aarch64_gnullvm 0.52.6", 1765 + "windows_aarch64_msvc 0.52.6", 1766 + "windows_i686_gnu 0.52.6", 1767 + "windows_i686_gnullvm", 1768 + "windows_i686_msvc 0.52.6", 1769 + "windows_x86_64_gnu 0.52.6", 1770 + "windows_x86_64_gnullvm 0.52.6", 1771 + "windows_x86_64_msvc 0.52.6", 1772 + ] 1773 + 1774 + [[package]] 1775 + name = "windows_aarch64_gnullvm" 1776 + version = "0.48.5" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1779 + 1780 + [[package]] 1781 + name = "windows_aarch64_gnullvm" 1782 + version = "0.52.6" 1783 + source = "registry+https://github.com/rust-lang/crates.io-index" 1784 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1785 + 1786 + [[package]] 1787 + name = "windows_aarch64_msvc" 1788 + version = "0.48.5" 1789 + source = "registry+https://github.com/rust-lang/crates.io-index" 1790 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1791 + 1792 + [[package]] 1793 + name = "windows_aarch64_msvc" 1794 + version = "0.52.6" 1795 + source = "registry+https://github.com/rust-lang/crates.io-index" 1796 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1797 + 1798 + [[package]] 1799 + name = "windows_i686_gnu" 1800 + version = "0.48.5" 1801 + source = "registry+https://github.com/rust-lang/crates.io-index" 1802 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1803 + 1804 + [[package]] 1805 + name = "windows_i686_gnu" 1806 + version = "0.52.6" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1809 + 1810 + [[package]] 1811 + name = "windows_i686_gnullvm" 1812 + version = "0.52.6" 1813 + source = "registry+https://github.com/rust-lang/crates.io-index" 1814 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1815 + 1816 + [[package]] 1817 + name = "windows_i686_msvc" 1818 + version = "0.48.5" 1819 + source = "registry+https://github.com/rust-lang/crates.io-index" 1820 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1821 + 1822 + [[package]] 1823 + name = "windows_i686_msvc" 1824 + version = "0.52.6" 1825 + source = "registry+https://github.com/rust-lang/crates.io-index" 1826 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1827 + 1828 + [[package]] 1829 + name = "windows_x86_64_gnu" 1830 + version = "0.48.5" 1831 + source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1833 + 1834 + [[package]] 1835 + name = "windows_x86_64_gnu" 1836 + version = "0.52.6" 1837 + source = "registry+https://github.com/rust-lang/crates.io-index" 1838 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1839 + 1840 + [[package]] 1841 + name = "windows_x86_64_gnullvm" 1842 + version = "0.48.5" 1843 + source = "registry+https://github.com/rust-lang/crates.io-index" 1844 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1845 + 1846 + [[package]] 1847 + name = "windows_x86_64_gnullvm" 1848 + version = "0.52.6" 1849 + source = "registry+https://github.com/rust-lang/crates.io-index" 1850 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1851 + 1852 + [[package]] 1853 + name = "windows_x86_64_msvc" 1854 + version = "0.48.5" 1855 + source = "registry+https://github.com/rust-lang/crates.io-index" 1856 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1857 + 1858 + [[package]] 1859 + name = "windows_x86_64_msvc" 1860 + version = "0.52.6" 1861 + source = "registry+https://github.com/rust-lang/crates.io-index" 1862 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1863 + 1864 + [[package]] 1865 + name = "xdg" 1866 + version = "2.5.2" 1867 + source = "registry+https://github.com/rust-lang/crates.io-index" 1868 + checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 1869 + 1870 + [[package]] 1871 + name = "yaml-rust" 1872 + version = "0.4.5" 1873 + source = "registry+https://github.com/rust-lang/crates.io-index" 1874 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 1875 + dependencies = [ 1876 + "linked-hash-map", 1877 + ] 1878 + 1879 + [[package]] 1880 + name = "zerocopy" 1881 + version = "0.7.35" 1882 + source = "registry+https://github.com/rust-lang/crates.io-index" 1883 + checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 1884 + dependencies = [ 1885 + "byteorder", 1886 + "zerocopy-derive", 1887 + ] 1888 + 1889 + [[package]] 1890 + name = "zerocopy-derive" 1891 + version = "0.7.35" 1892 + source = "registry+https://github.com/rust-lang/crates.io-index" 1893 + checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 1894 + dependencies = [ 1895 + "proc-macro2", 1896 + "quote", 1897 + "syn 2.0.76", 1898 + ]
+23
Cargo.toml
··· 1 + [package] 2 + name = "rusty_duck" 3 + version = "0.1.0" 4 + edition = "2021" 5 + 6 + [profile.release] 7 + opt-level = 'z' # Optimize for size. 8 + lto = true # Enable Link Time Optimisation 9 + codegen-units = 1 # Reduced to increase optimisations. 10 + panic = 'abort' # Abort on panic 11 + strip = "symbols" # Strip symbols from binary 12 + 13 + [dependencies] 14 + askama = { version = "0.12.1", features = ["with-axum"] } 15 + askama_axum = "0.4.0" 16 + axum = "0.7.5" 17 + comrak = "0.27.0" 18 + markdown-parser = "0.1.2" 19 + rand = "0.8.5" 20 + serde = { version = "1.0.209", features = ["derive"] } 21 + serde_yaml = "0.9.34" 22 + tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] } 23 + tower-http = { version = "0.5.2", features = ["fs"] }
+13
assets/duck.asc
··· 1 + -----BEGIN PGP PUBLIC KEY BLOCK----- 2 + 3 + mDMEZMNBMhYJKwYBBAHaRw8BAQdAmPlgCTcSG+IWCXqaE5muoTUnU5phhTx0r7Rb 4 + /+KkBn20IFRlY2hubyBEdWNrIDxkdWNrQHRlY2hub2R1Y2subWU+iJkEExYKAEEW 5 + IQSNINxoxA6qXTt7s4AEGKzIL/qdBAUCZMNBMgIbAwUJA8JnAAULCQgHAgIiAgYV 6 + CgkICwIEFgIDAQIeBwIXgAAKCRAEGKzIL/qdBMi6APwNf+l6lEAe43VqFdX2JQBG 7 + Ix0zhcpFIsbj8uuGJigEFgD9GuMFECAIdnjeYKJCAl5HgOgmR8TK+rY5bMeVa93v 8 + wAS4OARkw0EyEgorBgEEAZdVAQUBAQdAl4PNh37rKOOd0bb47BhcaWMPhgBvWuz4 9 + uUbXpZOilyQDAQgHiH4EGBYKACYWIQSNINxoxA6qXTt7s4AEGKzIL/qdBAUCZMNB 10 + MgIbDAUJA8JnAAAKCRAEGKzIL/qdBP6iAQCJkWOreY5Kwz1JDwu0mICt3MobMJsX 11 + IT+H2MdjE5uyDQD/TBgZjHRp6xILvSSzS8H5e0ClBkKNqUhJMVZ+hPdx/wU= 12 + =dSiL 13 + -----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
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <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"> 3 + <rect x="-59.527559" y="-84.188976" width="714.330709" height="1010.267717" fill="rgb(0%, 6.27451%, 13.72549%)" fill-opacity="1"/> 4 + <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)"/> 5 + <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)"/> 6 + <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)"/> 7 + <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)"/> 8 + <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)"/> 9 + <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)"/> 10 + <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)"/> 11 + <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)"/> 12 + <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)"/> 13 + <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)"/> 14 + <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)"/> 15 + <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)"/> 16 + <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)"/> 17 + <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)"/> 18 + <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)"/> 19 + <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)"/> 20 + <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)"/> 21 + <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)"/> 22 + <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)"/> 23 + <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)"/> 24 + <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)"/> 25 + <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)"/> 26 + <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)"/> 27 + <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)"/> 28 + <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)"/> 29 + <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)"/> 30 + <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)"/> 31 + <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)"/> 32 + <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)"/> 33 + <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)"/> 34 + <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)"/> 35 + <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)"/> 36 + <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)"/> 37 + <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)"/> 38 + <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)"/> 39 + <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)"/> 40 + <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)"/> 41 + <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)"/> 42 + <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)"/> 43 + <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)"/> 44 + <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)"/> 45 + <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)"/> 46 + <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)"/> 47 + <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)"/> 48 + <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)"/> 49 + <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)"/> 50 + <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)"/> 51 + <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)"/> 52 + <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)"/> 53 + <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)"/> 54 + <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)"/> 55 + <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)"/> 56 + <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)"/> 57 + <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)"/> 58 + <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)"/> 59 + <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)"/> 60 + <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)"/> 61 + <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)"/> 62 + <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)"/> 63 + <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)"/> 64 + <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)"/> 65 + <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)"/> 66 + <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)"/> 67 + <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)"/> 68 + <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)"/> 69 + <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)"/> 70 + <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)"/> 71 + <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)"/> 72 + <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)"/> 73 + <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)"/> 74 + <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)"/> 75 + <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)"/> 76 + <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)"/> 77 + <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)"/> 78 + <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)"/> 79 + <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)"/> 80 + <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)"/> 81 + <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)"/> 82 + <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)"/> 83 + <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)"/> 84 + <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)"/> 85 + <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)"/> 86 + <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)"/> 87 + <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)"/> 88 + <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)"/> 89 + <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)"/> 90 + <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)"/> 91 + <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)"/> 92 + <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)"/> 93 + <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)"/> 94 + <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)"/> 95 + <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)"/> 96 + <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)"/> 97 + <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)"/> 98 + <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)"/> 99 + <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)"/> 100 + <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)"/> 101 + <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)"/> 102 + <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)"/> 103 + <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)"/> 104 + <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)"/> 105 + <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)"/> 106 + <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)"/> 107 + <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)"/> 108 + <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)"/> 109 + <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)"/> 110 + <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)"/> 111 + <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 "/> 112 + <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)"/> 113 + <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)"/> 114 + <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)"/> 115 + <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)"/> 116 + <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 "/> 117 + <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)"/> 118 + <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)"/> 119 + <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)"/> 120 + <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)"/> 121 + <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 "/> 122 + <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)"/> 123 + <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)"/> 124 + <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)"/> 125 + <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)"/> 126 + <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 "/> 127 + <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)"/> 128 + <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)"/> 129 + <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)"/> 130 + <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)"/> 131 + <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 "/> 132 + <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)"/> 133 + <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)"/> 134 + <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)"/> 135 + <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)"/> 136 + <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 "/> 137 + <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)"/> 138 + <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)"/> 139 + <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)"/> 140 + <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)"/> 141 + <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 "/> 142 + <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 "/> 143 + <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 "/> 144 + <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 "/> 145 + <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 "/> 146 + <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 "/> 147 + <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)"/> 148 + <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)"/> 149 + <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)"/> 150 + <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)"/> 151 + <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)"/> 152 + <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)"/> 153 + <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)"/> 154 + <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)"/> 155 + <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)"/> 156 + <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)"/> 157 + <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)"/> 158 + <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)"/> 159 + <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)"/> 160 + <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)"/> 161 + <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)"/> 162 + <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)"/> 163 + <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)"/> 164 + <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)"/> 165 + <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)"/> 166 + <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)"/> 167 + <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)"/> 168 + <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)"/> 169 + <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)"/> 170 + <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)"/> 171 + <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)"/> 172 + <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)"/> 173 + <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)"/> 174 + <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)"/> 175 + <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)"/> 176 + <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)"/> 177 + <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)"/> 178 + <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)"/> 179 + <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)"/> 180 + <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)"/> 181 + <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)"/> 182 + <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)"/> 183 + <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)"/> 184 + <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 "/> 185 + <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)"/> 186 + <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)"/> 187 + <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)"/> 188 + <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)"/> 189 + <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 "/> 190 + <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)"/> 191 + <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)"/> 192 + <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)"/> 193 + <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)"/> 194 + <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 "/> 195 + <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)"/> 196 + <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)"/> 197 + <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)"/> 198 + <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)"/> 199 + <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 "/> 200 + <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)"/> 201 + <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)"/> 202 + <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)"/> 203 + <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)"/> 204 + <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 "/> 205 + <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)"/> 206 + <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)"/> 207 + <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)"/> 208 + <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)"/> 209 + <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 "/> 210 + <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)"/> 211 + <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)"/> 212 + <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)"/> 213 + <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)"/> 214 + <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 "/> 215 + <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 "/> 216 + <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 "/> 217 + <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 "/> 218 + <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 "/> 219 + <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 "/> 220 + <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)"/> 221 + <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)"/> 222 + <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)"/> 223 + <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)"/> 224 + <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)"/> 225 + <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)"/> 226 + <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)"/> 227 + <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)"/> 228 + <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)"/> 229 + <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)"/> 230 + <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)"/> 231 + <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)"/> 232 + <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)"/> 233 + <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)"/> 234 + <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)"/> 235 + <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)"/> 236 + <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)"/> 237 + <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)"/> 238 + <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)"/> 239 + <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)"/> 240 + <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)"/> 241 + <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)"/> 242 + <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)"/> 243 + <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)"/> 244 + <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)"/> 245 + <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)"/> 246 + <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)"/> 247 + <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)"/> 248 + <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)"/> 249 + <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)"/> 250 + <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)"/> 251 + <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)"/> 252 + <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)"/> 253 + <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)"/> 254 + <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)"/> 255 + <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)"/> 256 + <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)"/> 257 + <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)"/> 258 + <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)"/> 259 + <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)"/> 260 + <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)"/> 261 + <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)"/> 262 + <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)"/> 263 + <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)"/> 264 + <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)"/> 265 + <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)"/> 266 + <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)"/> 267 + <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)"/> 268 + <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)"/> 269 + <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)"/> 270 + <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)"/> 271 + <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)"/> 272 + <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)"/> 273 + <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)"/> 274 + <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)"/> 275 + <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)"/> 276 + <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)"/> 277 + <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)"/> 278 + <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)"/> 279 + <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)"/> 280 + <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)"/> 281 + <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)"/> 282 + <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)"/> 283 + <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)"/> 284 + <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)"/> 285 + <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)"/> 286 + <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)"/> 287 + <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)"/> 288 + <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)"/> 289 + <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)"/> 290 + <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)"/> 291 + <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)"/> 292 + <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)"/> 293 + <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)"/> 294 + <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)"/> 295 + <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)"/> 296 + <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)"/> 297 + <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)"/> 298 + <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)"/> 299 + <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)"/> 300 + <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)"/> 301 + <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)"/> 302 + <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)"/> 303 + <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)"/> 304 + <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)"/> 305 + <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)"/> 306 + <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)"/> 307 + <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)"/> 308 + <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)"/> 309 + <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)"/> 310 + <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)"/> 311 + <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)"/> 312 + <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)"/> 313 + <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)"/> 314 + <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)"/> 315 + <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)"/> 316 + <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)"/> 317 + <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)"/> 318 + <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)"/> 319 + <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)"/> 320 + <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)"/> 321 + <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)"/> 322 + <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)"/> 323 + <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)"/> 324 + <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)"/> 325 + <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)"/> 326 + <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)"/> 327 + <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)"/> 328 + <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)"/> 329 + <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)"/> 330 + <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)"/> 331 + <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)"/> 332 + <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)"/> 333 + <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)"/> 334 + <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)"/> 335 + <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)"/> 336 + <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)"/> 337 + <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)"/> 338 + <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)"/> 339 + <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)"/> 340 + <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)"/> 341 + <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)"/> 342 + <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)"/> 343 + <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)"/> 344 + <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)"/> 345 + <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)"/> 346 + <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)"/> 347 + <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)"/> 348 + <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 "/> 349 + <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)"/> 350 + <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)"/> 351 + <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)"/> 352 + <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)"/> 353 + <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 "/> 354 + <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)"/> 355 + <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)"/> 356 + <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)"/> 357 + <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)"/> 358 + <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 "/> 359 + <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)"/> 360 + <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)"/> 361 + <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)"/> 362 + <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)"/> 363 + <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 "/> 364 + <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)"/> 365 + <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)"/> 366 + <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)"/> 367 + <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)"/> 368 + <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 "/> 369 + <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)"/> 370 + <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)"/> 371 + <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)"/> 372 + <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)"/> 373 + <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 "/> 374 + <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)"/> 375 + <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)"/> 376 + <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)"/> 377 + <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)"/> 378 + <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 "/> 379 + <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 "/> 380 + <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 "/> 381 + <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 "/> 382 + <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 "/> 383 + <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 "/> 384 + <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)"/> 385 + <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)"/> 386 + <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)"/> 387 + <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)"/> 388 + <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)"/> 389 + <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)"/> 390 + <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)"/> 391 + <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)"/> 392 + <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)"/> 393 + <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)"/> 394 + <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)"/> 395 + <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)"/> 396 + <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)"/> 397 + <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)"/> 398 + <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)"/> 399 + <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)"/> 400 + <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)"/> 401 + <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)"/> 402 + <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)"/> 403 + <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)"/> 404 + <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)"/> 405 + <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)"/> 406 + <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)"/> 407 + <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)"/> 408 + <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)"/> 409 + <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)"/> 410 + <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)"/> 411 + <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)"/> 412 + <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)"/> 413 + <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)"/> 414 + <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)"/> 415 + <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)"/> 416 + <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)"/> 417 + <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)"/> 418 + <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)"/> 419 + <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)"/> 420 + <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)"/> 421 + <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)"/> 422 + <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)"/> 423 + <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)"/> 424 + <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)"/> 425 + <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)"/> 426 + <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)"/> 427 + <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)"/> 428 + <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)"/> 429 + <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)"/> 430 + <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)"/> 431 + <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)"/> 432 + <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)"/> 433 + <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)"/> 434 + <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)"/> 435 + <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)"/> 436 + <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)"/> 437 + <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)"/> 438 + <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)"/> 439 + <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)"/> 440 + <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)"/> 441 + <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)"/> 442 + <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)"/> 443 + <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)"/> 444 + <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)"/> 445 + <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)"/> 446 + <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)"/> 447 + <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)"/> 448 + <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)"/> 449 + <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)"/> 450 + <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)"/> 451 + <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)"/> 452 + <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)"/> 453 + <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)"/> 454 + <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)"/> 455 + <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)"/> 456 + <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)"/> 457 + <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)"/> 458 + <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)"/> 459 + <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)"/> 460 + <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)"/> 461 + <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)"/> 462 + <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)"/> 463 + <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)"/> 464 + <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)"/> 465 + <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)"/> 466 + <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)"/> 467 + <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)"/> 468 + <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)"/> 469 + <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)"/> 470 + <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)"/> 471 + <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)"/> 472 + <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)"/> 473 + <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)"/> 474 + <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)"/> 475 + <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)"/> 476 + <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)"/> 477 + <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)"/> 478 + <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)"/> 479 + <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)"/> 480 + <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)"/> 481 + <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)"/> 482 + <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)"/> 483 + <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)"/> 484 + <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)"/> 485 + <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)"/> 486 + <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)"/> 487 + <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)"/> 488 + <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)"/> 489 + <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)"/> 490 + <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)"/> 491 + <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)"/> 492 + <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)"/> 493 + <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)"/> 494 + <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)"/> 495 + <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)"/> 496 + <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)"/> 497 + <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)"/> 498 + <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)"/> 499 + <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)"/> 500 + <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)"/> 501 + <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)"/> 502 + <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)"/> 503 + <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)"/> 504 + <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)"/> 505 + <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)"/> 506 + <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)"/> 507 + <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)"/> 508 + <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)"/> 509 + <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)"/> 510 + <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)"/> 511 + <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)"/> 512 + <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)"/> 513 + <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)"/> 514 + <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)"/> 515 + <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)"/> 516 + <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)"/> 517 + <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)"/> 518 + <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)"/> 519 + <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)"/> 520 + <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)"/> 521 + <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)"/> 522 + <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)"/> 523 + <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)"/> 524 + <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)"/> 525 + <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)"/> 526 + <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)"/> 527 + <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)"/> 528 + <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)"/> 529 + <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)"/> 530 + <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)"/> 531 + <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)"/> 532 + <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)"/> 533 + <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)"/> 534 + <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)"/> 535 + <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)"/> 536 + <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)"/> 537 + <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)"/> 538 + <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)"/> 539 + <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)"/> 540 + <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)"/> 541 + <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)"/> 542 + <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)"/> 543 + <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)"/> 544 + <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)"/> 545 + <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)"/> 546 + <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)"/> 547 + <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)"/> 548 + <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)"/> 549 + <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)"/> 550 + <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)"/> 551 + <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)"/> 552 + <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)"/> 553 + <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)"/> 554 + <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)"/> 555 + <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)"/> 556 + <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)"/> 557 + <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)"/> 558 + <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)"/> 559 + <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)"/> 560 + <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)"/> 561 + <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)"/> 562 + <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)"/> 563 + <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)"/> 564 + <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)"/> 565 + <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)"/> 566 + <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)"/> 567 + <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)"/> 568 + <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)"/> 569 + <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)"/> 570 + <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)"/> 571 + <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)"/> 572 + <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)"/> 573 + <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)"/> 574 + <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)"/> 575 + <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)"/> 576 + <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)"/> 577 + <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)"/> 578 + <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)"/> 579 + <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)"/> 580 + <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)"/> 581 + <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)"/> 582 + <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)"/> 583 + <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)"/> 584 + <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)"/> 585 + <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)"/> 586 + <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)"/> 587 + <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)"/> 588 + <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)"/> 589 + <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)"/> 590 + <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)"/> 591 + <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)"/> 592 + <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)"/> 593 + <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)"/> 594 + <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)"/> 595 + <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)"/> 596 + <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 "/> 597 + <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)"/> 598 + <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)"/> 599 + <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)"/> 600 + <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)"/> 601 + <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 "/> 602 + <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)"/> 603 + <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)"/> 604 + <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)"/> 605 + <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)"/> 606 + <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 "/> 607 + <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)"/> 608 + <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)"/> 609 + <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)"/> 610 + <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)"/> 611 + <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 "/> 612 + <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)"/> 613 + <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)"/> 614 + <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)"/> 615 + <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)"/> 616 + <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 "/> 617 + <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)"/> 618 + <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)"/> 619 + <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)"/> 620 + <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)"/> 621 + <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 "/> 622 + <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)"/> 623 + <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)"/> 624 + <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)"/> 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 37133.072917 30330.989583 L 37567.96875 30330.989583 " transform="matrix(0.015, 0, 0, 0.015, 0, 0)"/> 626 + <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 "/> 627 + <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)"/> 628 + <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)"/> 629 + <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)"/> 630 + <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)"/> 631 + <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 "/> 632 + <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)"/> 633 + <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)"/> 634 + <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)"/> 635 + <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)"/> 636 + <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 "/> 637 + <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)"/> 638 + <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)"/> 639 + <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)"/> 640 + <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)"/> 641 + <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 "/> 642 + <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)"/> 643 + <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)"/> 644 + <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)"/> 645 + <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)"/> 646 + <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 "/> 647 + <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)"/> 648 + <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)"/> 649 + <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)"/> 650 + <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)"/> 651 + <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 "/> 652 + <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)"/> 653 + <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)"/> 654 + <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)"/> 655 + <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)"/> 656 + <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 "/> 657 + <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)"/> 658 + <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)"/> 659 + <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)"/> 660 + <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)"/> 661 + <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 "/> 662 + <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)"/> 663 + <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)"/> 664 + <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)"/> 665 + <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)"/> 666 + <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 "/> 667 + <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)"/> 668 + <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)"/> 669 + <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)"/> 670 + <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)"/> 671 + <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 "/> 672 + <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)"/> 673 + <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)"/> 674 + <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)"/> 675 + <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)"/> 676 + <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 "/> 677 + <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)"/> 678 + <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)"/> 679 + <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)"/> 680 + <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)"/> 681 + <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 "/> 682 + <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)"/> 683 + <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)"/> 684 + <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)"/> 685 + <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)"/> 686 + <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 "/> 687 + <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)"/> 688 + <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)"/> 689 + <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)"/> 690 + <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)"/> 691 + <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 "/> 692 + <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)"/> 693 + <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)"/> 694 + <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)"/> 695 + <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)"/> 696 + <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 "/> 697 + <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)"/> 698 + <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)"/> 699 + <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)"/> 700 + <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)"/> 701 + <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 "/> 702 + <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)"/> 703 + <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)"/> 704 + <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)"/> 705 + <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)"/> 706 + <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 "/> 707 + <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)"/> 708 + <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)"/> 709 + <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)"/> 710 + <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)"/> 711 + <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 "/> 712 + <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)"/> 713 + <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)"/> 714 + <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)"/> 715 + <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)"/> 716 + <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 "/> 717 + <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)"/> 718 + <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)"/> 719 + <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)"/> 720 + <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)"/> 721 + <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 "/> 722 + <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)"/> 723 + <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)"/> 724 + <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)"/> 725 + <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)"/> 726 + <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 "/> 727 + <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)"/> 728 + <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)"/> 729 + <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)"/> 730 + <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)"/> 731 + <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 "/> 732 + <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)"/> 733 + <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)"/> 734 + <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)"/> 735 + <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)"/> 736 + <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 "/> 737 + <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)"/> 738 + <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)"/> 739 + <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)"/> 740 + <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)"/> 741 + <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 "/> 742 + <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)"/> 743 + <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)"/> 744 + <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)"/> 745 + <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)"/> 746 + <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 "/> 747 + <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)"/> 748 + <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)"/> 749 + <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)"/> 750 + <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)"/> 751 + <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 "/> 752 + <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)"/> 753 + <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)"/> 754 + <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)"/> 755 + <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)"/> 756 + <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 "/> 757 + <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)"/> 758 + <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)"/> 759 + <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)"/> 760 + <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)"/> 761 + <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 "/> 762 + <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)"/> 763 + <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)"/> 764 + <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)"/> 765 + <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)"/> 766 + <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 "/> 767 + <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)"/> 768 + <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)"/> 769 + <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)"/> 770 + <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)"/> 771 + <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 "/> 772 + <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)"/> 773 + <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)"/> 774 + <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)"/> 775 + <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)"/> 776 + <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 "/> 777 + <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)"/> 778 + <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)"/> 779 + <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)"/> 780 + <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)"/> 781 + <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 "/> 782 + <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)"/> 783 + <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)"/> 784 + <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)"/> 785 + <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)"/> 786 + <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 "/> 787 + <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)"/> 788 + <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)"/> 789 + <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)"/> 790 + <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)"/> 791 + <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 "/> 792 + <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)"/> 793 + <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)"/> 794 + <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)"/> 795 + <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)"/> 796 + <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 "/> 797 + <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)"/> 798 + <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)"/> 799 + <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)"/> 800 + <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)"/> 801 + <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 "/> 802 + <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)"/> 803 + <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)"/> 804 + <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)"/> 805 + <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)"/> 806 + <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 "/> 807 + <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)"/> 808 + <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)"/> 809 + <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)"/> 810 + <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)"/> 811 + <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 "/> 812 + <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)"/> 813 + <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)"/> 814 + <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)"/> 815 + <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)"/> 816 + <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 "/> 817 + <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)"/> 818 + <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)"/> 819 + <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)"/> 820 + <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)"/> 821 + <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 "/> 822 + <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)"/> 823 + <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)"/> 824 + <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)"/> 825 + <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)"/> 826 + <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)"/> 827 + <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)"/> 828 + <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)"/> 829 + <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)"/> 830 + <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)"/> 831 + <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)"/> 832 + <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)"/> 833 + <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)"/> 834 + <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)"/> 835 + <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)"/> 836 + <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)"/> 837 + <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)"/> 838 + <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)"/> 839 + <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)"/> 840 + <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)"/> 841 + <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)"/> 842 + <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)"/> 843 + <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)"/> 844 + <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)"/> 845 + <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)"/> 846 + <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)"/> 847 + <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)"/> 848 + <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)"/> 849 + <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)"/> 850 + <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)"/> 851 + <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)"/> 852 + <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)"/> 853 + <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)"/> 854 + <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)"/> 855 + <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)"/> 856 + <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)"/> 857 + <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)"/> 858 + <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)"/> 859 + <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)"/> 860 + <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)"/> 861 + <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)"/> 862 + <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)"/> 863 + <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)"/> 864 + <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)"/> 865 + <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)"/> 866 + <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)"/> 867 + <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)"/> 868 + <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)"/> 869 + <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)"/> 870 + <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)"/> 871 + <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)"/> 872 + <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)"/> 873 + <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)"/> 874 + <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)"/> 875 + <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)"/> 876 + <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)"/> 877 + <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)"/> 878 + <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)"/> 879 + <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)"/> 880 + <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)"/> 881 + <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)"/> 882 + <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)"/> 883 + <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)"/> 884 + <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)"/> 885 + <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)"/> 886 + <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)"/> 887 + <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)"/> 888 + <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)"/> 889 + <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)"/> 890 + <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)"/> 891 + <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)"/> 892 + <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)"/> 893 + <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)"/> 894 + <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)"/> 895 + <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)"/> 896 + <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)"/> 897 + <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)"/> 898 + <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)"/> 899 + <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)"/> 900 + <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 "/> 901 + <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)"/> 902 + <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)"/> 903 + <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)"/> 904 + <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)"/> 905 + <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 "/> 906 + <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)"/> 907 + <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)"/> 908 + <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)"/> 909 + <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)"/> 910 + <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 "/> 911 + <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)"/> 912 + <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)"/> 913 + <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)"/> 914 + <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)"/> 915 + <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 "/> 916 + <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)"/> 917 + <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)"/> 918 + <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)"/> 919 + <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)"/> 920 + <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 "/> 921 + <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)"/> 922 + <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)"/> 923 + <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)"/> 924 + <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)"/> 925 + <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 "/> 926 + <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)"/> 927 + <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)"/> 928 + <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)"/> 929 + <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)"/> 930 + <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 "/> 931 + <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)"/> 932 + <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)"/> 933 + <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)"/> 934 + <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)"/> 935 + <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 "/> 936 + <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)"/> 937 + <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)"/> 938 + <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)"/> 939 + <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)"/> 940 + <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 "/> 941 + <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)"/> 942 + <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)"/> 943 + <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)"/> 944 + <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)"/> 945 + <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 "/> 946 + <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)"/> 947 + <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)"/> 948 + <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)"/> 949 + <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)"/> 950 + <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 "/> 951 + <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)"/> 952 + <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)"/> 953 + <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)"/> 954 + <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)"/> 955 + <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 "/> 956 + <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)"/> 957 + <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)"/> 958 + <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)"/> 959 + <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)"/> 960 + <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 "/> 961 + <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)"/> 962 + <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)"/> 963 + <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)"/> 964 + <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)"/> 965 + <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 "/> 966 + <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)"/> 967 + <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)"/> 968 + <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)"/> 969 + <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)"/> 970 + <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 "/> 971 + <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)"/> 972 + <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)"/> 973 + <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)"/> 974 + <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)"/> 975 + <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 "/> 976 + <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)"/> 977 + <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)"/> 978 + <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)"/> 979 + <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)"/> 980 + <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 "/> 981 + <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)"/> 982 + <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)"/> 983 + <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)"/> 984 + <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)"/> 985 + <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 "/> 986 + <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)"/> 987 + <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)"/> 988 + <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)"/> 989 + <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)"/> 990 + <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 "/> 991 + <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)"/> 992 + <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)"/> 993 + <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)"/> 994 + <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)"/> 995 + <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 "/> 996 + <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)"/> 997 + <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)"/> 998 + <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)"/> 999 + <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)"/> 1000 + <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 "/> 1001 + <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)"/> 1002 + <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)"/> 1003 + <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)"/> 1004 + <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)"/> 1005 + <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 "/> 1006 + <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)"/> 1007 + <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)"/> 1008 + <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)"/> 1009 + <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)"/> 1010 + <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 "/> 1011 + <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)"/> 1012 + <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)"/> 1013 + <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)"/> 1014 + <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)"/> 1015 + <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 "/> 1016 + <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)"/> 1017 + <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)"/> 1018 + <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)"/> 1019 + <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)"/> 1020 + <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 "/> 1021 + <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)"/> 1022 + <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)"/> 1023 + <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)"/> 1024 + <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)"/> 1025 + <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 "/> 1026 + <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)"/> 1027 + <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)"/> 1028 + <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)"/> 1029 + <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)"/> 1030 + <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 "/> 1031 + <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)"/> 1032 + <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)"/> 1033 + <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)"/> 1034 + <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)"/> 1035 + <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 "/> 1036 + <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)"/> 1037 + <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)"/> 1038 + <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)"/> 1039 + <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)"/> 1040 + <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 "/> 1041 + <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)"/> 1042 + <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)"/> 1043 + <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)"/> 1044 + <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)"/> 1045 + <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 "/> 1046 + <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)"/> 1047 + <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)"/> 1048 + <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)"/> 1049 + <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)"/> 1050 + <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 "/> 1051 + <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 "/> 1052 + <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)"/> 1053 + <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)"/> 1054 + <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)"/> 1055 + <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)"/> 1056 + <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 "/> 1057 + <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)"/> 1058 + <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)"/> 1059 + <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)"/> 1060 + <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)"/> 1061 + <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 "/> 1062 + <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)"/> 1063 + <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)"/> 1064 + <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)"/> 1065 + <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)"/> 1066 + <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 "/> 1067 + <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)"/> 1068 + <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)"/> 1069 + <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)"/> 1070 + <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)"/> 1071 + <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 "/> 1072 + <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)"/> 1073 + <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)"/> 1074 + <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)"/> 1075 + <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)"/> 1076 + <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 "/> 1077 + <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)"/> 1078 + <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)"/> 1079 + <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)"/> 1080 + <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)"/> 1081 + <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 "/> 1082 + <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)"/> 1083 + <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)"/> 1084 + <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)"/> 1085 + <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)"/> 1086 + <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 "/> 1087 + <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)"/> 1088 + <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)"/> 1089 + <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)"/> 1090 + <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)"/> 1091 + <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 "/> 1092 + <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)"/> 1093 + <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)"/> 1094 + <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)"/> 1095 + <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)"/> 1096 + <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 "/> 1097 + <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)"/> 1098 + <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)"/> 1099 + <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)"/> 1100 + <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)"/> 1101 + <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 "/> 1102 + <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)"/> 1103 + <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)"/> 1104 + <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)"/> 1105 + <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)"/> 1106 + <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 "/> 1107 + <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)"/> 1108 + <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)"/> 1109 + <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)"/> 1110 + <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)"/> 1111 + <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)"/> 1112 + <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)"/> 1113 + <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)"/> 1114 + <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)"/> 1115 + <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)"/> 1116 + <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)"/> 1117 + <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)"/> 1118 + <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)"/> 1119 + <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)"/> 1120 + <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)"/> 1121 + <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)"/> 1122 + <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)"/> 1123 + <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)"/> 1124 + <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)"/> 1125 + <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)"/> 1126 + <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)"/> 1127 + <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)"/> 1128 + <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)"/> 1129 + <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)"/> 1130 + <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)"/> 1131 + <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)"/> 1132 + <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)"/> 1133 + <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)"/> 1134 + <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)"/> 1135 + <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)"/> 1136 + <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)"/> 1137 + <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)"/> 1138 + <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)"/> 1139 + <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)"/> 1140 + <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)"/> 1141 + <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)"/> 1142 + <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)"/> 1143 + <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)"/> 1144 + <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)"/> 1145 + <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)"/> 1146 + <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)"/> 1147 + <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)"/> 1148 + <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)"/> 1149 + <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)"/> 1150 + <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)"/> 1151 + <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)"/> 1152 + <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)"/> 1153 + <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)"/> 1154 + <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)"/> 1155 + <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)"/> 1156 + <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)"/> 1157 + <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)"/> 1158 + <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)"/> 1159 + <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)"/> 1160 + <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)"/> 1161 + <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)"/> 1162 + <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)"/> 1163 + <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)"/> 1164 + <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)"/> 1165 + <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)"/> 1166 + <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)"/> 1167 + <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)"/> 1168 + <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)"/> 1169 + <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)"/> 1170 + <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)"/> 1171 + <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)"/> 1172 + <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)"/> 1173 + <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)"/> 1174 + <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)"/> 1175 + <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)"/> 1176 + <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)"/> 1177 + <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)"/> 1178 + <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)"/> 1179 + <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)"/> 1180 + <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)"/> 1181 + <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)"/> 1182 + <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)"/> 1183 + <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)"/> 1184 + <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)"/> 1185 + <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)"/> 1186 + <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)"/> 1187 + <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)"/> 1188 + <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)"/> 1189 + <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)"/> 1190 + <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)"/> 1191 + <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)"/> 1192 + <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)"/> 1193 + <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)"/> 1194 + <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)"/> 1195 + <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)"/> 1196 + <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)"/> 1197 + <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)"/> 1198 + <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)"/> 1199 + <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)"/> 1200 + <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)"/> 1201 + <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)"/> 1202 + <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)"/> 1203 + <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)"/> 1204 + <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)"/> 1205 + <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)"/> 1206 + <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)"/> 1207 + <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)"/> 1208 + <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)"/> 1209 + <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)"/> 1210 + <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)"/> 1211 + <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)"/> 1212 + <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)"/> 1213 + <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)"/> 1214 + <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)"/> 1215 + <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)"/> 1216 + <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)"/> 1217 + <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)"/> 1218 + <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)"/> 1219 + <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)"/> 1220 + <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)"/> 1221 + <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)"/> 1222 + <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)"/> 1223 + <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)"/> 1224 + <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)"/> 1225 + <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)"/> 1226 + <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)"/> 1227 + <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)"/> 1228 + <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)"/> 1229 + <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)"/> 1230 + <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)"/> 1231 + <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)"/> 1232 + <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)"/> 1233 + <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)"/> 1234 + <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)"/> 1235 + <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)"/> 1236 + <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)"/> 1237 + <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)"/> 1238 + <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)"/> 1239 + <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)"/> 1240 + <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)"/> 1241 + <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)"/> 1242 + <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)"/> 1243 + <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)"/> 1244 + <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)"/> 1245 + <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)"/> 1246 + <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)"/> 1247 + <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)"/> 1248 + <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)"/> 1249 + <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)"/> 1250 + <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)"/> 1251 + <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)"/> 1252 + <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)"/> 1253 + <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)"/> 1254 + <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)"/> 1255 + <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)"/> 1256 + <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)"/> 1257 + <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)"/> 1258 + <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)"/> 1259 + <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)"/> 1260 + <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)"/> 1261 + <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)"/> 1262 + <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)"/> 1263 + <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)"/> 1264 + <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)"/> 1265 + <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)"/> 1266 + <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)"/> 1267 + <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)"/> 1268 + <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)"/> 1269 + <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)"/> 1270 + <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)"/> 1271 + <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)"/> 1272 + <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)"/> 1273 + <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)"/> 1274 + <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)"/> 1275 + <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)"/> 1276 + <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)"/> 1277 + <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)"/> 1278 + <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)"/> 1279 + <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)"/> 1280 + <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)"/> 1281 + <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)"/> 1282 + <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)"/> 1283 + <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)"/> 1284 + <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)"/> 1285 + <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)"/> 1286 + <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)"/> 1287 + <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)"/> 1288 + <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)"/> 1289 + <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)"/> 1290 + <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)"/> 1291 + <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)"/> 1292 + <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)"/> 1293 + <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)"/> 1294 + <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)"/> 1295 + <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)"/> 1296 + <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)"/> 1297 + <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)"/> 1298 + <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)"/> 1299 + <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)"/> 1300 + <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)"/> 1301 + <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)"/> 1302 + <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)"/> 1303 + <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)"/> 1304 + <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)"/> 1305 + <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)"/> 1306 + <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)"/> 1307 + <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)"/> 1308 + <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)"/> 1309 + <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)"/> 1310 + <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)"/> 1311 + <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)"/> 1312 + <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)"/> 1313 + <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)"/> 1314 + <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)"/> 1315 + <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)"/> 1316 + <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)"/> 1317 + <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)"/> 1318 + <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)"/> 1319 + <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 "/> 1320 + <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)"/> 1321 + <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)"/> 1322 + <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)"/> 1323 + <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)"/> 1324 + <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 "/> 1325 + <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)"/> 1326 + <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)"/> 1327 + <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)"/> 1328 + <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)"/> 1329 + <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 "/> 1330 + <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)"/> 1331 + <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)"/> 1332 + <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)"/> 1333 + <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)"/> 1334 + <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 "/> 1335 + <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)"/> 1336 + <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)"/> 1337 + <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)"/> 1338 + <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)"/> 1339 + <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 "/> 1340 + <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)"/> 1341 + <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)"/> 1342 + <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)"/> 1343 + <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)"/> 1344 + <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 "/> 1345 + <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)"/> 1346 + <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)"/> 1347 + <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)"/> 1348 + <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)"/> 1349 + <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 "/> 1350 + <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)"/> 1351 + <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)"/> 1352 + <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)"/> 1353 + <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)"/> 1354 + <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 "/> 1355 + <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)"/> 1356 + <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)"/> 1357 + <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)"/> 1358 + <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)"/> 1359 + <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 "/> 1360 + <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)"/> 1361 + <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)"/> 1362 + <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)"/> 1363 + <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)"/> 1364 + <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 "/> 1365 + <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)"/> 1366 + <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)"/> 1367 + <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)"/> 1368 + <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)"/> 1369 + <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 "/> 1370 + <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)"/> 1371 + <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)"/> 1372 + <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)"/> 1373 + <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)"/> 1374 + <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 "/> 1375 + <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)"/> 1376 + <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)"/> 1377 + <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)"/> 1378 + <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)"/> 1379 + <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 "/> 1380 + <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)"/> 1381 + <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)"/> 1382 + <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)"/> 1383 + <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)"/> 1384 + <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 "/> 1385 + <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)"/> 1386 + <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)"/> 1387 + <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)"/> 1388 + <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)"/> 1389 + <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 "/> 1390 + <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)"/> 1391 + <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)"/> 1392 + <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)"/> 1393 + <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)"/> 1394 + <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 "/> 1395 + <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)"/> 1396 + <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)"/> 1397 + <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)"/> 1398 + <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)"/> 1399 + <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 "/> 1400 + <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)"/> 1401 + <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)"/> 1402 + <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)"/> 1403 + <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)"/> 1404 + <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 "/> 1405 + <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)"/> 1406 + <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)"/> 1407 + <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)"/> 1408 + <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)"/> 1409 + <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 "/> 1410 + <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)"/> 1411 + <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)"/> 1412 + <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)"/> 1413 + <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)"/> 1414 + <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 "/> 1415 + <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)"/> 1416 + <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)"/> 1417 + <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)"/> 1418 + <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)"/> 1419 + <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 "/> 1420 + <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)"/> 1421 + <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)"/> 1422 + <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)"/> 1423 + <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)"/> 1424 + <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 "/> 1425 + <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)"/> 1426 + <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)"/> 1427 + <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)"/> 1428 + <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)"/> 1429 + <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 "/> 1430 + <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)"/> 1431 + <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)"/> 1432 + <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)"/> 1433 + <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)"/> 1434 + <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 "/> 1435 + <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)"/> 1436 + <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)"/> 1437 + <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)"/> 1438 + <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)"/> 1439 + <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 "/> 1440 + <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)"/> 1441 + <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)"/> 1442 + <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)"/> 1443 + <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)"/> 1444 + <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 "/> 1445 + <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)"/> 1446 + <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)"/> 1447 + <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)"/> 1448 + <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)"/> 1449 + <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 "/> 1450 + <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)"/> 1451 + <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)"/> 1452 + <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)"/> 1453 + <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)"/> 1454 + <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 "/> 1455 + <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)"/> 1456 + <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)"/> 1457 + <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)"/> 1458 + <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)"/> 1459 + <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 "/> 1460 + <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)"/> 1461 + <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)"/> 1462 + <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)"/> 1463 + <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)"/> 1464 + <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 "/> 1465 + <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)"/> 1466 + <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)"/> 1467 + <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)"/> 1468 + <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)"/> 1469 + <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 "/> 1470 + <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 "/> 1471 + <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)"/> 1472 + <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)"/> 1473 + <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)"/> 1474 + <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)"/> 1475 + <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 "/> 1476 + <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)"/> 1477 + <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)"/> 1478 + <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)"/> 1479 + <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)"/> 1480 + <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 "/> 1481 + <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)"/> 1482 + <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)"/> 1483 + <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)"/> 1484 + <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)"/> 1485 + <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 "/> 1486 + <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)"/> 1487 + <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)"/> 1488 + <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)"/> 1489 + <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)"/> 1490 + <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 "/> 1491 + <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)"/> 1492 + <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)"/> 1493 + <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)"/> 1494 + <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)"/> 1495 + <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 "/> 1496 + <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)"/> 1497 + <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)"/> 1498 + <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)"/> 1499 + <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)"/> 1500 + <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 "/> 1501 + <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)"/> 1502 + <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)"/> 1503 + <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)"/> 1504 + <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)"/> 1505 + <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 "/> 1506 + <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)"/> 1507 + <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)"/> 1508 + <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)"/> 1509 + <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)"/> 1510 + <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 "/> 1511 + <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)"/> 1512 + <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)"/> 1513 + <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)"/> 1514 + <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)"/> 1515 + <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 "/> 1516 + <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)"/> 1517 + <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)"/> 1518 + <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)"/> 1519 + <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)"/> 1520 + <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 "/> 1521 + <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)"/> 1522 + <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)"/> 1523 + <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)"/> 1524 + <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)"/> 1525 + <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 "/> 1526 + <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)"/> 1527 + <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)"/> 1528 + <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)"/> 1529 + <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)"/> 1530 + <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)"/> 1531 + <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)"/> 1532 + <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)"/> 1533 + <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)"/> 1534 + <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)"/> 1535 + <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)"/> 1536 + <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)"/> 1537 + <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)"/> 1538 + <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)"/> 1539 + <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)"/> 1540 + <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)"/> 1541 + <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)"/> 1542 + <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)"/> 1543 + <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)"/> 1544 + <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)"/> 1545 + <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)"/> 1546 + <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)"/> 1547 + <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)"/> 1548 + <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)"/> 1549 + <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)"/> 1550 + <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)"/> 1551 + <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)"/> 1552 + <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)"/> 1553 + <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)"/> 1554 + <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)"/> 1555 + <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)"/> 1556 + <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)"/> 1557 + <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)"/> 1558 + <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)"/> 1559 + <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)"/> 1560 + <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)"/> 1561 + <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)"/> 1562 + <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)"/> 1563 + <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)"/> 1564 + <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)"/> 1565 + <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)"/> 1566 + <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)"/> 1567 + <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)"/> 1568 + <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)"/> 1569 + <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)"/> 1570 + <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)"/> 1571 + <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)"/> 1572 + <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)"/> 1573 + <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)"/> 1574 + <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)"/> 1575 + <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)"/> 1576 + <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)"/> 1577 + <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)"/> 1578 + <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)"/> 1579 + <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)"/> 1580 + <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)"/> 1581 + <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)"/> 1582 + <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)"/> 1583 + <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)"/> 1584 + <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 "/> 1585 + <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 "/> 1586 + <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 "/> 1587 + <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 "/> 1588 + <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 "/> 1589 + <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 "/> 1590 + <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 "/> 1591 + <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 "/> 1592 + <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 "/> 1593 + <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 "/> 1594 + <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 "/> 1595 + <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 "/> 1596 + <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 "/> 1597 + <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 "/> 1598 + <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 "/> 1599 + <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 "/> 1600 + <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 "/> 1601 + <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 "/> 1602 + <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 "/> 1603 + <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 "/> 1604 + <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 "/> 1605 + <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 "/> 1606 + <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 "/> 1607 + <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 "/> 1608 + <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 "/> 1609 + <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 "/> 1610 + <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)"/> 1611 + <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)"/> 1612 + <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)"/> 1613 + <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)"/> 1614 + </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
··· 1 + :root { 2 + font-size:1rem; 3 + --rhythm: 1.5rem; 4 + --line-length: 60vw; 5 + } 6 + 7 + header { 8 + margin-bottom: 0px; 9 + } 10 + 11 + h1, 12 + h2, 13 + h3, 14 + h4, 15 + h5, 16 + h6, 17 + .\<h1\>, 18 + .\<h2\>, 19 + .\<h3\>, 20 + .\<h4\>, 21 + .\<h5\>, 22 + .\<h6\> { 23 + margin-block-start:var(--gap); 24 + } 25 + 26 + p { 27 + font-size: 1.2em; 28 + }
+5
assets/robots.txt
··· 1 + User-agent: * 2 + Disallow: / 3 + 4 + User-agent: ChatGPT-User 5 + Disallow: /
+122
assets/style.css
··· 1 + html { 2 + overflow-y: scroll; 3 + } 4 + body { 5 + background-color: #fff; 6 + color: #000; 7 + font-family: sans-serif; 8 + margin: 0; 9 + padding: 1ex; 10 + } 11 + /* HTML5 semantic tags: some (older) browsers display this inline by default */ 12 + article, figcaption, figure, header, main, nav { 13 + display: block; 14 + } 15 + /* center images */ 16 + img { 17 + margin: 0 auto; 18 + } 19 + table, img { 20 + border: 0; 21 + } 22 + hr { 23 + border: 0; 24 + border-bottom: 3px solid #aaa; 25 + height: 3px; 26 + } 27 + h1 { 28 + font-size: 140%; 29 + } 30 + h2 { 31 + font-size: 120%; 32 + } 33 + h3 { 34 + font-size: 120%; 35 + } 36 + h1, 37 + h1 a, 38 + h1 a:visited, 39 + h2, 40 + h2 a, 41 + h2 a:visited, 42 + h3, 43 + h3 a, 44 + h3 a:visited, 45 + h1 a:hover, 46 + h2 a:hover, 47 + h3 a:hover { 48 + color: inherit; 49 + text-decoration: none; 50 + } 51 + table tr td { 52 + padding: 2px 10px 2px 0px; 53 + } 54 + pre { 55 + margin: 0; 56 + } 57 + pre code { 58 + display: block; 59 + border: 3px solid #aaa; 60 + padding: 5px; 61 + } 62 + 63 + code { 64 + background-color: #eee; 65 + border: 1px solid #aaa; 66 + font-family: monospace; 67 + overflow-x: auto; 68 + padding: 1px; 69 + word-wrap: normal; 70 + } 71 + #menu td { 72 + padding: 1ex 0; 73 + } 74 + #main { 75 + border-top: 3px solid #aaa; 76 + } 77 + #menuwrap, 78 + #menu, 79 + #main { 80 + margin: 0px auto; 81 + max-width: 100ex; 82 + } 83 + .hidden { 84 + display: none; 85 + } 86 + .logo { 87 + display: flex; 88 + } 89 + img.logo { 90 + width: 7em; 91 + } 92 + .footer { 93 + margin-top: 4em; 94 + } 95 + .footer a img { 96 + float: left; 97 + margin-bottom: 3em; 98 + } 99 + @media (prefers-color-scheme: dark) { 100 + body { 101 + background-color: #121210; 102 + color: #bdbdbd; 103 + } 104 + pre code, code { 105 + background-color: #333; 106 + border-color: #444; 107 + } 108 + hr { 109 + border-color: #444; 110 + } 111 + a { 112 + color: #56c8ff; 113 + } 114 + #main { 115 + border-top: 3px solid #444; 116 + } 117 + } 118 + 119 + 120 + 121 + 122 +
assets/technoduck.png

This is a binary file and will not be displayed.

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