mapwright 0.17.0__tar.gz → 0.19.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. {mapwright-0.17.0 → mapwright-0.19.0}/CHANGELOG.md +44 -0
  2. {mapwright-0.17.0 → mapwright-0.19.0}/PKG-INFO +32 -13
  3. {mapwright-0.17.0 → mapwright-0.19.0}/README.md +31 -12
  4. mapwright-0.19.0/docs/gallery/hint.png +0 -0
  5. mapwright-0.19.0/docs/gallery/hint.svg +1 -0
  6. mapwright-0.19.0/docs/gallery/theme-citadel-neon.png +0 -0
  7. mapwright-0.19.0/docs/gallery/theme-citadel-neon.svg +1 -0
  8. mapwright-0.19.0/docs/gallery/theme-dungeon-blueprint.png +0 -0
  9. mapwright-0.19.0/docs/gallery/theme-dungeon-blueprint.svg +1 -0
  10. {mapwright-0.17.0 → mapwright-0.19.0}/examples/gallery.py +32 -4
  11. {mapwright-0.17.0 → mapwright-0.19.0}/pyproject.toml +1 -1
  12. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/__init__.py +9 -1
  13. mapwright-0.19.0/src/mapwright/affordances.py +168 -0
  14. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/dungeon_renderer.py +19 -17
  15. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/settlement_renderer.py +28 -46
  16. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/terrain.py +62 -2
  17. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/themes.py +114 -0
  18. mapwright-0.19.0/tests/test_affordances.py +158 -0
  19. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_api_contract.py +3 -0
  20. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_terrain.py +64 -0
  21. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_themes.py +74 -2
  22. {mapwright-0.17.0 → mapwright-0.19.0}/.github/workflows/ci.yml +0 -0
  23. {mapwright-0.17.0 → mapwright-0.19.0}/.github/workflows/publish.yml +0 -0
  24. {mapwright-0.17.0 → mapwright-0.19.0}/.gitignore +0 -0
  25. {mapwright-0.17.0 → mapwright-0.19.0}/LICENSE +0 -0
  26. {mapwright-0.17.0 → mapwright-0.19.0}/NOTICE +0 -0
  27. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/age-old.png +0 -0
  28. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/age-old.svg +0 -0
  29. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/age-young.png +0 -0
  30. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/age-young.svg +0 -0
  31. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/archipelago.png +0 -0
  32. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/archipelago.svg +0 -0
  33. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/arctic.png +0 -0
  34. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/arctic.svg +0 -0
  35. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas.png +0 -0
  36. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/README.md +0 -0
  37. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/city_castle_1.png +0 -0
  38. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/city_large_1.png +0 -0
  39. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/city_town_1.png +0 -0
  40. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/city_village_1.png +0 -0
  41. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/decoration_compass_1.png +0 -0
  42. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/decoration_creature_1.png +0 -0
  43. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/decoration_ship_1.png +0 -0
  44. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/dune_1.png +0 -0
  45. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/hill_1.png +0 -0
  46. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/hill_2.png +0 -0
  47. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/manifest.json +0 -0
  48. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/mountain_mid_1.png +0 -0
  49. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/mountain_old_1.png +0 -0
  50. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/mountain_old_2.png +0 -0
  51. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/mountain_young_1.png +0 -0
  52. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/mountain_young_2.png +0 -0
  53. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/tree_cactus_1.png +0 -0
  54. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/tree_deciduous_1.png +0 -0
  55. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/tree_deciduous_2.png +0 -0
  56. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/tree_pine_1.png +0 -0
  57. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/atlas_pack/tree_pine_2.png +0 -0
  58. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/citadel.png +0 -0
  59. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/citadel.svg +0 -0
  60. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/continent.png +0 -0
  61. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/continent.svg +0 -0
  62. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/desert.png +0 -0
  63. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/desert.svg +0 -0
  64. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/dungeon.png +0 -0
  65. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/dungeon.svg +0 -0
  66. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/highlands.png +0 -0
  67. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/highlands.svg +0 -0
  68. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/islands.png +0 -0
  69. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/islands.svg +0 -0
  70. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/pangaea.png +0 -0
  71. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/pangaea.svg +0 -0
  72. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/port.png +0 -0
  73. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/port.svg +0 -0
  74. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/regions.png +0 -0
  75. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/regions.svg +0 -0
  76. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/roads.png +0 -0
  77. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/roads.svg +0 -0
  78. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/template-atoll.png +0 -0
  79. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/template-atoll.svg +0 -0
  80. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/template-isthmus.png +0 -0
  81. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/template-isthmus.svg +0 -0
  82. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-blueprint.png +0 -0
  83. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-blueprint.svg +0 -0
  84. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-dune.png +0 -0
  85. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-dune.svg +0 -0
  86. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-neon.png +0 -0
  87. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-neon.svg +0 -0
  88. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-parchment.png +0 -0
  89. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/theme-parchment.svg +0 -0
  90. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/town.png +0 -0
  91. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/town.svg +0 -0
  92. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/tropical.png +0 -0
  93. {mapwright-0.17.0 → mapwright-0.19.0}/docs/gallery/tropical.svg +0 -0
  94. {mapwright-0.17.0 → mapwright-0.19.0}/examples/benchmark.py +0 -0
  95. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/_geometry.py +0 -0
  96. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/_graph.py +0 -0
  97. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/_serde.py +0 -0
  98. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/atlas_renderer.py +0 -0
  99. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/config.py +0 -0
  100. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/dungeon.py +0 -0
  101. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/names.py +0 -0
  102. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/regions.py +0 -0
  103. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/rng.py +0 -0
  104. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/roads.py +0 -0
  105. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/settlement.py +0 -0
  106. {mapwright-0.17.0 → mapwright-0.19.0}/src/mapwright/svg_renderer.py +0 -0
  107. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_atlas_renderer.py +0 -0
  108. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_config.py +0 -0
  109. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_dungeon.py +0 -0
  110. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_dungeon_renderer.py +0 -0
  111. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_geometry.py +0 -0
  112. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_graph.py +0 -0
  113. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_names.py +0 -0
  114. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_properties.py +0 -0
  115. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_regions.py +0 -0
  116. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_rng.py +0 -0
  117. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_roads.py +0 -0
  118. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_serialize.py +0 -0
  119. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_settlement.py +0 -0
  120. {mapwright-0.17.0 → mapwright-0.19.0}/tests/test_svg_renderer.py +0 -0
@@ -8,6 +8,50 @@ All notable changes to mapwright are documented here. The format follows
8
8
  `tests/test_api_contract.py`). While the version is `0.x`, minor versions may
9
9
  make breaking changes; these will always be noted here.
10
10
 
11
+ ## [0.19.0] — 2026-06-02
12
+
13
+ ### Added
14
+ - **`elevation_hint` — art-direct the continent's shape.**
15
+ `RegionalTerrainGenerator.generate(..., elevation_hint=…)` lets a host (or an
16
+ LLM) supply the *macro* land/sea/elevation shape while mapwright fills in
17
+ organic coastlines, erosion, rivers and climate. Pass a coarse 2D grid (e.g. a
18
+ 16×16 nested list; rows north→south, cols west→east) or a callable
19
+ `f(x_norm, y_norm) -> elevation` over normalised [0, 1] coords. Only relative
20
+ ordering matters; `sea_level` still sets how much floods, and the full
21
+ hydrology/biome pipeline runs on top, so the result stays coherent (rivers
22
+ form, coasts are organic). Takes precedence over `template`; set
23
+ `edge_falloff=0` to allow land at the map borders. Purely additive — the
24
+ default (`elevation_hint=None`) output is byte-identical. This is the
25
+ most on-philosophy answer to "make shapes non-circular": the caller draws the
26
+ shape, mapwright does the physics (the mapgen4 hint-map idea, clean-room).
27
+ Gallery gains a hint-driven crescent continent.
28
+
29
+ ## [0.18.0] — 2026-06-02
30
+
31
+ ### Added
32
+ - **Environmental affordances + cell aggregation — `affordances` module.** Two
33
+ domain-neutral helpers for turning terrain into a place's *environment*:
34
+ - `environment_affordances(biome, temperature, moisture)` → neutral
35
+ ecology-level tags (`scarce_water`, `disease_vector`, `predator`,
36
+ `extreme_heat`, …). Biome-base tags plus climate-driven additions, so a
37
+ hot+wet forest reads as a steamy jungle. A host app decides what, if
38
+ anything, tags mean mechanically; this library never touches game rules.
39
+ - `summarize_cells(cells)` → `CellSummary` (dominant biome, mean climate,
40
+ hydrology flags, water fraction, affordances) for a footprint / explored
41
+ area / whole map. Deterministic; ties broken by lowest `Biome` value.
42
+ - New exports: `environment_affordances`, `summarize_cells`, `CellSummary`
43
+ (purely additive to `__all__`).
44
+ - **Themes extended to the town & dungeon renderers.** A `Theme` now carries
45
+ nested `SettlementPalette` + `DungeonPalette` sub-palettes, and
46
+ `SettlementSVGRenderer` / `DungeonSVGRenderer` take a `theme=` just like the
47
+ regional renderer — so one theme skins all three. The four built-ins
48
+ (`parchment`, `neon`, `dune`, `blueprint`) now style towns and dungeons
49
+ cohesively (e.g. a neon citadel, a blueprint dungeon). Sub-palettes default to
50
+ parchment, so a theme that only restyles the regional map still drives the
51
+ other renderers, and the default output is **byte-identical**. `SettlementPalette`
52
+ / `DungeonPalette` are importable from `mapwright.themes` for authoring custom
53
+ themes. Gallery gains a themed town + dungeon.
54
+
11
55
  ## [0.17.0] — 2026-06-02
12
56
 
13
57
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mapwright
3
- Version: 0.17.0
3
+ Version: 0.19.0
4
4
  Summary: Domain-neutral procedural fantasy map & world generation: Voronoi terrain, hydraulic erosion, biomes, rivers, Markov place-names, and shaded-relief SVG.
5
5
  Project-URL: Homepage, https://github.com/sligara7/mapwright
6
6
  Project-URL: Repository, https://github.com/sligara7/mapwright
@@ -61,6 +61,15 @@ re-skinned by swapping a `Theme` (palette + biome vocabulary). No regeneration:
61
61
  </tr>
62
62
  </table>
63
63
 
64
+ The same `theme=` drives the **town and dungeon** renderers too — one skin across all three:
65
+
66
+ <table>
67
+ <tr>
68
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/theme-citadel-neon.png" alt="neon-themed walled citadel"><br><sub><code>Settlement, theme="neon"</code></sub></td>
69
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/theme-dungeon-blueprint.png" alt="blueprint-themed dungeon"><br><sub><code>Dungeon, theme="blueprint"</code></sub></td>
70
+ </tr>
71
+ </table>
72
+
64
73
  Below: deterministic shaded-relief renders of each built-in preset (or a dungeon),
65
74
  produced by [`examples/gallery.py`](examples/gallery.py):
66
75
 
@@ -95,9 +104,13 @@ produced by [`examples/gallery.py`](examples/gallery.py):
95
104
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/age-young.png" alt="young jagged terrain"><br><sub><code>land_age=0</code> (young)</sub></td>
96
105
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/age-old.png" alt="old worn terrain"><br><sub><code>land_age=1</code> (old)</sub></td>
97
106
  </tr>
107
+ <tr>
108
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/hint.png" alt="continent shaped by a caller-supplied elevation hint"><br><sub><code>elevation_hint=…</code></sub></td>
109
+ <td colspan="2" align="left"><sub>A continent whose macro shape is <b>art-directed</b> by a caller-supplied <code>elevation_hint</code> (a coarse painted land/elevation mask). The host (or an LLM) draws the shape; mapwright fills in organic coasts, erosion, rivers and climate — so maps need never look circular.</sub></td>
110
+ </tr>
98
111
  </table>
99
112
 
100
- The two right-hand maps above are the **same continent** at `land_age=0` (young, jagged,
113
+ The `land_age` pair above are the **same continent** at `land_age=0` (young, jagged,
101
114
  snow-capped peaks) vs `land_age=1` (old, worn down to rounded hills) — a mapwright-original
102
115
  "geological age" knob.
103
116
 
@@ -215,17 +228,18 @@ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
215
228
  |-----------|--------------|
216
229
  | `SeededRNG` | One seed drives everything; `.derive(label)` yields independent, reproducible sub-streams (unifies stdlib + numpy). |
217
230
  | `NameGenerator` | Order-k character Markov names over hand-authored culture namebases; reproducible across processes. |
218
- | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → **tectonic-plate** heightmap (organic coasts + mountain ranges at plate collisions; percentile sea level) → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. |
231
+ | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → **tectonic-plate** heightmap (organic coasts + mountain ranges at plate collisions; percentile sea level) → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. Accepts a `template=` archetype or an `elevation_hint=` (caller-drawn macro shape). |
219
232
  | `compute_cell_polygons` | Reconstructs convex Voronoi polygons (half-plane clipping) for vector rendering. |
220
233
  | `RegionalSVGRenderer` | Shaded-relief (hillshade) SVG: biome polygons, coastline, rivers, roads, labelled markers. Takes a `theme=`. |
221
- | `Theme` / `THEMES` | A render palette + biome vocabulary; re-skins the same terrain (parchment / neon / dune / blueprint, or your own). The "Dominant Medium" layer. |
234
+ | `Theme` / `THEMES` | A render palette + biome vocabulary; re-skins the same terrain — and its towns and dungeons — via one `theme=` (parchment / neon / dune / blueprint, or your own). The "Dominant Medium" layer. |
235
+ | `environment_affordances` / `summarize_cells` | Neutral *ecology* helpers: biome + climate → affordance tags (`scarce_water`, `predator`, …); reduce a set of cells to a `CellSummary` (dominant biome, mean climate, hydrology, affordances). A host decides what tags mean mechanically. |
222
236
  | `AtlasRenderer` / `ArtPack` | Hand-drawn / themed PNG: stamps symbols from an external *art pack* (mountains, forests, hills, settlements, sea decorations) onto the terrain. mapwright ships no art — a pack is a skin. Needs `pip install "mapwright[atlas]"`. |
223
237
  | `RegionalRoadGenerator` | Connects settlement sites with trade routes — an MST whose edges are A*-routed over the terrain (avoids sea, climbs/crosses rivers at a cost). |
224
238
  | `RegionGenerator` | Partitions land into named factions/territories: spread capitals seed a flood fill over the land graph (sea divides them); each `Region` is Markov-named. |
225
239
  | `DungeonGenerator` | BSP-partitioned rooms + minimum-spanning-tree corridors → rooms, corridor cells, and a walkable grid (with `Dungeon.ascii()`). |
226
- | `DungeonSVGRenderer` | Renders a `Dungeon` to SVG: walls, carved floor, room outlines, optional tile grid and per-room labels. |
240
+ | `DungeonSVGRenderer` | Renders a `Dungeon` to SVG: walls, carved floor, room outlines, optional tile grid and per-room labels. Takes a `theme=`. |
227
241
  | `SettlementGenerator` | Self-contained town layout: an organic footprint divided into named Voronoi **wards** (market, docks, …), each subdivided into building **lots**, a **street** network (MST over ward adjacency + main roads from gates to the market), an optional defensive **wall** (towers + gate gaps, opened at the harbour when coastal), and optional coastline. |
228
- | `SettlementSVGRenderer` | Renders a `Settlement` to SVG: sea, footprint, kind-coloured wards, building lots, streets, wall with towers/gatehouses, labels. |
242
+ | `SettlementSVGRenderer` | Renders a `Settlement` to SVG: sea, footprint, kind-coloured wards, building lots, streets, wall with towers/gatehouses, labels. Takes a `theme=`. |
229
243
 
230
244
  Everything is neutral: `RegionalTerrainGenerator` returns a `TerrainResult` of `TerrainCell`s
231
245
  (each with a `Biome`), and you decide how a `Biome` maps to your world.
@@ -288,18 +302,23 @@ regenerating anything. The neutral `Biome` enum never changes; a theme just deci
288
302
  each biome looks and is named:
289
303
 
290
304
  ```python
291
- from mapwright import RegionalSVGRenderer, THEMES
305
+ from mapwright import RegionalSVGRenderer, SettlementSVGRenderer, DungeonSVGRenderer, THEMES
292
306
 
293
- svg = RegionalSVGRenderer(theme="neon").render(terrain, markers, roads=roads)
307
+ svg = RegionalSVGRenderer(theme="neon").render(terrain, markers, roads=roads)
308
+ town = SettlementSVGRenderer(theme="neon").render(settlement) # same theme skins the town
309
+ dgn = DungeonSVGRenderer(theme="blueprint").render(dungeon) # …and the dungeon
294
310
  # built-ins: "parchment" (default), "neon" (Tron/digital-grid), "dune" (sand), "blueprint"
295
311
  THEMES["neon"].biome_label(Biome.OCEAN) # -> "Void" (the vocabulary layer)
296
312
  ```
297
313
 
298
- A `Theme` is plain hex-string data (JSON-friendly), so a host or the same image service
299
- that makes art packs can author new ones. This is the "Dominant Medium" idea from
300
- mapwright's longer-term vision: a sand planet, a digital grid, and an irradiated waste are
301
- the *same map* wearing different skins. Pair a theme with a matching `ArtPack` for a full
302
- restyle of both the vector and hand-drawn renders.
314
+ All three renderers take the same `theme=`, so one theme skins the world map, its towns,
315
+ and its dungeons together (a `Theme` carries nested `SettlementPalette` + `DungeonPalette`,
316
+ importable from `mapwright.themes` for custom packs). A `Theme` is plain hex-string data
317
+ (JSON-friendly), so a host or the same image service that makes art packs can author
318
+ new ones. This is the "Dominant Medium" idea from mapwright's longer-term vision: a sand
319
+ planet, a digital grid, and an irradiated waste are the *same map* wearing different skins.
320
+ Pair a theme with a matching `ArtPack` for a full restyle of both the vector and hand-drawn
321
+ renders.
303
322
 
304
323
  ## Determinism
305
324
 
@@ -34,6 +34,15 @@ re-skinned by swapping a `Theme` (palette + biome vocabulary). No regeneration:
34
34
  </tr>
35
35
  </table>
36
36
 
37
+ The same `theme=` drives the **town and dungeon** renderers too — one skin across all three:
38
+
39
+ <table>
40
+ <tr>
41
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/theme-citadel-neon.png" alt="neon-themed walled citadel"><br><sub><code>Settlement, theme="neon"</code></sub></td>
42
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/theme-dungeon-blueprint.png" alt="blueprint-themed dungeon"><br><sub><code>Dungeon, theme="blueprint"</code></sub></td>
43
+ </tr>
44
+ </table>
45
+
37
46
  Below: deterministic shaded-relief renders of each built-in preset (or a dungeon),
38
47
  produced by [`examples/gallery.py`](examples/gallery.py):
39
48
 
@@ -68,9 +77,13 @@ produced by [`examples/gallery.py`](examples/gallery.py):
68
77
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/age-young.png" alt="young jagged terrain"><br><sub><code>land_age=0</code> (young)</sub></td>
69
78
  <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/age-old.png" alt="old worn terrain"><br><sub><code>land_age=1</code> (old)</sub></td>
70
79
  </tr>
80
+ <tr>
81
+ <td align="center"><img width="240" src="https://raw.githubusercontent.com/sligara7/mapwright/main/docs/gallery/hint.png" alt="continent shaped by a caller-supplied elevation hint"><br><sub><code>elevation_hint=…</code></sub></td>
82
+ <td colspan="2" align="left"><sub>A continent whose macro shape is <b>art-directed</b> by a caller-supplied <code>elevation_hint</code> (a coarse painted land/elevation mask). The host (or an LLM) draws the shape; mapwright fills in organic coasts, erosion, rivers and climate — so maps need never look circular.</sub></td>
83
+ </tr>
71
84
  </table>
72
85
 
73
- The two right-hand maps above are the **same continent** at `land_age=0` (young, jagged,
86
+ The `land_age` pair above are the **same continent** at `land_age=0` (young, jagged,
74
87
  snow-capped peaks) vs `land_age=1` (old, worn down to rounded hills) — a mapwright-original
75
88
  "geological age" knob.
76
89
 
@@ -188,17 +201,18 @@ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
188
201
  |-----------|--------------|
189
202
  | `SeededRNG` | One seed drives everything; `.derive(label)` yields independent, reproducible sub-streams (unifies stdlib + numpy). |
190
203
  | `NameGenerator` | Order-k character Markov names over hand-authored culture namebases; reproducible across processes. |
191
- | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → **tectonic-plate** heightmap (organic coasts + mountain ranges at plate collisions; percentile sea level) → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. |
204
+ | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → **tectonic-plate** heightmap (organic coasts + mountain ranges at plate collisions; percentile sea level) → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. Accepts a `template=` archetype or an `elevation_hint=` (caller-drawn macro shape). |
192
205
  | `compute_cell_polygons` | Reconstructs convex Voronoi polygons (half-plane clipping) for vector rendering. |
193
206
  | `RegionalSVGRenderer` | Shaded-relief (hillshade) SVG: biome polygons, coastline, rivers, roads, labelled markers. Takes a `theme=`. |
194
- | `Theme` / `THEMES` | A render palette + biome vocabulary; re-skins the same terrain (parchment / neon / dune / blueprint, or your own). The "Dominant Medium" layer. |
207
+ | `Theme` / `THEMES` | A render palette + biome vocabulary; re-skins the same terrain — and its towns and dungeons — via one `theme=` (parchment / neon / dune / blueprint, or your own). The "Dominant Medium" layer. |
208
+ | `environment_affordances` / `summarize_cells` | Neutral *ecology* helpers: biome + climate → affordance tags (`scarce_water`, `predator`, …); reduce a set of cells to a `CellSummary` (dominant biome, mean climate, hydrology, affordances). A host decides what tags mean mechanically. |
195
209
  | `AtlasRenderer` / `ArtPack` | Hand-drawn / themed PNG: stamps symbols from an external *art pack* (mountains, forests, hills, settlements, sea decorations) onto the terrain. mapwright ships no art — a pack is a skin. Needs `pip install "mapwright[atlas]"`. |
196
210
  | `RegionalRoadGenerator` | Connects settlement sites with trade routes — an MST whose edges are A*-routed over the terrain (avoids sea, climbs/crosses rivers at a cost). |
197
211
  | `RegionGenerator` | Partitions land into named factions/territories: spread capitals seed a flood fill over the land graph (sea divides them); each `Region` is Markov-named. |
198
212
  | `DungeonGenerator` | BSP-partitioned rooms + minimum-spanning-tree corridors → rooms, corridor cells, and a walkable grid (with `Dungeon.ascii()`). |
199
- | `DungeonSVGRenderer` | Renders a `Dungeon` to SVG: walls, carved floor, room outlines, optional tile grid and per-room labels. |
213
+ | `DungeonSVGRenderer` | Renders a `Dungeon` to SVG: walls, carved floor, room outlines, optional tile grid and per-room labels. Takes a `theme=`. |
200
214
  | `SettlementGenerator` | Self-contained town layout: an organic footprint divided into named Voronoi **wards** (market, docks, …), each subdivided into building **lots**, a **street** network (MST over ward adjacency + main roads from gates to the market), an optional defensive **wall** (towers + gate gaps, opened at the harbour when coastal), and optional coastline. |
201
- | `SettlementSVGRenderer` | Renders a `Settlement` to SVG: sea, footprint, kind-coloured wards, building lots, streets, wall with towers/gatehouses, labels. |
215
+ | `SettlementSVGRenderer` | Renders a `Settlement` to SVG: sea, footprint, kind-coloured wards, building lots, streets, wall with towers/gatehouses, labels. Takes a `theme=`. |
202
216
 
203
217
  Everything is neutral: `RegionalTerrainGenerator` returns a `TerrainResult` of `TerrainCell`s
204
218
  (each with a `Biome`), and you decide how a `Biome` maps to your world.
@@ -261,18 +275,23 @@ regenerating anything. The neutral `Biome` enum never changes; a theme just deci
261
275
  each biome looks and is named:
262
276
 
263
277
  ```python
264
- from mapwright import RegionalSVGRenderer, THEMES
278
+ from mapwright import RegionalSVGRenderer, SettlementSVGRenderer, DungeonSVGRenderer, THEMES
265
279
 
266
- svg = RegionalSVGRenderer(theme="neon").render(terrain, markers, roads=roads)
280
+ svg = RegionalSVGRenderer(theme="neon").render(terrain, markers, roads=roads)
281
+ town = SettlementSVGRenderer(theme="neon").render(settlement) # same theme skins the town
282
+ dgn = DungeonSVGRenderer(theme="blueprint").render(dungeon) # …and the dungeon
267
283
  # built-ins: "parchment" (default), "neon" (Tron/digital-grid), "dune" (sand), "blueprint"
268
284
  THEMES["neon"].biome_label(Biome.OCEAN) # -> "Void" (the vocabulary layer)
269
285
  ```
270
286
 
271
- A `Theme` is plain hex-string data (JSON-friendly), so a host or the same image service
272
- that makes art packs can author new ones. This is the "Dominant Medium" idea from
273
- mapwright's longer-term vision: a sand planet, a digital grid, and an irradiated waste are
274
- the *same map* wearing different skins. Pair a theme with a matching `ArtPack` for a full
275
- restyle of both the vector and hand-drawn renders.
287
+ All three renderers take the same `theme=`, so one theme skins the world map, its towns,
288
+ and its dungeons together (a `Theme` carries nested `SettlementPalette` + `DungeonPalette`,
289
+ importable from `mapwright.themes` for custom packs). A `Theme` is plain hex-string data
290
+ (JSON-friendly), so a host or the same image service that makes art packs can author
291
+ new ones. This is the "Dominant Medium" idea from mapwright's longer-term vision: a sand
292
+ planet, a digital grid, and an irradiated waste are the *same map* wearing different skins.
293
+ Pair a theme with a matching `ArtPack` for a full restyle of both the vector and hand-drawn
294
+ renders.
276
295
 
277
296
  ## Determinism
278
297
 
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="576" height="396" viewBox="0 0 576 396"><rect width="576" height="396" fill="#183e56"/><g stroke-linejoin="round"><polygon points="0.0,0.0 19.7,0.0 17.4,20.7 0.0,20.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="19.7,0.0 41.3,0.0 42.2,18.0 21.3,24.4 17.4,20.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="41.3,0.0 65.8,0.0 66.7,18.2 47.2,22.1 42.2,18.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="65.8,0.0 90.3,0.0 88.1,19.4 67.0,22.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="90.3,0.0 112.7,0.0 109.2,22.1 94.2,24.1 88.1,19.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="112.7,0.0 130.8,0.0 134.2,27.0 108.6,25.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="130.8,0.0 154.0,0.0 155.4,17.6 134.7,27.5 134.2,27.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="154.0,0.0 175.5,0.0 175.5,20.0 165.7,23.8 155.4,17.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="175.5,0.0 194.7,0.0 195.8,20.2 186.2,23.4 175.5,20.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="194.7,0.0 220.5,0.0 222.1,12.3 202.7,23.3 195.8,20.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="220.5,0.0 252.1,0.0 245.4,14.4 222.2,13.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="252.1,0.0 259.9,0.0 273.0,21.6 249.3,24.1 245.4,14.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="259.9,0.0 285.0,0.0 283.5,18.5 273.9,23.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="285.0,0.0 309.2,0.0 310.6,11.9 294.7,22.4 283.5,18.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="309.2,0.0 338.5,0.0 336.1,11.0 316.5,15.9 310.6,11.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="338.5,0.0 359.7,0.0 362.0,20.3 355.5,24.0 342.7,22.3 336.1,11.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="359.7,0.0 384.4,0.0 384.3,14.6 373.7,23.3 362.0,20.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="384.4,0.0 413.0,0.0 413.1,1.8 404.3,20.4 401.8,21.9 384.3,14.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="404.3,20.4 413.1,1.8 432.2,19.1 426.5,30.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="413.0,0.0 443.1,0.0 441.1,14.9 432.2,19.1 413.1,1.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="443.1,0.0 464.4,0.0 467.3,14.5 464.1,19.2 452.9,22.7 441.1,14.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="464.4,0.0 491.6,0.0 489.2,14.5 467.3,14.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="491.6,0.0 519.7,0.0 520.7,6.6 511.4,22.2 491.3,18.2 489.2,14.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="530.3,37.9 510.6,23.5 520.7,6.6 535.5,15.3 535.5,33.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="519.7,0.0 551.1,0.0 549.9,9.8 535.5,15.3 520.7,6.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="551.1,0.0 576.0,0.0 576.0,19.1 549.0,16.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,44.2 0.0,20.6 17.4,20.7 21.3,24.4 22.6,42.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="22.5,41.2 21.3,24.4 42.2,18.0 47.2,22.1 47.2,36.4 35.1,44.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="47.2,36.4 47.2,22.1 71.6,17.2 70.0,37.9 60.9,45.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="70.0,37.9 71.2,21.9 88.1,19.4 94.2,24.1 91.3,47.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="91.2,48.6 94.2,24.1 114.7,21.4 110.6,43.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="120.0,51.3 110.6,43.8 113.9,25.8 134.2,27.0 135.7,28.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="134.2,27.8 155.4,17.6 165.7,23.8 164.2,37.2 154.3,44.6 144.1,41.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="164.2,37.2 165.7,23.8 175.5,20.0 186.2,23.4 183.8,45.8 180.3,47.6" fill="#ced7c5" stroke="#ced7c5" stroke-width="0.5"/><polygon points="183.8,45.8 186.2,23.4 195.8,20.2 202.7,23.3 206.5,35.3 199.2,48.8" fill="#c7cfbe" stroke="#c7cfbe" stroke-width="0.5"/><polygon points="206.5,35.3 202.7,23.3 222.9,11.9 230.3,41.3" fill="#d1c095" stroke="#d1c095" stroke-width="0.5"/><polygon points="229.6,38.8 223.2,13.2 245.4,14.4 249.3,24.1 246.6,33.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="246.6,33.5 249.3,24.1 275.1,21.4 272.8,40.8 256.1,44.2" fill="#c2cbba" stroke="#c2cbba" stroke-width="0.5"/><polygon points="272.8,41.3 275.0,22.5 283.5,18.5 294.7,22.4 300.4,39.3 291.4,46.3" fill="#bdc5b5" stroke="#bdc5b5" stroke-width="0.5"/><polygon points="300.4,39.3 294.7,22.4 310.6,11.9 316.5,15.9 319.9,30.9 310.7,42.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="319.9,30.9 316.5,15.9 336.1,11.0 342.7,22.3 334.7,33.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="342.7,22.3 355.5,24.0 355.5,49.9 350.0,52.2 338.7,48.4 334.7,33.0" fill="#cfbe94" stroke="#cfbe94" stroke-width="0.5"/><polygon points="355.5,49.9 355.5,24.0 362.0,20.3 373.7,23.3 377.1,34.1 363.3,51.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="377.1,34.1 373.7,23.3 384.3,14.6 401.8,21.9 398.8,39.6 393.4,43.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="398.8,39.6 401.8,21.9 404.3,20.4 426.5,30.1 427.2,37.4 418.5,45.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="427.2,37.4 426.5,30.1 432.2,19.1 441.1,14.9 452.9,22.7 449.8,41.9 445.5,45.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="449.8,41.9 452.9,22.7 464.1,19.2 478.6,44.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="474.6,37.6 464.1,19.2 467.3,14.5 489.2,14.5 491.3,18.2 486.5,33.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="491.3,18.2 513.3,22.6 500.8,47.7 486.5,33.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="509.5,52.5 501.7,45.8 512.2,24.8 530.3,37.9 529.4,42.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="535.5,33.8 535.5,15.3 560.4,5.8 550.1,33.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="556.1,17.5 576.0,19.1 576.0,38.5 555.5,39.4 550.1,33.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,67.0 0.0,44.2 20.8,42.9 19.3,60.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="19.3,60.6 21.0,40.9 35.1,44.0 42.9,61.6 38.0,68.9 28.6,69.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="42.9,61.6 35.1,44.0 47.3,36.4 60.9,45.7 60.3,56.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="60.3,56.9 60.9,45.7 70.0,37.9 91.8,47.9 90.8,56.0 67.5,64.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="90.6,57.9 91.7,48.5 110.6,43.8 120.0,51.3 123.5,62.6" fill="#fffec6" stroke="#fffec6" stroke-width="0.5"/><polygon points="122.3,58.8 120.0,51.3 135.1,29.1 144.1,41.9 132.7,62.2" fill="#e8f2de" stroke="#e8f2de" stroke-width="0.5"/><polygon points="132.7,62.2 144.1,41.9 154.3,44.6 158.8,60.2 151.7,67.8 134.3,64.4" fill="#e6f0dc" stroke="#e6f0dc" stroke-width="0.5"/><polygon points="158.8,60.2 154.3,44.6 164.2,37.2 180.3,47.6 174.7,61.5" fill="#dbe4d1" stroke="#dbe4d1" stroke-width="0.5"/><polygon points="176.6,65.0 174.7,61.5 180.3,47.6 183.8,45.8 199.2,48.8 205.5,61.5 196.7,70.0" fill="#ced7c6" stroke="#ced7c6" stroke-width="0.5"/><polygon points="205.5,61.5 199.2,48.8 206.5,35.3 228.2,40.7 227.9,49.4 210.7,62.3" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="227.9,49.4 228.3,39.3 246.6,33.5 256.1,44.2 252.8,55.8 238.0,59.2" fill="#c4ccbb" stroke="#c4ccbb" stroke-width="0.5"/><polygon points="252.8,55.8 256.1,44.2 273.4,40.7 273.4,64.9 260.7,66.4" fill="#d3dcca" stroke="#d3dcca" stroke-width="0.5"/><polygon points="273.4,41.4 291.4,46.3 291.4,60.5 273.4,67.2" fill="#b1b8a9" stroke="#b1b8a9" stroke-width="0.5"/><polygon points="291.4,60.5 291.4,46.3 300.4,39.3 310.7,42.0 314.3,48.9 307.5,66.8 302.7,69.0" fill="#b6beae" stroke="#b6beae" stroke-width="0.5"/><polygon points="327.7,74.4 307.5,66.8 314.3,48.9 329.9,53.2" fill="#a6ad9f" stroke="#a6ad9f" stroke-width="0.5"/><polygon points="310.7,42.0 319.9,30.9 334.7,33.0 338.7,48.4 329.9,53.2 314.3,48.9" fill="#aab1a2" stroke="#aab1a2" stroke-width="0.5"/><polygon points="363.3,51.3 377.1,34.1 393.4,43.5 391.7,51.7 369.9,57.8" fill="#c9b88f" stroke="#c9b88f" stroke-width="0.5"/><polygon points="372.0,74.5 369.9,57.8 391.7,51.7 393.5,56.0 381.1,77.5" fill="#8c9286" stroke="#8c9286" stroke-width="0.5"/><polygon points="393.5,56.0 391.7,51.7 393.4,43.5 398.8,39.6 418.5,45.4 418.5,63.2 404.7,65.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="418.5,63.2 418.5,45.4 427.2,37.4 445.5,45.4 445.5,58.6 435.9,65.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="445.5,58.6 445.5,45.4 449.8,41.9 470.8,43.9 474.7,58.9 461.9,68.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="474.7,58.9 469.6,39.3 486.5,33.5 498.5,45.5 482.3,60.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="499.9,44.2 509.5,52.5 510.9,65.9 488.8,69.4 482.3,60.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="510.9,65.8 509.5,52.5 529.4,42.5 538.7,59.6 533.2,67.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="538.7,59.6 529.4,42.5 530.3,37.9 535.5,33.8 550.1,33.8 555.5,39.4 550.6,58.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,38.5 576.0,59.3 550.2,60.4 555.5,39.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,75.9 0.0,67.0 19.3,60.6 28.6,69.5 19.0,85.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="21.4,93.6 19.0,85.0 28.6,69.5 38.0,68.9 46.5,83.4 33.2,96.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.5,83.4 38.0,68.9 42.9,61.6 60.3,56.9 67.5,64.5 67.5,73.4 52.9,85.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="67.5,73.4 67.5,64.5 91.8,55.6 95.8,77.7 91.1,84.1 79.6,84.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="95.8,77.7 92.3,58.2 118.0,61.9 111.1,77.5" fill="#edf7e3" stroke="#edf7e3" stroke-width="0.5"/><polygon points="111.1,77.5 119.8,57.9 132.7,62.2 134.3,64.4 131.2,81.5 118.7,85.8" fill="#f1fbe6" stroke="#f1fbe6" stroke-width="0.5"/><polygon points="131.2,81.5 134.3,64.4 151.7,67.8 155.2,82.4 150.3,87.3 137.0,86.4" fill="#c9c27e" stroke="#c9c27e" stroke-width="0.5"/><polygon points="155.2,82.4 151.7,67.8 158.8,60.2 174.7,61.5 176.6,65.0 172.9,81.7 168.7,84.9" fill="#c6bf7c" stroke="#c6bf7c" stroke-width="0.5"/><polygon points="172.9,81.7 176.6,65.0 196.7,70.0 195.6,88.2" fill="#b3ad70" stroke="#b3ad70" stroke-width="0.5"/><polygon points="195.7,86.6 196.7,70.0 205.5,61.5 210.7,62.3 222.9,79.0 215.5,92.1" fill="#b8b173" stroke="#b8b173" stroke-width="0.5"/><polygon points="222.9,79.0 210.7,62.3 227.9,49.4 238.0,59.2 235.5,76.7" fill="#b9b274" stroke="#b9b274" stroke-width="0.5"/><polygon points="235.0,80.0 238.0,59.2 252.8,55.8 260.7,66.4 255.6,77.1" fill="#b3ac70" stroke="#b3ac70" stroke-width="0.5"/><polygon points="255.7,77.0 260.7,66.4 275.4,64.7 280.7,84.3 262.5,87.9" fill="#908b5a" stroke="#908b5a" stroke-width="0.5"/><polygon points="281.7,88.0 275.8,66.3 291.4,60.5 302.7,69.0 300.1,78.1" fill="#7f7b50" stroke="#7f7b50" stroke-width="0.5"/><polygon points="312.2,93.2 300.1,78.1 302.7,69.0 307.5,66.8 333.6,76.6" fill="#7e8378" stroke="#7e8378" stroke-width="0.5"/><polygon points="338.7,48.4 350.0,52.2 346.8,74.9 333.8,80.0 327.3,77.6 329.9,53.2" fill="#a9b1a2" stroke="#a9b1a2" stroke-width="0.5"/><polygon points="346.8,74.9 350.0,52.2 355.5,49.9 363.3,51.3 369.9,57.8 372.0,74.5 360.8,81.3" fill="#9ba194" stroke="#9ba194" stroke-width="0.5"/><polygon points="380.5,78.7 393.5,56.0 404.7,65.1 398.0,79.9" fill="#888e82" stroke="#888e82" stroke-width="0.5"/><polygon points="398.0,79.9 404.7,65.1 418.5,63.2 418.5,85.5 402.2,85.5" fill="#baaa85" stroke="#baaa85" stroke-width="0.5"/><polygon points="418.5,87.7 418.5,63.2 435.9,65.6 438.3,86.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="438.3,86.3 435.9,65.6 445.5,58.6 461.9,68.9 461.8,76.7 442.1,89.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="461.8,76.7 461.9,68.9 474.7,58.9 482.3,60.9 488.8,69.4 487.3,86.8 470.5,86.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="487.4,85.9 488.8,69.4 510.8,66.0 510.8,83.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="510.8,85.6 510.8,65.8 533.2,67.2 534.9,79.9 527.8,88.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="534.9,79.9 533.2,67.2 538.7,59.6 552.5,58.7 557.8,87.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,59.3 576.0,82.9 557.1,83.8 552.8,60.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,104.5 0.0,75.9 19.0,85.0 21.4,93.6 11.7,104.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="42.7,113.9 33.2,96.1 46.5,83.4 52.9,85.0 60.2,100.7 46.0,114.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="60.2,100.7 52.9,85.0 67.5,73.4 79.6,84.2 69.2,101.9" fill="#ffffc6" stroke="#ffffc6" stroke-width="0.5"/><polygon points="69.2,101.9 79.6,84.2 91.1,84.1 95.9,96.8 87.2,109.9 76.3,110.0" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="95.9,96.8 91.1,84.1 95.8,77.7 111.1,77.5 118.7,85.8 116.5,97.2 110.7,101.1" fill="#eff9e5" stroke="#eff9e5" stroke-width="0.5"/><polygon points="116.5,97.2 118.7,85.8 131.2,81.5 137.0,86.4 132.3,105.2" fill="#cdc580" stroke="#cdc580" stroke-width="0.5"/><polygon points="132.1,105.9 137.0,86.4 150.3,87.3 151.0,107.3" fill="#ccc480" stroke="#ccc480" stroke-width="0.5"/><polygon points="150.9,106.0 150.3,87.3 155.2,82.4 168.7,84.9 171.9,105.3" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="171.9,105.3 168.7,84.9 172.9,81.7 194.1,87.7 188.7,102.3 172.9,106.0" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="188.7,102.3 194.6,86.3 215.5,92.1 218.7,102.6 207.6,113.0 198.6,113.2" fill="#e3e7eb" stroke="#e3e7eb" stroke-width="0.5"/><polygon points="218.7,102.6 215.5,92.1 222.9,79.0 238.9,76.1 242.7,102.0 227.5,106.2" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="242.7,102.0 239.4,79.4 255.7,77.1 262.5,87.9 258.8,99.2 247.6,104.1" fill="#79754c" stroke="#79754c" stroke-width="0.5"/><polygon points="258.8,99.2 262.5,87.9 283.7,83.7 285.3,94.6 271.7,107.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="285.3,94.6 284.2,86.6 300.1,78.1 312.2,93.2 310.9,102.3 294.0,102.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="310.8,102.7 312.2,93.2 330.7,78.9 333.8,80.0 339.2,102.2 330.8,108.6" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="339.2,102.2 333.8,80.0 346.8,74.9 360.7,81.3 360.7,100.8 353.2,105.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="372.0,74.5 382.5,78.0 382.5,101.6 374.6,105.4 360.7,100.7 360.7,81.3" fill="#8e9488" stroke="#8e9488" stroke-width="0.5"/><polygon points="382.5,101.6 382.5,78.8 398.0,79.9 402.2,85.5 397.4,104.8" fill="#8b9185" stroke="#8b9185" stroke-width="0.5"/><polygon points="396.5,108.4 402.2,85.5 420.9,85.5 417.8,105.4" fill="#477643" stroke="#477643" stroke-width="0.5"/><polygon points="417.8,105.4 420.5,87.6 438.3,86.3 442.1,89.1 444.2,99.2 423.4,109.7" fill="#4b7c46" stroke="#4b7c46" stroke-width="0.5"/><polygon points="444.7,101.6 442.1,89.1 461.8,76.7 470.5,86.8 463.6,104.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="463.6,104.7 470.5,86.8 486.7,86.8 489.7,98.8 483.8,109.7 472.0,113.4 468.4,111.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="489.7,98.8 486.5,86.0 512.9,83.6 507.9,103.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="507.9,103.7 512.4,85.8 527.8,88.0 531.0,100.9 512.4,112.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="531.0,100.9 527.8,88.0 534.9,79.9 553.9,86.4 553.2,90.2 540.0,105.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,82.9 576.0,111.5 564.5,109.1 553.2,90.2 554.3,84.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,136.0 0.0,104.5 11.7,104.8 20.0,120.6 3.7,136.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="20.0,120.6 11.7,104.8 21.4,93.6 33.2,96.1 42.7,113.9 28.2,122.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.0,114.5 60.2,100.7 69.2,101.9 76.3,110.0 68.6,129.2 53.0,124.2" fill="#62a25c" stroke="#62a25c" stroke-width="0.5"/><polygon points="68.7,128.9 76.3,110.0 87.2,109.9 94.6,120.0 85.7,132.3" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="94.6,120.0 87.2,109.9 95.9,96.8 110.7,101.1 110.4,118.7 105.9,122.3" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="110.4,118.7 110.7,101.1 116.5,97.2 133.1,105.5 126.9,121.6" fill="#cdc580" stroke="#cdc580" stroke-width="0.5"/><polygon points="126.9,121.6 132.9,106.0 149.7,107.2 150.7,126.5 132.1,130.2" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="150.7,126.5 149.6,106.0 171.9,105.3 172.9,106.0 173.3,121.9 155.0,129.5" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="173.4,123.4 172.9,106.0 188.7,102.3 198.6,113.2 190.4,126.2" fill="#b5b8bb" stroke="#b5b8bb" stroke-width="0.5"/><polygon points="207.6,113.0 218.7,102.6 227.5,106.2 230.7,129.1 217.5,137.7 216.6,137.3" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="230.7,129.1 227.5,106.2 242.7,102.0 247.6,104.1 251.0,120.9 243.4,130.8" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="251.0,120.9 247.6,104.1 258.8,99.2 271.7,107.3 275.1,124.7" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="274.6,121.8 271.7,107.3 285.3,94.6 294.0,102.5 287.6,120.9 283.1,123.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="287.6,120.9 294.0,102.5 311.4,102.3 307.8,123.0" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="307.8,123.0 311.3,102.9 330.8,108.6 330.8,127.3 318.7,131.2 311.6,129.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="330.8,127.3 330.8,108.6 339.2,102.2 353.2,105.3 353.2,126.5 335.5,130.0" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="353.3,131.7 353.3,105.3 360.7,100.7 374.6,105.4 375.8,127.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="375.8,127.6 374.6,105.4 382.5,101.6 400.3,105.5 398.8,123.3 378.8,129.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="398.8,123.3 400.1,107.9 417.8,105.4 423.4,109.7 427.2,125.9 425.0,129.2 405.1,130.2" fill="#355731" stroke="#355731" stroke-width="0.5"/><polygon points="427.2,125.9 423.4,109.7 447.6,97.6 443.5,123.6" fill="#457241" stroke="#457241" stroke-width="0.5"/><polygon points="443.5,123.6 446.9,101.9 463.6,104.7 468.4,111.6 450.4,128.1" fill="#457241" stroke="#457241" stroke-width="0.5"/><polygon points="474.4,127.6 472.0,113.4 483.8,109.7 498.4,123.6 490.1,136.3" fill="#bdad87" stroke="#bdad87" stroke-width="0.5"/><polygon points="483.8,109.7 489.7,98.8 507.9,103.7 512.4,112.2 511.6,119.3 498.4,123.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="511.6,119.3 512.4,112.2 531.0,100.9 540.0,105.9 544.2,116.6 542.8,122.5 517.6,125.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="544.2,116.6 540.0,105.9 553.2,90.2 564.5,109.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="564.5,109.1 576.0,111.5 576.0,127.9 560.9,131.0 543.2,120.5 544.2,116.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="3.7,136.1 20.0,120.6 28.2,122.6 33.0,143.6 17.2,148.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="33.0,143.6 28.2,122.6 42.7,113.9 46.0,114.5 53.0,124.2 41.2,147.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="40.3,149.6 53.0,124.2 68.4,129.1 66.5,147.8" fill="#5f9d59" stroke="#5f9d59" stroke-width="0.5"/><polygon points="66.3,149.4 68.4,128.9 85.7,132.3 91.2,143.4 88.1,149.4" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="91.2,143.4 85.7,132.3 94.6,120.0 105.9,122.3 107.1,139.7" fill="#c9c17d" stroke="#c9c17d" stroke-width="0.5"/><polygon points="107.1,139.7 105.9,122.3 110.4,118.7 126.9,121.6 132.1,130.2 128.4,141.3 111.5,143.1" fill="#c5be7b" stroke="#c5be7b" stroke-width="0.5"/><polygon points="128.4,141.3 132.1,130.2 150.7,126.5 155.0,129.5 157.4,142.7 153.5,149.1 131.8,146.9" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="157.4,142.7 155.0,129.5 175.5,121.0 175.5,145.0" fill="#acafb2" stroke="#acafb2" stroke-width="0.5"/><polygon points="175.5,146.2 175.5,123.8 190.4,126.2 196.6,139.9 194.2,143.2" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="196.6,139.9 190.4,126.2 198.6,113.2 207.6,113.0 216.6,137.3" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="221.3,149.9 217.5,137.7 230.7,129.1 243.4,130.8 250.1,145.0 243.7,158.2" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="250.1,145.0 243.4,130.8 251.0,120.9 271.1,124.0 265.3,143.1" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="265.3,143.1 272.0,121.3 283.1,123.5 291.5,145.3 290.5,147.0 275.0,152.1" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="291.5,145.3 283.1,123.5 287.6,120.9 307.8,123.0 311.6,129.4 300.1,142.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="321.6,154.9 318.7,131.2 330.8,127.3 335.5,130.0 338.2,148.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="338.2,148.7 335.5,130.0 359.1,125.3 357.3,145.3 344.0,152.0" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="357.3,145.3 358.6,130.7 375.8,127.6 378.8,129.6 381.9,145.1 371.7,156.5 370.5,156.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="381.9,145.1 378.8,129.6 398.8,123.3 405.1,130.2 400.9,150.1" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="400.8,150.1 405.1,130.2 425.0,129.2 428.0,143.9 418.6,154.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="428.0,143.9 425.0,129.2 427.2,125.9 443.5,123.6 450.4,128.1 455.3,139.5 445.7,150.4" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="468.4,111.6 472.0,113.4 474.4,127.6 460.9,140.1 455.3,139.5 450.4,128.1" fill="#497844" stroke="#497844" stroke-width="0.5"/><polygon points="474.4,127.6 490.1,136.3 490.4,140.5 470.7,149.2 460.9,140.1" fill="#4d7f48" stroke="#4d7f48" stroke-width="0.5"/><polygon points="490.4,140.5 490.1,136.3 498.4,123.6 511.6,119.3 517.6,125.5 518.4,142.3 504.4,152.0 496.1,148.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="518.4,142.3 517.6,125.5 541.1,122.7 541.1,149.3 535.9,151.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="541.1,119.2 560.9,131.0 553.6,146.6 541.1,151.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,127.9 576.0,152.6 553.6,146.6 560.9,131.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,167.6 0.0,136.0 3.7,136.1 17.2,148.1 13.7,165.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="13.7,165.3 17.2,148.1 33.0,143.6 42.5,148.4 42.1,156.8 36.9,164.6 18.5,169.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="42.1,156.8 42.4,149.5 67.8,147.7 68.4,169.0 64.0,174.7" fill="#578f52" stroke="#578f52" stroke-width="0.5"/><polygon points="68.4,169.0 67.8,149.4 88.1,149.4 93.6,166.6" fill="#5d9957" stroke="#5d9957" stroke-width="0.5"/><polygon points="94.4,168.9 88.1,149.4 91.2,143.4 107.1,139.7 111.5,143.1 108.2,165.1 102.4,169.2" fill="#c3bc7a" stroke="#c3bc7a" stroke-width="0.5"/><polygon points="108.2,165.1 111.5,143.1 128.4,141.3 131.8,146.9 129.8,166.2" fill="#b1aa6f" stroke="#b1aa6f" stroke-width="0.5"/><polygon points="129.8,165.6 131.8,146.9 153.5,149.1 155.0,158.9 146.9,168.5" fill="#928a80" stroke="#928a80" stroke-width="0.5"/><polygon points="155.0,158.9 153.5,149.1 157.4,142.7 176.8,145.1 174.7,166.6" fill="#ced1d5" stroke="#ced1d5" stroke-width="0.5"/><polygon points="174.7,166.6 176.7,146.0 194.2,143.3 198.1,170.4" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="197.4,165.5 194.2,143.2 196.6,139.9 216.6,137.3 217.5,137.7 221.3,149.9 211.8,166.3" fill="#546f46" stroke="#546f46" stroke-width="0.5"/><polygon points="211.8,166.3 221.3,149.9 243.7,158.2 244.8,162.6 238.5,170.7 217.0,173.8" fill="#546f46" stroke="#546f46" stroke-width="0.5"/><polygon points="244.8,162.6 243.7,158.2 250.1,145.0 265.3,143.1 275.0,152.1 271.2,166.4 258.7,170.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="271.2,166.4 275.0,152.1 290.5,147.0 297.1,164.4 285.2,178.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="297.1,164.4 290.5,147.0 291.5,145.3 300.1,142.8 319.3,158.0 317.6,167.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="300.1,142.8 311.6,129.4 318.7,131.2 322.3,160.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="317.5,167.7 319.7,155.6 338.2,148.7 344.0,152.0 345.8,164.8 335.2,174.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="345.8,164.8 344.0,152.0 357.3,145.3 370.5,156.4 356.3,168.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="371.7,156.5 381.9,145.1 400.9,150.1 396.1,166.5 378.4,166.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="396.1,166.5 400.9,150.1 418.6,154.4 422.0,167.0 402.3,177.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="422.0,167.0 418.6,154.4 428.0,143.9 445.7,150.4 446.4,157.1 439.4,166.3 424.6,168.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="446.4,157.1 445.7,150.4 455.3,139.5 460.9,140.1 470.7,149.2 472.1,169.0 467.4,170.5" fill="#d6c499" stroke="#d6c499" stroke-width="0.5"/><polygon points="472.1,169.1 470.7,149.2 490.4,140.5 496.1,148.4 478.6,168.4" fill="#609e5a" stroke="#609e5a" stroke-width="0.5"/><polygon points="496.1,148.4 504.4,152.0 506.9,162.1 495.6,176.3 478.6,168.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="506.9,162.1 504.4,152.0 518.4,142.3 535.9,151.6 531.7,162.3 516.1,167.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="547.6,182.9 536.4,174.5 531.7,162.3 535.9,151.6 543.6,148.3 555.6,166.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,152.6 576.0,163.9 555.6,166.8 544.7,150.1 553.6,146.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,191.1 0.0,167.6 13.7,165.3 18.5,169.2 21.6,184.5 16.4,193.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="21.6,184.5 18.5,169.2 36.9,164.6 42.6,184.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="42.2,183.2 36.9,164.6 42.1,156.8 64.3,174.9" fill="#548b4f" stroke="#548b4f" stroke-width="0.5"/><polygon points="63.9,174.8 68.4,169.0 98.2,166.2 84.5,192.6 68.2,184.9" fill="#a8a169" stroke="#a8a169" stroke-width="0.5"/><polygon points="88.1,200.6 84.5,192.6 96.8,169.0 102.4,169.2 112.3,189.0 96.2,202.8 92.8,203.2" fill="#898456" stroke="#898456" stroke-width="0.5"/><polygon points="112.3,189.0 102.4,169.2 108.2,165.1 129.2,166.1 128.1,185.3 117.5,190.2" fill="#96905e" stroke="#96905e" stroke-width="0.5"/><polygon points="128.1,185.3 129.3,165.5 146.9,168.5 151.5,181.7 139.2,191.1" fill="#706961" stroke="#706961" stroke-width="0.5"/><polygon points="151.5,181.7 146.9,168.5 155.0,158.9 174.7,166.6 165.5,186.3" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="165.5,186.3 174.7,166.6 192.2,169.4 193.3,192.0 175.5,193.9 166.7,188.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="193.4,193.5 192.0,165.3 211.8,166.3 217.0,173.8 217.0,183.9 212.7,191.5 205.7,194.7" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="217.0,183.9 217.0,173.8 238.5,170.7 238.5,188.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="238.5,188.5 238.5,170.7 244.8,162.6 258.7,170.3 257.8,188.8 241.8,193.9" fill="#546f46" stroke="#546f46" stroke-width="0.5"/><polygon points="257.8,188.8 258.7,170.3 271.2,166.4 285.2,178.6 285.8,181.8 282.9,189.3 269.2,196.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="285.8,181.8 285.2,178.6 297.1,164.4 318.2,167.2 311.1,185.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="313.0,192.1 311.1,185.8 317.9,167.9 335.2,174.6 339.7,188.1 334.2,198.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="339.7,188.1 335.2,174.6 345.8,164.8 356.3,168.3 361.8,186.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="361.8,186.2 356.3,168.3 370.5,156.4 371.7,156.5 378.4,166.5 373.8,187.0 365.7,188.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="374.2,185.5 378.4,166.5 396.1,166.5 402.3,177.9 401.6,182.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="401.1,186.1 402.3,177.9 422.0,167.0 424.6,168.6 427.9,188.1 425.3,190.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="427.9,188.1 424.6,168.6 439.4,166.3 447.6,186.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="446.0,182.7 439.4,166.3 446.4,157.1 467.4,170.5 461.0,178.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="482.5,199.5 472.4,169.1 478.6,168.4 495.6,176.3 497.0,181.0 486.8,199.8" fill="#558c50" stroke="#558c50" stroke-width="0.5"/><polygon points="497.0,181.0 495.6,176.3 506.9,162.1 516.1,167.4 518.0,188.7" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="517.7,185.1 516.1,167.4 531.7,162.3 536.4,174.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="536.4,174.5 548.6,183.7 547.8,185.6 528.3,196.6 516.3,187.6 515.9,186.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="576.0,163.9 576.0,187.4 546.6,184.8 555.6,166.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,220.3 0.0,191.1 16.4,193.1 19.5,200.6 6.5,219.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="19.5,200.6 16.4,193.1 21.6,184.5 41.4,184.5 45.0,202.5 32.0,206.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="45.0,202.5 41.2,183.5 64.0,175.0 68.2,184.9 57.1,202.4 46.0,203.0" fill="#4c7d47" stroke="#4c7d47" stroke-width="0.5"/><polygon points="57.1,202.4 68.2,184.9 84.5,192.6 88.1,200.6 69.0,213.2" fill="#467342" stroke="#467342" stroke-width="0.5"/><polygon points="96.2,202.8 112.3,189.0 117.5,190.2 122.8,208.6 112.8,213.6" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="122.8,208.6 117.5,190.2 128.1,185.3 139.2,191.1 140.3,199.4 127.5,210.0" fill="#6f6b45" stroke="#6f6b45" stroke-width="0.5"/><polygon points="140.3,199.4 139.2,191.1 151.5,181.7 165.5,186.3 166.7,188.8 154.6,207.7 152.4,208.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="154.6,207.7 166.7,188.8 175.5,193.9 175.5,218.8 172.3,219.2" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="175.5,218.8 175.5,193.9 195.6,191.8 191.2,213.7 178.5,220.1" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="211.3,216.9 205.7,194.7 212.7,191.5 229.5,205.8 220.1,218.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="212.7,191.5 217.0,183.9 238.5,188.5 241.8,193.9 238.7,203.3 229.5,205.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="238.7,203.3 241.8,193.9 257.8,188.8 269.2,196.7 266.9,214.1 247.4,214.1" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="267.4,210.6 269.2,196.7 282.9,189.3 294.5,204.4 288.8,217.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="282.9,189.3 285.8,181.8 311.1,185.8 313.0,192.1 306.5,202.4 294.5,204.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="314.6,217.1 306.5,202.4 313.0,192.1 341.2,200.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="331.5,203.8 339.7,188.1 361.8,186.2 365.7,188.5 359.0,211.2 358.4,211.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="359.0,211.2 365.7,188.5 372.5,187.2 384.6,203.7 380.1,219.5 377.3,220.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="384.6,203.7 371.4,185.8 404.2,182.3 400.6,198.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="400.6,198.9 403.3,186.5 425.2,190.9 425.2,213.9 420.0,214.4 407.7,210.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="425.2,212.4 425.2,190.9 427.9,188.1 443.1,187.0 449.1,202.6 444.0,211.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="449.1,202.6 441.9,183.8 461.0,178.6 465.4,199.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="465.4,199.7 461.0,178.6 467.4,170.5 472.3,168.9 482.5,199.5 472.4,203.2" fill="#fff9c2" stroke="#fff9c2" stroke-width="0.5"/><polygon points="485.4,202.5 497.0,181.0 516.0,188.0 505.2,204.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="516.3,187.6 528.3,196.6 529.6,211.5 510.2,211.5 505.2,204.8" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="529.6,211.5 528.3,196.6 547.8,185.6 552.7,211.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="576.0,187.4 576.0,209.9 552.7,211.5 547.8,185.6 548.1,184.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="6.5,219.3 19.5,200.6 32.0,206.9 28.2,227.7 25.8,229.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="28.2,227.7 32.0,206.9 45.0,202.5 46.0,203.0 49.0,229.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="48.9,229.2 46.0,203.0 57.1,202.4 69.0,213.2 68.3,227.6" fill="#b6a782" stroke="#b6a782" stroke-width="0.5"/><polygon points="68.4,227.1 69.0,213.2 88.1,200.6 92.8,203.2 92.0,229.8" fill="#4e8149" stroke="#4e8149" stroke-width="0.5"/><polygon points="92.0,229.1 92.8,203.2 96.2,202.8 112.8,213.6 110.2,231.8" fill="#365832" stroke="#365832" stroke-width="0.5"/><polygon points="110.6,229.5 112.8,213.6 122.8,208.6 127.5,210.0 134.6,224.2 131.0,229.5" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="134.6,224.2 127.5,210.0 140.3,199.4 152.4,208.3 145.1,222.8" fill="#6f6b46" stroke="#6f6b46" stroke-width="0.5"/><polygon points="156.9,234.6 145.1,222.8 152.4,208.2 154.6,207.7 172.3,219.2" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="183.5,232.6 178.5,220.1 191.2,213.8 204.2,220.2 199.9,237.6" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="191.2,213.8 195.3,193.6 205.7,194.7 211.3,216.9 204.3,220.2" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="220.1,218.5 229.5,205.8 238.7,203.3 247.4,214.1 240.5,232.5 224.1,226.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="240.5,232.5 247.4,214.1 263.9,214.1 266.3,232.9 247.7,239.2 243.1,237.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="270.4,235.7 266.3,232.9 263.3,209.3 293.5,219.3 290.2,225.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="286.3,223.7 294.5,204.4 306.5,202.4 314.6,217.1 312.9,225.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="312.4,228.5 314.6,217.1 336.0,204.1 336.0,226.3 330.7,230.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="336.0,226.3 336.0,205.1 358.4,211.5 350.5,228.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="354.3,236.5 350.5,228.8 358.4,211.5 359.0,211.2 377.3,220.7 371.2,237.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="380.1,219.5 384.6,203.7 400.6,198.9 407.7,210.0 391.9,223.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="402.0,239.7 391.9,223.5 407.7,210.0 420.0,214.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="428.5,231.6 422.9,212.5 444.0,211.0 452.3,223.7 445.7,237.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="452.3,223.7 444.0,211.0 449.1,202.6 465.4,199.7 472.4,203.2 468.4,222.9" fill="#fffbc4" stroke="#fffbc4" stroke-width="0.5"/><polygon points="468.4,222.9 472.4,203.2 482.5,199.5 490.5,200.2 490.5,229.5 474.3,229.5" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="490.5,228.1 490.5,203.1 505.2,204.8 510.2,211.5 506.5,226.1" fill="#375a33" stroke="#375a33" stroke-width="0.5"/><polygon points="506.5,226.1 510.2,211.5 529.6,211.5 527.8,232.3 514.0,232.8" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="527.8,232.3 529.6,211.5 552.6,211.5 550.2,232.9 540.3,236.5 530.2,234.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="576.0,209.9 576.0,236.5 553.5,234.9 550.2,232.9 552.7,211.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,246.8 0.0,220.3 6.5,219.3 25.8,229.4 22.0,248.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="21.9,248.9 25.8,229.4 28.2,227.7 48.7,229.4 46.7,251.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="46.7,251.0 48.7,229.3 67.8,227.7 68.8,245.9 49.8,254.4" fill="#c7b78e" stroke="#c7b78e" stroke-width="0.5"/><polygon points="68.8,245.9 67.8,227.1 91.1,229.7 87.7,251.5 78.2,253.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="87.7,251.5 91.2,229.0 108.4,231.5 112.1,250.1 93.7,255.1" fill="#59754a" stroke="#59754a" stroke-width="0.5"/><polygon points="111.8,248.4 108.0,229.5 131.0,229.5 134.2,249.4" fill="#6f935d" stroke="#6f935d" stroke-width="0.5"/><polygon points="134.0,248.4 131.0,229.5 134.6,224.2 145.1,222.8 156.9,234.6 157.4,246.3" fill="#9f9964" stroke="#9f9964" stroke-width="0.5"/><polygon points="157.4,247.0 156.9,234.6 172.3,219.2 175.5,218.8 178.5,220.1 183.5,232.6 173.4,248.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="180.4,256.0 173.4,248.5 183.5,232.6 202.5,238.4 196.1,253.4" fill="#7c784e" stroke="#7c784e" stroke-width="0.5"/><polygon points="199.3,240.2 204.2,220.3 211.3,216.9 220.1,218.5 224.1,226.8 214.2,242.0" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="214.2,242.0 224.1,226.8 240.5,232.5 243.1,237.9 234.0,250.3 220.5,250.1" fill="#3a6036" stroke="#3a6036" stroke-width="0.5"/><polygon points="247.7,239.2 266.3,232.9 270.4,235.7 274.0,247.8 259.2,258.7" fill="#467241" stroke="#467241" stroke-width="0.5"/><polygon points="274.0,247.8 270.4,235.7 290.2,225.8 293.5,246.1 283.3,252.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="293.5,246.1 290.2,225.8 291.1,224.1 315.3,226.2 309.6,249.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="309.9,248.5 314.7,228.8 330.7,230.9 336.2,249.9 331.7,253.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="336.2,249.9 330.7,230.9 336.0,226.3 350.5,228.8 354.3,236.5 346.0,249.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="346.0,249.9 354.3,236.5 371.2,237.7 375.3,246.2 371.4,254.0 355.1,260.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="375.3,246.2 371.2,237.7 377.3,220.7 380.1,219.5 391.9,223.5 402.0,239.7 402.7,245.3 397.0,248.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="402.7,245.3 402.0,239.7 420.0,214.4 423.3,214.1 428.5,231.6 417.2,246.7 412.0,249.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="417.2,246.7 428.5,231.6 445.7,237.7 450.0,253.3" fill="#fee9b5" stroke="#fee9b5" stroke-width="0.5"/><polygon points="448.4,247.5 445.7,237.7 452.3,223.7 468.4,222.9 474.3,229.5 467.7,247.5" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="467.7,247.5 474.3,229.5 489.0,229.5 493.7,247.3 487.1,254.2 473.0,254.2" fill="#63a45d" stroke="#63a45d" stroke-width="0.5"/><polygon points="493.7,247.3 488.7,228.3 506.5,226.1 514.0,232.8 506.6,249.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="511.3,255.8 506.6,249.4 514.0,232.8 527.8,232.3 530.2,234.5 523.6,257.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="544.1,264.1 540.3,236.5 550.2,232.9 553.5,234.9 555.9,253.7 549.9,262.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,236.5 576.0,248.6 555.9,253.7 553.5,234.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,272.6 0.0,246.8 22.5,248.3 22.5,270.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="22.5,272.2 22.5,249.0 46.7,251.0 49.8,254.4 50.8,262.8 46.1,272.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="50.8,262.8 49.8,254.4 68.8,245.9 78.2,253.8 72.7,267.7" fill="#ac9e7b" stroke="#ac9e7b" stroke-width="0.5"/><polygon points="72.7,267.7 78.2,253.8 87.7,251.5 93.7,255.1 96.1,272.4 76.0,277.4" fill="#658655" stroke="#658655" stroke-width="0.5"/><polygon points="96.1,272.4 93.7,255.1 110.2,250.6 115.0,272.2 102.6,276.9" fill="#416b3d" stroke="#416b3d" stroke-width="0.5"/><polygon points="115.0,272.2 109.7,248.4 133.1,249.4 132.7,264.5 120.9,273.8" fill="#4f824a" stroke="#4f824a" stroke-width="0.5"/><polygon points="132.7,264.5 133.2,248.5 158.3,246.2 155.6,272.4 151.4,275.2" fill="#bfb877" stroke="#bfb877" stroke-width="0.5"/><polygon points="155.6,272.4 158.2,247.1 173.4,248.5 180.4,256.0 178.2,277.3" fill="#a39d66" stroke="#a39d66" stroke-width="0.5"/><polygon points="178.8,271.1 180.4,256.0 196.1,253.4 204.5,266.7 194.2,276.2" fill="#948e5c" stroke="#948e5c" stroke-width="0.5"/><polygon points="204.5,266.7 196.1,253.4 201.7,240.5 214.2,242.0 220.5,250.1 213.2,267.7" fill="#3b6238" stroke="#3b6238" stroke-width="0.5"/><polygon points="213.2,267.7 220.5,250.1 234.0,250.3 239.5,265.6 220.9,276.0" fill="#457140" stroke="#457140" stroke-width="0.5"/><polygon points="239.5,265.6 234.0,250.3 243.1,237.9 247.7,239.2 259.2,258.7 257.8,264.0 246.5,268.4" fill="#457241" stroke="#457241" stroke-width="0.5"/><polygon points="257.8,264.0 259.2,258.7 274.0,247.8 283.3,252.3 285.2,269.6 269.2,274.1" fill="#4d7f48" stroke="#4d7f48" stroke-width="0.5"/><polygon points="285.2,269.5 283.3,252.3 293.5,246.1 308.7,249.4 307.0,265.0 288.4,271.6" fill="#4d7e48" stroke="#4d7e48" stroke-width="0.5"/><polygon points="307.0,265.0 308.8,248.3 331.7,253.6 329.6,272.7 315.9,274.3" fill="#477442" stroke="#477442" stroke-width="0.5"/><polygon points="329.8,271.0 331.7,253.6 336.2,249.9 346.0,249.9 355.1,260.2 353.8,271.9 350.1,274.3" fill="#5b9555" stroke="#5b9555" stroke-width="0.5"/><polygon points="353.8,271.9 355.1,260.2 371.4,254.0 379.8,273.0 366.9,279.1" fill="#599353" stroke="#599353" stroke-width="0.5"/><polygon points="379.8,273.0 371.4,254.0 375.3,246.2 397.0,248.4 388.7,275.0" fill="#578e51" stroke="#578e51" stroke-width="0.5"/><polygon points="388.7,275.0 397.0,248.4 402.7,245.3 412.0,249.4 416.1,261.7 406.8,282.4 402.7,283.5 393.8,280.9" fill="#5a9555" stroke="#5a9555" stroke-width="0.5"/><polygon points="416.1,261.7 412.0,249.4 417.2,246.7 445.5,252.4 444.5,260.2 435.8,268.5" fill="#5b9655" stroke="#5b9655" stroke-width="0.5"/><polygon points="444.5,260.2 446.1,247.5 467.7,247.5 473.0,254.2 468.4,271.8 463.8,275.1" fill="#63a35d" stroke="#63a35d" stroke-width="0.5"/><polygon points="468.4,271.8 473.0,254.2 487.1,254.2 496.1,278.7" fill="#b4ad70" stroke="#b4ad70" stroke-width="0.5"/><polygon points="493.9,272.7 487.1,254.2 493.7,247.3 506.6,249.4 511.3,255.8 502.0,271.6" fill="#375a34" stroke="#375a34" stroke-width="0.5"/><polygon points="516.8,283.0 502.0,271.6 511.3,255.8 523.6,257.8 529.1,263.7" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="523.6,257.8 530.2,234.5 540.3,236.5 544.3,265.7 529.1,263.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="576.0,248.6 576.0,271.7 549.9,262.2 555.9,253.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,288.0 0.0,272.6 23.8,270.6 23.0,294.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="23.0,293.3 23.8,272.2 46.1,272.2 51.0,284.8 40.5,296.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="51.0,284.8 46.1,272.2 50.9,262.8 72.7,267.7 74.5,272.9 55.4,286.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="55.4,286.0 78.5,270.1 79.8,289.0 66.7,297.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="79.8,289.0 79.0,276.7 96.1,272.4 102.6,276.9 100.7,293.4 94.5,298.3" fill="#3a5f36" stroke="#3a5f36" stroke-width="0.5"/><polygon points="100.7,293.4 102.6,276.9 115.0,272.2 120.9,273.8 125.7,285.6 117.9,298.1" fill="#395e36" stroke="#395e36" stroke-width="0.5"/><polygon points="125.7,285.6 120.9,273.8 132.7,264.5 151.4,275.2 147.8,286.1 142.0,289.4" fill="#426d3e" stroke="#426d3e" stroke-width="0.5"/><polygon points="147.8,286.1 151.4,275.2 155.6,272.4 172.4,276.0 175.7,297.2 173.8,300.1 166.1,302.1 163.1,301.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="175.7,297.2 171.2,268.6 194.2,276.2 196.4,291.8" fill="#736e48" stroke="#736e48" stroke-width="0.5"/><polygon points="196.4,291.8 194.2,276.2 204.5,266.7 213.2,267.7 220.9,276.0 221.2,282.1 201.2,294.8" fill="#918c5b" stroke="#918c5b" stroke-width="0.5"/><polygon points="221.2,282.1 220.9,276.0 239.5,265.6 246.5,268.4 246.5,292.5 230.2,292.5" fill="#a09a64" stroke="#a09a64" stroke-width="0.5"/><polygon points="246.5,291.3 246.5,268.4 257.8,264.0 269.2,274.1 265.6,291.9" fill="#52874d" stroke="#52874d" stroke-width="0.5"/><polygon points="266.0,289.8 269.2,274.1 285.2,269.6 288.4,271.6 292.6,287.4 284.2,294.4" fill="#a09a64" stroke="#a09a64" stroke-width="0.5"/><polygon points="292.6,287.4 288.4,271.6 307.0,265.0 315.9,274.3 309.0,289.3 304.1,291.4" fill="#4f814a" stroke="#4f814a" stroke-width="0.5"/><polygon points="309.0,289.3 315.9,274.3 327.7,273.0 333.8,295.4 328.1,300.4" fill="#5b9656" stroke="#5b9656" stroke-width="0.5"/><polygon points="333.8,295.4 327.0,270.6 350.1,274.3 345.2,294.5" fill="#558d50" stroke="#558d50" stroke-width="0.5"/><polygon points="345.2,294.5 350.1,274.3 353.8,271.9 366.9,279.1 366.3,297.4 357.8,303.4" fill="#619f5b" stroke="#619f5b" stroke-width="0.5"/><polygon points="366.3,297.4 366.9,279.1 379.8,273.0 388.7,275.0 393.8,280.9 379.7,299.3" fill="#579052" stroke="#579052" stroke-width="0.5"/><polygon points="425.2,305.3 406.6,282.4 438.8,282.4" fill="#c4bd7b" stroke="#c4bd7b" stroke-width="0.5"/><polygon points="406.8,282.4 416.1,261.7 435.8,268.5 435.3,282.4" fill="#5f9c59" stroke="#5f9c59" stroke-width="0.5"/><polygon points="435.3,284.7 435.8,268.5 444.5,260.2 463.8,275.1 462.1,281.2 446.2,288.5" fill="#cdc580" stroke="#cdc580" stroke-width="0.5"/><polygon points="462.1,281.2 463.8,275.1 468.4,271.8 489.8,277.1 489.4,290.0 470.5,294.7" fill="#bbb475" stroke="#bbb475" stroke-width="0.5"/><polygon points="489.3,291.1 490.0,273.3 502.0,271.6 516.8,283.0 518.0,289.4 510.8,294.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="518.0,289.4 516.8,283.0 529.1,263.7 542.6,265.5 545.0,279.8 526.5,293.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="530.2,300.8 526.5,293.6 545.0,279.8 553.6,287.1 550.8,303.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="576.0,271.7 576.0,282.6 553.6,287.1 545.0,279.8 542.5,264.7 549.9,262.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="0.0,310.9 0.0,288.0 21.6,294.5 15.7,311.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="16.0,310.9 22.0,293.1 40.5,296.6 46.1,313.4 44.8,315.8 34.1,320.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.1,313.4 40.5,296.6 51.0,284.8 55.4,286.0 66.7,297.6 66.3,308.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="66.2,309.5 66.7,297.6 79.8,289.0 94.5,298.3 93.8,302.1 82.4,312.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="93.8,302.1 94.5,298.3 100.7,293.4 117.9,298.1 122.8,310.5 114.1,321.4 107.7,320.6" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="122.8,310.5 117.9,298.1 125.7,285.6 142.0,289.4 137.7,306.5 129.8,310.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="137.7,306.5 142.0,289.4 147.7,286.1 163.1,301.5 148.3,311.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="151.5,328.9 148.3,311.4 163.1,301.5 166.1,302.1 162.1,331.7 159.6,332.9" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="173.8,300.1 175.7,297.2 196.4,291.8 201.2,294.8 205.7,309.7 192.6,318.0 183.7,315.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="205.7,309.7 201.2,294.8 221.2,282.1 230.2,292.5 223.1,308.8 211.5,312.2" fill="#757049" stroke="#757049" stroke-width="0.5"/><polygon points="223.1,308.8 230.2,292.5 244.9,292.5 247.6,320.9 240.4,322.5" fill="#a29c65" stroke="#a29c65" stroke-width="0.5"/><polygon points="247.3,317.8 244.8,291.2 263.5,291.9 266.2,310.7" fill="#beb777" stroke="#beb777" stroke-width="0.5"/><polygon points="266.2,310.7 263.1,289.1 284.2,294.4 284.2,310.6 273.6,314.9" fill="#b3ad70" stroke="#b3ad70" stroke-width="0.5"/><polygon points="284.2,310.6 284.2,294.4 292.6,287.4 304.1,291.4 303.1,313.2 302.7,313.6 295.1,315.7" fill="#beb777" stroke="#beb777" stroke-width="0.5"/><polygon points="303.1,313.2 304.1,291.4 309.0,289.3 328.1,300.4 326.6,307.9" fill="#bcb576" stroke="#bcb576" stroke-width="0.5"/><polygon points="326.6,307.9 328.1,300.4 333.8,295.4 345.2,294.5 357.8,303.4 357.1,311.1 353.8,316.5 332.7,321.6" fill="#bfb878" stroke="#bfb878" stroke-width="0.5"/><polygon points="357.1,311.1 357.8,303.4 366.3,297.4 379.7,299.3 389.7,315.5 382.7,323.0" fill="#b3ac70" stroke="#b3ac70" stroke-width="0.5"/><polygon points="389.8,315.8 379.7,299.3 393.8,280.9 402.7,283.5 401.2,307.6" fill="#b9b273" stroke="#b9b273" stroke-width="0.5"/><polygon points="401.2,307.6 402.7,283.5 406.7,282.4 425.2,305.3 425.2,307.9 419.6,311.7" fill="#c2bb79" stroke="#c2bb79" stroke-width="0.5"/><polygon points="425.2,307.9 425.2,305.3 437.1,285.3 446.2,288.5 451.0,307.6 438.5,314.5" fill="#77734b" stroke="#77734b" stroke-width="0.5"/><polygon points="451.0,307.6 446.2,288.5 462.1,281.2 470.5,294.7 467.7,305.6 462.0,310.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="467.7,305.6 470.5,294.7 490.5,289.7 490.5,313.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="490.5,310.5 490.5,291.3 510.8,294.5 506.8,310.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="506.8,310.5 510.8,294.5 518.0,289.4 526.5,293.6 530.2,300.8 527.2,315.8 512.2,317.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="532.6,321.9 527.2,315.8 530.2,300.8 550.8,303.0 555.3,310.5 551.2,317.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="576.0,282.6 576.0,310.5 555.3,310.5 550.8,303.0 553.6,287.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,339.9 0.0,310.9 14.4,311.8 11.8,337.0 5.7,340.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="11.8,337.0 14.6,310.1 34.1,320.5 29.0,338.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="44.8,315.8 46.1,313.4 67.5,308.3 67.5,334.8 62.1,340.2 56.4,337.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="67.5,334.8 67.5,309.7 82.4,312.2 87.9,330.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="87.9,330.5 82.4,312.2 93.8,302.1 107.7,320.6 89.7,331.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="115.0,323.4 114.1,321.4 122.8,310.5 129.7,310.5 141.0,330.2 133.5,335.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="129.8,310.5 137.7,306.5 148.3,311.4 151.5,328.9 141.0,330.2" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="162.1,331.7 166.1,302.1 173.8,300.1 183.7,315.8 170.1,331.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="170.1,331.4 183.7,315.8 192.6,318.0 195.0,334.5 182.9,340.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="195.0,334.5 192.6,318.0 205.7,309.7 211.5,312.2 215.7,338.1 206.2,339.9" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="214.9,333.0 211.5,312.2 223.1,308.8 240.4,322.5 231.7,333.3" fill="#7a764c" stroke="#7a764c" stroke-width="0.5"/><polygon points="243.1,319.4 266.2,310.7 273.6,314.9 272.3,332.6 258.7,336.9" fill="#948f5d" stroke="#948f5d" stroke-width="0.5"/><polygon points="272.3,332.6 273.6,314.9 284.2,310.6 295.1,315.7 290.1,336.0 283.5,339.3" fill="#a39d66" stroke="#a39d66" stroke-width="0.5"/><polygon points="290.1,336.0 295.1,315.7 302.7,313.6 313.2,329.8 305.8,340.6" fill="#b8b173" stroke="#b8b173" stroke-width="0.5"/><polygon points="313.2,329.8 302.7,313.6 303.1,313.2 326.6,307.9 332.7,321.6 330.1,328.4" fill="#c1ba79" stroke="#c1ba79" stroke-width="0.5"/><polygon points="333.0,336.3 330.1,328.4 332.7,321.6 353.8,316.5 359.1,334.9 346.4,343.3" fill="#726d47" stroke="#726d47" stroke-width="0.5"/><polygon points="359.1,334.9 353.8,316.5 357.1,311.1 382.7,323.0 381.7,327.2 368.7,338.2" fill="#858053" stroke="#858053" stroke-width="0.5"/><polygon points="396.1,345.2 381.7,327.2 382.7,323.0 390.0,315.1 409.1,331.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="409.1,331.5 390.3,315.4 401.2,307.6 419.6,311.7 414.7,330.8" fill="#7d784e" stroke="#7d784e" stroke-width="0.5"/><polygon points="414.7,330.8 419.6,311.7 425.2,307.9 438.5,314.5 439.9,327.8 426.1,340.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="439.9,327.8 438.5,314.5 451.0,307.6 462.0,310.3 464.9,328.3 460.2,335.8 458.2,336.2" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="464.9,328.3 462.0,310.3 467.7,305.6 488.1,312.9 486.9,326.9" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="486.6,330.8 488.3,310.5 506.8,310.5 512.2,317.6 507.0,330.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="507.0,330.8 512.2,317.6 527.2,315.8 532.6,321.9 532.2,331.3 512.6,338.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="532.2,331.3 532.6,321.9 551.2,317.2 556.5,338.1 538.3,339.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,310.5 576.0,338.0 556.6,338.6 551.2,317.2 555.3,310.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="14.8,364.8 5.7,340.4 11.8,337.0 29.0,338.7 32.7,343.4 33.0,360.5 24.6,367.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="32.7,343.4 29.0,338.7 34.1,320.5 44.8,315.8 56.4,337.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="33.0,360.5 32.7,343.4 56.4,337.5 62.1,340.2 63.4,346.9 47.3,363.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="63.4,346.9 62.1,340.2 67.5,334.8 87.9,330.5 89.7,331.4 96.2,350.7 89.8,359.1 78.5,360.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="96.2,350.7 89.7,331.4 107.7,320.6 114.1,321.4 115.0,323.4 110.9,348.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="110.9,348.9 115.0,323.4 133.5,335.8 129.5,355.9 126.4,356.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="129.5,355.9 133.5,335.8 141.0,330.2 151.5,328.9 159.6,332.9 158.2,342.6 136.8,358.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="158.2,342.6 159.6,332.9 162.1,331.7 170.1,331.4 182.9,340.6 182.4,360.0 174.7,364.4 170.6,363.1" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="182.4,360.0 182.9,340.6 195.0,334.5 206.2,339.9 195.2,361.9" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="202.4,368.3 195.2,361.9 206.2,339.9 209.2,339.3 223.4,359.8 219.0,365.1" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="223.4,359.8 204.7,332.9 231.7,333.3 237.0,355.9" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="237.5,358.5 231.7,333.3 240.4,322.5 245.0,321.4 258.7,336.9 253.7,354.2" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="253.7,354.2 258.7,336.9 272.3,332.6 283.5,339.3 282.0,359.1 267.5,363.5" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="282.0,359.1 283.5,339.3 290.1,336.0 305.8,340.6 310.6,353.8 302.0,361.8 289.7,363.7" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="310.6,353.8 305.8,340.6 313.2,329.8 330.1,328.4 333.0,336.3 321.0,355.1" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="321.0,355.1 333.0,336.3 346.4,343.3 348.8,364.6 330.4,365.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="348.7,364.0 346.4,343.3 359.1,334.9 368.7,338.2 373.6,356.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="373.6,356.5 368.7,338.2 381.7,327.2 396.1,345.2 395.1,356.9 379.5,359.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="395.1,356.9 396.1,345.2 409.1,331.5 414.7,330.8 426.1,340.4 426.3,342.7 415.0,359.3 400.7,360.8" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="426.3,342.7 426.1,340.4 439.9,327.8 458.2,336.2 443.7,354.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="445.8,363.7 443.7,354.3 458.2,336.2 460.2,335.8 472.9,352.3 463.2,368.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="472.9,352.3 460.2,335.8 464.9,328.3 490.9,326.6 486.0,351.0" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="486.0,351.0 490.0,330.8 507.0,330.8 512.6,338.7 512.6,346.9 498.4,361.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="512.6,346.9 512.6,338.7 532.2,331.3 538.3,339.8 532.3,355.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="534.5,361.9 532.3,355.8 538.3,339.8 557.3,338.0 551.9,367.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,338.0 576.0,365.9 552.4,365.0 557.2,338.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,371.2 0.0,339.9 5.7,340.4 14.8,364.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="61.4,396.0 28.4,396.0 24.6,367.1 33.0,360.5 47.3,363.9 61.4,388.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="61.4,388.3 47.3,363.9 63.4,346.9 78.5,360.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="108.4,396.0 61.4,396.0 61.4,388.3 78.5,360.1 89.8,359.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="107.5,394.4 89.8,359.1 96.2,350.7 110.9,348.9 126.4,356.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="145.5,396.0 106.7,396.0 126.4,356.7 129.5,355.9 136.8,358.6 147.2,370.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="147.2,370.9 136.8,358.6 158.2,342.6 170.6,363.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="176.8,396.0 145.5,396.0 147.2,370.9 170.6,363.1 174.7,364.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="198.9,396.0 176.8,396.0 174.7,364.4 182.4,360.0 195.2,361.9 202.4,368.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="228.8,396.0 198.9,396.0 202.4,368.3 219.0,365.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="243.6,396.0 228.8,396.0 219.0,365.1 223.4,359.8 241.2,354.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="262.6,396.0 243.6,396.0 241.4,357.5 253.7,354.2 267.5,363.5" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="289.2,396.0 262.6,396.0 267.5,363.5 282.0,359.1 289.7,363.7" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="319.1,396.0 289.2,396.0 289.7,363.7 302.0,361.8" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="317.5,392.7 302.0,361.8 310.6,353.8 321.0,355.1 330.4,365.8" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="357.6,396.0 315.9,396.0 330.4,365.8 348.4,364.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="373.5,396.0 357.6,396.0 348.2,364.2 373.6,356.5 379.5,359.8" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="401.5,396.0 373.5,396.0 379.5,359.8 395.1,356.9 400.7,360.8" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="429.2,396.0 401.5,396.0 400.7,360.8 415.0,359.3 431.6,377.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="431.6,377.0 415.0,359.3 426.3,342.7 443.7,354.3 445.8,363.7" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="475.4,396.0 429.2,396.0 431.6,377.0 445.8,363.7 463.2,368.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="475.3,395.8 463.2,368.6 472.9,352.3 486.0,351.0 498.4,361.1 498.4,361.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="519.4,396.0 475.2,396.0 498.4,361.1 518.8,377.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="518.8,377.9 498.4,361.1 498.4,361.1 512.6,346.9 532.3,355.8 534.5,361.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="550.2,396.0 519.4,396.0 518.8,377.9 534.5,361.9 549.2,366.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,365.9 576.0,396.0 550.2,396.0 549.2,364.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="28.4,396.0 0.0,396.0 0.0,371.2 14.8,364.8 24.6,367.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/></g><path d="M164.2,37.2 L165.7,23.8 M165.7,23.8 L175.5,20.0 M175.5,20.0 L186.2,23.4 M186.2,23.4 L195.8,20.2 M195.8,20.2 L202.7,23.3 M202.7,23.3 L222.9,11.9 M222.9,11.9 L230.3,41.3 M246.6,33.5 L249.3,24.1 M249.3,24.1 L275.1,21.4 M275.0,22.5 L283.5,18.5 M283.5,18.5 L294.7,22.4 M294.7,22.4 L300.4,39.3 M342.7,22.3 L355.5,24.0 M355.5,24.0 L355.5,49.9 M334.7,33.0 L342.7,22.3 M90.6,57.9 L91.7,48.5 M91.7,48.5 L110.6,43.8 M110.6,43.8 L120.0,51.3 M120.0,51.3 L135.1,29.1 M135.1,29.1 L144.1,41.9 M144.1,41.9 L154.3,44.6 M154.3,44.6 L164.2,37.2 M228.3,39.3 L246.6,33.5 M300.4,39.3 L310.7,42.0 M310.7,42.0 L319.9,30.9 M319.9,30.9 L334.7,33.0 M363.3,51.3 L377.1,34.1 M377.1,34.1 L393.4,43.5 M393.4,43.5 L391.7,51.7 M391.7,51.7 L393.5,56.0 M95.8,77.7 L92.3,58.2 M355.5,49.9 L363.3,51.3 M393.5,56.0 L404.7,65.1 M404.7,65.1 L418.5,63.2 M418.5,63.2 L418.5,85.5 M60.2,100.7 L52.9,85.0 M52.9,85.0 L67.5,73.4 M67.5,73.4 L79.6,84.2 M79.6,84.2 L91.1,84.1 M91.1,84.1 L95.8,77.7 M420.5,87.6 L438.3,86.3 M438.3,86.3 L442.1,89.1 M442.1,89.1 L444.2,99.2 M46.0,114.5 L60.2,100.7 M53.0,124.2 L46.0,114.5 M330.8,127.3 L318.7,131.2 M335.5,130.0 L330.8,127.3 M375.8,127.6 L353.3,131.7 M378.8,129.6 L375.8,127.6 M425.0,129.2 L405.1,130.2 M446.9,101.9 L463.6,104.7 M463.6,104.7 L468.4,111.6 M472.0,113.4 L483.8,109.7 M483.8,109.7 L498.4,123.6 M498.4,123.6 L490.1,136.3 M40.3,149.6 L53.0,124.2 M291.5,145.3 L290.5,147.0 M290.5,147.0 L275.0,152.1 M300.1,142.8 L291.5,145.3 M338.2,148.7 L335.5,130.0 M359.1,125.3 L357.3,145.3 M357.3,145.3 L344.0,152.0 M344.0,152.0 L338.2,148.7 M381.9,145.1 L378.8,129.6 M405.1,130.2 L400.9,150.1 M400.9,150.1 L381.9,145.1 M428.0,143.9 L425.0,129.2 M445.7,150.4 L428.0,143.9 M468.4,111.6 L472.0,113.4 M490.1,136.3 L490.4,140.5 M42.1,156.8 L42.4,149.5 M275.0,152.1 L271.2,166.4 M271.2,166.4 L258.7,170.3 M318.7,131.2 L322.3,160.3 M322.3,160.3 L300.1,142.8 M446.4,157.1 L445.7,150.4 M467.4,170.5 L446.4,157.1 M490.4,140.5 L496.1,148.4 M496.1,148.4 L504.4,152.0 M504.4,152.0 L506.9,162.1 M42.2,183.2 L36.9,164.6 M36.9,164.6 L42.1,156.8 M258.7,170.3 L257.8,188.8 M506.9,162.1 L516.1,167.4 M516.1,167.4 L518.0,188.7 M45.0,202.5 L41.2,183.5 M46.0,203.0 L45.0,202.5 M257.8,188.8 L269.2,196.7 M269.2,196.7 L266.9,214.1 M266.9,214.1 L247.4,214.1 M465.4,199.7 L461.0,178.6 M461.0,178.6 L467.4,170.5 M516.3,187.6 L528.3,196.6 M528.3,196.6 L529.6,211.5 M48.9,229.2 L46.0,203.0 M247.4,214.1 L240.5,232.5 M452.3,223.7 L444.0,211.0 M444.0,211.0 L449.1,202.6 M449.1,202.6 L465.4,199.7 M529.6,211.5 L527.8,232.3 M46.7,251.0 L48.7,229.3 M49.8,254.4 L46.7,251.0 M240.5,232.5 L243.1,237.9 M247.7,239.2 L266.3,232.9 M266.3,232.9 L270.4,235.7 M270.4,235.7 L274.0,247.8 M417.2,246.7 L428.5,231.6 M428.5,231.6 L445.7,237.7 M445.7,237.7 L452.3,223.7 M527.8,232.3 L530.2,234.5 M530.2,234.5 L523.6,257.8 M50.8,262.8 L49.8,254.4 M72.7,267.7 L50.8,262.8 M76.0,277.4 L72.7,267.7 M243.1,237.9 L247.7,239.2 M274.0,247.8 L283.3,252.3 M283.3,252.3 L293.5,246.1 M293.5,246.1 L308.7,249.4 M308.8,248.3 L331.7,253.6 M331.7,253.6 L336.2,249.9 M336.2,249.9 L346.0,249.9 M346.0,249.9 L355.1,260.2 M355.1,260.2 L371.4,254.0 M371.4,254.0 L375.3,246.2 M375.3,246.2 L397.0,248.4 M397.0,248.4 L402.7,245.3 M402.7,245.3 L412.0,249.4 M412.0,249.4 L417.2,246.7 M523.6,257.8 L529.1,263.7 M79.8,289.0 L79.0,276.7 M94.5,298.3 L79.8,289.0 M529.1,263.7 L542.6,265.5 M542.6,265.5 L545.0,279.8 M545.0,279.8 L526.5,293.6 M93.8,302.1 L94.5,298.3 M114.1,321.4 L107.7,320.6 M107.7,320.6 L93.8,302.1 M159.6,332.9 L151.5,328.9 M526.5,293.6 L530.2,300.8 M530.2,300.8 L527.2,315.8 M527.2,315.8 L512.2,317.6 M115.0,323.4 L114.1,321.4 M141.0,330.2 L133.5,335.8 M133.5,335.8 L115.0,323.4 M151.5,328.9 L141.0,330.2 M512.2,317.6 L507.0,330.8 M507.0,330.8 L486.6,330.8 M158.2,342.6 L159.6,332.9 M182.4,360.0 L174.7,364.4 M174.7,364.4 L170.6,363.1 M170.6,363.1 L158.2,342.6 M195.2,361.9 L182.4,360.0 M202.4,368.3 L195.2,361.9 M223.4,359.8 L219.0,365.1 M219.0,365.1 L202.4,368.3 M237.0,355.9 L223.4,359.8 M348.8,364.6 L330.4,365.8 M415.0,359.3 L400.7,360.8 M472.9,352.3 L463.2,368.6 M463.2,368.6 L445.8,363.7 M490.9,326.6 L486.0,351.0 M486.0,351.0 L472.9,352.3 M243.6,396.0 L241.4,357.5 M330.4,365.8 L317.5,392.7 M357.6,396.0 L348.2,364.2 M400.7,360.8 L401.5,396.0 M431.6,377.0 L415.0,359.3 M445.8,363.7 L431.6,377.0" fill="none" stroke="#283640" stroke-width="2.0" stroke-linecap="round"/><g opacity="0.9"><path d="M99.0,243.0 L85.5,265.5" fill="none" stroke="#4a82af" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/><path d="M121.5,238.5 L99.0,243.0" fill="none" stroke="#4a82af" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/><path d="M227.2,164.2 L247.5,180.0" fill="none" stroke="#4a82af" stroke-width="1.0" stroke-linecap="round" stroke-linejoin="round"/><path d="M205.9,151.9 L227.2,164.2" fill="none" stroke="#4a82af" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="630" height="630" viewBox="0 0 630 630"><rect width="630" height="630" fill="#05060a"/><polygon points="111.4,358.6 115.7,328.0 124.8,297.3 138.4,267.1 156.2,238.1 177.7,210.9 202.5,186.2 230.1,164.5 259.9,146.3 291.1,132.1 323.1,122.4 355.1,117.5 386.1,117.7 415.4,123.0 441.9,133.2 465.1,148.1 484.2,167.3 498.7,190.0 508.5,215.6 513.3,243.4 513.2,272.6 508.4,302.4 499.1,332.2 485.6,361.3 468.3,389.2 447.5,415.5 423.7,439.5 397.2,460.7 368.5,478.8 338.3,493.2 307.0,503.4 275.6,509.0 244.8,509.8 215.4,505.6 188.4,496.4 164.5,482.4 144.4,464.0 128.8,441.7 117.9,416.2 112.1,388.2" fill="#0a1420"/><g stroke="#00e5ff" stroke-width="1" stroke-linejoin="round"><polygon points="130.7,284.2 138.4,267.1 156.2,238.1 177.7,210.9 202.5,186.2 209.4,180.8 240.2,218.5 213.3,295.6 165.6,301.6" fill="#0e2838"/><polygon points="364.5,480.7 338.3,493.2 307.0,503.4 295.9,505.4 287.4,466.5 308.8,441.0 346.6,447.3" fill="#0e2838"/><polygon points="490.3,176.9 498.7,190.0 502.3,199.5 440.6,262.5 415.8,262.8 396.7,244.9 390.9,208.8" fill="#0e2838"/><polygon points="213.3,295.6 240.2,218.5 285.7,231.5 273.8,300.1 230.8,307.9" fill="#1b2a52"/><polygon points="488.2,355.6 485.6,361.3 468.3,389.2 447.5,415.5 427.8,435.4 395.2,403.3 423.3,347.4" fill="#0e2838"/><polygon points="427.8,435.4 423.7,439.5 397.2,460.7 368.5,478.8 364.5,480.7 346.6,447.3 371.0,403.0 395.2,403.3" fill="#10202e"/><polygon points="385.3,200.7 390.9,208.8 396.7,244.9 338.3,270.8 292.9,230.2 333.0,182.0" fill="#0e2233"/><polygon points="230.9,483.1 190.8,454.3 189.8,449.0 192.2,441.3 239.7,423.5 254.5,457.4" fill="#0e2233"/><polygon points="333.6,299.1 367.6,330.1 344.0,375.2 323.1,375.7 297.4,345.7 299.5,317.4" fill="#103a4a"/><polygon points="229.8,507.6 215.4,505.6 188.4,496.4 175.8,489.0 190.8,454.3 230.9,483.1" fill="#0e2233"/><polygon points="346.6,447.3 308.8,441.0 298.0,408.6 323.1,375.7 344.0,375.2 371.0,403.0" fill="#10202e"/><polygon points="338.3,270.8 396.7,244.9 415.8,262.8 402.0,324.2 367.6,330.1 333.6,299.1" fill="#0e2233"/><polygon points="192.2,441.3 189.8,449.0 136.4,452.5 128.8,441.7 117.9,416.2 114.9,401.5 166.5,392.0" fill="#0e2233"/><polygon points="298.0,408.6 308.8,441.0 287.4,466.5 254.5,457.4 239.7,423.5 248.0,400.0" fill="#1b2a52"/><polygon points="416.3,123.3 441.9,133.2 465.1,148.1 484.2,167.3 490.3,176.9 390.9,208.8 385.3,200.7" fill="#10202e"/><polygon points="295.9,505.4 275.6,509.0 244.8,509.8 229.8,507.6 230.9,483.1 254.5,457.4 287.4,466.5" fill="#13314a"/><polygon points="503.6,317.6 499.1,332.2 488.2,355.6 423.3,347.4 402.0,324.2 415.8,262.8 440.6,262.5" fill="#0e2233"/><polygon points="423.3,347.4 395.2,403.3 371.0,403.0 344.0,375.2 367.6,330.1 402.0,324.2" fill="#1b2a52"/><polygon points="209.4,180.8 230.1,164.5 259.9,146.3 291.1,132.1 314.4,125.0 333.0,182.0 292.9,230.2 285.7,231.5 240.2,218.5" fill="#0e2233"/><polygon points="297.4,345.7 323.1,375.7 298.0,408.6 248.0,400.0 237.7,375.9 241.5,367.5" fill="#10202e"/><polygon points="165.6,301.6 213.3,295.6 230.8,307.9 241.5,367.5 237.7,375.9 180.0,376.5" fill="#13314a"/><polygon points="314.4,125.0 323.1,122.4 355.1,117.5 386.1,117.7 415.4,123.0 416.3,123.3 385.3,200.7 333.0,182.0" fill="#0e2233"/><polygon points="230.8,307.9 273.8,300.1 299.5,317.4 297.4,345.7 241.5,367.5" fill="#0e2838"/><polygon points="111.4,358.6 115.7,328.0 124.8,297.3 130.7,284.2 165.6,301.6 180.0,376.5 166.5,392.0 114.9,401.5 112.1,388.2" fill="#0e2838"/><polygon points="502.3,199.5 508.5,215.6 513.3,243.4 513.2,272.6 508.4,302.4 503.6,317.6 440.6,262.5" fill="#10202e"/><polygon points="273.8,300.1 285.7,231.5 292.9,230.2 338.3,270.8 333.6,299.1 299.5,317.4" fill="#0e2233"/><polygon points="237.7,375.9 248.0,400.0 239.7,423.5 192.2,441.3 166.5,392.0 180.0,376.5" fill="#0e2838"/><polygon points="189.8,449.0 190.8,454.3 175.8,489.0 164.5,482.4 144.4,464.0 136.4,452.5" fill="#0e2838"/></g><g fill="#0a3a4a" stroke="#00e5ff" stroke-width="0.5" stroke-linejoin="round"><polygon points="227.9,245.3 226.1,250.3 204.5,242.8 206.2,237.8"/><polygon points="234.4,227.4 229.9,240.3 221.7,237.4 226.2,224.5"/><polygon points="216.8,235.6 207.9,232.5 212.3,219.8 221.2,222.9"/><polygon points="220.0,198.0 228.1,207.9 218.1,216.1 214.1,214.7"/><polygon points="231.6,211.4 237.7,218.9 236.3,223.0 223.1,218.3"/><polygon points="196.3,196.9 204.6,188.6 208.9,185.2 215.5,193.2 212.2,202.4"/><polygon points="206.6,206.0 211.6,207.7 207.3,220.1 202.3,218.4"/><polygon points="192.1,201.5 202.0,205.0 198.1,216.3 188.1,212.8"/><polygon points="205.2,224.3 199.3,241.2 193.3,239.1 199.2,222.2"/><polygon points="188.2,237.1 180.8,234.5 186.5,218.0 194.0,220.6"/><polygon points="166.9,229.5 180.0,212.9 183.3,209.6 175.3,232.4"/><polygon points="177.9,239.7 185.3,242.3 178.9,260.7 171.5,258.1"/><polygon points="157.5,240.6 158.2,239.5 162.7,233.7 173.0,237.3 170.3,245.1"/><polygon points="151.0,251.4 155.0,245.0 168.5,249.7 166.1,256.7"/><polygon points="169.2,262.8 177.8,265.9 174.6,275.2 165.9,272.2"/><polygon points="143.9,263.7 148.5,256.3 164.1,261.8 161.3,269.8"/><polygon points="156.2,274.2 172.3,279.8 169.7,287.3 152.6,281.4"/><polygon points="168.1,292.6 165.9,298.9 148.0,290.0 149.9,286.2"/><polygon points="134.6,282.8 140.9,268.9 150.6,272.3 143.2,287.1"/><polygon points="212.3,289.3 211.1,292.8 193.7,295.0 192.1,282.3"/><polygon points="182.8,297.9 170.1,299.5 172.0,294.1"/><polygon points="187.8,295.0 174.7,290.4 179.2,277.6 185.9,279.9"/><polygon points="190.7,243.8 196.6,245.8 190.6,263.0 184.7,261.0"/><polygon points="201.6,247.6 208.0,249.9 202.0,266.9 195.7,264.7"/><polygon points="200.2,272.0 198.0,278.3 180.8,272.3 183.0,266.0"/><polygon points="217.9,274.5 214.5,284.1 203.0,280.1 206.4,270.4"/><polygon points="213.2,252.0 224.0,255.8 219.4,269.0 208.6,265.3"/><polygon points="307.5,500.1 306.3,500.5 298.2,501.9 294.7,485.9 303.9,483.9"/><polygon points="317.3,497.6 312.6,499.1 308.9,482.1 313.7,481.1"/><polygon points="293.6,479.9 291.6,471.0 309.8,467.1 311.8,475.9"/><polygon points="328.5,494.2 321.5,496.5 319.3,486.2 326.5,484.7"/><polygon points="346.5,486.6 337.4,490.9 332.7,492.4 330.9,484.1 345.2,481.0"/><polygon points="317.4,474.2 315.5,465.4 329.9,462.3 331.8,471.1"/><polygon points="318.4,482.3 317.6,479.0 333.6,475.5 334.3,478.9"/><polygon points="334.9,460.9 340.6,459.7 344.2,476.2 338.5,477.4"/><polygon points="360.2,479.3 351.5,483.4 346.2,459.1 349.0,458.5"/><polygon points="314.7,444.7 327.0,446.8 325.2,457.8 317.9,459.4"/><polygon points="332.1,447.4 345.0,449.5 347.0,453.3 330.5,456.9"/><polygon points="293.4,464.3 309.0,445.6 312.2,460.2"/><polygon points="406.1,219.9 412.5,218.9 417.4,234.2 411.3,236.2"/><polygon points="398.7,240.1 395.7,221.7 400.9,220.9 406.3,237.6"/><polygon points="394.8,216.5 393.8,210.5 408.3,205.9 410.9,213.9"/><polygon points="409.3,252.7 401.3,245.1 418.7,239.5 421.7,248.7"/><polygon points="426.5,260.7 416.6,260.8 412.4,256.9 424.1,253.2"/><polygon points="443.0,255.9 439.3,259.6 431.3,259.7 427.8,248.7 439.5,244.9"/><polygon points="426.1,243.1 422.1,230.6 433.7,226.9 437.7,239.4"/><polygon points="460.2,239.3 447.3,252.5 444.7,244.3"/><polygon points="443.3,240.1 438.3,224.6 442.6,223.2 447.6,238.8"/><polygon points="447.4,222.2 455.1,219.7 459.8,234.3 452.1,236.8"/><polygon points="423.1,201.3 433.7,197.9 437.3,209.0 426.7,212.4"/><polygon points="416.6,216.3 412.7,204.0 418.4,202.2 422.3,214.4"/><polygon points="420.1,225.4 418.5,220.6 439.0,214.1 440.5,218.8"/><polygon points="439.4,196.5 446.5,194.2 453.0,214.4 445.8,216.7"/><polygon points="496.3,190.7 496.6,191.1 499.5,198.9 492.0,206.6 486.3,200.9"/><polygon points="489.0,180.6 492.8,186.5 482.8,196.6 472.1,186.0"/><polygon points="475.4,222.6 473.6,224.5 457.7,208.9 469.8,205.1"/><polygon points="488.4,210.0 480.0,218.6 475.0,203.0 479.7,201.5"/><polygon points="470.6,228.7 464.9,234.6 459.6,218.0"/><polygon points="467.5,188.3 477.3,197.8 471.2,199.7"/><polygon points="455.7,203.6 452.0,192.1 463.0,188.6 466.6,200.0"/><polygon points="218.3,294.0 228.9,263.8 240.5,267.9 228.8,301.4"/><polygon points="269.4,296.9 237.0,302.8 242.3,287.4"/><polygon points="248.4,270.4 273.3,279.2 271.6,289.2 245.1,279.9"/><polygon points="276.6,233.2 280.9,234.5 274.6,270.9 264.6,267.4"/><polygon points="240.0,230.7 242.7,223.2 269.0,230.7 265.8,239.7"/><polygon points="231.6,255.9 237.7,238.4 262.8,247.1 256.7,264.6"/><polygon points="419.2,387.5 432.6,394.2 431.6,401.9 417.6,400.1"/><polygon points="400.9,398.1 408.9,382.2 413.9,384.7 412.0,399.5"/><polygon points="411.9,377.1 415.1,370.7 434.1,380.2 433.1,387.7"/><polygon points="419.5,361.9 425.1,350.8 437.6,352.4 436.2,364.0"/><polygon points="419.6,367.1 436.6,369.3 435.8,375.3"/><polygon points="414.7,415.3 423.5,406.4 431.2,407.3 430.0,417.3"/><polygon points="428.6,431.4 427.8,432.2 415.7,420.3 429.7,422.1"/><polygon points="409.3,413.7 398.4,403.0 417.4,405.4"/><polygon points="439.9,421.3 432.5,428.7 433.5,420.5"/><polygon points="452.2,404.8 445.3,413.5 441.7,417.2 435.6,416.4 437.3,402.9"/><polygon points="457.2,398.7 456.5,399.5 438.0,397.2 438.9,390.0 458.0,392.4"/><polygon points="456.8,371.7 461.3,372.3 459.3,387.6 454.9,387.0"/><polygon points="439.6,384.3 441.4,370.6 451.8,371.9 450.1,385.6"/><polygon points="474.6,374.4 466.3,387.8 463.5,391.3 465.8,373.3"/><polygon points="465.0,367.9 453.9,366.5 455.4,354.3 466.6,355.7"/><polygon points="448.8,366.3 441.5,365.3 443.1,352.3 450.4,353.2"/><polygon points="484.3,357.8 483.3,360.0 477.4,369.6 470.4,368.7 471.9,356.2"/><polygon points="356.2,437.4 360.2,430.1 382.1,442.2 378.1,449.5"/><polygon points="364.8,472.6 351.2,447.4 352.9,444.3 374.0,455.9"/><polygon points="400.9,452.8 395.0,457.6 375.3,470.0 388.5,446.0"/><polygon points="391.2,439.1 387.6,437.1 400.6,413.5 408.6,421.4"/><polygon points="422.5,435.4 421.2,436.7 407.4,447.8 397.9,442.5 413.6,426.6"/><polygon points="370.5,411.4 373.1,406.6 393.8,406.8 395.3,408.3 388.3,421.2"/><polygon points="381.6,434.2 363.1,424.0 366.9,417.1 385.4,427.2"/><polygon points="387.8,247.0 378.4,251.1 376.5,246.8 385.9,242.6"/><polygon points="375.2,243.4 372.7,237.6 381.7,233.6 384.2,239.4"/><polygon points="374.9,252.3 370.6,254.2 364.9,241.3 369.2,239.3"/><polygon points="363.0,238.1 360.4,232.3 366.9,229.4 369.5,235.2"/><polygon points="370.0,228.2 377.9,224.7 380.4,230.3 372.5,233.8"/><polygon points="390.6,219.4 392.1,228.7 384.3,229.9 381.4,223.5"/><polygon points="392.8,232.6 394.6,243.7 391.0,245.3 385.9,233.7"/><polygon points="386.7,206.6 388.8,209.6 389.7,215.2 381.4,218.9 377.8,210.6"/><polygon points="384.1,202.2 384.7,203.1 375.8,207.1 371.7,197.8"/><polygon points="353.0,213.9 349.3,205.6 358.4,201.6 362.1,209.9"/><polygon points="362.0,199.6 367.4,197.2 371.4,206.2 365.9,208.6"/><polygon points="378.0,220.9 369.0,224.9 367.0,220.2 376.0,216.2"/><polygon points="365.5,217.3 363.8,213.3 373.0,209.2 374.7,213.2"/><polygon points="365.4,226.1 359.4,228.7 354.6,217.9 360.6,215.3"/><polygon points="346.0,199.2 340.4,186.6 349.3,189.8"/><polygon points="349.3,201.1 352.8,191.2 363.2,194.9"/><polygon points="315.4,220.6 317.3,222.2 310.0,230.9 308.1,229.3"/><polygon points="301.3,223.0 307.9,215.0 312.6,218.9 305.9,226.8"/><polygon points="303.9,237.5 295.5,230.0 298.9,225.9 307.5,233.1"/><polygon points="314.7,230.6 319.5,224.9 327.5,231.6 317.2,236.2"/><polygon points="307.4,241.3 306.0,240.0 312.0,232.8 314.4,238.2"/><polygon points="310.5,212.2 317.4,203.8 324.2,209.4 313.1,214.3"/><polygon points="319.3,200.8 325.1,193.8 328.5,196.7 322.7,203.6"/><polygon points="330.9,198.9 337.0,204.0 328.2,207.9 325.3,205.6"/><polygon points="327.4,191.5 333.6,184.1 335.8,184.9 338.1,190.2 330.1,193.8"/><polygon points="339.6,193.3 343.2,201.4 340.5,202.6 332.9,196.2"/><polygon points="336.0,227.9 331.7,229.8 324.9,224.1 331.0,216.7"/><polygon points="321.8,221.8 316.2,217.1 329.0,211.4 329.5,212.6"/><polygon points="344.5,204.3 348.3,212.9 343.8,214.9 340.0,206.3"/><polygon points="340.8,216.1 335.8,218.3 332.1,209.9 337.0,207.7"/><polygon points="349.4,216.3 351.5,221.0 339.7,226.3 337.6,221.6"/><polygon points="326.3,257.3 321.4,252.9 328.7,244.7 333.0,254.3"/><polygon points="339.6,268.3 338.6,268.8 329.0,260.2 334.8,257.5"/><polygon points="318.3,250.5 310.4,243.4 317.9,240.1 321.1,247.4"/><polygon points="320.6,238.4 325.7,236.2 327.7,240.7 323.6,245.2"/><polygon points="349.0,263.9 342.8,266.6 338.7,257.3 344.8,254.6"/><polygon points="367.3,256.0 363.1,257.9 358.7,248.1 363.0,246.2"/><polygon points="359.5,259.1 352.6,262.2 348.5,253.0 355.5,250.0"/><polygon points="340.5,230.1 344.9,228.2 349.7,239.2 345.4,241.1"/><polygon points="348.3,226.7 353.2,224.6 358.0,235.5 353.2,237.6"/><polygon points="359.5,239.0 361.3,243.0 348.7,248.6 347.0,244.5"/><polygon points="337.0,254.0 334.7,248.9 343.2,245.1 345.5,250.2"/><polygon points="333.2,246.0 331.7,242.7 340.7,238.7 342.2,242.1"/><polygon points="330.6,239.8 328.6,235.2 337.2,231.4 339.2,236.0"/><polygon points="213.4,467.0 207.6,462.9 214.9,452.7 227.0,461.3 227.2,461.9"/><polygon points="216.7,448.3 221.0,442.2 225.8,454.8"/><polygon points="230.6,479.9 218.1,470.9 229.5,466.6 233.3,476.9"/><polygon points="201.7,440.5 217.3,434.6 218.7,438.3 211.9,447.8"/><polygon points="203.0,459.6 193.3,452.7 192.7,449.2 194.5,443.5 196.0,442.9 208.6,451.9"/><polygon points="247.9,448.9 251.4,456.9 245.5,463.4 235.0,453.7"/><polygon points="242.5,467.2 236.9,473.4 230.4,456.1"/><polygon points="221.7,432.7 238.5,426.4 240.0,429.9 223.4,437.2"/><polygon points="241.5,435.0 245.3,443.8 229.0,450.0 225.9,441.8"/><polygon points="181.5,490.0 178.3,488.1 183.3,476.5 189.3,479.1"/><polygon points="185.7,472.6 191.9,458.3 199.6,463.8 191.5,475.1"/><polygon points="204.6,498.9 189.5,493.8 186.1,491.8 191.4,484.5 206.9,495.6"/><polygon points="194.2,480.0 203.8,466.7 208.9,470.3 199.3,483.7"/><polygon points="213.0,473.5 219.5,478.2 210.2,491.2 203.7,486.5"/><polygon points="227.3,504.5 216.0,502.9 210.0,500.9 216.5,491.7 227.5,499.5"/><polygon points="218.8,487.4 223.8,480.5 228.8,484.1 228.3,494.2"/><polygon points="346.8,382.9 354.6,391.0 337.9,407.2 334.4,405.3"/><polygon points="359.3,396.2 366.5,403.6 358.5,418.2 344.6,410.6"/><polygon points="314.7,393.5 325.2,379.7 340.1,379.4 328.2,401.0"/><polygon points="304.5,406.0 309.5,399.4 331.2,411.4 327.3,418.5"/><polygon points="316.1,438.4 311.6,437.7 303.7,413.8 323.6,424.8"/><polygon points="345.0,444.0 322.8,440.2 328.1,430.8 346.6,441.0"/><polygon points="331.8,425.2 337.4,414.9 355.0,424.6 349.3,434.8"/><polygon points="363.9,262.8 373.6,258.5 380.1,273.3 370.4,277.6"/><polygon points="353.7,266.6 358.5,264.4 365.7,280.5 360.8,282.7"/><polygon points="379.1,298.2 370.1,302.2 363.5,287.4 372.5,283.4"/><polygon points="382.9,278.2 389.9,293.9 384.3,296.4 377.4,280.7"/><polygon points="342.9,271.4 349.2,268.6 355.4,282.7 349.2,285.5"/><polygon points="339.6,275.3 345.2,287.7 337.0,291.4"/><polygon points="352.4,310.4 350.7,311.2 336.4,298.1 336.7,296.6 344.7,293.1"/><polygon points="357.2,287.9 364.7,304.7 357.4,307.9 349.9,291.1"/><polygon points="365.0,325.3 353.5,314.8 359.2,312.3"/><polygon points="365.0,315.4 363.1,311.0 377.4,304.6 379.4,309.1"/><polygon points="385.5,324.2 370.7,326.8 367.6,319.7 380.9,313.9"/><polygon points="399.5,314.4 401.2,318.4 400.3,322.4 390.7,324.1 388.6,319.3"/><polygon points="391.8,298.8 396.9,310.3 387.2,314.6 382.1,303.1"/><polygon points="409.7,275.6 406.1,291.9 394.0,289.2 391.5,283.7"/><polygon points="405.7,297.4 402.7,311.0 395.6,295.1"/><polygon points="397.8,275.0 388.6,279.0 384.6,270.1 393.8,266.0"/><polygon points="408.7,259.6 413.0,263.7 412.0,268.5 402.1,272.8 398.3,264.2"/><polygon points="395.0,247.6 396.4,247.0 406.1,256.1 400.0,258.8"/><polygon points="378.8,255.8 391.3,250.3 395.4,259.7 383.0,265.2"/><polygon points="167.1,399.0 175.8,415.8 170.3,418.7 161.6,401.9"/><polygon points="165.7,421.2 154.9,426.8 150.3,417.9 161.1,412.3"/><polygon points="147.6,414.1 145.3,409.6 157.1,403.4 159.4,407.9"/><polygon points="140.4,399.3 163.3,395.1 143.6,405.4"/><polygon points="127.6,401.7 135.4,400.3 141.3,411.7 134.7,415.2"/><polygon points="122.9,421.2 120.4,415.4 118.0,403.6 122.4,402.8 130.1,417.4"/><polygon points="133.9,421.6 143.4,416.7 149.9,429.1 140.4,434.1"/><polygon points="130.5,439.9 124.5,425.9 129.1,423.5 136.1,437.0"/><polygon points="169.0,447.9 160.1,448.5 158.9,430.4 159.6,430.0"/><polygon points="150.9,448.9 137.7,449.8 133.5,443.9 145.1,437.8"/><polygon points="155.8,448.5 148.8,435.1 154.7,432.0"/><polygon points="169.0,436.5 164.6,428.0 178.2,420.8 182.7,429.3"/><polygon points="189.2,441.6 187.7,446.3 174.5,447.2 171.6,441.5 185.4,434.3"/><polygon points="256.2,450.8 244.2,423.4 250.8,404.8 263.8,407.0"/><polygon points="295.5,450.3 285.9,461.8 263.9,455.7 265.7,445.2"/><polygon points="294.8,412.3 304.1,440.1 301.7,442.9 287.0,440.4 291.9,411.8"/><polygon points="278.7,438.9 267.1,437.0 272.0,408.4 283.6,410.4"/><polygon points="463.5,151.8 481.3,169.6 484.7,174.9 472.2,178.9"/><polygon points="464.8,180.9 442.0,188.2 438.5,177.2 461.3,169.9"/><polygon points="435.9,170.1 433.1,161.4 456.5,153.9 459.3,162.5"/><polygon points="423.8,130.7 440.0,137.0 454.5,146.3 431.2,153.8"/><polygon points="408.3,199.1 400.1,173.5 401.0,171.3 416.9,177.7"/><polygon points="433.0,183.6 435.4,191.1 416.5,197.2 423.5,179.8"/><polygon points="402.1,201.9 392.1,205.1 388.8,200.3 395.9,182.5"/><polygon points="416.3,134.6 424.0,158.8 405.6,164.7 404.4,164.2"/><polygon points="427.6,164.7 431.5,176.8 413.0,169.4"/><polygon points="275.2,466.3 284.8,469.0 288.2,484.5 279.5,486.4"/><polygon points="271.6,477.8 273.8,487.8 260.0,490.9 257.8,480.8"/><polygon points="253.9,462.5 255.5,460.8 268.6,464.4 270.3,472.1 256.6,475.1"/><polygon points="235.2,482.3 249.2,467.1 251.7,478.7"/><polygon points="233.4,496.4 233.8,488.4 252.5,484.4 254.1,491.9"/><polygon points="255.3,506.6 244.9,506.9 232.8,505.2 232.9,502.6 253.5,498.1"/><polygon points="275.7,506.0 275.3,506.0 261.2,506.4 259.2,497.0 273.1,493.9"/><polygon points="292.5,503.1 281.4,505.1 278.7,492.6 289.7,490.2"/><polygon points="455.6,313.2 449.3,320.4 440.9,313.0 447.1,305.8"/><polygon points="437.2,310.0 429.8,303.5 436.3,296.1 443.7,302.6"/><polygon points="453.3,277.5 458.6,282.1 445.4,297.2 440.2,292.6"/><polygon points="462.9,285.3 472.6,293.7 467.1,299.9 457.5,291.5"/><polygon points="464.0,303.6 458.8,309.5 449.1,301.0 454.3,295.1"/><polygon points="447.2,271.0 450.2,273.6 439.9,285.4 436.9,282.8"/><polygon points="435.5,265.1 439.6,265.1 443.5,268.4 433.9,279.4 427.7,274.1"/><polygon points="417.0,265.7 417.3,264.6 430.4,264.5 424.0,271.8"/><polygon points="412.7,285.3 416.2,269.9 421.9,274.9"/><polygon points="424.8,277.5 427.6,280.0 416.7,292.4 413.9,290.0"/><polygon points="430.7,283.4 436.4,288.5 426.3,300.1 420.6,295.0"/><polygon points="410.7,329.1 405.4,323.3 408.1,311.3 423.3,314.7"/><polygon points="409.1,305.4 411.6,294.3 428.6,309.2 428.1,309.7"/><polygon points="427.1,344.8 424.8,344.5 414.9,333.7 421.4,326.4 433.7,337.2"/><polygon points="424.4,321.8 432.7,312.2 438.5,317.3 430.2,326.8"/><polygon points="442.0,320.1 446.5,324.0 437.9,333.9 433.4,329.9"/><polygon points="468.2,341.5 469.8,328.5 475.3,333.3"/><polygon points="488.8,346.9 486.4,352.3 468.5,350.0 468.8,348.0 478.0,337.5"/><polygon points="462.8,349.7 448.2,347.9 449.8,335.2 463.1,346.9"/><polygon points="443.2,347.6 433.0,346.3 445.1,332.4"/><polygon points="450.0,327.9 457.4,319.4 465.3,326.4 463.6,339.7"/><polygon points="500.2,318.6 496.3,331.1 491.6,341.3 484.3,334.9 499.3,317.7"/><polygon points="479.8,331.1 475.6,327.4 490.7,310.2 494.9,313.8"/><polygon points="471.2,324.0 460.8,314.9 466.4,308.4 476.9,317.6"/><polygon points="470.0,304.5 476.3,297.3 486.6,306.3 480.3,313.5"/><polygon points="409.6,365.4 401.3,381.8 384.9,373.5 393.2,357.2"/><polygon points="418.5,348.1 413.4,358.2 396.6,349.8 404.9,333.3"/><polygon points="366.7,340.8 370.3,333.9 397.8,329.2 386.9,351.0"/><polygon points="377.5,369.9 356.8,359.5 362.8,348.1 383.2,358.4"/><polygon points="368.5,394.3 349.1,374.4 353.1,366.9 376.4,378.6"/><polygon points="398.1,389.1 392.9,399.5 374.9,399.3 383.7,381.8"/><polygon points="315.5,158.3 292.1,165.9 305.5,149.9"/><polygon points="315.6,136.8 322.0,156.4 308.6,145.2"/><polygon points="324.4,189.0 319.7,194.6 310.9,187.3 315.6,181.7"/><polygon points="326.3,169.1 330.4,181.5 327.1,185.4 318.6,178.3"/><polygon points="312.1,177.7 307.5,183.3 293.6,171.8 308.6,166.9"/><polygon points="323.9,161.0 324.9,163.9 316.3,174.1 313.2,164.5"/><polygon points="290.0,136.0 292.2,135.1 312.4,129.0 313.0,131.1 301.2,145.3"/><polygon points="290.4,144.5 297.2,150.2 285.2,164.6 278.4,159.0"/><polygon points="264.4,147.5 283.7,138.7 285.9,140.6 273.7,155.2"/><polygon points="261.9,153.1 275.7,164.6 270.4,170.8 256.6,159.4"/><polygon points="267.7,175.2 258.8,186.0 254.3,182.3 263.3,171.5"/><polygon points="250.9,179.0 244.3,173.5 252.8,163.3 259.4,168.8"/><polygon points="234.4,165.0 255.2,152.3 240.4,170.0"/><polygon points="250.7,185.2 255.8,189.4 248.0,198.8 241.1,193.0"/><polygon points="244.8,202.3 237.4,211.2 230.1,202.2 237.4,196.2"/><polygon points="222.5,172.8 229.8,167.0 233.6,170.2 226.9,178.2"/><polygon points="236.4,173.7 246.5,182.1 237.4,189.6 230.4,181.0"/><polygon points="213.7,181.3 219.5,176.7 232.7,192.9 227.1,197.6"/><polygon points="254.5,220.7 241.3,216.9 239.7,215.0 243.0,211.1"/><polygon points="246.9,208.2 254.7,198.9 264.6,207.2 256.8,216.5"/><polygon points="268.8,224.1 259.7,221.5 269.0,210.3 275.7,215.8"/><polygon points="290.9,228.2 285.8,229.2 273.7,225.7 279.5,218.7"/><polygon points="303.5,213.5 294.2,224.6 288.0,219.5 297.3,208.3"/><polygon points="284.1,216.9 280.9,214.3 290.9,202.3 294.1,204.9"/><polygon points="303.8,187.5 309.5,192.2 299.8,203.8 294.2,199.1"/><polygon points="313.3,194.9 316.9,197.9 306.8,210.1 303.2,207.1"/><polygon points="280.1,168.1 289.9,176.2 282.8,184.8 273.0,176.7"/><polygon points="294.1,179.1 300.2,184.3 292.5,193.5 286.4,188.4"/><polygon points="289.1,197.1 277.7,210.8 272.6,206.6 284.0,192.9"/><polygon points="268.5,203.1 258.1,194.4 264.3,187.0 274.7,195.7"/><polygon points="266.7,182.9 269.3,179.8 280.9,189.4 278.2,192.5"/><polygon points="252.9,366.4 273.2,358.5 275.9,365.4 255.5,373.3"/><polygon points="277.8,372.0 282.2,383.2 263.0,390.8 258.6,379.5"/><polygon points="250.1,396.2 241.4,375.9 244.0,370.2 246.9,369.0 256.5,393.7"/><polygon points="290.4,403.7 262.4,398.9 285.0,390.0"/><polygon points="313.0,383.8 297.7,403.8 292.9,391.6"/><polygon points="296.2,350.4 303.4,358.8 286.6,373.2 280.1,356.7"/><polygon points="308.6,364.5 317.3,374.6 290.9,384.9 289.4,381.0"/><polygon points="178.2,353.3 175.5,339.5 183.7,337.9 186.4,351.8"/><polygon points="188.7,336.9 196.3,335.4 199.0,349.5 191.4,350.9"/><polygon points="203.4,373.6 195.5,373.7 195.3,355.4 199.8,354.6"/><polygon points="189.9,373.5 182.3,373.6 179.5,358.6 189.8,356.7"/><polygon points="207.8,366.2 205.6,354.7 219.7,352.0 221.9,363.6"/><polygon points="224.8,374.0 208.4,374.1 207.8,371.5 223.8,368.4"/><polygon points="239.0,365.4 239.4,367.3 236.4,373.9 229.0,374.0 227.8,367.5"/><polygon points="235.4,348.6 237.6,360.9 227.5,362.8 225.2,350.6"/><polygon points="215.0,346.8 204.4,348.9 201.7,334.9 212.3,332.8"/><polygon points="232.4,327.9 233.1,331.5 217.6,334.3 216.9,330.9"/><polygon points="233.3,336.0 234.6,343.5 220.5,346.2 219.0,338.6"/><polygon points="217.2,326.4 204.3,328.8 202.8,320.6 215.6,318.1"/><polygon points="229.9,315.1 231.4,323.9 221.9,325.8 220.2,317.0"/><polygon points="212.1,298.4 212.6,298.3 228.4,309.5 228.6,310.4 215.0,313.1"/><polygon points="199.0,300.1 206.9,299.1 209.7,314.0 202.0,315.5"/><polygon points="181.0,333.7 174.2,335.0 172.0,323.7 178.8,322.4"/><polygon points="197.2,319.5 199.1,329.5 185.7,332.1 183.8,322.1"/><polygon points="169.2,304.2 180.6,302.7 182.4,316.5 171.9,318.5"/><polygon points="186.0,301.6 193.8,300.6 196.4,314.2 187.9,315.9"/><polygon points="395.7,122.2 412.6,125.3 409.1,133.9 393.5,127.7"/><polygon points="407.3,138.9 405.1,144.5 389.1,138.1 391.3,132.5"/><polygon points="402.9,149.3 400.0,156.6 384.4,150.3 387.3,143.1"/><polygon points="374.2,120.7 385.9,120.8 389.7,121.5 384.7,134.1 371.0,128.6"/><polygon points="382.7,139.6 379.3,148.2 365.2,142.5 368.6,133.9"/><polygon points="351.2,120.3 355.3,119.7 369.0,119.8 366.1,126.9 351.0,120.9"/><polygon points="363.6,131.3 360.0,140.4 346.1,134.8 349.8,125.8"/><polygon points="322.8,125.5 323.8,125.2 345.2,121.9 340.9,132.7"/><polygon points="325.1,148.7 323.5,143.6 339.7,138.3 341.0,138.9 335.4,152.9"/><polygon points="330.4,167.9 325.9,154.1 334.5,157.6"/><polygon points="321.3,139.1 318.0,128.9 333.4,135.1"/><polygon points="358.6,146.0 368.3,149.9 363.1,162.8 353.4,158.9"/><polygon points="340.7,154.1 346.1,140.7 353.6,143.7 348.2,157.1"/><polygon points="336.1,180.4 335.1,180.0 332.9,173.5 338.8,158.9 343.9,161.0"/><polygon points="354.1,187.3 340.4,182.4 342.4,177.3 355.9,182.7"/><polygon points="344.9,173.0 348.8,163.2 361.1,168.1 357.2,177.9"/><polygon points="388.4,186.3 383.9,197.6 375.8,194.7 380.0,182.9"/><polygon points="370.9,192.5 359.1,188.3 363.7,176.8 374.9,181.3"/><polygon points="374.5,175.4 365.4,171.7 369.5,161.2 378.7,164.9"/><polygon points="370.8,156.9 373.2,150.9 383.2,154.9 380.8,160.9"/><polygon points="393.6,173.3 390.2,181.7 379.1,177.2 382.5,168.8"/><polygon points="398.5,161.4 395.5,168.9 384.2,164.3 387.1,156.9"/><polygon points="265.6,354.8 243.8,363.4 242.3,354.9 264.9,350.9"/><polygon points="241.0,349.3 239.0,338.2 250.6,336.1 252.6,347.2"/><polygon points="255.4,334.8 262.6,333.5 264.7,345.5 257.5,346.8"/><polygon points="283.7,348.9 270.5,354.1 269.5,348.6 283.2,346.1"/><polygon points="269.5,343.9 267.6,333.1 279.7,331.0 281.6,341.7"/><polygon points="295.8,328.2 294.7,343.7 288.1,346.3 285.2,330.1"/><polygon points="285.1,310.5 297.0,318.5 296.7,322.8 287.6,324.4"/><polygon points="280.7,316.3 282.2,324.7 264.3,327.9 262.8,319.4"/><polygon points="260.1,305.5 273.2,303.1 279.2,307.1 279.8,310.5 261.6,313.7"/><polygon points="233.5,309.8 241.3,308.4 243.5,320.5 235.7,321.8"/><polygon points="246.0,307.7 254.8,306.0 257.0,317.9 248.2,319.5"/><polygon points="257.5,323.2 258.6,329.1 238.1,332.8 237.1,326.8"/><polygon points="150.0,336.7 142.2,338.2 139.0,321.5 146.8,320.0"/><polygon points="165.8,316.3 167.4,325.1 153.8,327.7 152.1,318.9"/><polygon points="169.0,329.6 169.7,333.7 154.9,336.5 154.1,332.4"/><polygon points="132.9,288.6 145.4,294.9 137.2,311.3"/><polygon points="154.6,298.7 163.6,303.2 165.1,311.3 157.3,312.8"/><polygon points="149.7,298.5 152.5,313.6 141.1,315.8"/><polygon points="121.9,316.7 127.4,298.2 128.5,295.7 132.1,314.7"/><polygon points="128.7,320.7 133.3,319.8 137.1,339.5 132.5,340.3"/><polygon points="116.5,343.0 118.6,328.6 120.3,322.7 123.5,322.1 127.1,340.9"/><polygon points="114.0,357.9 115.3,348.7 125.7,346.7 127.4,355.3"/><polygon points="128.5,360.0 129.5,365.5 113.9,368.5 113.8,362.8"/><polygon points="129.8,370.8 131.6,380.2 115.0,383.4 114.7,373.7"/><polygon points="132.7,386.1 134.4,394.9 117.2,398.0 115.4,389.4"/><polygon points="136.6,373.4 135.0,365.3 154.8,361.5 156.4,369.6"/><polygon points="160.7,390.3 151.5,391.9 148.8,377.2 157.9,375.4"/><polygon points="146.4,393.2 139.9,394.4 137.0,379.1 143.5,377.8"/><polygon points="176.5,372.4 177.1,375.7 165.9,388.6 163.3,374.9"/><polygon points="173.6,357.4 175.4,367.1 162.4,369.6 160.5,359.9"/><polygon points="130.9,346.0 140.7,344.1 143.3,357.7 133.5,359.5"/><polygon points="146.4,343.3 158.4,341.0 160.9,354.0 148.9,356.3"/><polygon points="163.6,339.3 170.2,338.1 172.9,352.4 166.4,353.6"/><polygon points="507.1,296.9 506.3,301.9 502.5,313.8 496.7,308.7"/><polygon points="505.4,289.3 493.3,303.2 481.1,292.6 493.3,278.7"/><polygon points="510.3,268.1 510.3,272.3 508.6,282.9 496.9,272.7 505.3,263.1"/><polygon points="475.0,287.4 462.8,276.7 474.6,263.1 486.2,274.5"/><polygon points="456.8,271.7 446.1,262.3 459.8,248.4 469.1,257.6"/><polygon points="489.1,248.1 500.4,259.1 491.5,269.3 479.7,257.7"/><polygon points="464.4,242.9 474.0,233.1 484.4,243.3 474.8,253.1"/><polygon points="509.7,238.9 510.5,243.7 510.4,260.2 499.4,249.4"/><polygon points="504.0,235.0 495.4,243.9 479.5,228.4 488.2,219.5"/><polygon points="501.1,205.1 505.5,216.5 507.6,228.7 492.5,213.9"/><polygon points="278.5,286.3 280.6,274.0 287.4,275.2 285.3,287.4"/><polygon points="291.5,275.6 295.8,276.3 293.6,289.2 289.3,288.5"/><polygon points="299.6,277.2 305.2,278.1 303.0,290.7 297.4,289.7"/><polygon points="293.8,293.2 302.4,294.7 301.2,301.5 289.6,299.5"/><polygon points="300.3,305.6 298.8,314.2 285.8,305.5 287.2,303.3"/><polygon points="282.1,290.2 291.0,291.8 288.9,294.9"/><polygon points="276.0,299.2 277.5,290.9 286.5,296.9 282.2,303.3"/><polygon points="324.9,301.9 316.2,306.6 312.5,299.7"/><polygon points="312.7,308.0 303.3,313.0 305.7,299.0 308.1,299.4"/><polygon points="309.1,278.7 322.0,281.0 321.2,285.7 308.3,283.5"/><polygon points="321.1,289.1 319.6,297.8 315.6,297.1 317.1,288.4"/><polygon points="312.5,296.3 306.1,295.2 307.5,287.1 313.9,288.2"/><polygon points="332.8,293.3 332.0,298.0 329.6,299.3 322.8,298.1 323.9,291.8"/><polygon points="325.8,281.5 334.4,283.0 333.3,289.8 324.6,288.3"/><polygon points="281.0,269.9 282.0,264.4 293.2,266.4 292.3,271.9"/><polygon points="282.3,260.9 282.8,257.6 294.7,259.7 294.2,262.9"/><polygon points="283.9,254.1 285.0,247.6 296.0,249.5 294.9,256.0"/><polygon points="300.2,250.3 315.1,252.9 316.3,254.0 310.3,260.6 300.0,251.3"/><polygon points="304.1,268.7 299.6,273.7 295.5,273.0 296.4,267.4"/><polygon points="307.9,263.8 306.2,265.8 297.4,264.3 298.9,255.7"/><polygon points="306.6,243.8 312.7,249.3 305.8,248.1"/><polygon points="299.6,238.1 304.3,242.3 303.5,247.2 298.1,246.3"/><polygon points="285.2,243.9 285.9,239.9 295.9,241.6 295.2,245.7"/><polygon points="286.4,236.7 287.1,232.9 292.4,231.9 296.9,235.9 296.4,238.4"/><polygon points="328.1,269.8 321.8,276.8 315.2,275.7 316.6,267.8"/><polygon points="319.5,256.5 330.3,266.1 317.1,263.8 318.1,258.0"/><polygon points="333.8,269.2 336.3,271.4 335.0,279.4 326.1,277.9"/><polygon points="311.3,275.3 303.7,274.0 313.4,263.2"/><polygon points="194.6,378.6 203.6,378.5 203.7,388.7 194.7,388.8"/><polygon points="173.0,388.6 181.2,379.1 189.7,379.0 189.8,388.4"/><polygon points="181.7,415.0 170.8,394.1 182.2,394.0 182.4,415.0"/><polygon points="187.4,393.4 203.7,393.3 203.7,398.8 187.4,398.9"/><polygon points="203.2,404.1 203.3,414.7 188.2,414.9 188.1,404.3"/><polygon points="203.6,434.1 193.5,437.8 189.1,429.3 203.5,421.8"/><polygon points="186.1,425.6 183.0,419.7 197.7,419.6"/><polygon points="218.9,428.7 208.9,432.4 208.8,419.6 218.8,419.5"/><polygon points="208.2,415.2 208.2,408.9 219.2,408.8 219.3,415.1"/><polygon points="231.5,423.8 224.0,426.6 223.9,409.4 231.4,409.3"/><polygon points="242.9,408.5 238.2,422.0 236.1,422.8 236.0,408.6"/><polygon points="243.2,395.8 245.1,400.1 243.8,403.8 227.3,403.9 227.2,395.9"/><polygon points="235.9,378.7 240.9,390.3 227.1,390.4 227.0,378.8"/><polygon points="221.7,403.9 209.0,404.0 208.9,392.5 221.6,392.4"/><polygon points="208.5,387.1 208.4,378.7 221.8,378.6 221.9,387.0"/><polygon points="155.9,470.7 146.5,462.1 141.5,455.0 154.8,454.1"/><polygon points="187.3,452.3 187.6,453.9 183.5,463.3 161.9,453.9"/><polygon points="162.0,477.1 161.3,476.4 160.1,459.0 168.3,462.5"/><polygon points="181.2,468.9 174.4,484.7 166.3,480.0 172.8,465.2"/></g><g fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M190.1,249.5 L226.8,257.0 L251.3,265.7" stroke="#1a0a2a" stroke-width="3.4"/><path d="M251.3,265.7 L279.8,265.8 L303.8,277.2" stroke="#1a0a2a" stroke-width="3.4"/><path d="M251.3,265.7 L252.3,304.0 L264.1,330.6" stroke="#1a0a2a" stroke-width="3.4"/><path d="M264.1,330.6 L269.4,356.6 L280.6,378.9" stroke="#1a0a2a" stroke-width="3.4"/><path d="M280.6,378.9 L273.0,404.3 L273.8,432.0" stroke="#1a0a2a" stroke-width="3.4"/><path d="M273.8,432.0 L247.1,440.5 L224.3,452.0" stroke="#1a0a2a" stroke-width="3.4"/><path d="M224.3,452.0 L210.9,468.7 L204.5,484.2" stroke="#1a0a2a" stroke-width="3.4"/><path d="M204.5,484.2 L183.3,471.6 L167.0,464.3" stroke="#1a0a2a" stroke-width="3.4"/><path d="M167.0,464.3 L163.1,450.8 L152.8,424.0" stroke="#1a0a2a" stroke-width="3.4"/><path d="M224.3,452.0 L215.9,432.4 L208.3,403.6" stroke="#1a0a2a" stroke-width="3.4"/><path d="M224.3,452.0 L242.7,470.3 L262.3,487.2" stroke="#1a0a2a" stroke-width="3.4"/><path d="M264.1,330.6 L236.1,337.7 L204.1,337.5" stroke="#1a0a2a" stroke-width="3.4"/><path d="M262.3,487.2 L291.7,485.9 L322.2,472.3" stroke="#1a0a2a" stroke-width="3.4"/><path d="M280.6,378.9 L310.6,392.1 L333.3,411.2" stroke="#1a0a2a" stroke-width="3.4"/><path d="M333.3,411.2 L358.8,425.2 L383.2,438.5" stroke="#1a0a2a" stroke-width="3.4"/><path d="M204.1,337.5 L172.8,339.1 L143.0,348.1" stroke="#1a0a2a" stroke-width="3.4"/><path d="M280.6,378.9 L310.3,360.7 L330.2,338.1" stroke="#1a0a2a" stroke-width="3.4"/><path d="M330.2,338.1 L355.8,352.7 L383.9,363.4" stroke="#1a0a2a" stroke-width="3.4"/><path d="M383.9,363.4 L409.3,375.3 L437.9,385.3" stroke="#1a0a2a" stroke-width="3.4"/><path d="M303.8,277.2 L315.6,250.5 L347.8,226.4" stroke="#1a0a2a" stroke-width="3.4"/><path d="M330.2,338.1 L350.6,314.6 L376.8,288.5" stroke="#1a0a2a" stroke-width="3.4"/><path d="M437.9,385.3 L455.8,351.5 L449.0,312.9" stroke="#1a0a2a" stroke-width="3.4"/><path d="M449.0,312.9 L472.1,290.1 L486.8,259.4" stroke="#1a0a2a" stroke-width="3.4"/><path d="M486.8,259.4 L471.4,231.0 L442.9,220.1" stroke="#1a0a2a" stroke-width="3.4"/><path d="M442.9,220.1 L440.6,192.8 L432.5,168.0" stroke="#1a0a2a" stroke-width="3.4"/><path d="M432.5,168.0 L400.8,162.0 L365.0,152.0" stroke="#1a0a2a" stroke-width="3.4"/><path d="M347.8,226.4 L312.9,206.1 L277.3,180.6" stroke="#1a0a2a" stroke-width="3.4"/><path d="M322.2,472.3 L327.7,444.2 L333.3,411.2" stroke="#1a0a2a" stroke-width="3.4"/><path d="M437.9,385.3 L411.5,419.3 L383.2,438.5" stroke="#1a0a2a" stroke-width="3.4"/><path d="M376.8,288.5 L384.8,327.2 L383.9,363.4" stroke="#1a0a2a" stroke-width="3.4"/><path d="M152.8,424.0 L179.3,416.7 L208.3,403.6" stroke="#1a0a2a" stroke-width="3.4"/><path d="M449.0,312.9 L412.7,335.8 L383.9,363.4" stroke="#1a0a2a" stroke-width="3.4"/><path d="M280.6,378.9 L239.6,371.7 L204.1,337.5" stroke="#1a0a2a" stroke-width="3.4"/><path d="M330.2,338.1 L124.8,297.3" stroke="#1a0a2a" stroke-width="4.8"/><path d="M330.2,338.1 L465.1,148.1" stroke="#1a0a2a" stroke-width="4.8"/><path d="M330.2,338.1 L368.5,478.8" stroke="#1a0a2a" stroke-width="4.8"/><path d="M190.1,249.5 L226.8,257.0 L251.3,265.7" stroke="#ff2bd6" stroke-width="1.8"/><path d="M251.3,265.7 L279.8,265.8 L303.8,277.2" stroke="#ff2bd6" stroke-width="1.8"/><path d="M251.3,265.7 L252.3,304.0 L264.1,330.6" stroke="#ff2bd6" stroke-width="1.8"/><path d="M264.1,330.6 L269.4,356.6 L280.6,378.9" stroke="#ff2bd6" stroke-width="1.8"/><path d="M280.6,378.9 L273.0,404.3 L273.8,432.0" stroke="#ff2bd6" stroke-width="1.8"/><path d="M273.8,432.0 L247.1,440.5 L224.3,452.0" stroke="#ff2bd6" stroke-width="1.8"/><path d="M224.3,452.0 L210.9,468.7 L204.5,484.2" stroke="#ff2bd6" stroke-width="1.8"/><path d="M204.5,484.2 L183.3,471.6 L167.0,464.3" stroke="#ff2bd6" stroke-width="1.8"/><path d="M167.0,464.3 L163.1,450.8 L152.8,424.0" stroke="#ff2bd6" stroke-width="1.8"/><path d="M224.3,452.0 L215.9,432.4 L208.3,403.6" stroke="#ff2bd6" stroke-width="1.8"/><path d="M224.3,452.0 L242.7,470.3 L262.3,487.2" stroke="#ff2bd6" stroke-width="1.8"/><path d="M264.1,330.6 L236.1,337.7 L204.1,337.5" stroke="#ff2bd6" stroke-width="1.8"/><path d="M262.3,487.2 L291.7,485.9 L322.2,472.3" stroke="#ff2bd6" stroke-width="1.8"/><path d="M280.6,378.9 L310.6,392.1 L333.3,411.2" stroke="#ff2bd6" stroke-width="1.8"/><path d="M333.3,411.2 L358.8,425.2 L383.2,438.5" stroke="#ff2bd6" stroke-width="1.8"/><path d="M204.1,337.5 L172.8,339.1 L143.0,348.1" stroke="#ff2bd6" stroke-width="1.8"/><path d="M280.6,378.9 L310.3,360.7 L330.2,338.1" stroke="#ff2bd6" stroke-width="1.8"/><path d="M330.2,338.1 L355.8,352.7 L383.9,363.4" stroke="#ff2bd6" stroke-width="1.8"/><path d="M383.9,363.4 L409.3,375.3 L437.9,385.3" stroke="#ff2bd6" stroke-width="1.8"/><path d="M303.8,277.2 L315.6,250.5 L347.8,226.4" stroke="#ff2bd6" stroke-width="1.8"/><path d="M330.2,338.1 L350.6,314.6 L376.8,288.5" stroke="#ff2bd6" stroke-width="1.8"/><path d="M437.9,385.3 L455.8,351.5 L449.0,312.9" stroke="#ff2bd6" stroke-width="1.8"/><path d="M449.0,312.9 L472.1,290.1 L486.8,259.4" stroke="#ff2bd6" stroke-width="1.8"/><path d="M486.8,259.4 L471.4,231.0 L442.9,220.1" stroke="#ff2bd6" stroke-width="1.8"/><path d="M442.9,220.1 L440.6,192.8 L432.5,168.0" stroke="#ff2bd6" stroke-width="1.8"/><path d="M432.5,168.0 L400.8,162.0 L365.0,152.0" stroke="#ff2bd6" stroke-width="1.8"/><path d="M347.8,226.4 L312.9,206.1 L277.3,180.6" stroke="#ff2bd6" stroke-width="1.8"/><path d="M322.2,472.3 L327.7,444.2 L333.3,411.2" stroke="#ff2bd6" stroke-width="1.8"/><path d="M437.9,385.3 L411.5,419.3 L383.2,438.5" stroke="#ff2bd6" stroke-width="1.8"/><path d="M376.8,288.5 L384.8,327.2 L383.9,363.4" stroke="#ff2bd6" stroke-width="1.8"/><path d="M152.8,424.0 L179.3,416.7 L208.3,403.6" stroke="#ff2bd6" stroke-width="1.8"/><path d="M449.0,312.9 L412.7,335.8 L383.9,363.4" stroke="#ff2bd6" stroke-width="1.8"/><path d="M280.6,378.9 L239.6,371.7 L204.1,337.5" stroke="#ff2bd6" stroke-width="1.8"/><path d="M330.2,338.1 L124.8,297.3" stroke="#ff2bd6" stroke-width="3.2"/><path d="M330.2,338.1 L465.1,148.1" stroke="#ff2bd6" stroke-width="3.2"/><path d="M330.2,338.1 L368.5,478.8" stroke="#ff2bd6" stroke-width="3.2"/></g><path d="M111.4,358.6 L115.7,328.0 M115.7,328.0 L122.2,306.0 M128.6,289.0 L138.4,267.1 M138.4,267.1 L156.2,238.1 M156.2,238.1 L177.7,210.9 M177.7,210.9 L202.5,186.2 M202.5,186.2 L230.1,164.5 M230.1,164.5 L259.9,146.3 M259.9,146.3 L291.1,132.1 M291.1,132.1 L323.1,122.4 M323.1,122.4 L355.1,117.5 M355.1,117.5 L386.1,117.7 M386.1,117.7 L415.4,123.0 M415.4,123.0 L441.9,133.2 M441.9,133.2 L457.4,143.2 M471.5,154.6 L484.2,167.3 M484.2,167.3 L498.7,190.0 M498.7,190.0 L508.5,215.6 M508.5,215.6 L513.3,243.4 M513.3,243.4 L513.2,272.6 M513.2,272.6 L508.4,302.4 M508.4,302.4 L499.1,332.2 M499.1,332.2 L485.6,361.3 M485.6,361.3 L468.3,389.2 M468.3,389.2 L447.5,415.5 M447.5,415.5 L423.7,439.5 M423.7,439.5 L397.2,460.7 M397.2,460.7 L376.2,474.0 M360.3,482.7 L338.3,493.2 M338.3,493.2 L307.0,503.4 M307.0,503.4 L275.6,509.0 M275.6,509.0 L244.8,509.8 M244.8,509.8 L215.4,505.6 M215.4,505.6 L188.4,496.4 M188.4,496.4 L164.5,482.4 M164.5,482.4 L144.4,464.0 M144.4,464.0 L128.8,441.7 M128.8,441.7 L117.9,416.2 M117.9,416.2 L112.1,388.2 M112.1,388.2 L111.4,358.6" fill="none" stroke="#00343f" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><g fill="#00343f" stroke="#00e5ff" stroke-width="0.6"><circle cx="111.4" cy="358.6" r="2.6"/><circle cx="115.7" cy="328.0" r="2.6"/><circle cx="124.8" cy="297.3" r="2.6"/><circle cx="138.4" cy="267.1" r="2.6"/><circle cx="156.2" cy="238.1" r="2.6"/><circle cx="177.7" cy="210.9" r="2.6"/><circle cx="202.5" cy="186.2" r="2.6"/><circle cx="230.1" cy="164.5" r="2.6"/><circle cx="259.9" cy="146.3" r="2.6"/><circle cx="291.1" cy="132.1" r="2.6"/><circle cx="323.1" cy="122.4" r="2.6"/><circle cx="355.1" cy="117.5" r="2.6"/><circle cx="386.1" cy="117.7" r="2.6"/><circle cx="415.4" cy="123.0" r="2.6"/><circle cx="441.9" cy="133.2" r="2.6"/><circle cx="465.1" cy="148.1" r="2.6"/><circle cx="484.2" cy="167.3" r="2.6"/><circle cx="498.7" cy="190.0" r="2.6"/><circle cx="508.5" cy="215.6" r="2.6"/><circle cx="513.3" cy="243.4" r="2.6"/><circle cx="513.2" cy="272.6" r="2.6"/><circle cx="508.4" cy="302.4" r="2.6"/><circle cx="499.1" cy="332.2" r="2.6"/><circle cx="485.6" cy="361.3" r="2.6"/><circle cx="468.3" cy="389.2" r="2.6"/><circle cx="447.5" cy="415.5" r="2.6"/><circle cx="423.7" cy="439.5" r="2.6"/><circle cx="397.2" cy="460.7" r="2.6"/><circle cx="368.5" cy="478.8" r="2.6"/><circle cx="338.3" cy="493.2" r="2.6"/><circle cx="307.0" cy="503.4" r="2.6"/><circle cx="275.6" cy="509.0" r="2.6"/><circle cx="244.8" cy="509.8" r="2.6"/><circle cx="215.4" cy="505.6" r="2.6"/><circle cx="188.4" cy="496.4" r="2.6"/><circle cx="164.5" cy="482.4" r="2.6"/><circle cx="144.4" cy="464.0" r="2.6"/><circle cx="128.8" cy="441.7" r="2.6"/><circle cx="117.9" cy="416.2" r="2.6"/><circle cx="112.1" cy="388.2" r="2.6"/></g><g fill="#00343f" stroke="#00e5ff" stroke-width="0.8"><rect x="121.8" y="294.3" width="6.0" height="6.0"/><rect x="462.1" y="145.1" width="6.0" height="6.0"/><rect x="365.5" y="475.8" width="6.0" height="6.0"/></g><g font-family="Georgia, serif" font-size="8" text-anchor="middle"><text x="190.1" y="252.5" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="322.2" y="475.3" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="442.9" y="223.1" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="251.3" y="268.7" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Noble</text><text x="437.9" y="388.3" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="383.2" y="441.5" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Garrison</text><text x="347.8" y="229.4" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Slums</text><text x="224.3" y="455.0" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="330.2" y="341.1" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Market</text><text x="204.5" y="487.2" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="333.3" y="414.2" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Garrison</text><text x="376.8" y="291.5" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="152.8" y="427.0" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="273.8" y="435.0" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Noble</text><text x="432.5" y="171.0" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Garrison</text><text x="262.3" y="490.2" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Temple</text><text x="449.0" y="315.9" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="383.9" y="366.4" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Noble</text><text x="277.3" y="183.6" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="280.6" y="381.9" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Garrison</text><text x="204.1" y="340.5" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Temple</text><text x="365.0" y="155.0" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Residential</text><text x="264.1" y="333.6" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="143.0" y="351.1" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="486.8" y="262.4" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Garrison</text><text x="303.8" y="280.2" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Slums</text><text x="208.3" y="406.6" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text><text x="167.0" y="467.3" stroke="#05060a" stroke-width="2.5" paint-order="stroke" fill="#aef7ff">Craftsmen</text></g><text x="315.0" y="20" text-anchor="middle" font-family="Georgia, serif" font-size="16" font-weight="bold" stroke="#05060a" stroke-width="3" paint-order="stroke" fill="#aef7ff">Caldwingate</text></svg>