Compare commits
2 Commits
push-only-
...
main
| Author | SHA1 | Date |
|---|---|---|
|
|
ec76d53a95 | |
|
|
fa63cadc93 |
|
|
@ -0,0 +1,151 @@
|
||||||
|
[Caching]
|
||||||
|
|
||||||
|
## Enable/disable assembly metadata cache
|
||||||
|
## Enabling this will speed up discovery of plugins and patchers by caching the metadata of all types BepInEx discovers.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
EnableAssemblyCache = true
|
||||||
|
|
||||||
|
[Chainloader]
|
||||||
|
|
||||||
|
## If enabled, hides BepInEx Manager GameObject from Unity.
|
||||||
|
## This can fix loading issues in some games that attempt to prevent BepInEx from being loaded.
|
||||||
|
## Use this only if you know what this option means, as it can affect functionality of some older plugins.
|
||||||
|
##
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
HideManagerGameObject = true
|
||||||
|
|
||||||
|
[Harmony.Logger]
|
||||||
|
|
||||||
|
## Specifies which Harmony log channels to listen to.
|
||||||
|
## NOTE: IL channel dumps the whole patch methods, use only when needed!
|
||||||
|
# Setting type: LogChannel
|
||||||
|
# Default value: Warn, Error
|
||||||
|
# Acceptable values: None, Info, IL, Warn, Error, Debug, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
LogChannels = Warn, Error
|
||||||
|
|
||||||
|
[Logging]
|
||||||
|
|
||||||
|
## Enables showing unity log messages in the BepInEx logging system.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
UnityLogListening = true
|
||||||
|
|
||||||
|
## If enabled, writes Standard Output messages to Unity log
|
||||||
|
## NOTE: By default, Unity does so automatically. Only use this option if no console messages are visible in Unity log
|
||||||
|
##
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
LogConsoleToUnityLog = false
|
||||||
|
|
||||||
|
[Logging.Console]
|
||||||
|
|
||||||
|
## Enables showing a console for log output.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enabled = false
|
||||||
|
|
||||||
|
## If enabled, will prevent closing the console (either by deleting the close button or in other platform-specific way).
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
PreventClose = false
|
||||||
|
|
||||||
|
## If true, console is set to the Shift-JIS encoding, otherwise UTF-8 encoding.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
ShiftJisEncoding = false
|
||||||
|
|
||||||
|
## Hints console manager on what handle to assign as StandardOut. Possible values:
|
||||||
|
## Auto - lets BepInEx decide how to redirect console output
|
||||||
|
## ConsoleOut - prefer redirecting to console output; if possible, closes original standard output
|
||||||
|
## StandardOut - prefer redirecting to standard output; if possible, closes console out
|
||||||
|
##
|
||||||
|
# Setting type: ConsoleOutRedirectType
|
||||||
|
# Default value: Auto
|
||||||
|
# Acceptable values: Auto, ConsoleOut, StandardOut
|
||||||
|
StandardOutType = Auto
|
||||||
|
|
||||||
|
## Which log levels to show in the console output.
|
||||||
|
# Setting type: LogLevel
|
||||||
|
# Default value: Fatal, Error, Warning, Message, Info
|
||||||
|
# Acceptable values: None, Fatal, Error, Warning, Message, Info, Debug, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
LogLevels = Fatal, Error, Warning, Message, Info
|
||||||
|
|
||||||
|
[Logging.Disk]
|
||||||
|
|
||||||
|
## Include unity log messages in log file output.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
WriteUnityLog = false
|
||||||
|
|
||||||
|
## Appends to the log file instead of overwriting, on game startup.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
AppendLog = false
|
||||||
|
|
||||||
|
## Enables writing log messages to disk.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enabled = true
|
||||||
|
|
||||||
|
## Which log leves are saved to the disk log output.
|
||||||
|
# Setting type: LogLevel
|
||||||
|
# Default value: Fatal, Error, Warning, Message, Info
|
||||||
|
# Acceptable values: None, Fatal, Error, Warning, Message, Info, Debug, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
LogLevels = Fatal, Error, Warning, Message, Info
|
||||||
|
|
||||||
|
[Preloader]
|
||||||
|
|
||||||
|
## Enables or disables runtime patches.
|
||||||
|
## This should always be true, unless you cannot start the game due to a Harmony related issue (such as running .NET Standard runtime) or you know what you're doing.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
ApplyRuntimePatches = true
|
||||||
|
|
||||||
|
## Specifies which MonoMod backend to use for Harmony patches. Auto uses the best available backend.
|
||||||
|
## This setting should only be used for development purposes (e.g. debugging in dnSpy). Other code might override this setting.
|
||||||
|
# Setting type: MonoModBackend
|
||||||
|
# Default value: auto
|
||||||
|
# Acceptable values: auto, dynamicmethod, methodbuilder, cecil
|
||||||
|
HarmonyBackend = auto
|
||||||
|
|
||||||
|
## If enabled, BepInEx will save patched assemblies into BepInEx/DumpedAssemblies.
|
||||||
|
## This can be used by developers to inspect and debug preloader patchers.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
DumpAssemblies = false
|
||||||
|
|
||||||
|
## If enabled, BepInEx will load patched assemblies from BepInEx/DumpedAssemblies instead of memory.
|
||||||
|
## This can be used to be able to load patched assemblies into debuggers like dnSpy.
|
||||||
|
## If set to true, will override DumpAssemblies.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
LoadDumpedAssemblies = false
|
||||||
|
|
||||||
|
## If enabled, BepInEx will call Debugger.Break() once before loading patched assemblies.
|
||||||
|
## This can be used with debuggers like dnSpy to install breakpoints into patched assemblies before they are loaded.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
BreakBeforeLoadAssemblies = false
|
||||||
|
|
||||||
|
[Preloader.Entrypoint]
|
||||||
|
|
||||||
|
## The local filename of the assembly to target.
|
||||||
|
# Setting type: String
|
||||||
|
# Default value: UnityEngine.CoreModule.dll
|
||||||
|
Assembly = UnityEngine.CoreModule.dll
|
||||||
|
|
||||||
|
## The name of the type in the entrypoint assembly to search for the entrypoint method.
|
||||||
|
# Setting type: String
|
||||||
|
# Default value: Application
|
||||||
|
Type = Application
|
||||||
|
|
||||||
|
## The name of the method in the specified entrypoint assembly and type to hook and load Chainloader from.
|
||||||
|
# Setting type: String
|
||||||
|
# Default value: .cctor
|
||||||
|
Method = .cctor
|
||||||
|
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
## Settings file was created by plugin Tyfon.AutoDeposit v5.0.0
|
||||||
|
## Plugin GUID: Tyfon.AutoDeposit
|
||||||
|
|
||||||
|
[1. Buttons]
|
||||||
|
|
||||||
|
## Whether to show the autodeposit button on your rig
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Rig = true
|
||||||
|
|
||||||
|
## Whether to show the autodeposit button on your pockets
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Pockets = true
|
||||||
|
|
||||||
|
## Whether to show the autodeposit button on your backpack
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Backpack = true
|
||||||
|
|
||||||
|
## Whether to show the autodeposit button on your secure container
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Secure Container = true
|
||||||
|
|
||||||
|
## Whether to show the autodeposit button on the transfer screen
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Transfer Screen = true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,643 @@
|
||||||
|
## Settings file was created by plugin Tyfon.UIFixes v5.2.0
|
||||||
|
## Plugin GUID: Tyfon.UIFixes
|
||||||
|
|
||||||
|
[A. Interface]
|
||||||
|
|
||||||
|
## After receiving items from a transfer, reopen the messages window where you left off
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Keep Messages Window Open = true
|
||||||
|
|
||||||
|
## Auto-select matching items when turning in quest items. Like pushing the AUTO button for you.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Autofill Quest Item Turn-ins = true
|
||||||
|
|
||||||
|
## Open context menu sub-menu to the right, as BSG intended but failed to do
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Context Menu Flyout on Right = true
|
||||||
|
|
||||||
|
## Allow the context menu to work while searching
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Allow Context Menu While Searching = true
|
||||||
|
|
||||||
|
## Keybinds with display names longer than 2 characters will be shortened to '...' with a hover tooltip
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Hide Long Quickbar Keybinds = true
|
||||||
|
|
||||||
|
## The client waits this long to batch inventory operations before sending them to the server. Vanilla Tarkov is 60 (!)
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 15
|
||||||
|
# Acceptable value range: From 0 to 60
|
||||||
|
Server Operation Queue Time = 15
|
||||||
|
|
||||||
|
## Constrain dragging to the left mouse, when shift is not down. Leave this setting enabled to minimize conflicts with the multiselect box.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Limit Nonstandard Drags = true
|
||||||
|
|
||||||
|
## In scroll views that load content dynamically, scroll down as the content loads to restore old scroll position
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Restore Async Scroll Positions = true
|
||||||
|
|
||||||
|
## Clear the default mag preset name and improve the mag preset UI. Disable this to restore the wonky default UI.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Remove Default Mag Preset Name = true
|
||||||
|
|
||||||
|
## For some reason vanilla EFT shows the Load From Preset context menu on bullets. It serves no purpose
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Mag Presets Context Menu on Bullets = false
|
||||||
|
|
||||||
|
[B. Dialogs]
|
||||||
|
|
||||||
|
## When to show a confirmation dialog when you leave and/or close an unsaved weapon preset
|
||||||
|
# Setting type: WeaponPresetConfirmationOption
|
||||||
|
# Default value: OnClose
|
||||||
|
# Acceptable values: Never, OnClose, Always
|
||||||
|
Show Weapon Preset Confirmation Dialog = OnClose
|
||||||
|
|
||||||
|
## Save weapon presets without being prompted to confirm the name of the preset. Save As will prompt as normal.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
One Click Save Weapon Presets = true
|
||||||
|
|
||||||
|
## Shows the built-in stock presets from the list of available build presets
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Stock Weapon Presets = true
|
||||||
|
|
||||||
|
## When to show the confirmation dialog when you close the item transfer screen without taking all the items
|
||||||
|
# Setting type: TransferConfirmationOption
|
||||||
|
# Default value: Never
|
||||||
|
# Acceptable values: Never, Always
|
||||||
|
Show Transfer Items Confirmation Dialog = Never
|
||||||
|
|
||||||
|
## Clicking outside of a popup dialog will close the dialog
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Click Outside of Dialogs to Close = true
|
||||||
|
|
||||||
|
[C. Gameplay]
|
||||||
|
|
||||||
|
## Certain actions will occur as soon as the current action is complete when holding the button. Works for Aim, Reload, and Sprint. Requires that they are set to Press or Continuous (or Toggle/Hold is enabled)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Queue Held Inputs = true
|
||||||
|
|
||||||
|
## Tap the aim key to toggle aiming, or hold the key for continuous aiming
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Toggle/Hold Aiming = false
|
||||||
|
|
||||||
|
## Tap the interact key to begin interacting, and tap again to stop, or hold the key for continuous interaction
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Toggle/Hold Interaction = false
|
||||||
|
|
||||||
|
## Tap the sprint key to toggle sprinting, or hold the key for continuous sprinting
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Toggle/Hold Sprint = false
|
||||||
|
|
||||||
|
## Tap the tactical device key to toggle your tactical device, or hold the key for continuous. Note that this will override Tarkov's new 'Tactical device activation mode'
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Toggle/Hold Tactical Device = false
|
||||||
|
|
||||||
|
## Tap the headlight key to toggle your headlight, or hold the key for continuous
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Toggle/Hold Headlight = false
|
||||||
|
|
||||||
|
## Tap the goggles key to toggle night vision/goggles/faceshield, or hold the key for continuous
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Toggle/Hold Goggles = false
|
||||||
|
|
||||||
|
## Prevent mousewheel actions in the inventory from affecting your scope zoom
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Prevent Scope Zoom in Inventory = true
|
||||||
|
|
||||||
|
## Fix for variable scope bug that spams errors and eventually bricks your raid. Only enabled when Fika is NOT present, since Fika has the same fix.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Variable Scope Fix (requires restart) = true
|
||||||
|
|
||||||
|
## Enable the modification of equipped weapons, including vital parts, out of raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Modify Equipped Weapons = true
|
||||||
|
|
||||||
|
## When to enable the modification of vital parts of unequipped weapons, in raid
|
||||||
|
# Setting type: ModRaidWeapon
|
||||||
|
# Default value: Never
|
||||||
|
# Acceptable values: Never, WithTool, Always
|
||||||
|
Modify Weapons In Raid = Never
|
||||||
|
|
||||||
|
## Allow armor plates to be removed and inserted on equipped armor, in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Modify Equipped Armor Plates In Raid = false
|
||||||
|
|
||||||
|
## Hides actions you can't actually do, like "Bang and Clear", etc from locked doors
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Hide Unimplemented Door Actions = true
|
||||||
|
|
||||||
|
## Allows ammo to be loaded through the magazine context menu while in a raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Load Ammo Context Menu = true
|
||||||
|
|
||||||
|
## After throwing a grenade that had a quickbind, move the quickbind to another grenade of the same type, if you have one
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Quickbind Matching Grenade After Throw = true
|
||||||
|
|
||||||
|
## After finish a med, food, or drink item that had a quickbind, move the quickbind to another item of the same type, if you have one
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Quickbind Matching Consumable After Use = true
|
||||||
|
|
||||||
|
[D. Mouse]
|
||||||
|
|
||||||
|
## Unlock cursor in Windowed, Maximized Windowed, and FullScreen Windowed modes. Note that you must alt-tab out of the game and back in for this to take effect.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Unlock Cursor = true
|
||||||
|
|
||||||
|
## How many rows to scroll with the mousewheel
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 1 to 10
|
||||||
|
Mousewheel Scrolling Speed = 1
|
||||||
|
|
||||||
|
## Whether to use a separate mousewheel scroll speed in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Different Scrolling Speed in Raid = false
|
||||||
|
|
||||||
|
## A separate mousewheel scroll speed for in raid
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 1 to 10
|
||||||
|
Mousewheel Scrolling Speed in Raid = 1
|
||||||
|
|
||||||
|
[E. Interface Keybinds]
|
||||||
|
|
||||||
|
## Use the Home and End keys to scroll to the top and bottom of inventories
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Home/End Keys = true
|
||||||
|
|
||||||
|
## Change PageUp and PageDown to scroll up and down one page
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Rebind PageUp/PageDown (requires restart) = true
|
||||||
|
|
||||||
|
## Keybind to highlight the search box in hideout crafting, handbook, and flea market
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: F + LeftControl
|
||||||
|
Highlight Search Box = F + LeftControl
|
||||||
|
|
||||||
|
## When using a textbox, prevent keybinds bound to alphanumeric keys from firing
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Block Keybinds While Typing = true
|
||||||
|
|
||||||
|
[F. Item Keybinds]
|
||||||
|
|
||||||
|
## Keybind to inspect an item
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: I
|
||||||
|
Inspect Shortcut = I
|
||||||
|
|
||||||
|
## Keybind to open a container
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: O
|
||||||
|
Open Shortcut = O
|
||||||
|
|
||||||
|
## Keybind to examine an item, fold it, unfold it, turn it on, turn it off, or check a magazine
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Examine/Interact Shortcut =
|
||||||
|
|
||||||
|
## Keybind to top up an ammo stack
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: T
|
||||||
|
Top Up Ammo Shortcut = T
|
||||||
|
|
||||||
|
## Keybind to use an item, such a consumable
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Use Item Shortcut =
|
||||||
|
|
||||||
|
## Keybind to use all of an item, such a consumable. This will still work on items that don't have 'Use All', just 'Use', in their context menu.
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Use Item (All) Shortcut =
|
||||||
|
|
||||||
|
## Keybind to reload a weapon. Note that this is solely in the menus, and doesn't affect the normal reload key.
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: R
|
||||||
|
Reload Weapon Shortcut = R
|
||||||
|
|
||||||
|
## Keybind to unload the ammo in a magazine, or a magazine in a gun
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: U
|
||||||
|
Unload Mag/Ammo Shortcut = U
|
||||||
|
|
||||||
|
## Keybind to install an attachment on currently equipped weapon
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Install Mod Shortcut =
|
||||||
|
|
||||||
|
## Keybind to uninstall an attachment
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Uninstall Mod Shortcut =
|
||||||
|
|
||||||
|
## Keybind to unpack a sealed weapons case, etc
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Unpack Shortcut =
|
||||||
|
|
||||||
|
## Keybind to search flea market for this item
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: F
|
||||||
|
Filter by Item Shortcut = F
|
||||||
|
|
||||||
|
## Keybind to search flea market for items linked to this item
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Linked Search Shortcut =
|
||||||
|
|
||||||
|
## Keybind to search flea market for items to barter for this item
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Required Search Shortcut =
|
||||||
|
|
||||||
|
## Keybind to list item on the flea market
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Add Offer Shortcut =
|
||||||
|
|
||||||
|
## Keybind to pin an item (not moved during sort)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Pin Item Shortcut =
|
||||||
|
|
||||||
|
## Keybind to lock an item (cannot be moved, used, modified, sold, turned in, or discarded)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Lock Item Shortcut =
|
||||||
|
|
||||||
|
## Keybind to select all items of the same type in the current container (requires Multiselect)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: A + LeftControl
|
||||||
|
Select All of Type = A + LeftControl
|
||||||
|
|
||||||
|
## Keybind to transfer items to and from the sorting table. Will auto-open sorting table if necessary.
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: None
|
||||||
|
Transfer to/from Sorting Table =
|
||||||
|
|
||||||
|
## This setting lets you enable/disable the default Tarkov behavior of shift-clicking items to transfer them to the sorting table.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Shift-Click to Sorting Table = true
|
||||||
|
|
||||||
|
## In order for keybinds to work and not get mixed up with textboxes, key presses while mousing over an item will not be sent to the currently focused textbox
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Block Text Inputs on Item Mouseover = true
|
||||||
|
|
||||||
|
[G. Gameplay Keybinds]
|
||||||
|
|
||||||
|
## Holding this modifer when activating a quickbound tactical device will switch its active mode
|
||||||
|
# Setting type: ModifierKey
|
||||||
|
# Default value: Shift
|
||||||
|
# Acceptable values: None, Shift, Control, Alt
|
||||||
|
Change Quickbound Tactical Mode = Shift
|
||||||
|
|
||||||
|
[H. Multiselect]
|
||||||
|
|
||||||
|
## Enable multiselect via Shift-click and drag-to-select. This cannot be used together with Auto-open Sorting Table
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Multiselect = true
|
||||||
|
|
||||||
|
## Enable multiselect functionality in raid.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Multiselect In Raid = true
|
||||||
|
|
||||||
|
## Add items to the selection by shift-clicking them. If you disable this, the only way to multiselect is with the selection box
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Multiselect with Shift-Click = true
|
||||||
|
|
||||||
|
## Mouse button or keyboard key to hold while dragging to create a selection box. Press Reset to use Mouse0 (left mouse button)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Mouse0
|
||||||
|
Selection Box Key = Mouse0
|
||||||
|
|
||||||
|
## Controls where multiselected items are placed, relative to the item being dragged
|
||||||
|
# Setting type: MultiSelectStrategy
|
||||||
|
# Default value: OriginalSpacing
|
||||||
|
# Acceptable values: FirstOpenSpace, SameRowOrLower, OriginalSpacing
|
||||||
|
Multiselect Item Placement = OriginalSpacing
|
||||||
|
|
||||||
|
## Enable multi-select debugging display
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Multiselect Debug = false
|
||||||
|
|
||||||
|
[I. Item Swapping]
|
||||||
|
|
||||||
|
## Drag one item onto another to swap their positions, if possible
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable In-Place Item Swapping = true
|
||||||
|
|
||||||
|
## When reloading a weapon with a magazine, swap locations with the new magazine if necessary (and possible)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Reload Magazines In-Place = true
|
||||||
|
|
||||||
|
## Always reload magazines in-place, even if there's space not to. Note that in-place reloads are slower.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Always Reload Magazines In-Place = false
|
||||||
|
|
||||||
|
## Enable swapping items with containers that could never fit that item due to size or filter restrictions. Disabled in raid to avoid costly mistakes.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Swap with Incompatible Containers = false
|
||||||
|
|
||||||
|
## Holding this modifer when moving items will force swap to take precedence over other interactions (except ammo)
|
||||||
|
# Setting type: ModifierKey
|
||||||
|
# Default value: Alt
|
||||||
|
# Acceptable values: None, Shift, Control, Alt
|
||||||
|
Force Swap Key = Alt
|
||||||
|
|
||||||
|
[J. Item Stacking]
|
||||||
|
|
||||||
|
## When sorting containers, first combine stacks of the same type. This will not be undone if the sorting fails.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Combine Stacks Before Sorting = true
|
||||||
|
|
||||||
|
## Allows automatic stacking of Found In Raid items with other items, making container interaction easier
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Autostack Items with FiR Items = false
|
||||||
|
|
||||||
|
[K. Containers]
|
||||||
|
|
||||||
|
## Allow items to be placed into unsearched containers
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Allow Adding to Unsearched Containers = false
|
||||||
|
|
||||||
|
## Change internal ordering of grids in rigs/backpacks to be left to right, top to bottom
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Standardize Grid Order = false
|
||||||
|
|
||||||
|
## When adding items to containers with multiple slots, place the item in the smallest slot that can hold it, rather than just the first empty space. Requires Standardize Grid Order.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Prioritize Smaller Slots (requires restart) = false
|
||||||
|
|
||||||
|
## Add a flyout to the Open context menu to recursively open a stack of containers
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Open All Context Flyout = true
|
||||||
|
|
||||||
|
## When there isn't enough space to show both the tag and the name of an item, show the tag
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Prioritize Tags Over Names = true
|
||||||
|
|
||||||
|
## Enabling adding tags to backpacks. For reasons, the game client must be restarted for changes to take effect.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Tag Backpacks (requires restart) = true
|
||||||
|
|
||||||
|
## Enable adding tags to vests. For reasons, the game client must be restarted for changes to take effect.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Tag Vests (requires restart) = true
|
||||||
|
|
||||||
|
## When an item won't fit in a grid, show an outline so you can tell how it doesn't fit by
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Border for Oversized Items = true
|
||||||
|
|
||||||
|
[L. Inspect Windows]
|
||||||
|
|
||||||
|
## Item mods will show stats that include mods attached to them (you can also control this from a mod's inspect window)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Total Stats on Mods = true
|
||||||
|
|
||||||
|
## In addition to the default behavior of compatible components shading green, slots that can accept the mod will have a green border
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Highlight Compatible Slots = true
|
||||||
|
|
||||||
|
## Slots that can accept and item or mod will show a green border even if they are already filled
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Highlight Filled Slots = true
|
||||||
|
|
||||||
|
## Save the size of the inspect window when you resize it
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Remember Window Size = true
|
||||||
|
|
||||||
|
## Keep the 3D preview from growing when you resize inspect windows
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Lock Inspect Preview Size = true
|
||||||
|
|
||||||
|
## Automatically stretch the inspect window to fit as much of the description as possible
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Auto-expand to Fit Description = true
|
||||||
|
|
||||||
|
## Keybind to snap the inspect panel to the left half of the screen
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: LeftArrow
|
||||||
|
Snap Window Left shortcut = LeftArrow
|
||||||
|
|
||||||
|
## Keybind to snap the inspect panel to the right half of the screen
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: RightArrow
|
||||||
|
Snap Window Right shortcut = RightArrow
|
||||||
|
|
||||||
|
## Clean up and colorize item stats
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Style Attribute Panels = true
|
||||||
|
|
||||||
|
## Adds snap left and snap right buttons to container windows too
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Add Left/Right Buttons on Containers = true
|
||||||
|
|
||||||
|
[M. Stash]
|
||||||
|
|
||||||
|
## Remember your scroll position all the places you see your stash - inventory, trading screen, mail screen, etc.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Synchronize Stash Scroll Position = false
|
||||||
|
|
||||||
|
## Automatically open the sorting table if it's closed when you shift-click an item. This and Enable Multiselect cannot be used together.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Auto-open Sorting Table = false
|
||||||
|
|
||||||
|
## Show your GP coins wherever your currency is displayed
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show GP Coins in Currency = true
|
||||||
|
|
||||||
|
[N. Trading]
|
||||||
|
|
||||||
|
## Click a trader's item, switch to buy mode. Control-click your item, switch to sell mode.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Autoswitch Buy/Sell when Trading = true
|
||||||
|
|
||||||
|
## When a trader only has new operational quests, show a different icon than when they have new quests
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Daily Quest Icon on Traders = true
|
||||||
|
|
||||||
|
## Show a new icon on traders when you have quest items in your stash to hand over
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Hand Over Items Icon on Traders = true
|
||||||
|
|
||||||
|
## Show a new icon on the trader's quest list when you have quest items in your stash to hand over
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Hand Over Items Icon on Quests = true
|
||||||
|
|
||||||
|
## The trading screen will start at the last trader you visited, even after completely closing the trading screen
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Remember Last Trader = false
|
||||||
|
|
||||||
|
## Whether the show the Out of Stock toggle on the trading screen
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Out of Stock Toggle = true
|
||||||
|
|
||||||
|
## Keybind to set the quantity to all in the item purchase dialog. Equivalent to clicking the ALL button.
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: A
|
||||||
|
Purchase Dialog ALL Shortcut = A
|
||||||
|
|
||||||
|
[O. Flea Market]
|
||||||
|
|
||||||
|
## Keep a history of flea market searches and filters, and show a back button to navigate it
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Filter Back Button = true
|
||||||
|
|
||||||
|
## Show item icons for barters instead of the generic barter icon
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Barter Icons = true
|
||||||
|
|
||||||
|
## Add a context menu to empty mod slots and allow linked searches for specifically that slot
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Linked Slot Search = true
|
||||||
|
|
||||||
|
## For trader items locked behind quest completion, add the name of the quest to the tooltip
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Required Quest for Locked Offers = true
|
||||||
|
|
||||||
|
## Searches will auto-expand categories in the left panel if there is room wtihout scrolling
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Auto-expand Categories = true
|
||||||
|
|
||||||
|
## Pressing Enter after typing in the flea search bar will clear non-default filters
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Clear Filters on Search = true
|
||||||
|
|
||||||
|
[P. Add Offer]
|
||||||
|
|
||||||
|
## Autopopulte new offers with min/avg/max market price, or leave blank
|
||||||
|
# Setting type: AutoFleaPrice
|
||||||
|
# Default value: None
|
||||||
|
# Acceptable values: None, Minimum, Average, Maximum
|
||||||
|
Autopopulate Offer Price = None
|
||||||
|
|
||||||
|
## Automatically multiply or divide the price when you check/uncheck bulk, or or when you change the number of selected items while bulk is checked.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Update Offer Price on Bulk = true
|
||||||
|
|
||||||
|
## Don't close the Add Offer window after you place an offer. Note that the window will still close if you are at max offers.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Keep Add Offer Window Open = false
|
||||||
|
|
||||||
|
## Specifically for the Keep Add Offers Window Open, this setting will keep the window open even if you're at max offers.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Keep Add Offer Window Open: Ignore Max Offers = false
|
||||||
|
|
||||||
|
## Remember the state of the Autoselect Similar checkbox in the Add Offer window
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Remember Add Offer Autoselect Similar = true
|
||||||
|
|
||||||
|
[Q. Hideout]
|
||||||
|
|
||||||
|
## Change the behavior of auto-wishlisting hideout upgrades, if you have that EFT feature enabled:
|
||||||
|
## Normal: EFT default, items will only be wishlisted if all other requirements are met
|
||||||
|
## Visible Upgrades: Items in any upgrade you can view will be wishlisted, even if there are rep, skill, or other upgrade requirements
|
||||||
|
## All Upgrades: Items will be wishlisted for every upgrade, even for areas you haven't unlocked yet
|
||||||
|
# Setting type: AutoWishlistBehavior
|
||||||
|
# Default value: Normal
|
||||||
|
# Acceptable values: Normal, Visible, All
|
||||||
|
Hideout Upgrade Wishlisting = Normal
|
||||||
|
|
||||||
|
## Auto-wishlisted hideout upgrades will only show the hideout icon if they are FiR (and upgrades requires FiR)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Hideout Upgrade Wishlist Respects FiR = true
|
||||||
|
|
||||||
|
## Persist the crafting search filter even when you exit that hideout area
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Remember Craft Search = false
|
||||||
|
|
||||||
|
[R. Weapons]
|
||||||
|
|
||||||
|
## The Load and Reload context menu actions are permanently disabled for weapons with internal magazines. Enable this setting if you want to see it anyway.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Internal Mag (Re)load Context Menu = false
|
||||||
|
|
||||||
|
## Add context menu actions to load and unload ammo for weapons with internal magazines or multiple barrels (shotguns, revolvers, bolt actions)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Internal Mag Load/Unload Ammo = true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,35 @@
|
||||||
|
## Settings file was created by plugin Configuration Manager v18.4
|
||||||
|
## Plugin GUID: com.bepis.bepinex.configurationmanager
|
||||||
|
|
||||||
|
[Filtering]
|
||||||
|
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show advanced = false
|
||||||
|
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show keybinds = true
|
||||||
|
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show settings = true
|
||||||
|
|
||||||
|
[General]
|
||||||
|
|
||||||
|
## The shortcut used to toggle the config manager window on and off.
|
||||||
|
## The key can be overridden by a game-specific plugin if necessary, in that case this setting is ignored.
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: F1
|
||||||
|
Show config manager = F12
|
||||||
|
|
||||||
|
## Show section title for plugins with only one section
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Hide single sections = false
|
||||||
|
|
||||||
|
## If set to true plugins will be collapsed when opening the configuration manager window
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Plugin collapsed default = true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,372 @@
|
||||||
|
## Settings file was created by plugin Fika.Core v2.1.1
|
||||||
|
## Plugin GUID: com.fika.core
|
||||||
|
|
||||||
|
[Advanced]
|
||||||
|
|
||||||
|
## 피카 버전 대신 공식 버전 보이기
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Official Version = false
|
||||||
|
|
||||||
|
## Enables developer features
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Developer Mode = false
|
||||||
|
|
||||||
|
## Stops AI from spawning
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
No AI = false
|
||||||
|
|
||||||
|
## Stops loot from spawning
|
||||||
|
## Speeds up loading for debugging
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
No Loot = false
|
||||||
|
|
||||||
|
## What priority loading other players (and AI as a client) uses.
|
||||||
|
## Might not have a huge effect.
|
||||||
|
# Setting type: ELoadPriority
|
||||||
|
# Default value: Low
|
||||||
|
# Acceptable values: Low, Medium, High
|
||||||
|
Player Load Priority = Low
|
||||||
|
|
||||||
|
## Max amount of bundles loading in parallel.
|
||||||
|
## Increase if you take a long time to load bots as a client.
|
||||||
|
##
|
||||||
|
## Default game value is 1 but has been increased to remedy the base game issue where bundles load too slow
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 5
|
||||||
|
# Acceptable value range: From 1 to 10
|
||||||
|
Max Bundle Lock = 5
|
||||||
|
|
||||||
|
[Coop]
|
||||||
|
|
||||||
|
## Always tick the box to use the Headless Client if available
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Auto Use Headless = false
|
||||||
|
|
||||||
|
## 플레이어가 죽거나 탈출하거나 보스 킬 등을 할 경우 뜨는 커스텀 메시지 알림 활성화
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Feed = true
|
||||||
|
|
||||||
|
## 탈출 카운트다운 후 자동으로 탈출을 완료합니다. 호스트에게는 다른 연결된 클라이언트가 없거나 모두 탈출완료한 경우에만 적용됩니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Auto Extract = true
|
||||||
|
|
||||||
|
## 죽거나 탈출 후 알림 메시지 띄우기
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Extract Message = true
|
||||||
|
|
||||||
|
## 레이드 탈출완료 버튼
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: F8
|
||||||
|
Extract Key = F8
|
||||||
|
|
||||||
|
## 죽거나 탈출 후 알림 메시지 띄우기
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show In-Game Player List = true
|
||||||
|
|
||||||
|
## 게임에서 챗 기능 활성화 토글 버튼. 레이드 도중에도 토글 가능합니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable Chat = true
|
||||||
|
|
||||||
|
## 채팅창 키
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: RightControl
|
||||||
|
Chat Key = RightControl
|
||||||
|
|
||||||
|
## 접속중인 플레이어 리스트 메뉴 띄우기
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Online Players = true
|
||||||
|
|
||||||
|
## 접속중인 플레이어 리스트 창 크기 조절. 창 비율이 이상할때만 조절하세요.
|
||||||
|
##
|
||||||
|
## 메인 메뉴 리프레시 후에 적용됩니다.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.5 to 1.5
|
||||||
|
Online Players Scale = 1
|
||||||
|
|
||||||
|
[Coop | Debug]
|
||||||
|
|
||||||
|
## 토글 방식의 프리캠 버튼
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: F9
|
||||||
|
Free Camera Button = F9
|
||||||
|
|
||||||
|
## 모든 플레이어가 죽거나 탈출한 경우 봇 관전을 허용할지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Allow Spectating Bots = true
|
||||||
|
|
||||||
|
## 프리캠 시에 AZERTY 키로 입력을 받을지 여부AZERTY 키로 입력을 받을지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
AZERTY Mode = false
|
||||||
|
|
||||||
|
## 프리캠 시에 드론처럼 수직 축을 기준으로 움직일지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Drone Mode = false
|
||||||
|
|
||||||
|
## 키바인드 오버레이
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Keybind Overlay = true
|
||||||
|
|
||||||
|
[Coop | Name Plates]
|
||||||
|
|
||||||
|
## 팀원들 네임 플레이트 보이기 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Player Name Plates = false
|
||||||
|
|
||||||
|
## 체력 바를 완전히 숨깁니다
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Hide Health Bar = true
|
||||||
|
|
||||||
|
## 체력 바를 보이는 대신에 퍼센티지로 표시합니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show HP% instead of bar = false
|
||||||
|
|
||||||
|
## 체력 바 하단에 상태효과를 표시할지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Effects = true
|
||||||
|
|
||||||
|
## 체력 바 옆에 플레이어 진영을 표시할지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Player Faction Icon = false
|
||||||
|
|
||||||
|
## PiP 타입의 스코프 이용할 때에 플레이어 네임 플레이트를 숨겨줍니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Hide Name Plate in Optic = true
|
||||||
|
|
||||||
|
## PiP 타입 옵틱에 네임 플레이트 위치가 보이게 할지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Name Plates Use Optic Zoom = true
|
||||||
|
|
||||||
|
## 플레이어를 주시하지 않을 때 네임플레이트를 반투명하게 합니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Decrease Opacity In Peripheral = true
|
||||||
|
|
||||||
|
## 네임 플레이트 크기
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.5 to 1.5
|
||||||
|
Name Plate Scale = 1
|
||||||
|
|
||||||
|
## 조준 시에 네임 플레이트들의 투명도
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.75
|
||||||
|
# Acceptable value range: From 0.1 to 1
|
||||||
|
Opacity in ADS = 0.75
|
||||||
|
|
||||||
|
## 이 거리를 벗어나면 네임 플레이트가 설정된 값의 반 정도를 시작으로 점점 투명해집니다.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 500
|
||||||
|
# Acceptable value range: From 10 to 1000
|
||||||
|
Max Distance to Show = 500
|
||||||
|
|
||||||
|
## 네임 플레이트들의 최소 투명도
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.1
|
||||||
|
# Acceptable value range: From 0 to 1
|
||||||
|
Minimum Opacity = 0.1
|
||||||
|
|
||||||
|
## 오크루전으로 플레이어가 시야에서 벗어나면 네임플레이트를 숨깁니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use Occlusion = true
|
||||||
|
|
||||||
|
## The color displayed when at full health. This will gradually move towards 'Low Health Color' when HP decreases.
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: 00FF00FF
|
||||||
|
Full Health Color = 00FF00FF
|
||||||
|
|
||||||
|
## The color displayed when at low health. This will gradually move towards 'Full Health Color' when HP increases.
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF0000FF
|
||||||
|
Low Health Color = FF0000FF
|
||||||
|
|
||||||
|
## The color of the text above the name plate.
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFFFFFFF
|
||||||
|
Name Plate Text Color = FFFFFFFF
|
||||||
|
|
||||||
|
[Coop | Pinging]
|
||||||
|
|
||||||
|
## 핑 시스템 토글. 활성화 하면 핑 키를 눌러 핑을 보내거나 받을 수 있습니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Ping System = false
|
||||||
|
|
||||||
|
## 핑 보내기 버튼
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Semicolon
|
||||||
|
Ping Button = Semicolon
|
||||||
|
|
||||||
|
## 다른 플레이어들에게 보이는 본인의 핑 컬러
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFFFFFFF
|
||||||
|
Ping Color = FFFFFFFF
|
||||||
|
|
||||||
|
## 핑 크기 배율
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 2
|
||||||
|
Ping Size = 1
|
||||||
|
|
||||||
|
## 핑 표시 지속시간
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 3
|
||||||
|
# Acceptable value range: From 2 to 10
|
||||||
|
Ping Time = 3
|
||||||
|
|
||||||
|
## 핑을 할때 해당 위치를 가리키는 손동작을 합니다. 게임플레이에 영향을 끼칩니다.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Play Ping Animation = false
|
||||||
|
|
||||||
|
## 옵틱 스코프 조준 시 핑들이 보이게 할지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Ping During Optics = false
|
||||||
|
|
||||||
|
## PiP 옵틱 카메라로 핑 위치가 보이게 할 지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Ping Use Optic Zoom = true
|
||||||
|
|
||||||
|
## 플레이어로부터의 거리에 비례하여 핑 크기를 조절할 지 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Ping Scale With Distance = true
|
||||||
|
|
||||||
|
## 핑을 정확히 바라볼 때의 투명도
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.05
|
||||||
|
# Acceptable value range: From 0 to 0.5
|
||||||
|
Ping Minimum Opacity = 0.05
|
||||||
|
|
||||||
|
## 플레이어로부터 핑 까지의 거리 보이기 여부
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Ping Range = false
|
||||||
|
|
||||||
|
## 핑 찍을때 나는 사운드
|
||||||
|
# Setting type: EPingSound
|
||||||
|
# Default value: SubQuestComplete
|
||||||
|
# Acceptable values: SubQuestComplete, InsuranceInsured, ButtonClick, ButtonHover, InsuranceItemInsured, MenuButtonBottom, ErrorMessage, InspectWindow, InspectWindowClose, MenuEscape
|
||||||
|
Ping Sound = MenuEscape
|
||||||
|
|
||||||
|
[Coop | Quest Sharing]
|
||||||
|
|
||||||
|
## Disabled by server host
|
||||||
|
# Setting type: EQuestSharingTypes
|
||||||
|
# Default value: All
|
||||||
|
# Acceptable values: None, Kills, Item, Location, PlaceBeacon, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Quest Types = All
|
||||||
|
|
||||||
|
## Disabled by server host
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Notifications = true
|
||||||
|
|
||||||
|
## Disabled by server host
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Easy Kill Conditions = false
|
||||||
|
|
||||||
|
## Disabled by server host
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Shared Kill Experience = false
|
||||||
|
|
||||||
|
## Disabled by server host
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Shared Boss Experience = false
|
||||||
|
|
||||||
|
[Gameplay]
|
||||||
|
|
||||||
|
## 봇 신진대사 가능 비활성화, 물/밥 부족으로 봇들이 죽는것 방지.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Disable Bot Metabolism = false
|
||||||
|
|
||||||
|
[Hidden]
|
||||||
|
|
||||||
|
## Last loaded version of Fika
|
||||||
|
# Setting type: String
|
||||||
|
# Default value: 0
|
||||||
|
Last Version = 0
|
||||||
|
|
||||||
|
[Network]
|
||||||
|
|
||||||
|
## 호스팅 시 서버가 백엔드에 브로드케스팅 할때 자동으로 가져오지 않고 해당 IP를 사용하도록 강제합니다. 비워두면 비활성화 됩니다.
|
||||||
|
# Setting type: String
|
||||||
|
# Default value:
|
||||||
|
Force IP =
|
||||||
|
|
||||||
|
## 서버 호스팅 시 서버가 시작될 때 로컬 어댑터를 사용하도록 강제합니다. VPN 사용시 유용합니다.
|
||||||
|
# Setting type: String
|
||||||
|
# Default value: Disabled
|
||||||
|
# Acceptable values: Disabled, 0.0.0.0, ::, 192.168.0.2, 172.31.80.1, 172.27.160.1
|
||||||
|
Force Bind IP = Disabled
|
||||||
|
|
||||||
|
## UDP 패킷 전송시 사용하는 포트
|
||||||
|
# Setting type: UInt16
|
||||||
|
# Default value: 25565
|
||||||
|
# Acceptable value range: From 0 to 65535
|
||||||
|
UDP Port = 25565
|
||||||
|
|
||||||
|
## UPnP를 사용하여 포트 개방 시도. 직접 포트를 열지 못하는데 라우터가 UPnP를 지원하는 경우 유용함
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use UPnP = false
|
||||||
|
|
||||||
|
## 레이드 호스팅 시에 NAT 펀칭을 사용. fullcone NAT 타입 라우터만 호환가능하며 NatPunchServer가 SPT 서버에 동작중이여야 함. 해당 기능 사용 시 UPnP, IP강제, IP강제 바인드는 모두 비활성화 됨.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use NAT Punching = false
|
||||||
|
|
||||||
|
## 해당 시간동안 패킷을 받지 못하면 연결을 드랍한걸로 간주함
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 30
|
||||||
|
# Acceptable value range: From 5 to 60
|
||||||
|
Connection Timeout = 30
|
||||||
|
|
||||||
|
## How often per second movement packets should be sent (lower = less bandwidth used, slight more delay during interpolation)
|
||||||
|
## This only affects the host and will be synchronized to all clients.
|
||||||
|
## Amount is per second:
|
||||||
|
## Low = 10
|
||||||
|
## Medium = 20
|
||||||
|
## High = 30
|
||||||
|
##
|
||||||
|
## Recommended to leave at no higher than Medium as the gains are insignificant after.
|
||||||
|
# Setting type: ESendRate
|
||||||
|
# Default value: Medium
|
||||||
|
# Acceptable values: Low, Medium, High
|
||||||
|
Send Rate = High
|
||||||
|
|
||||||
|
## If VOIP will be enabled when you are hosting.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Allow VOIP = false
|
||||||
|
|
||||||
|
|
@ -0,0 +1,357 @@
|
||||||
|
## Settings file was created by plugin Janky-HollywoodFX v1.8.2
|
||||||
|
## Plugin GUID: com.janky.hollywoodfx
|
||||||
|
|
||||||
|
[00. General]
|
||||||
|
|
||||||
|
## Use a preset template for the HFX settings. Requires restarting the game to ensure all the settings take effect.
|
||||||
|
# Setting type: String
|
||||||
|
# Default value:
|
||||||
|
Load Template (RESTART) =
|
||||||
|
|
||||||
|
[01. Impact Effects]
|
||||||
|
|
||||||
|
## Scales the size of impact effects.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.75
|
||||||
|
# Acceptable value range: From 0.1 to 5
|
||||||
|
Impact Effect Size v1 = 0.75
|
||||||
|
|
||||||
|
## Toggles special impact effects for tracer rounds.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Tracer Round Impacts = true
|
||||||
|
|
||||||
|
[02. Explosion FX]
|
||||||
|
|
||||||
|
## Adjusts the density of fireballs. Large values may have a performance impact
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Fireball Density = 1
|
||||||
|
|
||||||
|
## Adjusts the density of debris and sparks. Large values may have a performance impact
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Debris Density = 1
|
||||||
|
|
||||||
|
## Adjusts the density of debris and sparks. Large values may have a performance impact
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Smoke Density (CPU HEAVY) = 1
|
||||||
|
|
||||||
|
## Adjusts the density of debris and sparks. Large values may have a performance impact
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Sparks Density (CPU HEAVY) = 1
|
||||||
|
|
||||||
|
## Adjusts the density of debris and sparks. Large values may have a performance impact
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Dust Density (CPU HEAVY) = 1
|
||||||
|
|
||||||
|
## Adjusts the resolution and fidelity of confinement detection and other aspects of explosions. Lower values are less CPU intensive.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 1
|
||||||
|
Compute Fidelity (RESTART) = 1
|
||||||
|
|
||||||
|
[03. Muzzle Blast Effects]
|
||||||
|
|
||||||
|
## Toggles new muzzle blast effects.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Muzzle Effects (RESTART) = true
|
||||||
|
|
||||||
|
## Adjusts the size of the muzzle flame jets.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Muzzle Jet Size = 1
|
||||||
|
|
||||||
|
## Adjusts the size of the muzzle sparks.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Muzzle Sparks Size = 1
|
||||||
|
|
||||||
|
## Adjusts the amount of muzzle sparks generated.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 10
|
||||||
|
Muzzle Sparks Emission Rate (RESTART) = 1
|
||||||
|
|
||||||
|
## Adjusts the size of the muzzle smoke.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Muzzle Smoke Size = 1
|
||||||
|
|
||||||
|
## Adjusts the amount of muzzle smoke generated. If you are looking to hotbox with some scavs, set it to 3 or something.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 10
|
||||||
|
Muzzle Smoke Emission Rate (RESTART) = 1
|
||||||
|
|
||||||
|
## Toggles shadow casting for muzzle lights.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Muzzle Light Shadow (RESTART) = true
|
||||||
|
|
||||||
|
[04. Ambient Battle Effects (RESTART)]
|
||||||
|
|
||||||
|
## Scales the intensity of battle blur from concussion and suppression effects.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Battle Blur Intensity = 1
|
||||||
|
|
||||||
|
## Toggles concussion screen effects.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Concussion FX = true
|
||||||
|
|
||||||
|
## Scales the duration of concussion effects. Larger numbers will result in longer lasting concussion.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Concussion Duration = 1
|
||||||
|
|
||||||
|
## Scales the range of concussion effects. Larger numbers will cause concussion from further away.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Concussion Range = 1
|
||||||
|
|
||||||
|
## Toggles suppression screen effects.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Suppression FX = true
|
||||||
|
|
||||||
|
## Scales the duration of concussion effects. Larger numbers will result in longer lasting concussion.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Suppression Duration = 1
|
||||||
|
|
||||||
|
## Scales the range of concussion effects. Larger numbers will cause concussion from further away.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Suppression Range = 1
|
||||||
|
|
||||||
|
## Ambient battle effects are simulated in this range around the player, even if not immediately visible. Helps create ambience from bot fights.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 25
|
||||||
|
# Acceptable value range: From 0 to 250
|
||||||
|
Forced Simulation Range = 25
|
||||||
|
|
||||||
|
## Adjusts the density of ambient effects. The bigger this number, the denser the smoke, debris, glitter etc...
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 5
|
||||||
|
Ambient Effect Emission Rate = 1
|
||||||
|
|
||||||
|
## Scales the internal limits on the number of active particles. Since there are different limits for different components, this scales everything proportionally.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 5
|
||||||
|
Ambient Effect Particle Limit = 1
|
||||||
|
|
||||||
|
## Scales the internal lifetime of particles. Since there are different limits for different components, this scales everything proportionally.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0.1 to 5
|
||||||
|
Ambient Effect Particle Lifetime = 1
|
||||||
|
|
||||||
|
[05. Gore Emission v1 (RESTART)]
|
||||||
|
|
||||||
|
## Toggles whether gore effects are rendered at all. When toggled off, only the default BSG blood effects will show.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Gore Effects = true
|
||||||
|
|
||||||
|
## Adjusts the quantity of mists & puffs of blood.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Blood Mist Emission Rate = 1
|
||||||
|
|
||||||
|
## Adjusts the quantity of fine blood spray particles. Reduce if you get stutters. Above 1 gets quite CPU heavy.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Blood Spray Emission Rate = 2
|
||||||
|
|
||||||
|
## Adjusts the quantity of the blood squirt particles. Reduce if you get stutters. Above 1 gets quite CPU heavy.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Squirt Emission Rate = 1
|
||||||
|
|
||||||
|
## Adjusts the quantity of particles in finisher effects. Reduce if you get stutters. Above 0.5 gets quite CPU heavy.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Finisher Emission Rate = 1
|
||||||
|
|
||||||
|
## Adjusts the quantity of particles in arterial bleed effects. Reduce if you get stutters. Above 2 gets quite CPU heavy.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Arterial Bleed Emission Rate = 2
|
||||||
|
|
||||||
|
[06. Gore Size]
|
||||||
|
|
||||||
|
## Adjusts the size of blood mists/puffs.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Mist Size = 1
|
||||||
|
|
||||||
|
## Adjusts the size of fine blood sprays.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Spray Size = 1
|
||||||
|
|
||||||
|
## Adjusts the size of the blood squirts.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Squirt Size = 1
|
||||||
|
|
||||||
|
## Adjusts the size of the gore generated by finisher shots.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Finisher Gore Size = 1
|
||||||
|
|
||||||
|
## Adjusts the size of the gore generated by arterial bleeds.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Arterial Bleed Size = 1
|
||||||
|
|
||||||
|
[07. Gore Decals]
|
||||||
|
|
||||||
|
## Toggles the new blood splashes appearing on bodies. If toggled off, you'll get the barely visible EFT default wound effects. Philistine.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Wound Decals on Bodies = true
|
||||||
|
|
||||||
|
## Adjusts the size of the wound decals that appear on bodies.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Wound Decal Size = 1
|
||||||
|
|
||||||
|
## Toggles the new blood splashes appearing on the environment for penetrating hits. If toggled off, you'll get the shonky EFT defaults. Philistine.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Blood Splatter on Environment = true
|
||||||
|
|
||||||
|
## Adjusts the size of the blood splatters on the environment.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 5
|
||||||
|
Blood Splatter Decal Size = 1
|
||||||
|
|
||||||
|
[08. Ragdoll Effects (DISABLED BY VISCERAL COMBAT)]
|
||||||
|
|
||||||
|
## Toggles whether ragdoll effects will be enabled.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
# Acceptable values: False, True
|
||||||
|
Enable Ragdoll Effects (RESTART) = true
|
||||||
|
|
||||||
|
## Adjusts the skeletal and joint characteristics of ragdolls for a more Cinematic (TM) experience.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
# Acceptable values: False, True
|
||||||
|
Enable Cinematic Ragdolls (RESTART) = true
|
||||||
|
|
||||||
|
## Toggles the enemies dropping their weapon on death.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
# Acceptable values: False, True
|
||||||
|
Drop Weapon on Death (RESTART) = true
|
||||||
|
|
||||||
|
## Multiplies the force that is applied to ragdolls when enemies die.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 100
|
||||||
|
Ragdoll Force Multiplier = 1
|
||||||
|
|
||||||
|
[09. Miscellaneous Flotsam]
|
||||||
|
|
||||||
|
## Toggles whether to override the built-in decal limits. If you have this enabled in Visceral Combat, you can disable it here.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable Decal Limit Adjustment (RESTART) = true
|
||||||
|
|
||||||
|
## Adjusts the maximum number of decals that the game will render. The vanilla number is a puny 200.
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 2048
|
||||||
|
# Acceptable value range: From 1 to 2048
|
||||||
|
Decal Limits (RESTART) = 2048
|
||||||
|
|
||||||
|
## How long do spent shells stay on the ground before despawning (game default is 1 second).
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 60
|
||||||
|
# Acceptable value range: From 0 to 3600
|
||||||
|
Spent Shells Lifetime (seconds) = 60
|
||||||
|
|
||||||
|
## Adjusts the size of spent shells multiplicatively (2 means 2x the size).
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1.5
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Spent Shells Size = 1.5
|
||||||
|
|
||||||
|
## Adjusts the velocity of the spent shells multiplicatively (2 means 2x the speed).
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1.5
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Shell Ejection Velocity = 1.5
|
||||||
|
|
||||||
|
## Toggles whether to enhance the spent shell physics, resulting in finer grained simulation of bouncing and rolling.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enhanced Shell Physics (RESTART) = true
|
||||||
|
|
||||||
|
[10. Graphics]
|
||||||
|
|
||||||
|
## Positive values force higher quality effect textures at a distance. Numbers above 4 can have *heavy*VRAM impact and cause stuttering.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Effect Quality Bias = 10
|
||||||
|
|
||||||
|
[11. Whimsy]
|
||||||
|
|
||||||
|
## Scales the overall kinetic energy, impulse, etc.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Bullet Kinetics Scaling = 1
|
||||||
|
|
||||||
|
## Nunc est Bibendum.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
AcidPhantasm Michelin Man Mode = false
|
||||||
|
|
||||||
|
## Made you look.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Peen = false
|
||||||
|
|
||||||
|
[12. Debug]
|
||||||
|
|
||||||
|
## Duh. Requires restarting the game to take effect.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable Debug Logging (RESTART) = false
|
||||||
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
## Settings file was created by plugin HandsAreNotBusy v1.6.0
|
||||||
|
## Plugin GUID: com.lacyway.hanb
|
||||||
|
|
||||||
|
[Keybind]
|
||||||
|
|
||||||
|
## The key to reset the broken controller with.
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: End
|
||||||
|
Reset Key = End
|
||||||
|
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
## Settings file was created by plugin NerfBotGrenades v1.2.0
|
||||||
|
## Plugin GUID: com.lacyway.nbg
|
||||||
|
|
||||||
|
[1. Settings]
|
||||||
|
|
||||||
|
## The multiplier to bots inaccuracy with grenades
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 10
|
||||||
|
Multiplier = 2
|
||||||
|
|
||||||
|
|
@ -0,0 +1,445 @@
|
||||||
|
## Settings file was created by plugin DynamicMaps v1.0.5
|
||||||
|
## Plugin GUID: com.mpstark.dynamicmaps
|
||||||
|
|
||||||
|
[1. General]
|
||||||
|
|
||||||
|
## If the map should replace the BSG default map screen, requires swapping away from modded map to refresh
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Replace Map Screen = true
|
||||||
|
|
||||||
|
## Pressed while the map is open, centers the player
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Semicolon
|
||||||
|
Center on Player Hotkey = Semicolon
|
||||||
|
|
||||||
|
## Hotkey to move the map up
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: UpArrow
|
||||||
|
Move Map Up Hotkey = UpArrow
|
||||||
|
|
||||||
|
## Hotkey to move the map down
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: DownArrow
|
||||||
|
Move Map Down Hotkey = DownArrow
|
||||||
|
|
||||||
|
## Hotkey to move the map left
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: LeftArrow
|
||||||
|
Move Map Left Hotkey = LeftArrow
|
||||||
|
|
||||||
|
## Hotkey to move the map right
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: RightArrow
|
||||||
|
Move Map Right Hotkey = RightArrow
|
||||||
|
|
||||||
|
## How fast the map should move, units are map percent per second
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.25
|
||||||
|
# Acceptable value range: From 0.05 to 2
|
||||||
|
Move Map Hotkey Speed = 0.25
|
||||||
|
|
||||||
|
## Hotkey to move the map level up (shift-scroll-up also does this in map screen)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Period
|
||||||
|
Change Map Level Up Hotkey = Period
|
||||||
|
|
||||||
|
## Hotkey to move the map level down (shift-scroll-down also does this in map screen)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Comma
|
||||||
|
Change Map Level Down Hotkey = Comma
|
||||||
|
|
||||||
|
## Hotkey to zoom the map in (scroll-up also does this in map screen)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Equals
|
||||||
|
Zoom Map In Hotkey = Equals
|
||||||
|
|
||||||
|
## Hotkey to zoom the map out (scroll-down also does this in map screen)
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Minus
|
||||||
|
Zoom Map Out Hotkey = Minus
|
||||||
|
|
||||||
|
## How fast the map should zoom by hotkey
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 2.5
|
||||||
|
# Acceptable value range: From 1 to 10
|
||||||
|
Zoom Map Hotkey Speed = 2.5
|
||||||
|
|
||||||
|
## Pressed while the map is open, dumps json MarkerDefs for extracts, loot, and switches into root of plugin folder
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: D + LeftShift + LeftAlt
|
||||||
|
Dump Info Hotkey = D + LeftShift + LeftAlt
|
||||||
|
|
||||||
|
[2. Dynamic Markers]
|
||||||
|
|
||||||
|
## If the player marker should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Player Marker = false
|
||||||
|
|
||||||
|
## If friendly player markers should be shown in-raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Friendly Player Markers = false
|
||||||
|
|
||||||
|
## If enemy player markers should be shown in-raid (generally for debug)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Enemy Player Markers = false
|
||||||
|
|
||||||
|
## If enemy scav markers should be shown in-raid (generally for debug)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Scav Markers = false
|
||||||
|
|
||||||
|
## If enemy boss markers should be shown in-raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Boss Markers = false
|
||||||
|
|
||||||
|
## If locked door markers should be updated with status based on key acquisition
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Locked Door Status = true
|
||||||
|
|
||||||
|
## If quests should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Quests In Raid = true
|
||||||
|
|
||||||
|
## If extracts should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Extracts In Raid = true
|
||||||
|
|
||||||
|
## If extracts should be colored according to their status in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Extracts Status In Raid = true
|
||||||
|
|
||||||
|
## If transits should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Transit Points In Raid = true
|
||||||
|
|
||||||
|
## If secret extracts should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Secret Extracts In Raid = true
|
||||||
|
|
||||||
|
## If the player's dropped backpacks (not anyone elses) should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Dropped Backpack In Raid = true
|
||||||
|
|
||||||
|
## Shows items that are in your wishlist on the map in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show wish listed items In Raid = false
|
||||||
|
|
||||||
|
## If the BTR should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show BTR In Raid = false
|
||||||
|
|
||||||
|
## If airdrops should be shown in raid when they land
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Airdrops In Raid = false
|
||||||
|
|
||||||
|
## If hidden stashes should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Hidden Stashes In Raid = true
|
||||||
|
|
||||||
|
## If friendly corpses should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Friendly Corpses In Raid = true
|
||||||
|
|
||||||
|
## If corpses killed by the player should be shown in raid, killed bosses will be shown in another color
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Player-killed Corpses In Raid = true
|
||||||
|
|
||||||
|
## If corpses killed by friendly players should be shown in raid, killed bosses will be shown in another color
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Friendly-killed Corpses In Raid = true
|
||||||
|
|
||||||
|
## If boss corpses (other than ones killed by the player) should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Boss Corpses In Raid = false
|
||||||
|
|
||||||
|
## If corpses (other than friendly ones or ones killed by the player) should be shown in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Show Other Corpses In Raid = false
|
||||||
|
|
||||||
|
[3. Progression]
|
||||||
|
|
||||||
|
## Requires you to have a map in your inventory in order to view the map in raid.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Require a map in your inventory = false
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show PMCs
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show PMCs = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show bosses
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show bosses = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show scavs
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show scavs = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show friendly PMCs
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show friendly PMCs = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show corpses
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show corpses = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show airdrops
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show airdrops = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show wish listed loot items
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show wish listed loot items = 0
|
||||||
|
|
||||||
|
## If intel level is at or above this value it will show hidden stashes
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 3
|
||||||
|
Intel level required to show hidden stashes = 0
|
||||||
|
|
||||||
|
[4. In-Raid]
|
||||||
|
|
||||||
|
## If the level should be automatically selected based on the players position in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Auto Select Level = true
|
||||||
|
|
||||||
|
## If the player marker should be centered when showing the map in raid (Conflicts with 'Remember Map Position')
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Auto Center On Player Marker = false
|
||||||
|
|
||||||
|
## If the zoom level should be reset each time that the map is opened while in raid (Conflicts with 'Remember Map Position')
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Reset Zoom On Center = false
|
||||||
|
|
||||||
|
## Should we remember the map position (Map position memory is only maintained for the current raid) (Conflicts with 'Auto Center On Player Marker' and 'Reset Zoom On Center')
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Remember Map Position = true
|
||||||
|
|
||||||
|
## What zoom level should be used as while centering on the player (0 is fully zoomed out, and 1 is fully zoomed in)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.15
|
||||||
|
# Acceptable value range: From 0 to 1
|
||||||
|
Centering On Player Zoom Level = 0.15
|
||||||
|
|
||||||
|
## What zoom level should be used for the main map. (Tab view/Peek view) (0 is fully zoomed out, and 1 is fully zoomed in)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From 0 to 15
|
||||||
|
Main map zoom = 1.680113
|
||||||
|
|
||||||
|
## The keyboard shortcut to peek at the map
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: M
|
||||||
|
Peek at Map Shortcut = M
|
||||||
|
|
||||||
|
## If the shortcut should be held to keep it open. If disabled, button toggles
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Hold for Peek = true
|
||||||
|
|
||||||
|
## Enable the map transition animations (When disabled everything will snap)
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Peek Transition enabled = true
|
||||||
|
|
||||||
|
[5. Mini-map]
|
||||||
|
|
||||||
|
## Enable the mini-map
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Mini-map enabled = true
|
||||||
|
|
||||||
|
## What corner is the mini-map displayed in
|
||||||
|
# Setting type: EMiniMapPosition
|
||||||
|
# Default value: TopRight
|
||||||
|
# Acceptable values: TopRight, BottomRight, TopLeft, BottomLeft
|
||||||
|
Mini-map position = TopRight
|
||||||
|
|
||||||
|
## Horizontal size of the mini-map
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 275
|
||||||
|
# Acceptable value range: From 0 to 850
|
||||||
|
Mini-map size horizontal = 275
|
||||||
|
|
||||||
|
## Vertical size of the mini-map
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 275
|
||||||
|
# Acceptable value range: From 0 to 850
|
||||||
|
Mini-map size vertical = 275
|
||||||
|
|
||||||
|
## Horizontal Offset from the edge (These values update according to screen resolution, REQUIRES RESTART IF YOU CHANGED YOUR RESOLUTION)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From -860 to 3440
|
||||||
|
Mini-map offset horizontal = 0
|
||||||
|
|
||||||
|
## Vertical offset from the edge (These values update according to screen resolution, REQUIRES RESTART IF YOU CHANGED YOUR RESOLUTION)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
# Acceptable value range: From -360 to 1440
|
||||||
|
Mini-map offset vertical = 0
|
||||||
|
|
||||||
|
## Show or hide the mini-map
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: End
|
||||||
|
Show or Hide the mini-map = End
|
||||||
|
|
||||||
|
## What zoom level should be used for the mini map. (0 is fully zoomed out, and 15 is fully zoomed in)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 5
|
||||||
|
# Acceptable value range: From 0 to 15
|
||||||
|
Mini map zoom = 5
|
||||||
|
|
||||||
|
## Zoom in on mini map key bind
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Keypad8
|
||||||
|
Zoom in key bind = Keypad8
|
||||||
|
|
||||||
|
## Zoom out on mini map key bind
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: Keypad5
|
||||||
|
Zoom out key bind = Keypad5
|
||||||
|
|
||||||
|
[6. Marker Colors]
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: 00FF00FF
|
||||||
|
Your player marker color = 00FF00FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF0000FF
|
||||||
|
Bear marker color = FF0000FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFFF00FF
|
||||||
|
Usec marker color = FFFF00FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF7302FF
|
||||||
|
Scav marker color = FF7302FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF7302FF
|
||||||
|
Boss marker color = FF7302FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF4C02FF
|
||||||
|
Airdrop marker color = FF4C02FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: 00FF00FF
|
||||||
|
Backpack marker color = 00FF00FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FACF02FF
|
||||||
|
Loot marker color = FACF02FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF0000FF
|
||||||
|
Killed corpse marker color = FF0000FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF00FFFF
|
||||||
|
Killed boss corpse marker color = FF00FFFF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFFFFFFF
|
||||||
|
Killed by other corpse marker color = FFFFFFFF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: 366329FF
|
||||||
|
BTR marker color = 366329FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFEB03FF
|
||||||
|
Extract default marker color = FFEB03FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: 00FF00FF
|
||||||
|
Extract open marker color = 00FF00FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF0000FF
|
||||||
|
Extract closed marker color = FF0000FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFEB03FF
|
||||||
|
Extract has requirements marker color = FFEB03FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FF9E33FF
|
||||||
|
Transit point marker color = FF9E33FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: 1A9999FF
|
||||||
|
Secret exfil point marker color = 1A9999FF
|
||||||
|
|
||||||
|
## Color of the marker
|
||||||
|
# Setting type: Color
|
||||||
|
# Default value: FFEB03FF
|
||||||
|
Hidden stash marker color = FFEB03FF
|
||||||
|
|
||||||
|
[7. External Mod Support]
|
||||||
|
|
||||||
|
## If the heli crash site should be marked in raid
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Show Heli Crash Marker = true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,97 @@
|
||||||
|
## Settings file was created by plugin Shadow Flicker Fix v1.5.2
|
||||||
|
## Plugin GUID: com.pein.shadowflickerfix
|
||||||
|
|
||||||
|
[1. Distant Shadows]
|
||||||
|
|
||||||
|
## Changes the resolution of distant shadows. Higher values reduce flickering but come with a small (barely noticeable) performance impact.
|
||||||
|
# Setting type: ResolutionState
|
||||||
|
# Default value: FULL
|
||||||
|
# Acceptable values: QUARTER, HALF, FULL
|
||||||
|
Distant Shadow Resolution = FULL
|
||||||
|
|
||||||
|
[2. Shadows]
|
||||||
|
|
||||||
|
## SOME OF THESE SETTINGS WILL REDUCE FPS NOTICEABLY! Enables shadow config changes. These settings can either make shadows look really nice or really bad. Map change required after disabling.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable Shadow Changes = false
|
||||||
|
|
||||||
|
## Changes the amount of shadow cascades. Didn't see a noticeable performance impact.
|
||||||
|
# Setting type: EShadowCascades
|
||||||
|
# Default value: High
|
||||||
|
# Acceptable values: Low, High
|
||||||
|
Shadow Cascades = High
|
||||||
|
|
||||||
|
## Changes the shadowmap resolution. Will reduce FPS.
|
||||||
|
# Setting type: ShadowResolution
|
||||||
|
# Default value: High
|
||||||
|
# Acceptable values: Low, Medium, High, VeryHigh
|
||||||
|
Shadow Quality = High
|
||||||
|
|
||||||
|
[3. Shadows (Advanced)]
|
||||||
|
|
||||||
|
## Enables advanced shadow settings. Shadow changes have to be enabled for this to work.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable Advanced Shadow Changes = false
|
||||||
|
|
||||||
|
## Changes the shadow decrease factor. Lowering the value sharpens the shadows considerably but also reduces FPS.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
# Acceptable value range: From 0.01 to 5
|
||||||
|
Shadow Decrease Factor = 0.5
|
||||||
|
|
||||||
|
## Changes the minimum shadow distance. At least that's my very best guess. No clue what it actually does, but it's here if you want to play around with it.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 20
|
||||||
|
Minimum Shadow Distance = 20
|
||||||
|
|
||||||
|
## Changes the distance at which shadows start fading from one quality to another. I think.
|
||||||
|
# Setting type: Vector2
|
||||||
|
# Default value: {"x":10.0,"y":50.0}
|
||||||
|
Shadow Interval 1 = {"x":10.0,"y":50.0}
|
||||||
|
|
||||||
|
## Changes the distance at which shadows start fading from one quality to another. I think.
|
||||||
|
# Setting type: Vector2
|
||||||
|
# Default value: {"x":75.0,"y":100.0}
|
||||||
|
Shadow Interval 2 = {"x":75.0,"y":100.0}
|
||||||
|
|
||||||
|
[4. Anti-Aliasing]
|
||||||
|
|
||||||
|
## Enables SMAA. TAA and Tarkov's FXAA suck. Simple as. DO NOT use with upscaling because it makes the image really blurry.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
SMAA = false
|
||||||
|
|
||||||
|
## Changes SMAA Quality.
|
||||||
|
# Setting type: Quality
|
||||||
|
# Default value: High
|
||||||
|
# Acceptable values: Low, Medium, High
|
||||||
|
SMAA Quality = High
|
||||||
|
|
||||||
|
## Enables TAA changes. Reduces TAA blur on 1080p displays but increases aliasing as a trade off. Requires game restart.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable TAA Changes = false
|
||||||
|
|
||||||
|
## Changes TAA jitter spread.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
TAA Jitter Spread = 0.5
|
||||||
|
|
||||||
|
## Changes TAA motion blending.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
TAA Motion Blending = 0.5
|
||||||
|
|
||||||
|
## Changes TAA stationary blending.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
TAA Stationary Blending = 0.5
|
||||||
|
|
||||||
|
## Changes TAA sharpness. This sharpens the image while in motion and is thus very unstable at higher values.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.5
|
||||||
|
# Acceptable value range: From 0.01 to 1
|
||||||
|
TAA Sharpness = 0.5
|
||||||
|
|
||||||
|
|
@ -0,0 +1,66 @@
|
||||||
|
## Settings file was created by plugin WTT-ClientCommonLib v2.0.11
|
||||||
|
## Plugin GUID: com.wtt.commonlib
|
||||||
|
|
||||||
|
[FaceCard]
|
||||||
|
|
||||||
|
## Volume for the FaceCard custom audio
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.06
|
||||||
|
# Acceptable value range: From 0 to 1
|
||||||
|
Music Volume = 0.06
|
||||||
|
|
||||||
|
[General]
|
||||||
|
|
||||||
|
## Enable Developer Mode and RESTART YOUR GAME to access zone editor and static spawn system tools
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Developer Mode = false
|
||||||
|
|
||||||
|
[Gym Radio]
|
||||||
|
|
||||||
|
## Enable/disable custom audio for the Gym radio
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enabled = true
|
||||||
|
|
||||||
|
## Volume for the Gym Radio custom audio)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.6
|
||||||
|
# Acceptable value range: From 0 to 1
|
||||||
|
Gym Radio Volume = 0.6
|
||||||
|
|
||||||
|
## Percentage chance to replace gym radio audio (0-100)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 10
|
||||||
|
# Acceptable value range: From 0 to 100
|
||||||
|
Replacement Chance = 10
|
||||||
|
|
||||||
|
## Play custom audio when first entering hideout
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Play On First Entrance = true
|
||||||
|
|
||||||
|
[Rest Space Radio]
|
||||||
|
|
||||||
|
## Enable/disable custom audio for the Rest Space radio
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enabled = true
|
||||||
|
|
||||||
|
## Volume for the Rest Space Radio custom audio)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0.6
|
||||||
|
# Acceptable value range: From 0 to 1
|
||||||
|
Rest Space Radio Volume = 0.6
|
||||||
|
|
||||||
|
## Percentage chance to replace rest space radio audio (0-100)
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 10
|
||||||
|
# Acceptable value range: From 0 to 100
|
||||||
|
Replacement Chance = 10
|
||||||
|
|
||||||
|
## Play custom audio when first entering hideout
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Play On First Entrance = true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,40 @@
|
||||||
|
## Settings file was created by plugin Kat.FastSellInFlea v1.2.0
|
||||||
|
## Plugin GUID: katrin0522.FastSellInFlea
|
||||||
|
|
||||||
|
[Settings]
|
||||||
|
|
||||||
|
## Hold this key to show quick offer adding when opened context menu
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: LeftShift
|
||||||
|
Quick Offer Hold Key = LeftShift
|
||||||
|
|
||||||
|
## Press keybind when hover on item
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: RightShift
|
||||||
|
Quick Offer Press Key When Hover = RightShift
|
||||||
|
|
||||||
|
## Choose how your offer price will be based on market values
|
||||||
|
# Setting type: AutoFleaPrice
|
||||||
|
# Default value: Average
|
||||||
|
# Acceptable values: Minimum, Average, Maximum
|
||||||
|
Flea Market Price Preset = Minimum
|
||||||
|
|
||||||
|
## TypeValue -> RawPrice - Value
|
||||||
|
## TypePercent -> RawPrice - percent%(RawPrice)
|
||||||
|
# Setting type: TypeMathPrice
|
||||||
|
# Default value: Value
|
||||||
|
# Acceptable values: Value, Percent
|
||||||
|
Type Adjust Price = Value
|
||||||
|
|
||||||
|
## The amount to subtract from the fetched flea price before add offer.
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 9999999
|
||||||
|
Price Subtract Value = 1
|
||||||
|
|
||||||
|
## The percent% to subtract from the fetched flea price before add offer.
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 1
|
||||||
|
# Acceptable value range: From 0 to 99
|
||||||
|
Price Subtract Percent % = 1
|
||||||
|
|
||||||
|
|
@ -0,0 +1,191 @@
|
||||||
|
## Settings file was created by plugin LootingBots v1.6.1
|
||||||
|
## Plugin GUID: me.skwizzy.lootingbots
|
||||||
|
|
||||||
|
[Loot Finder]
|
||||||
|
|
||||||
|
## Enables corpse looting for the selected bot types
|
||||||
|
# Setting type: BotType
|
||||||
|
# Default value: Scav, Pmc, PlayerScav, Raider
|
||||||
|
# Acceptable values: Scav, Pmc, PlayerScav, Raider, Cultist, Boss, Follower, Bloodhound, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Enable corpse looting = Scav, Pmc, PlayerScav, Raider
|
||||||
|
|
||||||
|
## When scanning for loot, corpses will be ignored if they are not visible by the bot
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable corpse line of sight check = false
|
||||||
|
|
||||||
|
## Distance (in meters) a bot is able to detect a corpse
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 80
|
||||||
|
Detect corpse distance = 80
|
||||||
|
|
||||||
|
## Enables container looting for the selected bot types
|
||||||
|
# Setting type: BotType
|
||||||
|
# Default value: Scav, Pmc, PlayerScav, Raider
|
||||||
|
# Acceptable values: Scav, Pmc, PlayerScav, Raider, Cultist, Boss, Follower, Bloodhound, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Enable container looting = Scav, Pmc, PlayerScav, Raider
|
||||||
|
|
||||||
|
## When scanning for loot, containers will be ignored if they are not visible by the bot
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable container line of sight check = false
|
||||||
|
|
||||||
|
## Distance (in meters) a bot is able to detect a container
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 80
|
||||||
|
Detect container distance = 80
|
||||||
|
|
||||||
|
## Enables loose item looting for the selected bot types
|
||||||
|
# Setting type: BotType
|
||||||
|
# Default value: Scav, Pmc, PlayerScav, Raider
|
||||||
|
# Acceptable values: Scav, Pmc, PlayerScav, Raider, Cultist, Boss, Follower, Bloodhound, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Enable loose item looting = Scav, Pmc, PlayerScav, Raider
|
||||||
|
|
||||||
|
## When scanning for loot, loose items will be ignored if they are not visible by the bot
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Enable item line of sight check = false
|
||||||
|
|
||||||
|
## Distance (in meters) a bot is able to detect an item
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 80
|
||||||
|
Detect item distance = 80
|
||||||
|
|
||||||
|
## Enable different levels of log messages to show in the logs
|
||||||
|
# Setting type: LogLevel
|
||||||
|
# Default value: Error
|
||||||
|
# Acceptable values: None, Error, Warning, Info, Debug, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Debug: Log Levels = Error
|
||||||
|
|
||||||
|
## Enable different levels of log messages specific to the mod interop methods
|
||||||
|
# Setting type: LogLevel
|
||||||
|
# Default value: Error
|
||||||
|
# Acceptable values: None, Error, Warning, Info, Debug, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Debug: Interop Log Levels = Error
|
||||||
|
|
||||||
|
## Filters new log entries only showing logs for the number of the bot specified. A value of 0 denotes no filter
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
Debug: Filter logs on bot = 0
|
||||||
|
|
||||||
|
## Renders shperes where bots are trying to navigate when container looting. (Red): Container position. (Black): 'Optimized' container position. (Green): Calculated bot destination. (Blue): NavMesh corrected destination (where the bot will move).
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Debug: Show navigation points = false
|
||||||
|
|
||||||
|
[Loot Finder (Timing)]
|
||||||
|
|
||||||
|
## Amount of seconds a bot will wait to start their first loot scan after spawning into raid.
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 6
|
||||||
|
Delay after spawn = 6
|
||||||
|
|
||||||
|
## The amount of seconds the bot will wait until triggering another loot scan
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 10
|
||||||
|
Loot scan interval = 10
|
||||||
|
|
||||||
|
## Amount of milliseconds a bot will wait after taking an item into their inventory before attempting to loot another item. Simulates the amount of time it takes for a player to look through loot decide to take something.
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 500
|
||||||
|
Delay after taking item (ms) = 500
|
||||||
|
|
||||||
|
## Adds a delay before looting an item to simulate the time it takes for a bot to "uncover (examine)" an item when searching containers, items and corpses. The delay is calculated using the ExamineTime of an object and the AttentionExamineTime of the bot.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Enable examine time = true
|
||||||
|
|
||||||
|
[Loot Settings]
|
||||||
|
|
||||||
|
## When enabled, bots will always try to close a container after they have finished looting. If the bot is inturrupted while looting, the container may remain open.
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Bots always close containers = true
|
||||||
|
|
||||||
|
## Bots will query more accurate ragfair prices to do item value checks. Will make a query to get ragfair prices when the client is first started
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Use flea market prices = false
|
||||||
|
|
||||||
|
## Calculate weapon value by looking up each attachement. More accurate than just looking at the base weapon template but a slightly more expensive check
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Calculate weapon value from attachments = true
|
||||||
|
|
||||||
|
## Allows bots to take the attachments off of a weapon if they are not able to pick the weapon up into their inventory
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Allow weapon attachment stripping = true
|
||||||
|
|
||||||
|
## PMC bots will only loot items that exceed the specified value in roubles. When set to 0, bots will ignore the minimum value threshold
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 12000
|
||||||
|
PMC: Min loot value threshold = 12000
|
||||||
|
|
||||||
|
## PMC bots will NOT loot items that exceed the specified value in roubles. When set to 0, bots will ignore the maximum value threshold
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
PMC: Max loot value threshold = 0
|
||||||
|
|
||||||
|
## The equipment a PMC bot is able to equip during raid
|
||||||
|
# Setting type: CanEquipEquipmentType
|
||||||
|
# Default value: All
|
||||||
|
# Acceptable values: Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
PMC: Allowed gear to equip = All
|
||||||
|
|
||||||
|
## The equipment a PMC bot is able to place in their backpack/rig
|
||||||
|
# Setting type: EquipmentType
|
||||||
|
# Default value: Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, Dogtag
|
||||||
|
# Acceptable values: Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, Dogtag, ArmorPlate, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
PMC: Allowed gear in bags = Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, Dogtag
|
||||||
|
|
||||||
|
## All non-PMC bots will only loot items that exceed the specified value in roubles. When set to 0, bots will ignore the minimum value threshold
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 5000
|
||||||
|
Scav: Min loot value threshold = 5000
|
||||||
|
|
||||||
|
## All non-PMC bots will NOT loot items that exceed the specified value in roubles. When set to 0, bots will ignore the maximum value threshold
|
||||||
|
# Setting type: Single
|
||||||
|
# Default value: 0
|
||||||
|
Scav: Max loot value threshold = 0
|
||||||
|
|
||||||
|
## The equipment a non-PMC bot is able to equip during raid
|
||||||
|
# Setting type: CanEquipEquipmentType
|
||||||
|
# Default value: All
|
||||||
|
# Acceptable values: Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Scav: Allowed gear to equip = All
|
||||||
|
|
||||||
|
## The equipment a non-PMC bot is able to place in their backpack/rig
|
||||||
|
# Setting type: EquipmentType
|
||||||
|
# Default value: Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, Dogtag
|
||||||
|
# Acceptable values: Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, Dogtag, ArmorPlate, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Scav: Allowed gear in bags = Backpack, TacticalRig, ArmoredRig, ArmorVest, Weapon, Grenade, Helmet, Dogtag
|
||||||
|
|
||||||
|
## Enables logs for the item apprasier that calcualtes the weapon values
|
||||||
|
# Setting type: LogLevel
|
||||||
|
# Default value: Error
|
||||||
|
# Acceptable values: None, Error, Warning, Info, Debug, All
|
||||||
|
# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning)
|
||||||
|
Debug: Item Appraiser Log Levels = Error
|
||||||
|
|
||||||
|
[Performance]
|
||||||
|
|
||||||
|
## Limits the amount of bots that are able to simultaneously run looting logic. A value of 0 represents no limit
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 20
|
||||||
|
Maximum looting bots = 20
|
||||||
|
|
||||||
|
## Any bot farther than the specified distance in meters will not run any looting logic. A value of 0 represents no limit
|
||||||
|
# Setting type: Int32
|
||||||
|
# Default value: 0
|
||||||
|
Limit looting by distance to player = 0
|
||||||
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
## Settings file was created by plugin SAIN v4.3.1
|
||||||
|
## Plugin GUID: me.sol.sain
|
||||||
|
|
||||||
|
[SAIN Editor]
|
||||||
|
|
||||||
|
## Opens the Editor on press
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: false
|
||||||
|
Open Editor = false
|
||||||
|
|
||||||
|
## The keyboard shortcut that toggles editor
|
||||||
|
# Setting type: KeyboardShortcut
|
||||||
|
# Default value: F6
|
||||||
|
Open Editor Shortcut = F6
|
||||||
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
## Settings file was created by plugin DrakiaXYZ-QuickMoveToContainer v1.4.0
|
||||||
|
## Plugin GUID: xyz.drakia.quickmovetocontainer
|
||||||
|
|
||||||
|
[1. General]
|
||||||
|
|
||||||
|
## Whether to cascade through all open containers, in order, looking for a target
|
||||||
|
# Setting type: Boolean
|
||||||
|
# Default value: true
|
||||||
|
Target All Open Containers = true
|
||||||
|
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2025 Michael P. Starkweather
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
@ -0,0 +1,833 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Customs (TarkovDev)",
|
||||||
|
"Author": "Tarkov.dev",
|
||||||
|
"AuthorLink": "https://tarkov.dev",
|
||||||
|
"MapInternalNames": [ "bigmap" ],
|
||||||
|
"CoordinateRotation": 180,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -372, "y": -306},
|
||||||
|
"Max": {"x": 698, "y": 235}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Underground": {
|
||||||
|
"Level": -1,
|
||||||
|
"ImagePath": "Maps/Customs_TarkovDev/Layers/customs_level_-1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -372, "y": -306},
|
||||||
|
"Max": {"x": 698, "y": 235}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // next to warehouse 17 switch
|
||||||
|
"Min": {"x": 98, "y": -78, "z": -100},
|
||||||
|
"Max": {"x": 127, "y": -30, "z": 0.5}
|
||||||
|
},
|
||||||
|
{ // smokestack building
|
||||||
|
"Min": {"x": 239, "y": -41, "z": -100},
|
||||||
|
"Max": {"x": 270, "y": 4, "z": 0.5}
|
||||||
|
},
|
||||||
|
{ // zb-1011
|
||||||
|
"Min": {"x": 620, "y": -137, "z": -100},
|
||||||
|
"Max": {"x": 635, "y": -125, "z": 0.5}
|
||||||
|
},
|
||||||
|
{ // zb-1012
|
||||||
|
"Min": {"x": 458, "y": -122, "z": -100},
|
||||||
|
"Max": {"x": 473, "y": -110, "z": 0.5}
|
||||||
|
},
|
||||||
|
{ // old gas
|
||||||
|
"Min": {"x": 308, "y": -184, "z": -100},
|
||||||
|
"Max": {"x": 314, "y": -173, "z": 0.5}
|
||||||
|
},
|
||||||
|
{ // switch basement
|
||||||
|
"Min": {"x": 323, "y": -88, "z": -100},
|
||||||
|
"Max": {"x": 349, "y": -32, "z": 0.5}
|
||||||
|
},
|
||||||
|
{ // zb-013
|
||||||
|
"Min": {"x": 193, "y": -158, "z": -100},
|
||||||
|
"Max": {"x": 219, "y": -137, "z": 0.5}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Ground Floor": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Customs_TarkovDev/Layers/customs_level_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -372, "y": -306},
|
||||||
|
"Max": {"x": 698, "y": 235}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -372, "y": -306, "z": -100},
|
||||||
|
"Max": {"x": 698, "y": 235, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"2nd Floor": {
|
||||||
|
"Level": 1,
|
||||||
|
"ImagePath": "Maps/Customs_TarkovDev/Layers/customs_level_1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -372, "y": -306},
|
||||||
|
"Max": {"x": 698, "y": 235}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // warehouse 3 switch
|
||||||
|
"Min": {"x": 406, "y": -98, "z": 2.7},
|
||||||
|
"Max": {"x": 422, "y": -83, "z": 100}
|
||||||
|
},
|
||||||
|
{ // next to warehouse 17 switch
|
||||||
|
"Min": {"x": 80, "y": -82, "z": 2.7},
|
||||||
|
"Max": {"x": 130, "y": -27, "z": 6.5}
|
||||||
|
},
|
||||||
|
{ // warehouse 17 switch
|
||||||
|
"Min": {"x": 17, "y": -100, "z": 2.7},
|
||||||
|
"Max": {"x": 77, "y": -28, "z": 7.5}
|
||||||
|
},
|
||||||
|
{ // smokestack building
|
||||||
|
"Min": {"x": 240, "y": -85, "z": 2.7},
|
||||||
|
"Max": {"x": 300, "y": 4, "z": 7.5}
|
||||||
|
},
|
||||||
|
{ // dorms
|
||||||
|
"Min": {"x": 165, "y": 125, "z": 2.7},
|
||||||
|
"Max": {"x": 243, "y": 190, "z": 5.0}
|
||||||
|
},
|
||||||
|
{ // mechanic
|
||||||
|
"Min": {"x": 72, "y": -170, "z": 2.7},
|
||||||
|
"Max": {"x": 116, "y": -83, "z": 6.5}
|
||||||
|
},
|
||||||
|
{ // switch 2nd
|
||||||
|
"Min": {"x": 341, "y": -84, "z": 2.7},
|
||||||
|
"Max": {"x": 356, "y": -30, "z": 6.5}
|
||||||
|
},
|
||||||
|
{ // switch 2nd
|
||||||
|
"Min": {"x": 321, "y": -59, "z": 2.7},
|
||||||
|
"Max": {"x": 334, "y": -52, "z": 6.5}
|
||||||
|
},
|
||||||
|
{ // scav checkpoint
|
||||||
|
"Min": {"x": 577, "y": -1, "z": 2.7},
|
||||||
|
"Max": {"x": 589, "y": 10, "z": 6.5}
|
||||||
|
},
|
||||||
|
{ // dead scav warehouse
|
||||||
|
"Min": {"x": 532, "y": -134, "z": 2.7},
|
||||||
|
"Max": {"x": 580, "y": -104, "z": 100}
|
||||||
|
},
|
||||||
|
{ // pump 2nd
|
||||||
|
"Min": {"x": 599, "y": -139, "z": 2.7},
|
||||||
|
"Max": {"x": 625, "y": -120, "z": 100}
|
||||||
|
},
|
||||||
|
{ // big red 2nd
|
||||||
|
"Min": {"x": -223, "y": -131, "z": 5.7},
|
||||||
|
"Max": {"x": -199, "y": -90, "z": 100}
|
||||||
|
},
|
||||||
|
{ // skeleton
|
||||||
|
"Min": {"x": 169, "y": -160, "z": 5.7},
|
||||||
|
"Max": {"x": 239, "y": 3, "z": 100}
|
||||||
|
},
|
||||||
|
{ // switch sniper
|
||||||
|
"Min": {"x": 316, "y": -95, "z": 5.7},
|
||||||
|
"Max": {"x": 336, "y": -56, "z": 100}
|
||||||
|
},
|
||||||
|
{ // USEC 2nd
|
||||||
|
"Min": {"x": 556, "y": -92, "z": 5.7},
|
||||||
|
"Max": {"x": 584, "y": -46, "z": 100}
|
||||||
|
},
|
||||||
|
{ // construction 2nd
|
||||||
|
"Min": {"x": 65, "y": -22, "z": 5.7},
|
||||||
|
"Max": {"x": 93, "y": 0, "z": 100}
|
||||||
|
},
|
||||||
|
{ // chemical warehouse sniper scav
|
||||||
|
"Min": {"x": 450, "y": -90, "z": 14},
|
||||||
|
"Max": {"x": 497, "y": -44, "z": 15}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"3rd Floor": {
|
||||||
|
"Level": 2,
|
||||||
|
"ImagePath": "Maps/Customs_TarkovDev/Layers/customs_level_2.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -372, "y": -306},
|
||||||
|
"Max": {"x": 698, "y": 235}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // next to warehouse 17 switch
|
||||||
|
"Min": {"x": 80, "y": -82, "z": 6.5},
|
||||||
|
"Max": {"x": 130, "y": -27, "z": 100}
|
||||||
|
},
|
||||||
|
{ // warehouse 17 switch
|
||||||
|
"Min": {"x": 17, "y": -100, "z": 7.5},
|
||||||
|
"Max": {"x": 77, "y": -28, "z": 100}
|
||||||
|
},
|
||||||
|
{ // smokestack building
|
||||||
|
"Min": {"x": 240, "y": -85, "z": 7.5},
|
||||||
|
"Max": {"x": 300, "y": 4, "z": 9.8}
|
||||||
|
},
|
||||||
|
{ // dorms
|
||||||
|
"Min": {"x": 165, "y": 125, "z": 5.0},
|
||||||
|
"Max": {"x": 234, "y": 190, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"4th Floor": {
|
||||||
|
"Level": 3,
|
||||||
|
"ImagePath": "Maps/Customs_TarkovDev/Layers/customs_level_3.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -372, "y": -306},
|
||||||
|
"Max": {"x": 698, "y": 235}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // smokestack building
|
||||||
|
"Min": {"x": 237, "y": -85, "z": 9.8},
|
||||||
|
"Max": {"x": 300, "y": 4, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [ // all of these labels are from Tarkov.dev map data under MIT license
|
||||||
|
{
|
||||||
|
"Text": "Big Red",
|
||||||
|
"Position": {"x": -215, "y": -119, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorms",
|
||||||
|
"Position": {"x": 200, "y": 150, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "New Gas",
|
||||||
|
"Position": {"x": 404, "y": 31, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Old Gas",
|
||||||
|
"Position": {"x": 331, "y": -173, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Fortress",
|
||||||
|
"Position": {"x": 201, "y": -127, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Crackhouse",
|
||||||
|
"Position": {"x": 83, "y": -153, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Streamer House",
|
||||||
|
"Position": {"x": 567, "y": -67, "z": 0}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Main Bridge",
|
||||||
|
"Position": {"x": -69, "y": 7, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": 6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sniper Hill",
|
||||||
|
"Position": {"x": 110, "y": 85, "z": 0}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Storage",
|
||||||
|
"Position": {"x": -288, "y": -134, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Trailer Park",
|
||||||
|
"Position": {"x": -211, "y": -219, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Junk Bridge",
|
||||||
|
"Position": {"x": -66, "y": 46, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Repair Shop",
|
||||||
|
"Position": {"x": 106, "y": -90, "z": 0}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sniper Ridge",
|
||||||
|
"Position": {"x": 491, "y": 63, "z": 0},
|
||||||
|
"DegreesRotation": 5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Old Construction",
|
||||||
|
"Position": {"x": 75, "y": -9, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Skeleton",
|
||||||
|
"Position": {"x": 200, "y": -13, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": -9
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Warehouse 3",
|
||||||
|
"Position": {"x": 390, "y": -94, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Depot",
|
||||||
|
"Position": {"x": 472, "y": -67, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Warehouse 7",
|
||||||
|
"Position": {"x": 555, "y": -118, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Military Checkpoint",
|
||||||
|
"Position": {"x": 572, "y": 0, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Bus Station",
|
||||||
|
"Position": {"x": 238, "y": 53, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Warehouse 4",
|
||||||
|
"Position": {"x": 333, "y": -67, "z": 1},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Powerline Tower",
|
||||||
|
"Position": {"x": 497, "y": 110, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Warehouse 17",
|
||||||
|
"Position": {"x": 46, "y": -59, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "ZB-013 Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": 352.230316, "y": -40.8052826, "z": 2.61458874 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Military Base CP",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 643.3982, "y": 126.869247, "z": 2.400003 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Passage Between Rocks",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 539.394, "y": 200.3388, "z": 11.8200016 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Railroad to Military Base",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 489.058228, "y": 221.391266, "z": 3.950006 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Old Road Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 181.769958, "y": 214.01001, "z": 1.4999938 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sniper Roadblock",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 15.3699341, "y": 127.94, "z": 0.139977932 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Railroad to Port",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -142.550232, "y": 46.9100037, "z": -0.629980564 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Crossroads",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -331.090271, "y": -85.24008, "z": 2.19002676 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Trailer Park Workers' Shack",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -248.540222, "y": -232.9901, "z": 2.550012 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Railroad to Tarkov",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -166.020264, "y": -218.380112, "z": 2.42000723 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Warehouse 17",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 50.7402344, "y": -69.8183746, "z": 2.13601065 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Factory Shacks",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 205.5899, "y": 3.31001282, "z": 3.719995 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Warehouse 4",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 341.569946, "y": -25.84999, "z": 3.550012 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Old Gas Station Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 301.639923, "y": -197.940048, "z": 3.469995 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Factory Far Corner",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 654.53, "y": -160.49, "z": 3.19999838 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Administration Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 671.13, "y": -54.6699753, "z": 3.19999838 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Checkpoint",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 652.24, "y": -27.1200027, "z": 1.00499988 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ZB-013",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 200.9755, "y": -153.086456, "z": -1.1484108 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorms V-Ex",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 181.08, "y": 213.25, "z": -0.71 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ZB-1011",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 621.4368, "y": -127.700775, "z": -2.65 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Crossroads",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -335.120239, "y": -73.98008, "z": -3.97000742 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Old Gas Station",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 309.499634, "y": -174.320175, "z": -2.182013 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Trailer Park",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -313.720276, "y": -233.2801, "z": -1.72000742 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RUAF Roadblock",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -14.5001221, "y": -138.450043, "z": 1.92000723 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Railroad Passage (Flare)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 139.592712, "y": -324.7145, "z": 3.800012 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Boiler Room Basement (Co-op)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 100.56, "y": -44.42, "z": -4.98 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Reserve",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 651.7, "y": 124.6, "z": 1.99 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Factory",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 354.31, "y": -190.1, "z": 2.31 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Interchange",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": -335.24, "y": -205.68, "z": 2.11 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Shoreline",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 23.67, "y": 139.53, "z": -1.3999995 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Smugglers' Boat (Secret)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -41.5100021, "y": 122.67, "z": -12.633 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Smugglers' Bunker (Secret)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 463.18, "y": -112.36, "z": -1.46 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tarcone Director's Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -205.499237, "y": -109.994392, "z": 8.110943 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780d0532459777a5108b9a2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Portable Cabin",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -251.320953, "y": -221.941071, "z": 3.85700083 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780d07a2459777de4559324"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Trailer Park Portable Cabin",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -194.560135, "y": -207.398911, "z": 2.34600019 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5913611c86f77479e0084092"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Factory Shortcut",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 356.052551, "y": -14.5693512, "z": 2.34000182 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5448ba0b4bdc2d02308b456c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Unknown Cabin",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 370.014923, "y": -50.08902, "z": 2.15399933 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "593962ca86f774068014d9af"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Factory Shortcut",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 356.957367, "y": -8.079105, "z": 2.14515162 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5448ba0b4bdc2d02308b456c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 114",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 233.549591, "y": 159.682587, "z": 0.889000237 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "59387a4986f77401cc236e62"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 206",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 230.641281, "y": 138.671631, "z": 3.86939716 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5938603e86f77435642354f4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 105",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 227.877258, "y": 135.61264, "z": 0.8901995 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "591382d986f774465a6413a7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 110",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 231.0886, "y": 159.435349, "z": 0.910999358 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "59136e1e86f774432f15d133"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 104",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 230.101257, "y": 134.913879, "z": 0.8860002 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "591383f186f7744a4c5edcf3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm Guard Desk",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 225.517273, "y": 138.366241, "z": 0.8858002 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "59136a4486f774447a1ed172"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 204",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 173.379211, "y": 150.356216, "z": 3.83760285 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "59148c8a86f774197930e983"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 108",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 177.473969, "y": 178.489075, "z": 0.8406372 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5914578086f774123569ffa4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 314 Marked Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 180.671432, "y": 183.722443, "z": 6.84058475 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cf7f2459777de4559322"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 218",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 190.192383, "y": 175.3542, "z": 3.84178257 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cf9e2459777df90dcb73"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 118",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 194.794083, "y": 174.546783, "z": 0.830601 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5672c92d4bdc2d180f8b4567"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 220",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 193.957886, "y": 174.821625, "z": 3.831203 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cfa52459777dfb276eb1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 308",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 177.4756, "y": 178.488113, "z": 6.850606 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cf722459777a5108b9a1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 315",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 179.284683, "y": 174.810455, "z": 6.830814 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cf692459777de4559321"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 214",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 178.105484, "y": 183.746643, "z": 3.83598375 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cf942459777df90dcb72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 203",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 176.041077, "y": 150.26828, "z": 3.83258247 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5938504186f7740991483f30"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 103",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 175.734467, "y": 149.366577, "z": 0.820169449 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5938994586f774523a425196"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 306",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 174.544632, "y": 157.45575, "z": 6.828404 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780cda02459777b272ede61"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dorm 303",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 176.039612, "y": 150.268463, "z": 6.82898426 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "593aa4be86f77457f56379f8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gas Station Storage Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 415.416443, "y": 35.6602058, "z": 2.18918633 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5913877a86f774432f15d444"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gas Station Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 415.779572, "y": 38.5554962, "z": 2.17909455 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5780d0652459777df90dcb74"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "USEC Stash",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 562.780945, "y": -58.9465332, "z": 2.216738 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5da743f586f7744014504f72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "USEC Stash",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 568.747131, "y": -50.85814, "z": 2.193743 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5da743f586f7744014504f72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Orange Tanker Truck",
|
||||||
|
"ImagePath": "Markers/car_door.png",
|
||||||
|
"Position": { "x": 101.818916, "y": -5.54527664, "z": 3.44780731 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5937ee6486f77408994ba448"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Military Checkpoint",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 577.6575, "y": 4.049543, "z": 0.8078748 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5913915886f774123603c392"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ZB-013",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 198.927917, "y": -146.172791, "z": -1.779768 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5448ba0b4bdc2d02308b456c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Portable Bunkhouse",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 202.664337, "y": 11.72344, "z": 4.73085976 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5938144586f77473c2087145"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Company Director Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 96.02269, "y": -58.42183, "z": 8.23889 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "6761a6f90575f25e020816a4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg id="svg89" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1062.4827 535.174">
|
||||||
|
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.st0 {
|
||||||
|
fill: #70777f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st1 {
|
||||||
|
fill: gold;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<g id="Fourth_Floor">
|
||||||
|
<polygon class="st1" points="421.4615 245.6966 421.367 246.1004 423.0542 246.4975 422.7611 247.8841 420.0591 247.2905 420.4875 245.4896 421.4615 245.6966"/>
|
||||||
|
<rect class="st1" x="432.9531" y="296.5191" width="1.3" height="3.2" transform="translate(49.5488 657.8259) rotate(-77.6351)"/>
|
||||||
|
<rect class="st1" x="433.3929" y="294.496" width="1.3" height="3.2" transform="translate(51.8706 656.6656) rotate(-77.6351)"/>
|
||||||
|
<path class="st0" d="M431.4094,225.2035l-2.6647,12.6031-1.9502-.3801.0503-.2334,1.7052.3275,2.6103-12.369-5.9427-1.2367-2.6858,12.3546,3.3783.7251-.0574.2467-.4951-.0993-1.0134,4.6468-.2936-.0778,1.03-4.6327-2.6072-.5379-1.2947,5.9341,2.6003.5751.1517-.7119.2852.0699-.2371,1.0549-2.8889-.6446-.6024,2.6717,2.6525.6018-.3789,1.7927,3.3891.7956,1.6977-8.2336.2937.0628-1.6985,8.2281,11.0535,2.3806,5.0211-23.6025-11.1082-2.3115h0ZM435.8144,248.5449l-6.5367-1.4583,4.0769-19.4111,6.4367,1.4002-3.977,19.4691h0Z"/>
|
||||||
|
<path class="st0" d="M435.0216,299.0982l.8746.1843,5.6258,1.1852,7.8143-35.0881-13.6983-2.849-6.7035,31.6515-.7279,3.4369,3.2426.7034.7207-3.3006,3.5753.7821-.2784,1.2698-.4452,2.0244h0ZM439.2375,289.4986c-1.4661,0-3.2-1.1356-3.2-3.2,0-1.5829,1.1872-3.2,3.2467-3.2,1.9467,0,3.1533,1.6325,3.1533,3.2,0,1.446-1.0901,3.2-3.2,3.2h0ZM440.9375,280.9986c-2.1192,0-3.2-1.7226-3.2-3.2,0-1.8397,1.4586-3.2,3.2-3.2,2.0457,0,3.2,1.7473,3.2,3.2,0,1.4406-1.0806,3.2-3.2,3.2ZM442.8375,272.3986c-2.1856,0-3.2-1.8578-3.2-3.2,0-1.975,1.6226-3.2,3.2-3.2,1.7214,0,3.2,1.3909,3.2,3.2,0,1.9227-1.6261,3.2-3.2,3.2Z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
|
|
@ -0,0 +1,723 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg id="svg89" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1062.4827 535.174">
|
||||||
|
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.st0 {
|
||||||
|
stroke-dashoffset: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st0, .st1, .st2, .st3, .st4, .st5, .st6, .st7, .st8, .st9, .st10, .st11, .st12, .st13, .st14, .st15, .st16, .st17 {
|
||||||
|
fill: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st0, .st6, .st7, .st8, .st9, .st10, .st13, .st14, .st17 {
|
||||||
|
stroke: #914833;
|
||||||
|
stroke-dasharray: 6;
|
||||||
|
stroke-width: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st1 {
|
||||||
|
stroke-width: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st1, .st3, .st15 {
|
||||||
|
stroke: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st2, .st4, .st5 {
|
||||||
|
stroke: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st2, .st16 {
|
||||||
|
stroke-miterlimit: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st18 {
|
||||||
|
fill: #ded6b6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st3 {
|
||||||
|
stroke-width: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st5, .st19, .st16 {
|
||||||
|
stroke-width: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st20 {
|
||||||
|
fill: #37414c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st6 {
|
||||||
|
stroke-dashoffset: 5.7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st7 {
|
||||||
|
stroke-dashoffset: 6.9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st8 {
|
||||||
|
stroke-dashoffset: 9.3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st21 {
|
||||||
|
fill: #1f5054;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st22 {
|
||||||
|
fill: #ddd6b6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st23 {
|
||||||
|
fill: #4a6b96;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st24 {
|
||||||
|
fill: #70777f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st25 {
|
||||||
|
fill: #dcd5b6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st9 {
|
||||||
|
stroke-dashoffset: .9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st26 {
|
||||||
|
fill: gold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st19 {
|
||||||
|
fill: red;
|
||||||
|
fill-opacity: .4;
|
||||||
|
stroke: red;
|
||||||
|
stroke-dasharray: 4 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st11 {
|
||||||
|
stroke: #946d3e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st11, .st15 {
|
||||||
|
stroke-width: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st12 {
|
||||||
|
stroke: #c4e3c3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st13 {
|
||||||
|
stroke-dashoffset: 8.4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st14 {
|
||||||
|
stroke-dashoffset: 10.2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st27 {
|
||||||
|
fill: #1a2632;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st28 {
|
||||||
|
fill: #144043;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st16 {
|
||||||
|
stroke: #ffce00;
|
||||||
|
stroke-dasharray: 6 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st29 {
|
||||||
|
fill: #c6c2c2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st17 {
|
||||||
|
stroke-dashoffset: 4.2px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<g id="Ground_Level">
|
||||||
|
<g id="Ground">
|
||||||
|
<path id="the_ground" class="st21" d="M503.5059,2.252l-69.3223,91.0254-20.0939,2.8491-30.4316,6.6151-48.9022,8.6589-1.594,2.8192,5.7599,32.3687-.0156,24.9273-2.592-.6353-2.7631-1.8008L55.5371,134.4102l-15.7891.8477,1.2439,9.726-8.1229,57.8125-5.5492,43.0013-2.1597,10.7258,17.998,2.4043-.668,25.2676-3.0485,9.6957.2275,10.1395-2.5852,22.7234-9.2784,22.6285-2.1279,5.4124-1.7738,16.4453-4.4489,20.129-1.3008,26.1113,1.3477,11.4746,13.1465,4.5039,4.1797-3.3184,21.9746,1.3809.3027-5.7695,7.7949,1.9609,8.5781,7.3516,19.0312,2.6641,22.5488,18.2793,9.4554,6.1105,2.8284,8.1025-4.1432,6.828-2.4766,7.4941,31.6875,19.4961,6.834-.4824,12.601,6.5663,3.8501,1.8015,9.4199-.8698,14.5612,11.6963,6.8705,5.8604,9.5189,4.3909,7.7371.989,18.5291-3.9736,17.6684-19.9933,17.3087,2.6575,12.9546,8.2908,7.0312-4.4121,10.2729-10.0852-4.191-4.4126,23.42-30.6956,2.9262-.9614,8.7401.4608,14.5357-4.3117,10.7061-1.4651,12.3604,10.6182,8.4834,5.6552,14.1848,4.7246,93.2175,28.1719,20.4758,4.5014,16.327,2.0435,7.9246-1.7582,21.2205-13.1888,31.4427-26.3215,17.0247-17.2946,10.0923-12.9392,4.6937-11.066,6.448-4.464,8.299-2.9603,12.5511-1.2653,9.9879.6468-1.0573,10.3031,11.5631,1.0595.849-10.6032,13.8358,1.157,46.9835,1.7759,32.0595-.9056s6.6664-24.065,8.8218-36.3436c.8248-4.6985,1.3472-9.4601,1.5627-14.2256.259-5.7295-1.1198-11.5225-.3277-17.2029.3358-2.4084,2.1289-6.9775,2.1289-6.9775l2.2027-5.6628,4.7263-1.0401,9.3397,1.2616,21.0164-3.2272,16.3691,2.6406,6.3185-.2845,8.0975,1.3099,4.3036-3.3584,4.0753-8.7881,3.5449-2.2891,5.4592-6.3314,10.4655-6.6731,39.5906-21.2801,40.1638-20.326,37.1705-19.7995,2.7317-2.3908,3.0417-4.7439,5.9531-1.4238,15.9844-19.3379-.4258-14.5449,14.7245-1.7949-.5503-12.0999,1.8453-6.4938,1.8242-104.3066-7.3029,4.3906-2.0703-7.2832-3.7246-.3184-1.4698-3.5043.1983-22.2418-2.5905-2.1819-13.8982-2.4955-8.8372-.4687-20.5781,6.2993-16.7209,1.7863-10.9258-4.5332-77.5586-1.6133-1.4258,15.4023-72.1953.8281-41.5625,8.8008s5.8625,15.9028,7.6764,24.1539c1.2983,5.9057,2.263,17.9984,2.263,17.9984l-1.2382.8878-12.7345,3.1967-10.4708,4.4812-11.0155.7839,1.7637,15.2812-19.334,2.8164-19.1816,6.5059-2.3409,3.7167-2.3535,1.0291-12.6186,2.2927-16.8668,1.1783-5.0322-21.9273-4.4366-28.7152-26.0297,4.0569-66.48,14.3162-27.7676-42.1113-9.5215-42.75,24.1738-24.1973L504.1348,1.4258s-.6289.8262-.6289.8262Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Trees">
|
||||||
|
<path class="st28" d="M818.6517,117.2778c-.3652-1.6001-2.0754-2.5442-3.0616-3.8561-.4859-.6464-.9332-1.321-1.4059-1.9771-1.1218-1.557-2.5829-2.9109-3.3947-4.6497-.7304-1.5646-.9945-3.3197-1.2458-5.028-.295-2.0051-.7641-4.0999-.2994-6.0725.3924-1.6657,1.2018-3.3784,2.5151-4.4757.9277-.7752,2.2645-.8554,3.4273-1.1864,1.354-.3854,2.7211-.7718,4.1203-.9273,1.7365-.193,3.5766-.5299,5.2415,0,.5738.1826.9599.731,1.4742,1.0442.3676.2239.8354.2964,1.1465.5938.6592.6299,1.0057,1.5322,1.3669,2.3694.5422,1.2567,1.0459,2.5708,1.1796,3.9329.2429,2.4746-.7227,4.9388-.7128,7.4252.0101,2.5356.607,5.0367.787,7.5659.1088,1.5288.2947,3.0665.1768,4.5947-.0774,1.0028-.3162,1.9903-.5773,2.9616-.3279,1.2199-1.2068,2.319-1.2375,3.5818-.0324,1.3352.6577,2.5942,1.1229,3.846.3481.9365.7321,1.869,1.2431,2.7275.1779.2989.4747.521.6284.8331.5197,1.0558.7267,2.246.9367,3.4039.287,1.5829.2692,3.2063.4351,4.8064.1016.9791.3044,1.9494.343,2.933.0643,1.6408.0915,3.3044-.1874,4.9226-.2983,1.7306-.8297,3.4371-1.5735,5.028-.3848.8232-.9341,1.5623-1.4742,2.2931-.3586.4854-.803.9028-1.1683,1.3833-.8403,1.1054-2.0236,2.091-2.3471,3.4413-.4559,1.9027.2974,3.918.7504,5.8214.1475.6198.3936,1.2132.6357,1.8025.411,1.0003,1.2139,1.8665,1.3837,2.9345.2867,1.804.0486,3.7642-.6851,5.4371-.4849,1.1054-1.4651,1.9313-2.3365,2.7665-.1962.188-.4694.2914-.6445.4991-.4814.5709-.9515,1.2376-1.053,1.9775-.2192,1.5997.4099,3.2448,1.0423,4.7305.3084.7245,1.127,1.1998,1.3104,1.9655.4506,1.881.5789,4.2955-.6819,5.7623-.6965.8103-2.0229.8901-3.0908.8506-.8546-.0316-1.6961-.4007-2.4164-.8617-.4619-.2956-.7162-.841-1.1506-1.1756-.7056-.5434-1.5118-.9526-2.3235-1.3192-.8071-.3645-2.061-.1038-2.5115-.8662-1.0315-1.7456.5536-4.0246,1.0366-5.9938.275-1.1209.7489-2.185,1.0557-3.2976.3278-1.1888.9591-2.3764.837-3.6035-.1307-1.3129-.9831-2.4581-1.6379-3.6035-.6118-1.07-1.8295-1.8296-2.1246-3.0264-.4122-1.6716.0375-3.5182.6625-5.1225.391-1.0035,1.3962-1.6692,1.8626-2.64.4178-.8696.8307-1.8162.8033-2.7806-.0509-1.7947-1.0501-3.444-1.7861-5.0816-.2795-.622-.8708-1.1177-.9929-1.7886-.2987-1.6421.183-3.3772.7328-4.9531.3084-.8839.856-1.6737,1.4066-2.4309.4319-.5941,1.05-1.0382,1.4742-1.638.8591-1.2148,1.3983-2.627,2.1329-3.9209.3969-.6991,1.0295-1.2964,1.2286-2.0753.4634-1.8137.5328-3.8866-.1918-5.6127-.4705-1.1209-1.6328-1.8046-2.5145-2.6414-.7302-.6931-1.7823-1.0981-2.2932-1.9656-.6373-1.0822-.8992-2.4432-.757-3.6911.0984-.863.5707-1.6691,1.0846-2.3694.4933-.6723,1.4362-.9561,1.8574-1.6758.3328-.5686.5823-1.2854.4357-1.9277h0s-.0005.0003-.0005.0003Z"/>
|
||||||
|
<path class="st28" d="M981.1371,86.1566c.3236-1.4112,1.7258-2.4712,1.8926-3.9094.1614-1.3905-.1971-2.8972-.9157-4.0986-.7068-1.1816-2.5964-1.4292-3.126-2.7002-.4791-1.1496-.6107-2.8335.2564-3.7275.9285-.9573,2.6536-.2682,3.981-.3966,1.9292-.1866,4.0528.3181,5.7891-.5432.9246-.4586,1.4259-1.494,2.0956-2.2793.3704-.4343.6065-.9992,1.0618-1.3435,1.2359-.9348,2.7462-1.7115,4.2942-1.7808.6028-.027,1.2194.2157,1.7274.5414.8463.5427,1.4194,1.4333,2.0206,2.2391.2726.3653.4592.7882.7124,1.1672.7335,1.0982,1.2241,2.4853,2.3334,3.2018,1.1683.7547,2.8986.1266,4.0844.8536.5132.3146.7054.9821,1.1312,1.4076.657.6565,1.4732,1.1335,2.1734,1.7439,1.1233.9792,2.4633,1.8054,3.2472,3.0727.4581.7407.7313,1.6295.7592,2.4999.073,2.2895-.9842,4.4758-1.5714,6.6899-.5074,1.9132-.1776,4.4115-1.6853,5.6939-.7023.5974-1.8316.4829-2.7439.3493-1.2346-.1808-2.2713-1.0346-3.4218-1.5176-.6338-.2661-1.3125-.433-1.917-.7602-1.0846-.5871-2.0344-1.3961-3.0226-2.1341-.4989-.3726-.9622-.7919-1.4664-1.1572-.7013-.5081-1.4062-1.0187-2.1648-1.4364-.7816-.4304-1.5829-.8567-2.4432-1.0934-1.159-.319-2.4987-.9398-3.5818-.4185-.4135.199-.6074.7256-.7281,1.1683-.2567.9415-.0954,1.9654.0729,2.9266.1786,1.0204,1.5129,2.0583.9828,2.9483-.9646,1.6195-3.6911.8195-5.569.9828-1.4423.1254-3.2078.8932-4.343-.0052-1.4034-1.1105-1.4078-3.4419-1.2402-5.2237.1013-1.0765,1.0989-1.9035,1.3246-2.9609h-.0002Z"/>
|
||||||
|
<path class="st28" d="M711.5292,342.0057c-2.3058.0684-4.6384-.0006-6.9083.4105-1.0021.1815-2.0472.3744-2.9195.8999-.3969.2391-.7322.5931-.9828.9828-.5175.8045-.8463,1.7447-1.0048,2.6881-.3741,2.2275.2831,4.5182.1685,6.774-.0896,1.7638-.721,3.4908-.6678,5.256.0371,1.2298.5485,2.4042.6851,3.627.1697,1.5203.2532,3.0592.1638,4.5863-.0839,1.4338.0362,2.9998-.6552,4.2587-.3145.5727-.9415.9136-1.4749,1.2909-.9719.6875-2.1514,1.0487-3.1129,1.7508-.4811.3513-1.0709.6709-1.3089,1.2171-.8723,2.0022-.171,4.3746,0,6.5518.0688.8759.4995,1.7293.4114,2.6035-.1175,1.1659-.848,2.1855-1.2303,3.2931-.2057.596-.4612,1.1823-.572,1.803-.2112,1.1829-.0352,2.4065-.1664,3.601-.1433,1.3053-.5474,2.5741-.6764,3.8808-.1794,1.8179.2455,3.6913-.1323,5.4785-.116.5488-.4055,1.047-.6437,1.5548-.4292.9148-1.0427,1.7419-1.4127,2.6822-.6253,1.5887-1.0748,3.2568-1.3421,4.9432-.4808,3.0336-.4457,6.1318-.4537,9.2032-.005,1.8701-.2031,3.7897.2469,5.6048.1368.552.4621,1.0404.7299,1.5422.2569.4815.3712,1.1252.8394,1.4059,1.5399.9233,3.5999.4886,5.3803.2566,1.819-.2371,3.6317-.7914,5.2461-1.6625.5594-.3018,1.066-.7202,1.4794-1.203.5615-.6557.8397-1.5097,1.3051-2.2367.2088-.3261.3144-.7899.6662-.9518,1.0947-.5036,2.5514-.2447,3.5977.353.8015.4579.9447,1.6213,1.6328,2.2367.6562.5869,1.4732.9898,2.2932,1.3104.7248.2834,1.5125.3687,2.2751.5239,1.0311.2097,2.0746.3542,3.1085.5498.6639.1256,1.4354.7905,1.9872.4005,1.121-.7921.6161-2.7044.5811-4.0765-.0374-1.4674-.2865-2.9639-.843-4.3222-.4648-1.1347-1.2803-2.0976-2.0313-3.067-.4029-.5201-.8063-1.0566-1.321-1.4665-1.1503-.916-2.7499-1.1743-3.8557-2.1438-1.231-1.0792-2.337-2.4163-2.9274-3.9431-.7294-1.8863-.429-4.0223-.6019-6.0373-.1755-2.046-.82-4.1262-.4421-6.1446.2854-1.5242.9069-3.0951,1.9899-4.2049,1.2916-1.3236,4.2972-.7669,4.9551-2.4952.7935-2.0845-2.4163-3.9919-2.4622-6.2219-.0334-1.6239.2681-3.6786,1.6053-4.6006,2.369-1.6334,5.891-.6448,8.6291.24.5652.1826.9553.7118,1.4734,1.0023.6797.3811,1.4354.6103,2.1301.9633,1.1617.5903,2.0981,1.9005,3.4009,1.9275.6895.0143,1.4535-.3739,1.8406-.9447.8912-1.3142,1.0172-3.2578.453-4.742-.3087-.8121-1.3721-1.0915-1.9088-1.7747-.1939-.2468-.2464-.5916-.4597-.8218-.7205-.778-1.8818-1.0292-2.6492-1.7611-.7057-.6731-1.4588-1.4214-1.7328-2.3573-.585-1.998,1.0363-4.2504.4008-6.233-.3633-1.1335-1.4959-1.8519-2.258-2.7661-.5735-.688-1.0926-1.429-1.7417-2.0463-.9207-.8755-2.0233-1.5373-3.0229-2.3215-.9332-.7321-1.8776-1.4516-2.7769-2.2249-.7189-.618-1.5348-1.1601-2.091-1.9278-.5094-.703-.8997-1.5205-1.0812-2.3695-.3268-1.5285-.2522-3.152.0319-4.689.0848-.4587.3205-.8763.4914-1.3104.2481-.63.7735-1.2005.7752-1.8776.002-.9749-.2938-2.1647-1.1028-2.7087h-.0001Z"/>
|
||||||
|
<path class="st28" d="M541.1815,352.1611c-1.3285.7796-3.0177.6828-4.4462,1.259-.8453.3409-1.5264,1.071-2.4115,1.2889-1.4517.3572-3.0178-.3248-4.4847-.0369-1.205.2365-2.5184.5645-3.3992,1.4202-.559.543-.645,1.4188-.9633,2.1301-.6605,1.4764-1.192,3.0157-1.9638,4.4371-.3663.6746-.9455,1.2277-1.2587,1.9285-.5716,1.2787-1.3609,2.684-1.09,4.0582.2708,1.3737,1.8799,2.1089,2.5477,3.3396.4189.7721.8336,1.6053.8853,2.4823.1035,1.757-.7018,3.4526-1.1773,5.1472-.3544,1.263-.9694,2.4506-1.2465,3.7328-.2571,1.1896-.319,2.416-.3768,3.6317-.1074,2.2594.5552,4.5792.0572,6.7857-.1723.7633-.6769,1.4112-1.0262,2.1114-.4138.8293-.8832,1.6313-1.2669,2.4749-.4869,1.0706-1.1362,2.1128-1.3104,3.2759-.1948,1.3004.096,2.6367.3276,3.9311.1796,1.004.8638,1.9293.819,2.9483-.0205.466-.3365.8703-.4914,1.3104-.2055.5839-.6273,1.1466-.5808,1.7639.0557.7405.5074,1.4373,1.0057,1.988.4916.5434,1.2221.8103,1.853,1.1832.9688.5726,2.0975.8983,2.9637,1.6167.9253.7675,1.572,1.8225,2.2825,2.7922.8028,1.0958,1.5157,2.2555,2.2309,3.4103.5374.8677.8975,1.8551,1.5471,2.6424.2615.317.6111.55.9263.8138.6073.508,1.1623,1.1019,1.8582,1.4794.6071.3293,1.2813.5616,1.9656.6552,1.0833.1481,2.2208.1227,3.2759-.1638,1.2524-.34,2.3459-1.1211,3.4528-1.7986,1.1997-.7343,2.2839-1.6427,3.4386-2.4459,1.3726-.9547,2.826-1.7966,4.1478-2.8206,1.299-1.0063,2.5039-2.1303,3.7025-3.2542.6759-.6338,1.6579-1.0916,1.9656-1.9655.467-1.3268.2044-2.9534-.457-4.1948-.1749-.3283-.5734-.4742-.8534-.7191-.5392-.4715-1.0549-.9692-1.5913-1.4438-.8254-.7303-2.5292-1.0579-2.5036-2.1597.0164-.7077,1.2059-.777,1.6707-1.3109.4274-.4909.6018-1.1595.9824-1.6875.6663-.9246,1.832-1.5098,2.2589-2.5665.4508-1.1162.7012-2.5294.1658-3.6076-.5973-1.2031-2.129-1.6622-3.3185-2.286-1.6415-.8607-3.6766-.9152-5.1989-1.9727-.8078-.5612-1.153-1.6354-1.9438-2.2202-.5838-.4317-1.5762-.2933-1.9872-.8919-.307-.4471-.3309-1.1393-.0888-1.6246.3974-.7966,1.5627-.885,2.2181-1.4876.7721-.7098,1.575-1.4836,1.9656-2.4569.442-1.1013.282-2.36.3145-3.5462.041-1.4935-.6215-3.0618-.1508-4.4798.4406-1.3272,2.4663-1.886,2.6207-3.2759.0744-.6697-.4427-1.3092-.8855-1.8171-.7888-.9048-2.0746-1.2297-2.9918-2.0039-.3837-.3238-.9276-.6027-1.0365-1.0928-.2247-1.0113.7076-1.9496.9828-2.9483.433-1.5717.9828-3.1482,1.0479-4.7771.0547-1.368-.175-2.7546-.5572-4.0693-.4022-1.3837-.7466-2.9476-1.8011-3.9297-.6827-.6359-1.7089-1.1803-2.6207-.9828h0l-.0003.0002-.0002-.0004Z"/>
|
||||||
|
<path class="st28" d="M567.0612,479.2667c1.5229-.6268,2.7428-1.8488,4.2369-2.5414,1.9208-.8904,3.8967-1.9905,6.0131-2.0451,1.2638-.0326,2.4447.6494,3.6488,1.0344,1.4988.4793,2.8942,1.3266,4.4462,1.5865.5921.0992,1.2304.1672,1.801-.0195.7024-.2298,1.2369-.8152,1.8025-1.2909,1.0809-.9089,2.0487-1.946,3.0212-2.97.6699-.7053,1.2924-1.4542,1.9358-2.1837.5336-.605.9262-1.3699,1.5963-1.819.6162-.413,1.4017-.4863,2.105-.7222,1.4171-.4751,3.002-.5904,4.261-1.3958.918-.5872,1.5883-1.5106,2.2267-2.3939.4337-.6001.7823-1.2644,1.0696-1.9467.5327-1.2649.816-2.6212,1.1964-3.9399.4398-1.5248.8586-3.0559,1.2549-4.5926.4744-1.8397,1.0067-3.6692,1.3438-5.5388.3132-1.7366,1.5842-3.7738.6274-5.2565-.5612-.8697-1.9334-.8112-2.9611-.9351-1.4082-.1698-3.186-.6625-4.246.2799-1.1204.9962-.4412,2.9716-.819,4.4225-.1523.5851-.3601,1.1554-.5816,1.718-.3624.9202-.4878,2.0399-1.2202,2.7045-1.512,1.3723-3.7603,1.8993-5.8011,1.9677-1.6065.0539-3.1853-.6004-4.6602-1.2397-.8936-.3873-1.6306-1.0681-2.4786-1.5471-1.2549-.7089-2.4976-1.4731-3.8543-1.9596-1.8383-.6593-3.7856-.9983-5.7197-1.269-1.9477-.2727-3.9232-.3188-5.8895-.3531-1.889-.0329-3.8317-.31-5.6661.142-.5394.1329-1.1104.3359-1.4946.7371-.847.8843-1.1677,2.178-1.4812,3.3617-.4615,1.7426-.0349,3.6535-.5547,5.3797-.2867.952-.7567,1.8706-1.3832,2.6424-.3657.4504-.9429.687-1.3433,1.1069-.9534,1-1.5837,2.2697-2.4804,3.3208-.5419.6352-1.2838,1.1007-1.7453,1.7965-.5492.8279-1.0345,1.7594-1.1618,2.7447-.249,1.9282-.1909,4.1207.8342,5.7727.5206.8391,1.5856,1.1846,2.439,1.6814,1.0542.6137,2.2203,1.0155,3.2939,1.5945,1.4329.7728,2.5831,2.2627,4.1931,2.5042.7451.1117,1.4983-.2519,2.195-.5386h.0001Z"/>
|
||||||
|
<path class="st28" d="M505.474,513.3362c.1496.093.312-.1644.4738-.2339.6504-.2795,1.3805-.3788,1.9926-.7343.2315-.1345.4134-.3406.6148-.517.5604-.4909,1.0089-1.1286,1.651-1.5066.5515-.3246,1.2485-.3234,1.8198-.6118.5949-.3004,1.0654-.8055,1.6379-1.1465.4196-.2499.8736-.4368,1.3104-.6552s.899-.392,1.3104-.6552c1.1779-.7537,2.1704-1.7643,3.2759-2.6207.2158-.1672.4752-.2861.6552-.4914.6608-.7536,1.1344-1.6778,1.4742-2.6207.4249-1.1794,1.2385-2.5831.6705-3.7007-.2499-.4919-.9491-.6106-1.4895-.7217-1.1777-.2423-2.4479-.1684-3.6035.1638-1.3864.3986-2.5051,1.431-3.7673,2.1294-1.1409.6312-2.2103,2.2967-3.4397,1.8623-1.1289-.3988-1.1211-2.1466-1.3833-3.3148-.2873-1.2799.2701-2.6996-.1818-3.9311-.3832-1.0444-1.2126-1.8971-2.0385-2.6424-.4232-.382-.9468-.64-1.4537-.9009-1.322-.6804-2.7058-1.2469-4.1154-1.7198-1.5116-.5072-3.0987-.7563-4.6327-1.1909-1.1943-.3383-2.403-.6452-3.5571-1.1022-1.412-.5591-2.6896-1.4217-4.0954-1.9965-1.4592-.5967-3.0882-.7694-4.4852-1.5-1.0154-.531-1.6294-1.8422-2.7552-2.0556-1.3866-.2628-3.6804-.2379-4.0846,1.1142-.2706.9052,1.1453,1.526,1.8765,2.1243.7234.5919,1.57,1.0316,2.4275,1.4037,1.1347.4924,2.6804.1988,3.551,1.0775.9845.9936,1.1495,2.6281,1.1814,4.0264.0302,1.3246-.0328,2.8991-.9438,3.8611-.4771.5038-1.2985.6106-1.9923.6035-1.2113-.0123-2.2447-1.1113-3.456-1.124-.7916-.008-1.5298.4153-2.2733.6872-.3256.119-.6382.271-.9548.4123-1.9839.885-4.1871,1.4156-5.9196,2.7262-.9932.7513-2.4179,1.5949-2.4271,2.8403-.005.7229.82,1.2176,1.3844,1.6693.4065.3253.9186.4917,1.3916.7094,1.1473.528,2.2954,1.0739,3.5026,1.4449,1.3735.4221,2.7902,1.0181,4.2202.878,1.7115-.1676,3.091-1.5621,4.7512-2.0107,1.0923-.2951,2.245-.2842,3.3668-.4313,1.2633-.1656,2.5324-.7215,3.7886-.5079,1.2605.2143,2.5538.7968,3.4197,1.7377.9339,1.0147.9695,2.5858,1.5623,3.831.5128,1.0769.9407,2.2348,1.7204,3.1375.5858.6782,1.3497,1.2072,2.1443,1.6218.5583.2913,1.1746.4856,1.7965.584,1.3428.2124,3.1169-.9631,4.0784-.002v.0003h0v-.0002h-.0001Z"/>
|
||||||
|
<path class="st28" d="M391.1445,474.0252c.1499-.1458.4394-.0748.6272.0173.6551.3211,1.096,1.0238,1.3878,1.6924.4442,1.018,1.0592,2.3709.4524,3.3012-.3696.5667-1.2756.5902-1.9514.5581-1.7311-.0821-3.3878-.9519-4.8409-1.8963-.3404-.2212-.548-.6041-.8664-.8559-.4196-.3319-.9384-.5226-1.3605-.8513-.4418-.344-.8503-.7354-1.2131-1.1619-.8367-.9837-1.563-2.066-2.1965-3.1914-.5997-1.0654-.7669-2.3699-1.5043-3.3451-.8661-1.1455-2.9975-1.3669-3.2989-2.771-.3314-1.5439.934-3.1576,2.0576-4.2672.9935-.9812,2.7752-.819,3.7956-1.7722,1.2863-1.2015,2.0449-2.9367,2.5544-4.6215.5075-1.6784.8152-3.5314.4328-5.2426-.4258-1.9051-1.5824-3.6548-2.9207-5.0759-.7556-.8024-1.9835-1.0377-2.762-1.818-.5024-.5036-.9762-1.1007-1.1692-1.7855-.5329-1.8909-.6839-4.1259.1789-5.8908.7447-1.5233,2.2599-2.8876,3.9175-3.2448,1.596-.344,3.4779.2387,4.7242,1.2934,1.1927,1.0093,1.4724,2.7725,1.9686,4.2541.0729.2176-.0229.5168.1454.6728,1.0712.9932,2.8893.4387,4.3412.5996,1.6811.1863,3.4545-.1193,5.0565.4231.5442.1843,1.11.4674,1.4517.9294.6324.855.6783,2.0247.8585,3.0728.2237,1.3012-.5483,2.915.2693,3.9516.8175,1.0364,2.4594,1.1907,3.7794,1.1824,1.0939-.007,2.1195-.5758,3.1195-1.0193.8047-.357,1.5279-.8752,2.2932-1.3104.9707-.552,1.8851-1.2196,2.9155-1.65,1.5859-.6624,3.242-1.3841,4.9605-1.4064,1.2228-.0159,2.5321.2377,3.5546.9087.4851.3183.9266.8124,1.0666,1.3755.3305,1.3292-.2275,2.764-.7039,4.0481-.2539.6845-.7677,1.2426-1.1229,1.8805-.4383.7871-.6667,1.7075-1.2431,2.3999-.3341.4014-.8305.6337-1.2375.9611-.7679.6178-1.6254,1.1484-2.2714,1.8926-.5503.6339-1.3266,1.3027-1.3242,2.1421.004,1.3177,1.0841,2.5091,2.0984,3.3503.94.7795,2.3666.7039,3.4111,1.3366,1.126.682,2.2293,1.5102,2.98,2.5916.8889,1.2804.9481,2.9825,1.6415,4.3784.8243,1.6594,1.8728,3.2053,2.9685,4.6994.6269.8547,2.0725,1.3679,2.0538,2.4277-.0148.8397-.8803,1.6572-1.694,1.8647-1.8658.4758-3.6826-1.1469-5.4576-1.8934-1.0667-.4486-1.9693-1.3383-3.1073-1.5482-1.6812-.3101-3.8581-.6712-5.1044.499-.9382.8809-.2278,2.5845-.617,3.8111-.3724,1.1735-.5475,2.7147-1.62,3.3193-1.1991.6761-2.8771.2354-4.1129-.371-.9364-.4595-1.3791-1.5685-2.1293-2.2932-.2666-.2576-.548-.5005-.8407-.7281-.2452-.1906-.5559-.3024-.765-.5322-.6879-.756-1.042-1.7603-1.5064-2.6708-.6549-1.2841-1.3925-2.549-1.8018-3.9311-.4442-1.5005.0315-3.2522-.6826-4.6446-.2022-.3943-.6176-.6377-.9554-.9245-.6671-.5663-1.3105-1.2039-2.1076-1.5651-1.4006-.6345-2.983-.7867-4.5096-.9707-1.0087-.1216-2.0793-.3952-3.0468-.085-.7447.2388-1.4431.7616-1.87,1.4168-.5927.9096-.9427,2.1008-.7508,3.1694.1392.775.8499,1.3268,1.3104,1.9655.728,1.01,1.1155,3.3524,2.2932,2.9483h0l.0003.0005h0Z"/>
|
||||||
|
<path class="st28" d="M406.5413,360.3509c-1.5861-1.6953-3.0187-3.5291-4.5863-5.2415-1.0695-1.1683-2.2524-2.2322-3.2866-3.432-.4441-.5153-.7116-1.1971-1.2496-1.6134-.6808-.5268-1.584-.6747-2.3733-1.0182-.8655-.3766-1.7376-.7394-2.5907-1.1434-1.4917-.7064-2.7753-2.0681-4.4171-2.2373-1.2082-.1245-2.4598.3526-3.518.9487-.8465.4768-1.2361,1.584-2.1076,2.0134-.827.4075-1.8839.0637-2.7334.4218-.319.1345-.6052.3609-.83.6242-.449.5258-.7945,1.1644-.9717,1.8328-.3988,1.5039-.0728,3.1111-.1443,4.6653-.0689,1.4964.0253,3.0178-.2742,4.4855-.2101,1.0295-.4443,2.1156-1.0557,2.97-.3297.4608-.8839.7091-1.3321,1.0557-.2752.2128-.5099.4998-.8331.6284-.7645.3041-1.6352.1846-2.4531.2736-.9084.0988-1.8556.011-2.726.2891-.6662.2128-1.4369.4496-1.8282,1.0292-.7086,1.0496-.8673,2.558-.4914,3.7673.2412.7759,1.0149,1.2818,1.6303,1.8124,1.0438.9,2.2976,1.5226,3.4474,2.2825,1.0801.7139,2.1364,1.4654,3.2421,2.1389,1.6148.9838,4.4965.9386,4.9477,2.7749.3143,1.279-.998,2.6859-2.1577,3.31-1.7706.9529-4.0231-.1195-6.032-.0341-1.205.0513-2.7375-.5118-3.6035.3276-.5909.5728-.5753,1.6749-.3001,2.4504.5536,1.5601,2.1407,2.6214,3.576,3.4462,1.4525.8346,3.278.7529,4.8354,1.3704,1.1747.4658,2.2002,1.2559,3.3646,1.7468.9322.393,1.8913.7463,2.8818.9521.9322.1937,1.8925.2652,2.8446.2583,1.2614-.009,2.5366-.1034,3.7635-.3965,1.1934-.2851,2.6298-.3887,3.4397-1.3104.4816-.548.684-1.4199.5099-2.1283-.3062-1.2452-1.671-1.9459-2.5288-2.8991-.6565-.7296-1.3943-1.3881-2.0031-2.1579-.3315-.4191-.7025-.8324-.8919-1.3321-.4148-1.0948-.8596-2.3765-.4706-3.4808.5469-1.5526,2.7639-1.9706,3.5827-3.3987.6028-1.0514.9041-2.331.8268-3.5405-.0872-1.364-1.1795-2.4987-1.4333-3.8416-.1819-.9621-.6447-2.1602-.0486-2.937.6398-.8337,2.0121-.8629,3.0584-.7652.7377.0688,1.5292.3733,2.0193.929.5752.6522.5898,1.6404.7854,2.4878.1838.7967.1404,1.6389.3612,2.4261.4081,1.4552.9664,2.8926,1.7614,4.1779.4138.6691.8656,1.3804,1.5363,1.7916,1.0891.6678,2.4506.8089,3.7246.9041,1.7886.1337,3.6314.002,5.3595-.4779.7134-.1982,1.4155-.514,1.9971-.9722.2842-.2238.5078-.5251.6903-.8374.3294-.5638.4088-1.2457.7052-1.8276.5183-1.0177.9159-2.235,1.8602-2.8774.7522-.5117,1.7915-.3238,2.6761-.5365,1.1585-.2785,2.5084-.2261,3.4412-.9674,1.1049-.8781,1.6648-2.3505,2.0369-3.712.4546-1.6632-.1972-3.4841.1639-5.1701.1833-.8559,1.2532-1.5909.9989-2.4284-.2692-.8868-1.4182-1.2926-2.3087-1.5494-1.2422-.3582-2.5996-.0867-3.8767.1146-.7179.1132-1.4386.294-2.0935.6091-.5351.2575-.9265.7578-1.4562,1.0262-.5708.2893-1.3089.2264-1.8198.6118-.5383.406-1.1749.9929-1.1465,1.6665.0611,1.4514,2.9447,1.9287,2.7633,3.37-.0835.6635-.9865.9645-1.6168,1.1877-.5136.1819-1.112.2368-1.6328.0768-.8242-.2533-1.5315-.878-2.0697-1.5516-.784-.9812-.8266-2.4047-1.5389-3.4391h0v.0004Z"/>
|
||||||
|
<path class="st28" d="M306.9534,416.6967c-.9453-.4543-2.1641.9585-2.4569,1.9655-.2969,1.0211.2137,2.3411,1.0339,3.0179,1.39,1.147,3.8361-.2219,5.3541.7494.7181.4594,1.1487,1.3315,1.3833,2.1511.4788,1.6729,1.0129,3.86-.0729,5.2198-1.1672,1.4617-3.6159.9746-5.4547,1.3179-.7958.1486-1.7137-.0971-2.4075.32-.8051.484-1.3488,1.3994-1.638,2.2932-.3531,1.0911-.5048,2.4013-.0195,3.4404.5433,1.1635,1.6992,2.2574,2.9678,2.4562,1.4524.2276,2.9262-.7462,4.0949-1.638.8104-.6184,1.2013-1.6486,1.8452-2.439.5094-.6253.888-1.4308,1.5945-1.8197,1.3511-.7436,3.0331-.6023,4.5712-.7144,2.0744-.1512,4.2417.6382,6.2393.0592,1.5486-.4489,2.822-1.5953,4.0626-2.6252.6107-.507,1.1586-1.0956,1.6382-1.728.977-1.2886,1.8598-2.6745,2.4891-4.1641.6596-1.5616.9091-3.2668,1.3104-4.9139.2664-1.0937.5431-2.1872.7281-3.2976.1917-1.1509.9911-2.4756.3942-3.4781-.5416-.9097-1.8884-1.2565-2.945-1.1897-.6014.038-1.1282.4814-1.5775.8828-.8055.7196-1.2685,1.7485-1.8898,2.632-.7086,1.0075-1.0007,2.4798-2.0961,3.043-1.1124.572-2.5011-.0585-3.752-.0665-1.0019-.006-2.0424.2907-3.0056.0149-1.1889-.3404-2.218-1.1528-3.138-1.9792-.352-.3162-.5279-.7981-.8812-1.1127-.3365-.2997-.7101-.6121-1.1496-.7116-1.9896-.4504-4.3313-.3788-6.0835.6658-.5737.342-.5013,1.8474-1.1389,1.6486h0Z"/>
|
||||||
|
<path class="st28" d="M166.7442,472.7148c1.0908,2.2682-2.8722,4.1831-4.7141,5.8984-1.1265,1.049-2.322,2.2005-3.8033,2.619-.8583.2425-1.9629.4008-2.6721-.14-.7843-.598-.8349-1.8268-.9314-2.8083-.1314-1.3365.41-2.6578.4991-3.9978.005-.0766-.0207-.1569.002-.2302.2568-.8312.9321-1.4712,1.4533-2.1678.1602-.2141.3409-.412.5131-.6165.7014-.8333,1.331-1.7353,2.1183-2.4879.3775-.3609.859-.6012,1.2375-.9611.6335-.6023,1.095-1.367,1.7109-1.9873,1.0652-1.0728,2.1249-2.1969,3.4161-2.9833,1.1307-.6887,2.3701-1.476,3.6939-1.4594.8835.011,1.7761.4525,2.4403,1.0353.1639.1438.263.3569.3315.5639.3365,1.0162.0872,2.1542.3464,3.1928.1975.7914.5182,1.556.9099,2.2714.3509.641.7717,1.2538,1.2752,1.7834.4907.5161,1.0784.9369,1.6731,1.3287.6732.4435,1.3594.9078,2.1293,1.1466.7339.2275,1.5879-.0611,2.2919.247.4034.1765.7487.5037.9951.8686.4749.7035.6201,1.5843.8358,2.4052.2128.8103-.0795,1.8225.4482,2.4732.5477.6753,1.5599.83,2.4155.985,1.9606.3551,3.9848-.0779,5.9752-.1724,1.733-.0822,3.7726-1.339,5.1935-.3433,1.3194.9246,1.7441,3.0807,1.3465,4.6419-.3074,1.207-1.5829,1.9801-2.6306,2.6537-.9299.5979-2.1114.6768-3.1121,1.1466-1.0851.5094-2.3214.9009-3.1121,1.8017-.4682.5334-.6523,1.2756-.819,1.9655-.4256,1.761.4717,3.8473-.4312,5.4178-.8115,1.4115-2.3855,2.7302-4.0128,2.7848-1.3388.0449-2.7245-.9373-3.4475-2.065-.7492-1.1687-.3765-2.7539-.4532-4.14-.1151-2.0822.455-4.2231-.009-6.2563-.1198-.5249-.4155-.9983-.6986-1.4562-.5494-.8884-1.1311-1.7928-1.9221-2.4749-.8007-.6905-1.9606-.8688-2.7641-1.5561-.2807-.2401-.5594-.5231-.6867-.8699-.5091-1.3869.1089-2.976-.1565-4.4294-.218-1.1933-.6234-2.3623-1.1654-3.4476-.2099-.4203-.3613-.9858-.7964-1.1628-1.5472-.6296-5.0785-.6795-4.9139.9828,0,.0002.0004-.0002.0005,0h0v.0002h0Z"/>
|
||||||
|
<path class="st28" d="M113.0191,423.2485c-.0115.2181.1075.4651,0,.6552-.4894.8658-1.6327,1.1698-2.5564,1.5383-1.4108.5629-3.2682.0288-4.4495.9836-.7449.6021-1.1055,1.6596-1.1948,2.6133-.1315,1.4051.0421,3.0882,1.0154,4.1102.4665.4898,1.2805.4499,1.9438.5823,1.561.3116,3.1591.4387,4.7501.4914,1.8453.0611,3.8291.5015,5.5353-.2042.427-.1766.7568-.5602,1.0166-.9424.5651-.8312.6751-1.8962,1.093-2.8103.3556-.7777.6827-1.5865,1.2001-2.2673.6688-.88,1.4892-1.6654,2.4084-2.2793,1.1289-.7539,2.4894-1.0841,3.7188-1.6596.6898-.3229,1.4955-.4855,2.0516-1.006.4051-.3792.4591-1.0304.83-1.4431.9926-1.1048,2.479-1.6505,3.6035-2.6207.9523-.8217,1.7547-1.8026,2.6424-2.6936.2534-.2544.4873-.5311.7663-.7571.8-.648,1.609-1.3557,2.5798-1.6985,1.6873-.5956,3.5555-.5977,5.343-.5171,1.6147.0729,3.1485.883,4.7648.8999,1.2686.0133,2.6415-.0178,3.7539-.6279.3708-.2033.7428-.5332.8491-.9425.2421-.9313-.1699-1.9765-.6434-2.8141-.315-.5573-.8356-1.0007-1.3833-1.3321-.8863-.5363-1.9459-.7214-2.9483-.9828-1.8019-.4698-3.6463-.7678-5.4875-1.0457-1.5409-.2326-3.1267-.1732-4.6461-.5194-1.3611-.3101-2.6505-.8806-3.9528-1.3833-1.2723-.491-2.4542-1.2286-3.7683-1.5933-1.2219-.3391-2.6549-1.1466-3.7663-.536-1.1098.6097-1.6596,2.1987-1.5651,3.4614.0867,1.1585,1.7332,1.7758,1.8927,2.9266.2004,1.4461-.2398,3.1703-1.2887,4.1858-.8945.866-2.3754.7784-3.6035.9828-1.652.275-3.3889-.0852-5.014.3194-.7784.1938-1.4868.6106-2.193.991-.7404.3988-1.5703.7228-2.1327,1.3481-.3004.334-.4706.7774-.5955,1.2089-.5009,1.7317-.4744,3.5779-.5695,5.3781h0Z"/>
|
||||||
|
<path class="st28" d="M149.7094,314.8156c-1.0315.8499-2.0587,1.7939-2.6936,2.97-.5287.9794-.0642,2.4315-.837,3.2325-.9058.9389-2.5179.6913-3.7513,1.1165-1.2434.4286-2.5331.7862-3.672,1.4441-.9489.5481-2.0654,1.0766-2.5707,2.0489-.443.8524-.3517,1.9324-.1746,2.8766.0801.4272.2602.8564.5453,1.1846.6091.7009,1.4972,1.1237,2.3433,1.5064.7243.3277,1.5017.5807,2.2932.6552,1.2008.113,2.4617.0609,3.6035-.3276.9521-.324,1.8408-.9009,2.5478-1.6162.9084-.9191,1.3021-2.2357,2.0385-3.2976.1548-.2233.2854-.4767.4991-.6445.7923-.6224,1.8759-.749,2.7599-1.2324.8233-.4502,1.873-.7387,2.3535-1.5448.7703-1.2924.4541-2.9944.3836-4.4973-.0567-1.2088-.0381-2.5261-.646-3.5725-.1243-.214-.338-.3881-.5691-.4766-1.2282-.4703-2.6711-.4687-3.9433-.1349-.0924.0242-.163.0995-.2447.1491-.0884.0537-.1857.0949-.2655.1606h0Z"/>
|
||||||
|
<path class="st28" d="M70.4322,315.1432c-1.1549.2224-2.7228.2724-3.2759,1.3104-.7353,1.3798.4048,3.1335.9828,4.5863.1703.4281.8945.7556.718,1.1812-.5258,1.2685-2.6725.6329-4.0025.9741-.9831.2522-2.3145-.006-2.9398.7931-.8639,1.1047-.2679,2.816-.0844,4.2064.1574,1.1924.8931,2.2676,1.006,3.465.0884.9372-.4114,1.8814-.2664,2.8116.1177.7553.5279,1.4416.9009,2.1089.1935.3461.3559.7527.687.971,1.133.7469,2.6245.8204,3.9812.8513,1.3281.0302,2.6575-1.0328,3.9311-.6552,1.4293.4238,1.9258,2.4378,3.2976,3.0212,1.3426.571,2.9208.0917,4.3684.2737.838.1053,1.6456.4331,2.4893.4724,1.9181.0895,4.3795.8177,5.735-.5424.8233-.826.7604-2.4054.3176-3.4843-.4391-1.07-2.033-1.2607-2.6517-2.238-.8796-1.3893-1.4433-3.134-1.2636-4.7686.1706-1.5519,2.0568-2.6007,2.1546-4.1589.0541-.8621-.2139-1.9007-.895-2.4319-1.3742-1.072-3.4631-.7155-5.1987-.5573-1.1147.1016-2.1591,1.3152-3.2191.9557-.7713-.2617-1.1635-1.2095-1.4359-1.9771-.5521-1.5556.5267-3.4973-.2669-4.9447-.6119-1.1161-1.8923-1.8344-3.1041-2.2237-.6238-.2004-1.3104,0-1.9656,0h0v-.0002h0Z"/>
|
||||||
|
<path class="st28" d="M52.4147,365.92s.3365-2.0037.4002-3.0157c.0905-1.4369.6444-3.0454-.0266-4.3192-.4507-.8557-1.706-.9648-2.3826-1.6558-.6582-.6721-.8017-1.7963-1.5616-2.3508-.5037-.3676-1.1763-.4973-1.7998-.5103-1.1414-.0239-2.3704.1793-3.3313.7957-1.0389.6664-1.1843,2.3538-2.2837,2.9149-1.7244.8802-3.8687.1657-5.804.2188-1.1735.0322-2.4683-.4585-3.5214.0603-.8071.3976-1.4824,1.2339-1.6814,2.1114-.2855,1.2592.0561,2.7723.8701,3.7747.4154.5114,1.2003.544,1.7941.8296.4401.2117.9162.3669,1.3104.6552.2487.1819.4954.3932.6445.6629.479.8659.7428,1.8953.7031,2.8841-.0883,2.2031-.4996,4.7387-2.0761,6.2802-1.036,1.013-3.1632.2169-4.1568,1.2715-.736.7812-.9653,2.0769-.7568,3.1298.2246,1.1341,1.3654,1.8662,2.0385,2.8062.2417.3375.6804.604.718,1.0174.0808.8878-.9601,1.5509-1.1224,2.4274-.1115.602-.0381,1.2418.1228,1.8325.2104.7719.3936,1.7285,1.0768,2.1449,1.3588.8282,3.3807.7178,4.7738-.0514.784-.4328.8303-1.617,1.4558-2.258.601-.6159,1.3548-1.0881,2.1347-1.4516.8761-.4083,2.135-.0775,2.7907-.7876,1.0454-1.1321.8712-2.9941.8978-4.5349.0307-1.7754-.7745-3.4843-.8535-5.2581-.0954-2.1413-.0021-4.321.4618-6.4136.1973-.89.4965-1.7791.9748-2.5552.4768-.7735.9788-1.7183,1.8385-2.0127,1.7244-.5904,3.7243,1.6734,5.3884.9297.5522-.2468.9629-1.5378.9629-1.5378"/>
|
||||||
|
<path class="st28" d="M167.3994,374.7649c-.9626-1.7783-3.2249-2.4499-4.9402-3.5208-.7179-.4482-1.622-.6239-2.2317-1.2108-.6866-.661-1.2524-1.5289-1.4578-2.4595-.4123-1.8682,1.5439-4.0597.5768-5.7104-.8401-1.434-2.9535-1.612-4.5723-1.9886-1.5588-.3626-3.2236.0726-4.7961-.2251-1.4832-.2808-3.0003-.6685-4.2882-1.456-.8302-.5077-1.4585-1.297-2.095-2.033-1.0532-1.2177-1.9642-2.5566-2.829-3.9146-.5812-.9127-.9401-1.963-1.5799-2.8357-.3645-.4971-.7641-.9919-1.27-1.3442-1.1868-.8266-2.5452-1.717-3.9914-1.7013-.9631.0105-2.2964.2881-2.6328,1.1906-.3385.9082.6364,1.8654,1.2189,2.64.2228.2963.6182.4315.8407.7281.7713,1.028,1.8318,2.2383,1.6086,3.5038-.2422,1.3732-2.1147,1.8517-2.9406,2.9751-.4443.6043-.6718,1.3429-1.0557,1.9873-.3311.5556-.7125,1.0797-1.0737,1.6162-.4872.7237-.9041,1.5022-1.4747,2.162-.5303.6131-1.2531,1.0388-1.7904,1.6458-.9281,1.0484-1.9372,2.1103-2.4465,3.4146-.6401,1.6395-1.8753,3.98-.6467,5.2402,1.4343,1.4712,4.2808.286,6.1348-.5996,1.5403-.7357,2.4514-2.38,3.5903-3.6515,1.1693-1.3054,1.6496-3.5516,3.3221-4.0749,1.6891-.5284,3.923.1497,5.1021,1.4696.6557.734.1897,1.975.4936,2.9112.2469.7606.6762,1.4509,1.0647,2.1498.277.4983.5045,1.0439.9009,1.4537.5475.566,1.3317.8432,1.9655,1.3104.9061.6678,1.6749,1.5191,2.6207,2.1293.7181.4633,1.4684.9226,2.2932,1.1466,1.3613.3697,2.8169.1628,4.2225.2823,1.4413.1226,2.9317.028,4.3166.4458.4422.1334.7856.5081,1.2272.6437.7551.2318,1.565.2439,2.3546.2662.8629.0243,1.8155.2446,2.5856-.1454.3227-.1634.5107-.5234.6903-.8374.49-.8564.8608-1.806,1.0146-2.7806.0211-.1337-.01-.2706-.0149-.4059-.005-.139.0493-.2947-.017-.417h.0002Z"/>
|
||||||
|
<path class="st28" d="M358.7129,328.9021c-1.0427-.2928-1.9691-1.1321-3.0519-1.1142-1.1399.0188-2.1329.8097-3.1723,1.278-.4453.2006-.8753.4334-1.3104.6552-1.1537.5881-2.3958,1.0355-3.4474,1.7911-1.3123.943-2.3678,2.202-3.4907,3.3641-.8151.8435-1.4729,1.8413-2.3537,2.6161-.761.6695-1.6291,1.2128-2.5015,1.7289-1.0508.6216-2.3755.8135-3.2759,1.6379-.6147.5628-1.3057,1.296-1.3104,2.1294-.004.6367.6422,1.1.9828,1.6379.5853.9244,1.4927,1.6868,1.822,2.7302.251.7954.3312,1.7137.0574,2.5016-.3504,1.0085-1.1098,1.9484-2.0432,2.4666-1.1666.6477-2.6568.2843-3.9669.5374-.596.1151-1.1898.2538-1.7659.4453-.6736.2239-1.4137.3726-1.9655.819-.7896.6386-1.4339,1.5348-1.7338,2.505-.2032.6573-.139,1.3928.0121,2.0641.1807.803.3763,1.7573,1.0448,2.2375.9796.7036,2.3896.3949,3.5956.4035,1.2967.009,2.5906-.1784,3.8718-.3786.6922-.1082,1.4203-.1458,2.0545-.4434,1.1963-.5614,2.2383-1.4618,3.1198-2.4463.6883-.7687,1.0558-1.7743,1.6303-2.6314.7163-1.0688,1.4216-2.1536,2.2624-3.1275.5575-.6457,1.2809-1.1357,1.8325-1.7864.239-.2819.3324-.6956.6335-.9099.8497-.6047,1.9792-.7001,3.0116-.8477,1.4997-.2145,3.1507.549,4.5447-.0441.4084-.1738.6258-.6297.9326-.9505.681-.7119,1.3762-1.4121,2.0157-2.1616.2268-.2658.4131-.5648.6445-.8267.2045-.2314.3823-.5105.6552-.6552.8861-.4698,2.0536-.1274,2.9549-.5674,1.0632-.519,2.5101-1.1645,2.672-2.3365.1505-1.0904-1.4707-1.7169-1.8038-2.766-.3715-1.1701-.3719-2.4757-.136-3.6805.2042-1.0424,1.5987-1.8825,1.3104-2.9049-.3146-1.1157-1.9204-1.2988-2.8753-1.956-.4872-.3354-.9121-.7821-1.4563-1.014h-.0002,0Z"/>
|
||||||
|
<path class="st28" d="M409.4896,413.4207c-.7208.9982-2.3768.6716-3.5063,1.1619-.928.4029-1.6674,1.2833-2.6647,1.4527-1.631.277-3.2583-.5814-4.8976-.8039-1.5467-.2099-3.2286-1.1325-4.6558-.5004-1.316.5829-1.9284,2.188-2.5432,3.4894-.7256,1.536-1.5801,3.2632-1.275,4.9344.2414,1.3225,1.3636,2.3552,2.3235,3.2964,1.841,1.8053,4.794,2.3215,6.4087,4.3318.5461.6799.3275,1.8353.9629,2.4326,1.3178,1.2385,3.3512,1.7433,5.1585,1.6804.7433-.0259,1.3551-.6263,2.0684-.837,1.6487-.4871,3.3699-1.2626,5.0645-.9738.7477.1274,1.2462.9063,1.966,1.1454.8906.2958,2.0264.8552,2.7972.3199,1.0106-.702.0782-2.656.8872-3.5832.7476-.8567,2.0374-1.1558,3.1696-1.2608,1.0101-.0937,2.0055.3268,2.9864.5853.6092.1606,1.187.7699,1.7931.5978,1.7106-.4858,3.4178-2.3173,3.4186-4.0956.0007-1.4766-1.5246-2.7238-2.8355-3.4035-1.7266-.8953-3.8784-.2991-5.8159-.4696-1.1473-.101-2.3557.0616-3.4397-.3276-.4915-.1765-1.0264-.4314-1.2979-.8775-.9901-1.6269.0102-3.8945-.6676-5.6743-.2372-.6228-.63-1.2168-1.1466-1.638-.6812-.5554-1.5568-.8828-2.4205-1.046-.6024-.1138-1.4122-.3777-1.8382.0632h0Z"/>
|
||||||
|
<path class="st28" d="M197.5378,349.5403c-.1448-.3028.2991-.7412.632-.7839.0933-.012.1329.1647.227.1679,1.3433.0465,2.2345-1.4984,3.3997-2.1685.842-.4843,1.6377-1.1443,2.5901-1.3357,1.0769-.2164,2.2196.5299,3.2849.262.8221-.2068,1.8185-.5923,2.1377-1.3777.6335-1.559-.1332-3.5661-1.1332-4.9195-.8777-1.1879-2.9999-1.0009-3.8352-2.2189-.9292-1.3551-.9541-3.2374-.7652-4.8696.1058-.9142.8288-1.6618,1.0403-2.5575.2808-1.189.8973-2.5978.2836-3.6542-.4636-.798-1.6183-.9217-2.5039-1.1812-1.5589-.4568-3.3792.0974-4.8325-.6283-.8664-.4326-1.4236-1.3232-2.0304-2.0779-.4469-.5558-.9816-1.102-1.1735-1.7888-.3362-1.2039.5058-2.5539.1344-3.7474-.328-1.0537-1.0739-2.0202-1.9753-2.6569-.7655-.5407-1.8416-1.2304-2.6874-.8268-.7903.3772-.8712,1.5688-.9787,2.4379-.1969,1.5923.5457,3.1682.6511,4.7691.1303,1.9792-.2137,3.976-.025,5.9505.1097,1.1478.124,2.3778.6696,3.3936.3657.6808,1.1272,1.0598,1.6486,1.6302.5831.638,1.8304,1.1548,1.6501,2-.2076.9733-1.801.8501-2.6743,1.3275-.9406.5142-2.1642.7608-2.7585,1.6529-.7125,1.0695-.6256,2.532-.5547,3.8151.0721,1.3052.4273,2.6144.9885,3.7951.4705.9898,1.276,1.7827,1.944,2.6516.5448.7086.9117,1.6351,1.6823,2.0879,1.4475.8504,5.1064-.8215,4.964.8513h0v.0002h-.0001Z"/>
|
||||||
|
<path class="st28" d="M309.2466,181.4858c.05-1.3699-2.8419.2409-4.1014-.3001-.5224-.2244-.7969-.8203-1.2614-1.1482-.7718-.5448-1.5664-1.1881-2.4995-1.3362-1.4863-.236-3.0894.1371-4.4449.7908-.2409.1162-.4857.2897-.6018.5306-.5678,1.1787-.8961,2.8156-.1948,3.9201.6715,1.0576,2.3853.8126,3.4765,1.428,1.2254.691,2.1833,1.7916,3.3923,2.5108.8835.5255,1.7873,1.1006,2.7952,1.3027,1.7224.3453,3.5155-.3646,5.2656-.2128,1.148.0996,2.2362.5808,3.3786.7325.9533.1266,1.9435.3583,2.8813.1455,1.0737-.2436,1.8508-1.2527,2.9039-1.5738.8483-.2587,1.7618-.2723,2.6485-.2531,1.7303.0375,3.412.6751,5.1421.7176,1.6252.0399,3.2485-.2039,4.8575-.4364.9257-.1338,2.1487.1649,2.7513-.5503.6842-.8121.5421-2.2257.0857-3.1845-.4345-.913-1.4451-1.5304-2.4047-1.8489-1.8321-.6081-3.8648-.0499-5.7906.0841-.8563.0596-1.6998.2475-2.5552.3196-2.7957.2357-5.6124.5962-8.4088.3683-1.1983-.0977-2.3934-.3484-3.5303-.7393-.5775-.1985-1.068-.6064-1.6449-.8065-.6895-.2392-2.2175.2653-2.1404-.4604h.0002Z"/>
|
||||||
|
<path class="st28" d="M240.1247,205.7276c.1778.2828.6129.2689.9032.4344.5902.3365,1.1554.7191,1.6959,1.1307.2949.2246.5648.4805.8407.7281.2895.2598.7841.412.8547.7946.1987,1.077-.5148,2.378-1.4497,2.9484-1.3856.8455-3.2536.0727-4.8688-.0882-1.3057-.1301-2.7979.0464-3.8725-.7065-.7203-.5046-.7947-1.5812-1.3316-2.2778-.8345-1.0826-1.6819-2.276-2.8967-2.9027-1.3531-.6981-2.9913-.5908-4.505-.7556-1.8849-.2052-3.8978.3569-5.6807-.2881-.5134-.1857-.9756-.5515-1.3104-.9828-.924-1.1904-.8183-2.9769-1.7304-4.1765-.5635-.7412-1.6709-.9545-2.2007-1.7202-.7857-1.1353-1.6741-2.643-1.2375-3.9528.3471-1.0413,1.7442-1.3381,2.6726-1.9236.4262-.2688.8544-.5484,1.3256-.7268,1.3163-.4984,2.7201-.7727,4.1186-.9314,1.4176-.1608,3.3562-1.1026,4.28-.0153,1.1923,1.4034-1.4215,3.679-.9121,5.4487.3086,1.072,1.3578,1.7975,2.2229,2.5018.3284.2674.7326.4251,1.1011.6337.7076.4005,1.4107.8096,2.1314,1.1861,1.1987.6262,2.2983,1.653,3.6445,1.7832.702.0679,1.4968-.1029,2.0435-.5484.8881-.7236,1.2945-1.9525,1.5429-3.0708.4584-2.0634-1.7169-4.8875-.1801-6.3387,1.4434-1.3629,4.6147-.9737,5.9336.51,1.1847,1.3327.4173,3.6631-.1697,5.3469-.3044.8733-1.1228,1.4705-1.655,2.2269-.4539.645-1.0827,1.2146-1.3109,1.9695-.363,1.2008.0005,2.5089.0006,3.7633h0Z"/>
|
||||||
|
<path class="st28" d="M43.8973,136.2782c-.2483.2235-.2862.6037-.4343.9032-.3391.6855-.9714,1.2835-1.0398,2.0452-.1115,1.2414,1.0599,2.3354,1.0737,3.5818.0126,1.1402-.6244,2.1936-.9099,3.2976-.1425.551-.3648,1.0917-.4005,1.6597-.0753,1.199-.5723,2.8769.4005,3.5818,1.0839.7854,2.7287-.2309,3.9311-.819.7726-.3778,1.3134-1.1107,1.9661-1.6706.2336-.2004.5577-.3306.6981-.6045.5811-1.1347.7119-2.5892.3421-3.8093-.2412-.7956-1.2354-1.1788-1.5648-1.9421-.1964-.4552-.2151-.978-.2023-1.4736.0217-.8408.4358-1.6384.4716-2.4786.0378-.8856.3074-1.9748-.2725-2.6451-.3972-.4591-1.1596-.4744-1.7659-.4453-.8107.0389-1.6898.276-2.2931.819h0v-.0002h0Z"/>
|
||||||
|
<path class="st28" d="M496.3014,382.6271c-1.4512.338-3.1489.767-4.004,1.9873-.8884,1.2679-.2086,3.0988-.5206,4.6152-.3524,1.7127-1.2805,3.289-1.5175,5.0215-.3036,2.2202.5273,4.5131.1454,6.7212-.2423,1.4012-.724,2.8076-1.5192,3.9864-.7441,1.1031-1.9026,1.8649-2.9262,2.715-.3587.2979-.8499.4557-1.1236.8332-.4053.5592-.5649,1.2809-.6552,1.9655-.2082,1.5785-.5727,3.4261.2841,4.7681.4477.7011,1.3745,1.0621,2.1976,1.1829,1.7012.2496,3.6824.001,5.0529-1.037.5441-.4122.387-1.4186.9394-1.8197,1.0614-.7709,2.5784-.7646,3.8837-.6349,1.0771.107,1.9738.9524,3.0391,1.1442.911.164,2.0826.6017,2.7769-.0106.9895-.8726.8268-2.6443.5098-3.9249-.3614-1.4597-2.5594-2.1826-2.6012-3.6858-.0351-1.2619,1.051-2.3878,2.0082-3.2109.6115-.5258,1.5338-.5378,2.2202-.9611.3706-.2285.6882-.5359,1.0018-.838.9517-.9167,2.1895-1.7069,2.6555-2.9434.4798-1.273.3299-2.7756-.0537-4.0808-.2905-.9883-1.444-1.609-1.638-2.6207-.2298-1.199.7068-2.3837.6552-3.6035-.0278-.6573-.0368-1.4543-.516-1.9051-1.2526-1.1785-3.4797-.3485-5.0531-1.0432-.5213-.2302-.8942-.712-1.3833-1.0045-1.0603-.6341-2.1356-1.3262-3.3377-1.6115-.0802-.019-.1649-.003-.2474-.004-.091-.0009-.1845-.0215-.2732-.0009h.0002,0Z"/>
|
||||||
|
<path class="st28" d="M536.2676,445.8523c-1.0359.5047-1.6208,1.6888-2.1308,2.7221-.7935,1.6076-.5925,3.5802-1.3453,5.2072-.4185.9045-1.4452,1.4866-1.7224,2.4439-.4231,1.4611.0495,3.0472.2291,4.5577.1588,1.3347.8764,2.6244.7479,3.9623-.1212,1.2616-.8892,2.3753-1.4036,3.5337-.6441,1.4505-1.5866,2.7709-2.1039,4.2713-.4182,1.2131-.501,2.5174-.7886,3.7679-.3035,1.3198-.8199,2.5969-.9882,3.9406-.1693,1.3515-.4877,2.8091-.0141,4.0862.2225.6002.6971,1.1414,1.257,1.4517,1.2782.7084,2.8945.4118,4.3316.6769,1.225.226,2.4562.4403,3.6551.7784,1.2465.3516,2.3796,1.1221,3.663,1.2956,2.0245.2737,4.2307.3574,6.1132-.4361.6058-.2554,1.0142-.8406,1.4742-1.3104.3192-.326.7325-.6128.8876-1.0418.6617-1.83.0588-3.8958-.0686-5.8376-.076-1.1583-.5458-2.3043-.4145-3.4577.1371-1.2047,1.5256-2.245,1.2335-3.4217-.2817-1.1347-1.6999-1.6076-2.5945-2.3603-.7953-.6692-1.5944-1.3411-2.4619-1.9137-.6445-.4254-1.2992-.8626-2.0262-1.123-1.37-.4906-3.5275.4484-4.2936-.7888-.8424-1.3601.2064-3.4704,1.3267-4.6127.6633-.6763,2.3288.0264,2.7153-.8384.7589-1.6981-1.8549-3.2719-2.3297-5.0703-.2537-.9607-.4935-2.0055-.2547-2.97.1417-.5723.7687-.9292.9559-1.4883.3961-1.1828.8616-2.6272.2815-3.7315-.7055-1.343-2.4667-1.8972-3.9311-2.2932h.0001-.0001Z"/>
|
||||||
|
<path class="st28" d="M586.7167,401.2998c.1427-1.3495-2.8884-.0467-3.9812-.8513-.1639-.1206-.2034-.3525-.2992-.532-.4481-.8396-.7874-1.7388-1.2886-2.5478-.6971-1.1251-1.9708-1.9217-2.3751-3.182-.4099-1.2778.6191-2.7953.0819-4.025-.2632-.6024-1.248-.693-1.4741-1.3104-.3984-1.0876.3159-2.2949.4914-3.4397.1022-.6671.6404-1.4005.327-1.9982-.3341-.6374-1.3254-.569-1.9506-.9254-.6915-.3942-1.3641-.8306-1.98-1.335-.7919-.6486-1.1882-1.924-2.1847-2.1581-.9965-.234-1.9004.8389-2.9167.9601-1.1343.1352-2.6554.5762-3.416-.2762-.4553-.5103.2845-1.4018.0678-2.0504-.1218-.3645-.5192-.5721-.723-.8979-.6718-1.0742-1.996-2.2296-1.6185-3.439.3187-1.021,1.7065-1.6463,2.7755-1.6104,1.5038.0505,2.3189,2.0381,3.7435,2.5222,1.7182.584,3.6245.4806,5.4337.3391,1.1658-.0912,2.3561-.2853,3.4246-.7603.9253-.4113,1.7331-1.0718,2.4758-1.76,1.0623-.9844,1.481-2.698,2.7793-3.3398,1.9681-.9729,4.4219-.6728,6.5806-.2728.9206.1706,2.3126.2163,2.5784,1.114.2402.8118-.9507,1.4013-1.4076,2.114-.2562.3996-.3676.9276-.7476,1.2119-.9445.7068-2.3886.3493-3.4139.9328-.8468.4819-1.3556,1.4049-2.1024,2.0307-1.2219,1.0239-3.48,1.2607-3.873,2.8056-.1711.6728.3147,1.5024.8977,1.8793,1.3825.8939,3.7075-.9818,4.9376.1124.8369.7444-.1884,2.4195.4677,3.3273.831,1.15,2.6694,1.05,3.8161,1.8857.608.4431,1.5916.8679,1.5714,1.6199-.0401,1.4944-2.6247,1.7085-3.2908,3.0468-.1955.3928-.1702.8728-.1311,1.3098.0709.7918.1362,1.6909.6552,2.2932.4307.4998,1.196.5577,1.8018.819.9504.41,1.9579.6938,2.8746,1.1744.6939.3638,1.408.7368,1.9688,1.2839.6439.6283,1.3312,1.3462,1.5295,2.2237.278,1.2296.4617,3.0467-.5946,3.7346-1.191.7756-2.8141-.5337-4.1223-1.0893-.6529-.2773-1.1814-.7939-1.8198-1.1031-.4684-.2269-.9445-.4978-1.4627-.5462-1.3831-.1291-4.2251-.674-4.1063.71h-.0002v-.0002h0Z"/>
|
||||||
|
<path class="st28" d="M828.4794,260.4354c-.8349.047-1.6566.2848-2.4927.2815-1.3185-.005-2.6245-.679-3.9269-.4742-.4755.0747-.9876.2483-1.3114.6045-1.0565,1.1624-.6553,3.161-1.556,4.4478-.8759,1.2515-2.1447,2.2945-3.5458,2.9031-1.1935.5185-2.592.2702-3.8691.5199-1.6191.3166-3.5021.2088-4.7923,1.237-.9078.7234-.8878,2.1768-1.6009,3.0927-.5428.6971-1.1918,1.3661-1.9835,1.7583-1.0464.5183-2.4088.1239-3.4371.6773-.9814.5283-1.9362,1.3459-2.3465,2.3822-.3536.893-.1966,1.9575.0687,2.8806.212.7375.5023,1.6108,1.1754,1.9794,1.5728.8612,3.5983.0531,5.3765-.1776,1.5264-.1981,3.1319-.3272,4.501-1.0305,1.3044-.67,2.4357-1.7261,3.2958-2.9138.9929-1.371.6799-3.6159,2.0093-4.6641.6149-.4849,1.5593-.1946,2.3149-.4005.8757-.2386,1.7838-.4709,2.5479-.9611.3398-.218.4914-.6892.8609-.8517.9602-.4223,2.132-.432,3.1431-.1528,1.077.2975,1.7397,1.4762,2.7898,1.8582.7727.2811,1.7972.7689,2.4517.2712,1.0564-.8033.7882-2.612.6357-3.9304-.1026-.8869-.9779-1.5849-1.0201-2.4767-.018-.3813.1213-.7785.3343-1.0952.4441-.6603,1.6061-.7496,1.8519-1.5064.3447-1.0612-.4253-2.2073-.8599-3.235-.155-.3665-.2679-.8276-.6143-1.0237h-.0005Z"/>
|
||||||
|
<path class="st28" d="M830.445,348.23c.126-.7618.696-1.4227.7456-2.1933.0848-1.3157-.9034-2.5644-.7819-3.8772.0702-.7585.85-1.3575.8552-2.1193.007-1.0625-.6473-2.0371-1.152-2.9721-.3777-.6999-1.1125-1.1951-1.3865-1.9417-.3397-.9258.2365-2.0883-.246-2.9483-.1227-.2188-.3694-.3652-.6074-.4443-1.4659-.4872-3.1831-.5773-4.634-.0471-.8991.3286-1.2794,1.539-2.1762,1.8737-1.5449.5767-3.4733-.7217-4.947.0182-.8924.4481-1.7302,1.3998-1.7982,2.3961-.0801,1.1731,1.2716,1.9935,1.7144,3.0828.4891,1.2029,1.2458,2.4813,1.0193,3.7599-.1522.8589-1.2315,1.3104-1.5107,2.1367-.365,1.08-.878,2.5627-.1241,3.4179.8612.977,2.6703.802,3.8915.3494.289-.1071.4401-.4323.6445-.6629.3502-.395.5322-.9781.9949-1.2322.5051-.2774,1.1498-.2913,1.718-.1948,1.0975.1864,1.9791,1.0262,3.0081,1.4509,1.1654.481,2.339,1.4911,3.574,1.2378.5291-.1086.9802-.5963,1.1986-1.0902h-.0001Z"/>
|
||||||
|
<path class="st28" d="M201.9211,370.0159c-.9445-.897-2.3635-1.6171-2.6273-2.8927-.2794-1.3509.776-2.6566,1.3391-3.9159.5134-1.148.8788-2.4869,1.8467-3.2899.7417-.6154,1.7794-.839,2.7393-.9256,1.075-.0969,2.6148-.4335,3.2035.4711.32.4918-.1355,1.2147-.4711,1.696-.5533.7936-2.0158.79-2.3555,1.6959-.3397.9059.0972,2.0393.6595,2.8266.5829.8162,1.8639.8658,2.55,1.5973.7465.7959.6848,2.2237,1.5568,2.8798,1.0311.7759,2.9363-.1489,3.7823.8257.4241.4885.5612,1.4417.1432,1.9354-.9221,1.0894-2.8482.2098-4.2636.3938-1.034.1344-2.0693.7545-3.0849.5181-1.1781-.2743-1.9858-1.3832-2.9453-2.1198-.7081-.5436-1.4255-1.081-2.0728-1.6957h0Z"/>
|
||||||
|
<path class="st28" d="M282.4822,373.5964c1.5675.2826,3.2088-.2776,4.7085-.8142.8606-.308,1.7287-.7168,2.385-1.353.6844-.6634.8914-1.6983,1.4877-2.4418.5961-.7433,2.2082-1.0408,2.0598-1.982-.1792-1.1366-1.9555-1.43-3.1032-1.512-1.1626-.083-2.1644,1.1132-3.3291,1.0692-1.4456-.0545-2.5973-1.3737-4.0202-1.6346-1.5364-.2817-3.7199-1.1182-4.6848.1101-.7911,1.007.008,2.7638.8217,3.753.5002.6084,1.6974.3098,2.1671.9421.6412.8631-.2124,2.3042.3768,3.2036.2391.365.7014.5821,1.1308.6595h0Z"/>
|
||||||
|
<path class="st28" d="M336.9434,369.0736c-1.0276,1.1611-3.4674-.4752-4.6169.5652-.9547.8641.1477,2.9523-.848,3.7689-.9381.7694-2.4259.0582-3.6388.0883-1.715.0426-3.6935-.7836-5.1449.1309-.8336.5252-1.8466,1.7859-1.3433,2.6329.6256,1.0528,2.4693-.1297,3.6725.0981.9683.1833,1.8519.6747,2.7798,1.0068,1.1621.4159,2.2607,1.3333,3.491,1.2345,1.2633-.1014,2.183-1.2981,3.3366-1.8231,1.0965-.4991,2.6673-.2893,3.3899-1.2533.7779-1.0376.5381-2.6118.2716-3.881-.1987-.9464-.4105-2.8-1.3494-2.5683h0Z"/>
|
||||||
|
<path class="st28" d="M367.7545,408.5533c-1.0618.5643-2.4563,1.0986-2.825,2.2431-.5238,1.6262,1.1614,3.239,1.399,4.9308.2222,1.5819.7109,3.3557.0125,4.7924-.5576,1.147-1.9651,1.6314-3.015,2.3555-1.1484.792-2.8562.9748-3.5804,2.1671-.7516,1.2375-1.2142,3.226-.2826,4.3342.7521.8947,2.35.6511,3.4862.3769,1.2787-.3086,1.984-2.1037,3.2978-2.1671,1.208-.0582,2.1958,1.0323,3.2097,1.6916.937.6093,1.5309,2.2686,2.6321,2.0773,1.2162-.2113,1.0856-2.2718,1.9627-3.1404.8415-.8333,2.2236-.9871,3.0311-1.8534.6745-.7237,1.4924-1.6533,1.3664-2.6344-.132-1.0273-1.7783-1.3168-2.0815-2.3072-.3846-1.2563.848-2.6234.5497-3.903-.2944-1.2631-1.1736-2.4105-2.1902-3.2159-1.3715-1.0867-3.6806-.6291-4.8996-1.8845-1.005-1.0349-.1767-3.3766-1.4344-4.0832-.0722-.0405-.164.0267-.243.0516-.1366.0432-.2611.1187-.3955.1684h-.0002l.0002.0002h0Z"/>
|
||||||
|
<path class="st28" d="M301.8923,465.747c-1.2151-.051-2.3358.6787-3.5033,1.0193-1.3521.3944-2.6791.8873-4.0555,1.1861-1.4195.3082-3.3235-.4421-4.3132.6212-.8626.9267-.7311,2.6089-.271,3.7883.5625,1.4421,1.8401,3.3392,3.3803,3.1842,1.3005-.1309,1.1496-2.5161,2.2613-3.2036.9701-.5999,2.25-.6509,3.3826-.5163,1.688.2006,3.1172,1.3648,4.7206,1.9297,1.4527.5119,3.3008.2699,4.4285,1.319.783.7284.2987,2.3345,1.1353,3.0008,1.1934.9504,3.1085,1.1628,4.5345.6207,1.3509-.5136,2.0975-2.0415,2.8199-3.2932.7008-1.2143,1.6854-2.5949,1.3977-3.9671-.1975-.9421-1.376-1.3535-1.9729-2.1088-1.0811-1.368-1.2055-3.9118-2.8906-4.3595-1.2341-.3279-2.2809,1.1488-3.4223,1.7212-.9417.4722-1.7733,1.4243-2.8266,1.4134-1.3486-.014-2.3521-1.3274-3.5804-1.8844-.3984-.1807-.7878-.4526-1.2249-.4709h0Z"/>
|
||||||
|
<path class="st28" d="M115.721,345.4822c.3717,1.3028-2.2625,1.4968-3.4523,2.1447-.7203.3922-1.5541.5788-2.2245,1.0512-.9839.6932-1.6457,1.7624-2.5514,2.5551-.8029.7028-1.4778,1.9421-2.5448,1.942-1.4557,0-2.0258-2.8214-3.4713-2.6497-1.2074.1435-1.5949,1.8407-2.3003,2.8311-.584.8199-.7673,1.9893-1.5925,2.5657-.716.5001-1.8433.0401-2.5657.5309-1.2011.816-1.4744,2.5154-2.3922,3.6407-.8411,1.0311-2.2273,1.6303-2.8276,2.8179-.5381,1.0646-1.2121,2.5597-.5308,3.5389.8117,1.1667,2.7622,1.0419,4.1734.873,1.4214-.1701,2.7794-.9278,3.8775-1.8463.7096-.5935.7758-1.871,1.6173-2.2553,1.6087-.7348,3.6815-.2634,5.2835.4859.7171.3354,1.5585.894,1.6829,1.6758.1645,1.0337-.8279,1.9388-1.4271,2.797-.7888,1.1298-2.0801,1.8632-2.8095,3.0323-.873,1.3992-2.1632,3.0112-1.7816,4.6157.1932.8125,1.1018,1.3264,1.858,1.6811,1.7539.8227,3.9015,1.3889,5.7536.8208,1.1176-.3428,2.1297-1.2853,2.5969-2.3568.6741-1.5461-.6675-3.4869-.0582-5.0597.4728-1.2203,1.6024-2.1256,2.6782-2.8708,1.077-.7461,2.9604-.3757,3.6331-1.5.7617-1.273.3566-3.1816-.4482-4.4278-.7025-1.0878-2.6588-.8592-3.362-1.9466-.6279-.9708-.6152-2.3242-.3539-3.4504.3213-1.3846,1.3038-2.5638,2.2584-3.6168.9491-1.0469,2.5796-1.4075,3.3592-2.5861.7409-1.1201,1.6358-2.7099,1.0126-3.8995-.5092-.9721-3.2828-.0535-3.0908-1.134h0Z"/>
|
||||||
|
<path class="st28" d="M87.2331,413.0746c.7728-1.2478.4123-3.3317,1.681-4.0697,1.2199-.7096,2.8873,1.0465,4.2004.5296,1.1979-.4716,1.3819-2.2843,2.4742-2.9656,1.1106-.6927,2.5134-.7892,3.8145-.933,1.5961-.1764,3.3362.7177,4.8166.0954,1.2693-.5336,2.8384-1.6312,2.8311-3.0081-.008-1.5756-2.2067-2.2503-3.2761-3.4075-.602-.6514-.9458-1.654-1.7669-1.9894-1.5872-.6484-3.4928.8586-5.1314.3539-1.325-.4082-2.6752-1.3187-3.2693-2.5714-.4542-.9576-.581-2.3342.0591-3.179.5919-.7811,1.8443-.9812,2.8151-.8476,1.07.1472,1.8504,1.1176,2.7349,1.7375,1.145.8024,1.9411,2.3439,3.3224,2.5605,1.5482.2427,3.1207-.7215,4.4236-1.5925,1.0935-.731,1.4981-2.2926,2.6543-2.9196,1.7764-.9633,3.9796-1.2273,5.984-.9708,1.738.2224,3.7839.7004,4.8096,2.1209.3931.5444-.0727,1.3881.1918,2.0053.4048.9448,1.3075,1.5891,2.0201,2.3299.8968.9323,2.9197,1.3637,2.8311,2.6542-.0891,1.2981-1.8846,2.2662-3.1858,2.2557-1.5717-.0127-2.3201-2.2675-3.8036-2.7866-1.3651-.4776-3.1212-.9632-4.3351-.177-.9331.6043-.905,2.0361-1.2387,3.0965-.2727.8666-.1881,1.8546-.6194,2.6542-.554,1.0271-1.9306,1.4744-2.4119,2.5374-.6391,1.4113.1417,3.1848-.4193,4.629-.4592,1.1822-1.1043,2.6182-2.3047,3.0272-1.5024.5119-3.0574-.8556-4.5976-1.2392-1.438-.3582-2.8644-1.1852-4.3336-.9918-1.314.173-2.2657,1.4156-3.5144,1.8598-1.2503.4449-2.5825.8968-3.9044.779-1.1094-.0989-2.1455-.6651-3.1094-1.2231-.0817-.0473-.1475-.118-.2212-.1769-.0737-.059-.2128-.0829-.2212-.1769l.0002-.0002h0Z"/>
|
||||||
|
<path class="st28" d="M555.2511,250.993c.1392-.211.4506-.2422.697-.2987,1.4249-.3264,2.9307-.3837,4.3808-.1992.8956.114,1.7667.4233,2.5886.7968.7463.3391,1.6135.6282,2.0908,1.2946.5157.7199.9074,1.759.5975,2.5886-.316.8458-1.3507,1.2615-2.1904,1.5934-1.028.4063-2.1906.5159-3.2908.4097-1.18-.114-2.3787-.4717-3.3798-1.1066-.694-.4401-1.3791-1.0327-1.6928-1.7922-.4088-.9896-.7281-2.3546-.0855-3.2109.0589-.0785.2247.003.2847-.0747.0001-.0002-.0001-.0005,0-.0007h-.0001Z"/>
|
||||||
|
<path class="st28" d="M288.5092,459.9997c.1151.1246.3397.0144.5073.0406,1.2032.1883,2.4778,1.4001,3.5567.8353,1.1725-.6139.4815-2.7982,1.456-3.6937,1.1061-1.0165,3.1421-.3574,4.3172-1.2933,1.1345-.9035,2.5482-2.3882,2.1497-3.7827-.3414-1.195-2.0364-1.6998-3.2767-1.779-1.0647-.068-2.0099.7222-2.9841,1.157-1.2161.5428-2.3459,1.2668-3.5626,1.8082-1.329.5914-3.009.576-4.0723,1.5687-.9171.8562-1.9126,2.1988-1.5906,3.4114.2529.9525,1.4778,1.3994,2.4142,1.7068.3437.1129.8318-.2376,1.0851.0206h0Z"/>
|
||||||
|
<path class="st28" d="M689.8638,234.3957c-1.4374.4073-2.2745,2.023-3.6551,2.5939-1.4255.5895-3.0228.6902-4.5633.7695-1.5456.0796-3.2722-1.0345-4.6333-.2979-.9132.4942-1.6216,1.6773-1.5328,2.7118.0956,1.1131,1.7177,1.5526,2.1223,2.5939.5132,1.3208-.6708,3.1555.2358,4.2446.8538,1.0256,2.6598,1.4583,3.8909.9432,1.2684-.5307,1.3143-2.4246,2.1223-3.5372.7039-.9693,1.3356-2.0878,2.3581-2.7118.9842-.6006,2.321-.3231,3.3592-.8248,1.0975-.5304,2.3378-1.154,2.8898-2.2408.6143-1.2097,1.0298-3.0654.1164-4.0685-.6096-.6694-1.8393-.423-2.7103-.1761v.0002h0Z"/>
|
||||||
|
<path class="st28" d="M227.7693,381.8583c.8473-.5323,1.9874-.5891,2.973-.4162,1.067.1872,1.8455,1.1758,2.8729,1.5192.8829.2951,1.8774.7445,2.7575.4412.6641-.2289.9158-1.0699,1.4339-1.5442.6194-.567,1.1676-1.3746,1.9899-1.545,1.4481-.3002,3.3604-.0405,4.2972,1.1038.8862,1.0826.7252,2.8865.2206,4.1914-.2061.5331-.7411.8919-1.2185,1.2061-.6609.4351-1.7569.2346-2.2008.8896-.5488.8097-.0004,1.9563-.0136,2.9343-.0195,1.4487-.6446,3.0042-.0967,4.3455.5352,1.31,1.8808,2.1514,3.0392,2.9642,1.2521.8786,3.3748.6693,4.1303,1.9993.8385,1.4761.2929,3.5431-.4412,5.0738-.4728.9858-1.2828,2.1538-2.3702,2.2672-1.3562.1414-2.6099-1.1035-3.4757-2.1569-.8748-1.0642-1.0696-2.5453-1.4582-3.867-.2858-.972-.0481-2.1476-.6375-2.9716-.6236-.8719-1.8996-1.0118-2.7575-1.6545-.5206-.39-.8564-1.0242-1.4339-1.3236-.9347-.4846-2.0357-.6796-3.0884-.6618-1.3641.0231-2.6564,1.3584-3.9708.9927-.9019-.2509-1.9052-1.0575-1.9814-1.9906-.1027-1.2587,1.7966-1.8871,2.202-3.0832.3542-1.0452.4045-2.2453.1103-3.309-.3616-1.3073-2.2162-2.063-2.206-3.4193.006-.7953.6501-1.5623,1.3236-1.9854h0Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="River">
|
||||||
|
<path id="River-3" class="st23" d="M763.6786,265.6666c-2.8494.9343-4.666,4.28-7.5939,6.416-4.8264,3.5211-5.7673,10.1311-8.1907,12.6136-1.45,1.4854-5.4858,1.4593-5.5806,3.469-.1053,2.2343,5.8291,2.4367,4.3109,19.5736-1.7161,19.3704-11.7464,14.9075-13.8323,21.4812-.95,2.994-1.1501,7.537.0648,10.4374,1.4801,3.5335,6.6859,2.3748,7.0234,6.1933.3853,4.36-7.9498,11.8594-8.2753,17.8001-.5126,9.3558,4.2925,15.5055,4.5906,25.0362.1829,5.8453-1.9538,13.2844-2.5638,21.351-1.3046,17.2535-2.0878,35.221-2.0878,35.221l31.1659-.0587s1.0541-15.8646,4.4029-30.8773c2.0483-9.1825,6.3555-18.2043,6.6679-25.6048.3935-9.3229-.4383-19.0814.8076-28.3288,1.1772-8.7376,7.4131-16.0639,7.9913-24.861.4973-7.5667-5.9738-10.7836-4.5975-24.4565,1.709-16.9775,10.4831-14.0432,10.823-28.0919.1843-7.6148-7.2373-7.3672-9.2421-10.2258-2.0082-2.8635.8431-5.6324-1.9573-7.735-2.4985-1.8759-5.1696.0254-6.5086.5461-4.4457,1.7287-4.7751-.7656-7.4185.1011h.0001ZM765.309,334.227c.928,1.03,2.214,3.053,2.022,4.308-.613,4.034,2.871,9.38,1.473,11.529-2.06,3.169-9.478,8.492-10.588,9.274-3.207,2.265-1.526-7.766-1.451-11.693.058-2.899.272-5.919,1.414-8.583.784-1.836,1.857-3.833,3.613-4.78.251-.134,3.33-.265,3.517-.055Z"/>
|
||||||
|
<path id="River-2" class="st23" d="M791.15,170.7502c-1.2375.0482-4.6286-.6597-5.9615-.6962-.9995-.0274-9.7447.6189-11.4022,3.9781-1.812,3.6723,11.6902,3.8707,4.6434,6.809-4.1473,1.7293-9.3348-.2376-11.1426,2.6866-4.1547,6.7206-7.5826,15.924-10.245,23.4292-2.9626,8.3518-10.4018,22.1367-7.0985,27.4582,2.7252,4.3902,10.5357-1.2216,11.911,2.6826,1.9347,5.4921-7.2028,5.8384-10.5773,8.6103-1.3943,1.1454-5.8805,4.9111-5.3943,7.9317.4189,2.6029,2.5993,5.182,4.376,5.247,5.0755.1856,5.4415-9.2068,9.476-10.4252,8.0745-2.4386,17.8145,5.4543,26.2305,6.0113,2.7961.185,5.5838-.1953,7.4448-2.198.8239-.8866,2.2527,2.9257,2.5802,1.4029,2.6161-12.1652,1.226-28.2333,3.4035-40.0664,1.7715-9.6269,6.4268-14.0018,6.9598-27.0503.0656-1.6066-.004-6.7338-.605-8.2306-1.4704-3.6638-1.9673-1.2712-4.7301-3.489-1.8391-1.4763.48-4.8121-2.1829-4.8979-.192-.006-6.3962.7565-7.6855.8067h-.0004,0Z"/>
|
||||||
|
<path id="River-1" class="st23" d="M794.3383,60.2998l-45.3864,4.3646c1.0921,6.2428-.7507,6.0181.6268,11.6469.914,3.7349,3.3956,7.1545,4.6612,11.0408,1.3082,4.0169,1.7226,8.4287,3.0515,12.5803,1.605,5.0141,4.2913,9.6684,4.8894,13.6392.9586,6.3638-.1517,16.7817,3.4595,24.9206,2.3483,5.2925,6.5032,11.9397,10.704,16.8021,3.1581,3.6555,13.7584.7305,15.2201,2.4343,1.4166,1.6511-6.7836,7.3148-3.1027,8.3185,4.4225,1.2058,7.3567,1.8071,11.6973-3.6169,3.3153-4.1428,4.2739,1.3524,9.0076-4.3164,2.4838-2.9744.655-6.9473.7951-12.2647.1646-6.246,3.567-7.7987,1.5306-18.4939-4.5696-24.0001-17.1542-67.0553-17.1542-67.0553h.0002Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Dirt_Roads">
|
||||||
|
<path class="st11" d="M77.4548,362.255s12.342,14.32,20.781,17.755c7.8832,3.21,29.7208,3.1202,42.5098,8.9602,13.234,6.044,20.528,20.0829,31.174,25.5479,6.688,3.432,21.1821-4.5879,21.1821-4.5879"/>
|
||||||
|
<path class="st11" d="M519.4228,508.8357c-28.9212,23.5904-19.4243,35.8148-47.8736,57.357"/>
|
||||||
|
<path class="st11" d="M599.0972,172.1893s-17.8528-4.7229-27.0032-5.6111c-3.4131-.3313-6.877.4799-10.2869.1169-5.245-.5584-14.9628-3.505-15.4304-3.5069-.4617-.002-38.4947,6.9616-43.1162,7.8221"/>
|
||||||
|
<path class="st11" d="M481.8883,192.8203c-4.664.8353-10.2155,3.3938-14.5341,4.5019-7.1978,1.8468-21.9767,3.7407-21.9767,3.7407"/>
|
||||||
|
<path class="st11" d="M576.7774,213.2868s-9.9438,2.9727-10.5283,2.8558-8.759,1.3635-12.508-.4676c-6.6348-3.2406-12.0263-9.9126-14.2614-16.9501-1.5388-4.8451-1.4634-10.9206,1.2859-15.1966,2.3211-3.6101,7.8477-3.6603,11.2221-6.3124,3.7715-2.9643,9.8193-10.5207,9.8193-10.5207"/>
|
||||||
|
<path class="st11" d="M540.7656,183.5283s-10.3677,5.9691-16.1318,6.3124c-4.1794.2489-5.6648-2.4909-9.8478-2.6672-1.6885-.0711-4.7408,1.3553-8.2274,2.0164"/>
|
||||||
|
<path class="st11" d="M539.4797,198.7249s-4.3398,5.0824-7.2476,6.5462c-9.1942,4.6284-20.5624,2.6734-30.2763,6.0786-3.9306,1.3779-6.9959,5.0482-11.1052,5.728-3.3817.5594-7.1487.099-10.17-1.5197-3.8907-2.0845-6.3536-6.2028-8.8842-9.8194-1.8187-2.5992-3.1771-5.5074-4.4421-8.4166-2.2703-5.221-4.29-10.5939-5.6111-16.1318-1.6968-7.1132-2.2848-14.4579-2.9224-21.7428-.6631-7.5757-1.5944-15.2189-.9352-22.7949.2697-3.099.6049-6.3313,1.9872-9.118,3.4146-6.8832,9.1857-12.4687,14.9628-17.5346,2.5841-2.266,5.3361-4.701,8.6504-5.6111,8.5737-2.3543,17.8173.0567,26.6525,1.0521,5.4755.6169,11.4472.3361,16.2487,3.0393,4.7852,2.694,9.2288,7.0723,10.9883,12.2742,2.7301,8.0711-3.0394,17.0285-1.9872,25.4836.7742,6.2209,6.0129,17.8195,6.0129,17.8195"/>
|
||||||
|
<path class="st11" d="M510.1385,105.4411s.0697,18.2854,2.4548,27.0032c1.366,4.9931,3.3865,10.02,6.6631,14.0276,2.8363,3.4692,7.2418,5.2838,10.7545,8.0659,3.879,3.0722,11.3902,9.5199,11.3902,9.5199"/>
|
||||||
|
<path class="st11" d="M477.6338,169.3689c-7.1187,1.332-11.4126,2.0064-17.0769,2.9956"/>
|
||||||
|
<path class="st11" d="M553.7411,215.675c-5.9334,2.3858-8.1195,10.4177-14.3197,13.7987-8.3605,4.559-19.5854,11.8119-19.1502,11.868"/>
|
||||||
|
<path class="st11" d="M513.9529,208.9411s1.1842,11.8069,2.3462,17.6156c1.001,5.004,3.9721,14.785,3.9721,14.785"/>
|
||||||
|
<path class="st11" d="M514.7859,187.1736l18.3144-21.6142"/>
|
||||||
|
<path class="st11" d="M959.9492,107.4021s-1.991-2.833-2.7999-5.8126c-1.1389-4.1953-1.3519-5.8275-1.2488-14.191"/>
|
||||||
|
<path class="st11" d="M139.6859,264.0971l5.366-46.2821"/>
|
||||||
|
</g>
|
||||||
|
<g id="Pavement">
|
||||||
|
<path class="st29" d="M853.7012,127.1725l-3.667,122.3674,66.6297,1.5586,1.8392-38.3776-28.156-.7931.1906-5.8291-6.6372-.2059,1.5065-55.1102,7.1963.2469.7424-23.3302-39.6445-.527v.0002h.0001Z"/>
|
||||||
|
<path class="st29" d="M949.8137,120.7376l-3.577,112.2552,7.8104,4.3558,47.6484-23.3966,3.2449-91.4364-55.1267-1.7781h0Z"/>
|
||||||
|
<path class="st29" d="M868.7332,65.3151l-1.6283,34.1087,64.7604,1.6857,1.2593-34.3631-64.3914-1.4313h0Z"/>
|
||||||
|
<path class="st29" d="M528.8226,237.2751l-49.4627,6.6241,6.2371,31.3839,48.5537-8.4846-5.3281-29.5233h0Z"/>
|
||||||
|
<path class="st29" d="M627.6404,164.2996l-42.6467,8.308-.7538,16.8989,1.5115,7.1355,14.0198-3.1199.7031,4.4826,3.6418-.8956,1.2626,6.0575,17.2187-4.3069,5.5193,1.5888,2.811-6.4253-.435-18.0274-2.8524-11.6962h.0002Z"/>
|
||||||
|
<path class="st29" d="M555.2328,285.0542l-14.5942,8.0638-6.0202,1.1415,4.2982,27.5257,72.44,6.6118,2.6727-44.4424-40.3024-2.9424-.3456,6.3354-6.647-2.1488-11.5015-.1446h0Z"/>
|
||||||
|
<path class="st29" d="M416.195,192.1101l-10.1448,26.7698,38.7445,8.0036,7.8699-2.3968-3.4677-26.5219-33.0019-5.8547Z"/>
|
||||||
|
<path class="st29" d="M349.5297,153.3635l-7.1644-38.3862,29.9667.2182,5.5004,22.7339-28.3027,15.4342h0Z"/>
|
||||||
|
<path class="st29" d="M264.0742,310.9915l-4.3315,35.8595c-.4325,3.1854,1.3976,5.9341,4.2469,6.2534l39.4614,4.6468c1.9631.2491,4.8985-.9125,5.1739-3.303l4.269-37.4385-48.8197-6.018v-.0002h0Z"/>
|
||||||
|
<path class="st29" d="M256.9335,224.0688l-10.673,58.1093,114.6922,15.3798,2.91-19.761-42.7285-6.7064,5.9429-36.0578-70.1436-10.9639h0Z"/>
|
||||||
|
<path class="st29" d="M163.9891,172.8898l-4.3104,34.4133,19.6786.1322,4.4701-33.8903-19.8383-.6553h0Z"/>
|
||||||
|
<path class="st29" d="M436.403,341.7734l-3.1724,1.2763-1.2003,1.4443-2.528,6.7667-.315,11.1477,49.0985,2.5076.2439-22.373-42.1268-.7696h0Z"/>
|
||||||
|
<path class="st29" d="M519.3563,270.5324l-59.2362,10.8461,4.4446,24.2743,26.8698-4.9198,1.1647,5.3605,5.1425,1.0625.6968,10.1955,21.7434,3.5986-4.1638-24.7183,7.7827-1.425-4.4446-24.2744h0Z"/>
|
||||||
|
<path class="st29" d="M187.434,400.3786l-1.2133,18.5768-7.8327,15.7662,8.1278,4.9514,10.7381-14.7045,4.8914-3.2207,10.4836-4.315,4.7838-16.2576-20.4856-13.6181-9.4929,12.8215h-.0002Z"/>
|
||||||
|
<path class="st29" d="M495.4866,467.7564l-1.862,13.8984-14.7628-2.2942.5985-4.0565-5.4197-.7315-.8977-7.7139,1.4962-1.729,20.8475,2.6267h0Z"/>
|
||||||
|
<path class="st29" d="M736.8849,350.4147l21.408.1878.0411-4.6861-21.408-.1878-.0411,4.6861Z"/>
|
||||||
|
<path class="st29" d="M766.3678,344.5932l17.6522-1.3145-.3691-4.3829-17.6378,1.4853.3547,4.2122h0Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Roads">
|
||||||
|
<path class="st15" d="M137.702,286.23s-5.113,14.902-9.33,21.466c-4.255,6.621-10.406,11.814-15.786,17.556-9.424,10.061-19.8282,19.202-28.8842,29.592-6.922,7.943-14.096,15.852-19.388,24.961-6.187,10.646-11.371,22.131-14.127,34.132-3.3,14.375-2.608,44.168-2.608,44.168"/>
|
||||||
|
<path class="st15" d="M4.6897,214.5212c-.4935,4.0436-7.6472,29.1662,17.1499,32.6638,74.6934,10.5271,242.0725,34.9874,290.5408,41.9288,8.5582,1.2256,9.8756-7.5694,19.8589-6.0627"/>
|
||||||
|
<path class="st15" d="M328.4264,309.7588s16.8984-118.6415,20.6992-146.2537c.62-3.803,1.4908-10.0955,1.0554-15.1791-3.97-21.699-9.141-49.517-9.141-49.517"/>
|
||||||
|
<path class="st15" d="M34.9918,249.469s6.621-55.259,10.824-82.321c.472-3.042,2.814-5.813,5.392-7.493,2.571-1.675,5.961-2.273,9.007-1.899,31.361,3.841,66.9882,7.707,98.4882,11.678,7.5856.8411,10.9925,7.9514,10.9925,7.9514"/>
|
||||||
|
<path class="st15" d="M520.694,334.808c-5.034,16.674-5.9234,54.881-14.6129,126.0211-.3606,2.9525-3.8479,5.1458-6.3191,4.8807-5.8633-.6289-13.32-1.5341-20.4314-2.5276-2.5682-.3588-5.0012-3.6818-4.6339-6.2488.8918-6.2339,1.9569-12.5454,2.8084-18.2549.3142-2.107,3.0835-3.9987,5.1956-3.7212,7.8583,1.0323,25.2057,3.2999,25.2057,3.2999"/>
|
||||||
|
<path class="st15" d="M629.897,97.864s-1.5071,19.3837-.2421,28.9897c2.908,22.108,14.9871,42.2403,18.3271,64.2873.598,3.962,1.409,8.198.203,12.021-1.238,3.925-4.04,7.418-7.252,9.994-4.195,3.367-7.769,5.7757-12.673,7.9776-4.8163,1.4363-10.947.4433-13.5359,3.7444-2.641,3.365-2.0657,8.009-1.0677,12.167,2.108,8.756,3.0947,16.7473,3.6717,24.7204.272,3.803-3.1097,7.9346-6.0987,10.3096-4.611,3.669-13.048,3.7233-17.125,7.9803-3.7195,3.5979-3.5553,5.8872-4.0972,14.2947"/>
|
||||||
|
<path class="st15" d="M1024.1838,107.7455l-149.6353-.8001"/>
|
||||||
|
<path class="st15" d="M265.0614,302.0432s3.0107,9.8717,2.921,15.1895c-.036,2.1317-.8026,9.6511-1.4066,13.7213"/>
|
||||||
|
<path class="st15" d="M294.0133,305.8741s3.2443,9.1239,2.7258,13.7761c-1.163,10.435-2.6656,22.1116-3.6098,30.057-.4496,3.7837,10.9149,5.1857,11.345,1.3997.9031-7.9489,2.2052-20.2398,3.3151-30.4253.4861-4.4607,4.9358-12.5237,4.9358-12.5237"/>
|
||||||
|
<path class="st15" d="M634.8837,217.5681c-4.9672,2.3062-10.445-.5801-15.3336-1.9407-4.7615-1.3253-8.8629-4.6701-13.7058-5.6576-3.4691-.7074-7.1389-.8447-10.657-.084"/>
|
||||||
|
<path class="st15" d="M476.1665,329.2032s-.321,6.9536-1.7335,10.0434c-1.3332,2.9165-6.0986,7.4403-6.0986,7.4403"/>
|
||||||
|
<path class="st15" d="M647.9882,191.182s-5.7867-4.6442-9.1193-6.1909c-3.4844-1.6172-11.0984-3.1033-11.0984-3.1033"/>
|
||||||
|
<path class="st15" d="M886.4784,127.6083c.1148-8.5803.3525-10.9994,1.7549-14.357,1.0262-2.4568,5.0289-6.2058,5.0289-6.2058"/>
|
||||||
|
<path class="st15" d="M893.2622,107.0455s-2.339-2.9383-2.9042-4.8762c-.3352-1.1492-.3998-2.1507-.3036-4.7871"/>
|
||||||
|
<path class="st15" d="M959.9492,107.4021s-2.6989,3.4483-3.6682,5.655c-.8727,1.9867-1.0538,3.5978-1.1736,7.8513"/>
|
||||||
|
<path class="st15" d="M917.2297,274.5121c-2.8791,1.3474-5.4466,1.639-7.8821-.1354-1.2076-.8798-2.1868-2.1485-2.8825-3.4706-1.222-2.3224-1.6359-4.8983-1.9238-7.5068-.4526-4.1008-.1476-8.8924-.0615-12.5857"/>
|
||||||
|
</g>
|
||||||
|
<g id="Main_Roads">
|
||||||
|
<path class="st3" d="M688.135,355.963s-443.367-55.787-656.069-83.491c-15.4209-1.9351-21.6089-3.298-31.102-5.5161"/>
|
||||||
|
<path class="st3" d="M661.762,353.273s27.953-71.602,39.945-108.099c3.901-11.876,7.562-23.617,9.018-36.033,1.409-12.018,1.207-24.262-.352-36.261-1.649-12.716-8.037-37.618-8.037-37.618"/>
|
||||||
|
</g>
|
||||||
|
<g id="High_Roads">
|
||||||
|
<path class="st1" d="M1059.6689,204.8018s-135.6351,71.9628-199.9979,101.5342c-10.737,4.754-19.5792,6.5399-31.2982,7.2959-11.778.758-26.4548-.7379-39.3763-2.134-20.1738-2.1797-41.8388-4.1078-62.7549-6.7268-5.881-.306-8.6476.799-13.5096,4.1249-5.273,3.604-8.48,9.661-11.687,15.184-5.636,9.71-10.097,20.227-12.995,31.074-9.27,34.67-16.4649,137.3589-16.4649,137.3589"/>
|
||||||
|
<path class="st1" d="M1026.3,42.914l-7.81,239.271"/>
|
||||||
|
</g>
|
||||||
|
<g id="Railway">
|
||||||
|
<path class="st14" d="M196.092,534.2197s68.111-84.6707,102.331-126.7457c6.423-7.897,23.246-15.105,30.912-20.294,7.712-5.221,13.429-9.326,18.91-15.303,6.152-6.709,11.015-14.593,15.281-22.634,3.574-6.736,6.984-13.759,8.522-21.227,8.923-43.32,13.23-87.51,22.827-132.277,2.485-11.592,10.667-23.245,17.955-32.594,40.0015-49.3049,124.9997-153.3815,124.9997-153.3815"/>
|
||||||
|
<path class="st6" d="M64.7191,146.497s197.0729,24.363,294.4219,36.545c7.7.965,15.871,1.304,23.259-1.077,6.755-2.176,13.401-6.084,17.843-11.618C438.668,122.485,533.9578,6.5464,533.9578,6.5464"/>
|
||||||
|
<path class="st13" d="M467.0599,275.5478c-11.1773-53.3826-16.5179-82.9047-19.2699-124.6118-.4774-7.2349-1.0067-10.4705.156-19.798,2.1894-17.5638,19.934-35.64,19.934-35.64"/>
|
||||||
|
<path class="st10" d="M829.3895,480.3518l14.9346-464.7958"/>
|
||||||
|
<path class="st10" d="M65.5101,140.9317s197.9419,24.3883,294.4199,36.8423c7.837,1.011,16.176-.015,23.524-2.922,6.944-2.748,12.564-6.993,17.158-12.883C440.5386,113.028,530.5247,3.2627,530.5247,3.2627"/>
|
||||||
|
<path class="st7" d="M239.009,266.344s6.189-40.636,10.579-64.215c1.525-8.185,10.1509-18.7556,17.7719-22.1046,15.2372-6.9039,21.6792-5.5844,30.9937-4.5635"/>
|
||||||
|
<path class="st17" d="M178.5648,258.564s4.8972-40.619,9.2882-64.199c1.524-8.184,10.4647-19.9469,18.0906-23.2829,13.7082-5.9966,21.5173-4.4284,32.85-3.022"/>
|
||||||
|
<path class="st0" d="M188.4035,260.402s4.8185-37.7908,8.8855-61.5333c1.524-8.185,10.7649-22.1524,19.2777-25.4212,15.0136-6.9562,24.0043-5.062,33.8824-3.9404"/>
|
||||||
|
<path class="st8" d="M848.101,254.063s2.957-101.37,4.569-153.193c.459-14.765-9.665-29.747-9.665-49.657"/>
|
||||||
|
<path class="st8" d="M383.446,78.661s1.666,12.06,4.996,26.072c1.891,7.954,6.559,16.15,13.492,20.483,5.445,3.404,12.967,4.371,19.103,2.479,9.733-3.002,23.7732-19.7927,23.7732-19.7927"/>
|
||||||
|
<path class="st9" d="M474.5529,269.271s-10.0376-48.3195-15.0286-72.5521c-.9445-4.5858-3.5781-8.6606-5.0836-13.0941-2.1558-6.3489-5.6431-19.3069-5.6431-19.3069"/>
|
||||||
|
</g>
|
||||||
|
<g id="Fence">
|
||||||
|
<path class="st12" d="M44.1088,257.9832l4.2776.1839M50.8034,259.4479l68.4732,9.6817M123.8228,269.6404l43.2763,5.921M375.6804,255.4717l8.4061-56.6198-3.2905-7.4712-7.8431-4.9178-8.2611-.3869M286.545,291.5417l30.0518,4.0157,7.1371-3.2152,15.6547,2.402,6.2104,5.2256,20.3276,1.8196,3.1404-1.7719,5.9738-40.2372M170.7107,276.0631l114.0689,15.2428M287.1225,295.8595l-3.5126,24.1953"/>
|
||||||
|
<path class="st12" d="M374.6842,300.7761l5.024.855.9141,2.635,52.5742,6.482.4397-5.6675"/>
|
||||||
|
<path class="st12" d="M369.0511,299.8174l3.4442.5861"/>
|
||||||
|
<path class="st12" d="M436.4539,305.2827l-.3344,5.8191,36.7669,5.3018"/>
|
||||||
|
<path class="st12" d="M476.398,316.7559l20.6447,2.9886"/>
|
||||||
|
<path class="st12" d="M523.4049,323.2596l6.3374,1.0031"/>
|
||||||
|
<path class="st12" d="M507.4202,321.3311l2.8789.2996,3.7999-.6978,6.9796,1.9586"/>
|
||||||
|
<path class="st12" d="M117.2298,280.3874l2.9462.5364-5.5185,20.6802"/>
|
||||||
|
<path class="st12" d="M116.3987,268.6058l-2.0874,11.2502,1.293.2354"/>
|
||||||
|
<path class="st12" d="M149.4516,345.6723l36.5355,4.5589"/>
|
||||||
|
<path class="st12" d="M133.6301,343.6146l-20.4478-2.7495,1.364-4.9216,15.6656-14.838-12.6277-10.92"/>
|
||||||
|
<path class="st12" d="M228.7648,364.5746l7.9379,1.3393,28.4988-2.4066,12.1728-.2112,19.8984,2.1823"/>
|
||||||
|
<path class="st12" d="M301.1723,365.8801l4.14-.188"/>
|
||||||
|
<path class="st12" d="M308.8733,363.282l4.1469-.0847,12.1526,1.4153,8.5727-.3508"/>
|
||||||
|
<path class="st12" d="M337.6835,363.4213l8.5582-8.0039,1.7026-3.3985,9.0215,3.7887"/>
|
||||||
|
<path class="st12" d="M362.933,358.6538l5.1936,2.3084"/>
|
||||||
|
<path class="st12" d="M366.2211,364.2979l-6.4486,10.6001-7.9867,9.3284"/>
|
||||||
|
<path class="st12" d="M339.0349,403.82l-2.4919,12.711.238,16.051"/>
|
||||||
|
<path class="st12" d="M337.7173,436.9544l3.1841,8.8204,9.6035,4.8017"/>
|
||||||
|
<path class="st12" d="M354.7946,452.5403l2.0365,3.2748,9.2875,8.377"/>
|
||||||
|
<path class="st12" d="M294.5008,366.3245l.8215,5.4584,15.1306-.1844,6.6235,2.8851,3.2737,5.783,6.3341-2.9481,4.0512,5.2164"/>
|
||||||
|
<path class="st12" d="M334.789,387.9057l6.5703,8.071,1.7983-3.4865,2.593-3.2406"/>
|
||||||
|
<path class="st12" d="M494.1588,433.6638l.7134-6.9965,10.0642,1.3414"/>
|
||||||
|
<path class="st12" d="M533.5618,324.6602l60.3906,7.9726,16.3484.9279,9.1402-8.2892,22.2066-23.3081"/>
|
||||||
|
<path class="st12" d="M644.437,298.1371l12.7855-15.5445"/>
|
||||||
|
<path class="st12" d="M660.3857,279.2621l4.6442-6.4716,2.6231-7.5496,2.652-12.1438"/>
|
||||||
|
<path class="st12" d="M662.7693,211.5348l.9258-4.2893-.9258-2.8359"/>
|
||||||
|
<path class="st12" d="M661.2174,198.2359l-4.3052-22.8351"/>
|
||||||
|
<path class="st12" d="M708.2307,237.6618l26.2296,7.3783,5.2791.8608"/>
|
||||||
|
<path class="st12" d="M745.7477,244.9175l14.4102-6.8365"/>
|
||||||
|
<path class="st12" d="M660.2949,282.4922l19.8264,8.8113"/>
|
||||||
|
<path class="st12" d="M682.3448,292.2643l5.4053,2.3667,6.1143-15.0233,16.5711,5.8267"/>
|
||||||
|
<path class="st12" d="M714.8604,286.7552l15.5839,2.4964-2.4533,7.133"/>
|
||||||
|
<path class="st12" d="M790.6006,258.083l7.3297-.6277"/>
|
||||||
|
<path class="st12" d="M801.6773,257.1834l32.0234-2.957"/>
|
||||||
|
<path class="st12" d="M109.6123,317.7911l1.8812-1.2809"/>
|
||||||
|
<path class="st12" d="M98.4283,334.4681l-5.0177-4.6223,3.6304-3.4947,9.7678-6.651"/>
|
||||||
|
<path class="st12" d="M99.7069,320.0147l-1.5659-2.8802,9.8918-20.9708,7.4695,2.2743"/>
|
||||||
|
<path class="st12" d="M676.6768,233.2899l7.4129-.5987"/>
|
||||||
|
<path class="st12" d="M686.6733,232.7505l6.2604.7357"/>
|
||||||
|
<path class="st12" d="M849.0649,111.8451l-2.9972-.188-1.299,42.3499"/>
|
||||||
|
<path class="st12" d="M844.7666,156.5878l-.41,21.0637"/>
|
||||||
|
<path class="st12" d="M844.3376,180.7442l-.2971,37.8003-1.1602,32.6974"/>
|
||||||
|
<path class="st12" d="M843.3041,255.8726l.3367,8.004,5.0543,6.4298,25.5626,13.2263,4.1098-.2571,19.0334-9.0277"/>
|
||||||
|
<path class="st12" d="M900.7296,272.9416l1.7717-3.8438,5.5611-2.2112,3.729,1.181,3.508-2.1242,2.0244-3.438,1.1556-28.4271"/>
|
||||||
|
<path class="st12" d="M918.6152,229.52l3.6558-109.8599-2.0403-4.0169-28.617-1.8396"/>
|
||||||
|
<path class="st12" d="M884.641,113.4637l-28.7384-1.4147"/>
|
||||||
|
<path class="st12" d="M865.2655,105.113l1.4473-23.4444"/>
|
||||||
|
<path class="st12" d="M943.3223,130.4679l.1151-6.8473,1.2003-6.0634,4.6738-3.0818,2.7804-.1061"/>
|
||||||
|
<path class="st12" d="M1004.9188,116.7377l5.8183,7.1986"/>
|
||||||
|
<path class="st12" d="M428.6538,353.6769l-.2693,9.5469,50.7948,2.5961.1736-21.5772"/>
|
||||||
|
<path class="st12" d="M462.5014,341.4464l-26.3259-.4769-3.3863,1.3451-1.4581,1.7794-2.6501,7.0103"/>
|
||||||
|
<path class="st12" d="M231.7753,157.5482l-2.5139,16.5107-4.6136,2.2173-7.1065,4.3108-6.2447,5.1165-4.7763,6.7776-3.7336,7.553-10.8959,69.3602"/>
|
||||||
|
<path class="st12" d="M191.5044,272.391l-.413,2.6346-1.7767,3.4033"/>
|
||||||
|
<path class="st12" d="M407.8716,220.3349l-26.2059-5.3675"/>
|
||||||
|
<path class="st12" d="M411.8657,221.153l-1.4706-.3012"/>
|
||||||
|
<path class="st12" d="M410.0202,130.516l.5953-4.6735.3616-16.2727-.663-11.6923"/>
|
||||||
|
<path class="st12" d="M362.6411,174.9621l3.3148-2.7121,5.9667-1.4465,6.5694-2.471,21.697-16.2728,2.8327-3.0135,6.3885-13.7414.222-1.7426"/>
|
||||||
|
<path class="st12" d="M366.9757,185.7447l1.9344-5.5023-4.7285-5.8891"/>
|
||||||
|
<path class="st12" d="M104.2317,339.9047l4.7626,4.6065,4.3723-3.8648"/>
|
||||||
|
<path class="st12" d="M578.0775,219.1228v10.6954"/>
|
||||||
|
<path class="st12" d="M538.482,318.8281l-2.7906-17.9243"/>
|
||||||
|
<path class="st12" d="M534.8327,294.0882l5.7422-1.0197,3.22-1.3416"/>
|
||||||
|
<path class="st12" d="M553.3474,285.6627l1.9319-.5903,11.4845.1073,6.6545,2.1466.4293-6.5472"/>
|
||||||
|
<path class="st12" d="M523.5093,270.7973l18.7294-3.1126"/>
|
||||||
|
<path class="st12" d="M547.6588,262.1035l-2.3968-13.234"/>
|
||||||
|
<path class="st12" d="M631.0726,175.6491l-2.769-11.5985"/>
|
||||||
|
<path class="st12" d="M603.1735,168.0213l5.747-1.1494"/>
|
||||||
|
<polyline class="st12" points="404.8636 297.3769 408.1636 298.0769 407.1636 302.7769 402.1636 301.7769 403.3636 296.4769"/>
|
||||||
|
<polyline class="st12" points="260.967 328.2513 262.3382 325.7119 263.9158 314.106"/>
|
||||||
|
<line class="st12" x1="260.9892" y1="338.8264" x2="262.0806" y2="329.6074"/>
|
||||||
|
<line class="st12" x1="259.7202" y1="349.5452" x2="260.6562" y2="341.6392"/>
|
||||||
|
<line class="st12" x1="268.6062" y1="353.7335" x2="260.967" y2="352.8291"/>
|
||||||
|
<polyline class="st12" points="278.436 354.8972 277.3097 354.7639 276.8677 354.7116 272.2095 354.1601"/>
|
||||||
|
<line class="st12" x1="276.0313" y1="349.913" x2="275.4408" y2="354.5287"/>
|
||||||
|
<polyline class="st4" points="677.0261 431.8684 676.7544 434.4792 663.1781 433.4802"/>
|
||||||
|
<polyline class="st4" points="671.4959 441.5564 659.3808 440.4969 660.4381 430.1937"/>
|
||||||
|
<line class="st12" x1="213.7509" y1="398.741" x2="196.9271" y2="387.5571"/>
|
||||||
|
<line class="st12" x1="194.9087" y1="390.2833" x2="189.4623" y2="397.6394"/>
|
||||||
|
<line class="st12" x1="179.9724" y1="431.5324" x2="183.4729" y2="424.4864"/>
|
||||||
|
<line class="st12" x1="186.5158" y1="439.673" x2="178.388" y2="434.7216"/>
|
||||||
|
<line class="st12" x1="197.2539" y1="424.9685" x2="191.0973" y2="433.3992"/>
|
||||||
|
<line class="st12" x1="202.7496" y1="431.4693" x2="199.3559" y2="426.3855"/>
|
||||||
|
<line class="st12" x1="203.0213" y1="423.9387" x2="206.415" y2="429.0225"/>
|
||||||
|
<line class="st12" x1="214.2593" y1="414.7814" x2="210.365" y2="420.1272"/>
|
||||||
|
<polyline class="st12" points="389.2739 125.0844 385.5932 108.9907 380.4844 103.389"/>
|
||||||
|
<line class="st12" x1="393.7258" y1="144.5493" x2="390.2666" y2="129.4247"/>
|
||||||
|
<line class="st12" x1="394.7826" y1="149.1699" x2="394.2203" y2="146.7114"/>
|
||||||
|
<line class="st12" x1="59.1053" y1="425.752" x2="51.0618" y2="424.0442"/>
|
||||||
|
</g>
|
||||||
|
<g id="Buildings">
|
||||||
|
<g id="Garages-2">
|
||||||
|
<path class="st27" d="M673.4964,184.6454l2.3307,17.7062,6.1804-.8135-2.3307-17.7062-6.1804.8135h0Z"/>
|
||||||
|
<path class="st27" d="M694.1246,215.466l.2087-17.8106-6.1727-.0723-.2087,17.8105,6.1727.0723h0Z"/>
|
||||||
|
<path class="st27" d="M960.0707,114.7827l44.7474,1.6377-.2258,6.1707-44.7474-1.6377.2258-6.1707Z"/>
|
||||||
|
<path class="st27" d="M1011.0583,124.115l-3.0231,89.0135-6.3342-.2151,3.0231-89.0134,6.3342.2151h0Z"/>
|
||||||
|
<path class="st27" d="M949.4156,130.6559l-3.3092,102.3211-6.0761-.1965,3.3092-102.3211,6.0761.1965h0Z"/>
|
||||||
|
<path class="st27" d="M941.1798,240.9539l4.1643-6.3908,3.8049,2.4793-4.1643,6.3908-3.8049-2.4793Z"/>
|
||||||
|
<path class="st27" d="M949.962,235.1816l-3.0923,7.0505,4.1689,1.8285,3.0923-7.0505-4.1689-1.8285Z"/>
|
||||||
|
<path class="st27" d="M956.6826,242.9742l47.1683-23.2543-2.7363-5.5502-47.1683,23.2543,2.7363,5.5502Z"/>
|
||||||
|
<path class="st27" d="M957.6188,127.7268l-.7094,30.6793,7.5955.1756-.0141.6083,7.7428.179.71-30.7079-7.4954-.1733.0134-.5796-7.843-.1813h.0002Z"/>
|
||||||
|
<path class="st27" d="M981.2489,128.3918l-.8423,35.5117,7.7308.1834-.009.366,7.649.1814.838-35.326-7.5793-.1798.0131-.5516-7.8003-.185h0Z"/>
|
||||||
|
<path class="st27" d="M956.0809,171.4024l-1.5578,48.8398,7.5409.2405.1346-4.2189,7.9343.2531,1.4106-44.2234-7.6641-.2445.0127-.3975-7.8112-.2491h0Z"/>
|
||||||
|
<path class="st27" d="M979.8692,172.1181l-.9263,35.8299,15.2842.3951.9127-35.3046-7.5576-.1954.0136-.5253-7.7267-.1998h0Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Big_Buildings-2">
|
||||||
|
<circle class="st27" cx="64.2475" cy="201.0762" r="10"/>
|
||||||
|
<circle class="st27" cx="93.6696" cy="205.4323" r="10"/>
|
||||||
|
<path class="st27" d="M72.7492,197.807l13.5943,1.8717-1.3391,9.7262-13.5943-1.8717,1.3391-9.7262Z"/>
|
||||||
|
<circle class="st27" cx="59.8145" cy="228.1663" r="10"/>
|
||||||
|
<circle class="st27" cx="89.2367" cy="232.5224" r="10"/>
|
||||||
|
<path class="st27" d="M68.3163,224.8971l13.5943,1.8717-1.3391,9.7262-13.5943-1.8717,1.3391-9.7262Z"/>
|
||||||
|
<path class="st27" d="M122.1807,210.8724l-4.5918,33.1836-2.7051-.3984-1.0215,6.9551,2.7617.4062-.4688,3.3926,18.4512,2.5547,6.0273-43.5391-18.4531-2.5547h.0001Z"/>
|
||||||
|
<path class="st27" d="M74.9724,164.7825l23.5731,2.5088-1.6908,15.8871-23.5731-2.5088,1.6908-15.8871Z"/>
|
||||||
|
<path class="st27" d="M121.5934,169.1688l42.0073,5.2804-2.9502,23.4697-42.0073-5.2804,2.9502-23.4697h0Z"/>
|
||||||
|
<path class="st27" d="M206.8418,209.2734l-.0488.3203-1.998-.3145-2.6328,16.7012,2.0605.3262-4.7227,30.7188,31.0215,4.7695.8691-5.6543,7.1445,1.1152,6.5586-41.9785-7.2461-1.1328.0156-.1016-31.0215-4.7695h.0001Z"/>
|
||||||
|
<path class="st27" d="M280.1531,187.2021l53.4778,7.9774-5.5382,37.1266-53.4779-7.9774,5.5383-37.1266Z"/>
|
||||||
|
<path class="st27" d="M339.8468,270.6367l10.0289-65.5977,29.4934,4.5091-10.0289,65.5977-29.4934-4.5091Z"/>
|
||||||
|
<path class="st27" d="M283.0703,319.9883l-.248,2.0195-4.2773-.5273-.6172,5.0117-5.0605-.623-1.0391,8.4336-2.957-.3652-1.0332,8.3848,18.1758,2.2383.1914-1.5566,14.5449,1.7559,2.4883-20.6113-14.4941-1.75.207-1.6855-5.8809-.7246-.0002-.0003h0Z"/>
|
||||||
|
<path class="st27" d="M458.4373,427.8749l-5.5683,40.8695,16.1892,2.2057,5.5683-40.8695-16.1892-2.2057Z"/>
|
||||||
|
<path class="st27" d="M522.8363,488.4657l5.6793-40.9334-16.1313-2.2382-3.4537,24.8922-12.4291-1.7289-2.2256,16.0412,28.5604,3.9671h0Z"/>
|
||||||
|
<path class="st27" d="M411.9479,220.6733l-10.1303,47.8317,12.6894,2.6875-4.85,22.9001,32.1782,6.815,7.859-35.7677-32.1204-6.8028,2.2458-10.6038,18.0218,3.8168,5.1471-24.3028-31.0406-6.5741h0Z"/>
|
||||||
|
<path class="st27" d="M498.3949,144.1911l10.7677,59.3524-24.5217,4.4487-10.7677-59.3524,24.5217-4.4487Z"/>
|
||||||
|
<path class="st27" d="M599.5063,138.259l4.7653,23.4749,15.7826-3.2038-4.7653-23.4749-15.7826,3.2038Z"/>
|
||||||
|
<path class="st27" d="M593.9082,203.7402l-18.3242,3.8125,2.4102,11.5801,11.7812-2.4531,2.1367,10.2695-49.6191,10.3262,2.4355,11.7051,22.1562-4.6094,4.8965,23.5293,35.959-7.4824-7.332-35.2363-2.5508.5312-2.1387-10.2773.5977-.125-2.4082-11.5703h0Z"/>
|
||||||
|
<path class="st27" d="M671.2963,249.2494l-25.9087,5.218,1.4194,7.0473-20.3743,4.1034-6.2198-30.8827,20.2477-4.0779.063.3129,17.0167-3.4272-3.0241-15.3747,9.1482-1.8425,7.632,38.9234h0Z"/>
|
||||||
|
<path class="st27" d="M600.6955,299.3093l25.2275,1.8936,1.4487-19.3009-25.2275-1.8936-1.4487,19.3009h0Z"/>
|
||||||
|
<path class="st27" d="M917.5031,152.1766l-1.7044,59.9858-24.8047-.7048.1683-5.9254-6.8943-.1959,1.536-54.0605,31.6991.9007h0Z"/>
|
||||||
|
<path class="st27" d="M464.5647,305.6528l59.2362-10.8461-4.4446-24.2743-59.2362,10.8461,4.4446,24.2743h0Z"/>
|
||||||
|
<rect class="st27" x="531.0711" y="236.7842" width="10.2843" height="6.2302" transform="translate(-27.7042 75.3592) rotate(-7.8373)"/>
|
||||||
|
</g>
|
||||||
|
<g id="Small_Buildings-2">
|
||||||
|
<path class="st27" d="M382.852,115.1507l1.9917,8.5201-8.4829,1.983-1.9917-8.5201s8.4829-1.983,8.4829-1.983Z"/>
|
||||||
|
<path class="st27" d="M109.4563,307.3372l5.0801-5.9919,6.1377,5.2037-5.0801,5.9919-6.1377-5.2038h0Z"/>
|
||||||
|
<path class="st27" d="M104.7285,322.4569l11.0069,11.8536,11.6213-10.7912-11.0069-11.8536-11.6213,10.7912Z"/>
|
||||||
|
<path class="st27" d="M191.8938,395.6481l3.6085-5.0071,2.2633,1.6311-3.6085,5.0071-2.2633-1.6311Z"/>
|
||||||
|
<path class="st27" d="M470.5956,360.9614h6.5526v2.7889h-6.5526v-2.7889Z"/>
|
||||||
|
<path class="st27" d="M489.7118,372.0629l6.0652-.0271.011,2.4674-6.0652.0271-.011-2.4674Z"/>
|
||||||
|
<path class="st27" d="M516.3672,423.6805l-1.0744,8.1656,6.0765.7995,1.0744-8.1656-6.0765-.7995Z"/>
|
||||||
|
<path class="st27" d="M512.5801,312.4602h6.16v2.4877h-6.16v-2.4877Z"/>
|
||||||
|
<path class="st27" d="M488.651,316.4484l6.1995.9082.4032-2.752-6.1995-.9082-.4032,2.752Z"/>
|
||||||
|
<path class="st27" d="M339.8035,129.5376l2.4383,12.1913,12.609-2.5218-2.4383-12.1913-12.609,2.5218Z"/>
|
||||||
|
<path class="st27" d="M590.9849,326.0133l6.1728.9798-.4421,2.7852-6.1727-.9798.4421-2.7852h0Z"/>
|
||||||
|
<path class="st27" d="M673.4493,341.0253l8.0108,2.054,1.5352-5.9871-8.0108-2.054-1.5352,5.9871Z"/>
|
||||||
|
<path class="st27" d="M667.7293,413.6146l-.2601,6.3176-2.835-.1167.2601-6.3176,2.835.1167Z"/>
|
||||||
|
<path class="st27" d="M673.7596,274.5446l-2.486,5.739,2.5751,1.1155,2.486-5.739-2.5751-1.1155Z"/>
|
||||||
|
<path class="st27" d="M169.235,344.9404l6.2137.6676-.2818,2.6225-6.2138-.6676.2818-2.6225h.0001Z"/>
|
||||||
|
<path class="st27" d="M62.9715,166.6972l-1.0193,7.9281,4.0683.5231,1.0193-7.9281s-4.0683-.5231-4.0683-.5231Z"/>
|
||||||
|
<path class="st27" d="M224.5845,181.891l-.9529,7.8876,4.0557.4899.9529-7.8876-4.0557-.4899Z"/>
|
||||||
|
<path class="st27" d="M811.9301,299.2116l6.6544.236-.2166,6.1082-6.6544-.236.2166-6.1082Z"/>
|
||||||
|
<path class="st27" d="M843.3615,292.0853l6.6544.3776-.3477,6.1276-6.6544-.3776.3477-6.1276Z"/>
|
||||||
|
<path class="st27" d="M888.5736,268.4882l9.0613-3.9643,2.1295,4.8673-9.0613,3.9643-2.1295-4.8673Z"/>
|
||||||
|
<path class="st27" d="M873.7077,120.4983l9.8361-.1659-.0894-5.3029-9.8361.1659.0894,5.3029Z"/>
|
||||||
|
<path class="st27" d="M882.9852,94.018l-.3561,6.3035,2.851.1611.3561-6.3035-2.851-.1611Z"/>
|
||||||
|
<path class="st27" d="M939.4589,79.3935l-.6669,6.2611,2.8079.2991.6669-6.2611-2.8079-.2991Z"/>
|
||||||
|
<path class="st27" d="M943.5712,73.0954l3.2231-5.2978,2.4012,1.4609-3.2231,5.2978-2.4012-1.4609Z"/>
|
||||||
|
<path class="st27" d="M957.3901,75.0589l16.7086,1.3337.4944-6.1944-16.7086-1.3337-.4944,6.1944Z"/>
|
||||||
|
<path class="st27" d="M948.9351,115.7494l-.4753,6.279,2.7992.2119.4753-6.279-2.7992-.2119Z"/>
|
||||||
|
<path class="st27" d="M621.1593,129.2528l1.2073,6.3916,2.8498-.5572-1.2482-6.3836-2.8089.5492h0Z"/>
|
||||||
|
<path class="st27" d="M528.2285,273.0337l6.2607-.9954-.407-2.5598-6.2607.9954.407,2.5598Z"/>
|
||||||
|
<path class="st27" d="M326.3544,249.4082l-.8893,6.261,2.8362.4029.8893-6.261-2.8362-.4029h0Z"/>
|
||||||
|
<path class="st27" d="M328.9684,285.6055l-1.2776,8.5006,5.7485.864,1.2775-8.5006-5.7485-.864h0Z"/>
|
||||||
|
<path class="st27" d="M340.3189,288.1852l-5.9946-.8353-.9174,6.5835,5.9947.8353.9174-6.5835h0Z"/>
|
||||||
|
<path class="st27" d="M384.6783,123.7094l-8.1235,1.899,2.0018,8.5634,8.1235-1.899-2.0018-8.5634Z"/>
|
||||||
|
</g>
|
||||||
|
<rect class="st27" x="435.0845" y="298.6589" width="3.1" height="6.6" transform="translate(117.7766 726.4098) rotate(-87.7514)"/>
|
||||||
|
<rect class="st27" x="428.3667" y="296.8965" width="3.1" height="6.6" transform="translate(22.112 629.8048) rotate(-73.8722)"/>
|
||||||
|
<rect class="st27" x="419.4393" y="302.9246" width="3.1" height="8.4" transform="translate(62.2011 685.0512) rotate(-82.6)"/>
|
||||||
|
<rect class="st27" x="419.8369" y="299.8636" width="3.1" height="8.4" transform="translate(65.583 682.7788) rotate(-82.6)"/>
|
||||||
|
<rect class="st27" x="278.9485" y="301.7894" width="3.477" height="8.714" transform="translate(-59.2042 544.8612) rotate(-82.5656)"/>
|
||||||
|
<rect class="st27" x="289.3206" y="351.6477" width="4.8112" height="16.3478" transform="translate(-102.8174 602.5378) rotate(-82.5656)"/>
|
||||||
|
<rect class="st27" x="301.9969" y="347.0209" width="13.5069" height="2.4056" transform="translate(-76.4956 609.3216) rotate(-82.5656)"/>
|
||||||
|
<rect class="st27" x="667.4758" y="437.639" width="9.0578" height="3.2293" transform="translate(205.1439 1092.3808) rotate(-87.613)"/>
|
||||||
|
<rect class="st27" x="38.1332" y="421.728" width="4.6858" height="4.314"/>
|
||||||
|
</g>
|
||||||
|
<g id="Limit">
|
||||||
|
<path id="the_ground1" class="st5" d="M666.6897,434.7617"/>
|
||||||
|
<path id="the_ground11" class="st2" d="M671.793,430.9532l13.8358,1.157,46.9784,1.37,32.0646-.4997s6.6664-24.065,8.8218-36.3436c.8248-4.6985,1.3472-9.4601,1.5627-14.2256.259-5.7295-1.1198-11.5225-.3277-17.2029.3358-2.4084,2.1289-6.9775,2.1289-6.9775l2.2027-5.6628,4.7263-1.0401,9.3397,1.2616,21.0164-3.2272,16.3691,2.6406,6.3185-.2845,8.0975,1.3099,4.3036-3.3584,4.0753-8.7881,3.5449-2.2891,5.4592-6.3314,10.4655-6.6731,39.5906-21.2801,40.1638-20.326,37.1705-19.7995,2.7317-2.3908,3.0417-4.7439,5.9531-1.4238,15.9844-19.3379-.4258-14.5449,14.7245-1.7949-.5503-12.0999,1.8453-6.4938,1.8242-104.3066-7.3029,4.3906-2.0703-7.2832-3.7246-.3184-1.4698-3.5043.1983-22.2418-2.5905-2.1819-13.8982-2.4955-8.8372-.4687-20.5781,6.2993-16.7209,1.7863-10.9258-4.5332-77.5586-1.6133-1.4258,15.4023-72.1953.8281-41.5625,8.8008s5.8625,15.9028,7.6764,24.1539c1.2983,5.9057,2.263,17.9984,2.263,17.9984l-1.2382.8878-12.7345,3.1967-10.4708,4.4812-11.0155.7839,1.7637,15.2812-19.334,2.8164-19.1816,6.5059-2.3409,3.7167-2.3535,1.0291-12.6186,2.2927-16.8668,1.1783-5.0322-21.9273-4.4366-28.7152-26.0297,4.0569-66.48,14.3162-27.7676-42.1113-9.5215-42.75,24.1738-24.1973L504.1348,1.4258l-.6289.8262-69.3223,91.0254-20.0939,2.8491-30.4316,6.6151-48.9022,8.6589-1.594,2.8192,5.7599,32.3687-.0156,24.9273-2.592-.6353-2.7631-1.8008L55.5371,134.4102l-15.7891.8477,1.2439,9.726-8.1229,57.8125-5.5492,43.0013-2.1597,10.7258,17.998,2.4043-.668,25.2676-3.0485,9.6957.2275,10.1395-2.5852,22.7234-9.2784,22.6285-2.1279,5.4124-1.7738,16.4453-4.4489,20.129-1.3008,26.1113,1.3477,11.4746,13.1465,4.5039,4.1797-3.3184,21.9746,1.3809.3027-5.7695,7.7949,1.9609,8.5781,7.3516,19.0312,2.6641,22.5488,18.2793,9.4554,6.1105,2.8284,8.1025-4.1432,6.828-2.4766,7.4941,31.6875,19.4961,6.834-.4824,12.601,6.5663,3.8501,1.8015,9.4199-.8698,14.5612,11.6963,6.8705,5.8604,9.5189,4.3909,7.7371.989,18.5291-3.9736,17.6684-19.9933,17.3087,2.6575,12.9546,8.2908,7.0312-4.4121,10.2729-10.0852-4.191-4.4126,23.42-30.6956,2.9262-.9614,8.7401.4608,14.5357-4.3117,10.7061-1.4651,12.3604,10.6182,8.4834,5.6552,14.1848,4.7246,93.2175,28.1719,20.4758,4.5014,16.327,2.0435,7.9246-1.7582,21.2205-13.1888,31.4427-26.3215,17.0247-17.2946,10.0923-12.9392,4.6937-11.066,6.448-4.464,8.299-2.9603,12.5511-1.2653,19.4029,1.2565"/>
|
||||||
|
<path class="st5" d="M656.5262,430.706"/>
|
||||||
|
</g>
|
||||||
|
<g id="Rocks">
|
||||||
|
<path class="st25" d="M35.727,305.8084c1.3111-1.2899,3.2529-2.2044,5.0906-2.1288,1.8751.0772,4.0729.9588,4.9981,2.5916.9905,1.7481-1.7466,4.5525-.3702,6.0162.7186.7642,2.1416.2995,3.1469,0,.9185-.2736,1.4667-1.7613,2.4065-1.5735.9147.1828,1.4558,1.3886,1.5735,2.3139.2191,1.7232-1.4611,3.1941-1.7586,4.9055-.0845.4863.2022,1.0306,0,1.4809-.3044.6778-.9588,1.253-1.666,1.4809-.8561.2759-1.908-.7322-2.6842-.2777-1.0732.6285-.632,2.5157-1.4809,3.4246-.7346.7866-2.1213.707-2.8693,1.4809-1.3523,1.3992-1.3963,3.6725-2.499,5.2758-1.0883,1.5822-3.5029,2.305-3.98,4.1651-.3569,1.3918,1.5689,2.8032,1.1107,4.1651-.5609,1.667-2.4899,3.7756-4.1651,3.2395-2.3614-.7557-.1405-5.6457-2.1288-7.1269-.3216-.2396-.8961.2579-1.2032,0-1.3672-1.1483-1.0258-3.4931-.9256-5.2758.0307-.5458-.0578-1.4065.4628-1.5735,1.7161-.5504,2.4995,3.7281,4.2576,3.3321.9422-.2122.7025-1.8295,1.2958-2.5916.7257-.9321,2.6584-1.1329,2.6842-2.3139.0157-.7201-1.3219-.806-1.5735-1.4809-.4224-1.1334-.2595-2.577.3702-3.6097.441-.7233,2.2543-.5505,2.1288-1.3884-.2806-1.8734-4.4505.029-5.4609-1.5735-.8007-1.27-.1045-3.2017.7405-4.4427.81-1.1896,3.7085-.7822,3.7023-2.2214-.0053-1.217-2.7718-.6934-3.1469-1.8511-.4982-1.5378.7914-3.3091,1.9437-4.4427h0Z"/>
|
||||||
|
<path class="st25" d="M38.2261,354.031c-.5784-1.41,1.6948-2.543,2.6841-3.702,1.2178-1.428,2.8233-2.503,3.98-3.98,1.1776-1.504,1.1961-4.177,2.9618-4.906.3528-.145.7329.332,1.1107.278.4243-.061.6821-.655,1.1107-.648.9842.017,2.1051.671,2.499,1.573.201.461-.0231,1.048-.2776,1.481-1.1994,2.04-4.3697,2.436-5.4609,4.536-.5282,1.016.3499,2.466-.2777,3.424-.537.82-1.6795,1.03-2.5916,1.389-1.1282.443-2.3061.869-3.5172.925-.7498.035-1.9365.324-2.2213-.37Z"/>
|
||||||
|
<path class="st25" d="M49.7032,354.216c.1748-1.846,2.076-3.582,3.8874-3.98,1.0969-.241,2.0801,1.554,3.1469,1.203,1.3577-.446,1.3334-2.57,2.3139-3.609.5758-.611,1.1993-1.419,2.0363-1.481,1.5964-.119,4.0421.635,4.2576,2.221.3409,2.509-5.3915,2.656-5.5534,5.183-.0897,1.4,2.3857,1.87,2.6841,3.24.3536,1.623-.165,3.595-1.2958,4.813-.8898.958-2.4058,1.126-3.7022,1.296-1.1967.156-2.8308.644-3.6098-.278-.4399-.521.3518-1.376.1851-2.036-.6424-2.548-4.5979-3.957-4.3501-6.572h0Z"/>
|
||||||
|
<path class="st25" d="M26.1011,354.216c.8865-.196,2.1981-.304,2.6842.463,1.4224,2.244-2.1267,5.025-2.1289,7.682-.0017,2.208,2.4432,4.287,1.7586,6.386-.4765,1.462-2.0792,3.012-3.6097,2.87-1.2196-.113-1.3381-2.178-2.4065-2.777-.4911-.275-1.2034.043-1.666-.278-1.7261-1.197-2.7286-3.402-3.147-5.46-.3032-1.493-.7865-3.815.5554-4.536,1.5196-.816,3.084,3.083,4.6278,2.314,1.5168-.755.0053-3.575.9256-4.998.5299-.819,1.4538-1.456,2.4065-1.666Z"/>
|
||||||
|
<path class="st25" d="M20.4551,376.152c1.0549-.534,2.5412.14,3.4246.926.993.883,1.5493,2.375,1.4809,3.702-.0717,1.392-2.2113,2.334-1.9437,3.702.2481,1.268,2.7288,1.229,2.9619,2.499.3438,1.875-2.9182,3.098-2.7767,4.998.0375.505.8546.703.9255,1.204.1302.919-.474,1.839-1.0181,2.591-.9634,1.331-2.1522,3.101-3.7948,3.147-1.7642.049-3.7456-1.458-4.2577-3.147-.2378-.784,1.1506-1.558.833-2.314-.6309-1.502-3.8141-.533-4.4427-2.036-.2787-.666.2358-1.52.7405-2.036,1.4811-1.517,5.3343-.278,5.9236-2.314.2024-.7-1.3622-1.034-1.2958-1.759.0617-.674,1.4878-.712,1.4809-1.388-.0042-.415-.8291-.429-.9255-.833-.5765-2.413.471-5.821,2.6841-6.942h0Z"/>
|
||||||
|
<path class="st25" d="M16.8454,419.746c.6851-.456,1.6617-.906,2.4065-.555,2.3716,1.117,1.8289,5.029,3.5171,7.034.469.557,1.0626,1.082,1.7586,1.296,1.5346.472,3.2847-.677,4.813-.185.6697.216,1.0179,1.022,1.666,1.296,1.0331.436,2.2634.802,3.3321.463.6449-.205.8045-1.37,1.4809-1.389,1.2478-.034,2.6995,1.17,2.8693,2.407.0966.704-1.187,1.048-1.2033,1.758-.0174.762.972,1.218,1.2033,1.944.1501.471.3427,1.054.0925,1.481-.4328.738-1.6215.608-2.3139,1.111-1.5541,1.128-2.0598,4.143-3.98,4.165-1.6142.018-2.9732-1.875-3.4246-3.425-.0795-.273.3035-.574.1851-.833-.1895-.414-.9786-.251-1.2032-.648-.3351-.591.4802-1.478.0926-2.036-1.5532-2.236-5.5751-4.103-7.7748-2.499-.723.527.368,1.869,0,2.684-.5755,1.275-1.7836,2.463-3.147,2.777-1.6851.387-4.4805.261-4.9981-1.389-.8394-2.676,6.5106-3.917,5.3684-6.479-.3144-.705-1.6997.375-2.314-.092-1.2888-.981-1.733-3.028-1.4809-4.628.2719-1.725,1.6008-3.289,3.0544-4.258h0Z"/>
|
||||||
|
<path class="st25" d="M62.1984,425.485c.6403-.702,1.827-.61,2.7767-.648,2.2758-.091,5.1036-.549,6.7566,1.018.7773.737-.2017,2.495.6479,3.147.8337.64,2.1253-.43,3.147-.185,2.0169.484,4.6499,1.201,5.3683,3.147.294.796-.9926,1.573-.833,2.406.222,1.161,2.2779,1.504,2.3139,2.685.0544,1.782-2.3172,2.731-3.2395,4.257-.2641.437-.1948,1.153-.6479,1.389-.4725.245-1.1109-.542-1.5735-.278-.4578.261-.0521,1.323-.5553,1.481-.9311.291-1.4485-1.482-2.4065-1.666-1.0876-.21-2.15.94-3.2395.74-1.6411-.301-2.6747-3.527-4.1651-2.776-1.1036.555.6937,2.833-.1851,3.702-1.1418,1.129-3.3509.848-4.8129.185-1.5183-.689-2.7318-2.273-3.147-3.887-.5229-2.034-.2368-4.591,1.1107-6.202,1.14-1.362,4.4538-.16,4.9981-1.851.4902-1.523-2.3223-2.421-2.6842-3.98-.2042-.88-.2383-2.017.3703-2.684h0Z"/>
|
||||||
|
<path class="st25" d="M85.893,441.96c-.2207-1.446.9531-2.904,2.0362-3.887.7891-.716,1.898-1.265,2.9619-1.203,1.4749.085,2.8287,1.098,3.8874,2.128,1.8429,1.794,4.4593,4.157,3.8874,6.664-.3064,1.344-2.0568,2.15-3.4247,2.314-.8819.106-1.8347-.335-2.499-.925-1.0628-.944-.5649-3.451-1.9437-3.795-.8386-.21-1.2678,1.558-2.1288,1.481-1.3038-.116-2.5792-1.483-2.7767-2.777h0Z"/>
|
||||||
|
<path class="st25" d="M120.121,438.972c-.109-.971.971-1.927,1.9-2.235.707-.234,1.529.137,2.178.503.815.459,1.134,1.566,1.956,2.012,1.618.876,4.371-.452,5.419,1.061.388.559.075,1.469-.335,2.011-.683.904-1.962,1.678-3.073,1.453-.685-.139-.719-1.394-1.397-1.564-.422-.107-.793.448-1.229.447-.377-.002-.855-.076-1.061-.391-.163-.251.175-.621.056-.894-.366-.837-1.243-1.488-2.123-1.732-.381-.106-.791.265-1.174.167-.451-.115-1.065-.375-1.117-.838h0Z"/>
|
||||||
|
<path class="st25" d="M129.34,444.783c.439-.636,1.526-.924,2.234-.615,1.038.454.468,2.734,1.565,3.017.975.251,1.507-1.643,2.514-1.676.559-.018,1.153.366,1.452.838.361.568.289,1.349.168,2.011-.218,1.197-1.437,2.087-1.564,3.297-.161,1.523,1.749,3.101,1.061,4.469-.974,1.938-3.848,2.979-5.978,2.57-1.397-.268-2.665-1.639-3.017-3.017-.197-.77.239-1.622.671-2.29.372-.577,1.306-.705,1.564-1.341.913-2.254-2.054-5.264-.67-7.263Z"/>
|
||||||
|
<path class="st25" d="M119.953,460.985c1.206-1.291,2.927-2.467,4.693-2.458,2.008.01,4.779.912,5.308,2.849.189.693-1.324,1.156-1.117,1.844.338,1.125,2.47.576,3.184,1.508,1.141,1.487,1.949,3.912,1.006,5.531-1.023,1.756-3.974,2.99-5.755,2.012-1.29-.709-.994-2.83-1.005-4.302-.007-.877,1.31-2.119.558-2.57-1.359-.817-2.277,2.247-3.631,3.073-.499.304-1.038.72-1.62.67-1.185-.101-2.399-.885-3.017-1.9-.448-.734-.364-1.721-.224-2.57.219-1.324.704-2.706,1.62-3.687h0Z"/>
|
||||||
|
<path class="st25" d="M115.651,483.948c.676-1.793,3.23-2.711,5.14-2.57,2.041.15,3.836,1.857,5.029,3.519.927,1.293,1.844,3.072,1.341,4.582-.935,2.802-4.25,6.098-7.096,5.308-3.759-1.044-5.789-7.189-4.414-10.839h0Z"/>
|
||||||
|
<path class="st25" d="M137.497,476.293c-.009-.076.029-.151.055-.223.345-.92.606-1.973,1.341-2.626.965-.857,2.37-1.611,3.632-1.341,1.429.307,3.122,1.611,3.129,3.073.002.421-.849.475-.894.894-.113,1.032,1.817,1.597,1.676,2.626-.129.941-1.628,1.089-2.123,1.899-.191.313-.043.783-.28,1.062-.501.591-1.363,1.107-2.123.95-.297-.062-.324-.583-.614-.671-.294-.088-.602.318-.894.224-1.019-.33-1.892-1.402-2.067-2.458-.059-.355.409-.647.391-1.006-.046-.898-1.127-1.509-1.229-2.403Z"/>
|
||||||
|
<path class="st25" d="M142.748,495.96c.666-.3,1.341.653,2.068.726.542.055,1.126.009,1.62-.223.548-.258.742-1.134,1.341-1.23,1.876-.3,4.145.763,5.196,2.347.412.621-.509,1.749.055,2.235.228.196.635-.264.894-.112,1.11.651,1.414,2.29,1.453,3.576.049,1.63-.174,3.784-1.564,4.637-1.974,1.21-5.299.692-6.872-1.006-.914-.986.477-2.912-.28-4.022-1.173-1.721-4.89-.74-5.643-2.682-.552-1.425.338-3.619,1.732-4.246h0Z"/>
|
||||||
|
<path class="st25" d="M161.13,500.653c.349-.506.901-.966,1.508-1.062.867-.136,1.637.761,2.514.783.673.016,1.317-.715,1.956-.503,1.433.474,2.058,2.234,2.849,3.52.738,1.199,1.936,2.461,1.732,3.855-.156,1.071-1.577,1.523-2.123,2.458-.389.666-.334,1.551-.782,2.179-.693.97-1.601,2.22-2.794,2.235-.584.007-1.173-.521-1.396-1.062-.259-.626.497-1.37.279-2.011-.547-1.609-3.152-1.946-3.632-3.576-.264-.897.757-1.813.615-2.738-.124-.808-1.118-1.313-1.229-2.123-.092-.666.12-1.401.503-1.955Z"/>
|
||||||
|
<path class="st25" d="M176.717,510.821c.043-1.632,2.051-2.694,3.52-3.408.744-.361,1.636-.425,2.459-.335,1.44.158,2.889.68,4.078,1.508.969.675,1.991,1.552,2.303,2.69.295,1.073-.975,2.252-.571,3.289.111.284.606.277.726.558.479,1.12.07,2.505-.391,3.632-.511,1.252-2.532,1.832-2.514,3.184.012.873,1.394,1.186,1.676,2.012.338.987.104,2.107-.112,3.128-.227,1.08-.633,2.145-1.229,3.073-.554.865-1.17,1.85-2.123,2.235-.829.336-2.07-.764-2.682-.112-.602.643.784,1.905.28,2.626-.44.63-1.616.104-2.235.559-2.161,1.59-1.509,6.791-4.19,6.872-1.043.031-1.074-1.809-1.788-2.57-.879-.938-2.831-1.13-3.017-2.402-.151-1.033,1.653-1.536,1.788-2.57.084-.649-.707-1.191-.671-1.844.09-1.638,1.055-3.219,2.179-4.414.618-.656,1.46-1.18,2.347-1.341.575-.104,1.206.535,1.732.28,1.035-.503,1.006-2.083,1.676-3.017.953-1.329,3.533-2.014,3.296-3.632-.183-1.248-2.819-.766-3.24-1.955-.384-1.083,1.402-2.115,1.173-3.241-.437-2.143-4.527-2.618-4.47-4.805h0Z"/>
|
||||||
|
<path class="st25" d="M166.717,478.081c-.153-.078-.237-.25-.336-.391-.259-.368-.643-.723-.67-1.173-.046-.767.297-1.64.894-2.123.383-.311.98-.421,1.453-.279.921.275,1.963,1.055,2.067,2.011.092.842-.635,1.752-1.397,2.123-.605.294-1.412.139-2.011-.168Z"/>
|
||||||
|
<path class="st25" d="M232.6325,529.7686c-.411-1.0786-.4933-2.474.1049-3.4612.5922-.9773,2.4842-.6531,2.9892-1.6782.5932-1.2042-1.2325-2.8143-.5769-3.9856.7344-1.3119,2.6485-1.6187,4.1429-1.783,1.0258-.1128,2.3006-.1414,3.0416.5768.3472.3365.0278,1.0267.3147,1.416.3345.4538.9499,1.0603,1.4684.8391,1.127-.4809-.0115-2.7379.8915-3.566.9785-.8975,3.1448.439,3.9332-.6293,1.1846-1.6052-1.8752-4.2211-.8391-5.9259,1.0682-1.7575,4.3989-.5596,5.821-2.0452.8336-.8708.987-2.2572,1.0488-3.4612.0612-1.1915-1.3396-2.5183-.6817-3.5136.69-1.044,2.6359-.0832,3.6709-.7866.6255-.4251.5695-1.5761,1.2586-1.8879,2.5227-1.1414,5.7194-.0591,8.2334,1.1013,1.2588.581,2.5638,1.4984,3.0941,2.7794.4955,1.197-1.0804,2.9215-.2098,3.8807,1.3759,1.5158,4.2506-.536,6.1357.2622.4213.1784.5883.7371.9964.944,1.2203.6185,2.8073,1.3317,4.038.7342.3025-.1469.1555-.7778.472-.8915,1.7995-.6465,4.1105.7028,5.2966,2.2025,1.4832,1.8754,2.9674,5.5216,1.1537,7.0797-.4738.407-1.229-.8654-1.783-.5768-1.2162.6334.0524,3.3887-1.2061,3.9332-3.0925,1.3378-6.0406-5.9277-9.0724-4.4576-2.0268.9828.2398,5.0804-1.4159,6.6077-.7905.7292-2.1917.7964-3.199.4196-1.705-.638-2.7743-2.4776-3.6185-4.0905-.4089-.7813-.5977-1.6884-.6293-2.5696-.0298-.8329.9572-1.8279.4195-2.4648-1.105-1.309-3.9938-1.2738-5.1393,0-.5525.6144.5841,1.7039.2622,2.4648-.718,1.6972-2.6106,2.8077-4.3527,3.4088-.9089.3135-2.2172-.6923-2.8843,0-.6555.6802.1914,1.8912.1049,2.8318-.2856,3.104.5936,7.4657-2.0452,9.1249-1.2456.7832-3.0276-.2579-4.3002-.9964-.5564-.3228-.6696-1.4637-1.3111-1.416-1.9195.1431-1.3709,4.3613-3.2514,4.7722-1.4556.3181-2.3385-2.2842-3.8283-2.3074-.8217-.0128-1.3296,1.2523-2.1501,1.2062-1.2254-.0689-1.8147-1.7938-2.9892-2.1501-.4854-.1473-1.0515.2448-1.5208.0524-.8467-.347-1.5621-1.1377-1.8879-1.9927h0v-.0005h0Z"/>
|
||||||
|
<path class="st25" d="M289.218,525.836c-.02-2.048,1.633-3.925,3.198-5.244.978-.825,2.289-1.483,3.567-1.416.866.045,1.691.594,2.307,1.206.449.446.339,1.368.891,1.678,1.009.565,2.401-.669,3.462-.21,1.708.741,3.006,2.525,3.566,4.3.453,1.439.298,3.157-.367,4.51-.23.467-.688.82-1.154,1.049-.621.306-1.423.063-2.045.367-.612.299-.899,1.087-1.521,1.364-1.943.865-4.592,1.886-6.346.682-.447-.308-.025-1.2-.419-1.574-.246-.233-.765.039-.997-.209-.444-.478.034-1.359-.262-1.941-.56-1.102-2.116-1.467-2.674-2.569-.239-.472.228-1.276-.21-1.574-.179-.121-.429.238-.629.158-.212-.085-.365-.349-.367-.577h0Z"/>
|
||||||
|
<path class="st25" d="M297.818,506.065c-.423-.579-.116-1.687.472-2.098.549-.383,1.64-.307,1.993.263.37.596-.093,1.61-.682,1.992-.5.326-1.431.325-1.783-.157Z"/>
|
||||||
|
<path class="st25" d="M300.86,509.369c.777-1.83,5.956-1.9724,6.255-3.9384.357-2.347-5.93-1.8156-5.9409-4.1906-.011-2.474,2.561-5.404,5.035-5.453.395-.008.45.765.839.839,1.423.27,2.691-2.381,3.985-1.731.546.274.024,1.318.42,1.783.711.836,2.126.654,3.042,1.259.897.592,1.728,1.348,2.307,2.255.509.797.873,1.731.944,2.674.063.834-.096,1.718-.472,2.465-.662,1.315-1.661,2.616-2.989,3.251-1.201.575-3.303-.881-3.986.263-.345.577.948,1.171.839,1.835-.256,1.562-1.741,2.986-3.251,3.461-.324.102-.662-.269-.997-.21-.549.099-.86.941-1.415.892-1.886-.168-3.22-2.206-4.196-3.828-.288-.48-.638-1.111-.419-1.626h0Z"/>
|
||||||
|
<path class="st25" d="M299.653,512.987c.273-.435.748-.947,1.259-.891.492.054.844.63.996,1.101.201.619.288,1.521-.209,1.941-.442.372-1.258.227-1.731-.105-.326-.23-.424-.705-.472-1.102-.038-.316-.012-.673.157-.944h0Z"/>
|
||||||
|
<path class="st25" d="M336.468,470.824c.147-.489.446-1.09.944-1.206.548-.128.958.717,1.521.734.415.013.781-.657,1.153-.472.551.274.535,1.172.472,1.783-.088.856-.63,1.626-1.153,2.308-.37.481-.757,1.198-1.364,1.206-.571.007-1.049-.594-1.311-1.101-.499-.967-.575-2.211-.262-3.252h0Z"/>
|
||||||
|
<path class="st25" d="M293.937,466.471c.104.45.798.56,1.259.577,2.106.078,5.021-.299,5.926-2.202.396-.834-.423-1.827-.892-2.622-.264-.448-.577-.935-1.049-1.154-.444-.206-1.015-.238-1.468-.052-.847.346-1.716,1.094-1.888,1.992-.053.278.358.508.315.787-.178,1.141-2.462,1.549-2.203,2.674Z"/>
|
||||||
|
<path class="st25" d="M306.733,457.819c-.395-.032-.701.504-.786.891-.107.481.14,1.011.419,1.416.212.308.539.808.892.682.506-.182.456-1.042.367-1.574-.093-.55-.336-1.371-.892-1.415h0Z"/>
|
||||||
|
<path class="st25" d="M315.439,456.507c-.413.285-.796.814-.735,1.312.053.429.485.795.892.943.43.157,1.024.15,1.363-.157.425-.384.578-1.145.367-1.678-.124-.316-.508-.501-.839-.577-.344-.079-.758-.043-1.048.157h0Z"/>
|
||||||
|
<path class="st25" d="M280.722,454.934c.013-.086.091-.153.157-.21.857-.73,1.875-1.731,2.989-1.573.649.092,1.25.73,1.416,1.364.047.176-.004.425-.157.524-.34.221-.92-.444-1.206-.157-.56.562.556,1.604.315,2.36-.11.341-.384.709-.735.786-.681.151-1.456-.284-1.94-.786-.568-.589-.959-1.498-.839-2.308h0Z"/>
|
||||||
|
<path class="st25" d="M296.35,439.464c.313-.335.852-.433,1.311-.42.486.014.878.489,1.363.525.322.024.629-.279.944-.21,1.352.297,2.69,1.276,3.304,2.517.217.439-.167,1.009,0,1.469.242.664,1.359.918,1.363,1.625.004.497-.472.998-.944,1.154-.41.136-.841-.43-1.258-.315-.643.178-.749,1.436-1.416,1.416-.817-.024-.955-1.368-1.626-1.835-.631-.44-1.55-.357-2.15-.839-.736-.593-1.412-1.429-1.573-2.36-.16-.923.041-2.044.682-2.727h0Z"/>
|
||||||
|
<path class="st25" d="M305.789,426.668c.352-.448,1.153-.533,1.678-.315.488.203.892.783.892,1.311,0,.466-.363.963-.787,1.154-.514.232-1.294.203-1.678-.21-.442-.473-.505-1.431-.105-1.94Z"/>
|
||||||
|
<path class="st25" d="M319.791,433.853c-.461.093-.46.902-.367,1.363.079.391.351.834.734.944.197.057.442-.057.577-.21.155-.174.208-.454.157-.682-.128-.583-.515-1.534-1.101-1.415Z"/>
|
||||||
|
<path class="st25" d="M354.141,463.849c.342-.56,1.131-.758,1.783-.839,1.272-.158,3.063-.332,3.776.734.535.802-.736,1.882-.577,2.832.056.34.55.548.524.892-.043.582-.534,1.222-1.101,1.363-1.513.377-3.42-.549-4.3-1.835-.593-.866-.653-2.251-.105-3.147h0Z"/>
|
||||||
|
<path class="st25" d="M351.047,485.98c-.128-.277.006-.664.209-.892.309-.346.865-.599,1.311-.472.515.147.996.724.997,1.259,0,.423-.373.907-.787.996-.634.138-1.459-.302-1.73-.891h0Z"/>
|
||||||
|
<path class="st25" d="M362.427,493.007c-.217-.383-.2-1.053.157-1.311.216-.157.519.159.786.157.34-.001.717-.402.997-.209.277.19.215.665.157.996-.069.393-.198.922-.577,1.049-.526.176-1.247-.198-1.52-.682h0Z"/>
|
||||||
|
<path class="st25" d="M389.331,467.737c.749-.148,1.279.932,2.032,1.058.5.084,1.003-.294,1.504-.222.263.037.601.098.724.334.275.525.156,1.381-.306,1.754-.348.28-1.127-.45-1.337-.056-.103.194.422.313.39.529-.08.538-.766.932-1.309.975-.898.071-1.918-.489-2.394-1.253-.393-.631-.302-1.527-.056-2.228.129-.366.371-.815.752-.891h0Z"/>
|
||||||
|
<path class="st25" d="M413.31,436.844c.168-.182.448-.27.696-.265.698.015,1.226.781,1.923.829.617.042,1.191-.655,1.789-.497.288.075.541.346.63.629.176.556.152,1.353-.298,1.724-.384.316-1.222-.451-1.492-.033-.153.237.449.494.365.762-.167.534-.918.686-1.459.829-.544.144-1.182.244-1.69,0-.574-.276-1.07-.867-1.193-1.492-.167-.847.143-1.852.729-2.486Z"/>
|
||||||
|
<path class="st25" d="M433.596,433.662c.322-.634,1.057-1.011,1.723-1.259.51-.19,1.086-.205,1.625-.133.512.069.943.488,1.458.53.359.03.739-.359,1.061-.199.31.154.399.589.464.929.126.653-.013,1.341-.166,1.988-.109.464-.347.887-.53,1.326-.171.411-.232.897-.531,1.227-.61.674-1.479,1.251-2.386,1.326-.69.057-1.392-.295-1.956-.696-.576-.411-1.048-1.007-1.326-1.658-.166-.389-.259-.846-.165-1.259.098-.437.602-.698.729-1.127.094-.318-.15-.699,0-.995h0Z"/>
|
||||||
|
<path class="st25" d="M456.904,395.218c.232-.753,1.316-.938,2.084-1.112.331-.075.754.26,1.019.046.219-.177.271-.585.139-.833-.16-.299-.763-.121-.927-.417-.219-.395-.121-1.011.186-1.343.439-.476,1.339-.744,1.898-.417.459.269.111,1.13.463,1.528.202.228.681.108.834.371.242.415-.266.972-.139,1.436.076.277.525.408.509.694-.027.502-.558.909-1.018,1.112-.283.124-.651-.14-.927,0-.443.225-.399,1.076-.879,1.204-.949.251-1.972-.531-2.687-1.204-.291-.275-.674-.683-.555-1.065h0Z"/>
|
||||||
|
<path class="st25" d="M464.73,397.626c.123-.33.486-.594.834-.649.535-.084,1.208.118,1.528.556.228.312.236.822.046,1.158-.173.307-.586.415-.926.509-.372.104-.854.285-1.158.047-.433-.341-.516-1.105-.324-1.621h0Z"/>
|
||||||
|
<path class="st25" d="M466.212,389.012c-.766-.775-.991-2.316-.417-3.242.25-.402.874-.521,1.343-.463.476.059.926.397,1.205.787.435.609.685,1.439.555,2.177-.071.405-.319.852-.694,1.019-.613.271-1.52.198-1.992-.278h0Z"/>
|
||||||
|
<path class="st25" d="M489.785,356.131c.837.066,1.889-.655,2.037-1.482.186-1.041-.895-2.03-1.76-2.64-.468-.329-1.178-.714-1.667-.416-.745.453-.84,1.708-.602,2.547.257.903,1.056,1.918,1.992,1.991Z"/>
|
||||||
|
<path class="st25" d="M494.277,358.956c-.138-.423.094-1.002.463-1.25.41-.276,1.091-.256,1.482.046.216.167.279.518.231.787-.09.511-.415,1.162-.926,1.251-.493.086-1.096-.357-1.25-.834h0Z"/>
|
||||||
|
<path class="st25" d="M408.721,364.742c-.291-.327-.526-.83-.403-1.251.141-.486.663-.957,1.17-.968.489-.01.712.713,1.17.888.466.178,1.195-.28,1.493.121.229.309-.029.809-.242,1.13-.3.45-.793.879-1.332.927-.677.062-1.404-.339-1.856-.847h0Z"/>
|
||||||
|
<path class="st25" d="M300.283,384.313c-.244-.681-.401-1.519-.082-2.168.259-.527.857-.909,1.432-1.023.769-.153,1.649.082,2.291.532.614.429,1.346,1.142,1.227,1.882-.069.431-.914.395-1.023.818-.087.343.531.649.41.982-.153.418-.742.6-1.187.613-.506.016-.887-.561-1.391-.613-.263-.028-.529.256-.777.163-.465-.173-.733-.719-.9-1.186h0Z"/>
|
||||||
|
<path class="st25" d="M326.302,335.67c.151-.524.454-1.171.982-1.309.62-.162,1.291.339,1.759.778.494.462,1.098,1.141.941,1.8-.233.979-1.461,1.919-2.455,1.759-.616-.099-.887-.928-1.104-1.514-.177-.474-.264-1.027-.123-1.514h0Z"/>
|
||||||
|
<path class="st25" d="M325.443,343.28c-.14-.414-.257-.957,0-1.309.211-.289.665-.349,1.023-.328.554.034,1.219.225,1.513.696.318.509.389,1.38-.041,1.8-.438.429-1.291.272-1.841,0-.322-.16-.539-.518-.654-.859h0Z"/>
|
||||||
|
<path class="st25" d="M326.793,346.43c-.202-.276-.238-.719-.082-1.023.146-.283.506-.432.818-.491.395-.074.872-.045,1.187.205.301.239.552.692.45,1.063-.117.424-.628.724-1.064.778-.467.057-1.031-.152-1.309-.532h0Z"/>
|
||||||
|
<path class="st25" d="M330.188,348.475c-.236-.428-.573-1.008-.327-1.431.287-.493,1.125-.742,1.637-.491.852.418,1.588,1.896,1.022,2.659-.341.461-1.196.116-1.718-.123-.263-.12-.474-.36-.614-.614Z"/>
|
||||||
|
<path class="st25" d="M248.385,388.259c-.268-.579-.032-1.397.392-1.873.611-.686,1.745-1.169,2.614-.871.445.153.34,1.018.784,1.176.372.133.741-.406,1.132-.349,1.211.179,2.763.858,3.049,2.048.14.581-.819.972-.871,1.568-.03.352.543.706.349,1.002-.216.329-.79.013-1.176.087-.718.137-1.406.905-2.091.653-.662-.242-.618-1.304-1.133-1.786-.845-.789-2.563-.605-3.049-1.655h0Z"/>
|
||||||
|
<path class="st25" d="M233.705,401.284c-.011-.059.027-.117.043-.174.183-.645.014-1.609.61-1.917.637-.329,1.332.617,2.048.653.281.015.554-.242.827-.174.44.11,1.044.418,1.046.871.001.248-.578.233-.567.48.017.354.768.27.872.609.118.387-.039,1.054-.436,1.133-.373.074-.405-.801-.784-.828-.443-.031-1.004.385-1.046.828-.041.441,1.043.594.872,1.002-.186.443-1.052.373-1.438.087-.252-.187.057-.764-.218-.915-.27-.147-.6.451-.871.305-.263-.142-.095-.598-.218-.871-.179-.401-.663-.657-.74-1.089h0Z"/>
|
||||||
|
<path class="st25" d="M235.186,419.841c-.316-1.233.842-2.813,2.047-3.224.322-.109.637.458.959.349.637-.216.469-1.436,1.089-1.699.34-.145.734.325,1.089.218.176-.054.208-.37.392-.392.388-.047.926.226,1.002.61.262,1.324-1.089,2.929-2.396,3.267-.202.052-.366-.316-.567-.262-.614.167-.558,1.218-1.089,1.569-.358.237-.838.325-1.263.261-.475-.072-1.144-.231-1.263-.697h0Z"/>
|
||||||
|
<path class="st25" d="M232.746,431.951c.426.152.808.532.959.958.092.262-.194.572-.087.828.336.811,2.001.779,2.047,1.655.035.656-.847,1.031-1.394,1.394-.993.66-2.119,1.388-3.311,1.351-.467-.015-.978-.24-1.263-.61-.28-.364-.264-.892-.261-1.351.005-.712.1-1.462.435-2.091.45-.842,1.143-1.633,2.004-2.047.263-.126.597-.185.871-.087h0Z"/>
|
||||||
|
<path class="st25" d="M227.301,435.654c1.654.055,3.553,1.703,3.659,3.354.086,1.326-1.244,2.958-2.57,3.049-.584.04-.759-.966-1.307-1.176-.393-.151-.85.085-1.263,0-.65-.134-1.511-.202-1.829-.784-.127-.233-.023-.568.13-.784.422-.593,1.484-.461,1.917-1.046.388-.524.052-1.36.392-1.916.194-.318.5-.71.871-.697h0Z"/>
|
||||||
|
<path class="st25" d="M219.852,443.059c1.233-.816,2.096-3.596.828-4.356-.496-.297-.772,1.106-1.35,1.089-.648-.019-.798-1.208-1.438-1.307-.584-.09-1.139.385-1.612.741-.551.414-1.355.878-1.35,1.568.006.853,1.707,1.063,1.699,1.916-.007.751-1.443.91-1.525,1.656-.056.517.289,1.191.784,1.35,1.244.399,3.126-.384,3.572-1.612.16-.439-.899-.896-.61-1.263.212-.268.717.406,1.002.218h0Z"/>
|
||||||
|
<path class="st25" d="M211.227,450.508c1.577.515,3.837-.304,4.661-1.743.337-.588.002-1.423-.348-2.003-.379-.63-1.014-1.445-1.743-1.351-.708.091-.81,1.185-1.306,1.699-.681.705-2.12.904-2.266,1.873-.09.602.424,1.336,1.002,1.525h0Z"/>
|
||||||
|
<path class="st25" d="M217.282,456.911c-.752-.297-.786-1.46-.871-2.265-.068-.643.042-1.325.305-1.917.507-1.141,1.13-2.658,2.352-2.918.718-.153,1.518.417,1.96,1.002.447.59.044,1.55.436,2.178.368.589,1.651.569,1.655,1.263.009,1.365-1.866,2.379-3.223,2.527-.433.047-.741-.567-1.176-.567-.533.002-.942.893-1.438.697h0Z"/>
|
||||||
|
<path class="st25" d="M170.296,420.624c-.445-.48-.458-1.452-.048-1.961.58-.72,1.809-.657,2.725-.526.55.08.928.722,1.482.765,1.558.121,3.023-2.126,4.446-1.482.599.271,1.019,1.211.765,1.817-.529,1.267-2.468,1.741-3.825,1.53-.346-.054-.495-.819-.812-.669-.303.142.248.779,0,1.004-1.177,1.063-3.656.685-4.733-.478Z"/>
|
||||||
|
<path class="st25" d="M174.933,411.205c-.562.038-.987-.566-1.53-.717-.447-.124-1.004.121-1.386-.143-.381-.264-.477-.803-.622-1.243-.116-.354-.264-.735-.191-1.1.081-.408.28-.907.669-1.052.468-.174,1.076.083,1.435.43.361.351.221,1.001.478,1.435.454.766,1.928,1.076,1.816,1.96-.033.263-.404.413-.669.43h0Z"/>
|
||||||
|
<path class="st25" d="M143.427,400.4c-.016-.539.398-1.165.908-1.338.716-.243,1.419.902,2.152.717.721-.182.786-1.614,1.53-1.626.202-.003.367.238.43.431.13.398-.229.825-.191,1.243.043.487.762.988.478,1.386-.25.35-.947-.258-1.291,0-.226.169-.309.539-.239.813.095.371.798.43.813.813.011.293-.28.658-.574.669-.383.015-.434-.757-.813-.813-.465-.068-.777.734-1.243.67-.77-.108-1.466-.876-1.673-1.626-.066-.238.24-.475.191-.717-.051-.256-.47-.36-.478-.622h0Z"/>
|
||||||
|
<path class="st25" d="M148.686,390.121c-.364-.295-.77-.68-.813-1.147-.021-.227.302-.394.287-.622-.014-.207-.343-.318-.335-.525.019-.478.388-1.076.861-1.148.914-.138,1.716.869,2.247,1.626.333.475.095,1.238.478,1.673.401.455,1.232.301,1.673.717.467.44,1.055,1.11.861,1.721-.071.225-.386.337-.622.335-.292-.003-.473-.403-.765-.43-.25-.024-.466.265-.717.239-.532-.056-1.147-.333-1.386-.813-.122-.244.231-.576.095-.813-.337-.588-1.338-.385-1.864-.813h0Z"/>
|
||||||
|
<path class="st25" d="M141.419,382.185c.328-1.483,2.51-2.349,4.016-2.151.346.045.421.778.765.717.245-.044.117-.548.335-.669.461-.257,1.058.236,1.577.143.4-.072.694-.55,1.1-.526.357.021.71.275.908.574.107.161-.015.414.096.573.199.288.815.189.908.526.131.475-.28,1.065-.717,1.291-1.282.662-2.87-.649-4.303-.478-1.296.155-2.43,1.711-3.681,1.339-.535-.159-1.124-.794-1.004-1.339h0Z"/>
|
||||||
|
<path class="st25" d="M113.451,388.352c-.183-.446-.195-1.145.191-1.434.581-.434,1.458.122,2.151.335,1.213.372,2.187,1.441,3.443,1.625.637.094,1.279-.409,1.912-.286.309.059.593.253.813.478.319.326.585.746.669,1.195.083.443.17,1.069-.191,1.338-.619.463-1.598-.001-2.295-.334-.529-.253-.757-.953-1.291-1.195-1.124-.509-2.536.077-3.681-.383-.674-.271-1.446-.666-1.721-1.339Z"/>
|
||||||
|
<path class="st25" d="M77.594,377.739c-.4294.31-.6658.96-.5737,1.482.0589.334.5915.435.6693.765.087.369-.5078.792-.2868,1.1.6615.921,2.2732.067,3.3944.239.6801.104,1.3214.433,2.008.478.7674.05,1.7627.316,2.2948-.239.5413-.565-.3526-1.738.1434-2.343.9093-1.109,3.8015.289,4.1594-1.1.5007-1.943-2.3866-3.749-4.3506-4.159-.4985-.104-1.0821.894-1.4343.526-.2865-.299.5844-.747.4781-1.148-.1807-.68-.9703-1.336-1.6733-1.29-.9671.062-1.8275,1.114-2.0558,2.055-.1971.813,1.0307,1.598.765,2.391-.2107.629-.9986.931-1.6255,1.147-.6034.208-1.3951-.278-1.9124.096Z"/>
|
||||||
|
<path class="st25" d="M166.979,372.682c.067-.949.553-2.187,1.469-2.448,1.632-.466,4.07.692,4.529,2.326.289,1.029-.741,2.212-1.673,2.734-.51.286-1.188.146-1.755,0-.707-.183-1.429-.518-1.917-1.061-.375-.417-.693-.991-.653-1.551h0Z"/>
|
||||||
|
<path class="st25" d="M174.773,366.357c1.143-.046,1.988-1.206,3.101-1.469,1.245-.294,3.21,1.034,3.836-.081.923-1.649-3.062-3.019-2.857-4.897.052-.478.951-.581.98-1.061.028-.486-.404-1.006-.857-1.183-.259-.102-.545.218-.816.163-.355-.072-.537-.637-.898-.612-.807.056-1.526.869-1.796,1.632-.412,1.168,1.617,3.008.572,3.673-.72.457-1.821-.631-2.122-1.429-.209-.552.425-1.123.449-1.714.026-.69.148-1.58-.368-2.04-.467-.417-1.27-.28-1.877-.122-1.113.29-2.381.848-2.897,1.877-.373.743-.221,1.752.163,2.489.202.386.989.382,1.02.816.021.279-.315.501-.571.612-.561.244-1.32-.329-1.836,0-.708.452-1.236,1.464-1.061,2.285.086.406.524.8.938.817,1.147.046,1.641-1.862,2.775-2.041.553-.087,1.127.219,1.592.531.432.29.593.884,1.02,1.183.441.309.972.593,1.51.571h0Z"/>
|
||||||
|
<path class="st25" d="M192.646,369.051c-.517.326.118,1.424-.368,1.795-.346.265-.944-.325-1.305-.082-.607.409-.97,1.404-.694,2.082.179.439.983.271,1.265.652.181.245.002.64.163.898.268.429.743.74,1.224.898.698.228,1.494-.187,2.204,0,.907.239,1.521,1.528,2.448,1.387.295-.045.351-.509.612-.653.316-.173.77.008,1.061-.204.527-.383.895-1.064.939-1.713.033-.494-.247-.982-.531-1.388-.392-.561-1.345-.694-1.55-1.346-.135-.428.469-.881.326-1.306-.261-.78-1.097-1.499-1.918-1.551-.67-.042-1.05.956-1.714,1.061-.733.116-1.535-.927-2.162-.53h0Z"/>
|
||||||
|
<path class="st25" d="M185.749,350.28c-.576,1.194,1.871,2.274,1.714,3.591-.142,1.2-2.268,1.607-2.285,2.815-.007.514.443,1.088.939,1.224,1.13.311,2.112-1.091,3.264-1.305,1.11-.207,2.321-.332,3.387.04.878.308,1.897.836,2.204,1.714.42,1.202-1.454,2.568-.898,3.714.157.323.621.467.979.449.268-.014.436-.335.694-.409.484-.138,1.142.304,1.51-.04.957-.896-.54-2.97.367-3.918.617-.645,2.066.306,2.652-.367.59-.677-.254-1.832,0-2.693.156-.528.937-.838.898-1.388-.019-.269-.529-.342-.53-.612-.002-.231.434-.299.449-.53.023-.373-.302-.731-.613-.939-.241-.162-.616,0-.856-.163-.359-.244-.27-1.012-.694-1.102-.738-.155-1.168,1.009-1.877,1.265-.887.321-1.886.447-2.816.286-.935-.162-1.687-.878-2.571-1.224-1.061-.416-2.125-.977-3.264-1.02-.907-.035-2.258-.206-2.653.612h0Z"/>
|
||||||
|
<path class="st25" d="M202.806,357.462c-.402-.152-.645-.641-.734-1.061-.135-.637.047-1.351.367-1.918.18-.319.7-.388.816-.735.137-.407-.264-.836-.245-1.265.025-.537.415-1.013.449-1.55.058-.893-.835-1.867-.408-2.653.413-.759,1.589-1.439,2.367-1.061.353.172-.077.993.286,1.143.705.291,1.202-1.081,1.958-1.184.798-.108,1.672.183,2.326.653.294.212.272.775.612.898.838.303,1.683-.811,2.571-.734.467.04.978.241,1.265.612.382.493.432,1.215.367,1.836-.064.618-.88,1.11-.734,1.714.315,1.305,1.917,1.938,3.101,2.571.463.247,1.156.836,1.51.448.444-.487-.903-1.198-.735-1.836.111-.421.622-.641,1.021-.816.579-.254,1.252-.384,1.877-.286.601.095,1.285.317,1.632.817.148.213.165.529.082.775-.128.373-.445.725-.817.857-.4.142-.862-.301-1.265-.163-.491.167-1.157.585-1.101,1.101.101.949,2.09.651,2.407,1.551.229.649-.856,1.301-.653,1.959.358,1.159,1.86,1.574,2.898,2.203,1.092.663,2.466.839,3.468,1.632.531.421,1.201.917,1.265,1.592.067.702-.811,1.192-.979,1.877-.289,1.176-.826,2.747,0,3.632.27.289.872.326,1.183.081.445-.349.013-1.177.286-1.673.176-.32.486-.575.816-.734.509-.247,1.13-.445,1.673-.286.6.176,1.367.64,1.387,1.265.017.51-1.154.601-1.061,1.102.119.634,1.444.251,1.755.816.357.649.015,1.527-.286,2.203-.501,1.129-1.174,2.747-2.407,2.816-.855.048-1.078-1.447-1.877-1.755-.775-.298-1.703.307-2.489.041-.542-.182-.777-1.018-1.347-1.061-.766-.057-1.235,1.072-2,1.143-.372.035-.805-.094-1.061-.367-.605-.649-.018-1.995-.693-2.571-.874-.747-2.391.128-3.428-.367-.521-.249-.677-1.04-1.224-1.225-.676-.228-1.512.657-2.122.286-.173-.105-.027-.474-.204-.571-.439-.243-1.044.592-1.469.326-.249-.156.06-.728-.204-.857-.793-.387-1.594,1.444-2.408,1.102-1.107-.465-.158-2.834-1.224-3.387-.275-.143-.655.438-.898.245-1.032-.823-.255-2.706.164-3.958.152-.455.43-.9.816-1.184.7-.515,2.004-.054,2.489-.775.724-1.076.379-2.789-.327-3.877-.583-.898-1.744-1.529-2.815-1.55-.791-.016-1.497.576-2.122,1.061-.427.331-.534,1.107-1.061,1.224-.422.093-.753-.492-1.183-.53-.559-.05-1.108.605-1.633.408h0Z"/>
|
||||||
|
<path class="st25" d="M207.336,358.971c-.284-.464-.035-1.224.367-1.591.294-.269.802-.277,1.184-.163.554.166,1.154.584,1.305,1.142.113.415-.031,1.018-.408,1.225-.737.404-2.009.105-2.448-.613Z"/>
|
||||||
|
<path class="st25" d="M213.906,378.762c-1.067-.706-.44-2.596-.123-3.835.153-.597.47-1.193.939-1.592.511-.435,1.218-.601,1.877-.734.507-.103,1.107-.307,1.55-.041.861.516,1.476,1.698,1.347,2.693-.116.898-1.052,1.522-1.795,2.04-1.113.777-2.664,2.218-3.795,1.469Z"/>
|
||||||
|
<path class="st25" d="M235.372,318.419c-.094-.306.109-.702.371-.888.322-.23.839-.267,1.184-.074.39.218.717.746.629,1.184-.069.344-.464.647-.814.666-.543.03-1.209-.368-1.37-.888h0Z"/>
|
||||||
|
<path class="st25" d="M169.454,318.245c-.155-.357-.189-.904.101-1.162.416-.37,1.204-.256,1.668.05.201.133.345.42.303.657-.096.539-.615,1.128-1.162,1.162-.384.024-.756-.355-.91-.707h0Z"/>
|
||||||
|
<path class="st25" d="M173.749,345.224c.365.36,1.04.443,1.516.253.312-.126.579-.473.606-.809.032-.398-.218-.847-.556-1.061-.37-.234-.914-.23-1.314-.05-.218.098-.394.324-.454.556-.095.364-.066.847.202,1.111h0Z"/>
|
||||||
|
<path class="st25" d="M232.63,201.536c-.693-.302-1.23-1.075-1.349-1.821-.078-.491.094-1.093.472-1.416.624-.533,1.669-.717,2.428-.405.745.306,1.429,1.151,1.417,1.956-.01.625-.602,1.178-1.147,1.484-.533.299-1.261.446-1.821.202h0Z"/>
|
||||||
|
<path class="st25" d="M482.906,490.077c-.466-.048-.833-.538-1.018-.969-.159-.371-.113-.823,0-1.211.177-.607.408-1.434,1.018-1.599.579-.157,1.225.355,1.599.824.364.456.654,1.154.436,1.696-.298.74-1.241,1.342-2.035,1.259h0Z"/>
|
||||||
|
<path class="st25" d="M544.153,444.093c-.163-.369-.153-.861.049-1.211.105-.183.327-.295.533-.339.574-.125,1.359-.201,1.744.242.287.329.176.909,0,1.308-.203.46-.611,1.007-1.114,1.018-.527.011-.998-.535-1.212-1.018h0Z"/>
|
||||||
|
<path class="st25" d="M576.667,451.604c-.276-.171-.498-.553-.436-.872.037-.191.248-.34.436-.388.353-.091.825-.031,1.066.242.225.256.326.766.097,1.018-.261.287-.833.204-1.163,0h0Z"/>
|
||||||
|
<path class="st25" d="M592.9,463.815c-.235-.214-.401-.646-.243-.921.151-.262.584-.33.872-.242.285.086.55.382.582.678.026.237-.125.525-.339.63-.265.13-.655.053-.872-.145h0Z"/>
|
||||||
|
<path class="st25" d="M579.865,402.373c.273-.116.436-.479.436-.775,0-.297-.194-.604-.436-.775-.227-.162-.563-.245-.824-.146-.268.103-.483.395-.533.679-.043.251.056.552.243.726.28.263.761.441,1.114.291Z"/>
|
||||||
|
<path class="st25" d="M582.288,402.809c-.171-.166-.383-.395-.339-.63.054-.292.39-.504.678-.581.334-.089.814-.085,1.018.194.153.21.017.541-.097.775-.121.246-.311.538-.582.581-.249.041-.497-.163-.678-.339h0Z"/>
|
||||||
|
<path class="st25" d="M577.842,397.422c-.235-.129-.187-.569-.057-.803.066-.12.227-.202.363-.191.269.02.669.209.65.478-.025.361-.638.69-.956.516h0Z"/>
|
||||||
|
<path class="st25" d="M577.345,399.545c-.121-.114-.172-.317-.134-.478.046-.194.204-.421.402-.44.15-.015.288.137.363.267.136.233.295.622.096.804-.183.167-.546.016-.727-.153h0Z"/>
|
||||||
|
<path class="st25" d="M581.973,378.873c-.059-.238-.068-.563.115-.726.333-.298.945.155,1.338-.058.145-.078.138-.332.287-.401.209-.097.53-.11.688.057.175.186.195.58.019.765-.162.171-.546-.154-.707.019-.196.21.18.611.038.861-.107.188-.361.262-.574.305-.207.042-.446.046-.631-.057-.278-.155-.496-.455-.573-.765h0Z"/>
|
||||||
|
<path class="st25" d="M634.596,419.009c.046-.62,1.368-.877,1.159-1.462-.146-.408-1.169.145-1.269-.276-.128-.541.765-.886,1.297-1.048.406-.124,1.04.468,1.268.11.16-.25-.429-.476-.441-.772-.013-.325.112-.762.414-.883.33-.132.743.134.993.386.221.224.309.569.331.883.018.254-.256.507-.165.745.226.591,1.098.655,1.544,1.103.247.248.491.526.607.855.344.973.712,2.198.193,3.09-.262.452-.888.629-1.407.69-.496.058-1-.14-1.462-.331-.733-.304-1.464-.697-2.013-1.269-.486-.505-1.1-1.123-1.049-1.821h0Z"/>
|
||||||
|
<path class="st25" d="M645.706,340.179c.373.262.894-.223,1.351-.221.27.002.605.326.799.138.573-.555.113-1.707-.331-2.371-.1-.15-.295-.222-.468-.275-.387-.12-.817-.17-1.213-.083-.43.095-1.052.207-1.158.634-.125.502.661.816.854,1.296.113.277-.079.71.166.882h0Z"/>
|
||||||
|
<path class="st25" d="M707.948,407.937c-.051-.513-.042-1.075.188-1.536.35-.701.958-1.362,1.693-1.631.905-.331,2.004-.201,2.885.188.372.165.501.695.878.847.601.243,1.375-.31,1.944,0,.525.286.805.932.972,1.505.486,1.666.669,3.618-.031,5.205-.15.338-.476.605-.815.753-.51.221-1.113.208-1.662.125-.933-.14-1.848-.514-2.634-1.035-1.171-.775-2.216-1.811-2.948-3.01-.258-.423-.42-.918-.47-1.411h0Z"/>
|
||||||
|
<path class="st25" d="M723.03,435.405c-.145-1.041,2.131-1.301,2.101-2.352-.021-.753-1.311-.903-1.599-1.599-.252-.608-.12-1.328,0-1.975.149-.804.289-1.723.878-2.289.421-.406,1.224-.177,1.662-.565.885-.784.594-2.483,1.536-3.198.237-.18.586-.214.878-.157,1.471.291,2.708,1.381,3.794,2.414,1.597,1.519,3.143,3.298,3.825,5.394.25.765.46,1.733.032,2.414-.779,1.239-2.542,1.588-3.982,1.85-.413.075-.871-.263-1.255-.094-.51.225-.555,1.03-1.034,1.317-.565.338-1.559-.189-1.944.345-.297.411.413,1.036.219,1.505-.159.386-.589.698-1.003.752-.558.074-1.278-.144-1.568-.627-.395-.658.467-1.552.251-2.289-.098-.335-.318-.737-.659-.815-.428-.098-.752.591-1.191.564-.371-.022-.89-.228-.941-.595h0Z"/>
|
||||||
|
<path class="st25" d="M726.556,354.282c.313-.907,1.246-1.81,2.205-1.852,1.434-.063,3.259,1.059,3.528,2.469.165.866-.733,1.702-1.455,2.205-.744.518-1.775.866-2.646.618-.52-.149-.889-.672-1.147-1.147-.372-.687-.739-1.554-.485-2.293h0Z"/>
|
||||||
|
<path class="st25" d="M740.932,322.752c.173-.468.597-.867,1.058-1.058.869-.36,1.943-.333,2.823,0,1.246.471,2.888,1.317,2.998,2.646.05.604-.909.853-1.146,1.411-.475,1.117-.17,2.432-.441,3.616-.295,1.287-.148,3.068-1.279,3.748-1.429.859-4.203.702-4.939-.794-.177-.36.256-.812.573-1.058.527-.409,1.511.025,1.94-.485.637-.755-.297-2.114.221-2.955.135-.218.644-.14.661-.396.066-.96-1.8-.958-2.249-1.809-.446-.847-.553-1.967-.22-2.866Z"/>
|
||||||
|
<path class="st25" d="M766.376,353.532c.531-.636,1.431-.93,2.249-1.058.557-.087,1.113.23,1.676.221.358-.007.708-.248,1.058-.177,1.16.234,1.848,2.166,2.999,1.896.385-.09.318-.755.617-1.014.254-.22.591-.387.927-.397.516-.014,1.138.122,1.455.529.181.234-.136.689.088.882.49.424,1.466.352,1.94-.088,1.075-.997-.492-3.314.529-4.365.757-.779,2.161-.726,3.22-.486,1.021.232,1.941.951,2.601,1.764.71.876,1.34,2.006,1.279,3.131-.056,1.051-.655,2.15-1.499,2.778-.638.476-1.544.55-2.337.486-.612-.05-1.175-.945-1.72-.662-.43.224-.106.994-.353,1.411-.561.949-1.329,2.135-2.425,2.249-.341.036-.539-.537-.882-.529-.583.014-.886.845-1.455.97-1.395.307-3.381.485-4.234-.661-.452-.607.863-1.734.309-2.249-.363-.338-.961.346-1.455.308-1.411-.107-2.936-.534-3.969-1.499-.568-.53-.905-1.343-.97-2.117-.039-.454.06-.972.352-1.323h0Z"/>
|
||||||
|
<path class="st25" d="M794.158,368.878c.109-.621.366-1.255.794-1.719,1.075-1.166,2.559-2.361,4.145-2.338.996.015,1.898.798,2.558,1.544.501.567.987,1.318.926,2.073-.054.666-.877,1.046-1.103,1.675-.23.64.179,1.478-.22,2.029-.502.692-1.484.995-2.337,1.058-1.555.115-3.506-.077-4.498-1.279-.649-.785-.44-2.04-.265-3.043h0Z"/>
|
||||||
|
<path class="st25" d="M811.195,344.468c-.266-.393-.273-1.064.037-1.423.331-.383,1.039-.478,1.497-.262.481.227.89.865.787,1.385-.084.419-.589.721-1.011.786-.461.071-1.049-.1-1.31-.486h0Z"/>
|
||||||
|
<path class="st25" d="M827.965,323.879c.004-.441.229-.993.637-1.16.445-.184.912.504,1.385.411.235-.046.332-.377.561-.449.358-.112.87-.202,1.123.075.388.423.321,1.273-.037,1.722-.289.362-.964.077-1.348.337-.229.155-.238.552-.487.674-.303.148-.725.142-1.01-.038-.501-.315-.829-.98-.824-1.572h0Z"/>
|
||||||
|
<path class="st25" d="M816.286,295.279c.133.517.815.883,1.347.861.392-.016.751-.366.936-.711.184-.341.314-.855.075-1.16-.343-.44-1.144-.541-1.647-.3-.448.215-.835.829-.711,1.31Z"/>
|
||||||
|
<path class="st25" d="M822.537,292.921c-.216.501-.058,1.374.449,1.572.313.123.69-.235.861-.524.128-.214-.162-.599.038-.748.339-.254.842.457,1.235.299.453-.182.83-.749.786-1.235-.039-.44-.484-.821-.898-.974-.484-.177-1.21-.212-1.535.188-.19.233.22.635.075.898-.184.332-.861.176-1.011.524h0Z"/>
|
||||||
|
<path class="st25" d="M755.405,272.627c.282-.824,1.062-1.673,1.928-1.761,1.035-.106,2.128.714,2.684,1.593.48.759.594,1.853.251,2.683-.249.606-.86,1.171-1.509,1.258-1.066.143-2.279-.489-2.935-1.341-.502-.652-.686-1.654-.419-2.432Z"/>
|
||||||
|
<path class="st25" d="M761.862,264.157c-.037-.767.569-1.591,1.258-1.929.629-.309,1.43-.05,2.096.168.811.265,1.64.681,2.18,1.342.566.691,1.151,1.652.923,2.515-.122.461-.623.833-1.09.923-1.389.267-2.865-.533-4.025-1.342-.588-.409-1.308-.962-1.342-1.677h0Z"/>
|
||||||
|
<path class="st25" d="M778.717,271.201c-.421.342-.44,1.061-.335,1.593.289,1.461,1.034,3.828,2.516,3.69.486-.045.487-.864.587-1.342.086-.41-.153-.867,0-1.257.195-.498,1.171-.647,1.09-1.175-.068-.445-.728-.609-1.174-.67-.457-.063-.951.579-1.342.335-.339-.212.06-.922-.251-1.174-.283-.228-.808-.229-1.091,0h0Z"/>
|
||||||
|
<path class="st25" d="M724.377,236.483c-.153-.96.097-2.253.922-2.767.886-.552,2.416-.367,3.103.419.441.505-.576,1.669,0,2.013.354.211.856-.247,1.09-.587.495-.72-.414-2.15.336-2.6,1.152-.692,2.792.507,3.773,1.426.247.231.107.794.419.922.802.331,1.567-.97,2.432-.922,1.349.074,2.902.693,3.606,1.845.336.548.159,1.305,0,1.928-.259,1.019-.553,2.332-1.509,2.768-.833.38-1.775-.701-2.684-.587-.992.124-1.727,1.047-2.683,1.342-1.402.431-3.098,1.332-4.361.587-1.265-.748-.313-3.388-1.593-4.11-.421-.236-.978.431-1.426.252-.742-.296-1.3-1.139-1.425-1.929h0Z"/>
|
||||||
|
<path class="st25" d="M745.258,255.184c-.305-.83.244-1.861.838-2.516.37-.408.959-.68,1.51-.671.962.016,2.098.436,2.599,1.258.583.955.595,2.466-.084,3.354-.354.464-1.098.577-1.677.504-1.231-.157-2.758-.764-3.186-1.929h0Z"/>
|
||||||
|
<path class="st25" d="M681.741,326.426c-.31-.274-.661-.759-.495-1.137.204-.463.952-.646,1.435-.495.506.159.789.777.94,1.286.084.285.193.719-.05.891-.52.366-1.354-.123-1.83-.545Z"/>
|
||||||
|
<path class="st25" d="M688.171,317.325c-.298-.101-.619-.379-.643-.693-.037-.497.344-1.203.841-1.237.42-.027.667.558.841.94.11.242.257.578.099.792-.229.309-.773.321-1.138.198Z"/>
|
||||||
|
<path class="st25" d="M692.079,306.937c-.398-.412-.689-1.224-.346-1.682.238-.318.806-.209,1.187-.099.476.137,1.07.41,1.187.89.109.445-.18,1.041-.593,1.237-.445.211-1.093.007-1.435-.346Z"/>
|
||||||
|
<path class="st25" d="M685.995,318.462c-.178-.197-.269-.587-.099-.791.191-.228.649-.223.89-.05.305.22.557.817.297,1.089-.257.268-.838.028-1.088-.248h0Z"/>
|
||||||
|
<path class="st25" d="M564.948,211.238c.17-.046.196-.316.356-.391.236-.111.55.084.781-.035.308-.159.672-.473.64-.818-.025-.267-.53-.275-.604-.533-.058-.201.261-.411.178-.604-.254-.583-1.074-.789-1.706-.853-.318-.032-.686.036-.924.249-.266.238-.39.639-.391.995-.003.596.205,1.263.64,1.67.262.246.683.415,1.03.32h0Z"/>
|
||||||
|
<path class="st25" d="M558.871,207.009c.343-.041.759-.11.96-.391.378-.531.486-1.424.106-1.954-.279-.391-.907-.426-1.386-.391-.581.041-1.404.161-1.599.71-.235.665.388,1.473.96,1.884.262.189.638.181.959.142h0Z"/>
|
||||||
|
<path class="st25" d="M546.468,183.199c-.023-.325.228-.707.534-.818.454-.164,1.058.071,1.385.427.189.205.203.539.178.817-.019.217-.086.459-.249.604-.193.173-.498.286-.746.213-.532-.155-1.061-.691-1.102-1.243h0Z"/>
|
||||||
|
<path class="st25" d="M549.631,184.3c-.199-.337-.122-.832.071-1.172.355-.623,1.064-1.276,1.777-1.209.351.033.593.43.747.747.172.354.291.808.142,1.172-.224.546-.8,1.034-1.386,1.102-.495.057-1.097-.211-1.351-.64Z"/>
|
||||||
|
<path class="st25" d="M540.711,173.39c.048-.352.593-.5.64-.853.033-.253-.349-.464-.284-.711.119-.456.63-.88,1.101-.888.296-.005.549.285.711.533.14.214.26.504.178.746-.103.303-.667.294-.747.605-.069.272.291.501.32.781.034.324.086.769-.177.96-.368.267-.993.102-1.351-.178-.281-.219-.439-.642-.391-.995h0Z"/>
|
||||||
|
<path class="st25" d="M519.637,174.598c-.393.108-.856-.207-1.101-.533-.29-.384-.428-.974-.249-1.421.147-.37.563-.676.959-.711.317-.028.625.205.853.427.233.224.477.529.462.852-.025.555-.388,1.24-.924,1.386h0Z"/>
|
||||||
|
<path class="st25" d="M520.774,172.217c-.398-.131-.84-.54-.817-.959.015-.276.334-.508.604-.569.377-.085.869.048,1.102.356.193.255.23.705.035.959-.192.251-.623.313-.924.213h0Z"/>
|
||||||
|
<path class="st25" d="M512.636,176.873c-.194-.314-.092-.791.107-1.102.318-.496.944-.964,1.528-.888.399.052.738.467.853.853.1.336-.036.728-.213,1.03-.175.297-.443.616-.782.675-.525.093-1.212-.116-1.493-.568h0Z"/>
|
||||||
|
<path class="st25" d="M473.921,134.768c-.41-.03-.785-.396-.97-.764-.149-.297-.209-.718-.029-.998.178-.277.583-.418.911-.382.405.044.787.357.998.705.149.245.244.594.118.852-.174.354-.635.616-1.028.587Z"/>
|
||||||
|
<path class="st25" d="M472.481,137.941c-.083-.31.1-.73.382-.882.149-.08.36-.007.5.088.264.181.491.502.499.823.007.267-.121.647-.382.705-.403.09-.891-.336-.999-.734Z"/>
|
||||||
|
<path class="st25" d="M476.535,141.407c-.133-.24-.161-.626.03-.823.197-.204.599-.191.851-.059.222.117.42.399.382.647-.043.287-.357.555-.646.587-.235.026-.502-.145-.617-.352Z"/>
|
||||||
|
<path class="st25" d="M562.809,182.21c-.094-.447.063-1.097.48-1.281.526-.233,1.365.116,1.602.64.298.658-.016,1.888-.721,2.043-.636.139-1.228-.764-1.361-1.402h0Z"/>
|
||||||
|
<path class="st25" d="M567.614,188.617c-.104-.462-.082-1.054.24-1.401.262-.283.773-.444,1.122-.281.47.22.688.883.68,1.402-.004.316-.16.694-.44.841-.393.206-.941.068-1.322-.16-.139-.084-.244-.242-.28-.401h0Z"/>
|
||||||
|
<path class="st25" d="M732.669,213.575c-.59-.244-1.053-.791-1.355-1.354-.271-.508-.329-1.118-.338-1.694-.01-.572-.088-1.256.282-1.693.373-.441,1.06-.576,1.637-.564.929.019,2.018.288,2.596,1.016.568.714.682,1.843.395,2.709-.234.707-.892,1.295-1.58,1.58-.504.209-1.133.209-1.637,0h0Z"/>
|
||||||
|
<path class="st25" d="M741.128,143.728c-1.348-.531-2.27-2.097-2.555-3.518-.155-.773.043-1.695.545-2.303.799-.969,2.547-.66,3.434-1.55.41-.411.265-1.22.712-1.591.32-.266.803-.357,1.214-.293.533.082.861.7,1.382.837.473.125.98-.097,1.466-.042,1.104.125,2.561-.053,3.225.838.233.313.102.809-.042,1.172-.727,1.83-3.31,2.56-3.895,4.44-.213.684.417,1.438.251,2.135-.169.716-.573,1.483-1.214,1.843-.67.377-1.566.299-2.303.084-.473-.138-1.085-.364-1.215-.838-.151-.548,1.063-1.102.712-1.549-.36-.459-1.174.548-1.717.335h0Z"/>
|
||||||
|
<path class="st25" d="M776.599,173.797c-.098-1.136,1.307-1.903,2.178-2.639.812-.686,1.716-1.772,2.764-1.591,1.103.191,1.127,2.171,2.178,2.555.239.087.518-.222.753-.126.241.098.488.37.461.628-.037.354-.444.659-.796.712-.364.055-.642-.527-1.005-.461-1.019.189-1.219,1.826-2.177,2.22-.891.366-1.989.299-2.89-.042-.602-.228-1.41-.615-1.466-1.256h.0001Z"/>
|
||||||
|
<path class="st25" d="M804.752,169.91c-.413-.111-.723-.658-.687-1.084.029-.34.36-.659.687-.758.285-.087.578.291.867.216.239-.061.296-.477.542-.505.359-.041.802.207.939.541.242.59.104,1.66-.506,1.843-.367.111-.486-.713-.867-.759-.363-.044-.622.602-.975.506h0Z"/>
|
||||||
|
<path class="st25" d="M812.24,120.706c-.889-.569-1.303-2.17-.758-3.074.198-.33.737-.332,1.118-.28.454.062.921.312,1.197.679.206.273-.054.822.24.998.224.134.497-.2.759-.2.261,0,.545.049.758.2.29.204.6.524.599.878-.002.68-.537,1.401-1.158,1.678-.38.169-.896.078-1.237-.16-.284-.198-.169-.768-.48-.919-.317-.153-.741.39-1.038.2h0Z"/>
|
||||||
|
<path class="st25" d="M852.612,293.849c-.411-.163-.771-.672-.725-1.113.056-.544.618-1.09,1.161-1.161.573-.075,1.295.33,1.5.871.126.334-.076.774-.339,1.016-.403.371-1.087.589-1.597.387h0Z"/>
|
||||||
|
<path class="st25" d="M991.619,87.2384c.208-.5453.912-.8287,1.488-.9213.6-.0963,1.241.1307,1.772.4252.869.482,1.815,1.1469,2.126,2.0907.263.7947.085,1.7909-.39,2.4803-.471.6843-1.332,1.2996-2.161,1.2402-.688-.0493-1.241-.7055-1.63-1.2756-.791-1.161-1.704-2.7261-1.205-4.0395h.0001Z"/>
|
||||||
|
<path class="st25" d="M937.39,96.977c-.514-.4534-.656-1.2771-.618-1.9616.035-.6165.179-1.4652.753-1.6928.451-.1791.873.4416,1.343.5643.463.1206,1.029-.1067,1.424.1612.455.3079.706.907.78,1.451.054.4005.1,1.0181-.269,1.1823-.234.1043-.418-.4131-.672-.3762-.457.0665-.527.8534-.967.9943-.572.183-1.323.0749-1.774-.3225,0,0-.0001,0-.0001,0Z"/>
|
||||||
|
<path class="st25" d="M941.51,96.9812c-.141-.223-.185-.5875-.018-.7918.178-.2171.607-.3195.829-.1473.199.1549.16.5256.055.7549-.086.1875-.292.3504-.497.3683-.137.0119-.295-.0683-.369-.1841h0Z"/>
|
||||||
|
<path class="st25" d="M928.049,136.454c-.481-.242-.78-.807-.922-1.327-.259-.951-.356-2.15.222-2.949.28-.388.848-.576,1.326-.553,1.016.049,2.061.64,2.691,1.438.512.648,1.264,1.871.627,2.396-.263.216-.599-.551-.922-.443-.484.163-.268,1.091-.7,1.364-.654.414-1.63.422-2.322.074h0Z"/>
|
||||||
|
<path class="st22" d="M607.5469,334.8834c.6834-.1212,1.4502-.0991,1.9892.3382.2384.1934.4158.456.6644.6362.6503.4715,1.7236.3515,2.1019,1.06.2251.4215.0732.9378-.0946,1.3852-.1478.3941-.3382.8207-.7217.9942-.2383.1079-.5301.1051-.728.2762-.2063.1782-.2383.4805-.356.7265-.2163.4521-.7431.7022-1.244.687s-.9721-.2574-1.36-.5748c-.2727-.2231-.548-.5001-.9001-.5126-.3471-.0124-.6592.243-1.0064.2416-.4747-.0019-.8027-.4587-1.0474-.8655-.2853-.4742-.5749-.9589-.6964-1.4989s-.048-1.1545.3251-1.5632c.8655-.9483,1.8398-1.1111,3.0739-1.33h.0001Z"/>
|
||||||
|
<path class="st18" d="M392.5486,275.808c-.0175-.1925-.0805-.3824-.0584-.5743.0303-.2632.2152-.468.4152-.5947s.4232-.1977.6224-.3262c.4248-.274.7087-.7869,1.1373-1.0526.6508-.4034,1.4511-.1442,2.1772-.2913.098-.0199.1971-.0474.2958-.033.2201.0321.3793.2613.4793.4923s.1697.4878.3234.6744c.1564.19.3819.2842.5442.4673.1836.2073.2839.5243.5152.6509.1259.0689.2858.0783.371.2065.0532.0799.0626.1872.0969.2801.1132.3067.4605.393.6309.6613.138.2174.1275.5462-.024.751-.0914.1236-.2258.2039-.2939.3465-.0816.171-.0465.3814-.0286.576.0809.8789-.2754,1.7945-.8958,2.3019-.3303.2702-.7185.4252-1.0719.6523s-.6905.5592-.7926,1.0146c-.2456.1502-.5437.0088-.7879-.1444-1.1382-.7142-2.1853-1.7158-3.4542-2.0022-.3485-.0787-.7406-.121-.9755-.4314-.1209-.1597-.1808-.3706-.2118-.5806-.0835-.5644.0334-1.1639.3073-1.6378.2692-.4658.7367-.7666.6787-1.4065h-.0002,0Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Sniper">
|
||||||
|
<path class="st19" d="M483.8293,31.8225l20.5677-27.0929,34.9804,28.5641-23.8732,23.3193-31.675-24.7905h.0002,0Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Powerline_Towers">
|
||||||
|
<path class="st27" d="M-130.5704,240.2496l6.5632-.2311.2296,6.5203-6.5632.2311-.2296-6.5203Z"/>
|
||||||
|
<path class="st27" d="M18.4951,232.1339l6.6582.9042-.9097,6.6986-6.6582-.9042.9097-6.6986Z"/>
|
||||||
|
<path class="st27" d="M155.8097,313.735l4.3096-5.5632,5.6936,4.4105-4.3096,5.5632-5.6936-4.4105Z"/>
|
||||||
|
<path class="st27" d="M199.8888,405.5986l5.821-3.7491,3.7271,5.8711-5.8454,3.7108-3.7028-5.8327h.0001Z"/>
|
||||||
|
<path class="st27" d="M289.2772,512.5758l5.4177-3.4507,3.6086,5.6655-5.4177,3.4507-3.6086-5.6655h0Z"/>
|
||||||
|
<path class="st27" d="M361.9213,630.9786l5.433-3.1302,3.0572,5.3061-5.433,3.1302-3.0572-5.3061Z"/>
|
||||||
|
<path class="st27" d="M892.3143,595.9836l6.6063-.9165.9305,6.7073-6.6063.9165-.9305-6.7073Z"/>
|
||||||
|
<path class="st27" d="M848.4079,464.961l.6224,6.4172,6.4899-.6295-.6224-6.4173-6.4899.6295h0Z"/>
|
||||||
|
<path class="st27" d="M848.933,332.1747l4.0878-5.4252,5.4495,4.1061-4.0878,5.4252-5.4495-4.1061Z"/>
|
||||||
|
<path class="st27" d="M919.7238,248.4351l6.7839.2598-.2576,6.7251-6.7839-.2598.2576-6.7251Z"/>
|
||||||
|
<path class="st27" d="M934.0201,85.6163l6.7157.6959-.7241,6.8171-6.7139-.7131.7222-6.7999h.0001Z"/>
|
||||||
|
<path class="st27" d="M993.293-27.5839l6.5007-.3993-.3943-6.4194-6.5007.3993.3943,6.4194Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Powerlines">
|
||||||
|
<path class="st16" d="M-166.8165,241.3645l39.6424,2.0297,148.5434-7.4589,139.4419,77.2233,43.8516,93.4818,89.1274,107.0428,72.3761,118.3834,31.2958,50.1627"/>
|
||||||
|
<path class="st16" d="M922.915,682.0132l-26.8323-83.1342-44.1187-131.0241,1.7377-136.3397,69.2852-79.5876,14.0299-162.5547,59.3293-120.3661-.6653-46.176"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="First_Floor">
|
||||||
|
<g id="Ladders-First">
|
||||||
|
<polygon class="st26" points="483.4583 149.9561 482.1204 150.1983 483.345 156.837 484.6653 156.5967 483.4583 149.9561"/>
|
||||||
|
<polygon class="st26" points="77.6028 167.0481 81.0003 167.4041 80.8452 168.8547 77.4476 168.4987 77.6028 167.0481"/>
|
||||||
|
<polygon class="st26" points="89.0947 174.9057 92.2892 175.2578 92.0049 178.1041 88.8104 177.752 89.0947 174.9057"/>
|
||||||
|
<rect class="st26" x="130.7523" y="182.8904" width="4.9068" height="2.3673" transform="translate(-66.0988 293.1828) rotate(-82.8069)"/>
|
||||||
|
<rect class="st26" x="144.6774" y="184.7696" width="4.7867" height="2.3094" transform="translate(-55.8034 308.5608) rotate(-82.8079)"/>
|
||||||
|
<polygon class="st26" points="137.5155 228.8939 131.768 228.1281 132.1434 225.4112 137.891 226.177 137.5155 228.8939"/>
|
||||||
|
<rect class="st26" x="131.4426" y="239.6772" width="2.6883" height="5.3359" transform="translate(-125.3739 340.9178) rotate(-82.1788)"/>
|
||||||
|
<polygon class="st26" points="367.7035 244.2441 368.4506 239.2068 374.1019 240.0709 373.3547 245.1082 367.7035 244.2441"/>
|
||||||
|
<rect class="st26" x="367.9772" y="244.3884" width="4.291" height="5.7169" transform="translate(69.566 575.5569) rotate(-81.2704)"/>
|
||||||
|
<polygon class="st26" points="494.8734 166.775 501.3479 165.5949 500.7369 162.1827 494.259 163.3872 494.8734 166.775"/>
|
||||||
|
<polygon class="st26" points="489.2456 200.9059 484.407 201.8876 483.7416 198.2183 488.5802 197.2366 489.2456 200.9059"/>
|
||||||
|
<polygon class="st26" points="604.8522 140.8492 600.6784 141.7336 600.0533 138.6498 604.2271 137.7653 604.8522 140.8492"/>
|
||||||
|
<polygon class="st26" points="589.7917 214.5341 590.0985 216.0674 592.9581 215.4724 592.6375 213.942 589.7917 214.5341"/>
|
||||||
|
<polygon class="st26" points="892.1254 192.2615 898.0666 192.4548 898.1439 189.452 892.2027 189.2587 892.1254 192.2615"/>
|
||||||
|
<rect class="st26" x="458.3345" y="440.472" width="2.4459" height="4.3112" transform="translate(-46.4121 831.3525) rotate(-81.4592)"/>
|
||||||
|
<polygon class="st26" points="521.6044 459.9254 521.2514 462.4697 525.4403 463.036 525.7933 460.4917 521.6044 459.9254"/>
|
||||||
|
<rect class="st26" x="519.5159" y="441.3851" width="1.939" height="8.0945" transform="translate(7.8211 899.8444) rotate(-82.1099)"/>
|
||||||
|
<rect class="st26" x="513.3438" y="484.2054" width="1.9091" height="7.9694" transform="translate(-39.8797 930.5916) rotate(-82.1086)"/>
|
||||||
|
<rect class="st26" x="459.4398" y="466.9871" width="1.7475" height="7.2949" transform="translate(-67.9519 863.4717) rotate(-82.271)"/>
|
||||||
|
<polygon class="st26" points="461.0979 282.0638 466.2248 281.137 467.1285 286.0853 462.0033 287.0213 461.0979 282.0638"/>
|
||||||
|
<rect class="st26" x="617.3889" y="292.6858" width="4.7543" height="3.516" transform="translate(284.9904 893.3865) rotate(-86.2091)"/>
|
||||||
|
<polygon class="st26" points="114.3547 250.3945 115.0635 245.7448 117.6702 246.1281 116.9697 250.7789 114.3547 250.3945"/>
|
||||||
|
<rect class="st26" x="346.1477" y="267.1202" width="3.3161" height="1.5003" transform="translate(30.3949 571.1421) rotate(-81.2975)"/>
|
||||||
|
<polygon class="st26" points="63.7633 167.0565 65.8945 167.3487 64.9314 174.4359 62.8002 174.1437 63.7633 167.0565"/>
|
||||||
|
<polygon class="st26" points="225.1714 182.0033 227.6553 182.3062 226.7966 189.608 224.3128 189.3052 225.1714 182.0033"/>
|
||||||
|
<path class="st26" d="M350.8889,260.0808c-.2402-2.2546,1.7984-2.9431,1.0307-7.362-.2507-1.4432,3.565-.6984,3.4124.4777-.2843,2.1919-1.0746,4.6949-1.0307,7.362.0207,1.2584-3.2715.8443-3.4124-.4777h0Z"/>
|
||||||
|
<path class="st26" d="M361.5405,217.9648c.8253.2404.9875,3.2268.2945,5.1534-.6978,1.9401-2.5346,1.3484-3.0736.1756-.9636-2.0964-1.1496-4.5839-.2945-5.1534.6623-.4411,1.5652-.6151,3.0736-.1756Z"/>
|
||||||
|
<polygon class="st26" points="613.0995 160.0064 608.3619 160.9667 608.6488 162.3915 613.3864 161.4312 613.0995 160.0064"/>
|
||||||
|
<polygon class="st26" points="476.4949 156.7457 487.4383 154.6573 487.1226 152.917 476.1793 155.0053 476.4949 156.7457"/>
|
||||||
|
<rect class="st26" x="381.7507" y="120.3828" width="1.819" height="5.8841" transform="translate(-17.9907 89.9084) rotate(-13.0955)"/>
|
||||||
|
<polygon class="st26" points="426.8175 248.815 437.4964 251.1176 440.1964 238.3175 435.3964 237.2175 433.4964 246.2175 427.6907 244.9333 426.8175 248.815"/>
|
||||||
|
<polygon class="st26" points="415.1037 293.602 419.3051 294.5177 419.0425 295.7532 414.8276 294.8612 415.1037 293.602"/>
|
||||||
|
<polygon class="st26" points="430.3999 278.3089 430.6647 277.045 426.661 276.2101 426.9343 275.0376 432.4058 276.2274 431.8928 278.6508 430.3999 278.3089"/>
|
||||||
|
<rect class="st26" x="433.3929" y="294.496" width="1.3" height="3.2" transform="translate(51.8775 656.6729) rotate(-77.6362)"/>
|
||||||
|
<rect class="st26" x="430.8132" y="292.8162" width="2.5283" height="1.3408" transform="translate(55.1696 655.1021) rotate(-77.9999)"/>
|
||||||
|
<polygon class="st26" points="437.9905 262.6886 439.2618 262.9589 438.7453 265.4049 437.4729 265.1385 437.9905 262.6886"/>
|
||||||
|
<polygon class="st26" points="640.8359 250.1545 639.3709 250.4515 638.4612 246.0679 639.9303 245.7897 640.8359 250.1545"/>
|
||||||
|
<polygon class="st26" points="660.5674 241.1794 656.4708 242.0869 656.1592 240.6462 658.8092 240.0917 658.1409 237.0609 659.5258 236.7715 660.5674 241.1794"/>
|
||||||
|
<polygon class="st26" points="645.5474 257.2249 644.0262 257.5288 643.1399 253.0393 644.6531 252.7286 645.5474 257.2249"/>
|
||||||
|
<polygon class="st26" points="628.4046 235.103 625.5938 235.7079 625.2383 234.1246 628.0795 233.5443 628.4046 235.103"/>
|
||||||
|
<polygon class="st26" points="581.7388 229.6879 586.2163 228.744 586.6532 230.7424 582.1636 231.6935 581.7388 229.6879"/>
|
||||||
|
<polygon class="st26" points="564.5146 233.3184 568.9531 232.3828 569.3869 234.3943 564.9505 235.3314 564.5146 233.3184"/>
|
||||||
|
<rect class="st26" x="570.3375" y="243.2707" width="3.9748" height="1.8837" transform="translate(-38.3709 124.8551) rotate(-12.0493)"/>
|
||||||
|
<polygon class="st26" points="577.7 247.7782 577.4516 246.5876 579.529 246.1441 579.771 247.324 577.7 247.7782"/>
|
||||||
|
<rect class="st26" x="590.276" y="244.7149" width="1.6332" height="3.7824" transform="translate(-38.4571 128.8256) rotate(-12.0493)"/>
|
||||||
|
<rect class="st26" x="574.8486" y="247.9797" width="1.6014" height="3.8137" transform="translate(-39.4821 125.6741) rotate(-12.0493)"/>
|
||||||
|
<polygon class="st26" points="280.1478 213.1824 278.782 212.9765 279.1784 210.4131 280.5309 210.611 280.1478 213.1824"/>
|
||||||
|
</g>
|
||||||
|
<g id="Buildings-First">
|
||||||
|
<path class="st24" d="M351.2799,205.1135l-.0195.1328-.0215.1309-.5273-.0801-.5312-.082-1.8094,12.1916,4.0234.6133-.0215.1348-.0195.1309-4.0215-.6133-.1875,1.2148-.1855,1.2168,5.0057.7194-.2871,1.8809-.2871,1.877-.1309-.0195-.1328-.0215.2676-1.7461.2676-1.7461-4.744-.6803-.7891,5.1621-1.0788,6.6878,2.6992.4141,2.0409.2663.291-1.8105.291-1.8105.1211.002h.1211l-.2988,1.9629-.3008,1.9629-2.1737-.2878-2.832-.4336-.1777,1.166-.1777,1.1621,2.0117.3066,2.0098.3086-.0195.1328-.0195.1328-2.0117-.3086-2.0117-.3066-.7806,5.7349,6.0859.9297,2.1583.3233-.041.2656-.041.2637-1.4688-.2178-.5176,3.3887-.358,2.2378-1.7051-.2754-1.7051-.2754.002-.123.002-.1191,1.5898.2441,1.5898.2422.3385-2.1069.498-3.2539-3.2539-.4961-3.2559-.498-.498,3.2539-.3365,2.1069.4766.0723.4766.0723-.0195.1309-.0195.1328-.4785-.0723-.4766-.0723-2.3033,14.7946,3.1211.4766,3.1211.4785-.5517,3.3873,1.536.2426-.1318.8627.6066.0855.6621.1016-.1016.6602-.1016.6621-.6602-.1016-.6086-.0855-.166,1.093-1.5229-.237-.0261.1555-.3036-.0491.1074-.7051-1.4551-.2227-1.6476-.2547-.1074.7051-.2656-.041.1074-.7031-.4657-.0695.041-.2676.6532.0968,3.1808.4891.5842-3.6309.334-1.9511-2.9883-.457-2.9922-.457-.332,1.9492-.5862,3.6329.7148.1094-.041.2676-.709-.1094-.0529.2513h-.1191l-.1076-.0278-.2008,1.2988.1328.0195.1309.0195-.0974.6513-.0332.2109,1.4023.2148,1.2099.1828.082-.5352.2656.041-.082.5352,1.6476.2528,1.4551.2227.082-.5332.2637.0391-.082.5352,2.3828.3652,3.316.5269-.0195.1309-.0195.1348,2.7773.4238,2.7773.4258.0195-.1348.0215-.1309,5.0707.7543,6.0039.918,2.0137-13.1738,1.8241-11.3246-3.3457-.5254-3.1751-.5016.0336-.3273.3665.0582.5332.082.3073-2.0813.8867.1191.8906.1211.0997-.6349.2324-1.5011-2.8828-.4395-3.0782-.5052-.1854,1.3714-.1152-.0332-.1172-.0332.1522-1.3461-3.1234-.4656-.9492-.1445.0313-.1219.041-.2656.9512.1445.9551.1465.7559-4.9473.7559-4.9473.1309.0195.1328.0195-.3086,2.1074-.3086,2.1055.5137.0937,1.7827.2953-.0195.1309-.0528.4295-1.7983-.2817-.5293-.082-.3788,2.3986-.4121,2.6992,1.9824.3027,4.3481.6857.209-1.3711.2109-1.375.8867.1211.8906.1211.2109-1.3105.1815-1.0041-4.2968-.6151.0807-.4594.004-.1152,8.1555,1.1606,2.4462-16.6006,2.0312-13.2812-4.8145-.7363-7.2505-1.0989-.3164,2.0664-.3145,2.0684-.1172-.0351-.1152-.0352.2988-2.0527.2988-2.0527-4.8921-.7566-7.3281-1.1211.0195-.1309.0195-.1328-1.4805-.2266-1.4829-.2263.0003-.0007h0ZM368.4299,213.2567l.1289.0195.1348.0215-1.4766,9.6562-1.4766,9.6562-.0977-.0156-.0976-.0137-.0274-.041-.0293-.041,1.4707-9.6191,1.4707-9.6231h0ZM360.0797,217.7118c.4146.0105.8953.0891,1.4609.2539.8253.2404.9879,3.2257.2949,5.1523-.6978,1.9401-2.5352,1.3485-3.0742.1758-.9636-2.0964-1.15-4.5848-.2949-5.1543.4139-.2757.9223-.4453,1.6133-.4277h0ZM362.9009,247.6502l.1289.0195.1309.0195-.0391.3594-.041.3594.5156.0937.2279.0481-.0215.1289-.0195.1309-.3392-.0481-.627-.0957-.0293-.041-.0293-.041.0703-.4648.0723-.4687h0ZM344.9863,249.5739l2.6926.4121-1.252,8.2011-2.6204-.4023-.0332-.0391-.0293-.041,1.2422-8.1308h.0001ZM345.2129,249.8785l-1.1621,7.6016.0293.041.0293.041,2.093.3203,1.1738-7.6719-2.1633-.332h0ZM351.233,250.0491l.6602.1016.6621.0996-.1016.6621-.1016.6621-.6602-.0996-.6621-.1016.1016-.6641.1016-.6602h0ZM362.6627,251.7952l.6602.1016.6641.1016-.1016.6621-.1016.6621-.6641-.1016-.6602-.1016.1016-.6621.1016-.6621ZM352.9283,251.9257c.8915-.0361,2.5339.5407,2.4043,1.2715-.4397,2.4799-1.1388,5.6219-1.0312,7.3613.0709,1.1462-3.3422.6697-3.4121-.4766-.1207-1.9776,1.8293-3.4942,1.0293-7.3613-.1266-.612.5818-.7776,1.0098-.7949h0ZM350.358,255.7659l.6621.0996.6602.1016-.0996.6621-.1016.6602-.6621-.1016-.6602-.0996.1016-.6621.0996-.6601h0ZM361.7877,257.512l.6621.1016.6621.1016-.1016.6602-.0996.6621-.6641-.1016-.6602-.1016.0996-.6602.1016-.6621h0ZM349.485,261.4788l.6621.0996.6602.1016-.1016.6641-.1016.6602-.6602-.1016-.6621-.0996.1016-.6621.1016-.6621h0ZM360.9147,263.2249l.6602.1016.6641.1016-.1016.6621-.1016.6621-.6621-.1016-.6621-.1016.1016-.6602.1016-.6641h0ZM360.0416,268.9397l.6602.1016.6641.1016-.1016.6602-.1016.6621-.6621-.1016-.6621-.1016.1016-.6602.1016-.6621h0Z"/>
|
||||||
|
<path class="st24" d="M169.3067,347.3364c1.906.204,3.811.408,5.717.613.076-.709.152-1.418.229-2.127-1.907-.204-3.813-.409-5.719-.613-.076.709-.151,1.418-.227,2.127Z"/>
|
||||||
|
<rect class="st24" x="470.9237" y="361.2054" width="6.053" height="2.289"/>
|
||||||
|
<path class="st24" d="M490.0417,372.3044c.002.657.005,1.313.007,1.969,1.855-.008,3.71-.015,5.565-.023-.002-.657-.004-1.313-.006-1.969-1.855.008-3.711.016-5.566.023h0Z"/>
|
||||||
|
<path class="st24" d="M515.6527,431.6254c1.86.244,3.72.489,5.58.734.336-2.557.672-5.113,1.008-7.67-1.86-.245-3.72-.489-5.58-.734-.336,2.556-.672,5.113-1.008,7.67Z"/>
|
||||||
|
<path class="st24" d="M664.9727,419.5684c.778.033,1.556.065,2.334.098l.24-5.817c-.778-.032-1.556-.065-2.334-.097-.08,1.938-.16,3.877-.24,5.816h0Z"/>
|
||||||
|
<path class="st24" d="M673.8328,340.8404l7.527,1.929c.47-1.834.94-3.669,1.41-5.504-2.509-.642-5.018-1.285-7.527-1.927l-1.41,5.502Z"/>
|
||||||
|
<path class="st24" d="M590.9067,328.5864c1.893.3,3.786.601,5.68.902.121-.765.243-1.53.365-2.295l-5.682-.9c-.121.764-.242,1.528-.363,2.293Z"/>
|
||||||
|
<path class="st24" d="M621.5317,129.4454l1.113,5.898c.785-.153,1.57-.306,2.356-.459-.384-1.964-.767-3.928-1.151-5.892-.773.151-1.545.302-2.318.453Z"/>
|
||||||
|
<polygon class="st24" points="381.9797 116.3347 380.1748 116.7811 380.249 117.0952 379.8805 117.1924 379.8063 116.8782 375.2381 117.9863 376.8983 125.0844 381.4665 123.9745 380.1118 118.1864 380.4803 118.0892 381.0878 120.6941 382.8927 120.2478 381.9797 116.3347"/>
|
||||||
|
<path class="st24" d="M528.1857,270.6754c.11.689.219,1.378.328,2.067,1.923-.305,3.845-.611,5.768-.916-.11-.69-.219-1.379-.328-2.068-1.923.305-3.845.611-5.768.917Z"/>
|
||||||
|
<rect class="st24" x="512.9088" y="312.7054" width="5.66" height="1.986"/>
|
||||||
|
<path class="st24" d="M192.3227,395.5864c.618.446,1.237.892,1.855,1.338,1.106-1.534,2.211-3.068,3.317-4.602-.619-.446-1.239-.892-1.858-1.338-1.104,1.534-2.209,3.068-3.314,4.602Z"/>
|
||||||
|
<polygon class="st20" points="131.2772 246.879 131.7152 243.711 134.4867 244.0904 135.9415 244.2936 135.5035 247.4617 135.0953 250.392 133.6406 250.1887 130.869 249.8093 131.2772 246.879"/>
|
||||||
|
<polygon class="st20" points="129.1367 252.7294 129.5436 249.7637 132.5606 250.1807 135.0763 250.529 134.6695 253.4957 134.2935 256.2237 131.7777 255.8744 128.7607 255.4574 129.1367 252.7294"/>
|
||||||
|
<path class="st24" d="M117.3377,253.9564v-.063l-.336-.055-.338-.054,1.058-7.658-.205-.029-.041.297-.042.303-.847-.117-.505-.085-.195,1.412-.194,1.405.512.086.854.118-.116.84-.059.372-1.639-.227-.956-.15.036-.223-.069-.01-.069-.01.099-.716.099-.716.069.009.069.01.316-2.27.344-2.494,1.052.164,1.736.24,2.275-16.462,2.275-16.463,2.989.413,2.99.413-.83,6.007-.83,6.006.069.01.069.009.83-6.006.83-6.007,6.006.83,5.5048.7623-1.456,10.588-1.456,10.588.061.018.061.017-.158,1.141-.158,1.142-.069-.01-.068-.009-.473,3.416-.472,3.417-.4628-.0653-.964-.134.24-1.735.1245-.9431-2.259-.312-2.259-.313-.0115.1171-.1602,1.1464,1.115.154,1.116.154-.0788.5897-.114.826-.978-.135-.978-.135-.086.62-.086.62.055.007.056.008.076-.551.076-.551,1.005.139.1904.0296-.194,1.405-.2636,1.8824-.1904-.0296-1.006-.139.1276-.8904.057-.413-.051-.007-.087-.012-.086.624-.087.625-.601,4.348-.601,4.349-2.906-.402-2.907-.401.832-6.02.832-6.021-.069-.009-.069-.01-.832,6.021-.832,6.02-1.708-.236-1.708-.236-.01.069-.0559.2907-1.87-.258.0458-.2856v-.0002h0ZM135.8247,234.8134l.369-2.673-.069-.009-.068-.01-.37,2.673-.369,2.672.069.01.069.009.369-2.672h0ZM136.8267,227.3564l.1845-1.2966-1.13-.156-1.129-.156-.0565.3736-.118.854-1.116-.154-1.116-.154-.128.923-.0916.5638,2.245.31,2.246.31.2096-1.4177h0Z"/>
|
||||||
|
<polygon class="st20" points="278.9894 337.575 280.7683 337.7897 280.5969 339.1199 278.818 338.9052 278.9894 337.575"/>
|
||||||
|
<polygon class="st20" points="276.2939 343.3246 276.849 338.8264 280.5782 339.2755 280.024 343.7737 276.2939 343.3246"/>
|
||||||
|
<path class="st24" d="M283.3282,320.544l-.2413,1.9985-1.7286-.1998.0069-.064.0303-.229-1.2539-.1507-.0293.2221-.0079.0699-1.2447-.1468-.264,2.1877-.1908,1.5965.3004.0364-.0079.0611-.0099.0808-.3004-.0364-.6159,5.1024-.5447,4.5191,2.299.2768-.0079.065-.0079.065-2.299-.2778-.157,1.49.4344.0522-.0157.129-.4344-.0522-.1704,1.3302,1.8015.2177.1714-1.3302-.4068-.0492.0148-.13,2.7333.33-.0079.065-.0079.065-.132-.0167-.1291-.0148-.7443,5.984,1.6183.195.4892-3.8683.067.0079.065.0079-.4892,3.8683,3.771.4907.7443-5.985-3.771-.4897-.1202.9939-.064-.0079-.067-.0079.1192-.9939-.129-.0157-.13-.0158.0079-.065.0079-.065,4.162.538.1973-1.8279.2551-2.1177.065.0079.067.0079.1369-1.1357.1369-1.1376-.065-.0069-.066-.0089.2669-2.2201.3391-2.8015-5.8227-.7369.0108-.0837.0069-.0591,5.8217.7379.3129-2.6002.3842-3.1834-2.5693-.3449-2.5919-.3232.0005-.0003h0ZM279.7544,325.9908l1.1573.1399-.0079.065-.0099.0768-1.1573-.1389.0118-.0936.0059-.0493h0Z"/>
|
||||||
|
<path class="st24" d="M495.1452,481.0661l.4186-3.0239.5469.0711.5469.0701.0118-.0424.0118-.0424-.5518-.077-.5518-.076.2063-1.4878.2064-1.4878.546.0701.5469.0711.0069-.0484.0069-.0484-.546-.081-.545-.081.4196-3.0239.4186-3.0239,1.4789.2054,1.4779.2044-.4196,3.0249-.4186,3.0239-.541-.075-.541-.075-.0079.0582-.0089.0582,2.6863.3722,2.6863.3722.0079-.0582.0079-.0582-.5509-.076-.5499-.076.4186-3.0249.4196-3.0239,1.4818.2103,1.4828.2103-.4137,3.02-.4136,3.02-.5509-.076-.5509-.076-.0079.0582-.0079.0573,1.1501.1599,1.1491.159.0079-.0582.0089-.0573-.5509-.077-.5509-.076.4235-3.019.4225-3.019,1.4838.2014,1.4838.2004-.4186,3.0239-.4196,3.0249-.5509-.076-.5499-.077-.0089.0582-.0079.0582.5992.0829.5992.0829.4275-3.0822.4265-3.0822,3.0831.4265,3.0822.4275.077-.5943.077-.5953-.0474-.0069-.0484-.0069-.0809.546-.0809.545-3.0239-.4196-3.0239-.4186.2103-1.4828.2103-1.4819,3.02.4137,3.02.4137-.076.5499-.076.5509.0582.0089.0573.0079.157-1.1649.156-1.1649-.0484-.0069-.0484-.0069-.0819.5548-.082.5548-3.018-.4235-3.019-.4226.2004-1.4838.2004-1.4838,2.2864.312,2.2855.311.0138-.0523.0139-.0513-2.2914-.3179-2.2914-.3179.2103-1.4819.2103-1.4828,3.0199.4137,3.02.4137-.2054,1.4878-.2063,1.4878-.3574-.0493-.3583-.0494-.0079.0582-.0079.0573.3574.0503.3574.0494-.076.5509-.076.5509.0444.0059.0455.0059.1303-.8421.1293-.8421.1807-1.3012.1797-1.3012-3.0822-.4265-3.0822-.4275.0484-.3475.0484-.3485-.377-.0539.2113-1.5273.377.0549.0504-.3574.0493-.3574,1.5213.2103,1.2982.179.9073-.6832.9083-.6832.0227-.2063.0237-.2073-.0484-.0059-.0483-.0069-.0297.1905-.0297.1905-.855.6476-.8539.6466-1.2883-.179-1.5125-.2093.2054-1.4779.2044-1.4789,2.2608.3139,2.0366.2817-.0197.1451-.0198.1451.0573.0079.0582.0079.0217-.155.0217-.154.9873.1369.7641.1056.077-.5943.077-.5953-.0484-.0069-.0484-.0059-.0809.545-.0809.545-3.0239-.4196-3.0239-.4186.2103-1.4828.2113-1.4819,3.02.4137,3.02.4137-.076.5499-.077.5509.0583.0089.0583.0079.3722-2.6863.3722-2.6863-.0583-.0079-.0582-.0079-.076.5509-.076.5509-3.019-.4235-3.019-.4235.2004-1.4838.2014-1.4838,3.0239.4196,3.0249.4186-.077.5509-.076.5509.0583.0079.0572.0079.077-.5509.076-.5509.5391.075.3448.0481.0561-.3471,1.3004.1869-.056.3471.2218.0237.5508.077-.076.5499-.077.5509.0484.0069.0484.0069.076-.5509.077-.5509,3.0338.4206,3.0338.4206-.2103,1.4828-.2103,1.4819-3.025-.4186-3.0239-.4196.0711-.5469.0701-.546-.0484-.0069-.0474-.0069-.0455.3238-.0444.3238-.1017.8283-.1017.8273.0454.0059.0444.0069.077-.5509.076-.5509,3.0239.4196,3.025.4186-.2064,1.4878-.2063,1.4888-3.0249-.4196-3.0239-.4196.076-.5499.077-.5509-.0473-.0069-.0474-.0069-.0869.5845-.0869.5835-.073.5657-.0721.5667.0474.0059.0474.0069.076-.5509.077-.5509,3.018.4235,3.0189.4235-.2004,1.4838-.2004,1.4838-3.0249-.4196-3.0239-.4186.076-.5509.076-.5509-.0474-.0069-.0474-.0059-.0839.5637-.084.5647-.2132,1.5806-.2133,1.5806,1.2261.1698,1.2261.1698-.1056.7641-.1057.7631,1.0721.1481,1.0731.1491-.1007.7246-.1006.7246-2.2993-.3189-2.2993-.3189-.4334,3.0871-.4324,3.0861-.076.5854-.075.5854.0474.0059.0474.0069.077-.5509.076-.5509.3574.0494.3574.0503.0069-.0484.007-.0484-.3574-.0493-.3574-.0503.4186-3.0239.4196-3.0239,3.0239.4186,3.025.4196-.2112,1.4828-.2103,1.4819-2.2855-.312-2.2855-.312-.0069.0484-.007.0484,2.2904.3179,2.2894.3169-.2063,1.4878-.2063,1.4888-2.2806-.3169-2.2795-.3159-.0069.0484-.007.0484,2.2805.3159,2.2805.3159-.2063,1.4888-.2063,1.4878-3.0239-.4196-3.0249-.4186.076-.5509.077-.5509-.0484-.0069-.0474-.0059-.0839.5637-.0839.5647-.155,1.1649-.156,1.1649.0474.0069.0474.0069.1569-1.1304.157-1.1314,3.018.4235,3.019.4235-.4136,3.02-.4137,3.02-3.0239-.4186-3.0249-.4196.156-1.1205.155-1.1205-.0484-.0069-.0483-.0069-.156,1.1255-.157,1.1255-.6387,4.6144-.6387,4.6134-1.4878-.2063-1.4887-.2063.4265-3.0723.4255-3.0723-.5992-.0829-.5992-.0839-.0059.0484-.0069.0484.5508.077.5508.076-.4196,3.0239-.4196,3.0249-1.4878-.2063-1.4878-.2063.4196-3.0239.4186-3.0249.5509.077.5509.076.0069-.0484.006-.0484-.5499-.077-.5509-.076-1.5944-.2211-1.5944-.2211-.5509-.076-.5509-.076-.0059.0484-.0069.0484.5509.076.5499.077-.4186,3.0239-.4196,3.0239-1.4878-.2063-1.4878-.2063.4186-3.0239.4196-3.0239.5509.076.5509.076.006-.0464.0069-.0474-.5835-.0869-.5845-.0869-.5657-.0731-.5657-.0731-.0069.0474-.0069.0484.5509.076.5509.076-.4186,3.0249-.4196,3.0239-1.4878-.2063-1.4878-.2063.4186-3.0239.4196-3.0249.5509.077.5509.076.006-.0474.0069-.0474-.5756-.0859-.5746-.0849-.5746-.0741-.5756-.0741-.0059.0474-.0069.0474.5509.076.5509.077-.4235,3.019-.4235,3.018-1.4838-.2004-1.4838-.2004.4196-3.0249.4196-3.0239.5499.076.5509.077.0069-.0474.0069-.0474-.5756-.0859-.5746-.0859-.5756-.0731-.5746-.0741-.0059.0474-.0069.0474.541.075.541.075-.4196,3.0239-.4186,3.0239-1.4789-.2044-1.4779-.2054.4195-3.024-.0008-.0003ZM514.3943,477.4607l.0376-.2705-.2794-.0385-.2804-.0385-.0375.2705-.0375.2705.2804.0385.2794.0385.0375-.2705h-.0001Z"/>
|
||||||
|
<polygon class="st20" points="517.4756 479.4079 517.6799 477.93 520.7048 478.3486 523.7288 478.7682 523.5234 480.2461 523.3191 481.725 520.2941 481.3054 517.2703 480.8858 517.4756 479.4079"/>
|
||||||
|
<polygon class="st20" points="512.0754 450.4452 512.2817 448.9575 515.3057 449.377 518.3295 449.7956 518.1232 451.2844 517.9169 452.7722 514.893 452.3526 511.8691 451.934 512.0754 450.4452"/>
|
||||||
|
<polygon class="st20" points="499.6608 472.2317 500.0794 469.2078 501.5583 469.4121 503.0362 469.6175 502.6176 472.6414 502.1981 475.6653 500.7202 475.4609 499.2413 475.2556 499.6608 472.2317"/>
|
||||||
|
<polygon class="st24" points="469.4449 441.5536 468.791 440.6941 468.8898 439.9658 468.9887 439.2374 470.7458 439.4781 473.0023 439.7845 472.8006 441.2696 472.5989 442.7546 471.0992 442.551 470.0988 442.4131 469.4449 441.5536"/>
|
||||||
|
<polygon class="st24" points="464.0987 436.2387 464.3611 434.3102 464.3131 434.3033 464.2651 434.2975 464.1858 434.8408 464.1065 435.385 461.0924 434.9808 458.0782 434.5774 458.2799 433.0924 458.4815 431.6064 461.4996 432.0166 464.5186 432.4258 464.4433 432.9759 464.3689 433.5251 464.4178 433.532 464.4658 433.5388 464.6215 432.3915 464.7771 431.2432 464.7291 431.2373 464.6802 431.2305 464.6077 431.7708 464.5343 432.3102 461.5153 431.901 458.4972 431.4909 458.6979 430.0156 458.8976 428.5404 461.9166 428.9496 464.9347 429.3597 464.8603 429.9089 464.7849 430.4591 464.8339 430.465 464.8818 430.4718 464.9562 429.9226 465.0306 429.3725 465.5808 429.4469 465.8878 429.4871 465.9342 429.1735 466.562 429.2615 467.2173 429.3485 467.1709 429.6621 467.4515 429.7014 468.0007 429.7758 467.9263 430.325 467.852 430.8751 467.8999 430.882 467.9489 430.8879 468.0233 430.3387 468.0976 429.7885 471.1157 430.1987 474.1347 430.6079 473.9341 432.0841 473.7344 433.5593 470.7153 433.1492 467.6973 432.74 467.7707 432.1996 467.8441 431.6592 467.7952 431.6533 467.7472 431.6465 467.5916 432.7938 467.4359 433.9421 467.4839 433.948 467.5319 433.9548 467.6072 433.4047 467.6816 432.8555 470.6997 433.2647 473.7177 433.6748 473.5171 435.1599 473.3154 436.6449 470.3023 436.2308 467.2891 435.8177 467.3576 435.2715 467.4272 434.7262 467.3792 434.7194 467.3312 434.7135 467.0688 436.642 466.8075 438.5705 465.3224 438.3688 463.8374 438.1672 464.0987 436.2387"/>
|
||||||
|
<polygon class="st24" points="459.9118 467.0878 460.1957 464.9949 460.1477 464.989 460.0998 464.9821 460.0254 465.5323 459.95 466.0815 456.9319 465.6723 453.9139 465.2621 454.1136 463.7869 454.3143 462.3117 457.3323 462.7208 460.3514 463.131 460.2779 463.6704 460.2045 464.2108 460.2525 464.2176 460.3005 464.2235 460.5902 462.0924 460.879 459.9612 457.813 459.5452 454.746 459.1292 455.1562 456.1111 455.5654 453.092 458.6324 453.5081 461.6984 453.9251 461.7797 453.327 461.8609 452.7289 461.8129 452.722 461.765 452.7161 461.6896 453.2653 461.6152 453.8155 458.5971 453.4053 455.5781 452.9961 455.7797 451.5111 455.9814 450.026 458.2574 450.3344 460.5334 450.6438 460.5403 450.5948 460.5462 450.5468 458.2701 450.2385 455.9951 449.9291 456.1967 448.4441 456.3974 446.959 458.6696 447.2625 460.9417 447.566 460.9475 447.518 460.9544 447.4691 458.6842 447.1568 456.4131 446.8435 456.6138 445.3712 456.8135 443.8989 459.8169 444.2924 462.8212 444.686 462.8349 444.7046 462.8496 444.7232 462.4365 447.7305 462.0234 450.7377 461.67 450.6957 461.3176 450.6526 461.3117 450.7006 461.3049 450.7485 461.6612 450.7965 462.0185 450.8454 461.9442 451.3946 461.8688 451.9448 461.9177 451.9507 461.9657 451.9575 462.464 448.2836 462.9632 444.6097 461.7386 444.4432 460.5139 444.2768 460.6167 443.5152 460.7205 442.7536 460.5619 442.7291 460.4023 442.7056 459.4821 442.5803 458.5609 442.455 458.6588 441.7335 458.7567 441.0131 461.0612 441.3253 463.3666 441.6386 463.4478 441.0405 463.5291 440.4424 463.4801 440.4365 463.4322 440.4296 463.3578 440.9798 463.2834 441.529 460.2643 441.1198 457.2463 440.7096 457.4479 439.2246 457.6496 437.7395 460.6677 438.1497 463.6857 438.5589 463.6113 439.1091 463.5369 439.6583 463.5849 439.6651 463.6329 439.671 463.722 439.0161 463.8111 438.3602 465.2961 438.5618 466.7812 438.7625 466.7674 438.8692 466.7527 438.9749 466.8585 438.9896 466.9652 439.0043 466.9427 439.1688 466.9201 439.3342 467.0121 439.3401 467.1051 439.347 467.1326 439.1884 467.159 439.0308 467.718 439.1062 468.7753 439.2472 468.6735 440.0039 468.5707 440.7597 469.2511 441.6427 469.9314 442.5267 470.9514 442.6675 472.4697 442.8741 472.4218 443.2314 472.3728 443.5877 472.6757 443.6272 472.4662 445.17 472.1633 445.1305 472.1154 445.4878 472.0664 445.8442 469.2021 445.4555 466.3387 445.0669 466.6197 442.9935 466.9016 440.9201 466.8047 440.9074 466.7087 440.8937 466.4268 442.9671 466.1459 445.0405 466.0392 445.0267 465.9334 445.0121 465.8522 445.6102 465.7709 446.2073 465.8189 446.2141 465.8678 446.221 465.9422 445.6708 466.0166 445.1216 469.0347 445.5308 472.0537 445.941 471.8521 447.426 471.6504 448.9111 468.6323 448.5009 465.6133 448.0917 465.6887 447.5415 465.7631 446.9924 465.7141 446.9855 465.6661 446.9787 465.5095 448.1368 465.3519 449.2939 465.4008 449.2998 465.4488 449.3066 465.5232 448.7574 465.5976 448.2072 468.6166 448.6174 471.6347 449.0266 471.434 450.5019 471.2343 451.9771 468.2152 451.5679 465.1972 451.1577 465.2706 450.6183 465.3441 450.078 465.2961 450.0711 465.2471 450.0652 465.0915 451.2125 464.9359 452.3599 464.9838 452.3667 465.0328 452.3735 465.1071 451.8234 465.1815 451.2742 468.1996 451.6834 471.2187 452.0936 471.017 453.5786 470.8153 455.0636 467.8022 454.6495 464.789 454.2354 464.8585 453.6902 464.9271 453.1449 464.8791 453.1381 464.8311 453.1312 464.5971 454.8581 464.3632 456.5839 464.4111 456.5908 464.4591 456.5966 464.6118 455.4689 464.7655 454.3402 467.7836 454.7504 470.8026 455.1596 470.3925 458.1786 469.9833 461.1967 466.9642 460.7865 463.9462 460.3773 464.0989 459.2486 464.2526 458.1208 464.2046 458.114 464.1557 458.1071 463.7132 461.367 463.2707 464.6268 463.3197 464.6327 463.3676 464.6395 463.4411 464.0992 463.5145 463.5598 466.5326 463.969 469.5506 464.3792 469.3509 465.8544 469.1502 467.3296 466.1322 466.9204 463.1141 466.5103 463.1885 465.9611 463.2629 465.4109 463.2149 465.4041 463.166 465.3982 463.0093 466.5553 462.8527 467.7124 462.9007 467.7192 462.9487 467.7251 463.0231 467.1759 463.0984 466.6258 466.1165 467.0359 469.1346 467.4451 468.9348 468.9204 468.7342 470.3966 465.7161 469.9864 462.6971 469.5772 462.7705 469.0369 462.8439 468.4965 462.796 468.4906 462.748 468.4838 462.6726 469.033 462.6011 469.5635 461.1161 469.3619 459.6311 469.1602 459.9118 467.0878"/>
|
||||||
|
<polygon class="st20" points="467.1805 437.3842 467.3822 435.8992 470.4002 436.3084 473.4183 436.7185 473.2166 438.2036 473.015 439.6886 469.9969 439.2784 466.9789 438.8692 467.1805 437.3842"/>
|
||||||
|
<polygon class="st20" points="457.9805 436.1351 458.1822 434.65 461.2002 435.0592 464.2193 435.4694 464.0176 436.9545 463.816 438.4395 460.7969 438.0303 457.7789 437.6201 457.9805 436.1351"/>
|
||||||
|
<polygon class="st20" points="463.8482 461.9359 464.0489 460.4508 467.0679 460.86 470.086 461.2702 469.8844 462.7552 469.6827 464.2403 466.6646 463.8301 463.6466 463.4209 463.8482 461.9359"/>
|
||||||
|
<polygon class="st20" points="454.6482 460.6867 454.8499 459.2017 457.862 459.6158 460.8752 460.0299 460.6794 461.511 460.4836 462.9921 457.4645 462.582 454.4465 462.1728 454.6482 460.6867"/>
|
||||||
|
<polygon class="st24" points="604.354 159.813 604.184 158.6281 604.106 158.6441 603.7221 158.7188 603.4813 157.4738 603.8652 157.3981 603.9432 157.3831 603.9105 157.2036 606.4432 156.6899 609.9141 155.9509 609.5131 154.0099 609.1121 152.0689 609.0401 152.0739 608.9671 152.0779 609.3471 153.9519 609.7261 155.8259 606.3332 156.5499 603.8785 157.0477 602.734 151.4672 601.808 146.8972 602.1247 146.8314 603.1417 146.6124 603.2967 147.3774 603.4507 148.1414 603.5137 148.1284 603.5757 148.1165 603.4207 147.3514 603.2667 146.5875 603.9056 146.4575 604.5457 146.3284 604.7007 147.0925 604.8547 147.8575 604.9327 147.8414 605.0107 147.8254 604.8567 147.0614 604.7017 146.2964 605.2917 146.1774 605.8817 146.0574 605.9277 146.0284 605.9727 145.9994 606.1317 146.7834 606.2907 147.5664 606.3687 147.5504 606.4467 147.5344 606.2917 146.7704 606.1367 146.0064 606.7767 145.8764 607.6556 145.7234 607.9876 147.3614 608.4876 149.7433 605.7307 150.2903 603.6227 150.7163 603.6467 150.7853 603.6717 150.8533 605.7707 150.4363 608.5186 149.8993 608.5766 150.1823 608.6336 150.4653 608.7016 150.4403 608.7696 150.4163 607.6726 145.0864 606.7446 140.5004 605.1816 140.7964 604.2676 140.9734 603.9578 139.4356 601.8047 139.8716 601.5125 138.3405 609.1517 136.7449 610.8506 144.7114 610.9286 144.6954 611.0067 144.6794 610.5607 142.4803 610.3317 141.2403 613.5176 140.5913 615.8981 140.0966 616.3921 142.6466 617.1616 146.537 614.7812 147.0317 611.5952 147.6807 611.5042 147.2287 611.4122 146.7757 611.3342 146.7917 611.2562 146.8077 611.6483 148.7418 612.0403 150.6768 614.1182 150.2518 615.7402 149.9228 615.7252 149.8448 615.7092 149.7668 614.1642 150.0798 612.1642 150.4888 611.8953 149.1628 611.6273 147.8367 614.8132 147.1877 617.1937 146.693 617.4617 148.019 617.7307 149.345 617.4026 149.412 617.0756 149.478 617.0906 149.556 617.1066 149.634 617.4337 149.5681 617.7607 149.502 617.8467 149.882 618.0497 150.7605 618.1218 150.7555 618.4477 150.6773 618.7772 152.2914 618.4453 152.3817 618.3672 152.3966 618.4302 152.7086 618.6981 154.1033 616.2396 154.614 612.9196 155.3001 613.2136 156.7501 613.5076 158.2011 613.5856 158.1851 613.6636 158.1701 613.3856 156.7971 613.1075 155.4241 616.3496 154.754 618.73 154.2593 619.0592 155.8137 619.4761 158.2156 617.0967 158.7103 613.8556 159.3793 613.7525 158.9335 613.6795 158.9385 613.6075 158.9425 613.6976 159.4113 609.5709 160.235 604.6419 161.233 604.354 159.813"/>
|
||||||
|
<path class="st24" d="M75.2464,165.1834l-1.6519,15.157,11.5821,1.238,6.8642.7637-.0293.276,2.0083.1892.0293-.275,2.7114.2841,1.6519-15.1559-5.8511-.6498.0234-.223-2.0503-.2404-.0235.222-15.2645-1.5858h0ZM77.6028,167.048l3.3976.356-.1551,1.4506-3.3976-.356.1551-1.4506ZM89.0947,174.9057l3.1945.3521-.2843,2.8462-3.1945-.3521.2843-2.8463h0Z"/>
|
||||||
|
<path class="st24" d="M119.2035,190.497l-.106-.014-.105-.013.1764-1.4318.105.014.106.013,2.47-19.5656,41.4468,5.1566-.6126,5.5143.117.032.116.031-.7404,5.9527-.133-.017-.132-.017-1.0356,8.0733.116.032.117.032-.1494,1.3617-.132-.017-.132-.016-.2627,1.9648-34.959-4.3687.126-1.002.126-1.001-.131-.017-.132-.016-.127,1.001-.126,1.002-6.2467-.7849.2403-1.8995h-.0001ZM134.3083,184.793l.379-3.005-1.449-.183-1.45-.183-.156,1.239-.157,1.239.211.026.211.027-.223,1.766-.0794.6242,1.239.156,1.239.157.2354-1.8632h0ZM148.1361,186.6992l.38-3.005-1.45-.183-1.45-.183-.156,1.239-.156,1.239.21.026.211.027-.223,1.766-.0623.505,1.238.156,1.239.157.2193-1.744ZM122.8417,186.0548l.173-1.371,1.397.177,1.397.176.02-.158.02-.158-1.529-.193-1.529-.193-.193,1.529-.193,1.528.132.017.132.017.173-1.371Z"/>
|
||||||
|
<path class="st24" d="M577.3917,214.5684l-.834-4.009-.132.028-.132.027-.268-1.291-.1718-.7858.132-.027.132-.028-.1252-.6362-.027-.132,8.905-1.853,8.905-1.853.818,3.93,1.0848,5.3161.132-.028.132-.027.0493.1379.263,1.264-.132.028-.131.027.049.237.049.237-1.66.346-1.4092.2777-.3831-1.8122-3.0035.6249.3826,1.8315-5.9938,1.243-5.743,1.195-.8883-4.268h0ZM589.3248,210.7567l-.269-1.294-3.136.652-3.135.652.269,1.295.324,1.555,3.135-.653,3.135-.652-.323-1.555h0Z"/>
|
||||||
|
<path class="st24" d="M329.3481,220.0659l3.6211-24.346-13.0439-1.9556.089-.616-1.9265-.2874-.082.5914-37.2647-5.5253-4.3757,29.1992,5.7692.8575-.0198.1332-.0703.3091,6.2792.9066.085-.2943.0355-.1164,18.1631,2.7214.8829-5.6788.3445.0522.3444.0513-.0187.1293-.0393.1685-.383-.0658-.8672,5.3837,6.3835.9706.8425-5.4133-4.1373-.6218.0207-.1332.0197-.1321,4.4028.6612-.884,5.6797,3.7084.541-.0197.1332-.0578.3525,5.8707.9195.0587-.3535.0197-.1322,5.5145.8202.4229-3.0186.5849.1035.2828-1.8961-.5558-.0983h0ZM280.1478,213.1824l-1.3658-.2059.3964-2.5634,1.3525.1979-.3831,2.5713h0Z"/>
|
||||||
|
<polygon class="st24" points="215.3723 259.2845 215.3954 259.1308 212.6234 258.6612 206.8353 257.7671 207.3697 254.3065 207.7837 251.7228 207.63 251.6987 207.4773 251.6756 207.9664 248.4089 208.2834 246.2437 208.4371 246.2678 208.5898 246.2909 210.8594 231.7045 213.2494 216.1544 213.0967 216.1303 212.943 216.1072 213.7863 210.6902 213.939 210.7143 214.0917 210.7384 214.1124 210.6336 237.6231 214.2764 237.344 216.0849 236.6583 220.4648 236.812 220.4889 236.9647 220.512 236.1363 226.0196 235.9836 225.9965 235.8309 225.9724 234.7937 232.2717 234.9464 232.2959 235.1001 232.3189 234.2905 237.8034 234.1378 237.7793 233.9862 237.7562 233.6039 239.9854 231.4733 239.673 229.3427 239.3606 229.0253 241.4119 228.7088 243.4631 228.8927 243.4912 229.0765 243.5193 229.3698 241.6207 229.6631 239.7222 231.623 240.0246 233.5828 240.3269 233.083 243.9238 233.2367 243.9479 233.3894 243.971 232.5233 249.4572 232.3706 249.4331 232.2179 249.41 231.3479 254.919 230.3403 261.4424 228.7893 261.2106 227.0124 260.9423 226.9883 261.095 226.9652 261.2477 221.6553 260.4198 215.3482 259.4371 215.3723 259.2845"/>
|
||||||
|
<polygon class="st24" points="890.9337 273.0384 890.8897 273.0274 889.9177 270.8084 888.9447 268.5904 891.8407 267.3214 894.7367 266.0514 895.7197 268.2954 896.7037 270.5384 893.8397 271.7934 890.9767 273.0484 890.9337 273.0384"/>
|
||||||
|
<polygon class="st24" points="902.8843 211.5172 902.8863 211.4445 899.2685 211.3431 891.3802 211.1213 891.6528 201.3928 891.9122 192.2755 894.3513 192.3441 896.7913 192.4117 896.8287 190.8411 895.0472 190.7915 895.0806 189.3524 893.5328 189.3085 891.984 189.2657 892.0376 187.4348 892.0486 186.7703 891.8278 186.7475 891.974 181.552 892.2097 181.556 892.6315 166.5247 893.0423 151.8842 907.8647 152.308 916.8947 152.5785 916.069 181.9867 915.2325 211.7859 911.2897 211.6735 907.6479 211.5789 907.6459 211.6516 907.6439 211.7629 905.2635 211.6964 902.8821 211.6298 902.8843 211.5172"/>
|
||||||
|
<path class="st24" d="M497.4518,144.5452l-12.0059,2.1895,1.6973,9.3105-6.1445,1.1191-1.7578-9.6426-1.8359.334,1.7656,9.6875-2.1543.3926-1.7148-9.4082-.459.084,3.2578,17.875-.8047.1523,1.1191,5.9375.7695-.1445,3.1738,17.4023-.8027.127.9473,5.9375.9336-.1484,2.1211,11.6367,11.0566-2.0156-2.1367-11.7207.6523-.1191,1.0977,6.0215,2.0293-.3711.1055.584-2.0488.373.9492,5.207,11.0254-2.0098-.9492-5.209-7.6973,1.4023-.1016-.5605,7.5078-1.3691-1.1094-6.0801,1.1152-.2031-1.0293-5.6484-.9297.1699-2.1426-11.75.8906-.1816-1.082-5.9355-.9395.1914-.3902-2.0545-7.3887,1.3457-1.0825-6.0236.5352-.0977.9887,5.5138,3.4336-.627-.3167-1.7885,1.7012-.3105-.2969-1.623,1.7324-.3145.6136,3.4115-1.5239-8.4552-6.8711,1.252.2578,1.4121-.4883.0879-.25-1.3672-.8809.1621-.1465-.7969,8.1641-1.4883-2.1602-11.8555h.0003ZM488.6979,158.0334l5.3789,29.9902-6.4219,1.1523-.4395-2.4551.7188-.1289.3477,1.9473,4.6699-.8379-2.0078-11.1895-4.7969.8613,1.2988,7.2422-.5918.1055-1.4121-7.873,5.3926-.9668-3.168-17.6621,1.0312-.1855h.0002,0Z"/>
|
||||||
|
<polygon class="st24" points="874.0208 120.2894 873.9847 120.2624 873.9448 117.8414 873.9037 115.4194 877.0648 115.3664 880.2267 115.3134 880.2678 117.7624 880.3088 120.2114 877.1828 120.2634 874.0568 120.3164 874.0208 120.2894"/>
|
||||||
|
<path class="st24" d="M617.3652,281.9511l-.3535,4.6875-.3555,4.6875-1.0684-.0801-2.1719-.166-.2969,3.9258-.2969,3.9258-.0352.4746-.0371.4746,2.4883.1895,1.3477.1016.0215-.2871.0215-.2871.8906.0664.8926.0684-.0234.2871-.0215.2891,3.1641.2383,3.752.2773.0234-.3145.0234-.3184.2891.0234.2871.0215.0977-1.2852.0977-1.2852.1895-2.5098.1895-2.5137-.3262-.0234-.248-.0195.0664-.8906.0684-.8926.2441.0195.3301.0254.2246-2.9766.2266-2.9766.0625-.8203.0625-.8203-.3809-.0293-.1953-.0137.0215-.2891.0215-.2871-3.752-.2773-3.1621-.2402-.0234.2871-.0215.2871-.8906-.0664-.8926-.0684.0234-.2871.0195-.2871-.2949-.0234-.2988-.0215h-.0002ZM618.168,291.955l3.5098.2324-.3145,4.7441-3.5098-.2324.3145-4.7441Z"/>
|
||||||
|
<path class="st24" d="M843.3557,297.9704c2.052.117,4.103.233,6.154.35.107-1.876.214-3.751.321-5.627-2.052-.116-4.103-.233-6.155-.35-.106,1.876-.213,3.752-.32,5.627h0Z"/>
|
||||||
|
<rect class="st24" x="944.461" y="134.6214" width="3.9273" height="5.3278" transform="translate(773.3197 1077.8179) rotate(-87.825)"/>
|
||||||
|
<rect class="st24" x="959.8394" y="131.336" width="3.2534" height="6.5069" transform="translate(793.7144 1090.8273) rotate(-88.0186)"/>
|
||||||
|
<rect class="st24" x="958.0023" y="183.9957" width="3.2373" height="6.5432" transform="translate(745.0014 1141.1435) rotate(-88.3621)"/>
|
||||||
|
<polygon class="st24" points="972.0847 150.0504 965.5077 149.8634 965.6247 146.4214 972.2007 146.6454 972.0847 150.0504"/>
|
||||||
|
<rect class="st24" x="983.3018" y="127.5233" width="3.6499" height="6.6556" transform="translate(826.6508 1111.9128) rotate(-88.3901)"/>
|
||||||
|
<rect class="st24" x="982.6918" y="158.6528" width="3.581" height="6.6928" transform="translate(789.619 1140.507) rotate(-88.0817)"/>
|
||||||
|
<rect class="st24" x="1005.7824" y="136.8864" width="3.4011" height="5.2733" transform="translate(832.3211 1141.4247) rotate(-87.9678)"/>
|
||||||
|
<rect class="st24" x="981.8544" y="184.6699" width="3.3278" height="6.5802" transform="translate(767.8357 1165.773) rotate(-88.3804)"/>
|
||||||
|
<rect class="st24" x="989.3756" y="189.8026" width="3.5132" height="6.6207" transform="translate(758.9461 1175.8262) rotate(-87.7319)"/>
|
||||||
|
<polygon class="st24" points="947.3798 189.0862 942.1068 188.8723 941.9838 192.5372 947.2558 192.7522 947.3798 189.0862"/>
|
||||||
|
<polygon class="st24" points="946.5708 211.2892 941.2138 211.1273 941.1188 214.5223 946.4768 214.6843 946.5708 211.2892"/>
|
||||||
|
<path class="st24" d="M948.8068,121.7934c.767.057,1.534.114,2.301.172.145-1.927.29-3.853.436-5.78-.767-.057-1.533-.114-2.299-.172-.146,1.927-.292,3.853-.438,5.78Z"/>
|
||||||
|
<path class="st24" d="M943.9927,73.0059l1.974,1.2012c.988-1.6237,1.976-3.2474,2.963-4.8711-.657-.4004-1.315-.8008-1.972-1.2011-.989,1.6237-1.977,3.2474-2.965,4.871Z"/>
|
||||||
|
<path class="st24" d="M941.6038,240.8754c1.129.735,2.258,1.471,3.387,2.207,1.297-1.991,2.594-3.982,3.89-5.973-1.128-.736-2.257-1.471-3.386-2.207l-3.8911,5.973h0Z"/>
|
||||||
|
<path class="st24" d="M812.0507,305.0744c2.052.072,4.103.144,6.155.217.065-1.87.131-3.74.197-5.61-2.051-.072-4.103-.144-6.154-.216-.066,1.869-.132,3.739-.198,5.609h0Z"/>
|
||||||
|
<path class="st24" d="M671.6803,280.1487c.7064.3053,1.4128.6107,2.1191.916.7617-1.7604,1.5234-3.5208,2.2852-5.2812-.7057-.3053-1.4114-.6107-2.1172-.916-.7624,1.7604-1.5247,3.5208-2.2871,5.2812Z"/>
|
||||||
|
<rect class="st20" x="490.8903" y="312.6395" width="2.28" height="5.7637" transform="translate(108.6306 756.7154) rotate(-81.6798)"/>
|
||||||
|
<path class="st20" d="M114.9242,301.5209c-1.0126,1.1943-2.024,2.3894-3.0371,3.584,1.918,1.626,3.8359,3.2519,5.7539,4.8789,1.0134-1.1949,2.0262-2.3891,3.0391-3.584l-5.7559-4.8789Z"/>
|
||||||
|
<path class="st20" d="M325.8267,255.4514c.78.111,1.56.221,2.34.332.273-1.922.546-3.844.82-5.766-.781-.11-1.561-.221-2.342-.332-.273,1.922-.545,3.844-.818,5.766Z"/>
|
||||||
|
<path class="st20" d="M333.7677,293.7154c1.834.255,3.667.51,5.5.765.282-2.029.564-4.058.846-6.088-1.833-.255-3.665-.51-5.498-.765-.283,2.029-.565,4.058-.848,6.088h0Z"/>
|
||||||
|
<path class="st20" d="M939.1467,85.4259c.77.082,1.54.164,2.311.2461.204-1.9213.408-3.8425.613-5.7637-.77-.082-1.54-.1641-2.311-.2461-.204,1.9212-.408,3.8424-.613,5.7637Z"/>
|
||||||
|
<path class="st20" d="M882.9708,100.0804c.784.044,1.568.088,2.352.133.109-1.9347.219-3.8689.328-5.8032l-2.352-.1347c-.109,1.9349-.218,3.8698-.328,5.8049Z"/>
|
||||||
|
<path class="st24" d="M417.8175,255.815l1.8-8.5,7.2,1.5.9832-4.3818,5.3069,1.1579,1.9102-8.899,5.2718,1.2166,2.228-10.3936-10.4-2.1.0895-.451c.2,0-3.0118-.6336-3.0118-.6336l-.0777.3846c-.1,0-3.9-.8-3.9-.8l-4.2,19.3-.5-.1,4.2-19.3-4.3-.9.0671-.4337-4.2874-.908-.0797.4417-3.8-.8-6.9,32,2.4.5,4.5177-.8839.0823.3839-4.6.9-2.4-.5-3.1,14.7,3.875.8158-.075.2842,2.3.5.0645-.2863,6.0356,1.2863,1.5569-6.9877.3115.0671-1.5685,7.0206-4.7827,22.7897,2.3999.5198-.065.3426,1.3116.2778.0523-.3221,1.094.2384.3466-1.5336,4.4433.9874-.3,1.5,8.4943,1.7574,4.0179-18.6286-1.8404-.4375.2677-1.2673-3.6577-.7458.3875-1.6633,5.4684,1.1718,2.8622-13.5867-17.8-3.8-.8115,3.956-.2885-.056.8-3.9.5-2.4-5.4-1.2.0694-.3846,5.3306,1.1846h.1ZM416.5175,288.815c-5.2,0-5.1-8,0-8s5.1,8,0,8ZM421.0175,266.215c3.2,0,3.2,5,0,5s-3.2-5,0-5ZM419.3175,272.015c5.2,0,5.1,8,0,8s-5.1-8,0-8Z"/>
|
||||||
|
<polygon class="st24" points="435.9321 295.8449 435.6628 297.1167 432.341 296.3885 432.6194 295.1187 432.4263 295.075 432.4733 294.8664 430.9119 294.5273 437.7906 262.6189 435.7125 262.1788 428.125 298.004 441.8351 300.9077 442.6156 297.3554 435.9321 295.8449 435.9321 295.8449"/>
|
||||||
|
<path class="st24" d="M438.6903,265.6636l-1.2718-.2713-5.6562,26.3984,1.2985.276.2263-.9901,3.2189.7152-.8755,3.8035,3.2178.6973.8361-3.8444,3.4531.7661,6.199-27.8347-10.1375-2.1084-.5085,2.3924h-.0002,0ZM439.2375,289.4986c-1.4661,0-3.2-1.1356-3.2-3.2,0-1.5829,1.1872-3.2,3.2467-3.2,1.9467,0,3.1533,1.6325,3.1533,3.2,0,1.446-1.0901,3.2-3.2,3.2h0ZM440.9375,280.9986c-2.1192,0-3.2-1.7226-3.2-3.2,0-1.8397,1.4586-3.2,3.2-3.2,2.0457,0,3.2,1.7473,3.2,3.2,0,1.4406-1.0806,3.2-3.2,3.2ZM442.8375,272.3986c-2.1856,0-3.2-1.8578-3.2-3.2,0-1.975,1.6226-3.2,3.2-3.2,1.7214,0,3.2,1.3909,3.2,3.2,0,1.9227-1.6261,3.2-3.2,3.2Z"/>
|
||||||
|
<path class="st24" d="M633.3039,235.2027l2.3018-.4855-.5923-2.5878-4.4666.9109.5803,2.6626,1.1445-.2568.1022.431-1.1531.2472.1149.5227-.4642.0933-.355-1.6374-4.3649.913.1253.5464-.4675.1067-.5712-2.546-4.5552.929.7014,3.4986-.3825.0881.3839,1.9062.3793-.0804.1047.5146,1.939-.4185.0851.4503-1.9338.4225,3.6891,18.5854-.3315.0623.2742,1.3616.3266-.0666.7654,3.8482,8.9345-1.828.0715.3573,2.3001-.4633-.0778-.3618,3.433-.6943-.5883-2.7427.3425-.0677.5803,2.7422,4.6616-.9507-.7937-3.9904-1.5211.3038-.9254-4.6874,1.5116-.3125-.5389-2.644-4.7894.9613,1.4852,7.0186-.3453.0757-1.5822-7.3766.53-.1115-.9106-4.3845,1.4691-.2783.9056,4.3648,3.1609-.649-2.0706-9.296.4967-.12.7451,3.2755,10.9778-2.2974,4.6635-.9759-.6683-3.0308,1.3848-.2894-1.8993-8.8953-3.3211.6695-.0759-.3358-1.6758.3375.0724.3369-8.2267,1.663.2821,1.2091-.4301.0945-.2769-1.2178-3.5365.7149,1.1938,5.3661,3.5493-.7928-.6462-2.8626.4255-.1061.7578,3.356-3.9783.8911.2086.9379-.4995.105-.2067-.9164-1.8976.4289-.1115-.4873,1.8974-.4356-.5983-2.702-7.1149,1.5181-.1135-.4456-.0002.0002h0ZM631.1793,238.1523l.4655-.1061.1732.8124,5.6837-1.1817.1035.4868-12.1472,2.5056-.097-.4724,1.2377-.2433-.4763-1.9748.475-.1125.4888,1.98,4.2637-.872-.1704-.8219h-.0001Z"/>
|
||||||
|
<polygon class="st24" points="570.0725 243.1454 569.506 240.6249 566.2497 241.3303 564.9505 235.3314 564.8966 235.0823 564.5146 233.3184 543.0674 237.8392 545.262 248.3564 554.6945 246.3753 554.798 246.8856 556.587 246.5134 556.4764 246.001 570.0725 243.1454"/>
|
||||||
|
<path class="st24" d="M577.7767,266.1354l29.2184-6.1588-1.1385-5.4014.6418-.1248-.397-1.9079-.6461.1291-1.2922-6.1302-.9592.2026-.1599-.657.9782-.2139-.1299-.6161.6651-.1341-.3919-1.8834-.6674.1473-1.3611-6.4577-8.3158,1.7642-.1137-.512,8.3249-1.7485-2.2245-10.5536-2.9855.6293-.123-.5547.6031-.1254-2.1005-10.2845-.328.0634-.0462-.2159-.7488.1512.044.2263-3.7527.7887,2.0198,10.2966.6605-.1391.1177.5637-6.952,1.4653,1.7944,8.2075-2.8415.6547.5098,2.2612,2.5771-.5413,3.2532-.6833.1.5197-17.0727,3.6153.3862,1.8429-4.3454.9276-.3932-1.8422-2.8256.6014,3.0038,14.2504-.5041.1025.3137,1.5077.5046-.1196.2448,1.149.7425-.1573.0826.3925-.7426.1623,1.2032,5.7144,5.0699-1.0687-.8739-4.1357.4564-.0981.9172,4.1285h.0001ZM597.438,239.871l1.6039,7.1567,1.9744-.4614.1531.6183-2.6358.6191-1.6894-7.8029.5938-.1299h0ZM591.4971,244.5895l.8859,4.1502-1.5963.3451-.8881-4.1606,1.5985-.3347h0ZM579.529,246.1441l.242,1.1799-2.4218.5311-.2546-1.1913,2.4344-.5196h0ZM576.0343,247.8551l.893,4.1834-1.5633.3475-.8958-4.1968,1.5662-.3341h-.0001ZM576.1412,260.9892l-.0949-.4521-3.1362.6562-.0987-.4081,3.5935-.7675.2012.8782-.4648.0934h0Z"/>
|
||||||
|
<polygon class="st24" points="523.6144 293.7885 505.9333 297.1078 506.102 298.0474 499.8962 299.1836 499.7304 298.2722 464.4268 304.8997 461.1808 287.1715 460.2745 282.2219 461.0979 282.0638 462.0033 287.0213 467.1285 286.0853 466.2248 281.137 495.6183 275.7753 495.4571 274.9083 501.1852 273.8595 501.3455 274.7306 519.518 271.4158 523.6144 293.7885"/>
|
||||||
|
<path class="st24" d="M587.493,236.6428l-1.2535-5.8128-4.6408.9832-.4189-2.0075-11.7091,2.4681.4202,2.0137-4.5797.9703,1.226,5.6395,3.2453-.6917.6376,2.8668,14.8234-3.1134-.605-2.6651,2.8544-.6511h0ZM568.6648,240.0034c-3.2226,0-3.2173-5,0-5,3.2226,0,3.2173,5,0,5ZM583.9311,231.8257c3.2225,0,3.2172,5,0,5-3.2226,0-3.2173-5,0-5Z"/>
|
||||||
|
<path class="st24" d="M85.0078,200.5544l-1.1802-.1621.1358-1.0413-2.0062-.2762-.142,1.0411-7.8743-1.0816c.4799,2.5485.0941,5.2888-1.1698,7.5214l-.0009.0064,3.622.4975-.1562,1.1381,2.1697.2988.1293-1.1425,5.6562.7769.0041-.0329c-.5956-2.5084-.3212-5.2509.8125-7.5435h0Z"/>
|
||||||
|
<path class="st24" d="M80.4291,227.6255l-1.1802-.1621.1358-1.0413-2.0062-.2762-.142,1.0411-7.8743-1.0816c.4799,2.5485.0941,5.2888-1.1698,7.5214l-.0009.0064,3.622.4975-.1562,1.1381,2.1697.2988.1293-1.1425,5.6562.7769.0041-.0329c-.5956-2.5084-.3212-5.2509.8125-7.5435h0Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 177 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg id="svg89" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1062.4827 535.174">
|
||||||
|
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.st0 {
|
||||||
|
fill: #70777f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st1 {
|
||||||
|
fill: gold;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<g id="Underground_Level">
|
||||||
|
<g id="Buildings-Under">
|
||||||
|
<path class="st0" d="M354.752,215.4883l-7.9141,52.8359,16.5957,2.4863,7.9141-52.8359-7.5039-1.125-.0371.2051-.1348.7676-.8086-.1035-.8047-.1055.1211-.7891.0332-.2188-7.4609-1.1172h0ZM361.127,223.707l.8008.1426.8008.1406-.1055.8086-.1035.8047-.7793-.1191-.7773-.1191-.0371-.0488-.0371-.0508.1191-.7793.1191-.7793h0ZM359.9414,231.4551l.8203.125.8203.125-.1211.7891-.1191.7871-.8203-.125-.8203-.127.1191-.7871.1211-.7871ZM358.7676,239.1289l.8008.1406.8008.1406-.1191.7891-.1211.7871-.8066-.1035-.8066-.1055.127-.8242.125-.8242h-.0002ZM357.582,246.877l.8223.125.8203.125-.1211.7871-.1211.7871-.8203-.125-.8184-.127.1191-.7871.1191-.7852h0ZM356.4375,254.5918l.7871.1191.7871.1211-.1191.7871-.1211.7871-.8086-.1035-.8086-.1055.1426-.8027.1406-.8027h0ZM355.2266,262.293l.8008.1406.8008.1406-.0996.7734-.0996.7734-.8223-.125-.8223-.125.1211-.791.1211-.7871h0Z"/>
|
||||||
|
<polygon class="st0" points="494.3737 147.129 491.61 147.631 493.5104 158.1075 494.1042 158.0001 494.1433 158.2111 489.1571 159.1367 488.5516 159.2461 488.7098 160.1152 488.5145 160.1504 485.6522 146.0196 474.8224 147.9091 478.376 165.6818 489.2116 163.7883 488.8192 161.7891 489.0067 161.754 489.4588 163.8245 497.4764 162.3714 497.5155 162.5882 497.0389 162.6741 497.1561 163.3284 500.4056 162.7473 500.2865 162.0949 499.8353 162.1769 499.7962 161.9582 500.2396 161.8781 499.3344 157.2978 495.6237 157.9435 495.5846 157.7326 496.2741 157.6076 494.3737 147.129"/>
|
||||||
|
<polygon class="st0" points="384.38 126.0967 382.6086 126.5108 382.7336 127.044 383.0324 126.9737 383.0617 127.1006 382.7589 127.173 383.4471 130.088 385.9452 129.506 385.6112 128.0802 384.8905 128.2482 384.5344 126.757 384.2746 126.8174 384.2453 126.6905 384.5051 126.63 384.38 126.0967"/>
|
||||||
|
<polygon class="st0" points="64.9314 174.4359 62.8002 174.1437 62.5209 176.1813 65.3915 176.5749 65.3331 177.0013 76.9268 178.5908 77.3746 175.3249 65.7769 173.7349 65.667 174.5367 64.9314 174.4359"/>
|
||||||
|
<polygon class="st0" points="226.7966 189.608 224.3128 189.3052 224.0785 191.2271 227.1206 191.598 227.0647 192.0563 238.0613 193.3971 238.4243 190.4194 227.3985 189.0751 227.3257 189.6725 226.7966 189.608"/>
|
||||||
|
<path class="st0" d="M437.9261,263.0064l-6.1638,28.7842,1.2985.276.2263-.9901,3.2189.7152-.8755,3.8035,3.2178.6973.8361-3.8444,3.4531.7661,6.199-27.8347-11.4102-2.3732h-.0002ZM439.2375,289.4986c-1.4661,0-3.2-1.1356-3.2-3.2,0-1.5829,1.1872-3.2,3.2467-3.2,1.9467,0,3.1533,1.6325,3.1533,3.2,0,1.446-1.0901,3.2-3.2,3.2h0ZM440.9375,280.9986c-2.1192,0-3.2-1.7226-3.2-3.2,0-1.8397,1.4586-3.2,3.2-3.2,2.0457,0,3.2,1.7473,3.2,3.2,0,1.4406-1.0806,3.2-3.2,3.2ZM442.8375,272.3986c-2.1856,0-3.2-1.8578-3.2-3.2,0-1.975,1.6226-3.2,3.2-3.2,1.7214,0,3.2,1.3909,3.2,3.2,0,1.9227-1.6261,3.2-3.2,3.2Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Ladders-Under">
|
||||||
|
<polygon class="st1" points="494.6234 166.8569 501.0831 165.5949 500.4332 162.011 493.9735 163.273 494.6234 166.8569"/>
|
||||||
|
<polygon class="st1" points="63.7633 167.0565 65.8945 167.3487 64.9314 174.4359 62.8002 174.1437 63.7633 167.0565"/>
|
||||||
|
<polygon class="st1" points="225.1714 182.0033 227.6553 182.3062 226.7966 189.608 224.3128 189.3052 225.1714 182.0033"/>
|
||||||
|
<polygon class="st1" points="476.4949 156.7457 487.4383 154.6573 487.1226 152.917 476.1793 155.0053 476.4949 156.7457"/>
|
||||||
|
<path class="st1" d="M350.8889,260.0808c-.2402-2.2546,1.7984-2.9431,1.0307-7.362-.2507-1.4432,3.565-.6984,3.4124.4777-.2843,2.1919-1.0746,4.6949-1.0307,7.362.0207,1.2584-3.2715.8443-3.4124-.4777h0Z"/>
|
||||||
|
<path class="st1" d="M361.5405,217.9648c.8253.2404.9875,3.2268.2945,5.1534-.6978,1.9401-2.5346,1.3484-3.0736.1756-.9636-2.0964-1.1496-4.5839-.2945-5.1534.6623-.4411,1.5652-.6151,3.0736-.1756Z"/>
|
||||||
|
<rect class="st1" x="381.7506" y="120.3828" width="1.819" height="5.8841" transform="translate(-17.9911 89.9126) rotate(-13.0961)"/>
|
||||||
|
<rect class="st1" x="430.9017" y="292.4877" width="2.5" height="1.3275" transform="translate(55.5557 654.9087) rotate(-77.9998)"/>
|
||||||
|
<rect class="st1" x="437.2445" y="263.5564" width="2.1825" height="1.3" transform="translate(90.4009 639.5523) rotate(-78.2498)"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 227 KiB |
|
After Width: | Height: | Size: 137 KiB |
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 206 KiB |
|
After Width: | Height: | Size: 144 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
|
@ -0,0 +1,304 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Factory (TarkovDev)",
|
||||||
|
"Author": "Tarkov.dev",
|
||||||
|
"AuthorLink": "https://tarkov.dev",
|
||||||
|
"MapInternalNames": [ "factory4_day", "factory4_night" ],
|
||||||
|
"CoordinateRotation": 90,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -65, "y": -64.5},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Tunnels": {
|
||||||
|
"Level": -1,
|
||||||
|
"ImagePath": "Maps/Factory_TarkovDev/Layers/factory_layer_-1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -65, "y": -64.5},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -65, "y": -64.5, "z": -100},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2, "z": -1}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Ground Floor": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Factory_TarkovDev/Layers/factory_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -65, "y": -64.5},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -65, "y": -64.5, "z": -1},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2, "z": 3}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"2nd Floor": {
|
||||||
|
"Level": 1,
|
||||||
|
"ImagePath": "Maps/Factory_TarkovDev/Layers/factory_layer_1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -65, "y": -64.5},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -65, "y": -64.5, "z": 3},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2, "z": 6}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"3rd Floor": {
|
||||||
|
"Level": 2,
|
||||||
|
"ImagePath": "Maps/Factory_TarkovDev/Layers/factory_layer_2.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -65, "y": -64.5},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -65, "y": -64.5, "z": 6},
|
||||||
|
"Max": {"x": 77.6, "y": 67.2, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
{
|
||||||
|
"Text": "Pit",
|
||||||
|
"Position": {"x": 0, "y": 17, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Underground Stash",
|
||||||
|
"Position": {"x": -2, "y": -22, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Boilers",
|
||||||
|
"Position": {"x": 56, "y": 6, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Pumping Station",
|
||||||
|
"Position": {"x": 42, "y": -12, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Glass Hall",
|
||||||
|
"Position": {"x": 70, "y": -15, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Forklifts",
|
||||||
|
"Position": {"x": 66, "y": -41, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Halls",
|
||||||
|
"Position": {"x": 45, "y": -40, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Heli Crash",
|
||||||
|
"Position": {"x": 33, "y": -6, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Rafters",
|
||||||
|
"Position": {"x": 19, "y": 6, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Silos",
|
||||||
|
"Position": {"x": 5, "y": 11, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Connector",
|
||||||
|
"Position": {"x": 30, "y": 18, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sky Bridge",
|
||||||
|
"Position": {"x": 35, "y": 28, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "North Stairs",
|
||||||
|
"Position": {"x": 36.5, "y": 38, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Locked Office",
|
||||||
|
"Position": {"x": 30, "y": 40, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Breach Room",
|
||||||
|
"Position": {"x": 24, "y": 40, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Main Office",
|
||||||
|
"Position": {"x": 16, "y": 40, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "South Stairs",
|
||||||
|
"Position": {"x": 9, "y": 40, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Platform",
|
||||||
|
"Position": {"x": -2, "y": 36, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Blue Containers",
|
||||||
|
"Position": {"x": -17, "y": 50, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Wood Room",
|
||||||
|
"Position": {"x": -45, "y": 61, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Bunker",
|
||||||
|
"Position": {"x": -20, "y": 23, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Med Tent",
|
||||||
|
"Position": {"x": -18, "y": -28, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Camera Bunker Door",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -15.71578, "y": 40.1081123, "z": -1.64766669 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Office Window",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 17.8332214, "y": 39.8851128, "z": 8.730333 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cellars",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 73.89422, "y": -29.0818882, "z": -3.2876668 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gate 3",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 58.43222, "y": 63.29811, "z": 3.17233324 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gate 0",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -63.66578, "y": 55.8781128, "z": 2.85233331 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Med Tent Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -17.5257778, "y": -61.27189, "z": 1.99233329 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Courtyard Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 23.7642212, "y": 68.93811, "z": 1.3623333 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Woods",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 23.7, "y": 61.61, "z": 0.84 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Customs",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 18.51, "y": -48.33, "z": -0.423 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to The Lab",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": -26.539, "y": -42.013, "z": -4.085 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Smugglers' Passage (Secret)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 48.026, "y": -28.8580017, "z": -1.61300015 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Locked Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 29.1163082, "y": 36.51697, "z": 9.08 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"AssociatedItemId": "5448ba0b4bdc2d02308b456c",
|
||||||
|
"Color": { "r": 1, "g": 0.921569, "b": 0.015686275, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Med Tent",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -19.077774, "y": -48.57139, "z": 1.44520187 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"AssociatedItemId": "5448ba0b4bdc2d02308b456c",
|
||||||
|
"Color": { "r": 1, "g": 0.921569, "b": 0.015686275, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cellars",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 66.8279953, "y": -29.3244076, "z": -1.60700011 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"AssociatedItemId": "5448ba0b4bdc2d02308b456c",
|
||||||
|
"Color": { "r": 1, "g": 0.921569, "b": 0.015686275, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Terraroup Storage Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -20.4309616, "y": 44.06125, "z": -1.51576364 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"AssociatedItemId": "66acd6702b17692df20144c0",
|
||||||
|
"Color": { "r": 1, "g": 0.921569, "b": 0.015686275, "a": 1.0 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,115 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg176" width="130.81831" height="141.23242" version="1.1" viewBox="0 0 130.81831 141.23242">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<style id="style_factory">
|
||||||
|
.wall { fill:none;stroke:#000;stroke-width:0.2; }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stair-1" d="M39.1426 95.2973V106.58h3.0521V95.2973Z"></path>
|
||||||
|
<path id="stair-2" d="M30.1617 114.287h-6.5965v3.006h6.5965Z"></path>
|
||||||
|
<path id="stair-3" d="M23.7935 120.316h2.8739v1.517h-2.8739Z"></path>
|
||||||
|
<path id="stair-4" d="M28.3251 75.1428v3.0709h1.4402v-3.0709Z"></path>
|
||||||
|
<path id="stair-7" d="m75.1892 95.2502 9.07.0157-.008 2.9515-9.07-.0157Z"></path>
|
||||||
|
<path id="stair-8" d="M87.0874 63.3964v8.3085h2.9758v-8.3085Z"></path>
|
||||||
|
<path id="stair-220" d="M86.1828 49.887V39.5518h4.9597V49.887Z"></path>
|
||||||
|
<path id="stair-221" d="M98.587 39.1456h2.931v-1.2648h-2.931Z"></path>
|
||||||
|
<path id="stair-222" d="M98.4578 9.62181v1.42359H101.4V9.62181Z"></path>
|
||||||
|
<path id="stair-223" d="M45.8568 62.7733h1.3624v4.8857h-1.3624Z"></path>
|
||||||
|
<path id="stair-224" d="M54.4139 60.0327h1.3622v4.8857h-1.3622Z"></path>
|
||||||
|
<path id="stair-69" d="M18.2137 111.316v6.069H20.95v-6.069Zm1.3028 1.166h.1308v3.735h-.1308Z"></path>
|
||||||
|
<path id="stair-96" d="M14.176 69.4637v5.8536h2.7363v-5.8536Zm1.3027 1.125h.1308v3.6016h-.1308Z"></path>
|
||||||
|
<path id="stair-97" d="M52.0882 93.4709v6.0459h2.7363v-6.0459Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-100" d="M70.3349 93.4707v6.0463h2.7363v-6.0463Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-101" d="M96.7289 21.8536h-5.8535V24.59h5.8535Zm-1.125 1.3028v.1308h-3.6016v-.1308Z"></path>
|
||||||
|
<path id="stair-129" d="M46.6849 43.5374v6.0547h2.7364v-6.0547Zm1.3028 1.1637h.1308v3.7253h-.1308Z"></path>
|
||||||
|
<path id="stair-62" d="M28.0307 29.732h-2.7258v-4.1555h2.7258"></path>
|
||||||
|
<path id="stair-127" d="M30.3351 39.7077h-6.3573v3.2048h6.3573Zm-1.5627 1.5258v.1533h-3.3123v-.1533Z"></path>
|
||||||
|
<path id="stair-128" d="M30.3351 65.8672h-6.3573v3.2048h6.3573Zm-1.5628 1.5258v.1532H25.46v-.1532Z"></path>
|
||||||
|
<path id="stair-63" d="M24.7291 87.3812h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-130" d="M24.7418 72.3192h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-131" d="m84.0534 42.6737-1.4406.0027.0125 3.7271 1.4405-.0027Z"></path>
|
||||||
|
<path id="stair-132" d="M83.3833 39.4151h1.2252v-5.4587h-1.2252Z"></path>
|
||||||
|
<path id="stair-140" d="M33.3318 94.6163h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-141" d="M47.7275 94.6592h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-155" d="M52.5058 20.887v-3.4477h-1.1721v3.4477Z"></path>
|
||||||
|
<path id="stair-226" d="M70.98 25.5491V21.945h-1.1722v3.6041Z"></path>
|
||||||
|
<path id="stair-134" d="M92.2973 42.9477v5.8536h3.1411v-5.8536Zm1.4954 1.125h.1502v3.6016h-.1502Z"></path>
|
||||||
|
<path id="stair-135" d="M12.0115 65.0487h3.2275v1.3764h-3.2275Z"></path>
|
||||||
|
<path id="stair-136" d="M53.6835 6.40033h2.9323v1.32034h-2.9323Z"></path>
|
||||||
|
<path id="stair-138" d="M53.1803 30.0761h2.9557v-1.229h-2.9557Z"></path>
|
||||||
|
<path id="stair-139" d="M78.1769 37.6569H75.299v1.3571h2.8779Z"></path>
|
||||||
|
<path id="stair-143" d="M.147886 74.7243v-2.9255H1.55806v2.9255Z"></path>
|
||||||
|
</defs>
|
||||||
|
<g id="Basement" class="shadow">
|
||||||
|
<g id="Floor-b" class="floor">
|
||||||
|
<path d="M78.9593 44.1706h1.526v6.6383h-1.526z"></path>
|
||||||
|
<path d="M74.8878 44.1706h1.5261v6.6383h-1.5261z"></path>
|
||||||
|
<path d="m94.7441 0-.002 10.1016h.7149v.2851h-.7149l-.002 8.1465h-4.2206v3.4688h-7.8183v5.4628h-7.4414v.9883h-6.1543V12.5664h-8.7852v-.6309h.5039V6.30273h-7.6484v2.92188h4.748v3.34179h-4.748v17.8828h8.9726V41.834h2.9375v9.4336h.3457v.6523H45.6934v4.1856h-19.711V45.1914h7.1406v-5.4766H25.5v1.7012h3.2383v1.7774h-4.7774v25.83h6.6446v.5957H17.7578v2.5957h-.6074v-.3105H12.793v3.9297h-.3008v-.3496H8.13867v1.041H2.9707v-7.2129H.000001v9.1992H12.4922v-.4512h.5996v.4649h4.0586v-.5234h.6191v.4746h3.1797v-6.5723h-1.2031v-.2852h8.0019v-.8574h.2969l.0039 7.7539h2.0606v9.0918h-6.086l.0196 8.2735h-.6719v-1.9981h-5.5879v7.4742h5.5879v-4.398h.6758l.0059 2.5078 6.1367.0293-.0293 14.8199-6.3731-.029v3.026l6.6543.029v.545h-6.4648v4.297h9.1484v-12.629h9.0801V95.248h-3.0528v11.332H33.125V84.8711h12.5684v2.4531h10.205v-8.416h9.2129v5.4902h3.0313v-5.4902h7.0527v12.5684h-6.4492v6.9004h13.8125v-3.6622l-7.3574-.0195v-.5332l14.7031-.0117v4.4082h.9395v.3945h-1.754v1.4829H69.334v4.419h43.439v-4.419H93.7812v-1.4829h-1.7519v-.3945h.8633v-4.4102l9.9624-.0059V72.3574h-2.037V59.8828h-2.0016v.5977h-8.7422v-6.5899h8.7422v.586h2.0016v-.586h2.446V34.8828h.683v-7.3965h-.683V9.2168l-5.9764.00741v2.05229l-.3755-.0074v-.8824h-.4609v-.2851h.4609V2.02344h2.6211V-.000001Zm2.168 12.4136.3755.0074v.5044l3.1914-.0074v11.8144h-3.5669zm0 14.2739h3.5669v8.916h-3.2329v.7715h-9.0215v.4453h-.3203v-.4453h-4.791v-2.6426h-5.877v-.5429h-.4394v-.2266l.4394.0039v-2.5176h19.6758ZM64.123 30.4492h11.1368v2.5l.4863.0039v.2363h-.4863v.543h-1.9493v5.5567h5.8028v.5429H64.123Zm23.7813 8.4942h.3203v.3457h5.5566v.5683h-1.5058v4.4707h3.1621v-5.039h5.0415v12.6308H90.0742v-2.0332h1.0684v-6.8281h-4.959v6.8281h.8769v2.0332H78.668v-9.0742h2.0996V39.832h-.5684v-.5429h7.7051zM68.123 42.8457h8.5938v9.0742h-1.75v1.9707h.7852l-.0157 6.5899h-7.5937v-6.5899h.623v-1.9707h-1.0859v-.6523h.4433ZM55.8984 54.8945h9.2129v8.5606h.4375v.2441h-.4375v11.8731h.4375v.2832h-9.6504Zm-22.8046 3.1934h12.5996v23.8086H33.123l-.041-12.2774h-1.4765v-.5957h1.4883zm34.5878 5.3672h19.3789v5.1562h2.9747v-5.1562h7.8593v8.9023H75.1953v3.4981h-7.5137v-.2832h.461V63.6992h-.461z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs-b" class="stairs">
|
||||||
|
<g id="Connector-Ground_Floor">
|
||||||
|
<use xlink:href="#stair-1"></use>
|
||||||
|
<use xlink:href="#stair-2"></use>
|
||||||
|
<use xlink:href="#stair-3"></use>
|
||||||
|
<use xlink:href="#stair-4"></use>
|
||||||
|
<use xlink:href="#stair-7"></use>
|
||||||
|
<use xlink:href="#stair-8"></use>
|
||||||
|
<use xlink:href="#stair-220"></use>
|
||||||
|
<use xlink:href="#stair-221"></use>
|
||||||
|
<use xlink:href="#stair-222"></use>
|
||||||
|
<use xlink:href="#stair-223"></use>
|
||||||
|
<use xlink:href="#stair-224"></use>
|
||||||
|
<use xlink:href="#stair-136"></use>
|
||||||
|
<use xlink:href="#stair-140"></use>
|
||||||
|
<use xlink:href="#stair-128"></use>
|
||||||
|
<use xlink:href="#stair-127"></use>
|
||||||
|
<use xlink:href="#stair-138"></use>
|
||||||
|
<use xlink:href="#stair-139"></use>
|
||||||
|
<use xlink:href="#stair-134"></use>
|
||||||
|
<use xlink:href="#stair-143"></use>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Wall-b" class="building">
|
||||||
|
<path d="M54.5188 81.1404c0 1.986-1.61 3.596-3.5959 3.596-.9538 0-1.8684-.3789-2.5428-1.0533-.6744-.6743-1.0533-1.5889-1.0533-2.5426 0-.9538.3789-1.8685 1.0533-2.5428.6744-.6745 1.589-1.0533 2.5428-1.0533 1.9859 0 3.596 1.61 3.596 3.5961z"></path>
|
||||||
|
<path d="M54.5188 58.8772c0 1.9861-1.61 3.5961-3.5959 3.5961-.9538 0-1.8684-.3789-2.5428-1.0533-.6744-.6744-1.0533-1.5891-1.0533-2.5428 0-.9537.3789-1.8684 1.0533-2.5428.6744-.6744 1.589-1.0532 2.5428-1.0532 1.9859 0 3.596 1.61 3.596 3.596z"></path>
|
||||||
|
<path d="M54.5188 69.6492c0 1.986-1.61 3.5961-3.5959 3.5961-.9538 0-1.8684-.3789-2.5428-1.0533-.6744-.6744-1.0533-1.5891-1.0533-2.5428 0-.9537.3789-1.8684 1.0533-2.5428.6744-.6744 1.589-1.0533 2.5428-1.0533 1.9859 0 3.596 1.6102 3.596 3.5962z"></path>
|
||||||
|
<path d="m91.6997 87.0141 1.4562-6.3482 2.031.4658-1.4564 6.3483z"></path>
|
||||||
|
<path d="m94.0096 87.4092.3705-2.1598 2.0536.352-.3704 2.1601z"></path>
|
||||||
|
<path d="M89.8545 85.4138h1.6667v1.744h-1.6667z"></path>
|
||||||
|
<path d="m90.2605 84.8165.3821-1.7962 1.7358.3692-.3821 1.7962z"></path>
|
||||||
|
<path d="M86.4128 87.7751h1.1267v1.1267h-1.1267z"></path>
|
||||||
|
<path d="M86.4128 77.8976h1.1267v1.1266h-1.1267z"></path>
|
||||||
|
<path d="M100.071 81.293h1.852v1.852h-1.852z"></path>
|
||||||
|
<path d="M100.472 83.5926h1.513v2.5466h-1.513z"></path>
|
||||||
|
<path d="M99.9795 86.2781h1.8515v1.852h-1.8515z"></path>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.0 KiB |
|
|
@ -0,0 +1,226 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg176" width="130.81831" height="141.23242" version="1.1" viewBox="0 0 130.81831 141.23242">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<style id="style_factory">
|
||||||
|
.wall { fill:none;stroke:#000;stroke-width:0.2; }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stair-1" d="M39.1426 95.2973V106.58h3.0521V95.2973Z"></path>
|
||||||
|
<path id="stair-2" d="M30.1617 114.287h-6.5965v3.006h6.5965Z"></path>
|
||||||
|
<path id="stair-3" d="M23.7935 120.316h2.8739v1.517h-2.8739Z"></path>
|
||||||
|
<path id="stair-4" d="M28.3251 75.1428v3.0709h1.4402v-3.0709Z"></path>
|
||||||
|
<path id="stair-7" d="m75.1892 95.2502 9.07.0157-.008 2.9515-9.07-.0157Z"></path>
|
||||||
|
<path id="stair-8" d="M87.0874 63.3964v8.3085h2.9758v-8.3085Z"></path>
|
||||||
|
<path id="stair-220" d="M86.1828 49.887V39.5518h4.9597V49.887Z"></path>
|
||||||
|
<path id="stair-221" d="M98.587 39.1456h2.931v-1.2648h-2.931Z"></path>
|
||||||
|
<path id="stair-222" d="M98.4578 9.62181v1.42359H101.4V9.62181Z"></path>
|
||||||
|
<path id="stair-223" d="M45.8568 62.7733h1.3624v4.8857h-1.3624Z"></path>
|
||||||
|
<path id="stair-224" d="M54.4139 60.0327h1.3622v4.8857h-1.3622Z"></path>
|
||||||
|
<path id="stair-69" d="M18.2137 111.316v6.069H20.95v-6.069Zm1.3028 1.166h.1308v3.735h-.1308Z"></path>
|
||||||
|
<path id="stair-96" d="M14.176 69.4637v5.8536h2.7363v-5.8536Zm1.3027 1.125h.1308v3.6016h-.1308Z"></path>
|
||||||
|
<path id="stair-97" d="M52.0882 93.4709v6.0459h2.7363v-6.0459Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-100" d="M70.3349 93.4707v6.0463h2.7363v-6.0463Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-101" d="M96.7289 21.8536h-5.8535V24.59h5.8535Zm-1.125 1.3028v.1308h-3.6016v-.1308Z"></path>
|
||||||
|
<path id="stair-129" d="M46.6849 43.5374v6.0547h2.7364v-6.0547Zm1.3028 1.1637h.1308v3.7253h-.1308Z"></path>
|
||||||
|
<path id="stair-62" d="M28.0307 29.732h-2.7258v-4.1555h2.7258"></path>
|
||||||
|
<path id="stair-127" d="M30.3351 39.7077h-6.3573v3.2048h6.3573Zm-1.5627 1.5258v.1533h-3.3123v-.1533Z"></path>
|
||||||
|
<path id="stair-128" d="M30.3351 65.8672h-6.3573v3.2048h6.3573Zm-1.5628 1.5258v.1532H25.46v-.1532Z"></path>
|
||||||
|
<path id="stair-63" d="M24.7291 87.3812h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-130" d="M24.7418 72.3192h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-131" d="m84.0534 42.6737-1.4406.0027.0125 3.7271 1.4405-.0027Z"></path>
|
||||||
|
<path id="stair-132" d="M83.3833 39.4151h1.2252v-5.4587h-1.2252Z"></path>
|
||||||
|
<path id="stair-140" d="M33.3318 94.6163h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-141" d="M47.7275 94.6592h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-155" d="M52.5058 20.887v-3.4477h-1.1721v3.4477Z"></path>
|
||||||
|
<path id="stair-226" d="M70.98 25.5491V21.945h-1.1722v3.6041Z"></path>
|
||||||
|
<path id="stair-134" d="M92.2973 42.9477v5.8536h3.1411v-5.8536Zm1.4954 1.125h.1502v3.6016h-.1502Z"></path>
|
||||||
|
<path id="stair-135" d="M12.0115 65.0487h3.2275v1.3764h-3.2275Z"></path>
|
||||||
|
<path id="stair-136" d="M53.6835 6.40033h2.9323v1.32034h-2.9323Z"></path>
|
||||||
|
<path id="stair-138" d="M53.1803 30.0761h2.9557v-1.229h-2.9557Z"></path>
|
||||||
|
<path id="stair-139" d="M78.1769 37.6569H75.299v1.3571h2.8779Z"></path>
|
||||||
|
<path id="stair-143" d="M.147886 74.7243v-2.9255H1.55806v2.9255Z"></path>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
<g id="Ground_Floor">
|
||||||
|
<g id="Floor" class="floor">
|
||||||
|
<path d="M97.2969 2.54101v3.76172H50.082l-.4082 2.95313h8.1621v.29687l-16.4238.0078h-10.375v-.30467h18.2246l.4043-2.95313H25.293v2.95313h4.875v.30469h-4.875v5.50395H1.54492v6.4121H25.293v17.957h4.959v.3437h-5.6836v3.2032h6.5234v2.5273h-4.082v.9121h-.1602v-.9121h-5.7539v4.959h5.7539v-2.8926h.1524l.0098 2.8926h2.3066v.3359h-6.1621v7.5918h6.1055v.2676h-6.1055v7.0566h8.4316v.1153h-6.9804v3.2051h6.6757v.3046H3.35547l-.00391 5.0762h-.45117v-5.1035H.013672v17.7461H2.90039v-11.748h.45117l-.00586 6.5527-.00781 12.5234h-.4375v-2.9941H.039062V121.23H3.31836v4.846h4.7168v-.611h.27929v15.767h6.48435v-20.65h.2852v1.678h15.5879v-2.174h2.5937v-2.328h-1.4883v-.381h1.5645l.0098-11.359.0098-11.4457h5.7793l.0098 6.0277.0098 5.961h3.0137l.0098-5.999.0098-5.9897h4.1113v3.4238h-.1816v-3.2422H42.385v4.7871h3.7383v-.5156h.1816v.5156h10.2754v24.35283h6.4316V99.541l20.3184-.01 20.0957-.01v-2.4492h24.363v-6.4136h-24.363l.006-11.5801h.248v2.3008h2.574V79.418h.318v2.2793h-2.892v4.9668h17.861V74.3984l-2.006.1153-.15-2.6172 1.439-.1016-.207-9.2734-.802-2.4805.548-4.1973 1.071-4.2128-.086-4.3086 4.111-.5723V34.9258h1.367v-6.1504h-4.851v6.7891h-8.522v-.2989h7.828v-6.4414l-19.742-.0195-.01-5.6797.022-5.5605 8.508-.0313h8.476V9.45703h12.283V3.0957h-12.283v-.55469Zm4.2991 6.17969h.953v.6875h-.953v-.1914h-4.3499v1.5273h-.3047v-.4961h-.5723v-.69527h-.3105v-.29687h.3945v-.32422l2.5781-.00977 2.5648-.00977Zm-41.5081.53516h2.1367v.29687h-.7637v.69527h-.6484v-.69527h-.7246zm4.3105 0h1.2969v.29687h-1.2969zm4.045 0h.9902v.29687h-.9902zm3.7382 0H85.832v.29687H72.1816Zm16.4043 0h1.0313v.29687h-1.0313zm3.7774 0h.9961l-.0235.29687h-.9726zm4.5781 2.82224h.3047v14.2305h-.3066l.002-7.1152zm-.002 15.375h.3066v.916h.6524v.8692h-.7012v-.6738h-.2578zm-14.5723 6.086 1.0879.0195.0098 3.0234.0098 2.8516h2.709v10.4531h4.959V39.375h3.2656v.3437h-2.1367v3.1778h3.168v-1.1934h.7597v.1856h-.4355v7.6679h-.2481v-.4336h-3.375v2.1485h3.375v-1.0528h.2481v1.0625h2.9511v.254H84.084v-11.834H73.2891v-3.8535h.3828v3.455h9.3301v-5.3808h-.6348zm-9.0781.002 8.1055.0175v.3633h-7.7227v.9707h-.3828Zm23.6524 1.7246h2.6328v.3047H97.246v1.0781h-.3046zm3.7776 0h4.502v17.3008h-1.793v-.3907h-.801v-.6406h-2.9142v-.2539h3.6232V45.998h-5.8477v-4.1093h-.4219v-.1856h4.0566v.1856h-3.4277v3.9258h5.6407v-3.9258h-1.356v-.1856h1.356v-1.9844h-7.9083v-.3437h1.5137v-1.5664h.3047v1.5664h6.0269v-3.8047h-2.554zm7.467 0h1.917v.2988h-1.548v20.5488h-4.899v3.3496h3.237v.6133h-.366v-.2734h-2.847v.2734h-.237l.002-4.582 2.567-.0098 2.174-.0098zm-71.2564 3.3281h.6895l-.0117.5625-.0098.6211h-4.1778v3.6992h-.3437v-3.6992h-1.6016v-.3438h5.4551zm23.8829 0h.6484v.8105h2.957v.3145h-3.6054zm4.6347.8105h3.9863v.8692h-.8769v11.2539h.8769v.6484h-.8769v11.2168h.8398v.6875h-.8398v11.1778h.8809l-.0118.3339-.0098.334-.4297.0098-.4296.0117v1.1407h-.3046v-1.1446h-.7637v-.6856h.7637V64.0801h-.7247v-.6875h.7247V52.1758h-.7637v-.6485h.7637V40.2734h-.7637v-.5547h-2.041zM.859375 42.8105V69.043H12.0098v-2.6875h5.2754v2.6875h5.6015V50.8496h-2.1172v-5.6484h3.0625v-2.3907ZM33.0762 44.6602h.3437V66.75h-.3437l-.002-3.0039-.002-16.1777zm70.3648 16.2832h.239v2.0488h2.847v-2.0488h.366v2.2773h1.388v5.9922h2.758v5.9004h-4.467v2.7793h-.318v-2.7559h-2.574v3.0528h-.246l.002-5.1348zm-70.3648 7.0273h.3437v.6875l-.039.6855-.0371 10.2442V89.832h-5.1934l.0117-.2207.0117-.2285H33V69.3437h-.5v-.3046h.5762zM68.252 86.7793h.3046v.4199h.877v.6485h-.877v.3046h-.3046v-.3046h-.7637v-.6485h.7637ZM2.90039 95.4395h.45703l-.00977 4.0722-.00977 4.0723h-.4375zm0 9.2145h.4375v5.455h-.4375zm0 6.512h.4375l.00977 3.111.00977 3.1h2.37891v.305H2.90039Zm3.90039 6.211h1.51367v6.791h-.27929v-6.486H6.80078Zm7.99802 0h15.2246v.381H15.084v1.775h-.2852z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Ledge" class="cement">
|
||||||
|
<path d="M45.9232 52.6504h9.7709V86.759h-9.7709z"></path>
|
||||||
|
<path d="M78.8578 43.3248h1.526v6.6383h-1.526z"></path>
|
||||||
|
<path d="M73.9744 43.3248h1.5261v6.6383h-1.5261z"></path>
|
||||||
|
<path d="M32.9998 69.344v20.0388h-4.8261V69.344Z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Obstacles" class="building">
|
||||||
|
<path d="M25.9428 22.8974h4.823v1.6977h-4.823z"></path>
|
||||||
|
<path d="M62.7873 14.6328h5.37v12.9856h-5.37z"></path>
|
||||||
|
<path d="M39.6346 24.0789h1.9084v2.0584h-1.9084z"></path>
|
||||||
|
<path d="M70.7864 60.8566h2.7897v5.4957h-2.7897z"></path>
|
||||||
|
<path d="m74.3339 61.4759 2.7742.2942-.5795 5.465-2.7741-.2942z"></path>
|
||||||
|
<path d="m86.0319 76.9126.9693 2.6159-5.1533 1.9093-.9692-2.6159z"></path>
|
||||||
|
<path d="M90.6974 79.7791h2.7897v5.4957h-2.7897z"></path>
|
||||||
|
<path d="M95.6012 79.002h2.7897v5.4957h-2.7897z"></path>
|
||||||
|
<path d="M89.9603 74.7004h5.1752v2.7991h-5.1752z"></path>
|
||||||
|
<path d="M101.151 66.7568h-2.4745v6.1868h2.4745z"></path>
|
||||||
|
<path d="m76.1976 89.6127-1.8181-5.2472-1.8127.6281 1.8181 5.2472z"></path>
|
||||||
|
<path d="M48.4265 87.6401 43.6257 89.76l-.7341-1.6624 4.8008-2.1199Z"></path>
|
||||||
|
<path d="M73.6664 6.36889c.1551.01034 1.893.08275 1.893.08275l-.0429.98138-1.893-.08276z"></path>
|
||||||
|
<path d="m22.6859 16.8639-.2002 1.6948-4.8088-.568.2002-1.6948z"></path>
|
||||||
|
<path d="m58.8284 51.63 4.8697.02.007-1.6965-4.8697-.02z"></path>
|
||||||
|
<path d="m68.1678 46.3304-4.8397-.42-.1455 1.6764 4.8397.42z"></path>
|
||||||
|
<path d="m65.158 41.0707-.03 4.8697 1.667.0103.03-4.8697z"></path>
|
||||||
|
<path d="M54.0756 14.6328h5.2867v12.9856h-5.2867z"></path>
|
||||||
|
<path d="m96.6297 53.5128-.0723.5215.2129.0293-.0351.2481-1.336-.1875-.0156.1172 1.2793.1796-.0742.5333-1.2832-.1797-.0176.125 1.3398.1875-.0312.2207-.211-.0293-.0761.5351.957.1348.0352-.252 2.4257.3399.2559-1.8203-2.4414-.3418.0332-.2285z"></path>
|
||||||
|
<path d="m98.2152 64.211.0128-.5264-.2148-.005.0069-.2504 1.3486.0352.002-.1182-1.2914-.0338.0134-.5382 1.2953.0334.003-.1262-1.3525-.0347.0061-.2229.2129.0052.0152-.5403-.9661-.0257-.0065.2544-2.4487-.0634-.0483 1.8376 2.4644.0635-.0071.2308z"></path>
|
||||||
|
<path d="m92.0745 55.3838.0128-.5263-.2148-.005.0069-.2504 1.3486.0352.002-.1182-1.2915-.0339.0135-.5382 1.2953.0335.003-.1262-1.3525-.0348.0061-.2228.2129.0052.0152-.5404-.9662-.0256-.0065.2543-2.4486-.0633-.0484 1.8375 2.4644.0635-.0071.2308z"></path>
|
||||||
|
<path d="m83.5604 58.8283-.2831-.4439-.1811.1158-.134-.2117 1.1386-.7235-.0643-.0992-1.0904.6928-.2893-.4541 1.0934-.6952-.0679-.1064-1.1416.726-.1193-.1883.1796-.1145-.2891-.4568-.8159.518.1365.2146-2.0671 1.3142.9856 1.5517 2.0802-1.3228.1229.1954z"></path>
|
||||||
|
<path d="m33.6298 91.2005.0451.5245.2141-.0186.0206.2497-1.3442.1132.0107.1177 1.2873-.1083.0458.5364-1.2911.1092.0105.1258 1.3481-.1141.0185.2221-.2122.0182.0443.5387.9631-.0806-.0216-.2535 2.4408-.2062-.1539-1.8318-2.4564.2078-.0183-.2302z"></path>
|
||||||
|
<path d="m11.6868 107.36-.5058-.146-.0595.206-.2404-.07.3767-1.296-.1137-.032-.3609 1.241-.5171-.15.3614-1.244-.1212-.036-.3773 1.299-.21393-.062.05915-.205-.51875-.152-.27029.928.24433.071-.68345 2.352 1.76494.514.6877-2.367.2214.065z"></path>
|
||||||
|
<path d="m112.787 10.9712.053.5238.214-.0217.024.2494-1.343.1324.013.1174 1.285-.1264.054.5356-1.289.1273.012.1258 1.347-.1334.021.222-.212.0212.053.538.961-.0945-.024-.2531 2.437-.241-.18-1.8294-2.454.2429-.021-.2298z"></path>
|
||||||
|
<path d="m109.094 7.50718.125-.51139-.209-.05083.06-.24314 1.31.32277.027-.11504-1.254-.30922.128-.52287 1.258.30964.03-.12263-1.313-.32318.053-.21638.207.05061.131-.52459-.939-.23166-.061.24693-2.378-.58546-.441 1.78473 2.394.589-.056.22398z"></path>
|
||||||
|
<path d="M78.4809 42.354H80.9v6.3742h-2.4191z"></path>
|
||||||
|
<path d="m37.045 66.0973.3993-.3431-.1402-.1628.1905-.1627.8774 1.0248.0891-.0777-.8401-.9814.4085-.3506.843.984.0957-.0823-.8803-1.0274.1695-.1447.1388.1615.4113-.3507-.6282-.7345-.1932.1656-1.5935-1.8603-1.3966 1.1952 1.604 1.8721-.1761.1494z"></path>
|
||||||
|
<path d="m9.08853 19.9603.19472-.4891-.1997-.0793.09335-.2325 1.2525.5012.043-.1101-1.19941-.4801.19939-.5 1.20312.481.0466-.1173-1.25626-.5021.08309-.2068.19786.0787.20182-.5014-.89714-.3596-.0944.2364-2.27439-.9095-.68328 1.7065 2.28916.915-.08676.2141z"></path>
|
||||||
|
<path d="m44.3641 12.3169-.42.3174.1292.1711-.2001.1504-.8116-1.0783-.0938.0718.777 1.0328-.43.324-.7791-1.035-.1015.0754.8137 1.0806-.1779.1341-.1286-.1702-.4327.3241.5808.7726.2033-.153 1.473 1.9569 1.4694-1.1046-1.4825-1.9693.1847-.1382z"></path>
|
||||||
|
<path d="m90.5555 21.9871-.5005.1632.0664.2039-.2382.0771-.416-1.284-.1121.0374.3982 1.2295-.5121.1663-.3994-1.2323-.1205.0382.4172 1.2868-.2119.0688-.0662-.2029-.5146.1656.2975.9196.242-.0784.7551 2.33 1.7491-.5658-.7601-2.3447.2197-.0706z"></path>
|
||||||
|
<path d="m124.35 33.4177-.485.203.083.1982-.232.096-.518-1.2455-.109.0462.496 1.1927-.497.2074-.498-1.1961-.116.0484.52 1.2489-.206.0854-.082-.1966-.499.2067.37.8925.235-.0979.942 2.2613 1.697-.7058-.948-2.2757.214-.0877z"></path>
|
||||||
|
<path d="m115.461 71.5596 2.686-5.4911 2.141 1.0476-2.686 5.4911z"></path>
|
||||||
|
<path d="M116.052 57.6037h6.539v2.4161h-6.539z"></path>
|
||||||
|
<path d="M108.483 51.4199h3.176v2.1457h-3.176z"></path>
|
||||||
|
<path d="m114.058 49.1221 1.538-1.3686 4.729 5.3136-1.537 1.3686z"></path>
|
||||||
|
<path d="M116.66 39.1536v-3.1427h2.146v3.1427z"></path>
|
||||||
|
<path d="m118.35 62.7842.118 3.1595 2.082-.078-.118-3.1595z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs" class="stairs">
|
||||||
|
<g id="Stairs-down">
|
||||||
|
<use xlink:href="#stair-1"></use>
|
||||||
|
<use xlink:href="#stair-2"></use>
|
||||||
|
<use xlink:href="#stair-3"></use>
|
||||||
|
<use xlink:href="#stair-4"></use>
|
||||||
|
<use xlink:href="#stair-7"></use>
|
||||||
|
<use xlink:href="#stair-8"></use>
|
||||||
|
<use xlink:href="#stair-220"></use>
|
||||||
|
<use xlink:href="#stair-221"></use>
|
||||||
|
<use xlink:href="#stair-222"></use>
|
||||||
|
<use xlink:href="#stair-223"></use>
|
||||||
|
<use xlink:href="#stair-224"></use>
|
||||||
|
<use xlink:href="#stair-136"></use>
|
||||||
|
<use xlink:href="#stair-140"></use>
|
||||||
|
<use xlink:href="#stair-138"></use>
|
||||||
|
<use xlink:href="#stair-139"></use>
|
||||||
|
<use xlink:href="#stair-143"></use>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs-up">
|
||||||
|
<use xlink:href="#stair-69"></use>
|
||||||
|
<use xlink:href="#stair-96"></use>
|
||||||
|
<use xlink:href="#stair-97"></use>
|
||||||
|
<use xlink:href="#stair-100"></use>
|
||||||
|
<use xlink:href="#stair-101"></use>
|
||||||
|
<use xlink:href="#stair-129"></use>
|
||||||
|
<use xlink:href="#stair-62"></use>
|
||||||
|
<use xlink:href="#stair-127"></use>
|
||||||
|
<use xlink:href="#stair-128"></use>
|
||||||
|
<use xlink:href="#stair-63"></use>
|
||||||
|
<use xlink:href="#stair-130"></use>
|
||||||
|
<use xlink:href="#stair-131"></use>
|
||||||
|
<use xlink:href="#stair-132"></use>
|
||||||
|
<use xlink:href="#stair-140"></use>
|
||||||
|
<use xlink:href="#stair-141"></use>
|
||||||
|
<use xlink:href="#stair-155"></use>
|
||||||
|
<use xlink:href="#stair-226"></use>
|
||||||
|
<use xlink:href="#stair-135"></use>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Wall" class="building wall">
|
||||||
|
<path d="M24.2407 39.3647"></path>
|
||||||
|
<path d="M37.668 39.3647"></path>
|
||||||
|
<path d="m6.50487 80.1031-.63189-6.1417 2.35588-.2074.55472 6.1408"></path>
|
||||||
|
<path d="M8.34696 87.3638h6.09534"></path>
|
||||||
|
<path d="M8.34696 89.8332h6.09534"></path>
|
||||||
|
<path d="m5.57108 98.2517 11.21682-3.8816"></path>
|
||||||
|
<path d="m6.44179 100.659 11.00741-3.9601"></path>
|
||||||
|
<path d="M36.8706 34.8869v-6.0873"></path>
|
||||||
|
<path d="M39.1856 34.8869v-6.0873"></path>
|
||||||
|
<path d="M40.1014 23.4256h6.1734v-6.0192"></path>
|
||||||
|
<path d="M40.1014 20.4932h6.1734"></path>
|
||||||
|
<path d="M47.5095 23.4256h1.6978v-6.0192"></path>
|
||||||
|
<path d="M97.0025 28.5653v5.2185"></path>
|
||||||
|
<path d="M97.0025 34.8193v.463"></path>
|
||||||
|
<path d="M8.31654 130.115h1.35389"></path>
|
||||||
|
<path d="M10.7842 130.115h4.0155"></path>
|
||||||
|
<path d="M118.61 9.45737V5.21352"></path>
|
||||||
|
<path d="M3.15585 119.686v1.543"></path>
|
||||||
|
<path d="M59.064836 99.640383 63.0109 99.6196"></path>
|
||||||
|
<path d="M57.951066 99.6196H56.5805"></path>
|
||||||
|
<path d="M103.501 95.6653v1.4069"></path>
|
||||||
|
<path d="M103.501 90.6578v3.9435"></path>
|
||||||
|
<path d="M115.722 94.6341v-3.9763"></path>
|
||||||
|
<path d="M115.722 95.5647v1.5075"></path>
|
||||||
|
<path d="M25.1925 21.4871v-4.4077"></path>
|
||||||
|
<path d="M25.1925 15.9905v-.926"></path>
|
||||||
|
<path d="M12.5111 17.0794v4.4077"></path>
|
||||||
|
<path d="M12.5111 15.9905v-.926"></path>
|
||||||
|
<path d="M57.4232 39.3647H49.089"></path>
|
||||||
|
<path d="M58.859 39.3647h1.9516"></path>
|
||||||
|
<path d="m43.1765 37.6859 6.0481.7181"></path>
|
||||||
|
<path d="m49.4452 36.1282-6.0481-.7181"></path>
|
||||||
|
<path d="M32.6109 45.5006h.463"></path>
|
||||||
|
<path d="M31.5552 45.5006h-.463"></path>
|
||||||
|
<path d="M46.3108 43.2232h-.6173v4.167"></path>
|
||||||
|
<path d="M45.6935 49.088v.6173h8.0256v-6.4821"></path>
|
||||||
|
<path d="M53.7191 41.8341v-2.4694"></path>
|
||||||
|
<path d="M50.7867 46.4643v-7.0996"></path>
|
||||||
|
<path d="M47.9305 43.2232h2.778"></path>
|
||||||
|
<path d="M118.61 3.95951V3.0928"></path>
|
||||||
|
<path d="M89.0201 92.6905v-1.852h12.6559v1.852"></path>
|
||||||
|
<path d="M101.676 95.2652v1.852H89.0201v-1.852"></path>
|
||||||
|
<path d="M3.15585 104.654v-1.069"></path>
|
||||||
|
<path d="M8.32242 117.465h1.34801"></path>
|
||||||
|
<path d="M10.7842 117.465h3.9978"></path>
|
||||||
|
<path d="M65.6956 9.40402h2.7469"></path>
|
||||||
|
<path d="M69.4344 9.40402h2.7469"></path>
|
||||||
|
<path d="M85.8323 9.40402h2.7541"></path>
|
||||||
|
<path d="M89.6165 9.40402h2.7469"></path>
|
||||||
|
<path d="M93.3481 9.40402h2.7101"></path>
|
||||||
|
<path d="m3.4764 45.6745-2.3355.0623-.06985-2.6195 6.0379-.161.06938 2.6019-2.61203.0696"></path>
|
||||||
|
<path d="M56.5803 111.76084h1.370766"></path>
|
||||||
|
<path d="m59.064836 111.78162 3.947064-.0208"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Building" class="building">
|
||||||
|
<path d="M54.5423 81.0805c0 .9415-.374 1.8444-1.0397 2.5101-.6657.6657-1.5686 1.0397-2.5101 1.0397-.9414 0-1.8443-.374-2.51-1.0397-.6657-.6657-1.0397-1.5686-1.0397-2.5101 0-.9414.374-1.8443 1.0397-2.51.6657-.6657 1.5686-1.0397 2.51-1.0397.9415 0 1.8444.374 2.5101 1.0397.6657.6657 1.0397 1.5686 1.0397 2.51z"></path>
|
||||||
|
<path d="M54.5423 58.9809c0 .9414-.374 1.8443-1.0397 2.51-.6657.6657-1.5686 1.0397-2.5101 1.0397-.9414 0-1.8443-.374-2.51-1.0397-.6657-.6657-1.0397-1.5686-1.0397-2.51 0-.9415.374-1.8444 1.0397-2.5101.6657-.6657 1.5686-1.0397 2.51-1.0397.9415 0 1.8444.374 2.5101 1.0397.6657.6657 1.0397 1.5686 1.0397 2.5101z"></path>
|
||||||
|
<path d="M54.5423 69.6919c0 .9415-.374 1.8444-1.0397 2.5101-.6657.6657-1.5686 1.0397-2.5101 1.0397-.9414 0-1.8443-.374-2.51-1.0397-.6657-.6657-1.0397-1.5686-1.0397-2.5101 0-.9414.374-1.8443 1.0397-2.51.6657-.6657 1.5686-1.0397 2.51-1.0397.9415 0 1.8444.374 2.5101 1.0397.6657.6657 1.0397 1.5686 1.0397 2.51z"></path>
|
||||||
|
<path d="M64.1619 58.9808c0 .7675-.3049 1.5035-.8476 2.0462-.5427.5427-1.2787.8476-2.0462.8476-.7675 0-1.5036-.3049-2.0463-.8476s-.8475-1.2787-.8475-2.0462c0-.7675.3048-1.5035.8475-2.0462.5427-.5427 1.2788-.8476 2.0463-.8476.7675 0 1.5035.3049 2.0462.8476.5427.5427.8476 1.2787.8476 2.0462z"></path>
|
||||||
|
<path d="M64.1619 81.0805c0 .7675-.3049 1.5037-.8476 2.0463-.5427.5427-1.2787.8475-2.0462.8475-.7675 0-1.5036-.3048-2.0463-.8475-.5427-.5426-.8475-1.2788-.8475-2.0463 0-.7675.3048-1.5035.8475-2.0462.5427-.5427 1.2788-.8476 2.0463-.8476.7675 0 1.5035.3049 2.0462.8476.5427.5427.8476 1.2787.8476 2.0462z"></path>
|
||||||
|
<path d="M64.1619 69.6919c0 .7675-.3049 1.5036-.8476 2.0463s-1.2787.8476-2.0462.8476c-.7675 0-1.5036-.3049-2.0463-.8476s-.8475-1.2788-.8475-2.0463c0-.7674.3048-1.5035.8475-2.0462.5427-.5427 1.2788-.8476 2.0463-.8476.7675 0 1.5035.3049 2.0462.8476.5427.5427.8476 1.2788.8476 2.0462z"></path>
|
||||||
|
<path d="M76.6871 13.9343v1.8515h-.9179v2.8223h.9179v1.8144h7.0742v-1.8144h5.7168v-2.8223h-5.7168v-1.8515z"></path>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -0,0 +1,126 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg176" width="130.81831" height="141.23242" version="1.1" viewBox="0 0 130.81831 141.23242">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<style id="style_factory">
|
||||||
|
.wall { fill:none;stroke:#000;stroke-width:0.2; }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stair-1" d="M39.1426 95.2973V106.58h3.0521V95.2973Z"></path>
|
||||||
|
<path id="stair-2" d="M30.1617 114.287h-6.5965v3.006h6.5965Z"></path>
|
||||||
|
<path id="stair-3" d="M23.7935 120.316h2.8739v1.517h-2.8739Z"></path>
|
||||||
|
<path id="stair-4" d="M28.3251 75.1428v3.0709h1.4402v-3.0709Z"></path>
|
||||||
|
<path id="stair-7" d="m75.1892 95.2502 9.07.0157-.008 2.9515-9.07-.0157Z"></path>
|
||||||
|
<path id="stair-8" d="M87.0874 63.3964v8.3085h2.9758v-8.3085Z"></path>
|
||||||
|
<path id="stair-220" d="M86.1828 49.887V39.5518h4.9597V49.887Z"></path>
|
||||||
|
<path id="stair-221" d="M98.587 39.1456h2.931v-1.2648h-2.931Z"></path>
|
||||||
|
<path id="stair-222" d="M98.4578 9.62181v1.42359H101.4V9.62181Z"></path>
|
||||||
|
<path id="stair-223" d="M45.8568 62.7733h1.3624v4.8857h-1.3624Z"></path>
|
||||||
|
<path id="stair-224" d="M54.4139 60.0327h1.3622v4.8857h-1.3622Z"></path>
|
||||||
|
<path id="stair-69" d="M18.2137 111.316v6.069H20.95v-6.069Zm1.3028 1.166h.1308v3.735h-.1308Z"></path>
|
||||||
|
<path id="stair-96" d="M14.176 69.4637v5.8536h2.7363v-5.8536Zm1.3027 1.125h.1308v3.6016h-.1308Z"></path>
|
||||||
|
<path id="stair-97" d="M52.0882 93.4709v6.0459h2.7363v-6.0459Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-100" d="M70.3349 93.4707v6.0463h2.7363v-6.0463Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-101" d="M96.7289 21.8536h-5.8535V24.59h5.8535Zm-1.125 1.3028v.1308h-3.6016v-.1308Z"></path>
|
||||||
|
<path id="stair-129" d="M46.6849 43.5374v6.0547h2.7364v-6.0547Zm1.3028 1.1637h.1308v3.7253h-.1308Z"></path>
|
||||||
|
<path id="stair-62" d="M28.0307 29.732h-2.7258v-4.1555h2.7258"></path>
|
||||||
|
<path id="stair-127" d="M30.3351 39.7077h-6.3573v3.2048h6.3573Zm-1.5627 1.5258v.1533h-3.3123v-.1533Z"></path>
|
||||||
|
<path id="stair-128" d="M30.3351 65.8672h-6.3573v3.2048h6.3573Zm-1.5628 1.5258v.1532H25.46v-.1532Z"></path>
|
||||||
|
<path id="stair-63" d="M24.7291 87.3812h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-130" d="M24.7418 72.3192h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-131" d="m84.0534 42.6737-1.4406.0027.0125 3.7271 1.4405-.0027Z"></path>
|
||||||
|
<path id="stair-132" d="M83.3833 39.4151h1.2252v-5.4587h-1.2252Z"></path>
|
||||||
|
<path id="stair-140" d="M33.3318 94.6163h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-141" d="M47.7275 94.6592h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-155" d="M52.5058 20.887v-3.4477h-1.1721v3.4477Z"></path>
|
||||||
|
<path id="stair-226" d="M70.98 25.5491V21.945h-1.1722v3.6041Z"></path>
|
||||||
|
<path id="stair-134" d="M92.2973 42.9477v5.8536h3.1411v-5.8536Zm1.4954 1.125h.1502v3.6016h-.1502Z"></path>
|
||||||
|
<path id="stair-135" d="M12.0115 65.0487h3.2275v1.3764h-3.2275Z"></path>
|
||||||
|
<path id="stair-136" d="M53.6835 6.40033h2.9323v1.32034h-2.9323Z"></path>
|
||||||
|
<path id="stair-138" d="M53.1803 30.0761h2.9557v-1.229h-2.9557Z"></path>
|
||||||
|
<path id="stair-139" d="M78.1769 37.6569H75.299v1.3571h2.8779Z"></path>
|
||||||
|
<path id="stair-143" d="M.147886 74.7243v-2.9255H1.55806v2.9255Z"></path>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
|
||||||
|
<g id="Second_Floor" class="shadow">
|
||||||
|
<g id="Floor-2" class="floor">
|
||||||
|
<path d="M33.3813 98.4726v-1.011h-1.259v-2.8613h14.1923v4.8833H33.3813Z"></path>
|
||||||
|
<path d="M51.1934 15.3809v2.0781h1.3222v9.9863h18.5528v-2.0937h-1.3223v-9.9707zm7.8281 2.0781h4.5v7.8926h-4.5z"></path>
|
||||||
|
<path d="M73.3449 33.558h10.1297v5.8515H73.3449Z"></path>
|
||||||
|
<path d="M25.2675 29.6745v9.7168h5.0507v.3847h-5.75v3.2051h6.6387v.1524H18.6171v11.8652h2.0214v2.5566h-2.0214v8.0879h12.5312v.1934h-6.541v3.2031l4.2148.002h2.1954v.2812H27.621v20.0723h5.373V69.3229h-.2519v-.2812h.3339v-3.2051h-.9472v-.1934h.9472V43.1335h-.9531v-.1524h.9531V39.776h-1.6679v-.3847h.8047V37.61h-2.6934v-7.9355zm-3.1407 21.623h8.9649v6.2188h-8.9649v-1.1778h.1914v1.0254h4.1953v-2.8613h-4.1953v.7637h-.1914v-1.9844z"></path>
|
||||||
|
<path d="m84.082 39.7734-9.3769.0254.0078 2.9219 9.3206-.0195v-1.5039h.361v.6308h3.3164v.1856h-3.3164V51.25h7.5586v-.8164h.2285v.8164h3.2969v-.8164h.3106v.8164h7.0899v-5.1543h-.893v-.2754h.893v-5.7148H90.9219v.164h-.1817v-.164h-6.3457v.1191h-.3125Zm6.6582 1.3711h.1817v.5332h1.3554v1.1817h3.1875v-1.1817h4.7032v4.1426h.943v.2754h-5.3219v3.4629h-.3106v-.4316h-3.2969v.4316h-.2285v-7.5449h-3.3437v-.1856h2.1308z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Obstacles-2" class="building">
|
||||||
|
<path d="M21.3459 48.3436h10.6493v.7562H21.3459Z"></path>
|
||||||
|
<path d="M20.9989 45.4439h9.8776v.7563h-9.8776z"></path>
|
||||||
|
<path d="M21.7642 43.134h8.6429v.4207h-8.6429z"></path>
|
||||||
|
<path d="M20.9269 59.8637h4.6571v.5566h-4.6571z"></path>
|
||||||
|
<path d="M28.2032 59.8636h4.6572v.5566h-4.6572z"></path>
|
||||||
|
<path d="M28.2032 62.7201h4.6572v.5566h-4.6572z"></path>
|
||||||
|
<path d="M20.9269 62.7201h4.6571v.5566h-4.6571z"></path>
|
||||||
|
<path d="M21.737 65.2226h7.8177v.4207H21.737Z"></path>
|
||||||
|
<path d="M24.7317 57.517h1.7046v.4207h-1.7046z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs-2" class="stairs">
|
||||||
|
<g id="Stairs-2-down">
|
||||||
|
<use xlink:href="#stair-62"></use>
|
||||||
|
<use xlink:href="#stair-63"></use>
|
||||||
|
<use xlink:href="#stair-130"></use>
|
||||||
|
<use xlink:href="#stair-131"></use>
|
||||||
|
<use xlink:href="#stair-132"></use>
|
||||||
|
<use xlink:href="#stair-140"></use>
|
||||||
|
<use xlink:href="#stair-141"></use>
|
||||||
|
<use xlink:href="#stair-155"></use>
|
||||||
|
<use xlink:href="#stair-226"></use>
|
||||||
|
<use xlink:href="#stair-135"></use>
|
||||||
|
<use xlink:href="#stair-134"></use>
|
||||||
|
<path d="M24.3925 56.1803c.0573-.1252.0599-.2865.1523-.3789.0457-.0457.1937-.0289.25-.043.3211-.0802.5136.1322.8047.211.212.0574.4226.0366.5156.2226.0255.0511.167.2512.1211.3672-.0403.1019-.1495.1287-.2188.1953-.0678.0678-.2119.1341-.2968.1485-.085.0144-.5086-.059-.6211-.0586-.1125.0004-.5046-.0384-.6719-.2227-.0772-.085-.0698-.3657-.0351-.4414z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs-2-up">
|
||||||
|
<use xlink:href="#stair-127"></use>
|
||||||
|
<use xlink:href="#stair-128"></use>
|
||||||
|
<use xlink:href="#stair-69"></use>
|
||||||
|
<use xlink:href="#stair-96"></use>
|
||||||
|
<use xlink:href="#stair-97"></use>
|
||||||
|
<use xlink:href="#stair-100"></use>
|
||||||
|
<use xlink:href="#stair-101"></use>
|
||||||
|
<use xlink:href="#stair-129"></use>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Wall-2" class="wall">
|
||||||
|
<path d="M28.0518 31.8698v-.4631h-2.7843"></path>
|
||||||
|
<path d="M28.0518 33.2588v5.6173h-2.7843"></path>
|
||||||
|
<path d="M23.2582 55.8921v-1.389"></path>
|
||||||
|
<path d="M24.4157 55.8921v-1.389"></path>
|
||||||
|
<path d="M25.5733 55.8921v-1.389"></path>
|
||||||
|
<path d="M20.5601 55.0079v-3.6637h-.463"></path>
|
||||||
|
<path d="M19.0797 51.3442h-.463"></path>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.9 KiB |
|
|
@ -0,0 +1,95 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg176" width="130.81831" height="141.23242" version="1.1" viewBox="0 0 130.81831 141.23242">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<style id="style_factory">
|
||||||
|
.wall { fill:none;stroke:#000;stroke-width:0.2; }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stair-1" d="M39.1426 95.2973V106.58h3.0521V95.2973Z"></path>
|
||||||
|
<path id="stair-2" d="M30.1617 114.287h-6.5965v3.006h6.5965Z"></path>
|
||||||
|
<path id="stair-3" d="M23.7935 120.316h2.8739v1.517h-2.8739Z"></path>
|
||||||
|
<path id="stair-4" d="M28.3251 75.1428v3.0709h1.4402v-3.0709Z"></path>
|
||||||
|
<path id="stair-7" d="m75.1892 95.2502 9.07.0157-.008 2.9515-9.07-.0157Z"></path>
|
||||||
|
<path id="stair-8" d="M87.0874 63.3964v8.3085h2.9758v-8.3085Z"></path>
|
||||||
|
<path id="stair-220" d="M86.1828 49.887V39.5518h4.9597V49.887Z"></path>
|
||||||
|
<path id="stair-221" d="M98.587 39.1456h2.931v-1.2648h-2.931Z"></path>
|
||||||
|
<path id="stair-222" d="M98.4578 9.62181v1.42359H101.4V9.62181Z"></path>
|
||||||
|
<path id="stair-223" d="M45.8568 62.7733h1.3624v4.8857h-1.3624Z"></path>
|
||||||
|
<path id="stair-224" d="M54.4139 60.0327h1.3622v4.8857h-1.3622Z"></path>
|
||||||
|
<path id="stair-69" d="M18.2137 111.316v6.069H20.95v-6.069Zm1.3028 1.166h.1308v3.735h-.1308Z"></path>
|
||||||
|
<path id="stair-96" d="M14.176 69.4637v5.8536h2.7363v-5.8536Zm1.3027 1.125h.1308v3.6016h-.1308Z"></path>
|
||||||
|
<path id="stair-97" d="M52.0882 93.4709v6.0459h2.7363v-6.0459Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-100" d="M70.3349 93.4707v6.0463h2.7363v-6.0463Zm1.3027 1.162h.1309v3.7202h-.1309Z"></path>
|
||||||
|
<path id="stair-101" d="M96.7289 21.8536h-5.8535V24.59h5.8535Zm-1.125 1.3028v.1308h-3.6016v-.1308Z"></path>
|
||||||
|
<path id="stair-129" d="M46.6849 43.5374v6.0547h2.7364v-6.0547Zm1.3028 1.1637h.1308v3.7253h-.1308Z"></path>
|
||||||
|
<path id="stair-62" d="M28.0307 29.732h-2.7258v-4.1555h2.7258"></path>
|
||||||
|
<path id="stair-127" d="M30.3351 39.7077h-6.3573v3.2048h6.3573Zm-1.5627 1.5258v.1533h-3.3123v-.1533Z"></path>
|
||||||
|
<path id="stair-128" d="M30.3351 65.8672h-6.3573v3.2048h6.3573Zm-1.5628 1.5258v.1532H25.46v-.1532Z"></path>
|
||||||
|
<path id="stair-63" d="M24.7291 87.3812h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-130" d="M24.7418 72.3192h2.9143v1.2792h-2.9143"></path>
|
||||||
|
<path id="stair-131" d="m84.0534 42.6737-1.4406.0027.0125 3.7271 1.4405-.0027Z"></path>
|
||||||
|
<path id="stair-132" d="M83.3833 39.4151h1.2252v-5.4587h-1.2252Z"></path>
|
||||||
|
<path id="stair-140" d="M33.3318 94.6163h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-141" d="M47.7275 94.6592h-1.2787v2.9043h1.2787Z"></path>
|
||||||
|
<path id="stair-155" d="M52.5058 20.887v-3.4477h-1.1721v3.4477Z"></path>
|
||||||
|
<path id="stair-226" d="M70.98 25.5491V21.945h-1.1722v3.6041Z"></path>
|
||||||
|
<path id="stair-134" d="M92.2973 42.9477v5.8536h3.1411v-5.8536Zm1.4954 1.125h.1502v3.6016h-.1502Z"></path>
|
||||||
|
<path id="stair-135" d="M12.0115 65.0487h3.2275v1.3764h-3.2275Z"></path>
|
||||||
|
<path id="stair-136" d="M53.6835 6.40033h2.9323v1.32034h-2.9323Z"></path>
|
||||||
|
<path id="stair-138" d="M53.1803 30.0761h2.9557v-1.229h-2.9557Z"></path>
|
||||||
|
<path id="stair-139" d="M78.1769 37.6569H75.299v1.3571h2.8779Z"></path>
|
||||||
|
<path id="stair-143" d="M.147886 74.7243v-2.9255H1.55806v2.9255Z"></path>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g id="Third_Floor" class="shadow">
|
||||||
|
<g id="Floor-3" class="floor">
|
||||||
|
<path d="M25.293 10.2363v.9102h5.0957v12.0371H25.293v.8769h59.6738v-.8769H34.3145V11.1465h62.5293v-.9102zm69.5273 14.3106v.2343l-69.5273-.006v.9063l25.1484.002v12.2052l-13.1641-.002v.9063h3.2071l-.0625 1.709h-7.041v-1.0313h-4.6114l-.0117.1426-.0117.1445h-4.1777v3.2344h6.5058v3.6328h-.168v-3.377h-4.9257v6.1036h4.9257v-1.8301h.168v4.0058h-.168v-1.832h-4.9257v4.6172l4.9257-.1914v-1.832h.168v4.0644h-.168v-2.0039l-4.9257.2109v11.0059h4.9257v-3.5098h.168v3.7579l-3.2539-.0039-3.2519-.0039v3.2324h6.914v.3047H3.89648l-.00586 48.0452H18.3105v-2.024h-.3027l.0059-43.8689H33.959l-.002 27.9609h.9063l.002-10.0976h14.7422l-.002 10.0976h.9062l.0059-54.1152h.6406l-.0059 54.1152h16.5528l.0059-56.0664h1.4726l-.0059 56.0664h16.5547l.0059-47.8965h.5528l-.0039 47.8965h.9062l.002-15.0742h14.7406l-.002 15.0742h.906l.006-47.8965h.516V39.6992H84.0566v.8086l-16.3457-.002v-.4961h-.3105l.1348-.2031-.5938-.3965.334-.5-.1719-.1152 29.8379.0039V24.5469Zm-40.4941 1.1367 40.4941.004v12.205l-40.4941-.0039ZM41.4551 38.793l24.8828.002-.1973.2949.2696.1797-.3653.5488.3535.2344.0489-.0723.3574.2363v.2891l-24.5723-.0039h-.8398zm-8.0742 4.5918h.582l-.002 25.9589h-.58V56.3535Zm1.4882 0h7.3633l6.3321.0059v.2558h-1.8536v1.6953h2.9004l-.0039 39.4512H34.8652Zm14.961.0059h1.3281v.2558h-1.3281zm2.2344 0h14.7402l-.002 9.6777H52.0625Zm18.0253 0h13.9668v8.1699h.7754l-.002 20.5312H70.0879Zm17.1075 8.1699h14.7417l-.002 28.2539H87.1953Zm-34.4668 3.6348h13.375v.5019h-13.375zm-21.8243 1.9394h.168v4.1211h-.168v-2.0605zm21.1563.6895h14.7402l-.0039 39.6698H52.0586ZM13.8066 71.4961h3.3008v3.043h-.3027v2.0723h.3027l-.0039 22.3711H4.79883l.00391-25.4805h9.00386zm56.2813 5.1641h14.7422l-.0039 20.6758H70.084v-.0821h.1914v-1.8945h-.1914ZM4.79883 102.836H17.1035l-.002 12.529H4.79688Z"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Wall-3" class="wall">
|
||||||
|
<path d="M33.4632 43.3852v-.5087"></path>
|
||||||
|
<path d="M33.4632 41.1808v-.6782"></path>
|
||||||
|
<path d="M11.0866 72.0362h.926V69.344"></path>
|
||||||
|
<path d="M9.54317 72.0362H4.56644v-2.6921"></path>
|
||||||
|
<path d="M30.906 60.4972h-2.1865"></path>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs-3" class="stairs">
|
||||||
|
<g id="Stairs-3-down">
|
||||||
|
<use xlink:href="#stair-127"></use>
|
||||||
|
<use xlink:href="#stair-128"></use>
|
||||||
|
<use xlink:href="#stair-69"></use>
|
||||||
|
<use xlink:href="#stair-96"></use>
|
||||||
|
<use xlink:href="#stair-97"></use>
|
||||||
|
<use xlink:href="#stair-100"></use>
|
||||||
|
<use xlink:href="#stair-101"></use>
|
||||||
|
<use xlink:href="#stair-129"></use>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 6.9 KiB |
|
|
@ -0,0 +1,279 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 863 919.333">
|
||||||
|
<defs>
|
||||||
|
<style>.cls-1{fill:#dff2ff;}.cls-12,.cls-2{fill:#ffffa9;}.cls-10,.cls-11,.cls-12,.cls-13,.cls-14,.cls-2,.cls-3,.cls-4,.cls-5,.cls-6{stroke:#000;}.cls-10,.cls-11,.cls-12,.cls-13,.cls-14,.cls-2,.cls-3,.cls-4,.cls-5,.cls-6,.cls-7,.cls-8,.cls-9{stroke-miterlimit:10;}.cls-11,.cls-3{fill:none;}.cls-14,.cls-3,.cls-5{stroke-width:4px;}.cls-4{fill:#0c0c0b;stroke-width:0.5px;}.cls-11,.cls-12,.cls-13,.cls-6,.cls-7,.cls-8,.cls-9{stroke-width:2px;}.cls-7{fill:#fff;}.cls-7,.cls-8,.cls-9{stroke:#888;}.cls-8{fill:#d1e3e8;}.cls-9{fill:#e9f7ff;}.cls-10{fill:#d3d190;}.cls-13{fill:#020201;}.cls-14{fill:#050502;}</style>
|
||||||
|
</defs>
|
||||||
|
<g id="Basement" data-name="Basement">
|
||||||
|
<g id="Floor">
|
||||||
|
<polyline class="cls-1" points="172.333 790 223.333 790 223.333 705 279.333 705 279.333 644 259.333 644 259.333 686 223.333 686 223.333 545 302.333 545 302.333 558 367.333 558 367.333 497 493.333 497 493.333 584 459.333 584 459.333 633 517.333 633 517.633 609 482.333 609 482.333 606 670.333 606 670.333 466 657.333 466 657.333 377 592.333 377 592.333 346 674.333 346 674.333 53 635.333 53 635.333 66 632.333 66 632.333 50.3 635.333 21.7 641.633 2 627.333 2 620.633 20.7 617.333 46.3 617.333 97 632.333 97 632.333 74 635.333 74 635.333 82 656.333 82 656.333 231 634.333 231 634.333 259 656.333 259 656.333 333 592.333 333 592.333 319 605.333 319 605.333 269 561.333 269 561.333 319 572.333 319 572.333 333 487.333 333 487.333 376 458.333 376 458.333 336 303.333 336 303.333 526 222.333 526 222.333 467 189.333 467 189.333 504 204.333 504 204.333 569 166.333 569 166.333 640 203.333 640 203.333 737 172.333 737 172.333 756 204.333 756 204.333 772 172.333 772 172.333 792"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector">
|
||||||
|
<g id="Connector-Ground_Floor" data-name="Connector Ground Floor">
|
||||||
|
<polyline class="cls-2" points="221.5 772.333 221.5 790.833 172.5 790.833 172.5 771.833 205 771.833"/>
|
||||||
|
<polyline class="cls-2" points="205 756.833 171.5 756.833 171.5 735.833 205 735.833"/>
|
||||||
|
<polyline class="cls-2" points="203 467.833 189.5 467.833 189.5 502.833 202.5 502.833 202.5 479.333"/>
|
||||||
|
<polyline class="cls-2" points="570.5 393.333 570.5 442.833 591.5 442.833 591.5 393.333"/>
|
||||||
|
<polyline class="cls-2" points="569 318.833 561 318.833 561.333 268.833 605 268.833 605.333 318.833 592 318.833"/>
|
||||||
|
<polyline class="cls-2" points="482 608.833 518 608.833 517.333 632.833 458.5 632.833 458.5 609.333"/>
|
||||||
|
<polyline class="cls-2" points="259.5 686.333 259.5 644.333 279.5 644 279.5 705.333 259.5 705"/>
|
||||||
|
<polyline class="cls-2" points="654 64.833 635.5 64.833 635.333 52.833 662.5 52.833 662.5 65.333"/>
|
||||||
|
<polyline class="cls-2" points="634.5 247.333 634.5 258.833 657.5 258.833 657.5 247.833 643 247.833"/>
|
||||||
|
<polyline class="cls-2" points="315.5 402.333 315.5 433.833 302.5 433.833 302.5 402.333"/>
|
||||||
|
<polyline class="cls-2" points="355.5 415.333 355.5 383.833 366.5 383.833 366.5 415.333"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Wall">
|
||||||
|
<polyline class="cls-3" points="172.333 790 223.333 790 223.333 705 279.333 705 279.333 644 259.333 644 259.333 686 223.333 686 223.333 545 302.333 545 302.333 558 367.333 558 367.333 497 493.333 497 493.333 584 459.333 584 459.333 633 517.333 633 517.633 609 482.333 609 482.333 606 670.333 606 670.333 466 657.333 466 657.333 377 592.333 377 592.333 346 674.333 346 674.333 53 635.333 53 635.333 66 632.333 66 632.333 50.3 635.333 21.7 641.633 2 627.333 2 620.633 20.7 617.333 46.3 617.333 97 632.333 97 632.333 74 635.333 74 635.333 82 656.333 82 656.333 231 634.333 231 634.333 259 656.333 259 656.333 333 592.333 333 592.333 319 605.333 319 605.333 269 561.333 269 561.333 319 572.333 319 572.333 333 487.333 333 487.333 376 458.333 376 458.333 336 303.333 336 303.333 526 222.333 526 222.333 467 189.333 467 189.333 504 204.333 504 204.333 569 166.333 569 166.333 640 203.333 640 203.333 737 172.333 737 172.333 756 204.333 756 204.333 772 172.333 772 172.333 792"/>
|
||||||
|
<circle class="cls-4" cx="335.633" cy="526" r="23.3"/>
|
||||||
|
<circle class="cls-4" cx="335.633" cy="371" r="23.3"/>
|
||||||
|
<circle class="cls-4" cx="335.633" cy="447.489" r="23.3"/>
|
||||||
|
<polygon class="cls-5" points="439.333 394 569.333 394 569.333 442.5 592.333 442.8 592.333 394 639.333 394 639.333 466 493.333 466 493.333 477 367.333 477 367.333 356 439.333 356 439.333 394"/>
|
||||||
|
<polygon class="cls-5" points="502.333 348 502.333 376 570.333 376 570.333 345 557.333 345 557.333 350 508.333 350 508.333 345 502.333 345 502.333 348"/>
|
||||||
|
<rect class="cls-4" x="627.288" y="565.93" width="42.201" height="13.5" transform="translate(-90.769 1044.937) rotate(-77.08)"/>
|
||||||
|
<rect class="cls-4" x="652.809" y="581.685" width="14.2" height="13.5" transform="translate(-67.589 1107.738) rotate(-80.27)"/>
|
||||||
|
<rect class="cls-4" x="589.133" y="549.7" width="10.8" height="11.3"/>
|
||||||
|
<rect class="cls-4" x="628.644" y="566.892" width="11.9" height="11.5" transform="matrix(0.208, -0.978, 0.978, 0.208, -93.414, 1042.726)"/>
|
||||||
|
<rect class="cls-4" x="566.833" y="565" width="7.3" height="7.3"/>
|
||||||
|
<rect class="cls-4" x="566.833" y="501" width="7.3" height="7.3"/>
|
||||||
|
<rect class="cls-4" x="655.333" y="523" width="12" height="12"/>
|
||||||
|
<rect class="cls-4" x="657.933" y="537.9" width="9.8" height="16.5"/>
|
||||||
|
<rect class="cls-4" x="654.733" y="555.3" width="12" height="12"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Ground_Floor" data-name="Ground Floor">
|
||||||
|
<g id="Floor-2" data-name="Floor">
|
||||||
|
<polygon class="cls-1" points="141 287.667 206.083 288.333 206.25 273.729 164 273 164 138.371 11.167 138.833 11.833 87.917 165 87.833 165 54.333 369 55.333 368.667 33.333 637 32.333 637 12.333 862 12.333 862 62.333 777 62.333 777 110.333 663 110.333 663 176.333 721 176.333 721.25 224.458 711 224.333 711 356.333 679 356.333 679 582.333 833 582.333 833 629.333 679 629.333 679 644.333 419 644.333 419 722.333 370 722.333 370 644.333 223 644.333 223 790.333 103 790.333 103 916.333 56 916.333 56 815.333 24 815.333 24 782.333 3 782.333 3 580.667 24 580.833 24 442.333 163 441.667 163 422.667 153 422.333 154 323.333 141 323.333 141 287.667"/>
|
||||||
|
</g>
|
||||||
|
<g id="Obstacles">
|
||||||
|
<rect class="cls-6" x="389.5" y="318.333" width="30.5" height="11"/>
|
||||||
|
<rect class="cls-6" x="454" y="323.75" width="30.5" height="12" transform="translate(-9.254 -66.774) rotate(4.41)"/>
|
||||||
|
<rect class="cls-6" x="432.25" y="262.583" width="11.25" height="27.345"/>
|
||||||
|
<rect class="cls-6" x="649" y="428.833" width="15" height="39.5"/>
|
||||||
|
<rect class="cls-6" x="515" y="578.5" width="13.5" height="37.5" transform="translate(-190.987 152.112) rotate(-17.436)"/>
|
||||||
|
<rect class="cls-6" x="218.75" y="588.333" width="25.25" height="12"/>
|
||||||
|
<rect class="cls-6" x="158.5" y="134.25" width="29.75" height="9.5" transform="translate(-16.398 -53.084) rotate(7.491)"/>
|
||||||
|
<rect class="cls-6" x="174.25" y="141.833" width="31.25" height="11"/>
|
||||||
|
<rect class="cls-6" x="467" y="389.333" width="18.75" height="37"/>
|
||||||
|
<rect class="cls-6" x="525.333" y="424.125" width="19" height="37.247" transform="translate(-8.226 -63.222) rotate(3.47)"/>
|
||||||
|
<rect class="cls-6" x="352" y="77.583" width="40.25" height="100.75"/>
|
||||||
|
<rect class="cls-6" x="414.25" y="77.583" width="40" height="100.75"/>
|
||||||
|
<rect class="cls-6" x="266" y="149.333" width="14" height="15.75"/>
|
||||||
|
<rect class="cls-6" x="596.167" y="513.333" width="18.167" height="35.333"/>
|
||||||
|
<rect class="cls-6" x="627.5" y="508.5" width="18.833" height="36"/>
|
||||||
|
<rect class="cls-6" x="591.5" y="480.667" width="32.833" height="16.667"/>
|
||||||
|
<rect class="cls-6" x="565.75" y="529.5" width="36.75" height="18.5" transform="translate(-206.034 256.688) rotate(-24.319)"/>
|
||||||
|
</g>
|
||||||
|
<g id="Ledge">
|
||||||
|
<rect class="cls-7" x="303" y="336.333" width="65" height="224"/>
|
||||||
|
<polyline class="cls-8" points="488 329.333 488 276.333 498 276.256 498 329.333"/>
|
||||||
|
<polyline class="cls-8" points="518 329.333 518 276.333 529 276.256 529 329.333"/>
|
||||||
|
<polyline class="cls-9" points="468 156.333 468 170.333 338 170.333 338 156.333"/>
|
||||||
|
<polyline class="cls-9" points="348 156.333 348 82.333 379 82.333 379 156.333 427 156.333 427 82.333 459 82.333 459 156.333"/>
|
||||||
|
<polyline class="cls-9" points="544 293.333 544 268.333 490 268.333 490 250.333 553 250.333 553 293.333"/>
|
||||||
|
<polyline class="cls-8" points="184 524.333 184 444.333 220.333 444.333 219.667 577.333 184 577.333 184 532.333"/>
|
||||||
|
<polyline class="cls-9" points="480 121.333 477 121.333 477 60.333 581 60.333 581 121.333 488 121.333"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-2" data-name="Connector">
|
||||||
|
<g id="Connector-2-Basement" data-name="Connector Basement">
|
||||||
|
<polyline class="cls-10" points="256.5 610.333 256.5 644.833 281.5 644.833 281.5 610.333"/>
|
||||||
|
<polyline class="cls-10" points="163 774.833 222.5 774.833 222.5 789.833 163 789.833"/>
|
||||||
|
<polyline class="cls-10" points="160 737.833 199.5 737.833 199.5 756.833 160 756.833"/>
|
||||||
|
<polyline class="cls-10" points="543 634.833 483.5 634.833 483.5 608.833 543 608.833"/>
|
||||||
|
<polyline class="cls-10" points="190.5 500.333 190.5 475.833 201.5 475.833 201.5 500.333"/>
|
||||||
|
<polyline class="cls-10" points="303 433.833 312.5 433.833 312.5 402.833 302.5 402.833 302.5 425.333"/>
|
||||||
|
<polyline class="cls-10" points="367.5 396.333 367.5 415.833 357.5 415.833 357.5 383.833 367 383.833"/>
|
||||||
|
<polyline class="cls-10" points="572.5 464.333 572.5 394.833 591.5 394.833 591.5 464.333"/>
|
||||||
|
<polyline class="cls-10" points="562.5 251.333 562.5 318.833 605.5 318.833 605.5 251.333"/>
|
||||||
|
<polyline class="cls-10" points="649 245.833 668.5 245.833 668.5 256.833 649 256.833"/>
|
||||||
|
<polyline class="cls-10" points="647 64.833 668.5 64.833 668.5 54.833 647 54.833"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-2-First_Floor" data-name="Connector First Floor">
|
||||||
|
<polyline class="cls-2" points="178.5 171.333 178.5 187.833 167.5 187.833 167.5 154.833 187.5 154.833 187.5 171.333"/>
|
||||||
|
<polyline class="cls-2" points="158 562.833 184.5 562.833 184.5 572.833 158 572.833"/>
|
||||||
|
<polyline class="cls-2" points="159 446.833 184.5 446.833 184.5 457.833 159 457.833"/>
|
||||||
|
<polyline class="cls-2" points="190 442.833 164.5 442.833 164.5 421.833 190 421.833"/>
|
||||||
|
<polyline class="cls-2" points="194.375 251.5 162.5 251.833 162.5 273.333 194.375 273.538"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-2-Second_Floor" data-name="Connector Second Floor">
|
||||||
|
<polyline class="cls-2" points="316.5 307.333 316.5 276.833 333.5 276.833 333.5 306.833 326 306.833 325.833 283.833 324.667 283.833 324.5 307.333"/>
|
||||||
|
<polyline class="cls-2" points="95.5 477.333 95.5 443.833 115.5 443.833 115.5 476.833 106.5 476.833 106.5 452.208 105.5 452.083 105.5 477.333"/>
|
||||||
|
<polyline class="cls-2" points="144.5 717.333 144.5 758.833 123.5 758.833 123.5 716.833 133.5 716.833 133.5 747.833 134.5 747.833 134.5 717.333"/>
|
||||||
|
<polyline class="cls-2" points="609 132.833 636.5 132.833 636.5 156.833 595.5 156.833 595.5 144.833 627.5 144.833 628.5 144.833 609 144.833"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Wall-2" data-name="Wall">
|
||||||
|
<path class="cls-11" d="M200,283" transform="translate(-36 -31.667)"/>
|
||||||
|
<path class="cls-11" d="M287,283" transform="translate(-36 -31.667)"/>
|
||||||
|
<line class="cls-11" x1="197" y1="323.333" x2="154" y2="323.333"/>
|
||||||
|
<line class="cls-11" x1="208" y1="421.333" x2="163" y2="421.333"/>
|
||||||
|
<line class="cls-11" x1="208" y1="442.333" x2="163" y2="442.333"/>
|
||||||
|
<polyline class="cls-11" points="47.75 513.833 43.25 474.083 58.5 472.583 62.5 512.333"/>
|
||||||
|
<line class="cls-11" x1="55" y1="562.333" x2="99" y2="562.333"/>
|
||||||
|
<line class="cls-11" x1="55" y1="578.333" x2="99" y2="578.333"/>
|
||||||
|
<rect class="cls-6" x="321.25" y="593" width="31.25" height="8.5" transform="translate(-269.499 184.971) rotate(-26.86)"/>
|
||||||
|
<polyline class="cls-11" points="24 724.333 24 758.333 200 758.333 200 736.5 160 736.333"/>
|
||||||
|
<polyline class="cls-11" points="185 578.333 221 578.333 221 442.333 217 442.333"/>
|
||||||
|
<polyline class="cls-11" points="24 711.333 24 674.333 24 603.333"/>
|
||||||
|
<line class="cls-11" x1="24" y1="590.333" x2="24" y2="581.333"/>
|
||||||
|
<line class="cls-11" x1="43.25" y1="634.667" x2="118.333" y2="607.667"/>
|
||||||
|
<line class="cls-11" x1="49.333" y1="650.667" x2="123" y2="623.167"/>
|
||||||
|
<line class="cls-11" x1="221" y1="426.333" x2="221" y2="279.333"/>
|
||||||
|
<line class="cls-11" x1="221" y1="269.333" x2="221" y2="251.333"/>
|
||||||
|
<line class="cls-11" x1="245" y1="224.333" x2="245" y2="178.333"/>
|
||||||
|
<line class="cls-11" x1="260" y1="224.333" x2="260" y2="178.333"/>
|
||||||
|
<polyline class="cls-11" points="267 145.333 307 145.333 307 106.333"/>
|
||||||
|
<line class="cls-11" x1="267" y1="126.333" x2="307" y2="126.333"/>
|
||||||
|
<polyline class="cls-11" points="315 145.333 326 145.333 326 106.333"/>
|
||||||
|
<line class="cls-11" x1="485" y1="251.333" x2="485" y2="224.333"/>
|
||||||
|
<polyline class="cls-11" points="485 216.333 485 212.333 533 212.333"/>
|
||||||
|
<polyline class="cls-11" points="543 212.333 548 212.333 548 251.333"/>
|
||||||
|
<polyline class="cls-11" points="440 54.333 628 54.333 638.167 54.333 675 54.333"/>
|
||||||
|
<line class="cls-11" x1="638" y1="71.333" x2="638" y2="54.333"/>
|
||||||
|
<line class="cls-11" x1="638" y1="82.333" x2="638" y2="159.333"/>
|
||||||
|
<line class="cls-11" x1="638" y1="173.333" x2="638" y2="208.333"/>
|
||||||
|
<polyline class="cls-11" points="638 222.333 638 225.333 650 225.333"/>
|
||||||
|
<line class="cls-11" x1="661" y1="225.333" x2="675" y2="225.333"/>
|
||||||
|
<line class="cls-11" x1="638" y1="238.333" x2="638" y2="248.333"/>
|
||||||
|
<line class="cls-11" x1="638" y1="229.333" x2="638" y2="226.333"/>
|
||||||
|
<line class="cls-11" x1="56" y1="839.333" x2="66" y2="839.333"/>
|
||||||
|
<line class="cls-11" x1="76" y1="839.333" x2="103" y2="839.333"/>
|
||||||
|
<polyline class="cls-11" points="223 644.333 223 610.333 257 610.333 257 644.333"/>
|
||||||
|
<polyline class="cls-11" points="282 644.333 282 610.333 306 610.333 306 631.333"/>
|
||||||
|
<polyline class="cls-11" points="585 598.333 585 586.333 667 586.333 667 598.333"/>
|
||||||
|
<polyline class="cls-11" points="667 615.333 667 627.333 585 627.333 585 615.333"/>
|
||||||
|
<line class="cls-11" x1="369" y1="54.333" x2="386" y2="54.333"/>
|
||||||
|
<line class="cls-11" x1="396" y1="54.333" x2="430" y2="54.333"/>
|
||||||
|
<line class="cls-11" x1="777" y1="62.333" x2="777" y2="30.333"/>
|
||||||
|
<line class="cls-11" x1="56" y1="799.333" x2="56" y2="758.333"/>
|
||||||
|
<line class="cls-11" x1="103" y1="769.333" x2="103" y2="758.333"/>
|
||||||
|
<line class="cls-11" x1="103" y1="782.333" x2="103" y2="790.333"/>
|
||||||
|
<line class="cls-11" x1="25" y1="772.333" x2="25" y2="782.333"/>
|
||||||
|
<line class="cls-11" x1="390" y1="644.333" x2="419" y2="644.333"/>
|
||||||
|
<line class="cls-11" x1="378" y1="644.333" x2="370" y2="644.333"/>
|
||||||
|
<line class="cls-11" x1="679" y1="623.333" x2="679" y2="627.333"/>
|
||||||
|
<line class="cls-11" x1="679" y1="582.333" x2="679" y2="611.333"/>
|
||||||
|
<line class="cls-11" x1="762" y1="611.333" x2="762" y2="582.333"/>
|
||||||
|
<line class="cls-11" x1="762" y1="623.333" x2="762" y2="629.333"/>
|
||||||
|
<line class="cls-6" x1="164" y1="138.333" x2="164" y2="107.333"/>
|
||||||
|
<line class="cls-6" x1="164" y1="94.333" x2="164" y2="88.333"/>
|
||||||
|
<line class="cls-6" x1="88" y1="107.333" x2="88" y2="138.333"/>
|
||||||
|
<line class="cls-6" x1="88" y1="94.333" x2="88" y2="88.333"/>
|
||||||
|
<polyline class="cls-6" points="379 251.333 355 251.333 325 251.333"/>
|
||||||
|
<line class="cls-6" x1="391" y1="251.333" x2="423" y2="251.333"/>
|
||||||
|
<line class="cls-6" x1="280" y1="247.333" x2="330" y2="247.333"/>
|
||||||
|
<line class="cls-6" x1="330" y1="230.333" x2="280" y2="230.333"/>
|
||||||
|
<line class="cls-11" x1="205" y1="247.333" x2="164" y2="247.333"/>
|
||||||
|
<line class="cls-11" x1="217" y1="251.333" x2="251" y2="251.333"/>
|
||||||
|
<line class="cls-11" x1="221" y1="323.333" x2="216" y2="323.333"/>
|
||||||
|
<line class="cls-11" x1="154" y1="371.333" x2="197" y2="371.333"/>
|
||||||
|
<line class="cls-11" x1="185" y1="322.333" x2="185" y2="301.333"/>
|
||||||
|
<line class="cls-11" x1="185" y1="288.333" x2="185" y2="292.333"/>
|
||||||
|
<line class="cls-11" x1="218" y1="289.333" x2="221" y2="289.333"/>
|
||||||
|
<line class="cls-11" x1="209" y1="289.333" x2="206" y2="289.333"/>
|
||||||
|
<polyline class="cls-11" points="307 276.333 303 276.333 303 303.333"/>
|
||||||
|
<polyline class="cls-11" points="303 314.333 303 318.333 355 318.333 355 276.333"/>
|
||||||
|
<line class="cls-11" x1="355" y1="267.333" x2="355" y2="251.333"/>
|
||||||
|
<line class="cls-11" x1="334" y1="297.333" x2="334" y2="251.333"/>
|
||||||
|
<line class="cls-11" x1="316" y1="276.333" x2="334" y2="276.333"/>
|
||||||
|
<line class="cls-12" x1="200" y1="736.333" x2="200" y2="714.333"/>
|
||||||
|
<circle class="cls-6" cx="336" cy="525.833" r="23"/>
|
||||||
|
<circle class="cls-6" cx="336" cy="370.833" r="23"/>
|
||||||
|
<circle class="cls-6" cx="336" cy="447.833" r="23"/>
|
||||||
|
<circle class="cls-6" cx="408.25" cy="370.583" r="18.75"/>
|
||||||
|
<circle class="cls-6" cx="408.25" cy="525.583" r="18.75"/>
|
||||||
|
<circle class="cls-6" cx="408.25" cy="447.583" r="18.75"/>
|
||||||
|
<line class="cls-11" x1="221" y1="438.333" x2="221" y2="442.333"/>
|
||||||
|
<line class="cls-11" x1="218" y1="421.333" x2="221" y2="421.333"/>
|
||||||
|
<rect class="cls-13" x="483.833" y="82.333" width="88.833" height="17.167"/>
|
||||||
|
<rect class="cls-13" x="490.167" y="68.667" width="45.833" height="12.833"/>
|
||||||
|
<rect class="cls-13" x="490.167" y="100.167" width="45.833" height="12.667"/>
|
||||||
|
<line class="cls-11" x1="777" y1="17.333" x2="777" y2="13.333"/>
|
||||||
|
<polygon class="cls-3" points="140 287.667 205.583 288.333 205.5 273.729 163 273 163 138.371 10.667 138.833 11.083 87.917 164 87.833 164 55.333 369 55.333 368.667 33.333 636 33.333 636 13.333 861 13.333 861 63.333 776 63.333 776 111.333 662 111.333 662 177.333 720 177.333 720 224.708 710 224.333 710 357.333 678 357.333 678 583.333 832 583.333 832 630.333 678 630.333 678 645.333 418 645.333 418 723.333 369 723.333 369 645.333 222 645.333 222 791.333 102 791.333 102 917.333 55 917.333 55 816.333 23 816.333 23 783.333 2 783.333 2 580.667 23 580.833 23 442.333 162 441.667 162 422.667 153 422.333 153 324.333 140 324.333 140 287.667"/>
|
||||||
|
<polyline class="cls-14" points="480 251.333 554 251.333 554 331.333 679 331.333 679 336.333 689 336.333 689 226.333 675 226.333 675 258.333 637 258.333 637 248.333 606 248.333 606 318.333 593 318.333 563 318.333 563 251.333 554 251.333"/>
|
||||||
|
<polyline class="cls-3" points="453 495.333 453 251.333 434 251.333"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="First_Floor" data-name="First Floor">
|
||||||
|
<g id="Floor-3" data-name="Floor">
|
||||||
|
<polygon class="cls-1" points="169 176.333 165 176.333 165 239.333 165 259.333 130 259.333 130 420.333 162 420.333 162 440.333 185 440.333 185 578.333 221 578.333 221 226.333 197 226.333 197 176.333 169 176.333"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-3" data-name="Connector">
|
||||||
|
<g id="Connector-3-Ground_Floor" data-name="Connector Ground Floor">
|
||||||
|
<polyline class="cls-10" points="176.5 176.333 176.5 162.833 178.5 162.833 178.5 176.833 187.5 176.833 187.5 154.833 167.5 154.833 167.5 177.333"/>
|
||||||
|
<polyline class="cls-10" points="191 429.833 162.5 429.833 162.5 420.833 191 420.833"/>
|
||||||
|
<polyline class="cls-10" points="185 446.833 159.5 446.833 159.5 457.833 185 457.833"/>
|
||||||
|
<polyline class="cls-10" points="185 562.833 158.5 562.833 158.5 572.833 185 572.833"/>
|
||||||
|
<polyline class="cls-10" points="167.542 350.458 169.833 349 172.25 350 176.5 349 176.5 352.333 177.458 354.875 175.042 357.833 173.146 356.5 170.906 357.833 170.333 356 167.331 357.167 166.915 355.583"/>
|
||||||
|
<polyline class="cls-10" points="193 249.833 164.5 249.833 164.5 240.833 193 240.833"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-3-Second_Floor" data-name="Connector Second Floor">
|
||||||
|
<polyline class="cls-2" points="191 439.833 162.5 439.833 162.5 430.833 191 430.833"/>
|
||||||
|
<polyline class="cls-2" points="193 259.833 164.5 259.833 164.5 250.833 193 250.833"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Wall-3" data-name="Wall">
|
||||||
|
<polyline class="cls-11" points="185 572.333 185 578.333 221 578.333 221 440.333 218 440.333"/>
|
||||||
|
<line class="cls-11" x1="185" y1="562.333" x2="185" y2="457.333"/>
|
||||||
|
<polyline class="cls-11" points="185 447.333 185 440.333 208 440.333"/>
|
||||||
|
<polyline class="cls-11" points="189 190.333 189 187.333 165 187.333"/>
|
||||||
|
<line class="cls-11" x1="189" y1="199.333" x2="189" y2="240.333"/>
|
||||||
|
<polyline class="cls-11" points="176 176.333 197 176.333 197 226.333 221 226.333 221 254.333 221 440.333"/>
|
||||||
|
<polyline class="cls-11" points="208 420.333 162 420.333 162 440.333"/>
|
||||||
|
<line class="cls-11" x1="218" y1="420.333" x2="221" y2="420.333"/>
|
||||||
|
<line class="cls-11" x1="219" y1="259.333" x2="221" y2="259.333"/>
|
||||||
|
<line class="cls-11" x1="165" y1="259.333" x2="208" y2="259.333"/>
|
||||||
|
<line class="cls-11" x1="219" y1="241.333" x2="221" y2="241.333"/>
|
||||||
|
<path class="cls-11" d="M186,385v6h29V372H186v5" transform="translate(-36 -31.667)"/>
|
||||||
|
<line class="cls-11" x1="157" y1="349.333" x2="157" y2="340.333"/>
|
||||||
|
<line class="cls-11" x1="165" y1="349.333" x2="165" y2="340.333"/>
|
||||||
|
<line class="cls-11" x1="172" y1="349.333" x2="172" y2="340.333"/>
|
||||||
|
<polygon class="cls-6" points="150 340.333 150 322.333 208 322.333 208 359.333 179 359.333 179 340.333 150 340.333"/>
|
||||||
|
<polyline class="cls-6" points="131 359.333 142 359.333 142 350.333 131 350.333"/>
|
||||||
|
<line class="cls-11" x1="143" y1="380.333" x2="178" y2="380.333"/>
|
||||||
|
<line class="cls-11" x1="143" y1="403.333" x2="178" y2="403.333"/>
|
||||||
|
<line class="cls-11" x1="188" y1="403.333" x2="221" y2="403.333"/>
|
||||||
|
<line class="cls-11" x1="188" y1="380.333" x2="221" y2="380.333"/>
|
||||||
|
<rect class="cls-6" x="144" y="300.333" width="69" height="6"/>
|
||||||
|
<rect class="cls-6" x="144" y="276.333" width="64" height="6"/>
|
||||||
|
<rect class="cls-6" x="149" y="259.333" width="56" height="5"/>
|
||||||
|
<polyline class="cls-11" points="142 342.333 142 322.333 139 322.333"/>
|
||||||
|
<line class="cls-11" x1="133" y1="322.333" x2="130" y2="322.333"/>
|
||||||
|
<polyline class="cls-11" points="185 440.333 162 440.333 162 420.333 130 420.333 130 259.333 165 259.333 165 241.333 208 241.333"/>
|
||||||
|
<polyline class="cls-11" points="165 259.333 165 176.333 168 176.333"/>
|
||||||
|
<line class="cls-11" x1="130" y1="259.333" x2="149" y2="259.333"/>
|
||||||
|
<line class="cls-11" x1="162" y1="420.333" x2="130" y2="420.333"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Second_Floor" data-name="Second Floor">
|
||||||
|
<g id="Floor-4" data-name="Floor">
|
||||||
|
<polygon class="cls-1" points="101 458.333 220 458.333 220 266.333 332 266.333 332 248.333 162 248.333 162 274.333 158 276.833 158 443.333 24 443.333 24 474.333 91 474.333 91 458.333 101 458.333"/>
|
||||||
|
</g>
|
||||||
|
<g id="Wall-4" data-name="Wall">
|
||||||
|
<polyline class="cls-3" points="317 265.333 221 265.333 221 442.333 217 442.333"/>
|
||||||
|
<polyline class="cls-3" points="333 266.333 333 247.333 221 247.333 221 242.333 163 242.333 163 261.333 159 261.333 159 423.083 159 442.333 205 442.333"/>
|
||||||
|
<line class="cls-11" x1="205" y1="373.333" x2="205" y2="403.333"/>
|
||||||
|
<polyline class="cls-11" points="205 411.333 205 421.333 159 421.333"/>
|
||||||
|
<polyline class="cls-11" points="205 362.333 205 355.333 159 355.333"/>
|
||||||
|
<line class="cls-11" x1="205" y1="341.333" x2="205" y2="355.333"/>
|
||||||
|
<polyline class="cls-11" points="205 331.333 205 314.333 159 314.333"/>
|
||||||
|
<polyline class="cls-11" points="163 262.333 205 262.333 205 294.333"/>
|
||||||
|
<line class="cls-11" x1="205" y1="301.333" x2="205" y2="314.333"/>
|
||||||
|
<line class="cls-11" x1="221" y1="264.333" x2="221" y2="261.333"/>
|
||||||
|
<line class="cls-11" x1="221" y1="251.333" x2="221" y2="247.333"/>
|
||||||
|
<polyline class="cls-3" points="221 442.333 221 458.333 106 458.333"/>
|
||||||
|
<polyline class="cls-3" points="95 458.333 92 458.333 92 473.333 25 473.333 25 442.333 159 442.333"/>
|
||||||
|
<polyline class="cls-11" points="76 462.333 82 462.333 82 442.333"/>
|
||||||
|
<line class="cls-11" x1="66" y1="462.333" x2="25" y2="462.333"/>
|
||||||
|
<line class="cls-11" x1="205" y1="389.333" x2="182" y2="389.333"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-4" data-name="Connector">
|
||||||
|
<g id="Connector-4-First_Floor" data-name="Connector First Floor">
|
||||||
|
<polyline class="cls-12" points="196 262.333 163 262.333 163 242.333 196 242.333"/>
|
||||||
|
<polyline class="cls-12" points="190 441.333 160 441.333 160 421.333 190 421.333"/>
|
||||||
|
</g>
|
||||||
|
<g id="Connector-4-Ground_Floor" data-name="Connector Ground Floor">
|
||||||
|
<polyline class="cls-12" points="317 265.333 317 300.333 333 300.333 333 265.333"/>
|
||||||
|
<polyline class="cls-12" points="92 458.333 92 493.333 108 493.333 108 458.333"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 183 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 111 KiB |
|
After Width: | Height: | Size: 142 KiB |
|
|
@ -0,0 +1,235 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Ground Zero (TarkovDev)",
|
||||||
|
"Author": "Tarkov.dev",
|
||||||
|
"AuthorLink": "https://tarkov.dev",
|
||||||
|
"MapInternalNames": [ "Sandbox", "Sandbox_high" ],
|
||||||
|
"CoordinateRotation": 180,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -99, "y": -124},
|
||||||
|
"Max": {"x": 249, "y": 364}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Garage": {
|
||||||
|
"Level": -1,
|
||||||
|
"ImagePath": "Maps/GroundZero_TarkovDev/Layers/ground_zero_layer_-1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -99, "y": -124},
|
||||||
|
"Max": {"x": 249, "y": 364}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // garage
|
||||||
|
"Min": {"x": 43, "y": -100, "z": -100},
|
||||||
|
"Max": {"x": 117, "y": 190, "z": 21}
|
||||||
|
},
|
||||||
|
{ // underpass
|
||||||
|
"Min": {"x": 117, "y": 49, "z": -100},
|
||||||
|
"Max": {"x": 143, "y": 80, "z": 21}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Ground Floor": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/GroundZero_TarkovDev/Layers/ground_zero_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -99, "y": -124},
|
||||||
|
"Max": {"x": 249, "y": 364}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -99, "y": -124, "z": -100},
|
||||||
|
"Max": {"x": 249, "y": 364, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"2nd Floor": {
|
||||||
|
"Level": 1,
|
||||||
|
"ImagePath": "Maps/GroundZero_TarkovDev/Layers/ground_zero_layer_1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -99, "y": -124},
|
||||||
|
"Max": {"x": 249, "y": 364}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // rest of 2nd floor
|
||||||
|
"Min": {"x": -99, "y": -124, "z": 28},
|
||||||
|
"Max": {"x": 249, "y": 364, "z": 32.3}
|
||||||
|
},
|
||||||
|
{ // m showroom
|
||||||
|
"Min": {"x": 91, "y": 216, "z": 26},
|
||||||
|
"Max": {"x": 98, "y": 228, "z": 31}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"3rd Floor": {
|
||||||
|
"Level": 2,
|
||||||
|
"ImagePath": "Maps/GroundZero_TarkovDev/Layers/ground_zero_layer_2.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -99, "y": -124},
|
||||||
|
"Max": {"x": 249, "y": 364}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -99, "y": -124, "z": 32.3},
|
||||||
|
"Max": {"x": 249, "y": 364, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
{
|
||||||
|
"Text": "TerraGroup",
|
||||||
|
"Position": {"x": -50, "y": 0, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Skyside",
|
||||||
|
"Position": {"x": 150, "y": 1, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Fusion",
|
||||||
|
"Position": {"x": 141, "y": 142, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Empire",
|
||||||
|
"Position": {"x": 14, "y": 201, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Capital Insight",
|
||||||
|
"Position": {"x": 115, "y": 285, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Nakatani",
|
||||||
|
"Position": {"x": 2, "y": 324, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Elemental Global",
|
||||||
|
"Position": {"x": 80, "y": -118, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Oasis",
|
||||||
|
"Position": {"x": 115, "y": 104, "z": 22},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ASAP Winery",
|
||||||
|
"Position": {"x": 115, "y": 30, "z": 22},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tarbank",
|
||||||
|
"Position": {"x": 43, "y": 150, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "GAGRIN Hotel",
|
||||||
|
"Position": {"x": 58, "y": 234, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "M Showroom",
|
||||||
|
"Position": {"x": 97, "y": 223, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Science Offices",
|
||||||
|
"Position": {"x": -13, "y": 48, "z": 29},
|
||||||
|
"FontSize": 12
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Scav Checkpoint (Co-op)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 26.1550121, "y": -82.52659, "z": 24.5091858 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Police Cordon V-Ex",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -19.5134068, "y": 114.942139, "z": 23.7110023 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {"r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Emercom Checkpoint",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 151.625, "y": -97.45658, "z": 24.662056 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {"r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Nakatani Basement Stairs",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -16.1249924, "y": 335.063416, "z": 14.7620564 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {"r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Mira Ave (Flare)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 218.225, "y": -38.5065842, "z": 17.9920559 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {"r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Streets of Tarkov",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 222.829117, "y": 65.72, "z": 15.993 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {"r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tartowers Sales Office (Secret)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 190.804, "y": 133.388992, "z": 17.6449986 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {"r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Underground Parking Utility Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 107.056, "y": 50.6362534, "z": 13.499 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0},
|
||||||
|
"AssociatedItemId": "658199972dc4e60f6d556a2f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "TerraGroup Science Offices",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -17.975647, "y": 58.5532341, "z": 30.7062054 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0},
|
||||||
|
"AssociatedItemId": "658199aa38c79576a2569e13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Unity Credit Bank Cash Register",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 58.2430344, "y": 172.438, "z": 24.5026741 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0},
|
||||||
|
"AssociatedItemId": "6581998038c79576a2569e11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Horse Restaurant Toilet",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 120.074966, "y": 149.382675, "z": 25.4368019 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0},
|
||||||
|
"AssociatedItemId": "658199a0490414548c0fa83b"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 49 KiB |
|
|
@ -0,0 +1,44 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg1" version="1.1" viewBox="0 0 348.92543 488.44792">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g id="Second_Floor" class="shadow">
|
||||||
|
<g id="Floor-2" class="floor">
|
||||||
|
<path d="M75.1677 163.281v-2.34h-1.0135v-12.103h-5.3323l-.0171-.127-.2098-2.332-.2064-2.303-.0138-.097h10.4595v16.962h-1.8482v1.371h.0596v-.775h1.7886v4.084h-3.6666Z"/>
|
||||||
|
<path d="M274.296 209.918v-7.274h-.239V216.893h-5.246v-.053l.047-.41.048-.356-.015-.507-.015-.507-.076-.363-.076-.363-.241-.576-.242-.576-.607-1.154-.608-1.153-.619-.918-.619-.918-.708-.805-.708-.805-.56-.511-.561-.512-2.53-2.002-4.189-3.295-1.657-1.293-.45-.416-.449-.415-.318-.404-.318-.404-.285-.523-.284-.523-.174-.515-.174-.515-.185-1.013-.185-1.014.019-1.162.019-1.163.058-.551.312-2.132.253-1.58.269-1.237.561-2.385.294-1.147 5.668-.008 5.668-.007v1.729h.209v-1.55h1.073v-.239h-12.598l2.109-9.218 2.236-9.771h11.204v19.019h-1.938v.209h2.236v-.203l1.795-2.749h1.574l-.001-.469.005-.877h-.089l-.005.288v.283l-1.967-.008v-2.436h1.967v.537h.09v-.835h4.858v5.038h1.342v-2.415H283.865v-3.607h4.888v-1.55h-.238v-1.311h.835v-.096l-.631-.004-5.604-.02h-4.974v-2.891h15.322v4.292h-1.818v1.58h3.994V194.439l-4.538 4.295-4.539 4.294-3.48.002-3.48.002V201.631h-.179v1.282h-1.431v6.319H279.393v3.548H277.992v4.411h-3.696zm0-9.652v-1.424l-.492-.487-8.42-3.059-.001-4.955v-4.956h-.209v10.157l8.577 3.081.306.295V201.691h.239zm5.306-.319v-.701h4.188l2.087-2.014 2.095-2.039-.575-.686h-1.468l-1.468-.001v-8.555H279.274v-1.938H277.933v.464l-1.109 1.721-1.108 1.72h-3.328l-1.554.777-1.554.777.022 1.645.026 1.649 4.252 1.467 4.439 1.531v3.631h1.404v1.252h.179z"/>
|
||||||
|
<path d="m121.771 238.68-4.393-4.438v-9.211h-.209V227.118h-2.355v-.179h-.238v2.325l-1.289-.004-1.193-.017.097-.012V226.85h-.119v-3.935H117.169v.477h.209v-11.507h12.46v3.428h-.089v.179h-3.283l-2.77 2.77-2.771 2.769v11.276l7.84 7.868h11.331l2.771-2.772 2.771-2.771V231.351h.149v-.119h1.751l1.817.018.066.018.001 6.316.002 6.317-11.246-.002-11.246-.002z"/>
|
||||||
|
<path d="M193.72 280.954v-6.021h-8.048V250.996h15.024v11.148h-2.981V268.941h.835v-.149H199.593v.149H200.756v-.149h1.073v.149h3.01v-.328h-1.252v-7.631h9.652l.018.071.017 3.815-.002 3.745H212.053v.328h2.832v7.482h-2.116v.388h.566V278.808h-2.414V276.811h.536v-.388h-2.146v.149h-1.312v-.149h-1.908v-3.488h-.655v.209h.447v3.965h-8.049v-3.965h3.458V274.933h-.894v.357H203.319v-.357h-1.162V273.14l.924.004h.775v-.209h-6.129l-.006 2.937-.007 2.936h.269v-.537h5.008v6.141h-5.008v-.477h-.268v3.041h-3.995z"/>
|
||||||
|
<path d="M134.429 299.913v-3.011H137.172v-1.013h-.269v.745h-3.01l-.001-.768.001-3.13.001-2.362h-14.34v-.358h-.149v-2.355h.149v-.328H128.527v-.238h-.732l-.186-.187-.185-.187v-2.359l.213-.169.213-.168h3.986v-.209H129.093v-.358h-3.309v-10.344H122.879l-.216-.215-.217-.215.001-1.328.001-1.327.246-.213.246-.212 1.415.005 1.489-.006V262.45l.25-.227.251-.228h23.078V287.006h-3.726v-3.19h-.298v3.19h-4.114v-3.19h-.298v3.19h-4.084v-3.19h-3.04v.209h.685v2.648l-.231.211-.231.211h-4.397v.238h6.26V293.236h.954V294.339h.269v-1.074h3.785v.954h2.832v-.387h5.128v8.496H143.73v-5.754h-2.623v2.027h-.03l-.03.043v4.28h-6.618zm12.073-1.848v-1.342h-.238v2.683h.238z"/>
|
||||||
|
<path d="M116.722 328.739v-2.444h.567v-1.372H122.028v1.372h4.859v-1.372h11.947l.391-.406.391-.407v-11.885H140.957V307.306H139.616v-3.16h1.194l-.087-.984H143.342v5.068h1.729l.001 5.463v5.462l.357.235.358.235v6.786l-2.378 2.379-2.377 2.378-12.155.008-12.155.008z"/>
|
||||||
|
<path d="M151.123 351.812v-1.044h4.68v-.298h-1.998v-7.482H154.968v-.209H151.749v-2.146l.514-.002.53-.006.449-.108.399-.003h.398l.571.1 1.677.014 1.602.005-.002.095h.073l-.007 5.794-.007 5.791h-.057v.542h-6.766z"/>
|
||||||
|
<path d="m139.34 439.739-9.353-4.447-22.148-34.981v-20.806h6.811l6.812.022 1.818.022h1.819v-2.578h2.027v7.661h-3.19v-1.52h-.408l-.019.988-.02 1.715v.726l-.566.392 1.088.024h1.088v3.518h-11.864V400.532l6.737 10.631.119-.089-2.147-3.366 7.97-5.064 1.548 2.375.521-.294 6.4 10.077-.492.303 1.759 2.862-7.966 5.03-7.029-11.057-.147.085 11.48 18.178 9.152 4.385 3.17-6.732 1.877-3.987 3.234 1.528-.852 1.781-.042.082.149.057.482-.18 2.948 1.381.03.024.239-.433-1.544-.745 1.365-2.91 4.797 2.263-8.293 17.472z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.2 KiB |
|
|
@ -0,0 +1,37 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg1" version="1.1" viewBox="0 0 348.92543 488.44792">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g id="Third_Floor" class="shadow">
|
||||||
|
<g id="Floor-3" class="floor">
|
||||||
|
<path d="m127.487 416.828-3.182-4.989-1.541-2.44 3.748-2.343 3.825-2.367-1.026-1.565-1.025-1.594 1.28-.818 1.281-.788-.953-1.487-.872-1.364h-5.956v.477h-.477v.298h-.268v.059h.566v1.998H120.442v-1.998h.567v-.059h-.239v-.298h-.477v-.477H118.356v.477H115.583v-.477h-2.176V391.498h9.45v-4.562h1.878v-.298h-.804v-3.518h-8.765v-3.576h11.954v7.094h-.626v.298h6.738v3.101h.447v-2.749l2.017-2.039 2.017-2.039h8.726v3.473l.044.864.091 1.193.148.99.102.662.177.679.227.885.05.205-12.809 3.871-.371-.586-.371-.587-.225.021-.235.031 2.441 3.911 2.462 3.912.145-.06.194-.116.059-.045-1.776-2.813-1.751-2.836 12.454-3.797.214.503.276.745.301.744.201.432.165.359.223.462.212.408.143.254.13.233.29.512.265.429.042.064.521.782.147.229.743.965.733.911.316.339.396.43.33.381-8.445 9.9-3.523-5.563-.182.119-.182.12 4.342 6.897-4.094 2.345-.911-1.375-2.524 1.554-2.002-3.112-2.762 1.766.854 1.345-4.694 2.978z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
|
|
@ -0,0 +1,49 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg1" version="1.1" viewBox="0 0 348.92543 488.44792">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<g id="Underground_Level" class="shadow">
|
||||||
|
<g id="Ground-U" class="cement">
|
||||||
|
<path d="M163.49219 54.974609v11.716797H162.39062l-.002-4.394531h-6.20117v16.050781h-.68555V114.48047h1.46094v5.66406h-1.46094v6.29102h1.01367v1.01172l-.0293 2.625v1.13281h-.98438V132.60547h1.10352v1.55078h-1.10352v1.87695h-.47656v11.03125h.38672v1.40235h.1504v12.04297h-.0605v1.43164h1.60938v6.58789h-1.60938v5.87304H155.83008V176.81836h-13.53516V173.44926H95.667969V183.55668h10.435551v12.25195H95.667969v8.79493H142.20508v-1.04297h11.6875v-.7168h1.9082v1.9082h-.29883v6.20117h1.3418v5.60547h-1.3418v43.16797h1.3711v4.41211h-1.3711v17.02344h-.32812V291.14848h.32812v9.92773h-.26757V313.12113h.26757V314.28324h24.56446v-20.39062h-.41602v-2.86328l.35352-.004.004-4.61719v-5.63476H178.60752v-1.58008h1.28125v-4.94922h-.20898V264.13862h-1.60938v-4.08398h1.64063V234.38672h12.72851V225.65039h-12.72851v-9.57031h-1.64063V211.40039h1.64063v-43.58594h-1.64063v-4.05468h1.64063v-15.23438h-.86524v-2.05664h.86524v-26.17578H178.45713v-5.8125H179.71104V98.769531H200.51963V87.708984h-20.83984v-3.36914h.71484v-4.53125H180.12705v-.894532H180.39463v-4.5625H179.71104V54.974609h-8.10938z" style=";fill:#c6c2c2"/>
|
||||||
|
</g>
|
||||||
|
<g id="Floor-U" class="floor">
|
||||||
|
<path d="M155.50195 296.09723h-.20898v-2.45313l-.42578.0176-3.05469.0215h-2.63086v5.72266H148.88477V293.86094h-4.98047v8.4375h4.98047V301.97031H149.18164v.29883h3.72656v-1.82031h.86524V299.85313h1.51953V298.69102h.20898"/>
|
||||||
|
<path d="M186.35742 267.32812v.0898h-6.46875v.68555h-.20888v2.65429h.23845v.68555h5.00976V274.1269h3.81446v-2.71484h4.94922V287.123H188.803v.6875h-.26953v-4.53321h-2.44336v-3.36718h-5.45507v.86328h-.44727v5.63476h-.1839v4.61719l.21323.004v1.55078h8.3164v-2.08789h.26953v.6875H193.69171v1.45898h4.02539v-8.10937h5.21679V283.36723h.20899v-4.08399h-.20899V278.12113h-5.21679V276.42192h.26758v.68554h7.90039v-3.96484h-7.90039v.68554h-.26758v-6.5h-5.67969z"/>
|
||||||
|
<path d="M142.44336 167.48633v6.11133h-.1484v1.52148h.1484v.68945l3.87695-.01 3.875-.01V168.9175h-3.48828v-1.43164h-2.13086z"/>
|
||||||
|
<path d="M147.00586 162.15039v6.58789h7.90039v-1.3418H156.54492V167.03906H157.11133v-2.98047H156.54492v-.32812h-1.55078v-1.58008H151Z"/>
|
||||||
|
<path d="M180.1875 146.64844v2.91992h-.47646v9.60156h6.0214v-12.52148H182.959Z"/>
|
||||||
|
<path d="M142.41406 127.00195v3.42774H136.95898V131.29492h-.23828v-1.10351h-4.77148v3.78515h1.07422v.26953h-.62696V142.17578h3.93555V134.24609h-.68555v-.26953h1.07422v-1.10351h.23828v1.10351h9.65821v-3.51562h2.62304V130.75586l.54493.008h.78906l.24609-.008v-.29688H155.41211v-.38671h1.07416l.0293-2.625h-1.10349v-.44532h-6.5z"/>
|
||||||
|
<path d="m154.96484 113.86914-3.17968.01-4.10938.006h-.66992V116h-.1797v2.6543h.1797v1.9375h7.95898v-1.75977h1.998v-3.07031h-1.998v-.94727z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Tarmac-U" class="tarmac">
|
||||||
|
<path d="M154.83984 24.005859c-.1125-.000162-.22443.0032-.33593.01563-.389.0436-.77239.138841-1.15039.244141-.304.085-.60749.185-.89649.3125-.275.1212-.53797.268336-.79297.427734-.379.2373-.75579.487805-1.09179.783203-.304.2668-.57813.569221-.82813.886719-.241.3043-.45358.630152-.64258.96875-.274.4896-.46908 1.018946-.70508 1.527344-.257.552698-.45009 1.270355-.49609 1.876953v33.048828h6.05078V33.330078h2.35547v21.611328h-.15625v23.373047h-.66016v5.492188h7.5918V115.3418h-6.15234v3.96093h6.15234v16.71289h-8.10156v11.04297h8.10156v16.50391h-6.00195v3.99023h6.00195v11.13086H95.658203v3.63086H155.2793v14.88282H95.658203v3.81054h67.423827v11.13281h-6.24219v3.1504h6.24219v4.14062h-7.62109v11.2832h7.62109v29.22461h-6.24219v4.02149h6.24219v17.13281h-7.80273v10.14258h7.80273v17.13281h-6.51172v3.78125h6.51172v2.13086h9.04688v-2.13086h7.93554v-3.96094h-7.93554v-17.16406h7.875v-10.08203h-7.875v-1.83008h7.75586v-4.86133h-7.75586v-10.32031h5.95507v-3.54102h-5.95507v-44.61914h5.95507v-3.99023h-5.95507v-44.19922h5.92578v-3.54101h-5.92578v-4.89063h7.63671v-9.57227h-7.63671v-30.30468h6.3164v-3.90039h-6.3164V97.248047h28.36914v-7.861328h-28.36914v-5.041016h8.23632v-9.960937h-8.23632l.12304-13.847657.25196-2.099609.8789-2.832031.55469-.904297h-9.26758l-.59375 2.49414-.57422 3.25v6.257813h-1.11133l-.01-17.773437-.01-17.759766c0-.4618-.0885-.923458-.18945-1.222656-.131-.3891-.25016-.78381-.41016-1.16211-.207-.490598-.42307-.980342-.70507-1.43164-.229-.3658-.50293-.705538-.79493-1.023438-.27-.2939-.5629-.5689-.8789-.8125-.305-.2352-.63361-.441694-.97461-.621094-.471-.247898-.9617-.467648-1.4707-.623046-.365-.1114-.74505-.169552-1.12305-.21875-.215-.0278-.43049-.03717-.64649-.04297-.1125-.003-.22539-.0057-.33789-.0059z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 224 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
|
@ -0,0 +1,657 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Interchange (TarkovDev)",
|
||||||
|
"Author": "Tarkov.dev",
|
||||||
|
"AuthorLink": "https://tarkov.dev",
|
||||||
|
"MapInternalNames": [ "Interchange" ],
|
||||||
|
"CoordinateRotation": 180,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -364, "y": -443},
|
||||||
|
"Max": {"x": 534, "y": 452}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Ground Floor": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Interchange_TarkovDev/Layers/interchange_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -364, "y": -443},
|
||||||
|
"Max": {"x": 534, "y": 452}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -364, "y": -443, "z": -100},
|
||||||
|
"Max": {"x": 534, "y": 452, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"2nd Floor": {
|
||||||
|
"Level": 1,
|
||||||
|
"ImagePath": "Maps/Interchange_TarkovDev/Layers/interchange_layer_1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -364, "y": -443},
|
||||||
|
"Max": {"x": 534, "y": 452}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // mall
|
||||||
|
"Min": {"x": -222, "y": -327, "z": 25},
|
||||||
|
"Max": {"x": 120, "y": 218, "z": 34}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"3rd Floor": {
|
||||||
|
"Level": 2,
|
||||||
|
"ImagePath": "Maps/Interchange_TarkovDev/Layers/interchange_layer_2.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -364, "y": -443},
|
||||||
|
"Max": {"x": 534, "y": 452}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // mall
|
||||||
|
"Min": {"x": -222, "y": -443, "z": 34},
|
||||||
|
"Max": {"x": 120, "y": 218, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
{
|
||||||
|
"Text": "Power Station",
|
||||||
|
"Position": {"x": -186.4, "y": -318.7, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Go Kart",
|
||||||
|
"Position": {"x": 155, "y": -253, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Four Camp",
|
||||||
|
"Position": {"x": 158, "y": -78.5, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cargo Containers",
|
||||||
|
"Position": {"x": 68.2, "y": 312.9, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Wall Break",
|
||||||
|
"Position": {"x": -260.2, "y": 123.8, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Ramps",
|
||||||
|
"Position": {"x": -175.5, "y": 145.1, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "OLI Tower",
|
||||||
|
"Position": {"x": 202.3, "y": 219.4, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "IDEA Tower",
|
||||||
|
"Position": {"x": 46.5, "y": -358.5, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Camp",
|
||||||
|
"Position": {"x": 263.2, "y": -11.1, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Highway Construction",
|
||||||
|
"Position": {"x": 373.5, "y": -391.2, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Garage A",
|
||||||
|
"Position": {"x": 33, "y": -222, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Garage B",
|
||||||
|
"Position": {"x": 47, "y": -112, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Garage C",
|
||||||
|
"Position": {"x": 0, "y": 47, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Garage D",
|
||||||
|
"Position": {"x": 28, "y": 138, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "IDEA",
|
||||||
|
"Position": {"x": -34, "y": -235, "z": 26},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Goshan",
|
||||||
|
"Position": {"x": -115, "y": -45, "z": 26},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "OLI",
|
||||||
|
"Position": {"x": -28, "y": 140, "z": 26},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Nortex",
|
||||||
|
"Position": {"x": 87, "y": -165, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "TRend",
|
||||||
|
"Position": {"x": 60, "y": -152, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Mode7",
|
||||||
|
"Position": {"x": 69.5, "y": -134, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "TTS",
|
||||||
|
"Position": {"x": 19, "y": -129, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Book Store",
|
||||||
|
"Position": {"x": -38, "y": -129, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dino Clothes",
|
||||||
|
"Position": {"x": 91, "y": -119, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "EMERCOM",
|
||||||
|
"Position": {"x": 18, "y": -103, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Kostin",
|
||||||
|
"Position": {"x": -28, "y": -103, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Bizarro",
|
||||||
|
"Position": {"x": -65, "y": -103, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Spiel",
|
||||||
|
"Position": {"x": 92, "y": -87, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Voyage",
|
||||||
|
"Position": {"x": -18, "y": -87, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Viking",
|
||||||
|
"Position": {"x": 57, "y": -66, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Mantis",
|
||||||
|
"Position": {"x": 13, "y": -66, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "German",
|
||||||
|
"Position": {"x": -18, "y": -72, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "The National",
|
||||||
|
"Position": {"x": 57, "y": -32, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Brutal",
|
||||||
|
"Position": {"x": 13, "y": -32, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Kiba",
|
||||||
|
"Position": {"x": -18, "y": -25, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Pretty Lights",
|
||||||
|
"Position": {"x": -34, "y": -20, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Telespot",
|
||||||
|
"Position": {"x": 92, "y": -18, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Revis",
|
||||||
|
"Position": {"x": 62, "y": -12, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ADIK",
|
||||||
|
"Position": {"x": 19, "y": -6, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Generic",
|
||||||
|
"Position": {"x": -28, "y": 0.5, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Top Brand",
|
||||||
|
"Position": {"x": 92, "y": 15, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sports",
|
||||||
|
"Position": {"x": 61, "y": 15, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Yushka",
|
||||||
|
"Position": {"x": 70, "y": 32, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Rasmussen",
|
||||||
|
"Position": {"x": 19.5, "y": 26, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Avokado",
|
||||||
|
"Position": {"x": -37, "y": 26, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Boots 4 Life",
|
||||||
|
"Position": {"x": 91, "y": 55, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Texho",
|
||||||
|
"Position": {"x": 61, "y": 50, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dom",
|
||||||
|
"Position": {"x": 6, "y": 49, "z": 26},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Father & Sons",
|
||||||
|
"Position": {"x": 38, "y": -170, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tarkovstar",
|
||||||
|
"Position": {"x": 69, "y": -150, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Eastland",
|
||||||
|
"Position": {"x": 26, "y": -149, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Arena",
|
||||||
|
"Position": {"x": 71, "y": -130, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ТАРЗДРАВ",
|
||||||
|
"Position": {"x": 54, "y": -128, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "МЕБЕЛЬ МК",
|
||||||
|
"Position": {"x": 20, "y": -128, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Intourist",
|
||||||
|
"Position": {"x": 69, "y": -116, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Burger Spot",
|
||||||
|
"Position": {"x": -27, "y": -103, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "FCK",
|
||||||
|
"Position": {"x": 70, "y": -94, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "McDaniels",
|
||||||
|
"Position": {"x": 70, "y": -87, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tarducks",
|
||||||
|
"Position": {"x": 64, "y": -69, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Coffee Joy",
|
||||||
|
"Position": {"x": 43, "y": -69, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Jacob & Jacob",
|
||||||
|
"Position": {"x": 15, "y": -74, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ПУШКИН",
|
||||||
|
"Position": {"x": -34, "y": -79, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sushi Huyushi",
|
||||||
|
"Position": {"x": 64, "y": -34, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Underway",
|
||||||
|
"Position": {"x": -17, "y": -32, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Burger House",
|
||||||
|
"Position": {"x": 67, "y": -23.5, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Philly Cute",
|
||||||
|
"Position": {"x": -34, "y": -24, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Shiccos",
|
||||||
|
"Position": {"x": 67, "y": -16, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "УЗЕЙ ИСТОРИИ",
|
||||||
|
"Position": {"x": 17, "y": 0, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Papillon",
|
||||||
|
"Position": {"x": 92, "y": 17, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ЗАКРЫТО НА РЕМОНТ",
|
||||||
|
"Position": {"x": 58, "y": 13, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "НА-СВЯЗИ",
|
||||||
|
"Position": {"x": 70, "y": 27, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "СКОРО ОТКРЫТИЕ",
|
||||||
|
"Position": {"x": 54, "y": 24, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Figaro",
|
||||||
|
"Position": {"x": 19, "y": 26, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "АПТЕКА",
|
||||||
|
"Position": {"x": 71, "y": 47, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "SARA",
|
||||||
|
"Position": {"x": 53, "y": 47, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Urban Clothes",
|
||||||
|
"Position": {"x": 26, "y": 46, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "TECHLIGHT",
|
||||||
|
"Position": {"x": 91, "y": 54, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Fashion Store",
|
||||||
|
"Position": {"x": 39, "y": 67, "z": 35},
|
||||||
|
"FontSize": 10
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Main Power Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -201.108, "y": -357.8291, "z": 23.1857 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Saferoom Urinal Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -51.547, "y": -125.440712, "z": 36.86 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "2nd Floor Alarm Console",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -46.555, "y": -55.202, "z": 37.347 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "1st Floor Alarm Console",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -67.1342545, "y": 53.7422676, "z": 27.9506 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Inside Saferoom Exfil Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -50.6210022, "y": 45.617, "z": 22.632 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Object 14 Container Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -47.698, "y": 42.6198, "z": 22.891 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Emercom Checkpoint",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -321.56, "y": 266.74, "z": 21.94955 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Railway Exfil",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 472.32, "y": -429.74, "z": 20.92 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Power Station V-Ex",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -251.92, "y": -367.13, "z": 21.72 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Camp (Co-Op)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 278.69, "y": -30.97, "z": 21.94955 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Hole in the Fence",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -219.92, "y": -37.02, "z": 22.79 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Saferoom Exfil",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -47.73, "y": 44.055, "z": 22.97 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Customs",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 274.3, "y": 395.93, "z": 23.2799988 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Streets of Tarkov",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 263.1, "y": -444.4, "z": 24.1 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Power Substation Utility Cabin",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -223.115845, "y": -271.3501, "z": 22.55412 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5d49886f77455f9731921"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "ULTRA Medical Storage",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 67.55801, "y": 40.891, "z": 37.60174 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5e42c71586f7747f245e1343"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Kiba Arms Inner Grate",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -9.887001, "y": -33.76517, "z": 28.241 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5addaffe86f77470b455f900"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Kiba Arms Outer Door",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -9.444001, "y": -33.709, "z": 28.241 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5d7d286f77450166e0a89"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Object #11SR Saferoom",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -51.9328041, "y": 45.8337746, "z": 22.35359 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5e42c81886f7742a01529f57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Object #21WS",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 140.195663, "y": 263.315277, "z": 25.2079964 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5e42c83786f7742a021fdf3c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "NecrusPharm Pharmacy",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 68.53804, "y": -255.424225, "z": 22.4947357 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5d64486f774079b080af8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Emercom Medical Unit",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 24.136982, "y": -112.8551, "z": 28.4790325 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5db3786f7743568421cce"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Emercom Medical Unit",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 34.14116, "y": -108.287651, "z": 28.4790325 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5db3786f7743568421cce"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Emercom Medical Unit",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 6.732233, "y": -107.304314, "z": 28.4790344 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5db3786f7743568421cce"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "OLI Logistics Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 83.1990051, "y": 115.673004, "z": 28.1199989 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5cfbd86f7742c825d6104"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "OLI Outlet Utility Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -102.823967, "y": 80.48102, "z": 28.12 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5d20586f77449be26d877"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "OLI Admin Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 85.18402, "y": 104.638214, "z": 28.1199989 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ad5ccd186f774446d5706e9"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Grumpy's hideout",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -199.4, "y": -348.68, "z": 21 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "664d3dd590294949fe2d81b7"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 23 KiB |
|
|
@ -0,0 +1,359 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg id="svg235" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 977.1 977.1">
|
||||||
|
<!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) -->
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
.st0 {
|
||||||
|
stroke: url(#linear-gradient2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st0, .st1, .st2, .st3, .st4, .st5, .st6, .st7, .st8, .st9, .st10, .st11, .st12, .st13, .st14, .st15, .st16, .st17 {
|
||||||
|
fill: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st0, .st2, .st4, .st6, .st7, .st8, .st9, .st11, .st12, .st13, .st14, .st15, .st17 {
|
||||||
|
stroke-miterlimit: 3.557;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st0, .st2, .st7, .st15 {
|
||||||
|
stroke-width: 7.1141px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st1 {
|
||||||
|
stroke-width: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st1, .st3 {
|
||||||
|
stroke: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st2 {
|
||||||
|
stroke: url(#linear-gradient1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st3 {
|
||||||
|
stroke-width: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st4 {
|
||||||
|
stroke: url(#linear-gradient6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st4, .st6, .st8, .st9, .st11, .st12, .st13, .st14 {
|
||||||
|
stroke-width: 4.4463px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st5 {
|
||||||
|
stroke: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st5, .st16 {
|
||||||
|
stroke-width: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st6 {
|
||||||
|
stroke: url(#linear-gradient11);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st18 {
|
||||||
|
fill: #1f5054;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st19 {
|
||||||
|
fill: #4a6b96;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st7 {
|
||||||
|
stroke: url(#linear-gradient);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st20 {
|
||||||
|
fill: #dcd5b6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st8 {
|
||||||
|
stroke: url(#linear-gradient12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st9 {
|
||||||
|
stroke: url(#linear-gradient9);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st10 {
|
||||||
|
stroke: #914833;
|
||||||
|
stroke-dasharray: 6;
|
||||||
|
stroke-width: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st11 {
|
||||||
|
stroke: url(#linear-gradient7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st12 {
|
||||||
|
stroke: url(#linear-gradient5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st13 {
|
||||||
|
stroke: url(#linear-gradient10);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st14 {
|
||||||
|
stroke: url(#linear-gradient8);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st21 {
|
||||||
|
fill: #1a2632;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st22 {
|
||||||
|
fill: #4b4b4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st15 {
|
||||||
|
stroke: url(#linear-gradient3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.st16 {
|
||||||
|
stroke: #ffce00;
|
||||||
|
stroke-dasharray: 6 6;
|
||||||
|
stroke-miterlimit: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st23 {
|
||||||
|
fill: #c6c2c2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.st17 {
|
||||||
|
stroke: url(#linear-gradient4);
|
||||||
|
stroke-width: 10.6711px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<linearGradient id="linear-gradient" x1="1023.8205" y1="678.929" x2="1062.2919" y2="678.929" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient1" x1="1058.0084" y1="562.3658" x2="1058.0084" y2="599.7514" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient2" x1="1057.9223" y1="210.8343" x2="1057.9223" y2="170.0803" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient3" x1="1024.0125" y1="93.5576" x2="1062.4081" y2="93.5576" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient4" x1="831.443" y1="291.1281" x2="831.443" y2="308.6192" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient5" x1="723.3098" y1="547.3272" x2="742.2631" y2="547.3272" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient6" x1="741.8795" y1="644.6146" x2="750.0092" y2="644.6146" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient7" x1="710.45" y1="385.9538" x2="721.1588" y2="385.9538" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient8" x1="738.7717" y1="213.0229" x2="749.9973" y2="213.0229" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient9" x1="864.0215" y1="223.2115" x2="881.0497" y2="223.2115" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient10" x1="1063.3291" y1="379.4475" x2="1063.3291" y2="392.1876" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient11" x1="836.3726" y1="534.8588" x2="844.1552" y2="534.8588" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="linear-gradient12" x1="836.1124" y1="238.8048" x2="844.8995" y2="238.8048" gradientTransform="translate(-156.1068 766.1235) scale(.8893 -.8893)" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" stop-color="#fff" stop-opacity=".5"/>
|
||||||
|
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<g id="Ground_Level">
|
||||||
|
<g id="Base_Terrain">
|
||||||
|
<path class="st18" d="M816.069,530.62l2.145,4.638,40.176.043.231,61.355,92.636,41.079.08,27.516,23.521,13.856.018,90.846-37.972,9.438-36.744,7.449-96.386,5.404-71.785,4.546-68.048,10.614-45.401,12.824-38.391,17.498-52.854,29.013-49.816,30.879-17.22,9.853-13.949,6.225-25.19,2.73-161.375.098.085-23.886,6.578-7.562,6.071-536.368-89.927,1.258-46.756-1.014-.439-22.528-5.931-21.96-7.45-11.209-18.054-13.67-33.258-24.122-31.7437-32.266-23.791-38.609-11.6725-43.721L1.796,28.4899l32.1055-13.6815-.0751-12.7384,58.9001-.1007v12.8038l10.6355,8.546,139.573.9248,10.325-9.6421.01-12.4266,80.452-.1515v12.2824l10.629,9.6018,294.436-2.6893-.005,22.0342-3.329,21.8968.679,27.5779,37.898.0836,15.306,15.3729,55.157.034-.096-43.9038,4.918-2.6109,11.036-12.2253,32.516-.0803,49.232,2.2141,17.588,17.4057.201,145.2565-32.401.133-11.547,11.464-.123,64.705,2.782,6.141.185,59.389-3.449,2.054.56,73.058,9.544,6.268.131,51.896-4.503.032-4.977,2.732-.0211,38.474Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Water">
|
||||||
|
<path class="st19" d="M190.207,334.203c3.412-.247,6.891-1.532,9.604-3.617,1.417-1.09,3.381-2.597,3.118-4.365-.433-2.904-5.161-3.063-6.985-5.363-1.191-1.502-2.005-3.357-2.37-5.239-.19-.98.355-2.022.125-2.993-.395-1.666-1.883-2.891-2.494-4.49-1.142-2.987-.679-6.501-2.121-9.355-.917-1.815-2.786-2.977-3.991-4.615-.841-1.143-.891-3.193-2.245-3.617-1.599-.501-3.289.971-4.615,1.996-2.297,1.774-4.334,4.146-5.363,6.86-.724,1.908-.746,4.104-.374,6.111.657,3.549,3.344,6.431,4.49,9.854.608,1.817.634,3.796,1.247,5.612,1.142,3.384,2.245,6.951,4.49,9.729.915,1.131,2.169,2.013,3.492,2.619,1.239.567,2.633.972,3.992.873h0Z"/>
|
||||||
|
<path class="st19" d="M166.634,287.306c2.016-.036,3.853,1.675,5.862,1.497,1.501-.133,2.752-1.23,4.116-1.871,1.464-.688,2.802-1.702,4.365-2.12,2.255-.604,5.197,1.002,6.985-.499,1.312-1.102,1.799-3.366,1.247-4.989-.41-1.205-1.844-1.824-2.994-2.37-2.269-1.077-4.849-1.515-7.358-1.621-4.4-.186-9.219-.343-13.097,1.746-1.842.992-3.673,2.694-4.115,4.739-.34,1.569.55,3.236,1.371,4.615.362.606.814,1.323,1.497,1.497.714.182,1.384-.61,2.121-.624h0Z"/>
|
||||||
|
<path class="st19" d="M143.493,251.855c-2.396-1.582-5.677-3.53-8.29-2.341-2.302,1.048-3.809,4.395-3.243,6.86.43,1.874,3.43,2.014,4.49,3.617,1.096,1.658.769,3.942,1.621,5.738.435.917.918,1.908,1.747,2.494,2.148,1.521,5.434.635,7.608,2.121,1.888,1.29,2.195,4.246,4.116,5.488,1.748,1.129,4.355,2.507,6.094,1.363,1.518-.998.456-3.626,1.015-5.355,1.116-3.451,5.359-6.303,4.615-9.853-.284-1.356-1.803-2.329-3.127-2.738-3.121-.966-6.705,2.399-9.732,1.168-3.399-1.381-3.852-6.542-6.914-8.562h0Z"/>
|
||||||
|
<path class="st19" d="M195.071,238.663c-1.477.189-2.94,1.294-3.617,2.62-.416.814-.396,1.919,0,2.744.461.959,1.728,1.256,2.494,1.995,1.147,1.105,1.817,2.701,3.119,3.617.947.667,2.085,1.277,3.242,1.247.819-.02,1.728-.362,2.246-.997.617-.759.825-1.911.623-2.869-.349-1.66-2.469-2.503-2.993-4.116-.232-.712.422-1.627,0-2.245-1.032-1.511-3.299-2.228-5.114-1.996h0Z"/>
|
||||||
|
<path class="st19" d="M148.915,235.579c-1.646-.143-3.751.596-4.507,2.065-.904,1.758.551,3.931,1.127,5.822.515,1.69.613,3.876,2.066,4.882,1.905,1.32,5.242,1.852,6.948.282,2.189-2.016,1.705-6.258.375-8.92-1.086-2.175-3.587-3.922-6.009-4.131h0Z"/>
|
||||||
|
<path class="st19" d="M374.511,73.1909c.011,2.0379,1.084,4.2978,2.762,5.455,1.579,1.0895,4.105-.4229,5.724.6061.842.5347.766,1.9419,1.549,2.5592,2.091,1.6479,4.955,2.2289,7.61,2.4244.976.0719,1.931-.6314,2.896-.4714.753.1248,1.285,1.2835,2.02,1.0775,1.231-.3449,2.013-2.0231,1.953-3.2999-.08-1.7179-2.836-2.4667-3.03-4.1755-.11-.9694.599-1.8851,1.145-2.6938.746-1.1053,1.596-2.3183,2.828-2.8286,1.431-.5927,3.171-.4704,4.647,0,.813.2592,1.286,1.1889,2.088,1.4817,1.016.3709,2.151.2651,3.233.2693,3.579.014,7.569.9121,10.708-.8081.885-.4855,1.913-1.4187,1.818-2.4245-.291-3.0849-4.667-4.0835-6.869-6.2632-.633-.6256-1.043-1.5177-1.819-1.953-.879-.4934-2.357.2-2.963-.6061-.839-1.1164-.255-2.9107.337-4.1755.72-1.5385,1.948-3.385,3.636-3.5693.843-.0919,1.371,1.6653,2.156,1.3469,1.478-.5996,1.463-3.0837,1.144-4.6469-.291-1.4298-1.178-3.3243-2.626-3.502-1.235-.1515-2.098,1.4017-2.896,2.3572-.805.9641-1.025,2.3266-1.818,3.2999-.634.7775-1.305,1.7647-2.29,1.953-1.025.1959-1.964-.7085-2.963-1.0101-1.601-.4833-3.279-1.8535-4.849-1.2796-1.468.5367-1.722,2.6148-2.694,3.8387-1.088,1.3691-2.136,2.8144-3.502,3.9061-1.225.9786-2.669,1.6689-4.108,2.2897-1.643.7086-3.33,1.6722-5.118,1.6163-1.371-.0428-2.948-.4391-3.839-1.4816-.761-.8901.223-2.7694-.741-3.4346-1.233-.8511-3.277-.2653-4.445.6734-1.218.9794-2.249,2.92-1.684,4.3775.4,1.0296,2.471.4933,2.964,1.4817.387.7762-.199,1.7358-.472,2.5591-.591,1.782-2.501,3.1736-2.492,5.051h0Z"/>
|
||||||
|
<path class="st19" d="M438.363,52.7748c-.64-.5699-.623-1.7889-.248-2.5592,1.101-2.2574,3.997-3.1848,6.357-4.0452,1.174-.4279,2.466-.448,3.715-.4953,2.424-.0919,4.84.4711,7.265.4128,2.102-.0506,4.187-.9234,6.274-.6605,1.019.1285,2.356.1949,2.889,1.0732.345.569.045,1.3834-.248,1.9813-.82,1.6781-2.886,2.4357-3.962,3.9626-.667.9458-1.104,2.045-1.486,3.1371-.318.9072-.344,1.8995-.661,2.8068-.361,1.0343-1.316,1.8799-1.403,2.972-.124,1.5713.338,3.3083,1.321,4.5405.53.6644,1.72.5572,2.229,1.2383.455.6099-.082,1.7332.495,2.229.314.2694.826.1071,1.239.0825.447-.0266.89-.3704,1.32-.2476,1.255.3577,2.152,1.565,2.89,2.6417.6.8769,1.485,1.9614,1.156,2.9719-.254.7766-1.64.6229-2.064,1.3209-.474.7792-.15,1.8177-.248,2.7243-.143,1.3235.102,2.7728-.495,3.9626-.428.8524-1.136,1.7637-2.064,1.9813-1.966.4608-3.768-1.9976-5.779-1.8162-.588.0531-.98.7691-1.568.8255-1.517.1455-2.889-1.653-4.376-1.3208-2.529.5651-3.21,5.5439-5.779,5.2009-1.46-.195-1.092-3.0245-2.394-3.7149-1.07-.5677-2.483.4643-3.632.0825-.763-.2533-1.164-1.1596-1.899-1.486-1.174-.5217-3.271.5118-3.797-.6604-.942-2.097,1.676-4.6534,3.632-5.8613.776-.4792,1.956.2433,2.724-.2477,1.714-1.0954,2.668-3.2862,3.055-5.2835.111-.5731-.34-1.1571-.248-1.7336.637-3.9986,4.171-7.0288,5.366-10.8972.287-.9295.75-1.9767.413-2.8894-.317-.8597-1.23-1.4366-2.064-1.8162-1.137-.5175-2.468-.4248-3.715-.4953-1.401-.0792-3.162,1.0159-4.21.0826h-.0001Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Structure">
|
||||||
|
<path class="st22" d="M753.2,139.421l-143.313.015v10.694h-131.504v136.242h-7.971v272.834h7.921v117.698h-1.866v18.947h18.704v-2.246h114.874v13.026h143.2934v-127.3096h37.6917l4.6705-20.0737v-273.1033l-4.6705-19.3724h-37.83v-127.351h-.0001Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Roads">
|
||||||
|
<g id="Normal_Roads">
|
||||||
|
<path class="st3" d="M297.988,792.235c14.514-25.829,42.63-30.618,61.465-51.118"/>
|
||||||
|
<path class="st3" d="M379.821,716.477c.227,12.606-14.117,26.222-26.725,26.062-12.291-.158-24.699-11.961-24.477-26.062.214-13.064,10.305-24.768,24.074-24.92,14.6-.054,26.908,12.735,27.128,24.92Z"/>
|
||||||
|
<path class="st3" d="M301.997,612.56c.195,11.491,12.638,26.263,26.811,26.582,12.852.288,30.38-12.701,31.501-22.739"/>
|
||||||
|
<path class="st3" d="M359.939,691.106c1.321-372.342.972-539.185.949-545.514-.023-6.329.745-9.868,2.59-12.613,1.845-2.745,4.422-5.271,8.032-7.376,3.61-2.105,14.905-3.363,19.675-3.623,4.771-.26,13.585-1.076,68.095-1.173"/>
|
||||||
|
<path class="st3" d="M665.64,704.86s.169,6.878-.985,9.987c-.96,2.69-1.992,5.192-4.786,7.135-2.928,2.036-10.856,2.577-10.856,2.577"/>
|
||||||
|
<path class="st3" d="M649.46,724.66l-270.824.884"/>
|
||||||
|
<path class="st3" d="M622.084,723.162c.009,6.913.238,11.697.349,17.224.169,8.511.201,13.852.178,20.922-.28,5.229.651,10.977-5.13,14.502-28.254,16.081-62.396,30.406-91.5,45.511-8.95,4.446-22.016,12.08-30.262,14.524-7.477,2.215-14.419,1.799-22.216,1.847-20.106.123-38.313.233-60.127.154-18.706.042-42.61,1.847-48.871-3.131-6.481-5.55-9.34-12.792-10.319-22.695-.946-13.264-.479-23.843-.472-37.625.006-10.957.957-24.531.774-32.971"/>
|
||||||
|
<path class="st3" d="M461.83,121.814s-.121,113.096-.434,141.108c-.05,4.421.283,7.601-1.197,10.89-1.386,3.083-4.262,5.04-5.583,7.926-1.215,2.658-1.666,6.672-1.657,9.79.125,43.479-.741,80.121-.89,120.184-.165,44.759-.337,89.709,0,134.278.026,3.371-.114,9.167.672,12.593.914,3.986,3.991,7.626,5.952,9.899,3.469,4.023,2.682,7.418,2.698,12.778.127,46.257-.239,140.566-.239,140.566"/>
|
||||||
|
<path class="st3" d="M458.678,120.766c109.513.22,210.884-.521,320.668-.476"/>
|
||||||
|
<path class="st3" d="M865.294,726.364s3.976-21.391.359-35.737c-3.619-14.345-14.901-21.096-30.913-23.378-12.999-1.853-44.156-1.46-44.156-1.46"/>
|
||||||
|
<path class="st3" d="M804.108,666.926c-.166-48.595-.157-224.139-1.309-521.737-.584-9.27-6.133-24.868-23.61-24.893"/>
|
||||||
|
<path class="st3" d="M928.608,788.664s-1.77-19.587-11.561-40.655c-3.032-6.024-8.537-12.665-14.343-16.093-9.284-5.477-21.34-4.802-32.03-4.461-17.847.57-41.109.451-50.892-2.114-11.832-3.101-15.228-13.359-15.429-22.457-.29-13.025-.224-29.371-.245-35.468"/>
|
||||||
|
<path class="st3" d="M440.026,660.637h18.958"/>
|
||||||
|
<path class="st3" d="M440.353,622.038h18.23"/>
|
||||||
|
<path class="st3" d="M438.953,551.842h11.213"/>
|
||||||
|
<path class="st3" d="M438.588,513.321h12.005"/>
|
||||||
|
<path class="st3" d="M438.565,442.399h12.005"/>
|
||||||
|
<path class="st3" d="M375.792,513.006h-13.28"/>
|
||||||
|
<path class="st3" d="M375.792,551.477h-13.371"/>
|
||||||
|
<path class="st3" d="M377.003,403.803h-14.673"/>
|
||||||
|
<path class="st3" d="M438.766,333.368h12.005"/>
|
||||||
|
<path class="st3" d="M439.211,294.275h11.56"/>
|
||||||
|
<path class="st3" d="M377.731,293.95h-15.777"/>
|
||||||
|
<path class="st3" d="M377.395,331.869h-15.777"/>
|
||||||
|
<path class="st3" d="M440.38,225.005h18.514"/>
|
||||||
|
<path class="st3" d="M360.529,147.078h100.137"/>
|
||||||
|
<path class="st3" d="M557.872,121.847v23.994"/>
|
||||||
|
<path class="st3" d="M540.512,721.918v-31.135"/>
|
||||||
|
<path class="st3" d="M530.987,723.493v15.828"/>
|
||||||
|
<path class="st3" d="M419.982,727.628v14.124"/>
|
||||||
|
<path class="st3" d="M451.375,403.056h-12.005"/>
|
||||||
|
<path class="st3" d="M790.79,176.219h15.226"/>
|
||||||
|
<path class="st3" d="M462.993,236.599h18.514"/>
|
||||||
|
<path class="st3" d="M454.276,377.185h18.513"/>
|
||||||
|
<path class="st3" d="M454.562,467.165h18.513"/>
|
||||||
|
<path class="st3" d="M462.355,621.979h18.514"/>
|
||||||
|
<path class="st3" d="M772.168,109.12v8.945"/>
|
||||||
|
<path class="st3" d="M829.667,81.7786l.183,78.5304"/>
|
||||||
|
<path class="st3" d="M954.165,79.9854l-153.021-.1501"/>
|
||||||
|
<path class="st3" d="M828.682,118.11c-17.28-.202-32.747-.317-33.909,6.061"/>
|
||||||
|
<path class="st3" d="M1192.12,743.125s-48.74,1.164-73,3.289c-20.26,1.774-40.6,3.689-60.5,7.891-28.84,6.091-56.25,17.803-84.838,24.991-23.894,6.006-47.958,11.585-72.341,15.125-21.113,3.067-42.506,3.761-63.789,5.261-41.18,2.903-82.634,2.433-123.636,7.234-22.55,2.641-44.649,6.501-66.595,12.321-18.23,4.834-35.366,11.77-52.545,19.554-34.948,15.836-67.128,36.028-99.653,56.382-28.817,18.034-85.692,57.081-85.692,57.081"/>
|
||||||
|
<path class="st3" d="M1060.73,753.004s2.48-254.858,3.26-383.25c.08-12.184-1.0699-24.57-4.4-36.288-2.97-10.406-6.74-21.141-13.67-29.446-8.04-9.617-20.55-14.355-30.74-21.642-9.97-7.129-21.986-12.12-29.758-21.599-11.026-13.457-16.753-30.775-21.751-47.439-5.202-17.344-6.625-35.656-8.252-53.69-1.814-20.111-1.672-40.364-1.672-60.5572.009-35.0183-.649-93.3936-.649-93.3936"/>
|
||||||
|
</g>
|
||||||
|
<g id="Highways">
|
||||||
|
<path class="st1" d="M404.624,40.014c-26.897,14.6763-39.424,24.1391-57.743,45.0851-23.053,28.0489-41.54,62.7459-41.782,111.7849"/>
|
||||||
|
<path class="st1" d="M274.968,947.923c.148-153.392,2.956-330.318,4.832-484.737.938-77.21,3.189-196.881,3.744-274.029.556-77.149-.585-111.7742-.511-188.4727"/>
|
||||||
|
<path class="st1" d="M185.312,39.7551c28.247,16.232,32.586,20.0323,55.308,42.648,24.094,28.6579,44.204,64.6429,42.85,114.4689"/>
|
||||||
|
<path class="st1" d="M297.208,947.95c0-153.401,3.694-367.166,5.571-521.626.938-77.23,1.727-154.46,2.281-231.557.553-77.097-.121-117.1442-.121-193.8428"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Rocks">
|
||||||
|
<path class="st20" d="M124.848,199.267c.903.968,2.482,1.57,3.768,1.256,1.812-.443,2.111-3.472,3.894-4.02.981-.301,2.005.814,3.014.629,1.223-.225,3.019-.773,3.14-2.01.142-1.444-1.898-2.264-3.14-3.015-1.02-.616-2.651-.196-3.391-1.13-.287-.363.282-1.163-.125-1.382-1.008-.539-1.874,1.575-3.015,1.633-.543.028-.977-.75-1.507-.628-1.85.427-3.325,2.425-3.768,4.271-.353,1.471.099,3.289,1.13,4.396h0Z"/>
|
||||||
|
<path class="st20" d="M219.832,255.386c.233-.97,1.59-1.515,2.587-1.504.729.009,1.14,1.056,1.864,1.143.649.077,1.212-.585,1.865-.601.851-.022,1.904.022,2.466.661.4.456.366,1.211.24,1.804-.174.828-.653,1.65-1.323,2.166-.945.727-2.414,1.649-3.428,1.022-.693-.428.251-1.946-.421-2.406-.591-.404-1.446.7-2.105.421-.989-.418-1.995-1.663-1.745-2.706h0Z"/>
|
||||||
|
<path class="st20" d="M219.652,297.127c-.408-.444-.216-1.304.12-1.804.585-.871,2.376-.437,2.827-1.384.23-.483-.636-1.105-.361-1.564.599-.996,2.207-.857,3.368-.902.979-.037,2.444-.332,2.887.542.232.455-.554.883-.661,1.383-.168.784-.256,1.668.06,2.406.112.26.502.336.601.601.311.828.177,1.838-.18,2.647-.269.609-.768,1.188-1.383,1.443-.945.392-2.192.467-3.068-.06-.707-.426-1.04-1.356-1.203-2.165-.071-.356.36-.81.121-1.083-.688-.783-2.423.708-3.128-.06Z"/>
|
||||||
|
<path class="st20" d="M571.336,40.7443c.964-.6046,2.408-.4036,3.412.1313,1.244.6619,1.848,2.1605,2.494,3.4125.635,1.2294,1.387,2.556,1.313,3.9375-.063,1.1534-.454,2.5551-1.444,3.15-1.277.7676-3.124.3929-4.463-.2625-.835-.409-1.397-1.2804-1.837-2.1-.472-.8791-1.111-1.9438-.788-2.8875.284-.8277,1.739-.7779,2.1-1.575.236-.5196.288-1.3187-.131-1.7063-.385-.3567-1.287.4394-1.575,0-.418-.6394.272-1.6942.919-2.1Z"/>
|
||||||
|
<path class="st20" d="M582.886,41.9256c-.203.5018.524,1.0496.394,1.575-.268,1.0828-1.678,1.5252-2.232,2.4937-.5.8771-.892,1.8779-.918,2.8876-.05,1.8988.68,3.7733,1.443,5.5125.293.6667.569,1.4442,1.182,1.8375,1.041.6685,2.898-.4381,3.675.525.385.478-.451,1.3132-.131,1.8375.52.8536,1.761,1.0846,2.756,1.1813.623.0606,1.216-.3174,1.837-.3937,1.304-.1601,2.766.461,3.938-.1313.945-.4777,1.843-1.4421,1.969-2.4938.211-1.7689-1.886-3.1087-2.232-4.8563-.212-1.0738.502-2.2513.132-3.2812-.577-1.6034-1.892-3.0385-3.413-3.8063-.824-.4159-1.91.106-2.756-.2625-.483-.2104-1-.5553-1.181-1.05-.213-.581.667-1.3701.262-1.8375-.373-.4297-1.188.235-1.706,0-.424-.1922-.459-.9821-.919-1.0501-.817-.1206-1.791.5471-2.1,1.3126h0Z"/>
|
||||||
|
<path class="st20" d="M899.989,677.837c.766-1.033,1.863-2.249,3.15-2.231.437.006.613.761,1.05.787.958.057,1.56-1.669,2.493-1.443.708.171,1.188,1.109,1.182,1.837-.009.789-.658,1.53-1.313,1.969-.556.372-1.379.078-1.969.394-.654.35-.884,1.302-1.575,1.575-1.221.482-3.187.946-3.937-.132-.553-.795.342-1.978.919-2.756h0Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Pavement">
|
||||||
|
<g id="Outdoors">
|
||||||
|
<path class="st23" d="M697.319,116.767l-23.967-23.931-38.201.0569-2.152,4.5459.06,19.3832"/>
|
||||||
|
<path class="st23" d="M750.017,84.0801v26.1779h40.763v-26.1779h-40.763Z"/>
|
||||||
|
<path class="st23" d="M753.2,266.772v-109.997h37.83v109.997h-37.83Z"/>
|
||||||
|
<path class="st23" d="M836.617,108.941v-19.5669h16.313v19.5669h-16.313Z"/>
|
||||||
|
<path class="st23" d="M833.325,147.552v-26.03h16.411v26.03h-16.411Z"/>
|
||||||
|
<path class="st23" d="M827.27,171.602v-10.717h21.225v10.717h-21.225Z"/>
|
||||||
|
<path class="st23" d="M826.876,191.159v-10.788h21.746v10.788h-21.746Z"/>
|
||||||
|
<path class="st23" d="M500.329,739.078v55.964h35.574l52.986-24.776.175-31.188h-88.735Z"/>
|
||||||
|
<path class="st23" d="M374.1,159.958v94.911h67.476v-94.911h-67.476,0ZM404.093,173.372c2.631.058,5.28.645,7.842,1.245,2.963.695,6.116,1.36,8.56,3.172,1.334.988,2.651,2.344,3.014,3.963.39,1.74-.457,3.572-1.11,5.231-.902,2.295-2.926,4.039-3.805,6.342-.806,2.111-1.153,4.402-1.268,6.659-.124,2.437.099,4.912.634,7.292.433,1.926,1.587,3.635,2.06,5.55.395,1.604,1.133,3.34.635,4.915-.495,1.57-2.031,2.634-3.329,3.646-1.94,1.511-4.553,1.988-6.501,3.487-1.718,1.323-3.034,3.106-4.439,4.757-1.734,2.037-2.781,4.728-4.914,6.342-2.136,1.616-4.822,3.527-7.451,3.012-2.676-.526-5.025-3.113-5.867-5.708-.861-2.652.081-5.803,1.428-8.245,1.753-3.177,5.944-4.361,8.085-7.291,1.813-2.483,3.13-5.403,3.805-8.402.64-2.836.678-5.861.159-8.721-.59-3.244-1.872-6.416-3.646-9.195-1.488-2.332-4.218-3.695-5.709-6.025-.921-1.438-2.131-3.064-1.902-4.756.223-1.644,1.688-2.962,3.011-3.963,2.31-1.746,5.219-2.785,8.087-3.171.869-.118,1.744-.156,2.621-.136h0Z"/>
|
||||||
|
<path class="st23" d="M372.54,365.491v-103.128h68.645v103.128h-68.645Z"/>
|
||||||
|
<path class="st23" d="M372.853,426.591v-53.676h68.817v53.676h-68.817,0Z"/>
|
||||||
|
<path class="st23" d="M372.54,473.186v-37.991h68.98v37.991h-68.98Z"/>
|
||||||
|
<path class="st23" d="M372.452,584.402v-104.094h69.224v104.094h-69.224Z"/>
|
||||||
|
<path class="st23" d="M372.261,591.856v75.385l43.839,44.058h25.488v-119.443h-69.327Z"/>
|
||||||
|
<path class="st23" d="M398.917,739.835v15.024l-3.084,2.312v43.457l3.084,2.772v8.899h70.467v-8.899l3.084-2.772v-43.457l-3.084-2.312v-15.024h-70.467Z"/>
|
||||||
|
<path class="st23" d="M807.415,433.295v58.902h8.776l4.716-2.908,4.607-.012-.001-51.637-9.322-4.345h-8.776Z"/>
|
||||||
|
<path class="st23" d="M825.573,631.894v-95.446h31.733v95.446h-31.733Z"/>
|
||||||
|
<path class="st23" d="M753.3384,689.2935v-109.972h37.6916v109.972h-37.6916Z"/>
|
||||||
|
<path class="st23" d="M694.997,139.56l-.013-15.547h-52.238l.121,15.547"/>
|
||||||
|
</g>
|
||||||
|
<g id="Garage">
|
||||||
|
<path class="st23" d="M640.058,139.454l.306,147.744h-59.291v11.087h23.662v9.911h-34.885v-42.676h22.778v-115.397h-70.597v59.451l-6.407.131.064-10.44-3.871-.08.033-12.249-9.61-8.672h-23.792v124.959h16.532l.003,54.312h-24.575v37.724h71.244v55.185h-71.244v38.149h66.334l-.325,103.897h-35.889v-9.508h11.127v-12.404h-33.28v74.297h34.136v48.654l53.259.153v-23.595h47.224v-97.231h24.856v-10.437h-24.856v-.009h-6.569v-2.862h-25.838v-12.111h22.823v1.042h-21.715v10.016l60.7516.173v-12.372l.9714-.002v12.374h.288v147.835h51.794v-29.25h25.546v-18.657h32.2924v-38.553h-56.4885v-61.058h80.636v-.161h.434v-32.682h17.6645v-59.124h-17.6645v-18.937h17.6645v-50.673h-17.6645v-18.176h17.6645v-58.991h-17.6645v-35.578h-51.274v242.439h-83.191v11.765l-1.0844.002v-6.464l-22.2795-.002v-20.234h-5.35v-21.634h-47.0611v-14.247l5.064-.152-.128-12.706-4.936-.044v-15.511h54.179v-49.984h-54.1791l.029-63.067,45.782-.133v-7.109h60.703v-41.022h24.449v-60.784h54.5571v-38.238h-31.852v-18.282h-24.777l-.176-29.802h-56.337ZM515.851,272.319h33.902v13.217h-33.902v-13.217Z"/>
|
||||||
|
<path class="st23" d="M464.694,408.354h7.064v6.801h14.375v15.2h-14.476v7.164h-6.66l-.303-29.165h0Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Ramps">
|
||||||
|
<g id="Big_Ramps">
|
||||||
|
<path class="st7" d="M789.4601,162.3519h-36.199"/>
|
||||||
|
<path class="st2" d="M784.78,232.3339v34.3832"/>
|
||||||
|
<path class="st0" d="M784.7035,615.8914v-38.3528"/>
|
||||||
|
<path class="st15" d="M789.541,682.9227h-35.9785"/>
|
||||||
|
</g>
|
||||||
|
<path class="st17" d="M583.2954,508.0804v-17.1271"/>
|
||||||
|
<path class="st12" d="M486.1769,279.3854h18.7785"/>
|
||||||
|
<path class="st4" d="M502.5766,192.8677h9.267"/>
|
||||||
|
<path class="st11" d="M474.741,422.8948h11.3336"/>
|
||||||
|
<path class="st14" d="M500.1418,576.6822h11.5052"/>
|
||||||
|
<path class="st9" d="M611.3195,567.6215h16.8621"/>
|
||||||
|
<path class="st13" d="M789.5117,416.8069v12.6106"/>
|
||||||
|
<path class="st6" d="M595.6872,290.4736h-9.0713"/>
|
||||||
|
<path class="st8" d="M595.9407,553.7544h-9.1193"/>
|
||||||
|
</g>
|
||||||
|
<g id="Train_Tracks">
|
||||||
|
<path class="st10" d="M2.5416,776.146l70.972-6.723,34.6764-13.434,29.825-25.398,21.634-32.581,7.143-38.784,3.372-309.83-3.879-21.637-10.66-23.604-20.353-23.011-17.624-15.649-29.1074-26.277-16.0255-20.699-9.2251-21.195-4.0928-25.753-.9258-169.5121"/>
|
||||||
|
<path class="st10" d="M3.084,781.34l71.881-6.983,36.494-13.564,31.904-26.176,23.599-35.278,7.224-40.113,3.533-309.96-3.23-21.766-10.271-23.735-18.924-23.14-17.884-16.168-29.3667-26.148-16.675-19.79-10.0043-21.195-4.8719-25.753-.1465-169.5121"/>
|
||||||
|
<path class="st10" d="M3.6939,922.704l1184.9261,1.263"/>
|
||||||
|
<path class="st10" d="M3.6939,929.756l1184.9261,1.263"/>
|
||||||
|
</g>
|
||||||
|
<g id="Buildings">
|
||||||
|
<path class="st21" d="M823.895,190.235v6.416h-2.97v-6.416h2.97Z"/>
|
||||||
|
<path class="st21" d="M823.8,182.724v6.965h-2.875v-6.965h2.875Z"/>
|
||||||
|
<path class="st21" d="M856.188,168.381v5.781h-4.661v-5.781h4.661Z"/>
|
||||||
|
<path class="st21" d="M799.816,85.9569v2.9803h-8.694v18.4368h27.889v-16.2161h.561v-5.201s-19.7559,0-19.7559,0Z"/>
|
||||||
|
<path class="st21" d="M856.178,157.924v5.755h-4.577v-5.755h4.577Z"/>
|
||||||
|
<path class="st21" d="M851.338,148.713v6.319h-6.024v-6.319h6.024Z"/>
|
||||||
|
<path class="st21" d="M840.348,148.681v6.222h-6.03v-6.222h6.03Z"/>
|
||||||
|
<path class="st21" d="M852.833,69.0342v6.3334h-6.264v-6.3334h6.264Z"/>
|
||||||
|
<path class="st21" d="M843.238,69.0618v6.3017h-6.457v-6.3017h6.457Z"/>
|
||||||
|
<path class="st21" d="M372.231,443.004l7.447-7.388,4.744,4.78-7.447,7.389-4.744-4.781Z"/>
|
||||||
|
<path class="st21" d="M418.735,251.076h13.931v-9.243h-13.931v9.243Z"/>
|
||||||
|
<path class="st21" d="M637.137,528.687h-10.462v3.731h10.462v-3.731Z"/>
|
||||||
|
<path class="st21" d="M933.863,770.275l10.279-2.946-1.502-5.241-10.279,2.947,1.502,5.24Z"/>
|
||||||
|
<path class="st21" d="M934.754,772.4l10.073-2.878,1.542,5.394-10.074,2.878-1.541-5.394Z"/>
|
||||||
|
<path class="st21" d="M78.0108,71.1693v13.9207h9.2345v-13.9207h-9.2345Z"/>
|
||||||
|
<path class="st21" d="M348.959,715.574v3.164l6.329,1.26v-5.659l-6.329,1.235Z"/>
|
||||||
|
<path class="st21" d="M531.245,80.8757l1.638-5.0988-6.476-.7444-.93,2.9774,5.768,2.8658Z"/>
|
||||||
|
<path class="st21" d="M331.5133,474.8241v3.164l6.329,1.26v-5.659l-6.329,1.235Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Limit">
|
||||||
|
<path class="st5" d="M816.069,530.62l2.145,4.638,40.176.043.231,61.355,92.636,41.079.08,27.516,23.521,13.856.018,90.846-37.972,9.438-36.744,7.449-96.386,5.404-71.785,4.546-68.048,10.614-45.401,12.824-38.391,17.498-52.854,29.013-49.816,30.879-17.22,9.853-13.949,6.225-25.19,2.73-161.375.098.085-23.886,6.578-7.562,6.071-536.368-89.927,1.258-46.756-1.014-.439-22.528-5.931-21.96-7.45-11.209-18.054-13.67-33.258-24.122-31.7437-32.266-23.791-38.609-11.6725-43.721L1.796,28.4899l32.1055-13.6815-.0751-12.7384,58.9001-.1007v12.8038l10.6355,8.546,139.573.9248,10.325-9.6421.01-12.4266,80.452-.1515v12.2824l10.629,9.6018,294.436-2.6893-.005,22.0342-3.329,21.8968.679,27.5779,37.898.0836,15.306,15.3729,55.157.034-.096-43.9038,4.918-2.6109,11.036-12.2253,32.516-.0803,49.232,2.2141,17.588,17.4057.201,145.2565-32.401.133-11.547,11.464-.123,64.705,2.782,6.141.185,59.389-3.449,2.054.56,73.058,9.544,6.268.131,51.896-4.503.032-4.977,2.732-.0211,38.474Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Powerline_Towers">
|
||||||
|
<path class="st21" d="M206.713,166.32l6.246.056-.056,6.186-6.246-.057.056-6.185Z"/>
|
||||||
|
<path class="st21" d="M226.406,166.376h6.133v6.414h-6.133v-6.414Z"/>
|
||||||
|
<path class="st21" d="M210.129,351.863h6.138v5.99h-6.138v-5.99Z"/>
|
||||||
|
<path class="st21" d="M229.878,351.765h5.742v5.989h-5.742v-5.989Z"/>
|
||||||
|
<path class="st21" d="M210.062,537.267h5.785v5.784h-5.785v-5.784Z"/>
|
||||||
|
<path class="st21" d="M229.66,537.381h5.898v5.974h-5.898v-5.974Z"/>
|
||||||
|
<path class="st21" d="M210.11,722.77h6.118v5.934h-6.118v-5.934Z"/>
|
||||||
|
<path class="st21" d="M229.579,722.724h6.164v6.027h-6.164v-6.027Z"/>
|
||||||
|
<path class="st21" d="M209.878,903.647h6.285v6.181h-6.285v-6.181Z"/>
|
||||||
|
<path class="st21" d="M229.509,903.674h6.286v6.234h-6.286v-6.234Z"/>
|
||||||
|
<path class="st21" d="M872.869,908.191l6.292-.524.52,6.269-6.294.516-.518-6.261Z"/>
|
||||||
|
<path class="st21" d="M863.191,749.083l6.169-.411.412,6.168-6.17.41-.411-6.167Z"/>
|
||||||
|
<path class="st21" d="M860.229,562.697l5.862-.288.285,5.763-5.863.289-.284-5.764Z"/>
|
||||||
|
<path class="st21" d="M860.009,405.48l6.08-.25.242,5.886-6.08.25-.242-5.886Z"/>
|
||||||
|
<path class="st21" d="M860.361,240.737l5.864-.308.305,5.805-5.863.308-.306-5.805Z"/>
|
||||||
|
<path class="st21" d="M897.839,96.7896h6.056v6.1644h-6.056v-6.1644Z"/>
|
||||||
|
<path class="st21" d="M1034.99,96.7531h6.22v6.0749h-6.22v-6.0749Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Powerlines">
|
||||||
|
<path class="st16" d="M212.849,947.372v-40.417l-.157-181.374v-370.803l-3-185.797V0"/>
|
||||||
|
<path class="st16" d="M232.639,946.554v-39.59l-.15-181.239v-370.992l-3.137-185.57V.3257"/>
|
||||||
|
<path class="st16" d="M844.643,98.6446l56.353.8617h292.184"/>
|
||||||
|
<path class="st16" d="M837.239,185.53l26.394,57.828-.398,164.86v157.168l3.448,186.877,9.708,158.943v33.009"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 361 KiB |
|
After Width: | Height: | Size: 140 KiB |
|
After Width: | Height: | Size: 102 KiB |
|
|
@ -0,0 +1,316 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Labs (TarkovDev)",
|
||||||
|
"Author": "Tarkov.dev",
|
||||||
|
"AuthorLink": "https://tarkov.dev",
|
||||||
|
"MapInternalNames": [ "laboratory" ],
|
||||||
|
"CoordinateRotation": 270,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -292, "y": -441},
|
||||||
|
"Max": {"x": -96, "y": -223}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Technical": {
|
||||||
|
"Level": -1,
|
||||||
|
"ImagePath": "Maps/Labs_TarkovDev/Layers/labs_layer_-1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -292, "y": -441},
|
||||||
|
"Max": {"x": -96, "y": -223}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -292, "y": -441, "z": -100},
|
||||||
|
"Max": {"x": -96, "y": -223, "z": -0.9}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"First Level": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Labs_TarkovDev/Layers/labs_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -292, "y": -441},
|
||||||
|
"Max": {"x": -96, "y": -223}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -292, "y": -441, "z": -0.9},
|
||||||
|
"Max": {"x": -96, "y": -223, "z": 3}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Second Level": {
|
||||||
|
"Level": 1,
|
||||||
|
"ImagePath": "Maps/Labs_TarkovDev/Layers/labs_layer_1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -292, "y": -441},
|
||||||
|
"Max": {"x": -96, "y": -223}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -271, "y": -422, "z": 3},
|
||||||
|
"Max": {"x": -101, "y": -270, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Cargo Elevator",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -112.152, "y": -408.64, "z": 5.376 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Main Elevator",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -282.304016, "y": -334.896, "z": -3.631999 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Ventilation Shaft",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -144.866, "y": -399.385, "z": -2.424 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Medical Block Elevator",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -112.423, "y": -343.986, "z": -3.10999966 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sewage Conduit",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -122.889992, "y": -258.3245, "z": -3.65600014 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Parking Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -231.73, "y": -434.816376, "z": 0.77356863 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Hangar Gate",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -170.66, "y": -240.77, "z": 2.08 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Streets of Tarkov",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": -169.079956, "y": -420.878052, "z": 1.32 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Medical Block Elevator Power",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -124.758, "y": -313.806, "z": -2.31599617 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
// { // main elevator
|
||||||
|
// "Text": "call_button",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -281.022, "y": -335.477, "z": -2.83799934 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
// { // medical block call button
|
||||||
|
// "Text": "call_button",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -114.112, "y": -343.2, "z": -2.84599972 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
// { // cargo elevator
|
||||||
|
// "Text": "call_button (1)",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -114.037, "y": -406.427979, "z": 5.31399727 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
// { // cargo elevator
|
||||||
|
// "Text": "floor_button (1)",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -112.378006, "y": -406.806, "z": 5.353998 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"Text": "Main Elevator Power Button",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -271.439, "y": -366.10498, "z": -2.380001 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
// { // main elevator
|
||||||
|
// "Text": "floor_button",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -282.361, "y": -335.86, "z": -2.91199875 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"Text": "Open Parking Gate",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -243.443, "y": -382.513, "z": 5.076 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Water Level Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -136.76, "y": -254.510513, "z": -2.825999 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
// { // not sure, located in sterile lab?
|
||||||
|
// "Text": "Power",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -121.007996, "y": -353.548, "z": -2.83698225 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
// { // medical block elevator
|
||||||
|
// "Text": "floor_button",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": -112.802, "y": -342.762, "z": -2.84599972 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"Text": "Disable Parking Gate Alarm",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -220.756, "y": -381.263, "z": 5.249 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "TerraGroup Manager's Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -165.246277, "y": -349.197, "z": 5.131374 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1e2a1e86f77431ea0ea84c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "TerraGroup Manager's Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -165.242874, "y": -338.086, "z": 5.135374 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1e2a1e86f77431ea0ea84c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Weapon Testing Area",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -181.966461, "y": -318.226044, "z": 1.37873685 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1e2d1f86f77431e9280bee"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Weapon Testing Area",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -179.862, "y": -310.3296, "z": 1.37899876 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1e2d1f86f77431e9280bee"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Infirmary (Blue)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -123.229095, "y": -406.524384, "z": 1.03631592 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0c5f86f7744bb2683cf0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sterile Lab (Green)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -135.89798, "y": -346.9675, "z": 5.185806 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0dc586f7744baf2e7b79"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sterile Lab (Green)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -138.6131, "y": -346.966125, "z": 5.25222349 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0dc586f7744baf2e7b79"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Card with a Blue Marking",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -130.268463, "y": -339.944275, "z": 5.15560675 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5efde6b4f5448336730dbd61"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Security #2 (Yellow)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -212.695, "y": -376.538, "z": 5.145301 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0d6d86f7744bb2683e1f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Test Room (Black)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -132.893, "y": -348.72, "z": 1.43501759 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0f4986f7744bb01837fa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Test Room (Black)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -128.794, "y": -349.91507, "z": 1.43701744 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0f4986f7744bb01837fa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Security Office (Violet)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -261.993, "y": -317.240021, "z": 5.147805 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1e495a86f7743109743dfb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Security Office (Red)",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -257.222015, "y": -322.925018, "z": 5.24803066 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1d0efb86f7744baf2e7b7b"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Arsenal Storage",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -250.839066, "y": -326.758667, "z": 5.097125 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5c1f79a086f7746ed066fb8f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Residential Unit",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -117.3155, "y": -439.54068, "z": 1.12753034 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "6711039f9e648049e50b3307"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,609 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" version="1.1" viewBox="0 0 720 586">
|
||||||
|
<style>
|
||||||
|
.shadow{filter:drop-shadow(0 0 8px #000)}
|
||||||
|
</style>
|
||||||
|
<g id="Technical_Level" class="shadow">
|
||||||
|
<g id="Rooms">
|
||||||
|
<path d="M296.607 143.179h4.347v215.983h-4.347Zm45.647 0h4.347v205.984h-4.347Z" style="fill:#1a1a1a"/>
|
||||||
|
<path d="M438.98 180.177h58.689v53.995H438.98Z" style="fill:#404040;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M406.376 498.148h39.125v23.998h-39.125Z" style="fill:#435570"/>
|
||||||
|
<path d="M406.376 498.148h39.125v23.998h-39.125Zm1.087 1v21.999h36.951v-21.999Z" style="display:inline"/>
|
||||||
|
<path d="M158.581 444.155h71.73v11.999h-71.73Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M73.8089 444.155h19.5628v89.993H73.8089Z" style="fill:#6b4848;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M93.3717 444.155h32.6043v11.999H93.3717Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M307.475 498.151h-45.646v17.996h-26.084v-59.993h71.73Zm-48.907-29.998h-13.042v17.998h13.042Z" style="fill:#595959;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M261.829 498.147h45.646v17.998h-45.646Z" style="fill:#595959;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M93.3717 516.146h84.7723v17.999H93.3717Zm104.3343 0h163.023v17.999H197.706Z" style="fill:#6b4848;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M178.143 456.154h19.563v77.993h-19.563Z" style="fill:#6b4848;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M348.774 258.17h92.38v11.999h-92.38Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M441.154 258.17v11.999h-92.38V258.17Zm-1.087.999h-90.206v10h90.206Z"/>
|
||||||
|
<path d="M578.093 443.154h27.171v19.999h-27.171Z" style="fill:#595959"/>
|
||||||
|
<path d="M578.093 443.154h27.171v19.999h-27.171Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M471.588 132.18h26.083v47.996h-26.083Z" style="fill:#435570;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M223.79 48.1882h45.646v71.9938H223.79Z" style="fill:#595959"/>
|
||||||
|
<path d="M269.436 48.1882v71.9938H223.79V48.1882Zm-1.087.9997h-43.472v69.9951h43.472Z"/>
|
||||||
|
<path d="M64.0275 120.182H171.623v23.998H64.0275Z" style="fill:#435570"/>
|
||||||
|
<path d="M171.623 120.182v23.998H64.0275v-23.998Zm-1.087.999H65.1145v21.999H170.536Z"/>
|
||||||
|
<path d="M155.321 180.176h13.041v23.998h-45.646v-29.997H90.1113v-29.998h65.2097Z" style="fill:#595959"/>
|
||||||
|
<path d="M155.321 180.176h13.041v23.998h-45.646v-29.997H90.1113v-29.998h65.2097Zm-1.087 0v-34.997H91.1981v27.998h32.6049v29.997h43.473v-21.998h-13.042Z"/>
|
||||||
|
<path d="M139.018 204.174h26.084v23.998h-26.084Z" style="fill:#435570"/>
|
||||||
|
<path d="M165.102 204.174v23.998h-26.084v-23.998Zm-1.088 1h-23.909v21.998h23.909Z"/>
|
||||||
|
<path d="M197.707 216.173h32.605v11.999h-32.605Z" style="fill:#435570"/>
|
||||||
|
<path d="M230.312 216.173v11.999h-32.605v-11.999Zm-1.087 1h-30.432v9.999h30.432Z"/>
|
||||||
|
<path d="M344.427 11.1899h17.389v13.9988h-17.389Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M344.427 360.162h-45.646v41.996h45.646Zm-11.955 10.999h-21.736v19.998h21.736Z" style="fill:#435570;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M310.735 371.161h21.737v19.998h-21.737Z" style="fill:#595959"/>
|
||||||
|
<path d="M310.735 371.161h21.737v19.998h-21.737Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M125.976 438.155h32.605v17.999h-32.605Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M306.39 534.148h17.389v13.999H306.39Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M289.001 534.148h17.389v13.999h-17.389Z" style="fill:#595959"/>
|
||||||
|
<path d="M289.001 534.148h17.389v13.999h-17.389Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M282.477 378.16h13.042v23.998h-13.042Z" style="fill:#595959"/>
|
||||||
|
<path d="M282.477 378.16h13.042v23.998h-13.042Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M334.646 492.149h26.084v23.998h-26.084Z" style="fill:#ccc"/>
|
||||||
|
<path d="M360.73 492.149v23.998h-26.084v-23.998Zm-3.261 2.999h-19.563v17.999h19.563Z" style="fill:#0d79f2"/>
|
||||||
|
<path d="M334.646 492.149h26.084v23.998h-26.084Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M70.5486 534.147h26.0837v23.998H70.5486Z" style="fill:#ccc"/>
|
||||||
|
<path d="M96.6323 534.147v23.998H70.5486v-23.998Zm-3.2604 3.005H73.8091v17.988h19.5628Z" style="fill:#2c8217"/>
|
||||||
|
<path d="M96.6323 534.147v23.998H70.5486v-23.998Zm-1.0864 1.001H71.6351v21.995h23.9108Z"/>
|
||||||
|
<path d="M266.175 360.165h32.604v17.998h-32.604Zm78.251 0h32.604v17.998h-32.604ZM158.581 54.1877h19.563v29.9976h-19.563Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M406.376 522.149h39.126v11.999H360.73v-17.999h45.646Z" style="fill:#6b4848"/>
|
||||||
|
<path d="M406.376 522.149h39.126v11.999H360.73v-17.999h45.646Zm-1.087 10.999h39.126v-9.999h-39.126v-6h-43.473v15.999Z"/>
|
||||||
|
<path d="M243.353 258.17h51.081v11.999h-51.081v47.996h51.081v11.999h-51.081v47.996h-13.042v-47.996h-13.042v-11.999h13.042v-47.996h-13.042V258.17h13.042v-41.996h13.042Z" style="fill:#6b6348;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M184.665 204.174v-59.995h13.042v83.993h-32.605v-23.998Z" style="fill:#435570"/>
|
||||||
|
<path d="M184.665 204.174v-59.995h13.042v83.993h-32.605v-23.998Zm11.955 2v-60.995h-10.869v59.995h-19.562v21.998h30.431Z"/>
|
||||||
|
<path d="M239.007 49.1874h17.389v7.9994h-17.389Zm0 39.9965h17.389v7.9994h-17.389Z" style="fill:#ccc"/>
|
||||||
|
<path d="M295.519 54.1864h52.167V84.184h-52.167Z" style="fill:#595959"/>
|
||||||
|
<path d="M347.686 54.1864V84.184h-52.167V54.1864Zm-1.087.9999h-49.993v27.9978h49.993Z"/>
|
||||||
|
<path d="M471.585 132.18v11.999H321.604v-23.998h26.084V90.1835H295.52v5.9995h6.521v17.999h-6.521v5.999h26.084v23.998H171.623v-23.998h39.125V84.184h-32.604V72.1849h45.646v47.9961h45.647V40.1875h-15.216 14.129v7.9994h-23.91v-4.9996h-1.087v4.9996H223.79V30.1883h45.647v-5.9995h52.167v29.9976H295.52V84.184h52.168V54.1864h-26.084V24.1888h52.167v95.9922h39.126V96.183h84.772v35.997Zm0-23.998h-32.604v23.998h32.604Z" style="fill:#435570"/>
|
||||||
|
<path d="M471.585 144.179H171.623v-23.998h39.125V84.184h-32.604V72.1849h45.646v47.9961h45.647V40.1875h-1.087v7.9994h-23.91v-4.9996h-1.087v4.9996H223.79V30.1883h45.647v-5.9995h104.334v95.9922h39.126V96.183h84.772v35.997h-26.084v-23.998h-32.604v23.998h32.604ZM254.221 41.1874v-1.9998h16.302v81.9934h-47.82V73.1849h-43.472v9.9992h32.604v37.9969H172.71v21.998h147.807v-21.998h-26.083v-7.999h6.52V97.1829h-6.52v-7.9993h54.341v31.9974h-26.084v21.998h147.807v-9.999h-32.604v-25.998h34.778v23.998h23.91V97.1829h-82.598v23.9981h-41.299V25.1887h-49.994v27.9978h26.084v31.9974h-54.341V53.1865h26.083V25.1887h-49.994v5.9996h-45.646V47.187h17.389v-4.9996h3.261v4.9996h21.736v-5.9996Zm93.467 12.999H295.52V84.184h52.168ZM295.52 120.181h52.168V90.1835H295.52v5.9995h6.521v17.999h-6.521Z"/>
|
||||||
|
<path d="M394.421 348.163v59.997h6.521v11.997h-6.521v41.997h6.521v11.997h-6.521v41.998h-13.042V360.162h-32.604v-11.999Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M394.421 348.163v59.997h6.521v11.997h-6.521v41.997h6.521v11.997h-6.521v41.998h-13.042V360.162h-32.604v-11.999Zm-1.087 1h-43.473v9.999h32.605v155.987h10.868v-41.998h6.521v-9.997h-6.521v-43.997h6.521v-9.997h-6.521Z"/>
|
||||||
|
<path d="M230.311 378.16h52.167v77.994h-52.167v-11.999h32.605V390.16h-32.605Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M466.151 366.161h31.518v11.999H394.421v-11.999h58.688v-5.999h13.042Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M466.151 366.161h31.518v11.999H394.421v-11.999h58.688v-5.999h13.042Zm-1.087 0v-4.999h-10.868v5.999h-58.688v10h101.074v-10h-31.518Z"/>
|
||||||
|
<path d="M423.765 300.167h24.997v23.998h23.91v35.997h-26.084v-23.998h-24.997v-23.998h-53.254v-41.997h55.428Z" style="fill:#595959"/>
|
||||||
|
<path d="M423.765 300.167h24.997v23.998h23.91v35.997h-26.084v-23.998h-24.997v-23.998h-53.254v-41.997h55.428Zm-1.087 0v-28.998h-53.254v39.997h53.254v23.998h24.997v23.998h23.91v-33.997h-23.91v-23.998h-24.997Z"/>
|
||||||
|
<path d="M454.196 258.17h43.473v11.999h-56.515v-35.997h13.042Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M454.196 258.17h43.473v11.999h-56.515v-35.997h13.042Zm-1.087 0v-22.998h-10.868v33.997h54.341v-9.999h-43.473Z"/>
|
||||||
|
<path d="M530.274 414.158h-19.563" style="fill:none;stroke:#000;stroke-width:1"/>
|
||||||
|
<path d="M510.711 210.174v-80.993h-13.042v-17.999h32.605v98.992Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M510.711 210.174v-80.993h-13.042v-17.999h32.605v98.992Zm1.087-1h17.389v-96.992h-30.431v15.999h13.042Z"/>
|
||||||
|
<path d="M530.274 210.174v107.991h-19.563v-44.996h-13.042V255.17h13.042v-44.996Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M530.274 210.174v107.991h-19.563v-44.996h-13.042V255.17h13.042v-44.996Zm-1.087 1h-17.389v44.996h-13.042v15.999h13.042v44.996h17.389Z"/>
|
||||||
|
<path d="M559.618 462.154c-46.722 0-48.907-28.358-48.907-47.996V381.16h-13.042v-17.998h13.042v-44.997h19.563v95.993c0 22.292 11.828 29.997 29.344 29.997v-11.999h45.646v11.999H579.18v17.999h26.084v11.999h-45.646Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M559.618 462.154c-46.722 0-48.907-28.358-48.907-47.996V381.16h-13.042v-17.998h13.042v-44.997h19.563v95.993c0 22.292 11.828 29.997 29.344 29.997v-11.999h45.646v11.999H579.18v17.999h26.084v11.999h-45.646Zm1.086 10.999h43.473v-9.999h-26.083v-19.999h26.083v-9.999h-43.473v11.999h-1.086c-9.081 0-16.671-2.044-22.007-6.93-5.307-4.86-8.424-12.573-8.424-24.067v-94.993h-17.389v44.997h-13.042v15.998h13.042v33.998c0 11.551.686 26.201 11.197 36.057 6.995 6.558 18.333 10.939 36.623 10.939h1.086Z"/>
|
||||||
|
<path d="M452.022 108.182h19.563v23.998h-19.563Z" style="fill:#ccc"/>
|
||||||
|
<path d="M471.585 108.182v23.998h-19.563v-23.998Zm-1.087 1h-17.389v21.999h17.389Z"/>
|
||||||
|
<path d="M344.427 144.179v204.984m-45.646-204.984v213.983" style="fill:none;stroke:#333;stroke-dasharray:3.99,2,0,0;stroke-opacity:.6;stroke-width:4.169616113370807"/>
|
||||||
|
<path d="M347.688 359.162h-24.997v-57.995h-2.174v57.995h-18.476v-29.998h-6.521v-9.999h6.521v-49.996h-6.521v-9.999h6.521V143.179h18.476v80.994h2.174v-80.994h18.476V259.17h6.521v9.999h-6.521v79.994h6.521Zm-24.997-71.994v-48.996h-2.174v48.996Z" style="fill:#595959"/>
|
||||||
|
</g>
|
||||||
|
<g id="Arrows" style="display:inline">
|
||||||
|
<path d="m461.803 115.181 7.608 9.999h-15.215z" style="fill:#0bb300"/>
|
||||||
|
<path d="m461.803 115.181 7.608 9.999h-15.215zm0 1.744-5.52 7.255h11.041z"/>
|
||||||
|
<path d="m168.362 64.1853 7.608 9.9992h-15.216z" style="fill:#0bb300"/>
|
||||||
|
<path d="m168.362 64.1853 7.608 9.9992h-15.216zm0 1.7437-5.52 7.2556h11.04z"/>
|
||||||
|
<path d="m83.59 541.145 7.6079 9.999H75.9825Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m83.59 541.145 7.6079 9.999H75.9825Zm0 1.743-5.5203 7.256h11.0407z"/>
|
||||||
|
<path d="m347.687 499.148 7.608 9.999H340.08Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m347.687 499.148 7.608 9.999H340.08Zm0 1.744-5.52 7.255h11.041z"/>
|
||||||
|
<path d="m282.478 364.161 7.608 9.999h-15.215z" style="fill:#0bb300"/>
|
||||||
|
<path d="m282.478 364.161 7.608 9.999h-15.215zm0 1.744-5.52 7.255h11.04z"/>
|
||||||
|
<path d="m360.729 364.161 7.608 9.999h-15.215z" style="fill:#0bb300"/>
|
||||||
|
<path d="m360.729 364.161 7.608 9.999h-15.215zm0 1.744-5.52 7.255h11.04z"/>
|
||||||
|
<path d="m247.7 47.1867 7.608 9.9991h-15.216z" style="fill:#0bb300"/>
|
||||||
|
<path d="m247.7 47.1867 7.608 9.9991h-15.216zm0 1.7437-5.52 7.2556h11.04z"/>
|
||||||
|
<path d="m247.7 87.1834 7.608 9.9992h-15.216z" style="fill:#0bb300"/>
|
||||||
|
<path d="m247.7 87.1834 7.608 9.9992h-15.216zm0 1.7437-5.52 7.2556h11.04z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Doors" style="display:inline">
|
||||||
|
<path d="M181.404 454.154h13.042v3.999h-13.042zm14.129 76.993v-11.999h4.347v11.999zm-19.563 0v-11.999h4.347v11.999zm-84.7718 0v-11.999h4.3472v11.999zm267.3578 0v-11.999h4.347v11.999zm33.691-152.987v-11.999h4.348v11.999zm60.862-19.998h13.042v3.999h-13.042zm-76.077-89.993h13.042v4h-13.042zm64.122-35.997h13.042v3.999h-13.042zm14.129-101.992h13.042v4h-13.042zm-135.853 7.999V126.18h4.348v11.999zm-149.981 0V126.18h4.347v11.999zM79.243 532.147h8.6946v4H79.243Zm16.3023-85.993v8h-4.3472v-8zm32.6047 0v8h-4.347v-8zm32.605 0v8h-4.348v-8zm71.73 0v8h-4.348v-8zm31.517 56.994v7.999h-4.347v-7.999zm-18.476 10.999h8.695v4h-8.695zm65.21 18h8.694v4h-8.694zm-43.473-77.993h8.694v3.999h-8.694zm-34.778-77.994h8.694v4h-8.694zM343.34 514.147h8.695v4h-8.695zm40.213 0h8.694v4h-8.694zm46.733 5.999h8.694v4h-8.694zM300.954 365.161v7.999h-4.347v-7.999zm45.647 0v7.999h-4.348v-7.999zm-40.213-6.999h8.695v3.999h-8.695zm209.757-149.988h8.694v3.999h-8.694zm0 107.991h8.694v4h-8.694zm-16.303 51.996v7.999h-4.347v-7.999zm-148.894-17.999v7.999h-4.347v-7.999zm-54.341-29.997v7.999h-4.347v-7.999zm0-59.996v8h-4.347v-8zm54.341 0v8h-4.347v-8zm-118.463-41.975v7.999h-4.348v-7.999zm-32.605-.021v7.999h-4.347v-7.999zm-32.605-9.999v7.999h-4.347v-7.999zm19.563-65.995h8.695v4h-8.695zm-76.077 0h8.694v4h-8.694zm32.604 59.995h8.695v4h-8.695zm36.952-127.9895v7.9993h-4.347v-7.9993zm47.82-27.9977h8.695v3.9997h-8.695zm72.817 5.9995h8.695v3.9997h-8.695zm32.605 0h8.694v3.9997h-8.694zm15.215-29.9975h8.695v3.9997h-8.695zM484.627 130.18h8.694v4h-8.694zm-8.695 47.996h8.695v4h-8.695zm23.91-61.995v7.999h-4.347v-7.999zm0 143.988v8h-4.347v-8zm-56.514 0v8h-4.348v-8z" style="fill:#8c737c"/>
|
||||||
|
<path d="M323.778 33.1875v11.999h-4.347v-11.999z" style="fill:red"/>
|
||||||
|
<path d="M284.652 390.159v7.999h-4.347v-7.999zm8.695 141.986h8.694v4h-8.694z" style="fill:#f30000"/>
|
||||||
|
</g>
|
||||||
|
<g id="Details" style="display:inline">
|
||||||
|
<path d="M281.391 468.152h19.563v8.999h-19.563z" style="fill:#337bcc"/>
|
||||||
|
<path d="M449.85 190.179h26.084v11.999H449.85Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M281.391 483.151h19.563v8.999h-19.563z" style="fill:#337bcc"/>
|
||||||
|
<path d="M449.85 212.177h26.084v11.999H449.85Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M236.831 61.1866h19.563v9.9992h-19.563z" style="fill:#337bcc"/>
|
||||||
|
<path d="M236.831 75.1852h19.563v9.9992h-19.563z" style="fill:#337bcc"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="First_Level">
|
||||||
|
<g id="Rooms">
|
||||||
|
<path d="M328.046 264.181h8v3h1v3h9v-6h24v6h36v-6h21v6h57v66h3v48h-3v66h-42v-20c0-1.061-.42-2.078-1.17-2.828-.75-.751-1.77-1.172-2.83-1.172h-48.34c-1.06 0-2.08-.421-2.83-1.172-2.3-2.295-7.36-7.361-9.66-9.656-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172-2.3 2.295-7.36 7.361-9.66 9.656-.75.751-1.17 1.768-1.17 2.829v22.343h-24v-22.343c0-1.061-.42-2.078-1.17-2.829-2.3-2.295-7.36-7.361-9.66-9.656-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172-2.3 2.295-7.36 7.361-9.66 9.656-.75.751-1.77 1.172-2.83 1.172h-48.34c-1.06 0-2.08.421-2.83 1.172-.75.75-1.17 1.767-1.17 2.828v20h-42v-180h54v-6h24v6h36v-6h24v6h9v-3h1v-3h8v3h2v-3h8v3h2Zm-1 78h-10v24h10Zm115-36h-30v18h30Z" style="fill:#595959"/>
|
||||||
|
<path d="M328.046 264.181h8v3h1v3h9v-6h24v6h36v-6h21v6h57v66h3v48h-3v66h-42v-20c0-1.061-.42-2.078-1.17-2.828-.75-.751-1.77-1.172-2.83-1.172h-48.34c-1.06 0-2.08-.421-2.83-1.172l-9.66-9.656c-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172l-9.66 9.656c-.75.751-1.17 1.768-1.17 2.829v22.343h-24v-22.343c0-1.061-.42-2.078-1.17-2.829l-9.66-9.656c-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172l-9.66 9.656c-.75.751-1.77 1.172-2.83 1.172h-48.34c-1.06 0-2.08.421-2.83 1.172-.75.75-1.17 1.767-1.17 2.828v20h-42v-180h54v-6h24v6h36v-6h24v6h9v-3h1v-3h8v3h2v-3h8v3h2Zm8 4h-1v-3h-6v3h-4v-3h-6v3h-4v-3h-6v3h-1v3h-11v-6h-22v6h-38v-6h-22v6h-54v178h40v-19c0-1.326.53-2.598 1.46-3.536.94-.937 2.21-1.464 3.54-1.464h48.34c.8 0 1.56-.316 2.12-.879l9.66-9.657c.94-.937 2.21-1.464 3.54-1.464h26.68c1.33 0 2.6.527 3.54 1.464l9.66 9.657c.93.938 1.46 2.21 1.46 3.536v21.343h22v-21.343c0-1.326.53-2.598 1.46-3.536l9.66-9.657c.94-.937 2.21-1.464 3.54-1.464h26.68c1.33 0 2.6.527 3.54 1.464l9.66 9.657c.56.563 1.32.879 2.12.879h48.34c1.33 0 2.6.527 3.54 1.464.93.938 1.46 2.21 1.46 3.536v19h40v-66h3v-46h-3v-66h-57v-6h-19v6h-38v-6h-22v6h-11Z"/>
|
||||||
|
<path d="M235.045 54.181h30v59.998h-30Z" style="fill:#595959"/>
|
||||||
|
<path d="M265.043 114.179h-29.998V54.181h29.998Zm-.992-.999v-58h-28v58Z"/>
|
||||||
|
<path d="M247.046 67.1817h17.999v10h-17.999Zm0 14h17.999v10h-17.999Z" style="fill:#264a73"/>
|
||||||
|
<path d="M82.0461 432.185h12v18h-12Z" style="fill:#595959"/>
|
||||||
|
<path d="M94.0461 432.185v18h-12v-18Zm-1 1h-10v16.001h10Z"/>
|
||||||
|
<path d="M82.0461 450.181h12v7h-24v-43h12Z" style="fill:#595959"/>
|
||||||
|
<path d="M82.0461 450.181h12v7h-24v-43h12Zm-1 0v-35h-10v41h22v-5h-12Z"/>
|
||||||
|
<path d="M94.0441 450.18h17.9999v60H94.0441Z" style="fill:#435570"/>
|
||||||
|
<path d="M112.044 450.18v60H94.0441v-60Zm-1.001 1H95.0454v58h15.9976Z"/>
|
||||||
|
<path d="M154.05 468.182h24v42h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.05 468.182v42h-24v-42Zm-1 1h-22v39.999h22Z"/>
|
||||||
|
<path d="M154.05 450.181h24v18h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.05 450.181v18h-24v-18Zm-1 1h-22v16h22Z"/>
|
||||||
|
<path d="M133.046 492.184h21v18h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M154.046 492.184v18h-21v-18Zm-1.002 1h-18.996v16.001h18.996Z"/>
|
||||||
|
<path d="M112.048 496.181h21v14h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M133.048 496.181v14h-21v-14Zm-.997 1h-19.005v12h19.005Z"/>
|
||||||
|
<path d="M112.048 450.18h42.001v21h-42.001Z" style="fill:#595959"/>
|
||||||
|
<path d="M154.049 450.18v21h-42.001v-21Zm-.998 1h-40.005v19h40.005Z"/>
|
||||||
|
<path d="M112.046 496.181v-25h42v21h-21v4Z" style="fill:#595959"/>
|
||||||
|
<path d="M112.046 496.181v-25h42v21h-21v4Zm1-4v3h19v-4h21v-19h-40Z"/>
|
||||||
|
<path d="M112.05 390.182h48v60h-48Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M160.05 390.182v60h-48v-60Zm-1 1h-46v57.999h46Z"/>
|
||||||
|
<path d="M94.0461 408.184h17.9999v42H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 408.184v42H94.0461v-42Zm-1 1H95.0461v40h15.9999Z"/>
|
||||||
|
<path d="M331.046 552.179h18v24h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M349.046 552.179v24h-18v-24Zm-1 1h-16v22h16Z"/>
|
||||||
|
<path d="M283.046 552.179h18v24h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M301.046 552.179v24h-18v-24Zm-1 1h-16v22h16Z"/>
|
||||||
|
<path d="M94.0461 312.176h17.9999v-42H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 312.176H94.0461v-42h17.9999Zm-1-1v-40H95.0461v40Z"/>
|
||||||
|
<path d="M514.046 108.178h18V66.1775h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M532.046 108.178h-18V66.1775h18Zm-1-1V67.1776h-16v40.0004Z"/>
|
||||||
|
<path d="M532.046 270.175h18v-42h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M550.046 270.175h-18v-42h18Zm-1-1v-40h-16v40Z"/>
|
||||||
|
<path d="M94.0461 390.181h17.9999v18H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 390.181v18H94.0461v-18Zm-1 1H95.0461v16h15.9999Z"/>
|
||||||
|
<path d="M331.046 534.179h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M349.046 534.179v18h-18v-18Zm-1 1h-16v16h16Z"/>
|
||||||
|
<path d="M283.046 534.179h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M301.046 534.179v18h-18v-18Zm-1 1h-16v16h16Z"/>
|
||||||
|
<path d="M532.046 210.182h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M550.046 210.182v18h-18v-18Zm-1 1h-16v16h16Z"/>
|
||||||
|
<path d="M94.0461 330.18h17.9999v-18H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 330.18H94.0461v-18h17.9999Zm-1-1v-16H95.0461v16Z"/>
|
||||||
|
<path d="M514.046 126.181h18v-18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M532.046 126.181h-18v-18h18Zm-1-1v-16h-16v16Z"/>
|
||||||
|
<path d="M70.0456 510.181H179.045v23.998H70.0456Z" style="fill:#435570"/>
|
||||||
|
<path d="M179.045 534.181H70.0456v-24H179.045Zm-.999-1v-22H71.0447v22Z"/>
|
||||||
|
<path d="M178.046 450.179h24v36.999h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.046 450.179h24v36.999h-24Zm1 1v34.999h22v-34.999Z"/>
|
||||||
|
<path d="M70.0453 456.178h24v59.999h-24Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M94.0453 456.178v59.999h-24v-59.999Zm-1.0014.999H71.0467v58.001h21.9972Z"/>
|
||||||
|
<path d="M76.0462 456.179h12v1h-12Zm0 58.998h12v1h-12Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M334.046 510.181h30v24h-139v-24h85v-60h24Z" style="fill:#435570"/>
|
||||||
|
<path d="M334.046 510.181h30v24h-139v-24h85v-60h24Zm-1 0v-59h-22v60h-85v22h137v-22h-30Z"/>
|
||||||
|
<path d="M292.046 486.183h18v24h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M310.046 486.183v24h-18v-24Zm-1.002 1h-15.996v21.998h15.996Z"/>
|
||||||
|
<path d="M292.046 450.181h18v24h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M310.046 450.181v24h-18v-24Zm-1.002 1h-15.996v21.998h15.996Z"/>
|
||||||
|
<path d="M292.046 474.179h18v12.002h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M310.046 474.179v12.002h-18v-12.002Zm-1.005 1h-15.99v10.002h15.99Z"/>
|
||||||
|
<path d="M262.046 450.181h29.999v60h-29.999Z" style="fill:#595959"/>
|
||||||
|
<path d="M292.045 450.181v60h-29.999v-60Zm-1 1h-27.999v58h27.999Z"/>
|
||||||
|
<path d="M94.0461 330.181h65.9999v60H94.0461v24h-24v-108h24Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M94.0461 330.181h65.9999v60H94.0461v24h-24v-108h24Zm-1 0v-23h-22v106h22v-24h65.9999v-58H93.0461Z"/>
|
||||||
|
<path d="M334.046 450.181h30v12h-30Z" style="fill:#595959"/>
|
||||||
|
<path d="M364.046 450.181v12h-30v-12Zm-1 1h-28v10h28Z"/>
|
||||||
|
<path d="M334.046 462.182h18v18h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M352.046 462.182v18h-18v-18Zm-.99 1.001h-16.02v15.999h16.02Z"/>
|
||||||
|
<path d="M364.111 450.18h138.001v78H364.111Z" style="fill:#595959"/>
|
||||||
|
<path d="M502.112 450.18v78H364.111v-78Zm-1.035.999H365.146v76.001h135.931Z"/>
|
||||||
|
<path d="M166.046 270.181h-18v60h-12v-72h18v-18h12Z" style="fill:#595959"/>
|
||||||
|
<path d="M166.046 270.181h-18v60h-12v-72h18v-18h12Zm-1-1v-28h-10v18h-18v70h10v-60Z"/>
|
||||||
|
<path d="M22.0502 162.18h36.0001v36H22.0502Z" style="fill:#595959"/>
|
||||||
|
<path d="M58.0503 162.18v36H22.0502v-36Zm-.996 1H23.0462v34h34.0081Z"/>
|
||||||
|
<path d="M190.047 240.181H58.0467v-120H190.047v30h21v60h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M190.047 240.181H58.0467v-120H190.047v30h21v60h-21Zm-1-1v-30h21v-58h-21v-30H59.0467v118Z"/>
|
||||||
|
<path d="M139.046 175.181h6v10h-6Zm-36 0h6v10h-6Z"/>
|
||||||
|
<path d="M190.05 102.183h24v48h-24Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M214.05 102.183v48h-24v-48Zm-1 1h-22v46h22Z"/>
|
||||||
|
<path d="M190.05 210.183h24v48h-24Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M214.05 210.183v48h-24v-48Zm-1 1h-22v46h22Z"/>
|
||||||
|
<path d="M334.046 486.179h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M358.046 486.179v24h-24v-24Zm-3 3h-18v18h18Z" style="fill:#0d79f2"/>
|
||||||
|
<path d="M334.046 486.179h24v24h-24Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M70.0457 534.18h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M94.0457 534.18v24h-24v-24Zm-3 3.006h-18v17.989h18Z" style="fill:#2c8217"/>
|
||||||
|
<path d="M94.0457 534.18v24h-24v-24Zm-.9997 1.002H71.0453v21.997H93.046Z"/>
|
||||||
|
<path d="M272.046 364.183h8v16h-8Zm95 3h8v16h-8Z" style="fill:#ccc"/>
|
||||||
|
<path d="M151.046 54.1821h18v30.0001h-18Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M259.046 42.1813h18v12h-42v-18h-21v65.9997h-48v18h-12V84.1813h42v-66h63Z" style="fill:#595959"/>
|
||||||
|
<path d="M259.046 42.1813h18v12h-42v-18h-21v65.9997h-48v18h-12V84.1813h42v-66h63Zm-23 4v7h40v-10h-18v-24h-61v66h-42v33.9997h10v-18h48V35.1813h23Z"/>
|
||||||
|
<path d="M277.032 18.1782h90V126.178h-90Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M367.032 18.1782V126.178h-90V18.1782Zm-.99 1.0028h-88.02v105.994h88.02Z"/>
|
||||||
|
<path d="M277.046 126.181h-42v-12h30V54.1813h12Z" style="fill:#595959"/>
|
||||||
|
<path d="M277.046 126.181h-42v-12h30V54.1813h12Zm-1-1V55.1813h-10v59.9997h-30v10Z"/>
|
||||||
|
<path d="M409.049 111.18v15h-42V66.1802h11.995V111.18Z" style="fill:#595959"/>
|
||||||
|
<path d="M409.049 111.18v15h-42V66.1802h11.995V111.18Zm-1.004 1h-29.994V67.1802h-9.998V125.18h39.992Z"/>
|
||||||
|
<path d="M379.048 66.1791h30v44.9999h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M409.048 66.1791v44.9999h-30V66.1791Zm-.995.9998h-28.011v43.0001h28.011Z"/>
|
||||||
|
<path d="M427.053 108.182h21v18h-21Z" style="fill:#ccc"/>
|
||||||
|
<path d="M448.053 108.182v18h-21v-18Zm-1.003 1h-18.994v15.999h18.994Z"/>
|
||||||
|
<path d="M316.046 264.181h-8v-3h-1v-3h-5v-6h-4v12h-24v-12h-36v12h-24v-162h21v24h174V96.1813h18V264.181h-21v-12h-36v12h-24v-12h-4v6h-5v2.965l-1 .035v3h-8v-3h-2v3h-8v-3h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M316.046 264.181h-8v-3h-1v-3h-5v-6h-4v12h-24v-12h-36v12h-24v-162h21v24h174V96.1813h18V264.181h-21v-12h-36v12h-24v-12h-4v6h-5v2.965l-1 .035v3h-8v-3h-2v3h-8v-3h-2Zm-8-4h1v3h6v-3h4v3h6v-3h4v3h6v-2.965l1-.036v-2.999h5v-6h6v12h22v-12h38v12h19V97.1813h-16v29.9997h-176v-24h-19v160h22v-12h38v12h22v-12h6v6h5Z"/>
|
||||||
|
<path d="M234.046 147.183h176v87h-176Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M178.046 486.179h24v24.002h24v24h-48Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M178.046 486.179h24v24.002h24v24h-48Zm1 1v46.002h46v-22h-24v-24.002Z"/>
|
||||||
|
<path d="M427.044 126.182h56.999v72h-56.999Z" style="fill:#404040"/>
|
||||||
|
<path d="M484.043 126.182v72h-56.999v-72Zm-.995 1.001h-55.009v69.999h55.009Z"/>
|
||||||
|
<path d="M427.046 210.179h45v60h-45Z" style="fill:#404040"/>
|
||||||
|
<path d="M472.046 210.179v60h-45v-60Zm-1 1.001h-43v57.999h43Z"/>
|
||||||
|
<path d="M514.047 144.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M544.047 144.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M544.047 144.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M574.047 144.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M514.047 168.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M544.047 168.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M544.047 168.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M574.047 168.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M550.046 210.181h-45v6h6v27h-9v-12h-18v39h-12v-60h-45v-12h57v-72h-18v-18h-39V96.1813h87v29.9997h24v18h-24v48h36Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M550.046 210.181h-45v6h6v27h-9v-12h-18v39h-12v-60h-45v-12h57v-72h-18v-18h-39V96.1813h87v29.9997h24v18h-24v48h36Zm-1-1v-16h-36v-50h24v-16h-24V97.1813h-85v9.9997h39v18h18v74h-57v10h45v60h10v-39h20v12h7v-25h-6v-8Z"/>
|
||||||
|
<path d="M484.041 240.184h18v12h-18Z" style="fill:#0dcaf2"/>
|
||||||
|
<path d="M502.041 240.184v12h-18v-12Zm-1.003 1h-15.994v10h15.994Z"/>
|
||||||
|
<path d="M484.041 231.181h18v9h-18Z" style="fill:#2f6020"/>
|
||||||
|
<path d="M502.041 231.181v9h-18v-9Zm-1.003 1h-15.994v7h15.994Z"/>
|
||||||
|
<path d="M490.046 336.181v-66h156v180h-156v-66h-3v-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M490.046 336.181v-66h156v180h-156v-66h-3v-48Zm0 1h-2v46h3v66h154v-178h-154v66Z"/>
|
||||||
|
<path d="M532.047 246.181v24h-48v-18h18v-9h9v9h9l6-6Z" style="fill:#595959"/>
|
||||||
|
<path d="M532.047 246.181v24h-48v-18h18v-9h9v9h9l6-6Zm-1 1h-4.59l-6 6h-10.41v-9h-7v9h-18v16h46Z"/>
|
||||||
|
<path d="M697.046 336.181h12v48h-12v24h-18v-24h-33v-48h33v-24h18Z" style="fill:#595959"/>
|
||||||
|
<path d="M697.046 336.181h12v48h-12v24h-18v-24h-33v-48h33v-24h18Zm-1-23h-16v24h-33v46h33v24h16v-24h12v-46h-12Z"/>
|
||||||
|
<path d="M512.047 235.181h19v10h-6l-6 6v2h-7ZM81.0441 401.18H93.044v12H81.0441Zm0-94.001H93.044v12H81.0441Zm110.0019-65.996h22v16h-22Zm0-138.001h22v16h-22Z" style="fill:#ccc"/>
|
||||||
|
<path d="M58.0459 360.182h12v12h-12Z" style="fill:#595959"/>
|
||||||
|
<path d="M70.0459 360.182v11.998h-12v-11.998Zm-.9998.994H59.0456v10.002h10.0005Z"/>
|
||||||
|
<path d="M58.0459 348.182h12v12h-12Z" style="fill:#595959"/>
|
||||||
|
<path d="M70.0459 348.182v11.998h-12v-11.998Zm-.9998.994H59.0456v10.001h10.0005Z"/>
|
||||||
|
<path d="M467.046 108.181h-19v18h18v-10h1" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M365.047 465.179h10v18h-10Zm125.999 0h10v18h-10Z" style="fill:#ccc"/>
|
||||||
|
<path d="M603.046 449.181v1h7v54h30v24h-138v-18h42v-6h36v-54h6v-1" style="fill:#595959;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M503.049 511.178h22v16h-22ZM249.044 55.1814h17v8h-17Zm0 39.9999h17v7.9997h-17ZM429.05 506.179h8v8h-8ZM278.046 95.1823h9v29.9997h-9Zm-40 54.9987h9v24h-9Zm159.001 0h9v24h-9Zm-159.001 60h9v24h-9Zm159.001 0h9v24h-9Zm-54.997 179h12v24h-12Zm106 11.999h12v24h-12Zm-264.004 0h12v24h-12ZM448.05 294.181h12v24h-12Zm-264.004 0h12v24h-12Zm158.004 12h12v24h-12Zm-52.001 83h12v24h-12Zm0-83h12v24h-12Zm66.997-210.9987h9v29.9997h-9Zm-43.995 0h18v29.9997h-18Zm0 114.9987h18v24h-18Zm215.995 111h9v12h-9Zm0 66h9v12h-9Z" style="fill:#ccc"/>
|
||||||
|
<path d="M442.046 306.181h-30l-12 .002 12 .043v17.955h30Z" style="fill:#595959"/>
|
||||||
|
<path d="M442.046 306.181h-30l-12 .002 12 .043v17.955h30Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M208.046 372.182h18v36h-18Z" style="fill:#595959;stroke:#000;stroke-width:1.3796145544246985"/>
|
||||||
|
<path d="M227.509 367.578c-2.049 1.631-4.643 2.605-7.463 2.605-6.623 0-12-5.377-12-12s5.377-12 12-12c5.706 0 10.487 3.992 11.702 9.332" style="fill:#6b6348;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M501.046 474.181h13v37" style="fill:none;stroke:#ccc;stroke-dasharray:2,2;stroke-opacity:.6;stroke-width:2"/>
|
||||||
|
<circle id="circle193" cx="322.045346" cy="171.180965" r="8.999993"/>
|
||||||
|
<path d="M626.045 329.183h6v8h-6Zm0 54h6v8h-6Zm-50-54.002h6v8h-6Zm0 54h6v8h-6Zm-53-54h6v8h-6Zm0 54h6v8h-6Z"/>
|
||||||
|
<path d="M427.045 387.181h15v15h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M429.048 402.181h-2.003v-2h3.998v2Zm-2.003-14h.998v-1h2.002v2h-.997v1h-2.003Zm0 4h2.003v2h-2.003Zm0 4h2.003v2h-2.003Zm6 6v-2h2.003v2Zm3.998 0v-2h2.002v2Zm3.015 0-.015-.011v-.989h1.005v-1h.997v2Zm1.987-3h-2.002v-2h2.002Zm0-4h-2.002v-2h2.002Zm0-4h-2.002v-4c0 1.885 2.002 2 2.002 2Zm-3.997-4v2h-2.003v-2Zm-4.005 0v2h-1.995v-2Z"/>
|
||||||
|
<path d="M406.045 387.181h15v15h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M408.048 402.181h-2.003v-2h3.998v2Zm-2.003-14h.998v-1h2.002v2h-.997v1h-2.003Zm0 4h2.003v2h-2.003Zm0 4h2.003v2h-2.003Zm6 6v-2h2.003v2Zm3.998 0v-2h2.002v2Zm3 0v-1h1.005v-1h.997v2Zm2.002-3h-2.002v-2h2.002Zm0-4h-2.002v-2h2.002Zm0-4h-2.002v-4c0 1.885 2.002 2 2.002 2Zm-3.997-4v2h-2.003v-2Zm-4.005 0v2h-1.995v-2Z"/>
|
||||||
|
<path d="M385.046 387.181h15v15h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M387.048 402.181h-2.002v-2h3.997v2Zm-2.002-14h.997v-1h2.003v2h-.998v1h-2.002Zm0 4h2.002v2h-2.002Zm0 4h2.002v2h-2.002Zm6 6v-2h2.002v2Zm3.997 0v-2h2.003v2Zm3 0v-1h1.005v-1h.998v2Zm2.003-3h-2.003v-2h2.003Zm0-4h-2.003v-2h2.003Zm0-4h-2.003v-4c0 1.885 2.003 2 2.003 2Zm-3.998-4v2h-2.002v-2Zm-4.005 0v2h-1.995v-2Z"/>
|
||||||
|
<path d="M413.042 372.18h29v14.999h-29Z" style="fill:#404040"/>
|
||||||
|
<path d="M442.048 372.18v14.999h-29.006V372.18Zm-1.008.999h-26.99v13.001h26.99Z"/>
|
||||||
|
<path d="M428.044 364.184h14v7.999h-14Z" style="fill:#404040"/>
|
||||||
|
<path d="M442.047 364.184v7.999h-14.003v-7.999Zm-1.002 1h-11.999v6.001l11.999-.002Z"/>
|
||||||
|
<path d="M264.046 352.185h8v51h-8Z" style="fill:#404040"/>
|
||||||
|
<path d="M272.046 352.185v51h-8v-51Zm-1 .998h-6v49.004h6Z"/>
|
||||||
|
<path d="M202.474 348.816c3.362-6.323 10.017-10.632 17.671-10.632 4.713 0 9.047 1.633 12.467 4.365l-3.814 4.69c-2.395-1.912-5.429-3.055-8.727-3.055-5.358 0-10.017 3.016-12.37 7.443Z" style="fill:#404040;stroke:#000;stroke-width:1.00000029094"/>
|
||||||
|
<path d="M435.046 371.183h6v2h-6Zm-5-5.999v6h-2v-6Zm-164.997 36h6v2h-6Zm0-49.002h6v2h-6Zm-31.701-8.35-3.162 3.938-1.56-1.252 3.163-3.939Zm-30.057 4.51 4.311 2.531-1.013 1.725-4.311-2.531Z" style="fill:#404040"/>
|
||||||
|
<path d="M184.046 486.177h12v1h-12Zm-6.001 42.005v-12h1v12Zm47.001 0v-12h1v12Z" style="fill:#337bcc"/>
|
||||||
|
</g>
|
||||||
|
<g id="Arrows">
|
||||||
|
<path d="m533.546 322.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m533.546 322.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m533.546 388.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m533.546 388.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m82.0463 556.174-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m82.0463 556.174-7.0002-10h14Zm0-1.744 5.0793-7.256H76.967Z"/>
|
||||||
|
<path d="m346.044 508.174-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m346.044 508.174-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m276.044 377.181-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m276.044 377.181-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m371.044 380.181-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m371.044 380.181-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m160.044 74.181-7-9.9999h14Z" style="fill:red"/>
|
||||||
|
<path d="m160.044 74.181-7-9.9999h14Zm0-1.7438 5.08-7.2562h-10.159Z"/>
|
||||||
|
<path d="m257.044 64.181-7-9.9999h14Z" style="fill:red"/>
|
||||||
|
<path d="m257.044 64.181-7-9.9999h14Zm0-1.7438 5.08-7.2562h-10.159Z"/>
|
||||||
|
<path d="m257.044 104.181-7-9.9999h14Z" style="fill:red"/>
|
||||||
|
<path d="m257.044 104.181-7-9.9999h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m457.044 122.181-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m457.044 122.181-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m82.0457 536.179 7.0002 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m82.0457 536.179 7.0002 10h-14Zm0 1.744-5.0793 7.256H87.125Z"/>
|
||||||
|
<path d="m346.046 488.179 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m346.046 488.179 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m87.0457 308.181 7.0002 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m87.0457 308.181 7.0002 10h-14Zm0 1.744-5.0793 7.256H92.125Z"/>
|
||||||
|
<path d="m87.0457 402.181 7.0002 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m87.0457 402.181 7.0002 10h-14Zm0 1.744-5.0793 7.256H92.125Z"/>
|
||||||
|
<path d="m437.546 112.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m437.546 112.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m514.046 514.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m514.046 514.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m521.046 235.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m521.046 235.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m202.046 244.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m202.046 244.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m202.046 106.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m202.046 106.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m370.046 469.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m370.046 469.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m496.046 469.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m496.046 469.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m433.042 514.18-4-6h8Z" style="fill:red"/>
|
||||||
|
<path d="m433.042 514.18-4-6h8Zm0-1.803 2.131-3.197h-4.263Z"/>
|
||||||
|
<path d="m322.046 105.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m322.046 105.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m322.046 217.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m322.046 217.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m282.546 105.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m282.546 105.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m242.546 157.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m242.546 157.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m401.546 157.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m401.546 157.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m242.546 217.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m242.546 217.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m401.546 217.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m401.546 217.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m348.046 396.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m348.046 396.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m454.046 408.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m454.046 408.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m190.046 408.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m190.046 408.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m454.046 301.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m454.046 301.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m190.046 301.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m190.046 301.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m348.046 313.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m348.046 313.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m296.046 396.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m296.046 396.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m296.046 313.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m296.046 313.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m361.546 105.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m361.546 105.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Doors">
|
||||||
|
<path d="M366.027 125.18v2h-87.999v-2Zm-50.985 138v2h-6v-2Zm20 0v2h-6v-2Zm-10 0v2h-6v-2Zm-96 0v2h-6v-2Zm186 0v2h-6v-2ZM189.045 129.184h2v12h-2Zm0 90h2v12h-2Zm24-90h2v12h-2Zm0 90h2v12h-2Zm-4.997-10.004v2h-9v-2Zm0-60v2h-9v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M546.045 152.181v8h-4v-8Zm0 24v8h-4v-8Zm-117-29v12h-4v-12Zm0 74v8h-4v-8Zm45 0v8h-4v-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M486.045 354.184h2v12h-2Zm159-6.005h2v24h-2ZM57.046 168.182h2v24h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M290.046 484.18v-8h4v8Zm-150 6.001h7v4h-7Zm-11-21h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M297.046 484.18h8v4h-8Zm0-12.001h8v4h-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M486.045 156.181v12h-4v-12Zm30-4v8h-4v-8Zm0 24v8h-4v-8Zm-418.999 332h12v4h-12Zm-19 23.998h8v4h-8Zm82-23.998h12v4h-12Zm2-42h8v4h-8Zm-39 28h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M114.046 499.181v8h-4v-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M85.0465 448.181h6v4h-6Zm-13.0005-36h8v4h-8Zm27-24h8v4h-8Zm0 18h8v4h-8Zm0-78h8v4h-8Zm0-18h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M69.0452 363.181h2v6h-2ZM147.05 329.18v2h-10v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M279.046 44.181v8h-4v-8Zm-123 38h8v4h-8Zm0 36h8v4h-8Zm0 120h8v4h-8Zm132 293.998h8v4h-8Zm0 17.995h8v4h-8Zm48-17.995h8v4h-8Zm0 17.995h8v4h-8Zm6-41.993h8v4h-8Zm23.999 5v12h-4v-12Zm0-61v8h-4v-8Zm-29.999 0v8h-4v-8Zm3 8h8v4h-8Zm-27 32v12h-4v-12Zm0-36v12h-4v-12Zm-176-68h12v4h-12Zm26 44v8h-4v-8Zm266.999-232v8h-4v-8Zm0-102v8h-4v-8Zm0 15v8h-4v-8Zm-18 0v8h-4v-8Zm-30-43v8h-4v-8Zm-143.999 46v8h-4v-8Zm162-7h8v4h-8Zm-120-46v12h-4v-12Zm89.999 9v12h-4v-12Zm150.005 52h8v4h-8Zm0-18h8v4h-8Zm18 102h8v4h-8Zm0 18h8v4h-8Zm-43.003 42h12v4h-12Zm22 0h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M510.046 242.18v2h-7v-2Zm-26.996 27v2h-10v-2Zm-324.005 62.001h2v58h-2Zm42.003 117.999v2h-22v-2Zm132 0v2h-22v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M428.045 128.181v17h-2v-17Zm0 33v34.999h-2v-34.999Zm-236.999-12h6v2h-6Zm0 60h6v2h-6Zm0-88v6h-2v-6Zm0 90v6h-2v-6Zm24 0v6h-2v-6Zm-24 22v6h-2v-6Zm24 0v6h-2v-6Zm0-112v6h-2v-6Zm0 22v6h-2v-6Zm-24 0v6h-2v-6Zm40 120h6v2h-6Zm-16 0h6v2h-6Zm201.996 0h9v2h-9Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M228.046 394.181v12h-4v-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M431.046 322.181h8v4h-8Zm-17-7v8h-4v-8Z" style="fill:#f30000"/>
|
||||||
|
</g>
|
||||||
|
<g id="Details">
|
||||||
|
<path d="M382.04 465.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M427.04 465.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M382.04 498.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M427.04 498.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M439.04 498.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M484.04 498.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M439.04 465.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M484.04 465.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M435.046 357.181h6l6-9.998v-12" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M74.0442 121.181h79.9998v20H74.0442Zm0 98h79.9998v20H74.0442Z" style="fill:#404040"/>
|
||||||
|
<path d="M208.046 342.183v-12m45.997-18h18m-45.996 59.996 14.999 9.999v12.001m15.005-31.996h8m7.992 31.996h10l8-3.996m-25.997-8.009h-12v12m-20.484-42.844 10.488 4.851m-34.004-33.998v-12h12m52 53.998v-11h12m-56.003-42.998h12v12m149.003 8.001v-19l-5-5h-14l-5 5v14.001l4 4.999m6 17.999h8l6-6.002m21 15.001h10l5-5v-14l-5-5h-14l-5 5v10.001" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="Second_Level" class="shadow">
|
||||||
|
<g id="Rooms">
|
||||||
|
<path d="M490.001 332.767h49v12h-25v30h25v12h-49Z" style="fill:#595959"/>
|
||||||
|
<path d="M490.001 332.767h49v12h-25v30h25v12h-49Zm1 1v52h47v-10h-25v-32h25v-10Z"/>
|
||||||
|
<path d="M527.001 89.7669V209.767h32v57h-75v-15h39v-6h15v7h3v-25h-32V89.7669Z" style="fill:#595959"/>
|
||||||
|
<path d="M559.001 209.767v57h-75v-15h39v-6h15v7h3v-25h-32V89.7669h18V209.767Zm-1 1h-32V90.7669h-16V226.767h32v27h-5v-7h-13v6h-39v13h73Z"/>
|
||||||
|
<path d="M532.001 503.767h-30v24h24v-16h6Z" style="fill:#595959"/>
|
||||||
|
<path d="M532.001 503.767v8h-6v16h-24v-24Zm-1 1h-28v22h22v-16h6Z"/>
|
||||||
|
<path d="M214.001 263.768v6h-54v180h324v-66h3v-48h-3v-66h-5v-3h-14v3h-29v-6h-30v6h-74v-6h-9v3h-2v-3h-9v6h-74v-6Zm-30 30h66l12 12h120l12-12h66v29l-9 9v56l9 9v29h-66l-12-12h-120l-12 12h-66v-29l9-9v-56l-9-9Z" style="display:inline;fill:#595959"/>
|
||||||
|
<path d="M184.001 293.768v29l9 9v56l-9 9v29h66l12-12h120l12 12h66v-29l-9-9v-56l9-9v-29h-66l-12 12h-120l-12-12Z" style="display:inline;fill:none;stroke:#000"/>
|
||||||
|
<path d="M183.001 426.767v-30.414l9-9v-55.172l-9-9v-30.414h67.41l12 12h119.18l12-12h67.41v30.414l-9 9v55.172l9 9v30.414h-67.41l-12-12h-119.18l-12 12Z" style="display:inline;fill:none;stroke:#000;stroke-opacity:1"/>
|
||||||
|
<path d="M317.001 267.767h-2v-3h-2v6h-76v-6h-22v6H161v178h322.001v-66h3v-46h-3v-66h-5v-3h-12v3h-31v-6h-28v6h-76v-6h-2v3h-2v-3h-3v3h-4v-3h-3Z" style="display:inline;fill:none;stroke:#000;stroke-opacity:1"/>
|
||||||
|
<path d="M323.001 263.767h9v6h74v-6h30v6h29v-3h14v3h5v66h3v48h-3v66H160v-180h54.001v-6h24v6h74v-6h9v3h2Z" style="display:inline;fill:none;stroke:#000;stroke-opacity:1"/>
|
||||||
|
<path d="M93.998 473.766h18v36h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M111.998 473.766v36h-18v-36Zm-1.001 1H94.9993v34.002h15.9977Z"/>
|
||||||
|
<path d="M93.998 449.767h18v24h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M111.998 449.767v24h-18v-24Zm-1.001 1H94.9993v22h15.9977Z"/>
|
||||||
|
<path d="M154.004 449.767h24v60h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.004 449.767v60h-24v-60Zm-1 1h-22v58h22Z"/>
|
||||||
|
<path d="M132.999 494.766h21v15h-21Z" style="fill:#435570"/>
|
||||||
|
<path d="M153.999 494.766v15h-21v-15Zm-1.002 1h-18.996v13h18.996Z"/>
|
||||||
|
<path d="M112 509.767v-60h42v15h-21v45Z" style="fill:#435570"/>
|
||||||
|
<path d="M112 509.767v-60h42v15h-21v45Zm1-51v50h19v-45h21v-13h-40Z"/>
|
||||||
|
<path d="M132.999 479.767h21v15h-21Z" style="fill:#435570"/>
|
||||||
|
<path d="M153.999 479.767v15h-21v-15Zm-1.002 1h-18.996v13h18.996Z"/>
|
||||||
|
<path d="M132.999 464.767h21v15h-21Z" style="fill:#435570"/>
|
||||||
|
<path d="M153.999 464.767v15h-21v-15Zm-1.002 1h-18.996v13h18.996Z"/>
|
||||||
|
<path d="M94.0041 389.768h65.9999v60H94.0041Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M160.004 389.768v60H94.0041v-60Zm-1.008 1H95.0124v57.999h63.9836Z"/>
|
||||||
|
<path d="M94.0041 269.767h65.9999v60H94.0041Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M160.004 269.767v60H94.0041v-60Zm-1.008 1.001H95.0124v57.999h63.9836Z"/>
|
||||||
|
<path d="M51.9952 491.767v18H9.99515v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M51.9952 509.767H9.99515v-18H51.9952Zm-1-1v-16h-40v16Z"/>
|
||||||
|
<path d="M51.9952 473.767v18H9.99515v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M51.9952 491.767H9.99515v-18H51.9952Zm-1-1v-16h-40v16Z"/>
|
||||||
|
<path d="M69.9985 491.767v18h-18v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M69.9985 509.767h-18v-18h18Zm-1-1v-16h-16v16Z"/>
|
||||||
|
<path d="M69.9985 473.767v18h-18v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M69.9985 491.767h-18v-18h18Zm-1-1v-16h-16v16Z"/>
|
||||||
|
<path d="M70.0004 473.762v-30h24v30Z" style="fill:#404040"/>
|
||||||
|
<path d="M70.0004 443.762h24v30h-24Zm1 1v28h22v-28Z"/>
|
||||||
|
<path d="M70.0004 443.764v-30h24v30Z" style="fill:#404040"/>
|
||||||
|
<path d="M70.0004 413.764h24v30h-24Zm1 1v28h22v-28Z"/>
|
||||||
|
<path d="M94.0005 509.767h85.0005v23.998H70.0005v-59.998h24Z" style="fill:#435570"/>
|
||||||
|
<path d="M94.0005 509.767h85.0005v23.998H70.0005v-59.998h24Zm-23 0v22.998H178.001v-21.998H93.0005v-36h-22Z"/>
|
||||||
|
<path d="M178.001 449.764h24v24.999h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.001 449.764h24v24.999h-24Zm1 1v22.999h22v-22.999Z"/>
|
||||||
|
<path d="M334.001 509.767h30v24h-139v-24h85v-60h24Z" style="fill:#435570"/>
|
||||||
|
<path d="M334.001 509.767h30v24h-139v-24h85v-60h24Zm-1 0v-59h-22v60h-85v22h137v-22h-30Z"/>
|
||||||
|
<path d="M202.005 451.769h76.001v58h-76.001Z" style="fill:#595959"/>
|
||||||
|
<path d="M278.016 509.769h-76.011v-58h76.011Zm-1.003-.996v-56.004h-74.005v56.004Z"/>
|
||||||
|
<path d="M160 363.767v26H94.0005v12h-24v-31H152.76Z" style="fill:#595959"/>
|
||||||
|
<path d="M160 363.767v26H94.0005v12h-24v-31H152.76Zm-1 2.357-5.84 5.643H71.0005v29h22v-12H159Z"/>
|
||||||
|
<path d="M70.0005 348.767v-31h24v12H160v26l-7.24-7Z" style="fill:#595959"/>
|
||||||
|
<path d="M70.0005 348.767v-31h24v12H160v26l-7.24-7Zm1-1H153.16l5.84 5.643v-22.643H93.0005v-12h-22Z"/>
|
||||||
|
<path d="m160.001 352.768.118.121c.567.563.877 1.325.877 2.122v9.513c0 .797-.31 1.559-.877 2.122l-.118.121Z" style="fill:#4b8edb"/>
|
||||||
|
<path d="M334.001 461.769h18v24h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M352.001 461.769v24h-18v-24Zm-.99.998h-16.02v22.003h16.02Z"/>
|
||||||
|
<path d="M364.024 451.767h138.001v14H364.024Z" style="fill:#595959"/>
|
||||||
|
<path d="M502.025 451.767v14H364.024v-14Zm-1.035 1H365.059v12H500.99Z"/>
|
||||||
|
<path d="M189.997 119.767h21v30h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M210.997 119.767v30h-21v-30Zm-1.003 1H191v28h18.994Z"/>
|
||||||
|
<path d="M189.997 209.767h21v30h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M210.997 209.767v30h-21v-30Zm-1.003 1H191v28h18.994Z"/>
|
||||||
|
<path d="M333.996 485.764h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M357.996 485.764v24h-24v-24Zm-3 3h-18v18h18Z" style="fill:#0d79f2"/>
|
||||||
|
<path d="M333.996 485.764h24v24h-24Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M69.9967 533.765h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M93.9967 533.765v24h-24v-24Zm-3 3.006h-18v17.989h18Z" style="fill:#2c8217"/>
|
||||||
|
<path d="M93.9967 533.765v24h-24v-24Zm-.9996 1.002H70.9964v21.997h22.0007Z"/>
|
||||||
|
<path d="M94.0025 533.765h24.0005v24H94.0025Z" style="fill:#ccc"/>
|
||||||
|
<path d="M118.003 533.765v24H94.0025v-24Zm-1 1.002H95.0021v21.997h22.0009Z"/>
|
||||||
|
<path d="M235 53.7672h42v71.9998h-42Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M277 125.767h-42V53.7672h42Zm-1-1V54.7672h-40v69.9998Z"/>
|
||||||
|
<path d="M406.001 89.7656v36.0004H390v-24h-22.998V53.7656h14.997v36Z" style="fill:#595959"/>
|
||||||
|
<path d="M406.001 89.7656v36.0004H390v-24h-22.998V53.7656h14.997v36Zm-.994 1h-24.001v-36h-13v46.0004h22.998v24h14.003Z"/>
|
||||||
|
<path d="M367.004 125.767v-24h23v24h-16.996v-12h-6.004Z" style="fill:#595959"/>
|
||||||
|
<path d="M367.004 113.767v-12h23v24h-16.996v-12Zm1.005-1.001h5.992v12H389v-21.999h-20.991Z"/>
|
||||||
|
<path d="M382 53.7668h23.999v36H382Z" style="fill:#595959"/>
|
||||||
|
<path d="M405.999 53.7668v36H382v-36Zm-.997 1.0002h-22.005v33.9996h22.005Z"/>
|
||||||
|
<path d="M178.001 473.765h24v36.002h36v24h-60Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M178.001 473.765h24v36.002h36v24h-60Zm1 1v58.002h58v-22h-36v-36.002Z"/>
|
||||||
|
<path d="M184.004 473.766h12v1h-12Zm-6.003 53.998v-12h1v12Zm58.999 0v-12h1v12Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M483.996 239.769h17.999v12h-17.999Z" style="fill:#0dcaf2"/>
|
||||||
|
<path d="M501.995 239.769v12h-17.999v-12Zm-1.002 1h-15.995v10h15.995Z"/>
|
||||||
|
<path d="M490.001 386.767v-54" style="fill:none;stroke:#000;stroke-width:1.00000029094"/>
|
||||||
|
<path d="M490.001 335.767v-3h49v12h-25v30h25v12h-49v-3h-3v-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M490.001 335.767v-3h49v12h-25v30h25v12h-49v-3h-3v-48Zm0 1h-2v46h3v3h47v-10h-25v-32h25v-10h-47v3Z"/>
|
||||||
|
<path d="M80.9976 400.765h12v12h-12Zm0-94h12v12h-12ZM365 464.765h10v18h-10Zm126 0h10v18h-10Zm12.002 45.998h22v16h-22Z" style="fill:#ccc"/>
|
||||||
|
<path d="M501.999 451.765h30v52h-30Z" style="fill:#595959"/>
|
||||||
|
<path d="M531.999 451.765v52h-30v-52Zm-.998 1h-28.005v50h28.005Z"/>
|
||||||
|
<path d="M460 233.767h24v33h-24Z" style="fill:#595959"/>
|
||||||
|
<path d="M484 233.767v33h-24v-33Zm-1.004 1h-21.993v31.001h21.993Z"/>
|
||||||
|
<path d="M436 233.767h24v33h-24Z" style="fill:#595959"/>
|
||||||
|
<path d="M460 233.767v33h-24v-33Zm-1.004 1h-21.993v31.001h21.993Z"/>
|
||||||
|
<path d="M436.005 209.767h48v24h-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M484.005 209.767v24h-48v-24Zm-1.003 1h-45.993v22h45.993Z"/>
|
||||||
|
<path d="M465.999 149.766h18v60h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M483.999 149.766v60h-18v-60Zm-.998 1h-16.004v58h16.004Z"/>
|
||||||
|
<path d="M447.999 107.767h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M465.999 107.767v18h-18v-18Zm-.998 1h-16.004v16h16.004Z"/>
|
||||||
|
<path d="M405.999 107.767h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M423.999 107.767v18h-18v-18Zm-.998 1h-16.004v16h16.004Z"/>
|
||||||
|
<path d="M447.999 65.7677h18v42.0003h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M465.999 65.7677v42.0003h-18V65.7677Zm-.998 1.001h-16.004v39.9983h16.004Z"/>
|
||||||
|
<path d="M405.999 65.7677h18v42.0003h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M423.999 65.7677v42.0003h-18V65.7677Zm-.998 1.001h-16.004v39.9983h16.004Z"/>
|
||||||
|
<path d="M514 344.765h15v30h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M529 344.765v30h-15v-30Zm-1.003 1h-12.994v28h12.994Z"/>
|
||||||
|
<path d="M424.001 149.766h42v60h-42Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M466.001 149.766v60h-42v-60Zm-1 1h-40v58h40Z"/>
|
||||||
|
<path d="M483.999 125.767h25v24h-25Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M508.999 125.767v24h-25v-24Zm-1 1h-23v22h23Z"/>
|
||||||
|
<path d="M373.001 125.767h-6Zm-5.001-12h5v11h-5Z" style="fill:#595959"/>
|
||||||
|
<path d="M368 113.767h5v11h-5Z" style="fill:none"/>
|
||||||
|
<path d="M214.001 229.767v-100h-3v-10h3v-18h21v24h249v24h-60v60h12v54h-30v-12h-74v12h-4v-4 4h-5v-3h-2v3h-5v-4 4h-4v-12h-74v12h-24v-24h-3v-10Zm87.89-79h-63.89v82h8.63c.67 0 1.29-.337 1.67-.897 5.88-8.906 53.59-81.103 53.59-81.103Zm58.73 82c.74 0 1.41-.4 1.76-1.043.35-.643.32-1.426-.08-2.041-5.17-8.021-18.93-29.342-22.94-35.554-.28-.448-.74-.762-1.26-.872-.52-.11-1.07-.008-1.51.284-4.22 2.686-9.22 4.226-14.59 4.226-5.41 0-10.45-1.564-14.69-4.281-.45-.294-.99-.397-1.51-.287-.52.11-.98.424-1.26.872-4.02 6.236-17.71 27.593-22.86 35.616-.39.616-.42 1.398-.07 2.039.35.642 1.02 1.041 1.76 1.041Zm-18.64-82s47.83 72.207 53.72 81.104c.37.56 1 .896 1.67.896h8.63v-82Z" style="fill:#595959"/>
|
||||||
|
<path d="M321.001 263.767h-9v-12h-74v12h-24v-24h-3v-10h3v-100h-3v-10h3v-18h21v24h249v24h-60v60h12v54h-30v-12h-74v12h-9v-3h-2Zm6-4h2v3h2v-12h76v12h28v-52h-12v-62h60v-22h-249v-24h-19v18h-3v8h3v102h-3v8h3v24h22v-12h76v12h2v-3h2v3h3v-3h4v3h3Zm-24.27-108.449-53.6 81.103c-.56.84-1.5 1.346-2.5 1.346h-9.63v-84h64.89Zm-.84-.551h-63.89v82h8.63c.67 0 1.29-.337 1.67-.897Zm58.73 83h-77.25c-1.1 0-2.11-.599-2.64-1.561-.52-.962-.48-2.135.11-3.058 5.15-8.024 18.84-29.381 22.85-35.617.44-.673 1.12-1.146 1.9-1.311.78-.164 1.59-.011 2.26.425 4.08 2.616 8.94 4.122 14.15 4.122 5.17 0 9.99-1.482 14.05-4.07.67-.432 1.48-.583 2.26-.418.78.165 1.46.636 1.89 1.307l22.94 35.555c.6.922.64 2.097.12 3.061-.53.965-1.54 1.565-2.64 1.565Zm0-1c.74 0 1.41-.4 1.76-1.043.35-.643.32-1.426-.08-2.041l-22.94-35.554c-.28-.448-.74-.762-1.26-.872-.52-.11-1.07-.008-1.51.284-4.22 2.686-9.22 4.226-14.59 4.226-5.41 0-10.45-1.564-14.69-4.281-.45-.294-.99-.397-1.51-.287-.52.11-.98.424-1.26.872-4.02 6.236-17.71 27.593-22.86 35.616-.39.616-.42 1.398-.07 2.039.35.642 1.02 1.041 1.76 1.041Zm-18.64-83h65.02v84h-9.63c-1 0-1.95-.504-2.5-1.343l-53.72-81.105Zm0 1 53.72 81.104c.37.56 1 .896 1.67.896h8.63v-82Z"/>
|
||||||
|
<path d="M341.004 390.766h12v24h-12Zm107 12.001h12v24h-12Zm-264 0h12v24h-12Zm107-12.001h12v24h-12ZM278.001 96.7675h9v30.0005h-9Zm-40 52.9985h9v24h-9Zm158.999 0h9v24h-9Zm-158.999 60h9v24h-9Zm158.999 0h9v24h-9Zm51.004 83h12v24h-12Zm-264 0h12v24h-12Zm157 12h12v24h-12Zm-50 0h12v24h-12Zm65.997-207.9985h9v30.0005h-9Zm-44.003 0h18v30.0005h-18Zm0 112.9985h18v24h-18Z" style="fill:#ccc"/>
|
||||||
|
<path d="M309.988 341.766h24v36h-24Z" style="fill:#595959"/>
|
||||||
|
<path d="M333.988 341.766v36h-24v-36Zm-1.013 1h-21.973v34h21.973Z"/>
|
||||||
|
<path d="M297.991 377.767v-42.735c0-1.405.74-2.707 1.95-3.43 2.06-1.24 5.41-3.249 8.2-4.922 3.01-1.807 4.85-5.062 4.85-8.575v-12.338h18v12.338c0 3.513 1.85 6.768 4.86 8.575 2.79 1.673 6.14 3.682 8.2 4.922 1.21.723 1.94 2.025 1.94 3.43v42.735h-12v-36h-24v36Z" style="fill:#595959"/>
|
||||||
|
<path d="M297.991 377.767v-42.735c0-1.405.74-2.707 1.95-3.43l8.2-4.922c3.01-1.807 4.85-5.062 4.85-8.575v-12.338h18v12.338c0 3.513 1.85 6.768 4.86 8.575l8.2 4.922c1.21.723 1.94 2.025 1.94 3.43v42.735h-12v-36h-24v36Zm1-1h10v-36h26v36h10v-41.735c0-1.054-.55-2.031-1.45-2.573l-8.2-4.921c-3.32-1.988-5.35-5.569-5.35-9.433v-11.338h-16v11.338c0 3.864-2.02 7.445-5.34 9.433l-8.2 4.921c-.9.542-1.46 1.519-1.46 2.573Z"/>
|
||||||
|
<path d="M297.993 377.766h48v12h-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M345.993 377.766v12h-48v-12Zm-1.014 1h-45.973v10h45.973Z"/>
|
||||||
|
<path d="M529.001 321.767h9v12h-9Zm0 64h9v12h-9Zm1-141h-18v-8h25v10h-7Zm-339-142h24v8h-2v8h-22Zm22 146h2v8h-24v-16h22Zm226-124h-14v-16h22v18h-8Z" style="fill:#ccc"/>
|
||||||
|
<path d="M278 451.767h32v18h-32Z" style="fill:#595959"/>
|
||||||
|
<path d="M310 451.767v18h-32v-18Zm-1 1h-30v16h30Z"/>
|
||||||
|
<path d="M278 469.767h32v40h-32Z" style="fill:#595959"/>
|
||||||
|
<path d="M310 469.767v40h-32v-40Zm-1 1h-30v38h30Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Arrows">
|
||||||
|
<path d="m81.9983 550.767-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m81.9983 550.767-7.0002-10h14Zm0-1.744 5.0793-7.256H76.919Z"/>
|
||||||
|
<path d="m345.998 502.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m345.998 502.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m296.998 407.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m296.998 407.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m189.998 419.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m189.998 419.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m86.9983 411.767-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m86.9983 411.767-7.0002-10h14Zm0-1.744 5.0793-7.256H81.919Z"/>
|
||||||
|
<path d="m86.9983 317.766-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m86.9983 317.766-7.0002-10h14Zm0-1.744 5.0793-7.256H81.919Z"/>
|
||||||
|
<path d="m189.998 309.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m189.998 309.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m296.998 321.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m296.998 321.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m346.998 321.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m346.998 321.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m346.998 407.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m346.998 407.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m453.998 419.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m453.998 419.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m369.998 478.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m369.998 478.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m495.998 478.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m495.998 478.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m513.998 523.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m513.998 523.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m533.498 396.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m533.498 396.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m533.498 332.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m533.498 332.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m524.498 245.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m524.498 245.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m401.498 226.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m401.498 226.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m321.998 226.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m321.998 226.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m202.998 253.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m202.998 253.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m242.498 226.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m242.498 226.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m242.498 166.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m242.498 166.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m202.998 115.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m202.998 115.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m282.498 116.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m282.498 116.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m321.998 116.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m321.998 116.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m361.498 116.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m361.498 116.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m401.498 166.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m401.498 166.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m435.998 122.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m435.998 122.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m453.998 309.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m453.998 309.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Doors">
|
||||||
|
<path d="M327.003 262.765v2h-3v-2Zm-7 0v2h-3v-2Zm-91.007 0v2h-6v-2Zm195 0v2h-6v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M134.999 483.766v7h-4v-7Zm0-15v7h-4v-7Zm21-15v7h-4v-7Zm-77.995 78.001h8v4h-8Zm81.997-24h12v4h-12Zm-43 0h12v4h-12Zm-38.997-36.001h8v4h-8Zm21 0h8v4h-8Zm-21-30h8v4h-8Zm56.995 56.997v7h-4v-7Zm-66.998 5.999v-8h4v8Zm-18 0v-8h4v8Zm18-18v-8h4v8Zm24 0v-8h4v8Zm-42 0v-8h4v8Zm292.003 21.005h8v4h-8Zm-6.005-32.001v8h-4v-8Zm180-112v8h-4v-8Zm-62.995-240h8v4h-8Zm-42 0h8v4h-8Zm-17 0h8v4h-8Zm-130 0h8v4h-8Zm209 24h8v4h-8Zm-20-42h8v4h-8Zm-42 0h8v4h-8Zm57.997 102h12v4h-12Zm-1.002-34v12h-4v-12Zm-1.998 58h12v4h-12Zm0 33h12v4h-12Zm-4.002-21v12h-4v-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M158.999 330.764h2v58h-2Zm42.003 118.001v2h-22v-2Zm132 0v2h-22v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M424.999 152.766v54h-2v-54ZM214.998 262.767h6v2h-6Zm191.998 0h9v2h-9Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M435.002 208.765v2h-9v-2Zm0-60v2h-9v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M447.004 207.766h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M482.996 129.764h2v16h-2Zm25 0h2v16h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M380.998 99.7663h8v3.9997h-8ZM375 116.767v4.999h-3v-4.999Zm18.998-29.0007h8v4h-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M212.999 120.766v8h-4v-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M485.996 338.769h2v12.001h-2Zm0 20.997h2v21h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M213 230.766v8h-4v-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M482.996 252.764h2v13h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M213.999 170.766v18h-2v-18Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M370.001 448.766h12v4h-12Zm72 0h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M311.997 454.766v12h-4v-12Z" style="fill:red"/>
|
||||||
|
<path d="M311.999 343.766v8h-4v-8Zm24 0v8h-4v-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M310.999 353.766v21h-2v-21Zm24 0v21h-2v-21Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M299.998 375.766h8v4h-8Zm36 0h8v4h-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M96.9952 388.767h11.9998v2H96.9952Zm0-60h11.9998v2H96.9952Zm47.9998 60h12v2h-12Zm0-60h12v2h-12Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M113.001 387.766h12v4h-12Zm0-60h12v4h-12Zm16 60h12v4h-12Zm0-60h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M160.999 392.766v54h-2v-54Zm0-120v54h-2v-54Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M330.002 304.765v2h-16v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M279.999 454.766v12h-4v-12Zm0 31v8h-4v-8Zm-179.998 46.001h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
</g>
|
||||||
|
<g id="Details">
|
||||||
|
<circle cx="321.994646" cy="170.76686" r="26.000052" style="fill:#6b6348"/>
|
||||||
|
<circle cx="321.993327" cy="170.766832" r="8.999997" style="fill:#8c8573"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 59 KiB |
|
|
@ -0,0 +1,281 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" version="1.1" viewBox="0 0 720 586">
|
||||||
|
<style>
|
||||||
|
.shadow{filter:drop-shadow(0 0 8px #000)}
|
||||||
|
</style>
|
||||||
|
<g id="First_Level">
|
||||||
|
<g id="Rooms">
|
||||||
|
<path d="M328.046 264.181h8v3h1v3h9v-6h24v6h36v-6h21v6h57v66h3v48h-3v66h-42v-20c0-1.061-.42-2.078-1.17-2.828-.75-.751-1.77-1.172-2.83-1.172h-48.34c-1.06 0-2.08-.421-2.83-1.172-2.3-2.295-7.36-7.361-9.66-9.656-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172-2.3 2.295-7.36 7.361-9.66 9.656-.75.751-1.17 1.768-1.17 2.829v22.343h-24v-22.343c0-1.061-.42-2.078-1.17-2.829-2.3-2.295-7.36-7.361-9.66-9.656-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172-2.3 2.295-7.36 7.361-9.66 9.656-.75.751-1.77 1.172-2.83 1.172h-48.34c-1.06 0-2.08.421-2.83 1.172-.75.75-1.17 1.767-1.17 2.828v20h-42v-180h54v-6h24v6h36v-6h24v6h9v-3h1v-3h8v3h2v-3h8v3h2Zm-1 78h-10v24h10Zm115-36h-30v18h30Z" style="fill:#595959"/>
|
||||||
|
<path d="M328.046 264.181h8v3h1v3h9v-6h24v6h36v-6h21v6h57v66h3v48h-3v66h-42v-20c0-1.061-.42-2.078-1.17-2.828-.75-.751-1.77-1.172-2.83-1.172h-48.34c-1.06 0-2.08-.421-2.83-1.172l-9.66-9.656c-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172l-9.66 9.656c-.75.751-1.17 1.768-1.17 2.829v22.343h-24v-22.343c0-1.061-.42-2.078-1.17-2.829l-9.66-9.656c-.75-.751-1.77-1.172-2.83-1.172h-26.68c-1.06 0-2.08.421-2.83 1.172l-9.66 9.656c-.75.751-1.77 1.172-2.83 1.172h-48.34c-1.06 0-2.08.421-2.83 1.172-.75.75-1.17 1.767-1.17 2.828v20h-42v-180h54v-6h24v6h36v-6h24v6h9v-3h1v-3h8v3h2v-3h8v3h2Zm8 4h-1v-3h-6v3h-4v-3h-6v3h-4v-3h-6v3h-1v3h-11v-6h-22v6h-38v-6h-22v6h-54v178h40v-19c0-1.326.53-2.598 1.46-3.536.94-.937 2.21-1.464 3.54-1.464h48.34c.8 0 1.56-.316 2.12-.879l9.66-9.657c.94-.937 2.21-1.464 3.54-1.464h26.68c1.33 0 2.6.527 3.54 1.464l9.66 9.657c.93.938 1.46 2.21 1.46 3.536v21.343h22v-21.343c0-1.326.53-2.598 1.46-3.536l9.66-9.657c.94-.937 2.21-1.464 3.54-1.464h26.68c1.33 0 2.6.527 3.54 1.464l9.66 9.657c.56.563 1.32.879 2.12.879h48.34c1.33 0 2.6.527 3.54 1.464.93.938 1.46 2.21 1.46 3.536v19h40v-66h3v-46h-3v-66h-57v-6h-19v6h-38v-6h-22v6h-11Z"/>
|
||||||
|
<path d="M235.045 54.181h30v59.998h-30Z" style="fill:#595959"/>
|
||||||
|
<path d="M265.043 114.179h-29.998V54.181h29.998Zm-.992-.999v-58h-28v58Z"/>
|
||||||
|
<path d="M247.046 67.1817h17.999v10h-17.999Zm0 14h17.999v10h-17.999Z" style="fill:#264a73"/>
|
||||||
|
<path d="M82.0461 432.185h12v18h-12Z" style="fill:#595959"/>
|
||||||
|
<path d="M94.0461 432.185v18h-12v-18Zm-1 1h-10v16.001h10Z"/>
|
||||||
|
<path d="M82.0461 450.181h12v7h-24v-43h12Z" style="fill:#595959"/>
|
||||||
|
<path d="M82.0461 450.181h12v7h-24v-43h12Zm-1 0v-35h-10v41h22v-5h-12Z"/>
|
||||||
|
<path d="M94.0441 450.18h17.9999v60H94.0441Z" style="fill:#435570"/>
|
||||||
|
<path d="M112.044 450.18v60H94.0441v-60Zm-1.001 1H95.0454v58h15.9976Z"/>
|
||||||
|
<path d="M154.05 468.182h24v42h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.05 468.182v42h-24v-42Zm-1 1h-22v39.999h22Z"/>
|
||||||
|
<path d="M154.05 450.181h24v18h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.05 450.181v18h-24v-18Zm-1 1h-22v16h22Z"/>
|
||||||
|
<path d="M133.046 492.184h21v18h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M154.046 492.184v18h-21v-18Zm-1.002 1h-18.996v16.001h18.996Z"/>
|
||||||
|
<path d="M112.048 496.181h21v14h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M133.048 496.181v14h-21v-14Zm-.997 1h-19.005v12h19.005Z"/>
|
||||||
|
<path d="M112.048 450.18h42.001v21h-42.001Z" style="fill:#595959"/>
|
||||||
|
<path d="M154.049 450.18v21h-42.001v-21Zm-.998 1h-40.005v19h40.005Z"/>
|
||||||
|
<path d="M112.046 496.181v-25h42v21h-21v4Z" style="fill:#595959"/>
|
||||||
|
<path d="M112.046 496.181v-25h42v21h-21v4Zm1-4v3h19v-4h21v-19h-40Z"/>
|
||||||
|
<path d="M112.05 390.182h48v60h-48Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M160.05 390.182v60h-48v-60Zm-1 1h-46v57.999h46Z"/>
|
||||||
|
<path d="M94.0461 408.184h17.9999v42H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 408.184v42H94.0461v-42Zm-1 1H95.0461v40h15.9999Z"/>
|
||||||
|
<path d="M331.046 552.179h18v24h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M349.046 552.179v24h-18v-24Zm-1 1h-16v22h16Z"/>
|
||||||
|
<path d="M283.046 552.179h18v24h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M301.046 552.179v24h-18v-24Zm-1 1h-16v22h16Z"/>
|
||||||
|
<path d="M94.0461 312.176h17.9999v-42H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 312.176H94.0461v-42h17.9999Zm-1-1v-40H95.0461v40Z"/>
|
||||||
|
<path d="M514.046 108.178h18V66.1775h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M532.046 108.178h-18V66.1775h18Zm-1-1V67.1776h-16v40.0004Z"/>
|
||||||
|
<path d="M532.046 270.175h18v-42h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M550.046 270.175h-18v-42h18Zm-1-1v-40h-16v40Z"/>
|
||||||
|
<path d="M94.0461 390.181h17.9999v18H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 390.181v18H94.0461v-18Zm-1 1H95.0461v16h15.9999Z"/>
|
||||||
|
<path d="M331.046 534.179h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M349.046 534.179v18h-18v-18Zm-1 1h-16v16h16Z"/>
|
||||||
|
<path d="M283.046 534.179h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M301.046 534.179v18h-18v-18Zm-1 1h-16v16h16Z"/>
|
||||||
|
<path d="M532.046 210.182h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M550.046 210.182v18h-18v-18Zm-1 1h-16v16h16Z"/>
|
||||||
|
<path d="M94.0461 330.18h17.9999v-18H94.0461Z" style="fill:#404040"/>
|
||||||
|
<path d="M112.046 330.18H94.0461v-18h17.9999Zm-1-1v-16H95.0461v16Z"/>
|
||||||
|
<path d="M514.046 126.181h18v-18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M532.046 126.181h-18v-18h18Zm-1-1v-16h-16v16Z"/>
|
||||||
|
<path d="M70.0456 510.181H179.045v23.998H70.0456Z" style="fill:#435570"/>
|
||||||
|
<path d="M179.045 534.181H70.0456v-24H179.045Zm-.999-1v-22H71.0447v22Z"/>
|
||||||
|
<path d="M178.046 450.179h24v36.999h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.046 450.179h24v36.999h-24Zm1 1v34.999h22v-34.999Z"/>
|
||||||
|
<path d="M70.0453 456.178h24v59.999h-24Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M94.0453 456.178v59.999h-24v-59.999Zm-1.0014.999H71.0467v58.001h21.9972Z"/>
|
||||||
|
<path d="M76.0462 456.179h12v1h-12Zm0 58.998h12v1h-12Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M334.046 510.181h30v24h-139v-24h85v-60h24Z" style="fill:#435570"/>
|
||||||
|
<path d="M334.046 510.181h30v24h-139v-24h85v-60h24Zm-1 0v-59h-22v60h-85v22h137v-22h-30Z"/>
|
||||||
|
<path d="M292.046 486.183h18v24h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M310.046 486.183v24h-18v-24Zm-1.002 1h-15.996v21.998h15.996Z"/>
|
||||||
|
<path d="M292.046 450.181h18v24h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M310.046 450.181v24h-18v-24Zm-1.002 1h-15.996v21.998h15.996Z"/>
|
||||||
|
<path d="M292.046 474.179h18v12.002h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M310.046 474.179v12.002h-18v-12.002Zm-1.005 1h-15.99v10.002h15.99Z"/>
|
||||||
|
<path d="M262.046 450.181h29.999v60h-29.999Z" style="fill:#595959"/>
|
||||||
|
<path d="M292.045 450.181v60h-29.999v-60Zm-1 1h-27.999v58h27.999Z"/>
|
||||||
|
<path d="M94.0461 330.181h65.9999v60H94.0461v24h-24v-108h24Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M94.0461 330.181h65.9999v60H94.0461v24h-24v-108h24Zm-1 0v-23h-22v106h22v-24h65.9999v-58H93.0461Z"/>
|
||||||
|
<path d="M334.046 450.181h30v12h-30Z" style="fill:#595959"/>
|
||||||
|
<path d="M364.046 450.181v12h-30v-12Zm-1 1h-28v10h28Z"/>
|
||||||
|
<path d="M334.046 462.182h18v18h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M352.046 462.182v18h-18v-18Zm-.99 1.001h-16.02v15.999h16.02Z"/>
|
||||||
|
<path d="M364.111 450.18h138.001v78H364.111Z" style="fill:#595959"/>
|
||||||
|
<path d="M502.112 450.18v78H364.111v-78Zm-1.035.999H365.146v76.001h135.931Z"/>
|
||||||
|
<path d="M166.046 270.181h-18v60h-12v-72h18v-18h12Z" style="fill:#595959"/>
|
||||||
|
<path d="M166.046 270.181h-18v60h-12v-72h18v-18h12Zm-1-1v-28h-10v18h-18v70h10v-60Z"/>
|
||||||
|
<path d="M22.0502 162.18h36.0001v36H22.0502Z" style="fill:#595959"/>
|
||||||
|
<path d="M58.0503 162.18v36H22.0502v-36Zm-.996 1H23.0462v34h34.0081Z"/>
|
||||||
|
<path d="M190.047 240.181H58.0467v-120H190.047v30h21v60h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M190.047 240.181H58.0467v-120H190.047v30h21v60h-21Zm-1-1v-30h21v-58h-21v-30H59.0467v118Z"/>
|
||||||
|
<path d="M139.046 175.181h6v10h-6Zm-36 0h6v10h-6Z"/>
|
||||||
|
<path d="M190.05 102.183h24v48h-24Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M214.05 102.183v48h-24v-48Zm-1 1h-22v46h22Z"/>
|
||||||
|
<path d="M190.05 210.183h24v48h-24Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M214.05 210.183v48h-24v-48Zm-1 1h-22v46h22Z"/>
|
||||||
|
<path d="M334.046 486.179h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M358.046 486.179v24h-24v-24Zm-3 3h-18v18h18Z" style="fill:#0d79f2"/>
|
||||||
|
<path d="M334.046 486.179h24v24h-24Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M70.0457 534.18h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M94.0457 534.18v24h-24v-24Zm-3 3.006h-18v17.989h18Z" style="fill:#2c8217"/>
|
||||||
|
<path d="M94.0457 534.18v24h-24v-24Zm-.9997 1.002H71.0453v21.997H93.046Z"/>
|
||||||
|
<path d="M272.046 364.183h8v16h-8Zm95 3h8v16h-8Z" style="fill:#ccc"/>
|
||||||
|
<path d="M151.046 54.1821h18v30.0001h-18Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M259.046 42.1813h18v12h-42v-18h-21v65.9997h-48v18h-12V84.1813h42v-66h63Z" style="fill:#595959"/>
|
||||||
|
<path d="M259.046 42.1813h18v12h-42v-18h-21v65.9997h-48v18h-12V84.1813h42v-66h63Zm-23 4v7h40v-10h-18v-24h-61v66h-42v33.9997h10v-18h48V35.1813h23Z"/>
|
||||||
|
<path d="M277.032 18.1782h90V126.178h-90Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M367.032 18.1782V126.178h-90V18.1782Zm-.99 1.0028h-88.02v105.994h88.02Z"/>
|
||||||
|
<path d="M277.046 126.181h-42v-12h30V54.1813h12Z" style="fill:#595959"/>
|
||||||
|
<path d="M277.046 126.181h-42v-12h30V54.1813h12Zm-1-1V55.1813h-10v59.9997h-30v10Z"/>
|
||||||
|
<path d="M409.049 111.18v15h-42V66.1802h11.995V111.18Z" style="fill:#595959"/>
|
||||||
|
<path d="M409.049 111.18v15h-42V66.1802h11.995V111.18Zm-1.004 1h-29.994V67.1802h-9.998V125.18h39.992Z"/>
|
||||||
|
<path d="M379.048 66.1791h30v44.9999h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M409.048 66.1791v44.9999h-30V66.1791Zm-.995.9998h-28.011v43.0001h28.011Z"/>
|
||||||
|
<path d="M427.053 108.182h21v18h-21Z" style="fill:#ccc"/>
|
||||||
|
<path d="M448.053 108.182v18h-21v-18Zm-1.003 1h-18.994v15.999h18.994Z"/>
|
||||||
|
<path d="M316.046 264.181h-8v-3h-1v-3h-5v-6h-4v12h-24v-12h-36v12h-24v-162h21v24h174V96.1813h18V264.181h-21v-12h-36v12h-24v-12h-4v6h-5v2.965l-1 .035v3h-8v-3h-2v3h-8v-3h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M316.046 264.181h-8v-3h-1v-3h-5v-6h-4v12h-24v-12h-36v12h-24v-162h21v24h174V96.1813h18V264.181h-21v-12h-36v12h-24v-12h-4v6h-5v2.965l-1 .035v3h-8v-3h-2v3h-8v-3h-2Zm-8-4h1v3h6v-3h4v3h6v-3h4v3h6v-2.965l1-.036v-2.999h5v-6h6v12h22v-12h38v12h19V97.1813h-16v29.9997h-176v-24h-19v160h22v-12h38v12h22v-12h6v6h5Z"/>
|
||||||
|
<path d="M234.046 147.183h176v87h-176Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M178.046 486.179h24v24.002h24v24h-48Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M178.046 486.179h24v24.002h24v24h-48Zm1 1v46.002h46v-22h-24v-24.002Z"/>
|
||||||
|
<path d="M427.044 126.182h56.999v72h-56.999Z" style="fill:#404040"/>
|
||||||
|
<path d="M484.043 126.182v72h-56.999v-72Zm-.995 1.001h-55.009v69.999h55.009Z"/>
|
||||||
|
<path d="M427.046 210.179h45v60h-45Z" style="fill:#404040"/>
|
||||||
|
<path d="M472.046 210.179v60h-45v-60Zm-1 1.001h-43v57.999h43Z"/>
|
||||||
|
<path d="M514.047 144.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M544.047 144.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M544.047 144.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M574.047 144.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M514.047 168.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M544.047 168.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M544.047 168.181h30v24h-30Z" style="fill:#404040"/>
|
||||||
|
<path d="M574.047 168.181v24h-30v-24Zm-1 1h-28v22h28Z"/>
|
||||||
|
<path d="M550.046 210.181h-45v6h6v27h-9v-12h-18v39h-12v-60h-45v-12h57v-72h-18v-18h-39V96.1813h87v29.9997h24v18h-24v48h36Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M550.046 210.181h-45v6h6v27h-9v-12h-18v39h-12v-60h-45v-12h57v-72h-18v-18h-39V96.1813h87v29.9997h24v18h-24v48h36Zm-1-1v-16h-36v-50h24v-16h-24V97.1813h-85v9.9997h39v18h18v74h-57v10h45v60h10v-39h20v12h7v-25h-6v-8Z"/>
|
||||||
|
<path d="M484.041 240.184h18v12h-18Z" style="fill:#0dcaf2"/>
|
||||||
|
<path d="M502.041 240.184v12h-18v-12Zm-1.003 1h-15.994v10h15.994Z"/>
|
||||||
|
<path d="M484.041 231.181h18v9h-18Z" style="fill:#2f6020"/>
|
||||||
|
<path d="M502.041 231.181v9h-18v-9Zm-1.003 1h-15.994v7h15.994Z"/>
|
||||||
|
<path d="M490.046 336.181v-66h156v180h-156v-66h-3v-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M490.046 336.181v-66h156v180h-156v-66h-3v-48Zm0 1h-2v46h3v66h154v-178h-154v66Z"/>
|
||||||
|
<path d="M532.047 246.181v24h-48v-18h18v-9h9v9h9l6-6Z" style="fill:#595959"/>
|
||||||
|
<path d="M532.047 246.181v24h-48v-18h18v-9h9v9h9l6-6Zm-1 1h-4.59l-6 6h-10.41v-9h-7v9h-18v16h46Z"/>
|
||||||
|
<path d="M697.046 336.181h12v48h-12v24h-18v-24h-33v-48h33v-24h18Z" style="fill:#595959"/>
|
||||||
|
<path d="M697.046 336.181h12v48h-12v24h-18v-24h-33v-48h33v-24h18Zm-1-23h-16v24h-33v46h33v24h16v-24h12v-46h-12Z"/>
|
||||||
|
<path d="M512.047 235.181h19v10h-6l-6 6v2h-7ZM81.0441 401.18H93.044v12H81.0441Zm0-94.001H93.044v12H81.0441Zm110.0019-65.996h22v16h-22Zm0-138.001h22v16h-22Z" style="fill:#ccc"/>
|
||||||
|
<path d="M58.0459 360.182h12v12h-12Z" style="fill:#595959"/>
|
||||||
|
<path d="M70.0459 360.182v11.998h-12v-11.998Zm-.9998.994H59.0456v10.002h10.0005Z"/>
|
||||||
|
<path d="M58.0459 348.182h12v12h-12Z" style="fill:#595959"/>
|
||||||
|
<path d="M70.0459 348.182v11.998h-12v-11.998Zm-.9998.994H59.0456v10.001h10.0005Z"/>
|
||||||
|
<path d="M467.046 108.181h-19v18h18v-10h1" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M365.047 465.179h10v18h-10Zm125.999 0h10v18h-10Z" style="fill:#ccc"/>
|
||||||
|
<path d="M603.046 449.181v1h7v54h30v24h-138v-18h42v-6h36v-54h6v-1" style="fill:#595959;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M503.049 511.178h22v16h-22ZM249.044 55.1814h17v8h-17Zm0 39.9999h17v7.9997h-17ZM429.05 506.179h8v8h-8ZM278.046 95.1823h9v29.9997h-9Zm-40 54.9987h9v24h-9Zm159.001 0h9v24h-9Zm-159.001 60h9v24h-9Zm159.001 0h9v24h-9Zm-54.997 179h12v24h-12Zm106 11.999h12v24h-12Zm-264.004 0h12v24h-12ZM448.05 294.181h12v24h-12Zm-264.004 0h12v24h-12Zm158.004 12h12v24h-12Zm-52.001 83h12v24h-12Zm0-83h12v24h-12Zm66.997-210.9987h9v29.9997h-9Zm-43.995 0h18v29.9997h-18Zm0 114.9987h18v24h-18Zm215.995 111h9v12h-9Zm0 66h9v12h-9Z" style="fill:#ccc"/>
|
||||||
|
<path d="M442.046 306.181h-30l-12 .002 12 .043v17.955h30Z" style="fill:#595959"/>
|
||||||
|
<path d="M442.046 306.181h-30l-12 .002 12 .043v17.955h30Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M208.046 372.182h18v36h-18Z" style="fill:#595959;stroke:#000;stroke-width:1.3796145544246985"/>
|
||||||
|
<path d="M227.509 367.578c-2.049 1.631-4.643 2.605-7.463 2.605-6.623 0-12-5.377-12-12s5.377-12 12-12c5.706 0 10.487 3.992 11.702 9.332" style="fill:#6b6348;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M501.046 474.181h13v37" style="fill:none;stroke:#ccc;stroke-dasharray:2,2;stroke-opacity:.6;stroke-width:2"/>
|
||||||
|
<circle id="circle193" cx="322.045346" cy="171.180965" r="8.999993"/>
|
||||||
|
<path d="M626.045 329.183h6v8h-6Zm0 54h6v8h-6Zm-50-54.002h6v8h-6Zm0 54h6v8h-6Zm-53-54h6v8h-6Zm0 54h6v8h-6Z"/>
|
||||||
|
<path d="M427.045 387.181h15v15h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M429.048 402.181h-2.003v-2h3.998v2Zm-2.003-14h.998v-1h2.002v2h-.997v1h-2.003Zm0 4h2.003v2h-2.003Zm0 4h2.003v2h-2.003Zm6 6v-2h2.003v2Zm3.998 0v-2h2.002v2Zm3.015 0-.015-.011v-.989h1.005v-1h.997v2Zm1.987-3h-2.002v-2h2.002Zm0-4h-2.002v-2h2.002Zm0-4h-2.002v-4c0 1.885 2.002 2 2.002 2Zm-3.997-4v2h-2.003v-2Zm-4.005 0v2h-1.995v-2Z"/>
|
||||||
|
<path d="M406.045 387.181h15v15h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M408.048 402.181h-2.003v-2h3.998v2Zm-2.003-14h.998v-1h2.002v2h-.997v1h-2.003Zm0 4h2.003v2h-2.003Zm0 4h2.003v2h-2.003Zm6 6v-2h2.003v2Zm3.998 0v-2h2.002v2Zm3 0v-1h1.005v-1h.997v2Zm2.002-3h-2.002v-2h2.002Zm0-4h-2.002v-2h2.002Zm0-4h-2.002v-4c0 1.885 2.002 2 2.002 2Zm-3.997-4v2h-2.003v-2Zm-4.005 0v2h-1.995v-2Z"/>
|
||||||
|
<path d="M385.046 387.181h15v15h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M387.048 402.181h-2.002v-2h3.997v2Zm-2.002-14h.997v-1h2.003v2h-.998v1h-2.002Zm0 4h2.002v2h-2.002Zm0 4h2.002v2h-2.002Zm6 6v-2h2.002v2Zm3.997 0v-2h2.003v2Zm3 0v-1h1.005v-1h.998v2Zm2.003-3h-2.003v-2h2.003Zm0-4h-2.003v-2h2.003Zm0-4h-2.003v-4c0 1.885 2.003 2 2.003 2Zm-3.998-4v2h-2.002v-2Zm-4.005 0v2h-1.995v-2Z"/>
|
||||||
|
<path d="M413.042 372.18h29v14.999h-29Z" style="fill:#404040"/>
|
||||||
|
<path d="M442.048 372.18v14.999h-29.006V372.18Zm-1.008.999h-26.99v13.001h26.99Z"/>
|
||||||
|
<path d="M428.044 364.184h14v7.999h-14Z" style="fill:#404040"/>
|
||||||
|
<path d="M442.047 364.184v7.999h-14.003v-7.999Zm-1.002 1h-11.999v6.001l11.999-.002Z"/>
|
||||||
|
<path d="M264.046 352.185h8v51h-8Z" style="fill:#404040"/>
|
||||||
|
<path d="M272.046 352.185v51h-8v-51Zm-1 .998h-6v49.004h6Z"/>
|
||||||
|
<path d="M202.474 348.816c3.362-6.323 10.017-10.632 17.671-10.632 4.713 0 9.047 1.633 12.467 4.365l-3.814 4.69c-2.395-1.912-5.429-3.055-8.727-3.055-5.358 0-10.017 3.016-12.37 7.443Z" style="fill:#404040;stroke:#000;stroke-width:1.00000029094"/>
|
||||||
|
<path d="M435.046 371.183h6v2h-6Zm-5-5.999v6h-2v-6Zm-164.997 36h6v2h-6Zm0-49.002h6v2h-6Zm-31.701-8.35-3.162 3.938-1.56-1.252 3.163-3.939Zm-30.057 4.51 4.311 2.531-1.013 1.725-4.311-2.531Z" style="fill:#404040"/>
|
||||||
|
<path d="M184.046 486.177h12v1h-12Zm-6.001 42.005v-12h1v12Zm47.001 0v-12h1v12Z" style="fill:#337bcc"/>
|
||||||
|
</g>
|
||||||
|
<g id="Arrows">
|
||||||
|
<path d="m533.546 322.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m533.546 322.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m533.546 388.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m533.546 388.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m82.0463 556.174-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m82.0463 556.174-7.0002-10h14Zm0-1.744 5.0793-7.256H76.967Z"/>
|
||||||
|
<path d="m346.044 508.174-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m346.044 508.174-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m276.044 377.181-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m276.044 377.181-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m371.044 380.181-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m371.044 380.181-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m160.044 74.181-7-9.9999h14Z" style="fill:red"/>
|
||||||
|
<path d="m160.044 74.181-7-9.9999h14Zm0-1.7438 5.08-7.2562h-10.159Z"/>
|
||||||
|
<path d="m257.044 64.181-7-9.9999h14Z" style="fill:red"/>
|
||||||
|
<path d="m257.044 64.181-7-9.9999h14Zm0-1.7438 5.08-7.2562h-10.159Z"/>
|
||||||
|
<path d="m257.044 104.181-7-9.9999h14Z" style="fill:red"/>
|
||||||
|
<path d="m257.044 104.181-7-9.9999h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m457.044 122.181-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m457.044 122.181-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m82.0457 536.179 7.0002 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m82.0457 536.179 7.0002 10h-14Zm0 1.744-5.0793 7.256H87.125Z"/>
|
||||||
|
<path d="m346.046 488.179 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m346.046 488.179 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m87.0457 308.181 7.0002 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m87.0457 308.181 7.0002 10h-14Zm0 1.744-5.0793 7.256H92.125Z"/>
|
||||||
|
<path d="m87.0457 402.181 7.0002 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m87.0457 402.181 7.0002 10h-14Zm0 1.744-5.0793 7.256H92.125Z"/>
|
||||||
|
<path d="m437.546 112.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m437.546 112.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m514.046 514.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m514.046 514.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m521.046 235.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m521.046 235.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m202.046 244.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m202.046 244.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m202.046 106.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m202.046 106.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m370.046 469.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m370.046 469.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m496.046 469.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m496.046 469.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m433.042 514.18-4-6h8Z" style="fill:red"/>
|
||||||
|
<path d="m433.042 514.18-4-6h8Zm0-1.803 2.131-3.197h-4.263Z"/>
|
||||||
|
<path d="m322.046 105.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m322.046 105.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m322.046 217.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m322.046 217.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m282.546 105.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m282.546 105.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m242.546 157.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m242.546 157.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m401.546 157.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m401.546 157.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m242.546 217.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m242.546 217.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m401.546 217.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m401.546 217.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m348.046 396.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m348.046 396.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m454.046 408.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m454.046 408.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m190.046 408.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m190.046 408.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m454.046 301.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m454.046 301.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m190.046 301.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m190.046 301.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m348.046 313.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m348.046 313.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m296.046 396.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m296.046 396.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m296.046 313.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m296.046 313.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
<path d="m361.546 105.181 7 10h-14Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m361.546 105.181 7 10h-14Zm0 1.744-5.08 7.256h10.159Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Doors">
|
||||||
|
<path d="M366.027 125.18v2h-87.999v-2Zm-50.985 138v2h-6v-2Zm20 0v2h-6v-2Zm-10 0v2h-6v-2Zm-96 0v2h-6v-2Zm186 0v2h-6v-2ZM189.045 129.184h2v12h-2Zm0 90h2v12h-2Zm24-90h2v12h-2Zm0 90h2v12h-2Zm-4.997-10.004v2h-9v-2Zm0-60v2h-9v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M546.045 152.181v8h-4v-8Zm0 24v8h-4v-8Zm-117-29v12h-4v-12Zm0 74v8h-4v-8Zm45 0v8h-4v-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M486.045 354.184h2v12h-2Zm159-6.005h2v24h-2ZM57.046 168.182h2v24h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M290.046 484.18v-8h4v8Zm-150 6.001h7v4h-7Zm-11-21h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M297.046 484.18h8v4h-8Zm0-12.001h8v4h-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M486.045 156.181v12h-4v-12Zm30-4v8h-4v-8Zm0 24v8h-4v-8Zm-418.999 332h12v4h-12Zm-19 23.998h8v4h-8Zm82-23.998h12v4h-12Zm2-42h8v4h-8Zm-39 28h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M114.046 499.181v8h-4v-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M85.0465 448.181h6v4h-6Zm-13.0005-36h8v4h-8Zm27-24h8v4h-8Zm0 18h8v4h-8Zm0-78h8v4h-8Zm0-18h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M69.0452 363.181h2v6h-2ZM147.05 329.18v2h-10v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M279.046 44.181v8h-4v-8Zm-123 38h8v4h-8Zm0 36h8v4h-8Zm0 120h8v4h-8Zm132 293.998h8v4h-8Zm0 17.995h8v4h-8Zm48-17.995h8v4h-8Zm0 17.995h8v4h-8Zm6-41.993h8v4h-8Zm23.999 5v12h-4v-12Zm0-61v8h-4v-8Zm-29.999 0v8h-4v-8Zm3 8h8v4h-8Zm-27 32v12h-4v-12Zm0-36v12h-4v-12Zm-176-68h12v4h-12Zm26 44v8h-4v-8Zm266.999-232v8h-4v-8Zm0-102v8h-4v-8Zm0 15v8h-4v-8Zm-18 0v8h-4v-8Zm-30-43v8h-4v-8Zm-143.999 46v8h-4v-8Zm162-7h8v4h-8Zm-120-46v12h-4v-12Zm89.999 9v12h-4v-12Zm150.005 52h8v4h-8Zm0-18h8v4h-8Zm18 102h8v4h-8Zm0 18h8v4h-8Zm-43.003 42h12v4h-12Zm22 0h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M510.046 242.18v2h-7v-2Zm-26.996 27v2h-10v-2Zm-324.005 62.001h2v58h-2Zm42.003 117.999v2h-22v-2Zm132 0v2h-22v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M428.045 128.181v17h-2v-17Zm0 33v34.999h-2v-34.999Zm-236.999-12h6v2h-6Zm0 60h6v2h-6Zm0-88v6h-2v-6Zm0 90v6h-2v-6Zm24 0v6h-2v-6Zm-24 22v6h-2v-6Zm24 0v6h-2v-6Zm0-112v6h-2v-6Zm0 22v6h-2v-6Zm-24 0v6h-2v-6Zm40 120h6v2h-6Zm-16 0h6v2h-6Zm201.996 0h9v2h-9Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M228.046 394.181v12h-4v-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M431.046 322.181h8v4h-8Zm-17-7v8h-4v-8Z" style="fill:#f30000"/>
|
||||||
|
</g>
|
||||||
|
<g id="Details">
|
||||||
|
<path d="M382.04 465.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M427.04 465.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M382.04 498.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M427.04 498.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M439.04 498.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M484.04 498.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M439.04 465.178h45v21h-45Z" style="fill:#595959"/>
|
||||||
|
<path d="M484.04 465.178v21h-45v-21Zm-1.003 1h-42.994v19h42.994Z"/>
|
||||||
|
<path d="M435.046 357.181h6l6-9.998v-12" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M74.0442 121.181h79.9998v20H74.0442Zm0 98h79.9998v20H74.0442Z" style="fill:#404040"/>
|
||||||
|
<path d="M208.046 342.183v-12m45.997-18h18m-45.996 59.996 14.999 9.999v12.001m15.005-31.996h8m7.992 31.996h10l8-3.996m-25.997-8.009h-12v12m-20.484-42.844 10.488 4.851m-34.004-33.998v-12h12m52 53.998v-11h12m-56.003-42.998h12v12m149.003 8.001v-19l-5-5h-14l-5 5v14.001l4 4.999m6 17.999h8l6-6.002m21 15.001h10l5-5v-14l-5-5h-14l-5 5v10.001" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 26 KiB |
|
|
@ -0,0 +1,225 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" version="1.1" viewBox="0 0 720 586">
|
||||||
|
<style>
|
||||||
|
.shadow{filter:drop-shadow(0 0 8px #000)}
|
||||||
|
</style>
|
||||||
|
<g id="Second_Level" class="shadow">
|
||||||
|
<g id="Rooms">
|
||||||
|
<path d="M490.001 332.767h49v12h-25v30h25v12h-49Z" style="fill:#595959"/>
|
||||||
|
<path d="M490.001 332.767h49v12h-25v30h25v12h-49Zm1 1v52h47v-10h-25v-32h25v-10Z"/>
|
||||||
|
<path d="M527.001 89.7669V209.767h32v57h-75v-15h39v-6h15v7h3v-25h-32V89.7669Z" style="fill:#595959"/>
|
||||||
|
<path d="M559.001 209.767v57h-75v-15h39v-6h15v7h3v-25h-32V89.7669h18V209.767Zm-1 1h-32V90.7669h-16V226.767h32v27h-5v-7h-13v6h-39v13h73Z"/>
|
||||||
|
<path d="M532.001 503.767h-30v24h24v-16h6Z" style="fill:#595959"/>
|
||||||
|
<path d="M532.001 503.767v8h-6v16h-24v-24Zm-1 1h-28v22h22v-16h6Z"/>
|
||||||
|
<path d="M214.001 263.768v6h-54v180h324v-66h3v-48h-3v-66h-5v-3h-14v3h-29v-6h-30v6h-74v-6h-9v3h-2v-3h-9v6h-74v-6Zm-30 30h66l12 12h120l12-12h66v29l-9 9v56l9 9v29h-66l-12-12h-120l-12 12h-66v-29l9-9v-56l-9-9Z" style="display:inline;fill:#595959"/>
|
||||||
|
<path d="M184.001 293.768v29l9 9v56l-9 9v29h66l12-12h120l12 12h66v-29l-9-9v-56l9-9v-29h-66l-12 12h-120l-12-12Z" style="display:inline;fill:none;stroke:#000"/>
|
||||||
|
<path d="M183.001 426.767v-30.414l9-9v-55.172l-9-9v-30.414h67.41l12 12h119.18l12-12h67.41v30.414l-9 9v55.172l9 9v30.414h-67.41l-12-12h-119.18l-12 12Z" style="display:inline;fill:none;stroke:#000;stroke-opacity:1"/>
|
||||||
|
<path d="M317.001 267.767h-2v-3h-2v6h-76v-6h-22v6H161v178h322.001v-66h3v-46h-3v-66h-5v-3h-12v3h-31v-6h-28v6h-76v-6h-2v3h-2v-3h-3v3h-4v-3h-3Z" style="display:inline;fill:none;stroke:#000;stroke-opacity:1"/>
|
||||||
|
<path d="M323.001 263.767h9v6h74v-6h30v6h29v-3h14v3h5v66h3v48h-3v66H160v-180h54.001v-6h24v6h74v-6h9v3h2Z" style="display:inline;fill:none;stroke:#000;stroke-opacity:1"/>
|
||||||
|
<path d="M93.998 473.766h18v36h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M111.998 473.766v36h-18v-36Zm-1.001 1H94.9993v34.002h15.9977Z"/>
|
||||||
|
<path d="M93.998 449.767h18v24h-18Z" style="fill:#435570"/>
|
||||||
|
<path d="M111.998 449.767v24h-18v-24Zm-1.001 1H94.9993v22h15.9977Z"/>
|
||||||
|
<path d="M154.004 449.767h24v60h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.004 449.767v60h-24v-60Zm-1 1h-22v58h22Z"/>
|
||||||
|
<path d="M132.999 494.766h21v15h-21Z" style="fill:#435570"/>
|
||||||
|
<path d="M153.999 494.766v15h-21v-15Zm-1.002 1h-18.996v13h18.996Z"/>
|
||||||
|
<path d="M112 509.767v-60h42v15h-21v45Z" style="fill:#435570"/>
|
||||||
|
<path d="M112 509.767v-60h42v15h-21v45Zm1-51v50h19v-45h21v-13h-40Z"/>
|
||||||
|
<path d="M132.999 479.767h21v15h-21Z" style="fill:#435570"/>
|
||||||
|
<path d="M153.999 479.767v15h-21v-15Zm-1.002 1h-18.996v13h18.996Z"/>
|
||||||
|
<path d="M132.999 464.767h21v15h-21Z" style="fill:#435570"/>
|
||||||
|
<path d="M153.999 464.767v15h-21v-15Zm-1.002 1h-18.996v13h18.996Z"/>
|
||||||
|
<path d="M94.0041 389.768h65.9999v60H94.0041Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M160.004 389.768v60H94.0041v-60Zm-1.008 1H95.0124v57.999h63.9836Z"/>
|
||||||
|
<path d="M94.0041 269.767h65.9999v60H94.0041Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M160.004 269.767v60H94.0041v-60Zm-1.008 1.001H95.0124v57.999h63.9836Z"/>
|
||||||
|
<path d="M51.9952 491.767v18H9.99515v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M51.9952 509.767H9.99515v-18H51.9952Zm-1-1v-16h-40v16Z"/>
|
||||||
|
<path d="M51.9952 473.767v18H9.99515v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M51.9952 491.767H9.99515v-18H51.9952Zm-1-1v-16h-40v16Z"/>
|
||||||
|
<path d="M69.9985 491.767v18h-18v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M69.9985 509.767h-18v-18h18Zm-1-1v-16h-16v16Z"/>
|
||||||
|
<path d="M69.9985 473.767v18h-18v-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M69.9985 491.767h-18v-18h18Zm-1-1v-16h-16v16Z"/>
|
||||||
|
<path d="M70.0004 473.762v-30h24v30Z" style="fill:#404040"/>
|
||||||
|
<path d="M70.0004 443.762h24v30h-24Zm1 1v28h22v-28Z"/>
|
||||||
|
<path d="M70.0004 443.764v-30h24v30Z" style="fill:#404040"/>
|
||||||
|
<path d="M70.0004 413.764h24v30h-24Zm1 1v28h22v-28Z"/>
|
||||||
|
<path d="M94.0005 509.767h85.0005v23.998H70.0005v-59.998h24Z" style="fill:#435570"/>
|
||||||
|
<path d="M94.0005 509.767h85.0005v23.998H70.0005v-59.998h24Zm-23 0v22.998H178.001v-21.998H93.0005v-36h-22Z"/>
|
||||||
|
<path d="M178.001 449.764h24v24.999h-24Z" style="fill:#435570"/>
|
||||||
|
<path d="M178.001 449.764h24v24.999h-24Zm1 1v22.999h22v-22.999Z"/>
|
||||||
|
<path d="M334.001 509.767h30v24h-139v-24h85v-60h24Z" style="fill:#435570"/>
|
||||||
|
<path d="M334.001 509.767h30v24h-139v-24h85v-60h24Zm-1 0v-59h-22v60h-85v22h137v-22h-30Z"/>
|
||||||
|
<path d="M202.005 451.769h76.001v58h-76.001Z" style="fill:#595959"/>
|
||||||
|
<path d="M278.016 509.769h-76.011v-58h76.011Zm-1.003-.996v-56.004h-74.005v56.004Z"/>
|
||||||
|
<path d="M160 363.767v26H94.0005v12h-24v-31H152.76Z" style="fill:#595959"/>
|
||||||
|
<path d="M160 363.767v26H94.0005v12h-24v-31H152.76Zm-1 2.357-5.84 5.643H71.0005v29h22v-12H159Z"/>
|
||||||
|
<path d="M70.0005 348.767v-31h24v12H160v26l-7.24-7Z" style="fill:#595959"/>
|
||||||
|
<path d="M70.0005 348.767v-31h24v12H160v26l-7.24-7Zm1-1H153.16l5.84 5.643v-22.643H93.0005v-12h-22Z"/>
|
||||||
|
<path d="m160.001 352.768.118.121c.567.563.877 1.325.877 2.122v9.513c0 .797-.31 1.559-.877 2.122l-.118.121Z" style="fill:#4b8edb"/>
|
||||||
|
<path d="M334.001 461.769h18v24h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M352.001 461.769v24h-18v-24Zm-.99.998h-16.02v22.003h16.02Z"/>
|
||||||
|
<path d="M364.024 451.767h138.001v14H364.024Z" style="fill:#595959"/>
|
||||||
|
<path d="M502.025 451.767v14H364.024v-14Zm-1.035 1H365.059v12H500.99Z"/>
|
||||||
|
<path d="M189.997 119.767h21v30h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M210.997 119.767v30h-21v-30Zm-1.003 1H191v28h18.994Z"/>
|
||||||
|
<path d="M189.997 209.767h21v30h-21Z" style="fill:#595959"/>
|
||||||
|
<path d="M210.997 209.767v30h-21v-30Zm-1.003 1H191v28h18.994Z"/>
|
||||||
|
<path d="M333.996 485.764h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M357.996 485.764v24h-24v-24Zm-3 3h-18v18h18Z" style="fill:#0d79f2"/>
|
||||||
|
<path d="M333.996 485.764h24v24h-24Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M69.9967 533.765h24v24h-24Z" style="fill:#ccc"/>
|
||||||
|
<path d="M93.9967 533.765v24h-24v-24Zm-3 3.006h-18v17.989h18Z" style="fill:#2c8217"/>
|
||||||
|
<path d="M93.9967 533.765v24h-24v-24Zm-.9996 1.002H70.9964v21.997h22.0007Z"/>
|
||||||
|
<path d="M94.0025 533.765h24.0005v24H94.0025Z" style="fill:#ccc"/>
|
||||||
|
<path d="M118.003 533.765v24H94.0025v-24Zm-1 1.002H95.0021v21.997h22.0009Z"/>
|
||||||
|
<path d="M235 53.7672h42v71.9998h-42Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M277 125.767h-42V53.7672h42Zm-1-1V54.7672h-40v69.9998Z"/>
|
||||||
|
<path d="M406.001 89.7656v36.0004H390v-24h-22.998V53.7656h14.997v36Z" style="fill:#595959"/>
|
||||||
|
<path d="M406.001 89.7656v36.0004H390v-24h-22.998V53.7656h14.997v36Zm-.994 1h-24.001v-36h-13v46.0004h22.998v24h14.003Z"/>
|
||||||
|
<path d="M367.004 125.767v-24h23v24h-16.996v-12h-6.004Z" style="fill:#595959"/>
|
||||||
|
<path d="M367.004 113.767v-12h23v24h-16.996v-12Zm1.005-1.001h5.992v12H389v-21.999h-20.991Z"/>
|
||||||
|
<path d="M382 53.7668h23.999v36H382Z" style="fill:#595959"/>
|
||||||
|
<path d="M405.999 53.7668v36H382v-36Zm-.997 1.0002h-22.005v33.9996h22.005Z"/>
|
||||||
|
<path d="M178.001 473.765h24v36.002h36v24h-60Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M178.001 473.765h24v36.002h36v24h-60Zm1 1v58.002h58v-22h-36v-36.002Z"/>
|
||||||
|
<path d="M184.004 473.766h12v1h-12Zm-6.003 53.998v-12h1v12Zm58.999 0v-12h1v12Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M483.996 239.769h17.999v12h-17.999Z" style="fill:#0dcaf2"/>
|
||||||
|
<path d="M501.995 239.769v12h-17.999v-12Zm-1.002 1h-15.995v10h15.995Z"/>
|
||||||
|
<path d="M490.001 386.767v-54" style="fill:none;stroke:#000;stroke-width:1.00000029094"/>
|
||||||
|
<path d="M490.001 335.767v-3h49v12h-25v30h25v12h-49v-3h-3v-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M490.001 335.767v-3h49v12h-25v30h25v12h-49v-3h-3v-48Zm0 1h-2v46h3v3h47v-10h-25v-32h25v-10h-47v3Z"/>
|
||||||
|
<path d="M80.9976 400.765h12v12h-12Zm0-94h12v12h-12ZM365 464.765h10v18h-10Zm126 0h10v18h-10Zm12.002 45.998h22v16h-22Z" style="fill:#ccc"/>
|
||||||
|
<path d="M501.999 451.765h30v52h-30Z" style="fill:#595959"/>
|
||||||
|
<path d="M531.999 451.765v52h-30v-52Zm-.998 1h-28.005v50h28.005Z"/>
|
||||||
|
<path d="M460 233.767h24v33h-24Z" style="fill:#595959"/>
|
||||||
|
<path d="M484 233.767v33h-24v-33Zm-1.004 1h-21.993v31.001h21.993Z"/>
|
||||||
|
<path d="M436 233.767h24v33h-24Z" style="fill:#595959"/>
|
||||||
|
<path d="M460 233.767v33h-24v-33Zm-1.004 1h-21.993v31.001h21.993Z"/>
|
||||||
|
<path d="M436.005 209.767h48v24h-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M484.005 209.767v24h-48v-24Zm-1.003 1h-45.993v22h45.993Z"/>
|
||||||
|
<path d="M465.999 149.766h18v60h-18Z" style="fill:#595959"/>
|
||||||
|
<path d="M483.999 149.766v60h-18v-60Zm-.998 1h-16.004v58h16.004Z"/>
|
||||||
|
<path d="M447.999 107.767h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M465.999 107.767v18h-18v-18Zm-.998 1h-16.004v16h16.004Z"/>
|
||||||
|
<path d="M405.999 107.767h18v18h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M423.999 107.767v18h-18v-18Zm-.998 1h-16.004v16h16.004Z"/>
|
||||||
|
<path d="M447.999 65.7677h18v42.0003h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M465.999 65.7677v42.0003h-18V65.7677Zm-.998 1.001h-16.004v39.9983h16.004Z"/>
|
||||||
|
<path d="M405.999 65.7677h18v42.0003h-18Z" style="fill:#404040"/>
|
||||||
|
<path d="M423.999 65.7677v42.0003h-18V65.7677Zm-.998 1.001h-16.004v39.9983h16.004Z"/>
|
||||||
|
<path d="M514 344.765h15v30h-15Z" style="fill:#595959"/>
|
||||||
|
<path d="M529 344.765v30h-15v-30Zm-1.003 1h-12.994v28h12.994Z"/>
|
||||||
|
<path d="M424.001 149.766h42v60h-42Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M466.001 149.766v60h-42v-60Zm-1 1h-40v58h40Z"/>
|
||||||
|
<path d="M483.999 125.767h25v24h-25Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M508.999 125.767v24h-25v-24Zm-1 1h-23v22h23Z"/>
|
||||||
|
<path d="M373.001 125.767h-6Zm-5.001-12h5v11h-5Z" style="fill:#595959"/>
|
||||||
|
<path d="M368 113.767h5v11h-5Z" style="fill:none"/>
|
||||||
|
<path d="M214.001 229.767v-100h-3v-10h3v-18h21v24h249v24h-60v60h12v54h-30v-12h-74v12h-4v-4 4h-5v-3h-2v3h-5v-4 4h-4v-12h-74v12h-24v-24h-3v-10Zm87.89-79h-63.89v82h8.63c.67 0 1.29-.337 1.67-.897 5.88-8.906 53.59-81.103 53.59-81.103Zm58.73 82c.74 0 1.41-.4 1.76-1.043.35-.643.32-1.426-.08-2.041-5.17-8.021-18.93-29.342-22.94-35.554-.28-.448-.74-.762-1.26-.872-.52-.11-1.07-.008-1.51.284-4.22 2.686-9.22 4.226-14.59 4.226-5.41 0-10.45-1.564-14.69-4.281-.45-.294-.99-.397-1.51-.287-.52.11-.98.424-1.26.872-4.02 6.236-17.71 27.593-22.86 35.616-.39.616-.42 1.398-.07 2.039.35.642 1.02 1.041 1.76 1.041Zm-18.64-82s47.83 72.207 53.72 81.104c.37.56 1 .896 1.67.896h8.63v-82Z" style="fill:#595959"/>
|
||||||
|
<path d="M321.001 263.767h-9v-12h-74v12h-24v-24h-3v-10h3v-100h-3v-10h3v-18h21v24h249v24h-60v60h12v54h-30v-12h-74v12h-9v-3h-2Zm6-4h2v3h2v-12h76v12h28v-52h-12v-62h60v-22h-249v-24h-19v18h-3v8h3v102h-3v8h3v24h22v-12h76v12h2v-3h2v3h3v-3h4v3h3Zm-24.27-108.449-53.6 81.103c-.56.84-1.5 1.346-2.5 1.346h-9.63v-84h64.89Zm-.84-.551h-63.89v82h8.63c.67 0 1.29-.337 1.67-.897Zm58.73 83h-77.25c-1.1 0-2.11-.599-2.64-1.561-.52-.962-.48-2.135.11-3.058 5.15-8.024 18.84-29.381 22.85-35.617.44-.673 1.12-1.146 1.9-1.311.78-.164 1.59-.011 2.26.425 4.08 2.616 8.94 4.122 14.15 4.122 5.17 0 9.99-1.482 14.05-4.07.67-.432 1.48-.583 2.26-.418.78.165 1.46.636 1.89 1.307l22.94 35.555c.6.922.64 2.097.12 3.061-.53.965-1.54 1.565-2.64 1.565Zm0-1c.74 0 1.41-.4 1.76-1.043.35-.643.32-1.426-.08-2.041l-22.94-35.554c-.28-.448-.74-.762-1.26-.872-.52-.11-1.07-.008-1.51.284-4.22 2.686-9.22 4.226-14.59 4.226-5.41 0-10.45-1.564-14.69-4.281-.45-.294-.99-.397-1.51-.287-.52.11-.98.424-1.26.872-4.02 6.236-17.71 27.593-22.86 35.616-.39.616-.42 1.398-.07 2.039.35.642 1.02 1.041 1.76 1.041Zm-18.64-83h65.02v84h-9.63c-1 0-1.95-.504-2.5-1.343l-53.72-81.105Zm0 1 53.72 81.104c.37.56 1 .896 1.67.896h8.63v-82Z"/>
|
||||||
|
<path d="M341.004 390.766h12v24h-12Zm107 12.001h12v24h-12Zm-264 0h12v24h-12Zm107-12.001h12v24h-12ZM278.001 96.7675h9v30.0005h-9Zm-40 52.9985h9v24h-9Zm158.999 0h9v24h-9Zm-158.999 60h9v24h-9Zm158.999 0h9v24h-9Zm51.004 83h12v24h-12Zm-264 0h12v24h-12Zm157 12h12v24h-12Zm-50 0h12v24h-12Zm65.997-207.9985h9v30.0005h-9Zm-44.003 0h18v30.0005h-18Zm0 112.9985h18v24h-18Z" style="fill:#ccc"/>
|
||||||
|
<path d="M309.988 341.766h24v36h-24Z" style="fill:#595959"/>
|
||||||
|
<path d="M333.988 341.766v36h-24v-36Zm-1.013 1h-21.973v34h21.973Z"/>
|
||||||
|
<path d="M297.991 377.767v-42.735c0-1.405.74-2.707 1.95-3.43 2.06-1.24 5.41-3.249 8.2-4.922 3.01-1.807 4.85-5.062 4.85-8.575v-12.338h18v12.338c0 3.513 1.85 6.768 4.86 8.575 2.79 1.673 6.14 3.682 8.2 4.922 1.21.723 1.94 2.025 1.94 3.43v42.735h-12v-36h-24v36Z" style="fill:#595959"/>
|
||||||
|
<path d="M297.991 377.767v-42.735c0-1.405.74-2.707 1.95-3.43l8.2-4.922c3.01-1.807 4.85-5.062 4.85-8.575v-12.338h18v12.338c0 3.513 1.85 6.768 4.86 8.575l8.2 4.922c1.21.723 1.94 2.025 1.94 3.43v42.735h-12v-36h-24v36Zm1-1h10v-36h26v36h10v-41.735c0-1.054-.55-2.031-1.45-2.573l-8.2-4.921c-3.32-1.988-5.35-5.569-5.35-9.433v-11.338h-16v11.338c0 3.864-2.02 7.445-5.34 9.433l-8.2 4.921c-.9.542-1.46 1.519-1.46 2.573Z"/>
|
||||||
|
<path d="M297.993 377.766h48v12h-48Z" style="fill:#595959"/>
|
||||||
|
<path d="M345.993 377.766v12h-48v-12Zm-1.014 1h-45.973v10h45.973Z"/>
|
||||||
|
<path d="M529.001 321.767h9v12h-9Zm0 64h9v12h-9Zm1-141h-18v-8h25v10h-7Zm-339-142h24v8h-2v8h-22Zm22 146h2v8h-24v-16h22Zm226-124h-14v-16h22v18h-8Z" style="fill:#ccc"/>
|
||||||
|
<path d="M278 451.767h32v18h-32Z" style="fill:#595959"/>
|
||||||
|
<path d="M310 451.767v18h-32v-18Zm-1 1h-30v16h30Z"/>
|
||||||
|
<path d="M278 469.767h32v40h-32Z" style="fill:#595959"/>
|
||||||
|
<path d="M310 469.767v40h-32v-40Zm-1 1h-30v38h30Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Arrows">
|
||||||
|
<path d="m81.9983 550.767-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m81.9983 550.767-7.0002-10h14Zm0-1.744 5.0793-7.256H76.919Z"/>
|
||||||
|
<path d="m345.998 502.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m345.998 502.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m296.998 407.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m296.998 407.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m189.998 419.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m189.998 419.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m86.9983 411.767-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m86.9983 411.767-7.0002-10h14Zm0-1.744 5.0793-7.256H81.919Z"/>
|
||||||
|
<path d="m86.9983 317.766-7.0002-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m86.9983 317.766-7.0002-10h14Zm0-1.744 5.0793-7.256H81.919Z"/>
|
||||||
|
<path d="m189.998 309.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m189.998 309.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m296.998 321.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m296.998 321.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m346.998 321.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m346.998 321.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m346.998 407.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m346.998 407.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m453.998 419.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m453.998 419.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m369.998 478.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m369.998 478.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m495.998 478.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m495.998 478.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m513.998 523.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m513.998 523.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m533.498 396.767-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m533.498 396.767-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m533.498 332.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m533.498 332.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m524.498 245.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m524.498 245.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m401.498 226.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m401.498 226.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m321.998 226.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m321.998 226.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m202.998 253.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m202.998 253.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m242.498 226.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m242.498 226.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m242.498 166.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m242.498 166.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m202.998 115.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m202.998 115.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m282.498 116.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m282.498 116.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m321.998 116.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m321.998 116.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m361.498 116.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m361.498 116.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m401.498 166.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m401.498 166.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m435.998 122.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m435.998 122.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
<path d="m453.998 309.766-7-10h14Z" style="fill:red"/>
|
||||||
|
<path d="m453.998 309.766-7-10h14Zm0-1.744 5.08-7.256h-10.159Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Doors">
|
||||||
|
<path d="M327.003 262.765v2h-3v-2Zm-7 0v2h-3v-2Zm-91.007 0v2h-6v-2Zm195 0v2h-6v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M134.999 483.766v7h-4v-7Zm0-15v7h-4v-7Zm21-15v7h-4v-7Zm-77.995 78.001h8v4h-8Zm81.997-24h12v4h-12Zm-43 0h12v4h-12Zm-38.997-36.001h8v4h-8Zm21 0h8v4h-8Zm-21-30h8v4h-8Zm56.995 56.997v7h-4v-7Zm-66.998 5.999v-8h4v8Zm-18 0v-8h4v8Zm18-18v-8h4v8Zm24 0v-8h4v8Zm-42 0v-8h4v8Zm292.003 21.005h8v4h-8Zm-6.005-32.001v8h-4v-8Zm180-112v8h-4v-8Zm-62.995-240h8v4h-8Zm-42 0h8v4h-8Zm-17 0h8v4h-8Zm-130 0h8v4h-8Zm209 24h8v4h-8Zm-20-42h8v4h-8Zm-42 0h8v4h-8Zm57.997 102h12v4h-12Zm-1.002-34v12h-4v-12Zm-1.998 58h12v4h-12Zm0 33h12v4h-12Zm-4.002-21v12h-4v-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M158.999 330.764h2v58h-2Zm42.003 118.001v2h-22v-2Zm132 0v2h-22v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M424.999 152.766v54h-2v-54ZM214.998 262.767h6v2h-6Zm191.998 0h9v2h-9Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M435.002 208.765v2h-9v-2Zm0-60v2h-9v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M447.004 207.766h8v4h-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M482.996 129.764h2v16h-2Zm25 0h2v16h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M380.998 99.7663h8v3.9997h-8ZM375 116.767v4.999h-3v-4.999Zm18.998-29.0007h8v4h-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M212.999 120.766v8h-4v-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M485.996 338.769h2v12.001h-2Zm0 20.997h2v21h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M213 230.766v8h-4v-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M482.996 252.764h2v13h-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M213.999 170.766v18h-2v-18Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M370.001 448.766h12v4h-12Zm72 0h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M311.997 454.766v12h-4v-12Z" style="fill:red"/>
|
||||||
|
<path d="M311.999 343.766v8h-4v-8Zm24 0v8h-4v-8Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M310.999 353.766v21h-2v-21Zm24 0v21h-2v-21Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M299.998 375.766h8v4h-8Zm36 0h8v4h-8Z" style="fill:#f30000"/>
|
||||||
|
<path d="M96.9952 388.767h11.9998v2H96.9952Zm0-60h11.9998v2H96.9952Zm47.9998 60h12v2h-12Zm0-60h12v2h-12Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M113.001 387.766h12v4h-12Zm0-60h12v4h-12Zm16 60h12v4h-12Zm0-60h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
<path d="M160.999 392.766v54h-2v-54Zm0-120v54h-2v-54Z" style="fill:#4da1b3"/>
|
||||||
|
<path d="M330.002 304.765v2h-16v-2Z" style="fill:#595959"/>
|
||||||
|
<path d="M279.999 454.766v12h-4v-12Zm0 31v8h-4v-8Zm-179.998 46.001h12v4h-12Z" style="fill:#8c737c"/>
|
||||||
|
</g>
|
||||||
|
<g id="Details">
|
||||||
|
<circle cx="321.994646" cy="170.76686" r="26.000052" style="fill:#6b6348"/>
|
||||||
|
<circle cx="321.993327" cy="170.766832" r="8.999997" style="fill:#8c8573"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -0,0 +1,113 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" version="1.1" viewBox="0 0 720 586">
|
||||||
|
<style>
|
||||||
|
.shadow{filter:drop-shadow(0 0 8px #000)}
|
||||||
|
</style>
|
||||||
|
<g id="Technical_Level" class="shadow">
|
||||||
|
<g id="Rooms">
|
||||||
|
<path d="M296.607 143.179h4.347v215.983h-4.347Zm45.647 0h4.347v205.984h-4.347Z" style="fill:#1a1a1a"/>
|
||||||
|
<path d="M438.98 180.177h58.689v53.995H438.98Z" style="fill:#404040;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M406.376 498.148h39.125v23.998h-39.125Z" style="fill:#435570"/>
|
||||||
|
<path d="M406.376 498.148h39.125v23.998h-39.125Zm1.087 1v21.999h36.951v-21.999Z" style="display:inline"/>
|
||||||
|
<path d="M158.581 444.155h71.73v11.999h-71.73Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M73.8089 444.155h19.5628v89.993H73.8089Z" style="fill:#6b4848;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M93.3717 444.155h32.6043v11.999H93.3717Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M307.475 498.151h-45.646v17.996h-26.084v-59.993h71.73Zm-48.907-29.998h-13.042v17.998h13.042Z" style="fill:#595959;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M261.829 498.147h45.646v17.998h-45.646Z" style="fill:#595959;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M93.3717 516.146h84.7723v17.999H93.3717Zm104.3343 0h163.023v17.999H197.706Z" style="fill:#6b4848;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M178.143 456.154h19.563v77.993h-19.563Z" style="fill:#6b4848;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M348.774 258.17h92.38v11.999h-92.38Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M441.154 258.17v11.999h-92.38V258.17Zm-1.087.999h-90.206v10h90.206Z"/>
|
||||||
|
<path d="M578.093 443.154h27.171v19.999h-27.171Z" style="fill:#595959"/>
|
||||||
|
<path d="M578.093 443.154h27.171v19.999h-27.171Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M471.588 132.18h26.083v47.996h-26.083Z" style="fill:#435570;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M223.79 48.1882h45.646v71.9938H223.79Z" style="fill:#595959"/>
|
||||||
|
<path d="M269.436 48.1882v71.9938H223.79V48.1882Zm-1.087.9997h-43.472v69.9951h43.472Z"/>
|
||||||
|
<path d="M64.0275 120.182H171.623v23.998H64.0275Z" style="fill:#435570"/>
|
||||||
|
<path d="M171.623 120.182v23.998H64.0275v-23.998Zm-1.087.999H65.1145v21.999H170.536Z"/>
|
||||||
|
<path d="M155.321 180.176h13.041v23.998h-45.646v-29.997H90.1113v-29.998h65.2097Z" style="fill:#595959"/>
|
||||||
|
<path d="M155.321 180.176h13.041v23.998h-45.646v-29.997H90.1113v-29.998h65.2097Zm-1.087 0v-34.997H91.1981v27.998h32.6049v29.997h43.473v-21.998h-13.042Z"/>
|
||||||
|
<path d="M139.018 204.174h26.084v23.998h-26.084Z" style="fill:#435570"/>
|
||||||
|
<path d="M165.102 204.174v23.998h-26.084v-23.998Zm-1.088 1h-23.909v21.998h23.909Z"/>
|
||||||
|
<path d="M197.707 216.173h32.605v11.999h-32.605Z" style="fill:#435570"/>
|
||||||
|
<path d="M230.312 216.173v11.999h-32.605v-11.999Zm-1.087 1h-30.432v9.999h30.432Z"/>
|
||||||
|
<path d="M344.427 11.1899h17.389v13.9988h-17.389Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M344.427 360.162h-45.646v41.996h45.646Zm-11.955 10.999h-21.736v19.998h21.736Z" style="fill:#435570;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M310.735 371.161h21.737v19.998h-21.737Z" style="fill:#595959"/>
|
||||||
|
<path d="M310.735 371.161h21.737v19.998h-21.737Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M125.976 438.155h32.605v17.999h-32.605Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M306.39 534.148h17.389v13.999H306.39Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M289.001 534.148h17.389v13.999h-17.389Z" style="fill:#595959"/>
|
||||||
|
<path d="M289.001 534.148h17.389v13.999h-17.389Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M282.477 378.16h13.042v23.998h-13.042Z" style="fill:#595959"/>
|
||||||
|
<path d="M282.477 378.16h13.042v23.998h-13.042Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M334.646 492.149h26.084v23.998h-26.084Z" style="fill:#ccc"/>
|
||||||
|
<path d="M360.73 492.149v23.998h-26.084v-23.998Zm-3.261 2.999h-19.563v17.999h19.563Z" style="fill:#0d79f2"/>
|
||||||
|
<path d="M334.646 492.149h26.084v23.998h-26.084Z" style="fill:none;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M70.5486 534.147h26.0837v23.998H70.5486Z" style="fill:#ccc"/>
|
||||||
|
<path d="M96.6323 534.147v23.998H70.5486v-23.998Zm-3.2604 3.005H73.8091v17.988h19.5628Z" style="fill:#2c8217"/>
|
||||||
|
<path d="M96.6323 534.147v23.998H70.5486v-23.998Zm-1.0864 1.001H71.6351v21.995h23.9108Z"/>
|
||||||
|
<path d="M266.175 360.165h32.604v17.998h-32.604Zm78.251 0h32.604v17.998h-32.604ZM158.581 54.1877h19.563v29.9976h-19.563Z" style="fill:#ccc;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M406.376 522.149h39.126v11.999H360.73v-17.999h45.646Z" style="fill:#6b4848"/>
|
||||||
|
<path d="M406.376 522.149h39.126v11.999H360.73v-17.999h45.646Zm-1.087 10.999h39.126v-9.999h-39.126v-6h-43.473v15.999Z"/>
|
||||||
|
<path d="M243.353 258.17h51.081v11.999h-51.081v47.996h51.081v11.999h-51.081v47.996h-13.042v-47.996h-13.042v-11.999h13.042v-47.996h-13.042V258.17h13.042v-41.996h13.042Z" style="fill:#6b6348;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M184.665 204.174v-59.995h13.042v83.993h-32.605v-23.998Z" style="fill:#435570"/>
|
||||||
|
<path d="M184.665 204.174v-59.995h13.042v83.993h-32.605v-23.998Zm11.955 2v-60.995h-10.869v59.995h-19.562v21.998h30.431Z"/>
|
||||||
|
<path d="M239.007 49.1874h17.389v7.9994h-17.389Zm0 39.9965h17.389v7.9994h-17.389Z" style="fill:#ccc"/>
|
||||||
|
<path d="M295.519 54.1864h52.167V84.184h-52.167Z" style="fill:#595959"/>
|
||||||
|
<path d="M347.686 54.1864V84.184h-52.167V54.1864Zm-1.087.9999h-49.993v27.9978h49.993Z"/>
|
||||||
|
<path d="M471.585 132.18v11.999H321.604v-23.998h26.084V90.1835H295.52v5.9995h6.521v17.999h-6.521v5.999h26.084v23.998H171.623v-23.998h39.125V84.184h-32.604V72.1849h45.646v47.9961h45.647V40.1875h-15.216 14.129v7.9994h-23.91v-4.9996h-1.087v4.9996H223.79V30.1883h45.647v-5.9995h52.167v29.9976H295.52V84.184h52.168V54.1864h-26.084V24.1888h52.167v95.9922h39.126V96.183h84.772v35.997Zm0-23.998h-32.604v23.998h32.604Z" style="fill:#435570"/>
|
||||||
|
<path d="M471.585 144.179H171.623v-23.998h39.125V84.184h-32.604V72.1849h45.646v47.9961h45.647V40.1875h-1.087v7.9994h-23.91v-4.9996h-1.087v4.9996H223.79V30.1883h45.647v-5.9995h104.334v95.9922h39.126V96.183h84.772v35.997h-26.084v-23.998h-32.604v23.998h32.604ZM254.221 41.1874v-1.9998h16.302v81.9934h-47.82V73.1849h-43.472v9.9992h32.604v37.9969H172.71v21.998h147.807v-21.998h-26.083v-7.999h6.52V97.1829h-6.52v-7.9993h54.341v31.9974h-26.084v21.998h147.807v-9.999h-32.604v-25.998h34.778v23.998h23.91V97.1829h-82.598v23.9981h-41.299V25.1887h-49.994v27.9978h26.084v31.9974h-54.341V53.1865h26.083V25.1887h-49.994v5.9996h-45.646V47.187h17.389v-4.9996h3.261v4.9996h21.736v-5.9996Zm93.467 12.999H295.52V84.184h52.168ZM295.52 120.181h52.168V90.1835H295.52v5.9995h6.521v17.999h-6.521Z"/>
|
||||||
|
<path d="M394.421 348.163v59.997h6.521v11.997h-6.521v41.997h6.521v11.997h-6.521v41.998h-13.042V360.162h-32.604v-11.999Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M394.421 348.163v59.997h6.521v11.997h-6.521v41.997h6.521v11.997h-6.521v41.998h-13.042V360.162h-32.604v-11.999Zm-1.087 1h-43.473v9.999h32.605v155.987h10.868v-41.998h6.521v-9.997h-6.521v-43.997h6.521v-9.997h-6.521Z"/>
|
||||||
|
<path d="M230.311 378.16h52.167v77.994h-52.167v-11.999h32.605V390.16h-32.605Z" style="fill:#4c3333;stroke:#000;stroke-width:2"/>
|
||||||
|
<path d="M466.151 366.161h31.518v11.999H394.421v-11.999h58.688v-5.999h13.042Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M466.151 366.161h31.518v11.999H394.421v-11.999h58.688v-5.999h13.042Zm-1.087 0v-4.999h-10.868v5.999h-58.688v10h101.074v-10h-31.518Z"/>
|
||||||
|
<path d="M423.765 300.167h24.997v23.998h23.91v35.997h-26.084v-23.998h-24.997v-23.998h-53.254v-41.997h55.428Z" style="fill:#595959"/>
|
||||||
|
<path d="M423.765 300.167h24.997v23.998h23.91v35.997h-26.084v-23.998h-24.997v-23.998h-53.254v-41.997h55.428Zm-1.087 0v-28.998h-53.254v39.997h53.254v23.998h24.997v23.998h23.91v-33.997h-23.91v-23.998h-24.997Z"/>
|
||||||
|
<path d="M454.196 258.17h43.473v11.999h-56.515v-35.997h13.042Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M454.196 258.17h43.473v11.999h-56.515v-35.997h13.042Zm-1.087 0v-22.998h-10.868v33.997h54.341v-9.999h-43.473Z"/>
|
||||||
|
<path d="M530.274 414.158h-19.563" style="fill:none;stroke:#000;stroke-width:1"/>
|
||||||
|
<path d="M510.711 210.174v-80.993h-13.042v-17.999h32.605v98.992Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M510.711 210.174v-80.993h-13.042v-17.999h32.605v98.992Zm1.087-1h17.389v-96.992h-30.431v15.999h13.042Z"/>
|
||||||
|
<path d="M530.274 210.174v107.991h-19.563v-44.996h-13.042V255.17h13.042v-44.996Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M530.274 210.174v107.991h-19.563v-44.996h-13.042V255.17h13.042v-44.996Zm-1.087 1h-17.389v44.996h-13.042v15.999h13.042v44.996h17.389Z"/>
|
||||||
|
<path d="M559.618 462.154c-46.722 0-48.907-28.358-48.907-47.996V381.16h-13.042v-17.998h13.042v-44.997h19.563v95.993c0 22.292 11.828 29.997 29.344 29.997v-11.999h45.646v11.999H579.18v17.999h26.084v11.999h-45.646Z" style="fill:#6b6348"/>
|
||||||
|
<path d="M559.618 462.154c-46.722 0-48.907-28.358-48.907-47.996V381.16h-13.042v-17.998h13.042v-44.997h19.563v95.993c0 22.292 11.828 29.997 29.344 29.997v-11.999h45.646v11.999H579.18v17.999h26.084v11.999h-45.646Zm1.086 10.999h43.473v-9.999h-26.083v-19.999h26.083v-9.999h-43.473v11.999h-1.086c-9.081 0-16.671-2.044-22.007-6.93-5.307-4.86-8.424-12.573-8.424-24.067v-94.993h-17.389v44.997h-13.042v15.998h13.042v33.998c0 11.551.686 26.201 11.197 36.057 6.995 6.558 18.333 10.939 36.623 10.939h1.086Z"/>
|
||||||
|
<path d="M452.022 108.182h19.563v23.998h-19.563Z" style="fill:#ccc"/>
|
||||||
|
<path d="M471.585 108.182v23.998h-19.563v-23.998Zm-1.087 1h-17.389v21.999h17.389Z"/>
|
||||||
|
<path d="M344.427 144.179v204.984m-45.646-204.984v213.983" style="fill:none;stroke:#333;stroke-dasharray:3.99,2,0,0;stroke-opacity:.6;stroke-width:4.169616113370807"/>
|
||||||
|
<path d="M347.688 359.162h-24.997v-57.995h-2.174v57.995h-18.476v-29.998h-6.521v-9.999h6.521v-49.996h-6.521v-9.999h6.521V143.179h18.476v80.994h2.174v-80.994h18.476V259.17h6.521v9.999h-6.521v79.994h6.521Zm-24.997-71.994v-48.996h-2.174v48.996Z" style="fill:#595959"/>
|
||||||
|
</g>
|
||||||
|
<g id="Arrows" style="display:inline">
|
||||||
|
<path d="m461.803 115.181 7.608 9.999h-15.215z" style="fill:#0bb300"/>
|
||||||
|
<path d="m461.803 115.181 7.608 9.999h-15.215zm0 1.744-5.52 7.255h11.041z"/>
|
||||||
|
<path d="m168.362 64.1853 7.608 9.9992h-15.216z" style="fill:#0bb300"/>
|
||||||
|
<path d="m168.362 64.1853 7.608 9.9992h-15.216zm0 1.7437-5.52 7.2556h11.04z"/>
|
||||||
|
<path d="m83.59 541.145 7.6079 9.999H75.9825Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m83.59 541.145 7.6079 9.999H75.9825Zm0 1.743-5.5203 7.256h11.0407z"/>
|
||||||
|
<path d="m347.687 499.148 7.608 9.999H340.08Z" style="fill:#0bb300"/>
|
||||||
|
<path d="m347.687 499.148 7.608 9.999H340.08Zm0 1.744-5.52 7.255h11.041z"/>
|
||||||
|
<path d="m282.478 364.161 7.608 9.999h-15.215z" style="fill:#0bb300"/>
|
||||||
|
<path d="m282.478 364.161 7.608 9.999h-15.215zm0 1.744-5.52 7.255h11.04z"/>
|
||||||
|
<path d="m360.729 364.161 7.608 9.999h-15.215z" style="fill:#0bb300"/>
|
||||||
|
<path d="m360.729 364.161 7.608 9.999h-15.215zm0 1.744-5.52 7.255h11.04z"/>
|
||||||
|
<path d="m247.7 47.1867 7.608 9.9991h-15.216z" style="fill:#0bb300"/>
|
||||||
|
<path d="m247.7 47.1867 7.608 9.9991h-15.216zm0 1.7437-5.52 7.2556h11.04z"/>
|
||||||
|
<path d="m247.7 87.1834 7.608 9.9992h-15.216z" style="fill:#0bb300"/>
|
||||||
|
<path d="m247.7 87.1834 7.608 9.9992h-15.216zm0 1.7437-5.52 7.2556h11.04z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Doors" style="display:inline">
|
||||||
|
<path d="M181.404 454.154h13.042v3.999h-13.042zm14.129 76.993v-11.999h4.347v11.999zm-19.563 0v-11.999h4.347v11.999zm-84.7718 0v-11.999h4.3472v11.999zm267.3578 0v-11.999h4.347v11.999zm33.691-152.987v-11.999h4.348v11.999zm60.862-19.998h13.042v3.999h-13.042zm-76.077-89.993h13.042v4h-13.042zm64.122-35.997h13.042v3.999h-13.042zm14.129-101.992h13.042v4h-13.042zm-135.853 7.999V126.18h4.348v11.999zm-149.981 0V126.18h4.347v11.999zM79.243 532.147h8.6946v4H79.243Zm16.3023-85.993v8h-4.3472v-8zm32.6047 0v8h-4.347v-8zm32.605 0v8h-4.348v-8zm71.73 0v8h-4.348v-8zm31.517 56.994v7.999h-4.347v-7.999zm-18.476 10.999h8.695v4h-8.695zm65.21 18h8.694v4h-8.694zm-43.473-77.993h8.694v3.999h-8.694zm-34.778-77.994h8.694v4h-8.694zM343.34 514.147h8.695v4h-8.695zm40.213 0h8.694v4h-8.694zm46.733 5.999h8.694v4h-8.694zM300.954 365.161v7.999h-4.347v-7.999zm45.647 0v7.999h-4.348v-7.999zm-40.213-6.999h8.695v3.999h-8.695zm209.757-149.988h8.694v3.999h-8.694zm0 107.991h8.694v4h-8.694zm-16.303 51.996v7.999h-4.347v-7.999zm-148.894-17.999v7.999h-4.347v-7.999zm-54.341-29.997v7.999h-4.347v-7.999zm0-59.996v8h-4.347v-8zm54.341 0v8h-4.347v-8zm-118.463-41.975v7.999h-4.348v-7.999zm-32.605-.021v7.999h-4.347v-7.999zm-32.605-9.999v7.999h-4.347v-7.999zm19.563-65.995h8.695v4h-8.695zm-76.077 0h8.694v4h-8.694zm32.604 59.995h8.695v4h-8.695zm36.952-127.9895v7.9993h-4.347v-7.9993zm47.82-27.9977h8.695v3.9997h-8.695zm72.817 5.9995h8.695v3.9997h-8.695zm32.605 0h8.694v3.9997h-8.694zm15.215-29.9975h8.695v3.9997h-8.695zM484.627 130.18h8.694v4h-8.694zm-8.695 47.996h8.695v4h-8.695zm23.91-61.995v7.999h-4.347v-7.999zm0 143.988v8h-4.347v-8zm-56.514 0v8h-4.348v-8z" style="fill:#8c737c"/>
|
||||||
|
<path d="M323.778 33.1875v11.999h-4.347v-11.999z" style="fill:red"/>
|
||||||
|
<path d="M284.652 390.159v7.999h-4.347v-7.999zm8.695 141.986h8.694v4h-8.694z" style="fill:#f30000"/>
|
||||||
|
</g>
|
||||||
|
<g id="Details" style="display:inline">
|
||||||
|
<path d="M281.391 468.152h19.563v8.999h-19.563z" style="fill:#337bcc"/>
|
||||||
|
<path d="M449.85 190.179h26.084v11.999H449.85Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M281.391 483.151h19.563v8.999h-19.563z" style="fill:#337bcc"/>
|
||||||
|
<path d="M449.85 212.177h26.084v11.999H449.85Z" style="fill:#337bcc"/>
|
||||||
|
<path d="M236.831 61.1866h19.563v9.9992h-19.563z" style="fill:#337bcc"/>
|
||||||
|
<path d="M236.831 75.1852h19.563v9.9992h-19.563z" style="fill:#337bcc"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 52 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
|
@ -0,0 +1,438 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Labyrinth",
|
||||||
|
"Author": "acidphantasm",
|
||||||
|
"AuthorLink": "https://github.com/acidphantasm/SPT-DynamicMaps/",
|
||||||
|
"MapInternalNames": [ "Labyrinth" ],
|
||||||
|
"CoordinateRotation": 90,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {
|
||||||
|
"x": -52.5,
|
||||||
|
"y": -36.5
|
||||||
|
},
|
||||||
|
"Max": {
|
||||||
|
"x": 50.7,
|
||||||
|
"y": 75.3
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Ground Level": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Labyrinth/Layers/labyrinth_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {
|
||||||
|
"x": -52.5,
|
||||||
|
"y": -36.5
|
||||||
|
},
|
||||||
|
"Max": {
|
||||||
|
"x": 50.7,
|
||||||
|
"y": 75.3
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {
|
||||||
|
"x": -52.5,
|
||||||
|
"y": -36.5,
|
||||||
|
"z": -100
|
||||||
|
},
|
||||||
|
"Max": {
|
||||||
|
"x": 50.7,
|
||||||
|
"y": 75.3,
|
||||||
|
"z": -1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "The Way Up",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -7.31,
|
||||||
|
"y": 40.127,
|
||||||
|
"z": -0.0119999647
|
||||||
|
},
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.460784316,
|
||||||
|
"b": 0.007843138,
|
||||||
|
"a": 1.0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Ariadne's Path",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 19.443,
|
||||||
|
"y": 0.495,
|
||||||
|
"z": 1.07
|
||||||
|
},
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.460784316,
|
||||||
|
"b": 0.007843138,
|
||||||
|
"a": 1.0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Alarm Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -4.279,
|
||||||
|
"y": 55.87111,
|
||||||
|
"z": 1.51507258
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Alarm Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 1.05600023,
|
||||||
|
"y": 7.16910934,
|
||||||
|
"z": 1.50388885
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Alarm Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -13.3701,
|
||||||
|
"y": 36.08191,
|
||||||
|
"z": 1.63888884
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Alarm Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 8.937,
|
||||||
|
"y": 28.68511,
|
||||||
|
"z": 1.54792
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Fire Trap Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -43.587,
|
||||||
|
"y": -10.9208889,
|
||||||
|
"z": 1.56588888
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Alarm Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -9.011,
|
||||||
|
"y": 1.57610893,
|
||||||
|
"z": 1.66788888
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Toxic Pool Trap Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -31.7254715,
|
||||||
|
"y": 58.2143,
|
||||||
|
"z": 2.08068
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Shotgun Trap Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 25.4025669,
|
||||||
|
"y": 59.453,
|
||||||
|
"z": 1.37
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Toxic Puddle Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 46.42,
|
||||||
|
"y": 11.084,
|
||||||
|
"z": 1.031
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Steam Trap Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 2.659,
|
||||||
|
"y": -31.705,
|
||||||
|
"z": 2.109861
|
||||||
|
},
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Key 1",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -31.014473,
|
||||||
|
"y": 58.9146423,
|
||||||
|
"z": 1.75901747
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679baa2c61f588ae2b062a24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Key 2",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -2.48107839,
|
||||||
|
"y": -34.2012634,
|
||||||
|
"z": 2.29478168
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679baa4f59b8961f370dd683"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Key 3",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -30.080019,
|
||||||
|
"y": -15.5193338,
|
||||||
|
"z": 2.01908755
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679baa5a59b8961f370dd685"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Key 4",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 17.1429634,
|
||||||
|
"y": 62.8580856,
|
||||||
|
"z": 1.1481005
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679baa9091966fe40408f149"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Corpse Room Key",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 9.654029,
|
||||||
|
"y": -11.1337557,
|
||||||
|
"z": 1.2547729
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679bab714e9ca6b3d80586b4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Torture Room Key",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 17.53276,
|
||||||
|
"y": 6.93186951,
|
||||||
|
"z": 1.25286007
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679baae891966fe40408f14c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Labyrinth Key",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -10.399806,
|
||||||
|
"y": 39.65776,
|
||||||
|
"z": 1.24885988
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679bac1d61f588ae2b062a26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Observation Room Key",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 9.36803,
|
||||||
|
"y": 7.66224,
|
||||||
|
"z": 1.26510465
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "679baace4e9ca6b3d80586b2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Blowtorch",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 40.1832,
|
||||||
|
"y": 19.1903,
|
||||||
|
"z": 0.298618853
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "67ab3d4b83869afd170fdd3f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Blowtorch",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": -49.34948,
|
||||||
|
"y": -11.756073,
|
||||||
|
"z": 1.70373631
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "67ab3d4b83869afd170fdd3f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Valve Handwheel",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": {
|
||||||
|
"x": 2.659,
|
||||||
|
"y": -31.705,
|
||||||
|
"z": 2.109861
|
||||||
|
},
|
||||||
|
"Sprite": null,
|
||||||
|
"ShowInRaid": true,
|
||||||
|
"Category": "Locked Door",
|
||||||
|
"Color": {
|
||||||
|
"r": 1.0,
|
||||||
|
"g": 0.921568632,
|
||||||
|
"b": 0.0156862754,
|
||||||
|
"a": 1.0
|
||||||
|
},
|
||||||
|
"Pivot": {
|
||||||
|
"x": 0.5,
|
||||||
|
"y": 0.5
|
||||||
|
},
|
||||||
|
"AssociatedItemId": "678fa929819ddc4c350c0317"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 165 KiB |
|
After Width: | Height: | Size: 457 KiB |
|
|
@ -0,0 +1,392 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Lighthouse (TarkovData)",
|
||||||
|
"Author": "Shebuka",
|
||||||
|
"AuthorLink": "https://github.com/TarkovTracker/tarkovdata/",
|
||||||
|
"MapInternalNames": [ "Lighthouse" ],
|
||||||
|
"CoordinateRotation": 180,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -545, "y": -998},
|
||||||
|
"Max": {"x": 512, "y": 721}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Ground Floor": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Lighthouse_TarkovData/Layers/lighthouse_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -545, "y": -998},
|
||||||
|
"Max": {"x": 512, "y": 721}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -545, "y": -998, "z": -100},
|
||||||
|
"Max": {"x": 512, "y": 721, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
{
|
||||||
|
"Text": "Train Yard",
|
||||||
|
"Position": {"x": -30, "y": -882, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Drug Lab",
|
||||||
|
"Position": {"x": -120, "y": -841, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Water Treatment",
|
||||||
|
"Position": {"x": -65, "y": -600, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Plant 1",
|
||||||
|
"Position": {"x": 40, "y": -618, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Plant 2",
|
||||||
|
"Position": {"x": -98, "y": -742, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Plant 3",
|
||||||
|
"Position": {"x": -189, "y": -665, "z": 0},
|
||||||
|
"FontSize": 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Pipes",
|
||||||
|
"Position": {"x": -182, "y": -552, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gunner Nest",
|
||||||
|
"Position": {"x": 18, "y": -453, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Island",
|
||||||
|
"Position": {"x": -177, "y": -356, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cabins",
|
||||||
|
"Position": {"x": -278, "y": -323, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cottages",
|
||||||
|
"Position": {"x": -162, "y": -225, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Convenience",
|
||||||
|
"Position": {"x": -55, "y": -288, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Red Brick",
|
||||||
|
"Position": {"x": -75, "y": -284, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Hillside",
|
||||||
|
"Position": {"x": -147, "y": -247, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Boathouses",
|
||||||
|
"Position": {"x": 125, "y": -153, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dead Tree",
|
||||||
|
"Position": {"x": 62, "y": -60, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Construction",
|
||||||
|
"Position": {"x": 0, "y": -188, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Pikes Peak Resort",
|
||||||
|
"Position": {"x": -107, "y": -53, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Grand Chalet",
|
||||||
|
"Position": {"x": -133, "y": 100, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tennis Court",
|
||||||
|
"Position": {"x": -70, "y": 129, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Lightkeeper Island",
|
||||||
|
"Position": {"x": 382, "y": 496, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Crash Site",
|
||||||
|
"Position": {"x": -125, "y": 296, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Side Tunnel (Co-Op)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -68.3, "y": 318.11, "z": 6.83 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Southern Road Landslide",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -281.3, "y": 420.8, "z": 11.86 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Hideout Under the Landing Stage",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 133.068, "y": 286.842, "z": -0.467 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Hideout at the Grotto",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 180.66, "y": -485.94, "z": 1.18 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Industrial Zone Gates",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -152.56, "y": -794.1, "z": 12.25 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Road to Military Base V-Ex",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -328.951263, "y": -784.3581, "z": 16.73 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Mountain Pass",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -172.35, "y": -6.39, "z": 41.89 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Path to Shoreline",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -364.4, "y": -121.4, "z": 28.758 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Northern Checkpoint",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 111.943, "y": -991.981, "z": 11.86 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Southern Road",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -295.8, "y": 420.6, "z": 11.86 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Armored Train",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 6.27001953, "y": -873.78, "z": 14.1133 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Shoreline",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": -338.6, "y": -168.9, "z": 17.5 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Reserve",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": -294.6, "y": -780.1, "z": 15.2591143 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Woods",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 106.3, "y": -958.1, "z": 6.74 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Passage by the Lake (Secret)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -360.0, "y": -564.87, "z": 27.19 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 }
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// "Text": "OuterSwitcher",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": 445.3035, "y": 457.5599, "z": 33.391 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "Text": "InnerSwitcher",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": 444.6317, "y": 457.6145, "z": 33.391 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "Text": "railing_door 1",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": 445.426117, "y": 458.187561, "z": 32.1270027 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"Text": "Convenience Store Storage Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -58.5892944, "y": -292.9962, "z": 6.55390024 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "61a64428a8c6aa1b795f0ba1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Shared Bedroom",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 328.6411, "y": 487.244019, "z": 6.041643 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "62987dfc402c7f69bf010923"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Conference Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 333.8, "y": 519.1168, "z": 6.0705 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "62987cb98081af308d7558c8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Merin Trunk",
|
||||||
|
"ImagePath": "Markers/car_door.png",
|
||||||
|
"Position": { "x": 91.1099854, "y": -130.918991, "z": 8.382999 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "61aa5b518f5e7a39b41416e2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Radar Station Commandant Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 355.204, "y": 549.386963, "z": 16.545002 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "62987c658081af308d7558c6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Hillside House",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -147.043427, "y": -243.326172, "z": 12.66918 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "61a6444b8c141d68246e2d2f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Operating Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 32.899, "y": -636.186, "z": 5.93999767 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "62987da96188c076bc0d8c51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Water Treatment Plant Storage Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -120.901962, "y": -736.4641, "z": 5.938982 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "62987e26a77ec735f90a2995"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Rogue USEC Barrack",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -176.519043, "y": -654.164063, "z": 5.939995 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "62a9cb937377a65d7b070cef"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Police Car",
|
||||||
|
"ImagePath": "Markers/car_door.png",
|
||||||
|
"Position": { "x": 83.79875, "y": -553.2562, "z": 6.61099958 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "61aa5aed32a4743c3453d319"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Rogue USEC Workshop",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -168.6745, "y": -497.287079, "z": 5.798998 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "61aa81fcb225ac1ead7957c3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Rogue USEC Stash",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 47.3759, "y": -553.3956, "z": 5.67344 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "61a64492ba05ef10d62adcc1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Leon's hideout",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -74.92, "y": -291.20, "z": 9.05 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "664d3de85f2355673b09aed5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "USEC cottage room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -110.72, "y": -14.23, "z": 20.9 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "66265d7be65f224b2e17c6aa"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" id="svg1" version="1.1" viewBox="0 0 827.28742 761.16437">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<style id="style_reserve">
|
||||||
|
.misc { fill:gray }
|
||||||
|
.chopper { fill:#000 }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<g id="Bunkers" class="floor shadow">
|
||||||
|
<path d="m584.7847 335.84445 57.725 15.694-3.276 11.809 10.3 2.781-6.706 24.665-10.758-2.925-11.057 40.671 6.297 1.712-.285 1.049 1.838.499 2.639-9.708 22.041 5.992-18.476 67.96-22.041-5.992 2.425-8.921-2.099-.571-.214.786-4.198-1.141-.357 1.313-4.986-1.356-1.783 6.56-4.46-1.213 1.783-6.559-4.723-1.285.214-.787-21.254-5.778-.999 3.674-6.559-1.784-1.631 4.341-1.227-.046-.999 3.674 22.827 6.205-.922 4.453 5.664 1.455-1.203 4.917-5.51-1.498-1.427 5.248-1.574-.428-1.141 4.198-1.313-.357-.998 3.674 8.658 2.354-5.706 20.991-67.697-18.404 5.707-20.991 9.708 2.639 1.141-4.198-.787-.214 1.07-3.936-1.05-.285 1.284-4.724-13.906-3.78-5.422 19.942-3.411-.928-4.208 15.482-6.823-1.855-3.905 7.109 49.605 29.666-7.522 13.351-1.387-.956-11.214 20.277 58.723 37.082-4.987 8.934-18.263-11.35 2.873-4.454-7.942-5.057-2.386 3.659-13.656-8.006-2.66 4.125-12.143-7.52 1.953-3.15-5.139-3.191 2.586-4.076-1.151-.767-11.314 17.777 10.88 6.621-4.382 7.383-2.691-1.602-2.842 4.3-8.396-4.915-5.736 9.726 1.465 3.766-.126 4.756-1.356 3.858-2.176 2.79-.947 3.484-2.019.294-5.809-.309-1.658-3.993-3.107-3.444-3.169-1.08-6.182.233-.164 4.746-3.968.035-.329-5.994-16.652.398-.341 4.079-11.673-.164.211-9.512 9.898.149 1.96.8 28.702-1.487 3.828-4.017 4.155-2.266 5.747-9.416-3.679-2.181-1.635 2.229-9.463-6.069 5.115-7.869 7.252 4.341-.891 1.259 5.968 3.662 9.717-17.085-40.876-24.587 7.325-11.404 10.287 5.916 2.804-3.931 33.351 19.759 11.693-20.209-43.611-25.869 5.401-8.753-4.434-3.031 7.998-14.24 3.959 1 2.283-8.396.24-3.598 4.229-14.912-2.624-.714 1.213-4.461.787.214.998-3.672-.787-.214 10.843-39.885-11.02-2.996-1.284 4.724-23.091-6.278 5.707-20.991 23.091 6.278-2.568 9.445 11.282 3.067 2.497-9.183-2.099-.571 1.783-6.559 2.109.57 4.77-17.58-4.199-1.142 2.069-7.608 4.198 1.141 1.998-7.347-28.864-7.847 3.995-14.694-33.586-9.131 5.85-21.516 49.329 13.411-5.849 21.516-9.184-2.496-1.854 6.821 32.012 8.703-4.138 15.219 3.149.856 1.498-5.511 11.545 3.139-1.498 5.511 29.462 8.026 5.989-22.34-36.473-9.915 9.06-33.325 24.615 6.644zm42.3 50.669-34.374-9.345-6.063 22.303 34.373 9.345zm-85.8 8.797-9.446-2.568-4.709 17.318 1.312.357 3.709-13.645 7.085 1.926-3.781 13.907-.787-.214-4.494 16.53 2.361.642 7.208-26.51 7.418 1.966.069-.484-7.871-2.14zm49.854 13.554-36.997-10.059-1.926 7.085-2.106-.562-.137.516 39.097 10.629zm23.09 6.277-16.792-4.565-2.925 10.758 10.495 2.853-.214.787 3.674.999.214-.787 2.623.713zm13.421 21.119-1.313-.356-.214.787-4.985-1.355-10.486 38.571 4.198 1.141-.286 1.05 2.1.571zm-22.179.734-5.773-1.57-7.49 27.551-14.694-3.994-.428 1.574-6.297-1.712-1.07 3.936 26.501 7.204zm-47.899 16.565-38.572-10.486-8.132 29.913 18.892 5.136 1.498-5.511 21.255 5.778 2.425-8.921 3.673.999 3.781-13.907-5.248-1.426zm15.682 45.968-38.572-10.486-.999 3.673-1.05-.285-1.141 4.198 40.671 11.057.665-3.483-.786-.214z"/>
|
||||||
|
<path d="m316.3777 110.42845 65.073 17.691-33.385 122.801 17.65792 4.77226-9.41987 34.30817-16.006-4.352 6.92287-25.12417 8.659 2.354.285-1.05-11.35992-3.06026-8.703 32.012-15.219-4.137-8.916 32.798-33.061-8.988 8.916-32.798-15.481-4.209 11.77-43.295-30.438-8.275-.285 1.049 7.61 2.069-5.85 21.516-14.168-3.852-3.424 12.595 9.97 2.71-1.356 4.986-14.694-3.994 10.629-39.097 5.248 1.426.285-1.048-14.694-3.995 2.141-7.872 50.833 14.101z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 487 KiB |
|
|
@ -0,0 +1,603 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Reserve (TarkovData)",
|
||||||
|
"Author": "Shebuka",
|
||||||
|
"AuthorLink": "https://github.com/TarkovTracker/tarkovdata/",
|
||||||
|
"MapInternalNames": [ "RezervBase" ],
|
||||||
|
"CoordinateRotation": 180,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -303.5, "y": -275},
|
||||||
|
"Max": {"x": 292, "y": 271.5}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Bunkers": {
|
||||||
|
"Level": -1,
|
||||||
|
"ImagePath": "Maps/Reserve_TarkovData/Layers/reserve_layer_-1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -303.5, "y": -275},
|
||||||
|
"Max": {"x": 292, "y": 271.5}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -303.5, "y": -275, "z": -100},
|
||||||
|
"Max": {"x": 292, "y": 271.5, "z": -8}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Ground Level": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Reserve_TarkovData/Layers/reserve_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -303.5, "y": -275},
|
||||||
|
"Max": {"x": 292, "y": 271.5}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -303.5, "y": -275, "z": -8},
|
||||||
|
"Max": {"x": 292, "y": 271.5, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
{
|
||||||
|
"Text": "K Buildings",
|
||||||
|
"Position": {"x": 31, "y": -104, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "White Queen",
|
||||||
|
"Position": {"x": -25, "y": 180, "z": 0},
|
||||||
|
"FontSize": 12
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "White Pawn",
|
||||||
|
"Position": {"x": -104, "y": 93, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Black Bishop",
|
||||||
|
"Position": {"x": -140, "y": -14.5, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "White Bishop",
|
||||||
|
"Position": {"x": -67, "y": -30, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "White King",
|
||||||
|
"Position": {"x": -49.5, "y": 15.5, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Black Knight",
|
||||||
|
"Position": {"x": 14.5, "y": -10.8, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "White Knight",
|
||||||
|
"Position": {"x": 82.2, "y": -30.2, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "White Rook",
|
||||||
|
"Position": {"x": 149, "y": -124, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Train Station",
|
||||||
|
"Position": {"x": 161, "y": -149, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Black Pawn",
|
||||||
|
"Position": {"x": -165, "y": 57, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Barracks",
|
||||||
|
"Position": {"x": 165, "y": -215, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "E1 Bunkers",
|
||||||
|
"Position": {"x": -220, "y": -13, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "E2 Bunkers",
|
||||||
|
"Position": {"x": 173, "y": -3, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "д - Warehouse Bunkers",
|
||||||
|
"Position": {"x": 82, "y": -170, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Garage",
|
||||||
|
"Position": {"x": 98.5, "y": 29.5, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Mechanic",
|
||||||
|
"Position": {"x": 55.5, "y": 60.6, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gas Station",
|
||||||
|
"Position": {"x": 29.7, "y": 29.5, "z": 0},
|
||||||
|
"FontSize": 14,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Shipping Yard",
|
||||||
|
"Position": {"x": -31, "y": -150, "z": 0},
|
||||||
|
"FontSize": 16,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "K1",
|
||||||
|
"Position": {"x": 8, "y": -76, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "K2",
|
||||||
|
"Position": {"x": 65.5, "y": -92, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "K3",
|
||||||
|
"Position": {"x": 2, "y": -96.5, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "K4",
|
||||||
|
"Position": {"x": 60, "y": -112, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "K5",
|
||||||
|
"Position": {"x": -4, "y": -118, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "K6",
|
||||||
|
"Position": {"x": 54, "y": -133, "z": 0},
|
||||||
|
"FontSize": 12,
|
||||||
|
"DegreesRotation": 14.5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Dome",
|
||||||
|
"Position": {"x": -8.5, "y": 175, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tarmac",
|
||||||
|
"Position": {"x": -120, "y": 37, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Scav Lands (Co-Op)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -124.67, "y": -144.92, "z": -3.28 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Hole in the Wall by the Mountains",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -261.41, "y": 47.95, "z": -6.033997 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Heating Pipe",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -37.08, "y": -184.0, "z": -5.15 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Depot Hermetic Door",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 120.78, "y": -120.352, "z": -10.27 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Checkpoint Fence",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 61.97, "y": 134.31, "z": -4.43 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "D-2",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -121.479065, "y": 172.24913, "z": -17.0010071 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Bunker Hermetic Door",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 61.9206619, "y": -190.541931, "z": -5.257 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cliff Descent",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -12.8, "y": 206.78, "z": 20.93 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Sewer Manhole",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 40.18, "y": 76.45, "z": -5.12 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Armored Train",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 144.986, "y": -147.352, "z": -3.92 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Customs",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": -196.729477, "y": -117.808853, "z": -4.544204 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Woods",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 216.860535, "y": -201.048859, "z": -6.344204 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Lighthouse",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 238.800537, "y": -128.048859, "z": -6.25420427 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Exit to Woods",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 36.53, "y": -221.56, "z": -5.97000027 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Bunker Hermetic Door Power",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -60.7597275, "y": 78.22821, "z": -5.55217171 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "D-2 Power Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -117.184174, "y": 22.6676826, "z": -12.954 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
// { // near bunker hermetic door
|
||||||
|
// "Text": "Reset",
|
||||||
|
// "ImagePath": "Markers/lever.png",
|
||||||
|
// "Position": { "x": 65.71171, "y": -190.604248, "z": -6.683 },
|
||||||
|
// "Category": "Switch"
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
"Text": "D-2 Open Switch",
|
||||||
|
"ImagePath": "Markers/lever.png",
|
||||||
|
"Position": { "x": -117.449867, "y": 168.546936, "z": -16.9842987 },
|
||||||
|
"Category": "Switch"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-AO",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 194.756973, "y": -203.553268, "z": -5.801999 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c66d86f774405611c7d6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-VO Marked Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 189.6508, "y": -224.790009, "z": -5.8030014 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c62a86f7744036212b3f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-KPRL",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -40.4498749, "y": 173.891434, "z": 19.66215 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d8e0e0e86f774321140eb56"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-KPRL",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -44.2896843, "y": 171.655853, "z": 19.6481476 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d8e0e0e86f774321140eb56"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-ST",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 100.7764, "y": 43.67282, "z": -6.714003 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d9f1fa686f774726974a992"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-SMP",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -78.7131653, "y": -29.4600983, "z": -3.78035355 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d947d3886f774447b415893"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-KSM",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -60.01116, "y": -34.5081, "z": -3.78035355 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d947d4e86f774447b415895"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PSP1",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 71.1095, "y": -146.997528, "z": -11.128006 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80cb3886f77440556dbf09"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PSP2",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 83.5344238, "y": -100.622009, "z": -11.1000061 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d95d6fa86f77424484aa5e9"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PSV2",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 42.9962158, "y": -114.069916, "z": -11.1259995 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d95d6be86f77424444eb3a7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PSV1",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 50.81842, "y": -91.86203, "z": -11.1000061 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80cb5686f77440545d1286"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PSP1",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 80.91522, "y": -124.236908, "z": -11.128006 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80cb3886f77440556dbf09"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PSV2",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 38.3938, "y": -138.232147, "z": -11.128006 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d95d6be86f77424444eb3a7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-AK",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -134.622513, "y": -12.8279257, "z": -2.13919544 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c78786f774403a401e3e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-AM",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -133.289352, "y": -16.0929947, "z": -5.13899755 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c88d86f77440556dbf07"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-TB",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -162.7683, "y": 65.7317047, "z": -8.171001 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c6fc86f774403a401e3c"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-ORB2",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -123.018578, "y": 98.53613, "z": -2.36699772 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80ccdd86f77474f7575e02"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-OB",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -167.807968, "y": 34.4820557, "z": 0.525999069 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c6c586f77440351beef1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-ORB3",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -170.236115, "y": 33.9814758, "z": -2.36400938 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80cd1a86f77402aa362f42"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-ORB1",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -122.855316, "y": 97.5226746, "z": 3.43500519 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80ccac86f77470841ff452"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-BK Marked Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -157.878387, "y": 72.86379, "z": -8.188297 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c60f86f77440373c4ece"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-RH",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -51.4290428, "y": 19.6974564, "z": 0.3399992 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5da5cdcd86f774529238fb9b"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-OP",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -68.47772, "y": 22.4145622, "z": -9.729001 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c8f586f77440373c4ed0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-GN",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -62.8870544, "y": 31.4578876, "z": -9.723853 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d8e3ecc86f774414c78d05e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-KORL",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -2.507956, "y": 174.912, "z": 23.420002 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d8e0db586f7744450412a42"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-RS",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -0.7069602, "y": 182.247, "z": 23.42 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5da46e3886f774653b7a83fe"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-RLSA",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -10.9659786, "y": 180.645, "z": 23.420002 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ede7b0c6d23e5473e6e8c66"
|
||||||
|
},
|
||||||
|
{ // seems to be straight on MP22 but the floor below
|
||||||
|
"Text": "RB-MP13",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 87.58351, "y": -37.0245056, "z": -5.82550049 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80cbd886f77470855c26c2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-MP21",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 10.9685087, "y": -7.38929558, "z": -2.99313354 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80ca9086f774403a401e40"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-MP11",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 8.245274, "y": -17.522274, "z": -5.851448 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c95986f77440351beef3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-MP12",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 8.266094, "y": -17.478508, "z": -3.00213623 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80c93086f7744036212b41"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-MP22",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 87.5893555, "y": -37.00447, "z": -2.98300171 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d80cab086f77440535be201"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "RB-PKPM Marked Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -120.251823, "y": 27.7044983, "z": -13.483 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5ede7a8229445733cb4c18e2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 284 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
|
@ -0,0 +1,70 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg1" width="1559.5717" height="1032.4935" version="1.1" viewBox="0 0 1559.5717 1032.4935">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<style id="style_shoreline">
|
||||||
|
.plane{ fill:#FFF }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<g id="Stairs_Common">
|
||||||
|
<g id="Stairs-Common-E" transform="translate(5.2606)">
|
||||||
|
<path d="M793.422 306.488v-.711l.234-.003c.129-.001.348 0 .486.002l.252.004.003-.763.003-.764.703-.003.702-.003v2.953h-2.383z"/>
|
||||||
|
<path d="M790.541 305.723v-1.476l.708.003.709.003.003.764.003.763.252-.004c.138-.002.357-.003.486-.002l.234.003v1.423h-2.395z"/>
|
||||||
|
<path d="M853.547 317.633v-2.241h2.952v4.482h-1.387v-2.537h-.178v2.537h-1.387z"/>
|
||||||
|
<path d="M796.232 321.19v-2.098h1.352v2.146h.486v-2.146h1.366l-.007.018c-.004.011-.007.955-.007 2.099v2.08h-3.19z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Stairs-Common-W" transform="translate(5.2606)">
|
||||||
|
<path d="M697.495 322.427c-.004-.48-.008-1.413-.008-2.072v-1.199l-.014-.014-.014-.015h1.38v2.134h.486v-2.134h1.363v4.174h-3.185z"/>
|
||||||
|
<path d="m703.985 306.503.004-.708.483-.003.483-.003v-1.518h1.423v.49c0 .27-.004.932-.008 1.471l-.008.98h-2.38z"/>
|
||||||
|
<path d="M701.109 306.225c-.004-.543-.008-1.205-.008-1.471v-.483h1.423v1.518l.483.003.484.003.003.708.003.709h-2.38z"/>
|
||||||
|
<path d="M640.427 317.645v-2.241h2.952v4.482h-1.387l-.002-.258c0-.142-.001-.716-.001-1.275l.001-1.017h-.185v1.017c0 .559 0 1.133-.001 1.275l-.002.258h-1.375z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
<g id="Underground_Level" class="shadow">
|
||||||
|
<g id="Stairs-U" class="stairs">
|
||||||
|
<g id="Stairs-U-A">
|
||||||
|
<path d="M769.375 259.341v-2.459h1.684l.002.261c.001.332.001 4.062 0 4.402l-.001.255h-1.685z"/>
|
||||||
|
<path d="M741.169 259.341v-2.459h1.698v4.918h-1.698z"/>
|
||||||
|
<path d="m758.584 265.903.003-1.06h2.106v2.12h-2.113z"/>
|
||||||
|
<path d="M751.549 265.903v-1.06h2.106l.003 1.06.004 1.06h-2.113z"/>
|
||||||
|
<path d="M761.426 271.032v-.903l.275-.001c.152-.001 1.213-.003 2.358-.005l2.082-.004v1.817h-4.715z"/>
|
||||||
|
<path d="m746.104 271.029.003-.907 2.079.002c1.143.002 2.206.003 2.361.004l.282.001v1.807H746.1Z"/>
|
||||||
|
<path d="M757.269 277.907v-2.683h1.413v5.366h-1.413z"/>
|
||||||
|
<path id="p1111" d="m753.563 277.904.003-2.687h1.4l.003 2.687.004 2.686h-1.413z"/>
|
||||||
|
</g>
|
||||||
|
<use xlink:href="#Stairs-Common-W" id="Stairs-U-W" x="0" y="0" transform="translate(2.36316 9.51307)"/>
|
||||||
|
</g>
|
||||||
|
<g id="Floors-U" class="floor">
|
||||||
|
<path id="Floor-U-A" d="m759.219 252.214-.004 3.401-.004 3.4h.381v.285h-3.342v-.285h2.69v-6.793h-5.638v6.793h1.236v.285h-5.258v.462h-.367v-.462h-5.584v2.649l2.788-.003 2.79-.003.003-.241.004-.242h.366v.557h-.041v.191h-6.372v-.408h-1.698v.408h-.136v2.653l3.604-.005 3.603-.006.004.14.004.139h-1.332v4.715l2.177-.004 2.178-.004.003-2.353.003-2.354h-1.331v-.285h3.709v-3.153h2.459v.272h-2.174v4.715h4.361v-4.715h-.475v-.272h.761v3.148l6.306.011 6.305.01.012-.013.013-.012-.004-1.31-.003-1.311-.072-.004-.071-.004v-.406h-1.698v.408h-6.359v-.218h-.054v-.53h.367v.449h5.584V259.3h-5.584v.462h-.367v-.462h-1.671v-.285h4.048l-.003-3.4-.003-3.401h-3.057zm-7.657 14.749v3.152h-.733v1.807h4.307v-.931l-.17-.17-.169-.169.097-.099.099-.099.214.214.214.214v2.365l-.217.217-.218.217-.098-.098-.098-.098.173-.174.173-.173v-.931h-1.576v.761h-.299v-.774h-6.331v6.413h6.331v-3.94h.299v.543h1.413v.027h.585l-.004.16-.004.16-.173.003-.173.004v3.002h1.834v-3.002l-.173-.004-.173-.003-.004-.16-.004-.16h.585v-.027h1.413v-.543h.299v3.94l3.169-.004 3.169-.003v-6.399l-3.169-.004-3.169-.003v.774h-.299v-.761h-1.576v.931l.173.173.173.174-.098.098-.098.098-.211-.21-.211-.21v-2.392l.208-.207.207-.208.098.099.098.099-.17.169-.169.17v.931h4.307l.003-.903.004-.904h-.741v-3.152h-4.559z"/>
|
||||||
|
<path id="Floor-U-W" d="M657.638 338.003v-3.148h-.023v-9.687h-.249v5.418h-4.269v-1.446h-.343v.249h.094v5.466h-7.86v-5.47l2.223.008 2.223.008v-2.549h.166v2.549l.785-.001c.432 0 .806-.003.83-.007l.045-.007v-.246h-.024v-4.47h-3.19l.003-.816.003-.815 4.657-.003 4.657-.003v.653h.249v-.653h38v6.356h4.15v-.249h-3.901v-6.107l3.062.003 3.062.003.003 3.05.003 3.051h-.735v.249h.972l.003-3.175.003-3.175 3.246-.003 3.245-.003v-6.07h5.514v-3.174l-.169-.008c-.093-.004-.467-.007-.83-.007h-.661v1.517h-.972v1.423h-.487v-1.423h-.972v-1.517h-1.423l.003-1.58.003-1.58 4.461-.003 4.461-.003v1.02h.237l.003-.507.003-.507 10.775-.003 10.775-.003v17.939l-12.364-.003-12.363-.003v-8.691l4.834-.003 4.835-.003v-5.311h-4.245v.261h.783v4.79h-3.059v-4.79h.782v-.261l-.376-.003-.377-.004-.003-.334-.003-.335h-.237v.913h.024v4.837h-3.201l-.003 4.467-.003 4.467-3.08.003-3.08.003v6.26h-.498v.249h.498v2.988h-3.26v-2.988h1.268v-.249h-1.849v.249h.344v3.237h3.497v2.858h-6.082v-6.095h.747v-.249h-7.363v6.343h-37.977z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 663 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -0,0 +1,586 @@
|
||||||
|
{
|
||||||
|
"DisplayName": "Shoreline (TarkovData)",
|
||||||
|
"Author": "Shebuka",
|
||||||
|
"AuthorLink": "https://github.com/TarkovTracker/tarkovdata/",
|
||||||
|
"MapInternalNames": [ "Shoreline" ],
|
||||||
|
"CoordinateRotation": 180,
|
||||||
|
"Bounds": {
|
||||||
|
"Min": {"x": -1060, "y": -415},
|
||||||
|
"Max": {"x": 508, "y": 622}
|
||||||
|
},
|
||||||
|
"DefaultLevel": 0,
|
||||||
|
"Layers": {
|
||||||
|
"Underground": {
|
||||||
|
"Level": -1,
|
||||||
|
"ImagePath": "Maps/Shoreline_TarkovData/Layers/shoreline_layer_-1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -1060, "y": -415},
|
||||||
|
"Max": {"x": 508, "y": 622}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{ // west wing
|
||||||
|
"Min": {"x": -237, "y": -104, "z": -100},
|
||||||
|
"Max": {"x": -137, "y": -68, "z": -5}
|
||||||
|
},
|
||||||
|
{ // admin
|
||||||
|
"Min": {"x": -268, "y": -163, "z": -100},
|
||||||
|
"Max": {"x": -234, "y": -134, "z": -5}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Ground Floor": {
|
||||||
|
"Level": 0,
|
||||||
|
"ImagePath": "Maps/Shoreline_TarkovData/Layers/shoreline_layer_0.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -1060, "y": -415},
|
||||||
|
"Max": {"x": 508, "y": 622}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -1060, "y": -415, "z": -100},
|
||||||
|
"Max": {"x": 508, "y": 622, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"2nd Floor": {
|
||||||
|
"Level": 1,
|
||||||
|
"ImagePath": "Maps/Shoreline_TarkovData/Layers/shoreline_layer_1.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -1060, "y": -415},
|
||||||
|
"Max": {"x": 508, "y": 622}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -375, "y": -178, "z": -1},
|
||||||
|
"Max": {"x": -128, "y": -55, "z": 2}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"3rd Floor": {
|
||||||
|
"Level": 2,
|
||||||
|
"ImagePath": "Maps/Shoreline_TarkovData/Layers/shoreline_layer_2.png",
|
||||||
|
"ImageBounds": {
|
||||||
|
"Min": {"x": -1060, "y": -415},
|
||||||
|
"Max": {"x": 508, "y": 622}
|
||||||
|
},
|
||||||
|
"GameBounds": [
|
||||||
|
{
|
||||||
|
"Min": {"x": -375, "y": -178, "z": 2},
|
||||||
|
"Max": {"x": -128, "y": -55, "z": 100}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Labels": [
|
||||||
|
{
|
||||||
|
"Text": "Resort",
|
||||||
|
"Position": {"x": -252, "y": -71.2, "z": -3},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Power Station",
|
||||||
|
"Position": {"x": -215.8, "y": 178.4, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Gas Station",
|
||||||
|
"Position": {"x": -189.3, "y": 420, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Weather Station",
|
||||||
|
"Position": {"x": -496, "y": 257, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Radio Tower",
|
||||||
|
"Position": {"x": -708.9, "y": 93.9, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Swamp",
|
||||||
|
"Position": {"x": 326, "y": -118.5, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Village",
|
||||||
|
"Position": {"x": 418.4, "y": 118, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cabins",
|
||||||
|
"Position": {"x": 288, "y": 144, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cottages",
|
||||||
|
"Position": {"x": 128, "y": 93, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tank Bridge",
|
||||||
|
"Position": {"x": -355, "y": 188, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Pier",
|
||||||
|
"Position": {"x": -338.6, "y": 525, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Island",
|
||||||
|
"Position": {"x": 216, "y": 424, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Bus Stop",
|
||||||
|
"Position": {"x": -96, "y": -6, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Construction",
|
||||||
|
"Position": {"x": 52, "y": 134, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Bunker",
|
||||||
|
"Position": {"x": -153, "y": -290, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Crane",
|
||||||
|
"Position": {"x": -625, "y": 484, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Scav Farm",
|
||||||
|
"Position": {"x": -622, "y": -202, "z": 0},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing",
|
||||||
|
"Position": {"x": -171, "y": -83, "z": -3},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing",
|
||||||
|
"Position": {"x": -329, "y": -83, "z": -3},
|
||||||
|
"FontSize": 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Admin",
|
||||||
|
"Position": {"x": -252, "y": -146, "z": -3},
|
||||||
|
"FontSize": 16
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"StaticMarkers": [
|
||||||
|
{
|
||||||
|
"Text": "Lighthouse",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -458.1507, "y": 567.2876, "z": -54.289978 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Ruined Road",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 366.62, "y": 332.51, "z": -61.12998 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Gym Entrance",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -296.9457, "y": -100.892, "z": -6.629977 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Admin Basement",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -256.87, "y": -149.782379, "z": -7.70797729 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Smuggler's Path (Co-op)",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -729.4, "y": -255.1, "z": -26.0 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.460784316, "b": 0.007843138, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Road to North V-Ex",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -543.264038, "y": -379.651367, "z": -16.8420162 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Road to Customs",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -859.05, "y": 0.49, "z": -42.07 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Railway Bridge",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -1029.29, "y": 307.59, "z": -60.79 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Tunnel",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 376.36, "y": 319.25, "z": -55.9399757 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Path to Lighthouse",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": 448.9, "y": -254.6, "z": -44.7 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Pier Boat",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -332.5907, "y": 561.2576, "z": -66.11997 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Climber's Trail",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -214.3, "y": -361.8, "z": -1.0 },
|
||||||
|
"Category": "Extract",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.0, "g": 1.0, "b": 0.0, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Transit to Lighthouse",
|
||||||
|
"ImagePath": "Markers/transit.png",
|
||||||
|
"Position": { "x": 417.2, "y": -217.5, "z": -56.1 },
|
||||||
|
"Category": "Transit",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 1.0, "g": 0.368627429, "b": 0.00627450971, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Mountain Bunker",
|
||||||
|
"ImagePath": "Markers/exit.png",
|
||||||
|
"Position": { "x": -390.956024,"y": -385.721, "z": -2.55000019 },
|
||||||
|
"Category": "Secret",
|
||||||
|
"ShowInRaid": false,
|
||||||
|
"Color": { "r": 0.1, "g": 0.6, "b": 0.6, "a": 1.0 }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "HEP Station Storage Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -220.38063, "y": 185.880585, "z": -33.858 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d8e15b686f774445103b190"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "HEP Station Storage Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -220.703171, "y": 193.687332, "z": -33.8470345 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5d8e15b686f774445103b190"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "SMW Car",
|
||||||
|
"ImagePath": "Markers/car_door.png",
|
||||||
|
"Position": { "x": 157.352051, "y": 133.891, "z": -47.3859329 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0eb38b86f774153b320eb0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Cottage Back Door",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": 102.532318, "y": 102.731339, "z": -47.2590027 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0eb6ac86f7743124037a28"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 203",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -229.608261, "y": -92.90662, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a144dfd86f77445cb5a0982"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 216",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -179.379257, "y": -80.91263, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ee30786f774023b6ee08f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 306",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -216.905258, "y": -92.90662, "z": 3.03088379 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a13f46386f7741dd7384b04"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 220",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -166.686264, "y": -80.91263, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ee34586f774023b6ee092"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 206",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -285.857239, "y": -92.88861, "z": 0.134880066 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ee4b586f7743698200d22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 205",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -281.692261, "y": -92.88861, "z": 0.134880066 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a144bdb86f7741d374bbde0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 313",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -313.835754, "y": -84.47537, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0eecf686f7740350630097"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Utility Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -142.583267, "y": -79.9176, "z": 3.05788422 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ea79b86f7741d4a35298e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 218",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -173.983749, "y": -84.50137, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a13eebd86f7746fd639aa93"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 328",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -357.303284, "y": -79.9165955, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0eee1486f77402aa773226"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 226",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -351.9118, "y": -84.47537, "z": 0.134880066 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a13f35286f77413ef1436b0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Office 107",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -333.767029, "y": -79.95798, "z": -2.70200348 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ea64786f7741707720468"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 205",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -221.073288, "y": -92.90662, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ec6d286f7742c0b518fb5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 222",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -343.3838, "y": -84.47537, "z": 0.134880066 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a13f24186f77410e57c5626"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 112",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -189.173019, "y": -85.4490051, "z": -2.69580078 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0dc95c86f77452440fc675"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 104",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -157.433029, "y": -85.4490051, "z": -2.69580078 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0dc45586f7742f6b0b73e3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 219",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -170.853256, "y": -80.91263, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a13ef0686f7746e5a411744"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 308",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -294.3863, "y": -92.88861, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a145d7b86f7744cbb6f4a13"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 310",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -303.411255, "y": -81.46161, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0eec9686f77402ac5c39f2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 301",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -229.202621, "y": -100.151733, "z": 3.03088379 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a13ef7e86f7741290491063"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 222",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -161.293747, "y": -84.50137, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a1452ee86f7746f33111763"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Utility Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -142.583267, "y": -79.9176, "z": 0.164085388 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ea79b86f7741d4a35298e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 306",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -285.857239, "y": -92.88861, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a145d4786f7744cbb6f4a12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Utility Room",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -360.193237, "y": -79.8936157, "z": 3.04288483 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ea79b86f7741d4a35298e"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 316",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -323.389282, "y": -80.8936157, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a145ebb86f77458f1796f05"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Room 314",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -317.992737, "y": -84.47537, "z": 3.02988434 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0eed4386f77405112912aa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "East Wing Sanitar's Office",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -323.547, "y": -79.961, "z": -2.70200348 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5eff09cd30a7dc22fd1ddfed"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "West Wing Room 223",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -165.451767, "y": -84.50137, "z": 0.137084961 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "5a0ee37f86f774023657a86f"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Text": "Voron's hideout",
|
||||||
|
"ImagePath": "Markers/door_with_lock.png",
|
||||||
|
"Position": { "x": -240.23, "y": 197.64, "z": -40.66 },
|
||||||
|
"Category": "LockedDoor",
|
||||||
|
"Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
"AssociatedItemId": "664d3ddfdda2e85aca370d75"
|
||||||
|
}
|
||||||
|
// {
|
||||||
|
// "Text": "safe 1",
|
||||||
|
// "ImagePath": "Markers/locked_safe.png",
|
||||||
|
// "Position": { "x": -266.10675, "y": -147.65097, "z": -0.3202896 },
|
||||||
|
// "Category": "Locked",
|
||||||
|
// "Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
// "AssociatedItemId": "5a0f08bc86f77478f33b84c2"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "Text": "West Wing Room 321 Safe",
|
||||||
|
// "ImagePath": "Markers/locked_safe.png",
|
||||||
|
// "Position": { "x": -165.664047, "y": -89.05765, "z": 2.53099823 },
|
||||||
|
// "Category": "Locked",
|
||||||
|
// "Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
// "AssociatedItemId": "5a0eff2986f7741fd654e684"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "Text": "Cottage Safe",
|
||||||
|
// "ImagePath": "Markers/locked_safe.png",
|
||||||
|
// "Position": { "x": 93.71925, "y": 111.979019, "z": -45.01355 },
|
||||||
|
// "Category": "Locked",
|
||||||
|
// "Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
// "AssociatedItemId": "5a0f068686f7745b0d4ea242"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "Text": "safe 4",
|
||||||
|
// "ImagePath": "Markers/locked_safe.png",
|
||||||
|
// "Position": { "x": -242.451981, "y": -153.367249, "z": -0.3202896 },
|
||||||
|
// "Category": "Locked",
|
||||||
|
// "Color": { "r": 1.0, "g": 0.921568632, "b": 0.0156862754, "a": 1.0 },
|
||||||
|
// "AssociatedItemId": "5a0f0f5886f7741c4e32a472"
|
||||||
|
// }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,125 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg283" width="605.32397" height="831.57751" version="1.1" viewBox="0 0 605.32395 831.57753">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stairs-16" d="M381.676 148.906v-1.548h3.26v3.096h-3.26Z"/>
|
||||||
|
<path id="stairs-17" d="M280.453 177.431v-1.06h1.141v-.489h1.467v2.608h-2.608Z"/>
|
||||||
|
<path id="stairs-18" d="M368.473 182.076v-2.771h3.586v5.542h-3.586Z"/>
|
||||||
|
<path id="stairs-19" d="m365.574 220.143.496-2.809 2.086.368 2.087.368-.495 2.809-.496 2.809-2.086-.368-2.087-.368Z"/>
|
||||||
|
<path id="stairs-20" d="m477.902 232.937.227-1.285-1.124-.198-1.123-.198.212-1.204.212-1.204 2.167.382 2.167.382-.438 2.489-.439 2.488-1.044-.184-1.043-.184Z"/>
|
||||||
|
<path id="stairs-21" d="m351.601 240.03 4.852.943-.739 4.856-4.971-.908Z"/>
|
||||||
|
<path id="stairs-22" d="m429.204 261.087-1.519-2.05 1.587-1.105 1.586-1.105 1.523 1.899.914 1.208-1.709 1.249-1.561 1.088Z"/>
|
||||||
|
<path id="stairs-23" d="m402.038 272.665.432-2.347 4.654.831-.408 2.306-.433 2.347-2.338-.395-2.339-.395Z"/>
|
||||||
|
<path id="stairs-24" d="M196.834 282.077v-.734h.489v-1.141h2.119v2.608h-2.608Z"/>
|
||||||
|
<path id="stairs-25" d="m434.84 283.122.299-1.691 1.637.335 1.637.336-.085.771-.086.771-.811-.143-.812-.143-.155.883-.156.883-.883-.156-.883-.155Z"/>
|
||||||
|
<path id="stairs-26" d="m492.158 293.848.128-.722-.723-.127-.722-.128.141-.802.142-.803 1.445.255 1.444.255-.268 1.525-.269 1.525-.723-.128-.722-.127Z"/>
|
||||||
|
<path id="stairs-27" d="M203.028 338.312v-1.06h2.282v2.119h-2.282Z"/>
|
||||||
|
<path id="stairs-28" d="m367.373 350.578.184-1.044 1.846.326 1.846.325-.184 1.044-.184 1.043-1.846-.325-1.846-.326Z"/>
|
||||||
|
<path id="stairs-29" d="M72.9542 357.464v-2.445h4.238v2.608h-.489v2.282h-3.749Z"/>
|
||||||
|
<path id="stairs-30" d="M275.563 363.658v-.815h1.793v3.108h-1.793Z"/>
|
||||||
|
<path id="stairs-31" d="m432.515 363.094.354-2.006 1.765.311 1.766.311-.184 1.044-.184 1.043-.802-.141-.803-.142-.17.963-.17.963-.963-.169-.963-.17Z"/>
|
||||||
|
<path id="stairs-32" d="M272.466 364.392v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-33" d="M97.7302 368.222v-1.956h1.63v2.282h1.4668v1.63h-3.0968Z"/>
|
||||||
|
<path id="stairs-34" d="M143.533 380.447v-1.467h2.119v1.63h-.978v1.304h-1.141Z"/>
|
||||||
|
<path id="stairs-35" d="M54.0462 385.663v-1.304h.978v-2.119h3.586v4.727h-4.564Z"/>
|
||||||
|
<path id="stairs-36" d="m438.055 395.533.24-1.365-1.445-.255-1.444-.254.184-1.044.184-1.043 2.568.453 2.568.453-.424 2.408-.425 2.407-1.123-.198-1.124-.198Z"/>
|
||||||
|
<path id="stairs-37" d="m425.878 392.31.425-2.408 2.568.453 2.569.453-.184 1.043-.184 1.044-1.445-.255-1.445-.255-.24 1.364-.241 1.365-1.124-.198-1.123-.198Z"/>
|
||||||
|
<path id="stairs-38" d="M110.444 401.882v-1.549h3.586v1.63h-1.793v1.467h-1.793Z"/>
|
||||||
|
<path id="stairs-39" d="M132.775 415.248v-1.386h1.63v1.304h.978v1.467h-2.608Z"/>
|
||||||
|
<path id="stairs-40" d="m408.637 427.465.416-2.354 2.438.43 2.438.43-.415 2.354-.415 2.354-2.438-.43-2.439-.429Z"/>
|
||||||
|
<path id="stairs-41" d="m208.028 427.533.684-1.667 1.65.676 1.36.55-.641 1.587-.641 1.587-1.512-.611-1.511-.61Z"/>
|
||||||
|
<path id="stairs-42" d="M275.563 429.755v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-43" d="M272.466 429.755v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-44" d="m218.979 430.578.61-1.512 1.663.672 1.206.482-.547 1.367-.672 1.662-1.435-.58-1.436-.58Z"/>
|
||||||
|
<path id="stairs-45" d="M239.214 433.015v-1.549h3.097v1.63l-.002 1.466-1.465.001h-1.63Z"/>
|
||||||
|
<path id="stairs-46" d="m192.755 442.334.616-1.512 1.657.672 1.36.55-.61 1.511-.611 1.511-1.511-.61-1.512-.611Z"/>
|
||||||
|
<path id="stairs-47" d="m371.773 449.959.421-2.387 2.557.451 2.556.451-.42 2.386-.421 2.386-2.557-.45-2.556-.451Z"/>
|
||||||
|
<path id="stairs-48" d="M110.281 452.738v-1.549h1.956v1.467h1.793v1.63h-3.749Z"/>
|
||||||
|
<path id="stairs-49" d="M272.792 458.687v-1.467h3.097v1.467h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-50" d="M103.761 474.906v-2.96h1.63v3.367h3.097v1.304h-4.727Z"/>
|
||||||
|
<path id="stairs-51" d="m138.031 483.918.108-.22-.66-.322-.659-.321.286-.586.286-.586 1.318.643 1.319.643-.393.806-.393.805-.66-.321-.659-.322Z"/>
|
||||||
|
<path id="stairs-52" d="M216.394 520.709v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-53" d="M186.891 520.709v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-54" d="M276.704 521.931v-.815h1.467v1.63h-1.467Z"/>
|
||||||
|
<path id="stairs-55" d="M254.862 521.931v-.815h1.467v1.63h-1.467Z"/>
|
||||||
|
<path id="stairs-56" d="M280.29 522.665v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-57" d="M258.448 522.665v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-58" d="M131.634 526.251v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-59" d="M502.785 526.414v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-60" d="m567.588 538.539.684-1.389 1.097.539 1.097.54-.684 1.389-.684 1.39-1.097-.54-1.097-.54Z"/>
|
||||||
|
<path id="stairs-61" d="M437.748 547.767v-.408h2.119v.815h-2.119Z"/>
|
||||||
|
<path id="stairs-62" d="M519.612 545.516c.075-.738.294-1.472.624-2.136.315-.633.762-1.206 1.265-1.703.457-.452.943-.961 1.563-1.131.811-.222 1.703.003 2.513.23.68.192 1.902.936 1.902.936l-.468.951-.468.95s-1.483-.826-2.302-.86c-.365-.015-1.055.298-1.055.298l4.363 1.906-.841 1.644-.826 1.69-4.135-2.314s.115.814.353 1.127c.497.653 2.068 1.336 2.068 1.336l-.432.877-.431.878s-1.327-.526-1.902-.936c-.618-.441-1.297-.916-1.617-1.604-.302-.649-.247-1.427-.174-2.139Z"/>
|
||||||
|
<path id="stairs-63" d="M470.185 561.051v-1.467h3.097v1.467h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-64" d="M461.506 569.161v-2.123h1.304v-1.467h1.467v4.405h-2.771Z"/>
|
||||||
|
<path id="stairs-65" d="m498.861 568.922.72-1.463 1.608.792 1.609.791-.36.732-.36.731-.804-.396-.804-.396-.36.732-.36.731-.804-.396-.805-.396Z"/>
|
||||||
|
<path id="stairs-66" d="M452.092 570.75v-1.223h1.304v2.445h-1.304Z"/>
|
||||||
|
<path id="stairs-67" d="M221.773 572.706v-1.549h2.608v1.467h2.445v1.63h-5.053Z"/>
|
||||||
|
<path id="stairs-68" d="M417.21 573.765v-.815h1.304v-1.467h1.467v3.097h-2.771Z"/>
|
||||||
|
<path id="stairs-69" d="M407.593 573.032v-1.549h1.467v1.467h1.304v1.63h-2.771Z"/>
|
||||||
|
<path id="stairs-70" d="m548.44 584.083.324-.658.731.36.732.36.323-.659.324-.658.805.396.804.396-.648 1.316-.647 1.316-1.536-.755-1.536-.756Z"/>
|
||||||
|
<path id="stairs-71" d="M212.971 585.746v-1.549h3.097v1.467h-1.467v1.63h-1.63Z"/>
|
||||||
|
<path id="stairs-72" d="M110.444 592.184v-1.304h2.934v1.467h-1.467v1.141h-1.467Z"/>
|
||||||
|
<path id="stairs-73" d="M427.968 592.429v-1.386h2.934v1.467h-1.304v1.304h-1.63Z"/>
|
||||||
|
<path id="stairs-74" d="m493.214 594.013 1.583-3.218 2.414 1.188 2.413 1.187-.053.111-.052.11-1.181 1.012-1.182 1.013-.315-.282c-.106-.093-.197-.205-.316-.281-.138-.088-.296-.138-.449-.195-.129-.048-.257-.119-.395-.123-.159-.004-.316.055-.464.115-.147.06-.3.127-.41.241-.173.18-.238.439-.352.661-.121.236-.352.715-.352.715l1.17.576 1.17.575-.431.878-.598 1.099-1.975-.971-1.974-.972Z"/>
|
||||||
|
<path id="stairs-75" d="m467.985 597.544-2.084-1.428.768-1.232.831-1.233 1.954 1.163 1.89 1.163-.839 1.597-.694 1.128Z"/>
|
||||||
|
<path id="stairs-76" d="M214.438 601.72v-.734h1.956v1.467h-1.956Z"/>
|
||||||
|
<path id="stairs-77" d="M263.501 603.105v-2.725h1.63v-1.024h1.793v5.053h-3.423Z"/>
|
||||||
|
<path id="stairs-78" d="M221.936 612.478v-1.712h5.053v1.793h-2.445v1.63h-2.608Z"/>
|
||||||
|
<path id="stairs-79" d="M258.285 632.066v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-80" d="M112.074 641.981v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-81" d="M171.895 665.127v-1.549h1.63v1.467h1.467v1.63h-3.097Z"/>
|
||||||
|
<path id="stairs-82" d="M60.8922 671.321v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-88" d="M122.832 696.26v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-89" d="M62.8482 695.445v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-94" d="m184.534 751.779-.489-.847 1.624-.937 1.623-.937.489.847.489.847-1.623.937-1.624.937Z"/>
|
||||||
|
<path id="stairs-95" d="M501.481 761.786v-1.549h1.467v1.467h1.467v1.63h-2.934Z"/>
|
||||||
|
<path id="stairs-96" d="M492.842 785.013v-2.282h1.304v4.564h-1.304Z"/>
|
||||||
|
<path id="stairs-97" d="M375.84 755.417v3.763h3.878v-1.651h-2.112v-2.112Z"/>
|
||||||
|
<path id="cinema-1" d="M485.344 690.31v-2.282h5.053v3.097h-2.445v1.467h-2.608Z"/>
|
||||||
|
<path id="cinema-2" d="M485.344 708.729v-2.282h2.608v1.467h2.445v3.097h-5.053Z"/>
|
||||||
|
<path id="cinema-3" d="M499.199 681.373h3.097v1.793h-3.097Z"/>
|
||||||
|
<path id="cinema-4" d="M499.199 716.747v-.978h3.097v1.956h-3.097Z"/>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g id="Fifth_Floor" class="shadow">
|
||||||
|
<g id="Stairs-5" class="stairs">
|
||||||
|
<use xlink:href="#stairs-46" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-34" x="0" y="0"/>
|
||||||
|
</g>
|
||||||
|
<g id="Floor-5" class="floor">
|
||||||
|
<path d="m189.513 438.27.561-1.387.594.24.595.241-.561 1.387-.56 1.386-.595-.24-.594-.24Zm2.217 1.74.266-.66.529.214.528.212-.266.662-.267.66-.529-.214-.528-.214Zm1.482-.246.56-1.386 1.321.533 1.321.534.053-.133c.029-.072-.006-.155-.079-.185l-.131-.054.399-.99.401-.991.66.267.661.266-.08.199-.081.198.133.053.131.054.08-.198.081-.199.198.08.198.081.053-.132.054-.132-.198-.08-.199-.081.348-.858.346-.859.661.268.661.266-.348.859-.347.859-.131-.054c-.073-.03-.156.006-.186.078l-.054.133.264.107.265.106.64-1.585.64-1.585.133.054c.072.029.156-.007.186-.079l.053-.133-.925-.373-.924-.374.479-1.188.481-1.189 2.641 1.067 2.642 1.068-.48 1.188-.48 1.189-1.387-.56-1.387-.561-.053.133c-.03.072.005.156.078.185l.132.053-.613 1.519-.614 1.52.132.053.133.053.079-.198.08-.198 1.123.453 1.123.454-.508 1.255-.506 1.255-1.123-.454-1.123-.453.267-.662.267-.66-.132-.053-.132-.054-.267.662-.267.66-.528-.214-.529-.213-.053.132-.054.132 1.784.721 1.783.72-.56 1.387-.561 1.386-2.641-1.067-2.642-1.067.561-1.387.56-1.387.462.187.462.187.053-.132.054-.133-.462-.186-.463-.187.081-.199.08-.197-.133-.054-.131-.053-.076.187-.076.187-.197.011-.195.01.133.143.135.145-.557 1.376-.555 1.375-1.85-.747-1.849-.747Z"/>
|
||||||
|
<path d="M148.652 385.369v-.569h.854v-1.425h.571v-.855h2.564v3.419h-3.989Z"/>
|
||||||
|
<path d="M146.515 384.657v-1.282h1.14v2.564h-1.14Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 11 KiB |
|
|
@ -0,0 +1,146 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg283" width="605.32397" height="831.57751" version="1.1" viewBox="0 0 605.32395 831.57753">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stairs-16" d="M381.676 148.906v-1.548h3.26v3.096h-3.26Z"/>
|
||||||
|
<path id="stairs-17" d="M280.453 177.431v-1.06h1.141v-.489h1.467v2.608h-2.608Z"/>
|
||||||
|
<path id="stairs-18" d="M368.473 182.076v-2.771h3.586v5.542h-3.586Z"/>
|
||||||
|
<path id="stairs-19" d="m365.574 220.143.496-2.809 2.086.368 2.087.368-.495 2.809-.496 2.809-2.086-.368-2.087-.368Z"/>
|
||||||
|
<path id="stairs-20" d="m477.902 232.937.227-1.285-1.124-.198-1.123-.198.212-1.204.212-1.204 2.167.382 2.167.382-.438 2.489-.439 2.488-1.044-.184-1.043-.184Z"/>
|
||||||
|
<path id="stairs-21" d="m351.601 240.03 4.852.943-.739 4.856-4.971-.908Z"/>
|
||||||
|
<path id="stairs-22" d="m429.204 261.087-1.519-2.05 1.587-1.105 1.586-1.105 1.523 1.899.914 1.208-1.709 1.249-1.561 1.088Z"/>
|
||||||
|
<path id="stairs-23" d="m402.038 272.665.432-2.347 4.654.831-.408 2.306-.433 2.347-2.338-.395-2.339-.395Z"/>
|
||||||
|
<path id="stairs-24" d="M196.834 282.077v-.734h.489v-1.141h2.119v2.608h-2.608Z"/>
|
||||||
|
<path id="stairs-25" d="m434.84 283.122.299-1.691 1.637.335 1.637.336-.085.771-.086.771-.811-.143-.812-.143-.155.883-.156.883-.883-.156-.883-.155Z"/>
|
||||||
|
<path id="stairs-26" d="m492.158 293.848.128-.722-.723-.127-.722-.128.141-.802.142-.803 1.445.255 1.444.255-.268 1.525-.269 1.525-.723-.128-.722-.127Z"/>
|
||||||
|
<path id="stairs-27" d="M203.028 338.312v-1.06h2.282v2.119h-2.282Z"/>
|
||||||
|
<path id="stairs-28" d="m367.373 350.578.184-1.044 1.846.326 1.846.325-.184 1.044-.184 1.043-1.846-.325-1.846-.326Z"/>
|
||||||
|
<path id="stairs-29" d="M72.9542 357.464v-2.445h4.238v2.608h-.489v2.282h-3.749Z"/>
|
||||||
|
<path id="stairs-30" d="M275.563 363.658v-.815h1.793v3.108h-1.793Z"/>
|
||||||
|
<path id="stairs-31" d="m432.515 363.094.354-2.006 1.765.311 1.766.311-.184 1.044-.184 1.043-.802-.141-.803-.142-.17.963-.17.963-.963-.169-.963-.17Z"/>
|
||||||
|
<path id="stairs-32" d="M272.466 364.392v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-33" d="M97.7302 368.222v-1.956h1.63v2.282h1.4668v1.63h-3.0968Z"/>
|
||||||
|
<path id="stairs-34" d="M143.533 380.447v-1.467h2.119v1.63h-.978v1.304h-1.141Z"/>
|
||||||
|
<path id="stairs-35" d="M54.0462 385.663v-1.304h.978v-2.119h3.586v4.727h-4.564Z"/>
|
||||||
|
<path id="stairs-36" d="m438.055 395.533.24-1.365-1.445-.255-1.444-.254.184-1.044.184-1.043 2.568.453 2.568.453-.424 2.408-.425 2.407-1.123-.198-1.124-.198Z"/>
|
||||||
|
<path id="stairs-37" d="m425.878 392.31.425-2.408 2.568.453 2.569.453-.184 1.043-.184 1.044-1.445-.255-1.445-.255-.24 1.364-.241 1.365-1.124-.198-1.123-.198Z"/>
|
||||||
|
<path id="stairs-38" d="M110.444 401.882v-1.549h3.586v1.63h-1.793v1.467h-1.793Z"/>
|
||||||
|
<path id="stairs-39" d="M132.775 415.248v-1.386h1.63v1.304h.978v1.467h-2.608Z"/>
|
||||||
|
<path id="stairs-40" d="m408.637 427.465.416-2.354 2.438.43 2.438.43-.415 2.354-.415 2.354-2.438-.43-2.439-.429Z"/>
|
||||||
|
<path id="stairs-41" d="m208.028 427.533.684-1.667 1.65.676 1.36.55-.641 1.587-.641 1.587-1.512-.611-1.511-.61Z"/>
|
||||||
|
<path id="stairs-42" d="M275.563 429.755v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-43" d="M272.466 429.755v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-44" d="m218.979 430.578.61-1.512 1.663.672 1.206.482-.547 1.367-.672 1.662-1.435-.58-1.436-.58Z"/>
|
||||||
|
<path id="stairs-45" d="M239.214 433.015v-1.549h3.097v1.63l-.002 1.466-1.465.001h-1.63Z"/>
|
||||||
|
<path id="stairs-46" d="m192.755 442.334.616-1.512 1.657.672 1.36.55-.61 1.511-.611 1.511-1.511-.61-1.512-.611Z"/>
|
||||||
|
<path id="stairs-47" d="m371.773 449.959.421-2.387 2.557.451 2.556.451-.42 2.386-.421 2.386-2.557-.45-2.556-.451Z"/>
|
||||||
|
<path id="stairs-48" d="M110.281 452.738v-1.549h1.956v1.467h1.793v1.63h-3.749Z"/>
|
||||||
|
<path id="stairs-49" d="M272.792 458.687v-1.467h3.097v1.467h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-50" d="M103.761 474.906v-2.96h1.63v3.367h3.097v1.304h-4.727Z"/>
|
||||||
|
<path id="stairs-51" d="m138.031 483.918.108-.22-.66-.322-.659-.321.286-.586.286-.586 1.318.643 1.319.643-.393.806-.393.805-.66-.321-.659-.322Z"/>
|
||||||
|
<path id="stairs-52" d="M216.394 520.709v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-53" d="M186.891 520.709v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-54" d="M276.704 521.931v-.815h1.467v1.63h-1.467Z"/>
|
||||||
|
<path id="stairs-55" d="M254.862 521.931v-.815h1.467v1.63h-1.467Z"/>
|
||||||
|
<path id="stairs-56" d="M280.29 522.665v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-57" d="M258.448 522.665v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-58" d="M131.634 526.251v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-59" d="M502.785 526.414v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-60" d="m567.588 538.539.684-1.389 1.097.539 1.097.54-.684 1.389-.684 1.39-1.097-.54-1.097-.54Z"/>
|
||||||
|
<path id="stairs-61" d="M437.748 547.767v-.408h2.119v.815h-2.119Z"/>
|
||||||
|
<path id="stairs-62" d="M519.612 545.516c.075-.738.294-1.472.624-2.136.315-.633.762-1.206 1.265-1.703.457-.452.943-.961 1.563-1.131.811-.222 1.703.003 2.513.23.68.192 1.902.936 1.902.936l-.468.951-.468.95s-1.483-.826-2.302-.86c-.365-.015-1.055.298-1.055.298l4.363 1.906-.841 1.644-.826 1.69-4.135-2.314s.115.814.353 1.127c.497.653 2.068 1.336 2.068 1.336l-.432.877-.431.878s-1.327-.526-1.902-.936c-.618-.441-1.297-.916-1.617-1.604-.302-.649-.247-1.427-.174-2.139Z"/>
|
||||||
|
<path id="stairs-63" d="M470.185 561.051v-1.467h3.097v1.467h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-64" d="M461.506 569.161v-2.123h1.304v-1.467h1.467v4.405h-2.771Z"/>
|
||||||
|
<path id="stairs-65" d="m498.861 568.922.72-1.463 1.608.792 1.609.791-.36.732-.36.731-.804-.396-.804-.396-.36.732-.36.731-.804-.396-.805-.396Z"/>
|
||||||
|
<path id="stairs-66" d="M452.092 570.75v-1.223h1.304v2.445h-1.304Z"/>
|
||||||
|
<path id="stairs-67" d="M221.773 572.706v-1.549h2.608v1.467h2.445v1.63h-5.053Z"/>
|
||||||
|
<path id="stairs-68" d="M417.21 573.765v-.815h1.304v-1.467h1.467v3.097h-2.771Z"/>
|
||||||
|
<path id="stairs-69" d="M407.593 573.032v-1.549h1.467v1.467h1.304v1.63h-2.771Z"/>
|
||||||
|
<path id="stairs-70" d="m548.44 584.083.324-.658.731.36.732.36.323-.659.324-.658.805.396.804.396-.648 1.316-.647 1.316-1.536-.755-1.536-.756Z"/>
|
||||||
|
<path id="stairs-71" d="M212.971 585.746v-1.549h3.097v1.467h-1.467v1.63h-1.63Z"/>
|
||||||
|
<path id="stairs-72" d="M110.444 592.184v-1.304h2.934v1.467h-1.467v1.141h-1.467Z"/>
|
||||||
|
<path id="stairs-73" d="M427.968 592.429v-1.386h2.934v1.467h-1.304v1.304h-1.63Z"/>
|
||||||
|
<path id="stairs-74" d="m493.214 594.013 1.583-3.218 2.414 1.188 2.413 1.187-.053.111-.052.11-1.181 1.012-1.182 1.013-.315-.282c-.106-.093-.197-.205-.316-.281-.138-.088-.296-.138-.449-.195-.129-.048-.257-.119-.395-.123-.159-.004-.316.055-.464.115-.147.06-.3.127-.41.241-.173.18-.238.439-.352.661-.121.236-.352.715-.352.715l1.17.576 1.17.575-.431.878-.598 1.099-1.975-.971-1.974-.972Z"/>
|
||||||
|
<path id="stairs-75" d="m467.985 597.544-2.084-1.428.768-1.232.831-1.233 1.954 1.163 1.89 1.163-.839 1.597-.694 1.128Z"/>
|
||||||
|
<path id="stairs-76" d="M214.438 601.72v-.734h1.956v1.467h-1.956Z"/>
|
||||||
|
<path id="stairs-77" d="M263.501 603.105v-2.725h1.63v-1.024h1.793v5.053h-3.423Z"/>
|
||||||
|
<path id="stairs-78" d="M221.936 612.478v-1.712h5.053v1.793h-2.445v1.63h-2.608Z"/>
|
||||||
|
<path id="stairs-79" d="M258.285 632.066v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-80" d="M112.074 641.981v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-81" d="M171.895 665.127v-1.549h1.63v1.467h1.467v1.63h-3.097Z"/>
|
||||||
|
<path id="stairs-82" d="M60.8922 671.321v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-88" d="M122.832 696.26v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-89" d="M62.8482 695.445v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-94" d="m184.534 751.779-.489-.847 1.624-.937 1.623-.937.489.847.489.847-1.623.937-1.624.937Z"/>
|
||||||
|
<path id="stairs-95" d="M501.481 761.786v-1.549h1.467v1.467h1.467v1.63h-2.934Z"/>
|
||||||
|
<path id="stairs-96" d="M492.842 785.013v-2.282h1.304v4.564h-1.304Z"/>
|
||||||
|
<path id="stairs-97" d="M375.84 755.417v3.763h3.878v-1.651h-2.112v-2.112Z"/>
|
||||||
|
<path id="cinema-1" d="M485.344 690.31v-2.282h5.053v3.097h-2.445v1.467h-2.608Z"/>
|
||||||
|
<path id="cinema-2" d="M485.344 708.729v-2.282h2.608v1.467h2.445v3.097h-5.053Z"/>
|
||||||
|
<path id="cinema-3" d="M499.199 681.373h3.097v1.793h-3.097Z"/>
|
||||||
|
<path id="cinema-4" d="M499.199 716.747v-.978h3.097v1.956h-3.097Z"/>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<g id="Fourth_Floor" class="shadow">
|
||||||
|
<g id="Stairs-4" class="stairs">
|
||||||
|
<use xlink:href="#stairs-30" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-32" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-34" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-42" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-43" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-46" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-49" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-64" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-70" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-54" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-55" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-56" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-57" x="0" y="0"/>
|
||||||
|
</g>
|
||||||
|
<g id="Floor-4" class="floor">
|
||||||
|
<path d="M272.41 361.431v-1.385h4.89v2.771h-4.89Z"/>
|
||||||
|
<path d="m139.699 347.907-.028 18.918h.657v.372h-.657v4.399h6.636v5.991h.623v.432h-.651v.978h-.653v1.631h-.978v1.304h4.565v-3.913h-.637v-.428h.637v-8.815l-6.506-.015v-1.564h-.509v-.372h.509v-18.918Z"/>
|
||||||
|
<path d="M142.203 380.465v-1.468h1.304v2.935h-1.304Z"/>
|
||||||
|
<path d="M278.441 429.001v-1.467h-.327v.652h-7.987v-2.608h7.987v.652h.327v-58.197h-.327v.49h-7.987v-2.608h7.987v.489h.327v-.489h2.772v24.941h.325v-4.076h4.076v-2.771h6.031v5.216h-7.825v1.794h.327v-1.468h7.498v3.75h-7.498v-.978h-.327v2.119h.327v-.816h7.498v7.5h-7.498v-5.38h-.327v1.957h-2.282v-5.544h-.325v38.31h-2.772Z"/>
|
||||||
|
<path d="M275.669 430.469v-.653h1.631v1.304h-1.631Z"/>
|
||||||
|
<path d="M276.26 456.877h-.264v-3.261h-.327v3.261h-5.542v-9.945h3.586v2.12h.326v-2.12h.198l.001-.325h-4.11v-12.226h4.075v-.327h-1.793v-2.771h4.891v2.771h-1.794v.327h2.608v12.226h-2.608v.325h2.608v2.12h.326v-2.12h12.715v3.913h-3.423v1.793h-2.772v.327h3.099v-1.794h1.629v5.706h-7.173v-3.912h1.467v-.327h-5.542v-2.445h-.326v4.401h.326v-1.629h3.75v3.912h-3.75v-1.142h-.326v1.142h-.308l-.13.28-.154-.28h-.304l-.149.28-.182-.28h-.318l-.163.28Z"/>
|
||||||
|
<path d="M274.366 459.403v-.734h1.467v-1.467h2.281v2.934h-3.748Z"/>
|
||||||
|
<path d="M270.127 458.669v-1.467h2.608v2.934h-2.608Z"/>
|
||||||
|
<path d="M461.506 569.357v-.653h2.772v1.305h-2.772Z"/>
|
||||||
|
<path d="M452.051 569.52v-5.706h5.054v6.032h.326v-6.032h6.847v1.793h-1.468v1.467h-1.629v3.261h3.097v4.891h-6.847v-2.61h-.326v2.61h-5.054Z"/>
|
||||||
|
<path d="m551.779 584.932.646-1.316.805.395.804.396-.646 1.317-.648 1.317-.805-.396-.804-.396Z"/>
|
||||||
|
<path d="m546.805 582.485.648-1.316.219.107.22.109.072-.147.072-.146-.22-.108-.219-.108.143-.292.145-.293-.147-.072-.146-.071-.144.292-.144.292-3.29-1.619-3.291-1.62 1.259-2.558 1.259-2.561 3.291 1.619 3.292 1.62-.865 1.756-.863 1.754.147.072.145.072 1.656-3.364 1.655-3.364 1.17.576 1.17.576-1.367 2.779-1.368 2.779.294.143.292.144.072-.145c.039-.081.006-.18-.075-.219l-.146-.072 1.296-2.632 1.296-2.634 1.974.972 1.975.972-1.296 2.632-1.296 2.634-1.316-.648-1.317-.648-.072.147-.072.145.294.144.292.145-.217.439-.215.439.146.07.146.073.216-.439.216-.439.878.433.878.431-.685 1.389-.683 1.39-.878-.431-.877-.432.215-.439.217-.439-.147-.072-.146-.072-.216.439-.216.439-1.536-.756-1.536-.755-.072.145-.072.147 1.025.503 1.023.504-.324.658-.324.659-.658-.324-.657-.324-.324.658-.324.659-1.097-.541-1.098-.539Z"/>
|
||||||
|
<path d="M279.583 503.219v12.879h-6.522v1.303h.978v.326h-1.467v3.922h.204v.335l-.204.01v1.276h-.325v-5.542h-2.934v7.009h2.934v-.163l.001-.162h.325v.651h-3.26v.278h-.265v-7.613h-4.564v8.965h2.71v.327h-5.217v.489h-.326v-.489h-2.608v-.327h.814v-2.445h-3.585v-1.467h-1.468v3.912h.816v.327h-7.173v1.793h13.204v-.489h.326v.489h3.424v.325h-3.261v7.011h4.564v-7.011h-.329l.004-.162v-.163h.978v.163l.001.162h-.327v7.011h3.75v-5.869h-2.12l-.019-.611.011-1.412h.257v1.712h1.886v-2.943h-1.886v.415h-.233l.014-.421h-.518v-.326l.162-.001h.713v-.309h.266v.309h3.423v.326h-1.631v9.129h5.217v-9.129h-2.608l-.004-.321.329-.011.002-.41.33-.003.022.419h1.929v-1.467h-1.956v.164l.001.162h-.328v-2.119h.327v1.467h1.956v-2.934h-1.956v.652h-.327v-.652h-.324l-.001-.164v-.162h2.608v-3.913h-1.305v-.326h2.446v.326h-.815v3.424h5.053v-3.424h-.815v-.326h.815v-14.182Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 233 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
|
@ -0,0 +1,132 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="svg283" width="605.32397" height="831.57751" version="1.1" viewBox="0 0 605.32395 831.57753">
|
||||||
|
<style id="style_common">
|
||||||
|
.trees { fill:#144043 }
|
||||||
|
.cement { fill:#c6c2c2 }
|
||||||
|
.land { fill:#1f5054 }
|
||||||
|
.rock { fill:#dcd5b6 }
|
||||||
|
.water { fill:#4a6b96 }
|
||||||
|
.wood { fill:#593700 }
|
||||||
|
.tarmac { fill:#768089 }
|
||||||
|
.gravel { fill:#946d3e }
|
||||||
|
.building { fill:#1a2632 }
|
||||||
|
.floor { fill:#70777f }
|
||||||
|
.locked { fill:#37414c }
|
||||||
|
.map_border { fill:none;stroke:#000;stroke-width:2 }
|
||||||
|
.fence { fill:none;stroke:#c4e3c3;stroke-width:1 }
|
||||||
|
.road_tarmac { fill:none;stroke:#888 }
|
||||||
|
.road_gravel { fill:none;stroke:#946d3e }
|
||||||
|
.road_small { stroke-width:5 }
|
||||||
|
.road_medium { stroke-width:8 }
|
||||||
|
.road_large { stroke-width:12 }
|
||||||
|
.railroad { fill:none;stroke:#914833;stroke-dasharray:6;stroke-width:3 }
|
||||||
|
.powerline { fill:none;stroke:#ffce00;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:6,6 }
|
||||||
|
.danger { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:4,2;stroke-width:2 }
|
||||||
|
.danger_small { fill:red;fill-opacity:.4;stroke:red;stroke-dasharray:2,1;stroke-width:1 }
|
||||||
|
.task { fill:#000 }
|
||||||
|
.stairs { fill:#FFD700 }
|
||||||
|
.shadow { filter:drop-shadow(0 0 2px #000) }
|
||||||
|
</style>
|
||||||
|
<defs id="defs1">
|
||||||
|
<path id="stairs-16" d="M381.676 148.906v-1.548h3.26v3.096h-3.26Z"/>
|
||||||
|
<path id="stairs-17" d="M280.453 177.431v-1.06h1.141v-.489h1.467v2.608h-2.608Z"/>
|
||||||
|
<path id="stairs-18" d="M368.473 182.076v-2.771h3.586v5.542h-3.586Z"/>
|
||||||
|
<path id="stairs-19" d="m365.574 220.143.496-2.809 2.086.368 2.087.368-.495 2.809-.496 2.809-2.086-.368-2.087-.368Z"/>
|
||||||
|
<path id="stairs-20" d="m477.902 232.937.227-1.285-1.124-.198-1.123-.198.212-1.204.212-1.204 2.167.382 2.167.382-.438 2.489-.439 2.488-1.044-.184-1.043-.184Z"/>
|
||||||
|
<path id="stairs-21" d="m351.601 240.03 4.852.943-.739 4.856-4.971-.908Z"/>
|
||||||
|
<path id="stairs-22" d="m429.204 261.087-1.519-2.05 1.587-1.105 1.586-1.105 1.523 1.899.914 1.208-1.709 1.249-1.561 1.088Z"/>
|
||||||
|
<path id="stairs-23" d="m402.038 272.665.432-2.347 4.654.831-.408 2.306-.433 2.347-2.338-.395-2.339-.395Z"/>
|
||||||
|
<path id="stairs-24" d="M196.834 282.077v-.734h.489v-1.141h2.119v2.608h-2.608Z"/>
|
||||||
|
<path id="stairs-25" d="m434.84 283.122.299-1.691 1.637.335 1.637.336-.085.771-.086.771-.811-.143-.812-.143-.155.883-.156.883-.883-.156-.883-.155Z"/>
|
||||||
|
<path id="stairs-26" d="m492.158 293.848.128-.722-.723-.127-.722-.128.141-.802.142-.803 1.445.255 1.444.255-.268 1.525-.269 1.525-.723-.128-.722-.127Z"/>
|
||||||
|
<path id="stairs-27" d="M203.028 338.312v-1.06h2.282v2.119h-2.282Z"/>
|
||||||
|
<path id="stairs-28" d="m367.373 350.578.184-1.044 1.846.326 1.846.325-.184 1.044-.184 1.043-1.846-.325-1.846-.326Z"/>
|
||||||
|
<path id="stairs-29" d="M72.9542 357.464v-2.445h4.238v2.608h-.489v2.282h-3.749Z"/>
|
||||||
|
<path id="stairs-30" d="M275.563 363.658v-.815h1.793v3.108h-1.793Z"/>
|
||||||
|
<path id="stairs-31" d="m432.515 363.094.354-2.006 1.765.311 1.766.311-.184 1.044-.184 1.043-.802-.141-.803-.142-.17.963-.17.963-.963-.169-.963-.17Z"/>
|
||||||
|
<path id="stairs-32" d="M272.466 364.392v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-33" d="M97.7302 368.222v-1.956h1.63v2.282h1.4668v1.63h-3.0968Z"/>
|
||||||
|
<path id="stairs-34" d="M143.533 380.447v-1.467h2.119v1.63h-.978v1.304h-1.141Z"/>
|
||||||
|
<path id="stairs-35" d="M54.0462 385.663v-1.304h.978v-2.119h3.586v4.727h-4.564Z"/>
|
||||||
|
<path id="stairs-36" d="m438.055 395.533.24-1.365-1.445-.255-1.444-.254.184-1.044.184-1.043 2.568.453 2.568.453-.424 2.408-.425 2.407-1.123-.198-1.124-.198Z"/>
|
||||||
|
<path id="stairs-37" d="m425.878 392.31.425-2.408 2.568.453 2.569.453-.184 1.043-.184 1.044-1.445-.255-1.445-.255-.24 1.364-.241 1.365-1.124-.198-1.123-.198Z"/>
|
||||||
|
<path id="stairs-38" d="M110.444 401.882v-1.549h3.586v1.63h-1.793v1.467h-1.793Z"/>
|
||||||
|
<path id="stairs-39" d="M132.775 415.248v-1.386h1.63v1.304h.978v1.467h-2.608Z"/>
|
||||||
|
<path id="stairs-40" d="m408.637 427.465.416-2.354 2.438.43 2.438.43-.415 2.354-.415 2.354-2.438-.43-2.439-.429Z"/>
|
||||||
|
<path id="stairs-41" d="m208.028 427.533.684-1.667 1.65.676 1.36.55-.641 1.587-.641 1.587-1.512-.611-1.511-.61Z"/>
|
||||||
|
<path id="stairs-42" d="M275.563 429.755v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-43" d="M272.466 429.755v-1.549h1.793v3.097h-1.793Z"/>
|
||||||
|
<path id="stairs-44" d="m218.979 430.578.61-1.512 1.663.672 1.206.482-.547 1.367-.672 1.662-1.435-.58-1.436-.58Z"/>
|
||||||
|
<path id="stairs-45" d="M239.214 433.015v-1.549h3.097v1.63l-.002 1.466-1.465.001h-1.63Z"/>
|
||||||
|
<path id="stairs-46" d="m192.755 442.334.616-1.512 1.657.672 1.36.55-.61 1.511-.611 1.511-1.511-.61-1.512-.611Z"/>
|
||||||
|
<path id="stairs-47" d="m371.773 449.959.421-2.387 2.557.451 2.556.451-.42 2.386-.421 2.386-2.557-.45-2.556-.451Z"/>
|
||||||
|
<path id="stairs-48" d="M110.281 452.738v-1.549h1.956v1.467h1.793v1.63h-3.749Z"/>
|
||||||
|
<path id="stairs-49" d="M272.792 458.687v-1.467h3.097v1.467h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-50" d="M103.761 474.906v-2.96h1.63v3.367h3.097v1.304h-4.727Z"/>
|
||||||
|
<path id="stairs-51" d="m138.031 483.918.108-.22-.66-.322-.659-.321.286-.586.286-.586 1.318.643 1.319.643-.393.806-.393.805-.66-.321-.659-.322Z"/>
|
||||||
|
<path id="stairs-52" d="M216.394 520.709v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-53" d="M186.891 520.709v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-54" d="M276.704 521.931v-.815h1.467v1.63h-1.467Z"/>
|
||||||
|
<path id="stairs-55" d="M254.862 521.931v-.815h1.467v1.63h-1.467Z"/>
|
||||||
|
<path id="stairs-56" d="M280.29 522.665v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-57" d="M258.448 522.665v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-58" d="M131.634 526.251v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-59" d="M502.785 526.414v-1.549h1.467v3.097h-1.467Z"/>
|
||||||
|
<path id="stairs-60" d="m567.588 538.539.684-1.389 1.097.539 1.097.54-.684 1.389-.684 1.39-1.097-.54-1.097-.54Z"/>
|
||||||
|
<path id="stairs-61" d="M437.748 547.767v-.408h2.119v.815h-2.119Z"/>
|
||||||
|
<path id="stairs-62" d="M519.612 545.516c.075-.738.294-1.472.624-2.136.315-.633.762-1.206 1.265-1.703.457-.452.943-.961 1.563-1.131.811-.222 1.703.003 2.513.23.68.192 1.902.936 1.902.936l-.468.951-.468.95s-1.483-.826-2.302-.86c-.365-.015-1.055.298-1.055.298l4.363 1.906-.841 1.644-.826 1.69-4.135-2.314s.115.814.353 1.127c.497.653 2.068 1.336 2.068 1.336l-.432.877-.431.878s-1.327-.526-1.902-.936c-.618-.441-1.297-.916-1.617-1.604-.302-.649-.247-1.427-.174-2.139Z"/>
|
||||||
|
<path id="stairs-63" d="M470.185 561.051v-1.467h3.097v1.467h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-64" d="M461.506 569.161v-2.123h1.304v-1.467h1.467v4.405h-2.771Z"/>
|
||||||
|
<path id="stairs-65" d="m498.861 568.922.72-1.463 1.608.792 1.609.791-.36.732-.36.731-.804-.396-.804-.396-.36.732-.36.731-.804-.396-.805-.396Z"/>
|
||||||
|
<path id="stairs-66" d="M452.092 570.75v-1.223h1.304v2.445h-1.304Z"/>
|
||||||
|
<path id="stairs-67" d="M221.773 572.706v-1.549h2.608v1.467h2.445v1.63h-5.053Z"/>
|
||||||
|
<path id="stairs-68" d="M417.21 573.765v-.815h1.304v-1.467h1.467v3.097h-2.771Z"/>
|
||||||
|
<path id="stairs-69" d="M407.593 573.032v-1.549h1.467v1.467h1.304v1.63h-2.771Z"/>
|
||||||
|
<path id="stairs-70" d="m548.44 584.083.324-.658.731.36.732.36.323-.659.324-.658.805.396.804.396-.648 1.316-.647 1.316-1.536-.755-1.536-.756Z"/>
|
||||||
|
<path id="stairs-71" d="M212.971 585.746v-1.549h3.097v1.467h-1.467v1.63h-1.63Z"/>
|
||||||
|
<path id="stairs-72" d="M110.444 592.184v-1.304h2.934v1.467h-1.467v1.141h-1.467Z"/>
|
||||||
|
<path id="stairs-73" d="M427.968 592.429v-1.386h2.934v1.467h-1.304v1.304h-1.63Z"/>
|
||||||
|
<path id="stairs-74" d="m493.214 594.013 1.583-3.218 2.414 1.188 2.413 1.187-.053.111-.052.11-1.181 1.012-1.182 1.013-.315-.282c-.106-.093-.197-.205-.316-.281-.138-.088-.296-.138-.449-.195-.129-.048-.257-.119-.395-.123-.159-.004-.316.055-.464.115-.147.06-.3.127-.41.241-.173.18-.238.439-.352.661-.121.236-.352.715-.352.715l1.17.576 1.17.575-.431.878-.598 1.099-1.975-.971-1.974-.972Z"/>
|
||||||
|
<path id="stairs-75" d="m467.985 597.544-2.084-1.428.768-1.232.831-1.233 1.954 1.163 1.89 1.163-.839 1.597-.694 1.128Z"/>
|
||||||
|
<path id="stairs-76" d="M214.438 601.72v-.734h1.956v1.467h-1.956Z"/>
|
||||||
|
<path id="stairs-77" d="M263.501 603.105v-2.725h1.63v-1.024h1.793v5.053h-3.423Z"/>
|
||||||
|
<path id="stairs-78" d="M221.936 612.478v-1.712h5.053v1.793h-2.445v1.63h-2.608Z"/>
|
||||||
|
<path id="stairs-79" d="M258.285 632.066v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-80" d="M112.074 641.981v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-81" d="M171.895 665.127v-1.549h1.63v1.467h1.467v1.63h-3.097Z"/>
|
||||||
|
<path id="stairs-82" d="M60.8922 671.321v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-88" d="M122.832 696.26v-.734h-1.467v-1.63h3.097v3.097h-1.63Z"/>
|
||||||
|
<path id="stairs-89" d="M62.8482 695.445v-1.549h3.097v1.63h-1.467v1.467h-1.63Z"/>
|
||||||
|
<path id="stairs-94" d="m184.534 751.779-.489-.847 1.624-.937 1.623-.937.489.847.489.847-1.623.937-1.624.937Z"/>
|
||||||
|
<path id="stairs-95" d="M501.481 761.786v-1.549h1.467v1.467h1.467v1.63h-2.934Z"/>
|
||||||
|
<path id="stairs-96" d="M492.842 785.013v-2.282h1.304v4.564h-1.304Z"/>
|
||||||
|
<path id="stairs-97" d="M375.84 755.417v3.763h3.878v-1.651h-2.112v-2.112Z"/>
|
||||||
|
<path id="cinema-1" d="M485.344 690.31v-2.282h5.053v3.097h-2.445v1.467h-2.608Z"/>
|
||||||
|
<path id="cinema-2" d="M485.344 708.729v-2.282h2.608v1.467h2.445v3.097h-5.053Z"/>
|
||||||
|
<path id="cinema-3" d="M499.199 681.373h3.097v1.793h-3.097Z"/>
|
||||||
|
<path id="cinema-4" d="M499.199 716.747v-.978h3.097v1.956h-3.097Z"/>
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
<g id="Underground_Level" class="shadow">
|
||||||
|
<g id="Stairs-U" class="stairs">
|
||||||
|
<use xlink:href="#stairs-80" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-81" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-82" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-88" x="0" y="0"/>
|
||||||
|
<use xlink:href="#stairs-89" x="0" y="0"/>
|
||||||
|
<path d="M297.512 278.561h-5.038v3.561h5.038Z"/>
|
||||||
|
<path d="M294.762 321.385h-5.009v3.417h5.009Z"/>
|
||||||
|
<path d="m335.386 327.929.723-3.445 4.962 1.042-.724 3.446Z"/>
|
||||||
|
<path d="m333.71 289.314-.676 3.484 4.975.964.676-3.483Z"/>
|
||||||
|
</g>
|
||||||
|
<g id="Floor-U" class="floor">
|
||||||
|
<path d="m328.042 326.505-5.746-.011-5.828-.011v-2.608h-3.424v2.608h-2.445v-2.608h-3.423v2.608h-8.151v-1.68h-4.217v-3.423h4.217v-39.236h-1.465v-3.587h30.482v9.53l5.654 1.201-.618 3.524-5.036-1.023v30.904l8.005 1.764-.586 3.542Zm-23.8-6.519v-.815h-1.63v1.629h1.63Zm19.888 0v-.815h-1.631v1.629h1.631Zm-5.054-7.58v-7.744h-11.248v15.487h11.248Zm-14.834 1.874v-.815h-1.63v1.631h1.63Zm19.888 0v-.815h-1.631v1.631h1.631Zm-19.888-5.706v-.814h-1.63v1.63h1.63Zm19.888 0v-.814h-1.631v1.63h1.631Zm-19.888-5.704v-.816h-1.63v1.63h1.63Zm19.888 0v-.816h-1.631v1.63h1.631Zm-5.054-11.33v-7.743h-11.248v15.485h11.248Zm-14.834 5.624v-.816h-1.63v1.631h1.63Zm19.888 0v-.816h-1.631v1.631h1.631Zm-19.888-5.706v-.815h-1.63v1.63h1.63Zm19.888 0v-.815h-1.631v1.63h1.631Zm-19.888-5.705v-.815h-1.63v1.629h1.63Zm19.888 0v-.815h-1.631v1.629h1.631Z"/>
|
||||||
|
<path d="M171.873 666.963v-.245h3.098v-1.631h-1.467v-1.467h-1.631v-2.281h3.75v5.868h-3.75Z"/>
|
||||||
|
<path d="M110.58 709.101v-3.748h1.304v-.327h-1.304v-6.031h-.326v9.944h-7.173v-9.944h-.326v6.358H63.1428v-3.098h7.9877v-9.128h-7.4987v.325h3.2604v4.076h-5.8686v-4.076h.9781v-.325H48.4715v-22.985h5.2165v6.846h9.2918v-7.01h-.3261v4.076h-3.9123v-6.032h4.2384v-8.639h4.8905v-1.305h.978v-.326h-1.3041v1.304h-4.5644v-6.684h7.9877v5.38h-.9781v.326h1.3042v-5.706h38.7974v-5.704h5.542v-5.38h-.325v3.749h-3.587v-5.869h3.587v.978h.325v-.978h5.706v13.204h44.014v5.544h4.239v-.327h-3.912v-5.217h5.868v5.217h-.815v.327h.815v6.846h.325v1.467h-.325v21.192h-45.156v5.379h-.814v.327h.814v3.748h-1.956v-2.934h-3.097v1.631h1.467v1.303h-2.282v-3.748h3.587v-.327h-5.869v9.944h3.423v2.282h-8.151v.327h8.151v7.498H110.58Zm-46.133-12.796v-.733h1.4671v-1.631h-3.0974v3.098h1.6303Zm63.087-26.49v-5.868H115.96v11.737h11.574Zm37.982-.082v-5.46h-5.705v10.922h5.705Zm-103.0252.816V669h-3.0974v1.631h1.4671v1.467h1.6303Zm51.1862-27.713v-.734h1.467v-1.629h-3.097v3.096h1.63Z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 332 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 488 KiB |