diff options
| author | Christopher Gwynn <[email protected]> | 2021-05-17 10:07:07 -0400 |
|---|---|---|
| committer | Christopher Gwynn <[email protected]> | 2021-05-17 10:07:07 -0400 |
| commit | 2e08c410343725611f9034cbd6a2e28aeab985c7 (patch) | |
| tree | 54e92cf9dd39ecb8c80000f15beffef4ce06b814 | |
| parent | Update README.md (diff) | |
| download | wizard101-rpc-2e08c410343725611f9034cbd6a2e28aeab985c7.tar.xz wizard101-rpc-2e08c410343725611f9034cbd6a2e28aeab985c7.zip | |
purge for electron
| -rw-r--r-- | LICENSE | 21 | ||||
| -rw-r--r-- | README.md | 55 | ||||
| -rw-r--r-- | index.js | 208 | ||||
| -rw-r--r-- | package.json | 12 | ||||
| -rw-r--r-- | settings.json | 1 | ||||
| -rw-r--r-- | yarn.lock | 86 | ||||
| -rw-r--r-- | zones.json | 2694 |
7 files changed, 0 insertions, 3077 deletions
diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 8c78347..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2021 Christopher Gwynn - -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. diff --git a/README.md b/README.md deleted file mode 100644 index 72e3635..0000000 --- a/README.md +++ /dev/null @@ -1,55 +0,0 @@ -# Wizard101-RPC ->The best way to show Wizard101 in-game stats on your Discord profile - -If you're anything like me, you play a lot of wiz, and you use discord. The only issue is Kingsisle hasn't done much in terms of Discord integration, and previous solutions no longer work. Wizard101-RPC is a console app that will read health and zone information from logs provided by Wizard101 while you play, and display them on your Discord profile. - - - -## Installation -A compiled version can be found on the releases page [here](https://github.com/Bacon1661/wizard101-rpc/releases). Only Windows is supported at this moment. Other platforms can be easily ported over though, and will be soon! - -Unfortunately, I don't have the money to sign anything, so you may get a message from windows on the initial launch stating, "Windows protected your PC". If this happens, click "More info", then "Run anyway", and it shouldn't happen again. Always check files you don't trust with tools like [virustotal.com](https://www.virustotal.com/) and your preferred antivirus. - -### Initial Startup -For Wizard101-RPC to work, it must be able to read logs Wizard101 provides. Therefore, it must know where Wizard101 is installed. Two places will be checked initially: -- The default location `C:\ProgramData\KingsIsle Entertainment\Wizard101` -- The default Steam location `C:\Program Files (x86)\Steam\steamapps\common\Wizard101` - -If a log file can't be found where expected from these locations, you will be prompted to enter a valid path before Wizard101-RPC will work. The entered path must lead to the Wizard101 folder, just as the default ones above. - -The startup setting will default to `quick`, meaning Wizard101 will quick launch when Wizard101-RPC starts. See the Commands section to change this. - -## Usage -After finding a valid path and having successfully connected to your Discord client, Wizard101-RPC will show information on your profile while running. Please note that you must have Discord installed. Only the standard version of Discord has been tested. Other versions are expected to work, but it's not guaranteed. - -Since Wizard101-RPC must run while you play, it has the ability to run Wizard101 (even quick launch to skip patching) on startup. This way you don't have to run two seperate programs when you want to have rich presence work while you play. - -### Commands -You can type in commands to change various settings. Type in the command name followed by an expected value. - -- #### `path <path to wizard101>` - - Change the path of where Wizard101-RPC will read information from if valid - - default: A default location, if it exists - - example: `path D:\Steam\steamapps\common\Wizard101` -- #### `startup <quick|normal|none>` - - Sets how Wizard101 will launch when Wizard101-RPC is started - - quick: quick launch (skip patching, instant login screen) - - normal: normal launch - - none: will not launch - - default: quick - - example: `startup none` - -## Support -Feel free to DM me on Discord at Bacon#1661. If you prefer, or you believe you found a bug, you can open an issue instead. - -## Roadmap -Some ideas to consider for the future in descending importance: -- MacOS and Linux support (Looking for MacOS test subjects, DM me!) -- Additional commands to let users customize the app, such as if to close when the game closes, how often information is retrieved from the logs, customization of rich presence elements, etc.. -- A GUI with Electron. Arguably not needed with a simple program like this. Probably won't happen unless there's a good enough demand. - -## Contributing -Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. - -## License -[MIT](https://choosealicense.com/licenses/mit/) diff --git a/index.js b/index.js deleted file mode 100644 index 320563f..0000000 --- a/index.js +++ /dev/null @@ -1,208 +0,0 @@ -const fs = require("fs"); -const path = require("path"); -const readline = require("readline"); -const https = require("https"); -const { exec } = require("child_process"); -const readLastLines = require("read-last-lines"); -const DiscordRPC = require("discord-rpc"); -const zones = require(path.join(__dirname, "./zones.json")); -const settings = require(path.join(__dirname, "./settings.json")); -const package = require(path.join(__dirname, "./package.json")); -const rl = readline.createInterface({ - input: process.stdin, - output: process.stdout, - terminal: false -}); -let rpc; - -console.log(" _ _ __ ___ __ \n (_) | /_ |/ _ \\/_ | \n __ ___ ______ _ _ __ __| || | | | || |______ _ __ _ __ ___ \n \\ \\ /\\ / / |_ / _` | \'__/ _` || | | | || |______| \'__| \'_ \\ / __|\n \\ V V /| |/ / (_| | | | (_| || | |_| || | | | | |_) | (__ \n \\_/\\_/ |_/___\\__,_|_| \\__,_||_|\\___/ |_| |_| | .__/ \\___|\n | | \n "); -console.log("https://github.com/Bacon1661/wizard101-rpc\n"); - -function setPresence() { - let oldLineCount, zone, world, health, activity, currentTime; - (async () => { oldLineCount = await countLines(); })(); - - fs.watchFile(settings.path, { interval: 100 }, async (_curr, _prev) => { - let currentLineCount = await countLines(); - readLastLines.read(settings.path, currentLineCount - oldLineCount).then(async (logChunk) => { - // Get zone - const zoneRegex = new RegExp(/zone = (.+),|CHARACTER LIST/gm); - let tempZone = logChunk.match(zoneRegex); - - if(tempZone) { - tempZone = zoneRegex.exec(tempZone[tempZone.length - 1]); - zone = tempZone[1] || tempZone[0]; - - world = /= (.+?)\/(.+)/.exec(tempZone); - world = world && zones.zoneNames[world[1]] ? world[1] : "WizardCity"; - } - - // Get health - const healthRegex = new RegExp(/Updating health globe \(new health: (\d+), new health max: (\d+)\)\r\n(?!(.+)called for a player that is not this client's!)/gm); // /Updating health globe \(new health: (\d+), new health max: (\d+)\)\n(?!(.+)called for a player that is not this client's!)/gm - let tempHealth = logChunk.match(healthRegex); - - if(tempHealth) { - health = healthRegex.exec(tempHealth[tempHealth.length - 1]); - health = health[2] < health[1] ? [health[1], health[1]] : [health[1], health[2]]; - } - - // Check if the game has been quit - if(logChunk.match(/GameClient::HandleQuit\(\)|Logout due to Away From Keyboard/) && activity && settings.startup !== "none") { - rpc.destroy(); - process.exit(); - } - }).catch((err) => { console.log(err); }); - oldLineCount = currentLineCount; - - if((!activity && zone) || activity && (activity.details !== zones[zone] || health && activity.state !== `Health: ${health[0]}/${health[1]}`)) { - if(!activity || activity.details !== zones[zone]) currentTime = new Date(); - if(zone === "CHARACTER LIST") health = null; - activity = { - details: zones[zone], - state: zone === "CHARACTER LIST" ? undefined : `Health: ${health ? `${health[0]}/${health[1]}` : "unknown"}`, - startTimestamp: currentTime, - largeImageKey: world.toLowerCase(), - largeImageText: zones.zoneNames[world], - instance: false - }; - rpc.setActivity(activity); - } - }); -} - -function countLines() { - return new Promise((resolve, reject) => { - let lineCount = 0; - fs.createReadStream(settings.path).on("data", (buffer) => { - let index = -1; - lineCount--; - do { - index = buffer.indexOf(10, index + 1); - lineCount++; - } while(index !== -1); - }).on("end", () => resolve(lineCount)).on("error", reject); - }); -} - -(function updates() { - console.log("Checking for updates..."); - getJSON("https://raw.githubusercontent.com/Bacon1661/wizard101-rpc/master/package.json"); - - function getJSON(url, runConf) { - https.get(url, (res) => { - let body = ""; - - res.on("data", (data) => body += data); - - res.on("end", async () => { - try { - let file; - file = JSON.parse(body); - if(runConf) { - console.log("Updating zones.json..."); - if(file.zoneNames) await fs.writeFile(path.join(__dirname, "./zones.json"), JSON.stringify(file, null, 4), () => { /* do nothing */ }); - configureSettings(); - } else { - if(file.version !== package.version) console.log(`Version ${file.version} is available! Go here to download it: https://github.com/Bacon1661/wizard101-rpc/releases\n`); - getJSON("https://raw.githubusercontent.com/Bacon1661/wizard101-rpc/master/zones.json", true); - } - } catch(err) { - console.error(`Error accessing the GitHub repository: ${err.message}`); - if(runConf) return configureSettings(); - getJSON("https://raw.githubusercontent.com/Bacon1661/wizard101-rpc/master/zones.json", true); - } - }); - }).on("error", (err) => { - console.error(`Error accessing the GitHub repository: ${err.message}`); - if(runConf) return configureSettings(); - getJSON("https://raw.githubusercontent.com/Bacon1661/wizard101-rpc/master/zones.json", true); - }); - } -}()); - -async function configureSettings() { - const defaultPath = "C:\\ProgramData\\KingsIsle Entertainment\\Wizard101\\Bin\\WizardClient.log"; - const defaultSteamPath = "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Wizard101\\Bin\\WizardClient.log"; - - if(!settings.path || !fs.existsSync(settings.path)) { - settings.path === null; - const defaultValidPath = fs.existsSync(defaultPath) ? defaultPath : fs.existsSync(defaultSteamPath) ? defaultSteamPath : null; - if(defaultValidPath) { - settings.path = defaultValidPath; - await fs.writeFile(path.join(__dirname, "./settings.json"), JSON.stringify(settings), () => { /* do nothing */ }); - console.log(`Fetching data for RPC from ${defaultValidPath.slice(0, defaultValidPath.length - 21)}\n`); - } - } - - // handle command inputs - if(!settings.startup) { - console.log("No startup settings detected, using the 'quick' startup setting!\nIn the future, run this program instead and Wizard101-RPC will quick launch Wizard101 for you.\n\nYou can change this by using the 'startup' command.\nUsage: startup <quick|normal|none>\nExample Usage:\nstartup quick - Set Wizard101-RPC to quick launch (skip patching, instant login) Wizard101 on startup.\nstartup normal - Set Wizard101-RPC to launch Wizard101 normally on startup.\nstartup none - Set Wizard101-RPC to not launch Wizard101 on startup.\n"); - settings.startup = "quick"; - await fs.writeFile(path.join(__dirname, "./settings.json"), JSON.stringify(settings), () => { /* do nothing */ }); - } - if(!settings.path) console.log("Could not find Wizard101 at a default path! Please enter a valid path to continue.\nExample path (does not have to be steam): D:\\Steam\\steamapps\\common\\Wizard101"); - - rl.on("line", async (input) => { - if(!settings.path) await pathCommand(null, input); - if(!rpc && settings.path) return connectDiscord(); - - let args = input.split(/\s+/g); - if(!args[0] || typeof args[0] !== "string") return; - args[0] = args[0].toLowerCase(); - if(args[0] === "path") pathCommand(args); - if(args[0] === "startup") startupCommand(args); - }); - - async function pathCommand(args, init) { - if(args && !args[1]) return console.log("\nChange the path of where Wizard101-RPC will read information from if valid.\nUsage: path <path>\nExample Usage: path D:\\Steam\\steamapps\\common\\Wizard101"); - if(!fs.existsSync(`${init || args[1]}\\Bin\\WizardClient.log`)) return console.log(init ? `\nCould not find Wizard101 at the path "${init || args[1]}".\nA valid path will need to be supplied to the Wizard101 folder before Wizard101-RPC can run properly. Make sure you've ran the game at least once. Please try again.\nExample path (does not have to be steam): D:\\Steam\\steamapps\\common\\Wizard101` : `\nCould not find Wizard101 at the path "${init || args[1]}".\nUsage: path <path>\nExample usage: path D:\\Steam\\steamapps\\common\\Wizard101`); - - settings.path = `${init || args[1]}\\Bin\\WizardClient.log`; - await fs.writeFile(path.join(__dirname, "./settings.json"), JSON.stringify(settings), () => { /* do nothing */ }); - console.log(`\nNew path set to "${init || args[1]}". If a path was already set, Wizard101-RPC won't read from the new path until its has been restarted.`); - } - - async function startupCommand(args) { - if(!args[1]) return console.log("\nSets how Wizard101-RPC will start Wizard101, if at all.\nUsage: startup <quick|normal|none>\n\nExample Usage:\nstartup quick - Set Wizard101-RPC to quick launch Wizard101 on startup.\nstartup normal - Set Wizard101-RPC to launch Wizard101 normally on startup.\nstartup none - Set Wizard101-RPC to not launch Wizard101 on startup."); - args[1] = args[1].toLowerCase(); - - if(args[1] === "quick" || args[1] === "normal" || args[1] === "none") { - settings.startup = args[1]; - await fs.writeFile(path.join(__dirname, "./settings.json"), JSON.stringify(settings), () => { /* do nothing */ }); - console.log(`\nStartup settings set to '${args[1]}'.`); - } else { - console.log(`\nInvalid argument '${args[1]}'. Please use 'quick', 'normal', or 'none'.`); - } - } - if(settings.path) connectDiscord(); -} - -let reconnect; -function connectDiscord() { - console.log("\nConnecting to your Discord app..."); - rl.pause(); - - rpc = new DiscordRPC.Client({ transport: "ipc" }); - - rpc.once("ready", () => { - console.log("Successfully connected to Discord!\nWizard101-RPC is ready! Information will be shown on your Discord profile when the game starts, or when the zone changes."); - clearInterval(reconnect); - setPresence(); - rl.resume(); - - // Launch wiz - if(settings.startup === "none") return; - process.chdir(settings.path.slice(0, settings.path.length - (settings.startup === "quick" ? 17 : 21))); - settings.startup === "quick" ? exec("WizardGraphicalClient.exe -L 165.193.63.4 12000", (err) => console.log(`\nQuick launched Wizard101!\nIf you encounter an issue, try running Wizard101 normally.\n${err ? err : ""}`)) : settings.startup === "normal" ? exec("Wizard101.exe", _err /* an error will always be made, even when successful*/ => console.log("\nLaunched Wizard101!")) : null; - }); - - rpc.login({ clientId: "799404226081849345" }).then(() => { - clearInterval(reconnect); - }).catch((err) => { - console.log(`${err}\nMake sure Discord is running. You might need to restart Discord (Ctrl+R on Discord).`); - if(!reconnect && !rpc.user) { - reconnect = setInterval(connectDiscord, 10050); - connectDiscord(); - } - }); -} diff --git a/package.json b/package.json deleted file mode 100644 index 2ec63a3..0000000 --- a/package.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "wizard101-rpc", - "version": "1.0.0", - "description": "Discord Rich Presence for Wizard101!", - "main": "index.js", - "author": "Christopher Gwynn", - "license": "MIT", - "dependencies": { - "discord-rpc": "discordjs/rpc", - "read-last-lines": "^1.8.0" - } -} diff --git a/settings.json b/settings.json deleted file mode 100644 index 2353159..0000000 --- a/settings.json +++ /dev/null @@ -1 +0,0 @@ -{"path":"","startup":""}
\ No newline at end of file diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index c7d98b3..0000000 --- a/yarn.lock +++ /dev/null @@ -1,86 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -any-promise@^1.0.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" - integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= - -bindings@^1.3.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -discord-rpc@discordjs/rpc: - version "3.2.0" - resolved "https://codeload.github.com/discordjs/rpc/tar.gz/32f1b9f8c47cf82ab87a83391ca9a9115513f01e" - dependencies: - node-fetch "^2.6.1" - ws "^7.3.1" - optionalDependencies: - register-scheme "github:devsnek/node-register-scheme" - - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -mz@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" - integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== - dependencies: - any-promise "^1.0.0" - object-assign "^4.0.1" - thenify-all "^1.0.0" - -node-addon-api@^1.3.0: - version "1.7.2" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" - integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== - -node-fetch@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - -object-assign@^4.0.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - -read-last-lines@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/read-last-lines/-/read-last-lines-1.8.0.tgz#4f94d4345ece7b8083ebb71c5fcdf60bd7afb9cc" - integrity sha512-oPL0cnZkhsO2xF7DBrdzVhXSNajPP5TzzCim/2IAjeGb17ArLLTRriI/ceV6Rook3L27mvbrOvLlf9xYYnaftQ== - dependencies: - mz "^2.7.0" - -"register-scheme@github:devsnek/node-register-scheme": - version "0.0.2" - resolved "https://codeload.github.com/devsnek/node-register-scheme/tar.gz/e7cc9a63a1f512565da44cb57316d9fb10750e17" - dependencies: - bindings "^1.3.0" - node-addon-api "^1.3.0" - -thenify-all@^1.0.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" - integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY= - dependencies: - thenify ">= 3.1.0 < 4" - -"thenify@>= 3.1.0 < 4": - version "3.3.1" - resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" - integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== - dependencies: - any-promise "^1.0.0" - -ws@^7.3.1: - version "7.4.5" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" - integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== diff --git a/zones.json b/zones.json deleted file mode 100644 index f0f1da2..0000000 --- a/zones.json +++ /dev/null @@ -1,2694 +0,0 @@ -{ - "Aquila/AQ_Z00_Hub": "Garden of Hesperides", - "Aquila/AQ_Z01_MountOlympus": "Mount Olympus", - "Aquila/AQ_Z02_Atlantea": "Atlantea", - "Aquila/AQ_Z02_Atlantea02": "Atlantea", - "Aquila/AQ_Z03_Tartarus": "Tartarus", - "Aquila/Interiors/AQ_Z00_I01_GorgonCave": "Gorgon Cave", - "Aquila/Interiors/AQ_Z00_PanoptesLair": "Panopte's Lair", - "Aquila/Interiors/AQ_Z01_Apollo_Room": "Mount Olympus", - "Aquila/Interiors/AQ_Z01_ArtemusRoom": "Mount Olympus", - "Aquila/Interiors/AQ_Z01_HallOfBattle": "Mount Olympus", - "Aquila/Interiors/AQ_Z01_HallOfWatchfulEye": "Mount Olympus", - "Aquila/Interiors/AQ_Z01_HephaestusForge": "Mount Olympus", - "Aquila/Interiors/AQ_Z01_PitOfNoxii": "Pit of Noxxi", - "Aquila/Interiors/AQ_Z01_Throne_Room": "Mount Olympus", - "Aquila/Interiors/AQ_Z02_HallOfContriver": "Atlantea", - "Aquila/Interiors/AQ_Z02_HouseOfFury": "Atlantea", - "Aquila/Interiors/AQ_Z02_HouseOfLostSaliors": "Atlantea", - "Aquila/Interiors/AQ_Z02_PirateShip": "Atlantea", - "Aquila/Interiors/AQ_Z02_SirenPuzzleRoom": "Atlantea", - "Aquila/Interiors/AQ_Z02_ThroneRoom": "Atlantea", - "Aquila/Interiors/AQ_Z03_CavOfNyx": "Tartarus", - "Aquila/Interiors/AQ_Z03_HallOfHades": "Tartarus", - "Aquila/Interiors/AQ_Z03_HouseOfFaun": "Tartarus", - "Aquila/Interiors/AQ_Z03_TempleOfLonging": "Tartarus", - "Arcanum/AR_Z01_Hub": "Arcanum", - "Arcanum/Interiors/AR_Crafting_WORLD": "Arcanum Crafting Room", - "Arcanum/Interiors/AR_Dunes": "Sand Sea", - "Arcanum/Interiors/AR_ShadowTricksterLair_01": "Shadow Training Room", - "Arcanum/Interiors/AR_Z01_ArbitersArena": "Arbiter's Arena", - "Arcanum/Interiors/AR_Z01_ArbitersArena02": "Arbiter's Arena", - "Arcanum/Interiors/AR_Z01_AstalSchool": "Astral Office", - "Arcanum/Interiors/AR_Z01_AstralPlane": "Astral Plane", - "Arcanum/Interiors/AR_Z01_AstralPlane_Repeat": "Astral Plane", - "Arcanum/Interiors/AR_Z01_BalanceSchool": "Hall of Sorcery", - "Arcanum/Interiors/AR_Z01_DeathSchool": "Hall of Necromancy", - "Arcanum/Interiors/AR_Z01_DrockDock_NoShip": "Dry Dock", - "Arcanum/Interiors/AR_Z01_FireSchool": "Hall of Pyromancy", - "Arcanum/Interiors/AR_Z01_I01_DryDock": "Dry Dock", - "Arcanum/Interiors/AR_Z01_IceSchool": "Hall of Thaumaturgy", - "Arcanum/Interiors/AR_Z01_Infirmary": "Infirmary", - "Arcanum/Interiors/AR_Z01_LifeSchool": "Hall of Theurgy", - "Arcanum/Interiors/AR_Z01_MusicologyOffice": "Musicology Office", - "Arcanum/Interiors/AR_Z01_MusicologyStudio": "Musicology Studio", - "Arcanum/Interiors/AR_Z01_MythSchool": "Hall of Conjuration", - "Arcanum/Interiors/AR_Z01_RecoveryRoom": "Recovery Room", - "Arcanum/Interiors/AR_Z01_SchismReadingRoom": "Schism Reading Room", - "Arcanum/Interiors/AR_Z01_ShadowSchool": "Hall of Shadow", - "Arcanum/Interiors/AR_Z01_StormSchool": "Hall of Divination", - "Arcanum/Interiors/AR_Z03_ArkCrashCinematic": "Spiral Ark", - "Arcanum/Interiors/AR_Z03_ArkShip": "Spiral Ark", - "Avalon/AV_Z00_Hub": "Caliburn", - "Avalon/AV_Z01_AbbeyRoad": "Abbey Road", - "Avalon/AV_Z02_HighRoad": "High Road", - "Avalon/AV_Z03_CaerLyon": "Caer Lyon", - "Avalon/AV_Z04_TheWild": "The Wild", - "Avalon/AV_Z05_TheWyrd": "The Wyrd", - "Avalon/AV_Z06_DunDara": "Dun Dara", - "Avalon/AV_Z07_OuterYard": "Outer Yard", - "Avalon/AV_Z08_LakeShore": "Lake Shore", - "Avalon/AV_Z09_DeepWater": "Deep Water", - "Avalon/AV_Z10_Catacombs": "Catacombs", - "Avalon/AV_Z11_CrystalCaves": "Crystal Caves", - "Avalon/AV_Z12_GhostAvalon": "Ghost Avalon", - "Avalon/AV_Z13_KeepOfGanelon": "Keep of Ganelon", - "Avalon/AV_Z14_RestoredKeep": "Keep of Ganelon", - "Avalon/Interiors/AV_MaestroEvent/AV_Z00_LandingZone": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AV_Z01_School": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AV_Z02_DrakesCottage": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AV_Z03_MalistairsHouse": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AV_Z04_TowerBottom": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AV_Z04_TowerBottom_B": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AV_Z05_TowerTop": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AZ_Z04_TowerBottom_C": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AZ_Z05_TowerTop_B": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_MaestroEvent/AZ_Z06_ArtOfWar": "The Five B.O.X.E.S.", - "Avalon/Interiors/AV_Z00_FairyCircle_Cave": "Caliburn", - "Avalon/Interiors/AV_Z01_Clearing01": "Abbey Road", - "Avalon/Interiors/AV_Z01_KnightsHall": "Abbey Road", - "Avalon/Interiors/AV_Z01_Library": "Abbey Road", - "Avalon/Interiors/AV_Z02_FireSpitter": "High Road", - "Avalon/Interiors/AV_Z02_ForlonTower": "High Road", - "Avalon/Interiors/AV_Z02_JabberwockLair": "High Road", - "Avalon/Interiors/AV_Z02_LonelyTower": "High Road", - "Avalon/Interiors/AV_Z02_TowerHarlequin": "High Road", - "Avalon/Interiors/AV_Z02_TowerRedThorn": "High Road", - "Avalon/Interiors/AV_Z02_VortigernsTower": "High Road", - "Avalon/Interiors/AV_Z02_Well": "High Road", - "Avalon/Interiors/AV_Z03_Archive": "Caer Lyon", - "Avalon/Interiors/AV_Z03_ArchnalHideout": "Caer Lyon", - "Avalon/Interiors/AV_Z03_EstateAmber": "Caer Lyon", - "Avalon/Interiors/AV_Z03_EstateFroudling": "Caer Lyon", - "Avalon/Interiors/AV_Z03_EstateLogres": "Caer Lyon", - "Avalon/Interiors/AV_Z03_Froudling01": "Caer Lyon", - "Avalon/Interiors/AV_Z03_Froudling02": "Caer Lyon", - "Avalon/Interiors/AV_Z03_HarvestHouse": "Caer Lyon", - "Avalon/Interiors/AV_Z03_Tower01": "Caer Lyon", - "Avalon/Interiors/AV_Z03_TowerBoss": "Caer Lyon", - "Avalon/Interiors/AV_Z03_TowerDarkKnight": "Caer Lyon", - "Avalon/Interiors/AV_Z03_TowerMalgrins": "Caer Lyon", - "Avalon/Interiors/AV_Z03_TowerRuined": "Caer Lyon", - "Avalon/Interiors/AV_Z03_WILD_C16": "Caer Lyon", - "Avalon/Interiors/AV_Z04_Cave01": "The Wild", - "Avalon/Interiors/AV_Z04_Cave02": "The Wild", - "Avalon/Interiors/AV_Z04_FrozenLake": "The Wild", - "Avalon/Interiors/AV_Z04_HrefnaCave": "The Wild", - "Avalon/Interiors/AV_Z04_TowerBlueDahlia": "The Wild", - "Avalon/Interiors/AV_Z04_TowerDreadKeep": "The Wild", - "Avalon/Interiors/AV_Z04_WOwlGarden": "The Wild", - "Avalon/Interiors/AV_Z04_WhiteOwlTower": "The Wild", - "Avalon/Interiors/AV_Z05_CaveOfNight": "The Wyrd", - "Avalon/Interiors/AV_Z05_IndigoGiant": "The Wyrd", - "Avalon/Interiors/AV_Z05_LostAbbey": "The Wyrd", - "Avalon/Interiors/AV_Z05_TombNameless": "The Wyrd", - "Avalon/Interiors/AV_Z05_TowerChromatic": "The Wyrd", - "Avalon/Interiors/AV_Z05_TowerFroudling01": "The Wyrd", - "Avalon/Interiors/AV_Z05_TowerFroudling02": "The Wyrd", - "Avalon/Interiors/AV_Z05_TowerFroundling3": "The Wyrd", - "Avalon/Interiors/AV_Z06_Cave01": "Dun Dara", - "Avalon/Interiors/AV_Z06_Cave02": "Dun Dara", - "Avalon/Interiors/AV_Z06_TowerBelleRegard": "Dun Dara", - "Avalon/Interiors/AV_Z07_Library": "Outer Yard", - "Avalon/Interiors/AV_Z07_TowerBroken": "Outer Yard", - "Avalon/Interiors/AV_Z07_TowerOverlook": "Outer Yard", - "Avalon/Interiors/AV_Z07_TowerPrison": "Outer Yard", - "Avalon/Interiors/AV_Z07_TowerSworn": "Outer Yard", - "Avalon/Interiors/AV_Z07_Well": "Outer Yard", - "Avalon/Interiors/AV_Z08_BogWitch": "Lake Shore", - "Avalon/Interiors/AV_Z08_Cave01": "Lake Shore", - "Avalon/Interiors/AV_Z08_TowerDolorous": "Lake Shore", - "Avalon/Interiors/AV_Z09_Cave01": "Deep Water", - "Avalon/Interiors/AV_Z09_Cave02": "Deep Water", - "Avalon/Interiors/AV_Z09_Cave03": "Deep Water", - "Avalon/Interiors/AV_Z09_Cave04": "Deep Water", - "Avalon/Interiors/AV_Z10_CptnChamber": "Catacombs", - "Avalon/Interiors/AV_Z10_TombOfArtorius_Ruined": "Catacombs", - "Avalon/Interiors/AV_Z11_CrystalCave_SkeleKey": "Crystal Caves Stone Key Room", - "Avalon/Interiors/AV_Z11_CrystalCave_SkeleKey02": "Crystal Caves Stone Key Room", - "Avalon/Interiors/AV_Z12_TombOfArtorius": "Ghost Avalon", - "Avalon/Interiors/AV_Z13_CrystalCave_Int": "Keep of Ganelon", - "Avalon/Interiors/PageEvent/AV_BossRoom": "Lost Pages Event", - "Avalon/Interiors/PageEvent/AV_LandingZone": "Lost Pages Event", - "Avalon/Interiors/PageEvent/AV_TrashMobs": "Lost Pages Event", - "Azteca/AZ_Z00_Zocalo": "The Zocalo", - "Azteca/AZ_Z01_ThreePoints": "Three Points", - "Azteca/AZ_Z02_Cenote": "Cenote", - "Azteca/AZ_Z03_MangroveMarsh": "Mangrove Marsh", - "Azteca/AZ_Z04_SaltmeadowSwamp": "Saltmeadow Swamp", - "Azteca/AZ_Z05_ZultunDock": "Zultan Dock", - "Azteca/AZ_Z06_CloudburstIsland": "Cloudburst Forest", - "Azteca/AZ_Z07_TierraDeBrea": "Tierra de Brea", - "Azteca/AZ_Z08_PitchBlackLake": "Pitch Black Lake", - "Azteca/AZ_Z09_AltoAlto": "Alto Alto", - "Azteca/AZ_Z10_FloatingMountains": "Floating Mountains", - "Azteca/AZ_Z11_TwinGiants": "Twin Giants", - "Azteca/AZ_Z12_Xibalba": "Xibalba", - "Azteca/Interiors/AZ_Z00_CryingSkyShrine": "The Zocalo", - "Azteca/Interiors/AZ_Z00_HungryLizard": "The Zocalo", - "Azteca/Interiors/AZ_Z00_TeocalliSacredWar": "The Zocalo", - "Azteca/Interiors/AZ_Z00_TezcatlipocaCave": "The Zocalo", - "Azteca/Interiors/AZ_Z00_YacatesHouse": "The Zocalo", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room01": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room02": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room03": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room04": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room05": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room06": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_Room07": "Three Points", - "Azteca/Interiors/AZ_Z01_BlackSunPyramid_SkeletonKey1": "Three Points Stone Key Room", - "Azteca/Interiors/AZ_Z01_JuraPalace_Room01": "Three Points", - "Azteca/Interiors/AZ_Z01_JuraPalace_Room02": "Three Points", - "Azteca/Interiors/AZ_Z02_AzureChamber": "Cenote", - "Azteca/Interiors/AZ_Z02_GlimmeringChamber": "Cenote", - "Azteca/Interiors/AZ_Z02_House01": "Cenote", - "Azteca/Interiors/AZ_Z02_House02": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine01": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine01_02": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine01_03": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine01_04": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine02": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine03": "Cenote", - "Azteca/Interiors/AZ_Z02_Mine04": "Cenote", - "Azteca/Interiors/AZ_Z02_Tomb01": "Cenote", - "Azteca/Interiors/AZ_Z02_Tomb02": "Cenote", - "Azteca/Interiors/AZ_Z02_WhiteFirePyramid": "Cenote", - "Azteca/Interiors/AZ_Z03_Actun": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_Clearing01": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_FallingCavern": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_HallOfPlumage_Room01": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_HallOfPlumage_Room02": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_HallOfPlumage_Room03": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_HallOfPlumage_Room04": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_Tomb01": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_Tomb02": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_Tomb03": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_Tomb04": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z03_Tomb05": "Mangrove Marsh", - "Azteca/Interiors/AZ_Z04_CaveByRiver": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_Clearing01": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_Clearing02": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_DeadTreeCavern": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_MonquistanShipHold": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_PyramidStormEye_Room01": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_PyramidStormEye_Room02": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_PyramidStormEye_Room03": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_SwampCavern": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_TreeOfSecrets01": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_TreeOfSecrets02": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z04_TreeOfSecrets03": "Saltmeadow Swamp", - "Azteca/Interiors/AZ_Z05_CharredTower": "Zultan Dock", - "Azteca/Interiors/AZ_Z05_Clearing01": "Zultan Dock", - "Azteca/Interiors/AZ_Z05_KathleenWilderHouse": "Zultan Dock", - "Azteca/Interiors/AZ_Z05_Tower01": "Zultan Dock", - "Azteca/Interiors/AZ_Z05_Tower02": "Zultan Dock", - "Azteca/Interiors/AZ_Z06_Cave01": "Cloudburst Forest", - "Azteca/Interiors/AZ_Z06_Cave02": "Cloudburst Forest", - "Azteca/Interiors/AZ_Z06_Clearing01": "Cloudburst Forest", - "Azteca/Interiors/AZ_Z06_Clearing02": "Cloudburst Forest", - "Azteca/Interiors/AZ_Z06_HouseOfFlowers": "Cloudburst Forest", - "Azteca/Interiors/AZ_Z06_WhirlpoolCave": "Cloudburst Forest", - "Azteca/Interiors/AZ_Z07_Cave01": "Tierra de Brea", - "Azteca/Interiors/AZ_Z07_ChamberRedSorrow": "Tierra de Brea", - "Azteca/Interiors/AZ_Z07_CipactliCave": "Tierra de Brea", - "Azteca/Interiors/AZ_Z07_GoldMines": "Tierra de Brea", - "Azteca/Interiors/AZ_Z07_Grotto_of_Wirachoca": "Tierra de Brea", - "Azteca/Interiors/AZ_Z07_MotherQuetzalCave": "Tierra de Brea", - "Azteca/Interiors/AZ_Z08_Cave01": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_CaveOfTzapotec": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_CorazonCave": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_MakKnifeCave": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_PyramidMotherMoon_Room01": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_PyramidMotherMoon_Room02": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_PyramidMotherMoon_Room03": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_SunkCanoe_Cave": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_UnderwaterCat": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z08_WatermurkGrotto": "Pitch Black Lake", - "Azteca/Interiors/AZ_Z09_Calmecac_Room01": "Alto Alto", - "Azteca/Interiors/AZ_Z09_FeatherPalace": "Alto Alto", - "Azteca/Interiors/AZ_Z09_XolotlTower01": "Alto Alto", - "Azteca/Interiors/AZ_Z09_XolotlTower02": "Alto Alto", - "Azteca/Interiors/AZ_Z10_Cave01": "Floating Mountains", - "Azteca/Interiors/AZ_Z10_FireCave": "Floating Mountains", - "Azteca/Interiors/AZ_Z10_SevenStabs": "Floating Mountains", - "Azteca/Interiors/AZ_Z10_TurqoiseCave": "Floating Mountains", - "Azteca/Interiors/AZ_Z10_Well": "Floating Mountains", - "Azteca/Interiors/AZ_Z11_Butterfly_Shrine": "Twin Giants", - "Azteca/Interiors/AZ_Z11_Cave01": "Twin Giants", - "Azteca/Interiors/AZ_Z11_Cave02": "Twin Giants", - "Azteca/Interiors/AZ_Z11_Cave03": "Twin Giants", - "Azteca/Interiors/AZ_Z11_Cave04": "Twin Giants", - "Azteca/Interiors/AZ_Z11_Cave05": "Twin Giants", - "Azteca/Interiors/AZ_Z11_PyramidFallingStar_Room01": "Twin Giants", - "Azteca/Interiors/AZ_Z11_PyramidFallingStar_Room02": "Twin Giants", - "Azteca/Interiors/AZ_Z11_PyramidFallingStar_Room03": "Twin Giants", - "Azteca/Interiors/PageEvent/AZ_BossRoom": "Lost Pages Event", - "Azteca/Interiors/PageEvent/AZ_LandingZone": "Lost Pages Event", - "Azteca/Interiors/PageEvent/AZ_TrashMobs": "Lost Pages Event", - "Battlegrounds/BG_PVE/BG_PVE_Zone_01": "Beastmoon Hunt PVE", - "Battlegrounds/BG_PVE/BG_PVE_Zone_02": "Beastmoon Hunt PVE", - "Battlegrounds/BG_PVE/BG_PVE_Zone_04": "Beastmoon Hunt PVE", - "Battlegrounds/BMH/BMH_Zone_02": "Beastmoon Hunt", - "Battlegrounds/BMH/BMH_Zone_03": "Beastmoon Hunt", - "Battlegrounds/BMH/BMH_Zone_04": "Beastmoon Hunt", - "Battlegrounds/Mirage/Mirage_CTF_01": "Beastmoon Hunt", - "Celestia/CL_Hub": "Celestia Base Camp", - "Celestia/CL_Z01_Survey_Camp": "Survey Camp", - "Celestia/CL_Z02_Crab_Realm": "The Grotto", - "Celestia/CL_Z03_District_Of_The_Stars": "District of the Stars", - "Celestia/CL_Z04_Temple_Of_The_Stars": "The Stellarium", - "Celestia/CL_Z05_The_Floating_Land": "The Floating Land", - "Celestia/CL_Z06_StormHaven": "Stormriven", - "Celestia/CL_Z07_Storm_Lord_Temple": "Stormriven Hall", - "Celestia/CL_Z08_Temple_Of_The_Moon/MoonC1": "The Portico", - "Celestia/CL_Z08_Temple_Of_The_Moon/MoonC2": "The Lunarium", - "Celestia/CL_Z09_Science_Center": "Science Center", - "Celestia/CL_Z10_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/CL_Z11_Temple_Of_The_Sun": "The Chancel", - "Celestia/CL_Z12_Test_of_the_Spheres/MoonRoom": "Trial of the Spheres", - "Celestia/CL_Z12_Test_of_the_Spheres/StarRoom": "Trial of the Spheres", - "Celestia/CL_Z12_Test_of_the_Spheres/SunRoom": "Trial of the Spheres", - "Celestia/Interiors/CL_Z01i1_Survey_Camp": "Survey Camp", - "Celestia/Interiors/CL_Z02i1_Crab_Realm": "The Grotto", - "Celestia/Interiors/CL_Z02i2_Crab_Realm": "The Grotto", - "Celestia/Interiors/CL_Z02i3_Crab_Realm": "The Grotto", - "Celestia/Interiors/CL_Z02i4_Crab_Realm": "The Grotto", - "Celestia/Interiors/CL_Z02i5_Crab_Realm": "The Grotto", - "Celestia/Interiors/CL_Z03i1_District_of_the_Stars": "District of the Stars", - "Celestia/Interiors/CL_Z03i2_District_of_the_Stars": "District of the Stars", - "Celestia/Interiors/CL_Z03i3_District_of_the_Stars": "District of the Stars", - "Celestia/Interiors/CL_Z03i4_District_of_the_Stars": "District of the Stars", - "Celestia/Interiors/CL_Z05i1_FloatingLand": "The Floating Land", - "Celestia/Interiors/CL_Z05i2_FloatingLand": "The Floating Land", - "Celestia/Interiors/CL_Z05i3_FloatingLand": "The Floating Land", - "Celestia/Interiors/CL_Z05i4_FloatingLand": "The Floating Land", - "Celestia/Interiors/CL_Z05i5_FloatingLand": "The Floating Land", - "Celestia/Interiors/CL_Z05i6_FloatingLand": "The Floating Land", - "Celestia/Interiors/CL_Z06i1_StormHaven": "Stormriven", - "Celestia/Interiors/CL_Z06i2_StormHaven": "Stormriven", - "Celestia/Interiors/CL_Z06i3_StormHaven": "Stormriven", - "Celestia/Interiors/CL_Z06i_KrakenCave": "Stormriven", - "Celestia/Interiors/CL_Z07i1_Storm_Lord_Temple": "Stormriven Hall", - "Celestia/Interiors/CL_Z07i2_Storm_Lord_Temple": "Stormriven Hall", - "Celestia/Interiors/CL_Z09i1_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z09i2_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z09i3_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z09i4_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z09i5_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z09i6_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z09i7_Science_Center": "Science Center", - "Celestia/Interiors/CL_Z10i10_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i1_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i2_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i3_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i4_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i5_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i6_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i7_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i8_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z10i9_Kingdom_Of_The_Crabs": "Crustacean Empire", - "Celestia/Interiors/CL_Z12i1_Test_Of_The_Spheres": "Trial of the Spheres", - "Celestia/Interiors/CL_Z12i2_Test_Of_The_Spheres": "Trial of the Spheres", - "Celestia/Interiors/PageEvent/CL_BossRoom": "Lost Pages Event", - "Celestia/Interiors/PageEvent/CL_LandingZone": "Lost Pages Event", - "Celestia/Interiors/PageEvent/CL_TrashMobs": "Lost Pages Event", - "DD_DS_01/DD_DS_01_01/DD_DS_01_01_01": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_01/DD_DS_01_01_02": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_01/DD_DS_01_01_03": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_01/DD_DS_01_01_04": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_01/DD_DS_01_01_05": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_01/DD_DS_01_01_06": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_20/DD_DS_01_20_01": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_20/DD_DS_01_20_02": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_20/DD_DS_01_20_03": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_20/DD_DS_01_20_04": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_20/DD_DS_01_20_05": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_20/DD_DS_01_20_06": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_40/DD_DS_01_40_01": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_40/DD_DS_01_40_02": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_40/DD_DS_01_40_03": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_40/DD_DS_01_40_04": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_40/DD_DS_01_40_05": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_40/DD_DS_01_40_06": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_60/DD_DS_01_60_01": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_60/DD_DS_01_60_02": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_60/DD_DS_01_60_03": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_60/DD_DS_01_60_04": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_60/DD_DS_01_60_05": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_60/DD_DS_01_60_06": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_80/DD_DS_01_80_01": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_80/DD_DS_01_80_02": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_80/DD_DS_01_80_03": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_80/DD_DS_01_80_04": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_80/DD_DS_01_80_05": "Baddle of the Bands", - "DD_DS_01/DD_DS_01_80/DD_DS_01_80_06": "Baddle of the Bands", - "DD_PA_01/DD_PA01_Tier01/DD_PA01_T01_Tanglewood": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier01/DD_PA01_T01_Tower": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier02/DD_PA01_T02_Tanglewood": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier02/DD_PA01_T02_Tower": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier03/DD_PA01_T03_Tanglewood": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier03/DD_PA01_T03_Tower": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier04/DD_PA01_T04_Tanglewood": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier04/DD_PA01_T04_Tower": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier05/DD_PA01_T05_Tanglewood": "Tanglewood Terror", - "DD_PA_01/DD_PA01_Tier05/DD_PA01_T05_Tower": "Tanglewood Terror", - "DragonSpire/DS_A1_Knowledge/DS_A1Hub_Library": "The Atheneum", - "DragonSpire/DS_A1_Knowledge/DS_A1Z1_WizardTower": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/DS_A1Z2_ConquestPlaza": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/DS_A1Z3_GrandChasm": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/DS_A1Z4_GrandChasm_Past": "The Grand Chasm Past", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_3Room": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_3Room2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_3Room2_Sub/DS_Chasm_Gauntlet_3Room2_2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_3Room2_Sub/DS_Chasm_Gauntlet_3Room2_3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_3Room_Sub/DS_Chasm_Gauntlet_3Room_2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_3Room_Sub/DS_Chasm_Gauntlet_3Room_3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room2_Sub/DS_Chasm_Gauntlet_4Room2_2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room2_Sub/DS_Chasm_Gauntlet_4Room2_3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room2_Sub/DS_Chasm_Gauntlet_4Room2_4": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room_Sub/DS_Chasm_Gauntlet_4Room_2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room_Sub/DS_Chasm_Gauntlet_4Room_3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_4Room_Sub/DS_Chasm_Gauntlet_4Room_4": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_5Room": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_5Room_Sub/DS_Chasm_Gauntlet_5Room_2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_5Room_Sub/DS_Chasm_Gauntlet_5Room_3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_5Room_Sub/DS_Chasm_Gauntlet_5Room_4": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_5Room_Sub/DS_Chasm_Gauntlet_5Room_5": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_8Room": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_8Room_Sub/DS_Chasm_Gauntlet_8Room_2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_8Room_Sub/DS_Chasm_Gauntlet_8Room_3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_8Room_Sub/DS_Chasm_Gauntlet_8Room_4": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_Gauntlet_8Room_Sub/DS_Chasm_Gauntlet_8Room_5": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Chasm_HallOfTime": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_GrandChasm_T1": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_GrandChasm_T15": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_GrandChasm_T2": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_GrandChasm_T3": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_GrandChasm_T4": "The Grand Chasm", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Library_Interior": "The Atheneum", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Library_LoreMasterEncounter": "Loremaster's Chamber", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Library_Shop1": "The Atheneum", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Library_Shop2": "The Atheneum", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Library_Shop3": "The Atheneum", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room_Sub/DS_Plaza_Gauntlet_7Room_2": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room_Sub/DS_Plaza_Gauntlet_7Room_3": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room_Sub/DS_Plaza_Gauntlet_7Room_4": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room_Sub/DS_Plaza_Gauntlet_7Room_5": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room_Sub/DS_Plaza_Gauntlet_7Room_6": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_Gauntlet_7Room_Sub/DS_Plaza_Gauntlet_7Room_7": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T1": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T1f": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T2": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T3": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T4": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T5": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_Plaza_T6": "Plaza of Conquests", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_H1": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T1": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T10": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T11": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T2": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T3": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T4": "The Tower Archives", - "DragonSpire/DS_A1_Knowledge/Interiors/DS_ToK_T5": "The Tower Archives", - "DragonSpire/DS_A2_Battle/DS_A2Hub_Necropolis": "The Necropolis", - "DragonSpire/DS_A2_Battle/DS_A2Z1_Hatchery": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/DS_A2Z2_Arena": "The Crucible", - "DragonSpire/DS_A2_Battle/DS_A2Z3_Detention": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_CL_Preview": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_Gauntlet_6Room": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_Gauntlet_6Room_Sub/6Room_2": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_Gauntlet_6Room_Sub/6Room_3": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_Gauntlet_6Room_Sub/6Room_4": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_Gauntlet_6Room_Sub/6Room_5": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_Gauntlet_6Room_Sub/6Room_6": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_T1": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_T2": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Arena_T3": "The Crucible", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_Gauntlet_3Room01": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_Gauntlet_3Room01_Sub/3Room01_2": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_Gauntlet_3Room01_Sub/3Room01_3": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_H1": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_T1": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_T2": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_T3": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Detention_T4": "The Labyrinth", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_Gauntlet_8Room": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_Gauntlet_8Room_Sub/8Room_2": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_Gauntlet_8Room_Sub/8Room_3": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_Gauntlet_8Room_Sub/8Room_4": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_T1": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_T2": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_T3": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_T4": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Hatchery_T5": "The Drake Hatchery", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Crypt3": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Crypt4": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_3Room01": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_3Room01_Sub/3Room01_2": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_3Room01_Sub/3Room01_3": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room2": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room2_Sub/5Room2_2": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room2_Sub/5Room2_3": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room2_Sub/5Room2_4": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room2_Sub/5Room2_5": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room3": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room3_Sub/5Room3_2": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room3_Sub/5Room3_3": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room3_Sub/5Room3_4": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room3_Sub/5Room3_5": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room_Sub/5Room_2": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room_Sub/5Room_3": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room_Sub/5Room_4": "The Necropolis", - "DragonSpire/DS_A2_Battle/Interiors/DS_Necropolis_Gauntlet_5Room_Sub/5Room_5": "The Necropolis", - "DragonSpire/DS_A3_Kings/DS_A3Hub_Academy": "Dragonspyre Academy", - "DragonSpire/DS_A3_Kings/DS_A3Z1_CrystalGrove": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/DS_A3Z2_Amphitheatre": "The Forum", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_LandingZone": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano1": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano1_2": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano2": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano_Cave1": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano_Cave2": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano_Cave3": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano_Elevator_Down": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3Z3_Volcano/DS_Volcano_Elevator_Up": "The Great Spyre", - "DragonSpire/DS_A3_Kings/DS_A3_FlightPath": "Flying the Drake", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_Gauntlet_7Room": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_Gauntlet_7Room_Sub/7Room_2": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_Gauntlet_7Room_Sub/7Room_3": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_Gauntlet_7Room_Sub/7Room_4": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T1": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T2": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T3": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T4": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T5": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T6": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T7": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T8": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_Amphitheatre_T9": "The Forum", - "DragonSpire/DS_A3_Kings/Interiors/DS_CrystalGrove_Gauntlet_7Room": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_CrystalGrove_Gauntlet_7Room_Sub/7Room_2": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_CrystalGrove_Gauntlet_7Room_Sub/7Room_3": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_CrystalGrove_Gauntlet_7Room_Sub/7Room_4": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_HallOfBetrayal": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_PhotomongerOffice": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T1": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T10": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T2": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T3": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T4": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T5": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T6": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T7": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T8": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_T9": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_Crystal_TowerOfVariousRituals": "The Crystal Grove", - "DragonSpire/DS_A3_Kings/Interiors/DS_MAW_Brandon": "The Great Spyre", - "DragonSpire/DS_A3_Kings/Interiors/DS_MalistaireLair": "The Crown of Fire", - "DragonSpire/DS_A3_Kings/Interiors/DS_School_Fire": "Dragonspyre School of Fire", - "DragonSpire/DS_A3_Kings/Interiors/DS_VulcusForge": "Plaza of Conquests", - "DragonSpire/DS_Hub_Cathedral": "The Basilica", - "Empyrea/EM_Z00_Aeriel_HUB": "Aeriel Shores", - "Empyrea/EM_Z01_Jungle": "Aeriel Jungle", - "Empyrea/EM_Z02_Zanadu": "Zanadu", - "Empyrea/EM_Z03_OuterAthanor": "Outer Athanor", - "Empyrea/EM_Z04_InnerAthanor": "Inner Athanor", - "Empyrea/EM_Z05_Sepidious": "Sepidious", - "Empyrea/EM_Z06_NimbusHanger": "Nimbus Hanger", - "Empyrea/EM_Z07_NimbusCitadel": "Nimbus Citadel", - "Empyrea/EM_Z08_SWAeroplains": "Southwest Aero Plains", - "Empyrea/EM_Z09_NWAeroplains": "Northeast Aero Plains", - "Empyrea/EM_Z10_PortAero": "Port Aero", - "Empyrea/EM_Z11_VeloCity": "Velo City", - "Empyrea/EM_Z12_LandingZone": "Samsara Village", - "Empyrea/EM_Z12_SamsaraVillage": "Samsara Village", - "Empyrea/EM_Z13_SamsaraDestroyed": "Samsara Village", - "Empyrea/EM_Z14_ChaosJungle": "Chaos Jungle", - "Empyrea/EM_Z15_Nexus": "Nexus", - "Empyrea/EM_Z16_Husk": "Husk", - "Empyrea/Interiors/EM_Z00_ArkHold": "Aeriel Shores", - "Empyrea/Interiors/EM_Z00_CastHut": "Aeriel Shores", - "Empyrea/Interiors/EM_Z01_BeastmanCave": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_BeastmanStockade": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_BeastmanWinchHouse01": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_BeastmanWinchHouse02": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_BookwormsCave": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_CalibansFort": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_CaveScorax": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_CrushersLair": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_HiddenCave": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_HiddenClearing": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_JungleClearing01": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_JungleClearing02": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_JungleClearing03": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_MonkeySpiderCave": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_MonkeySpiderNest": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_MountainPath": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_MountainVillage": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_RaiderTower01": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_RaiderTunnels": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_TowerOfSycorax": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z01_TrollRallyCave": "Aeriel Jungle", - "Empyrea/Interiors/EM_Z02_Aethyrium": "Zanadu", - "Empyrea/Interiors/EM_Z02_AethyriumArchives": "Zanadu", - "Empyrea/Interiors/EM_Z02_AethyriumCombat": "Zanadu", - "Empyrea/Interiors/EM_Z02_AethyriumOffice": "Zanadu", - "Empyrea/Interiors/EM_Z02_BatCave": "Zanadu", - "Empyrea/Interiors/EM_Z02_BeaconHope": "Zanadu", - "Empyrea/Interiors/EM_Z02_BryinsVault": "Zanadu", - "Empyrea/Interiors/EM_Z02_ByrinsHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_ChargingStation": "Zanadu", - "Empyrea/Interiors/EM_Z02_DanceHall": "Zanadu", - "Empyrea/Interiors/EM_Z02_DusksHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_Gatehouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_JineeHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_KanesHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_LeisureDome": "Zanadu", - "Empyrea/Interiors/EM_Z02_NuhnesHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_Palace": "Zanadu", - "Empyrea/Interiors/EM_Z02_SecretEntrance": "Zanadu", - "Empyrea/Interiors/EM_Z02_SewerDrainage": "Zanadu", - "Empyrea/Interiors/EM_Z02_SewerEncounter": "Zanadu", - "Empyrea/Interiors/EM_Z02_SewerFlooded": "Zanadu", - "Empyrea/Interiors/EM_Z02_SewerRoom": "Zanadu", - "Empyrea/Interiors/EM_Z02_Sewers": "Zanadu", - "Empyrea/Interiors/EM_Z02_ShadowHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_SkeletonKey_01": "Corporal Tenni'syn Gold Key Room", - "Empyrea/Interiors/EM_Z02_SkeletonKey_02": "Corporal Tenni'syn Gold Key Room", - "Empyrea/Interiors/EM_Z02_ThroneRoom": "Zanadu", - "Empyrea/Interiors/EM_Z02_TwylightsHouse": "Zanadu", - "Empyrea/Interiors/EM_Z02_ZigisHouse": "Zanadu", - "Empyrea/Interiors/EM_Z03_Foundry": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_IceAccessTunnel": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_IceCouncilChamber": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_IceCuttingComplex": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_IceDwarfBunker": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_IceGreatHall": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_IceSupplyCave": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_MagicalArchive": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_MeltingHouse": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_RomeoHouse": "Outer Athanor", - "Empyrea/Interiors/EM_Z03_Vault": "Outer Athanor", - "Empyrea/Interiors/EM_Z04_Cistern": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_ControlRoom": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_FireDwarfHouse": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_I03_LightTemple": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_JulietHouse": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_LavaCavern": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_PipeJunction": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_Praesidium": "Inner Athanor", - "Empyrea/Interiors/EM_Z04_SteamVentControl": "Inner Athanor", - "Empyrea/Interiors/EM_Z05_Brain": "Sepidious Headquarters", - "Empyrea/Interiors/EM_Z05_Heart": "Sepidious Heart", - "Empyrea/Interiors/EM_Z05_HeartPath": "Sepidious Heart", - "Empyrea/Interiors/EM_Z05_InkSack": "Sepidious Ink Gland", - "Empyrea/Interiors/EM_Z05_InkTubing": "Sepidious Ink Spillway", - "Empyrea/Interiors/EM_Z05_LeftEye": "Sepidious Left Eye", - "Empyrea/Interiors/EM_Z05_LeftEyePath": "Sepidious Left Ocular Vein", - "Empyrea/Interiors/EM_Z05_NodoChord": "Sepidious Notochord", - "Empyrea/Interiors/EM_Z05_RightEye": "Sepidious Right Eye", - "Empyrea/Interiors/EM_Z05_RightEyePath": "Sepidious Right Ocular Vein", - "Empyrea/Interiors/EM_Z07_AcademyCombat": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_AudienceChambers": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_ControlRoom": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_Courtyard": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_MilitaryStronghold": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_PrivateWing": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_RearCourtyard": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_SecondaryDock": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_TechnologistAcademy": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z07_TrainingGrounds": "Nimbus Citadel", - "Empyrea/Interiors/EM_Z08_CretanBullCave": "Southwest Aero Plains", - "Empyrea/Interiors/EM_Z08_CretanBullField": "Southwest Aero Plains", - "Empyrea/Interiors/EM_Z08_DarkCloudBase": "Southwest Aero Plains", - "Empyrea/Interiors/EM_Z08_EarWorm": "Southwest Aero Plains", - "Empyrea/Interiors/EM_Z08_MeowlsDen": "Southwest Aero Plains", - "Empyrea/Interiors/EM_Z09_GrandmotherHouse": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z09_HelenasBattle": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z09_HelenasCamp": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z09_HumongishfrogBattlefield": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z09_SkeletonKey_Fight": "Aethyr Elemental Gold Key Room", - "Empyrea/Interiors/EM_Z09_SkeletonKey_Landing": "Aethyr Elemental Gold Key Room", - "Empyrea/Interiors/EM_Z09_SphinxCave": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z09_TrollCave": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z09_VoltergeistCave": "Northeast Aero Plains", - "Empyrea/Interiors/EM_Z10_1stAeroDwarfHouse": "Port Aero", - "Empyrea/Interiors/EM_Z10_2ndAeroDwarfHouse": "Port Aero", - "Empyrea/Interiors/EM_Z10_3rdAeroDwarfHouse": "Port Aero", - "Empyrea/Interiors/EM_Z10_EbenezerHouse": "Port Aero", - "Empyrea/Interiors/EM_Z10_EvidenceStore": "Port Aero", - "Empyrea/Interiors/EM_Z10_FieldPartyCrash": "Port Aero", - "Empyrea/Interiors/EM_Z11_HunterGuild": "Velo City", - "Empyrea/Interiors/EM_Z11_VeloCityInn": "Velo City", - "Empyrea/Interiors/EM_Z12_AshenCaves": "Samsara Village", - "Empyrea/Interiors/EM_Z12_CaveOfQuickening": "Samsara Village", - "Empyrea/Interiors/EM_Z12_DyingGlade": "Samsara Village", - "Empyrea/Interiors/EM_Z12_DyingJungle": "Samsara Village", - "Empyrea/Interiors/EM_Z12_GladeOfShavarram": "Samsara Village", - "Empyrea/Interiors/EM_Z12_I09_Clearing_C": "Samsara Village", - "Empyrea/Interiors/EM_Z13_KalamarHouse": "Samsara Village", - "Empyrea/Interiors/EM_Z13_KalamarHouse02": "Samsara Village", - "Empyrea/Interiors/EM_Z13_KalamarHouse03": "Samsara Village", - "Empyrea/Interiors/EM_Z13_KalamarHouse04": "Samsara Village", - "Empyrea/Interiors/EM_Z14_BatBattleCave": "Chaos Jungle", - "Empyrea/Interiors/EM_Z14_CaveRefuge": "Chaos Jungle", - "Empyrea/Interiors/EM_Z14_FeralClearing": "Chaos Jungle", - "Empyrea/Interiors/EM_Z14_Rift": "Chaos Jungle", - "Empyrea/Interiors/EM_Z14_SecondClearing": "Chaos Jungle", - "Empyrea/Interiors/EM_Z14_SecondClearingCave": "Chaos Jungle", - "Empyrea/Interiors/EM_Z15_DreamBabaYaga": "Nexus", - "Empyrea/Interiors/EM_Z15_DreamHive": "Nexus", - "Empyrea/Interiors/EM_Z15_DreamLife": "Nexus", - "Empyrea/Interiors/EM_Z15_DreamRavenwood": "Nexus", - "Empyrea/Interiors/EM_Z15_DreamShrine": "Nexus", - "Empyrea/Interiors/EM_Z15_NightmareDS": "Nexus", - "Empyrea/Interiors/EM_Z15_NightmareFinale": "Nexus", - "Empyrea/Interiors/EM_Z15_NightmareKrok": "Nexus", - "Empyrea/Interiors/EM_Z15_NightmareRealm": "Nexus", - "Empyrea/Interiors/EM_Z16_I01_AstralGrove": "Husk", - "Empyrea/Interiors/EM_Z16_I02_ElementalGrove": "Husk", - "Empyrea/Interiors/EM_Z16_I03_SpiritualGrove": "Husk", - "Empyrea/Interiors/EM_Z16_I04_StormTitan": "Storm Titan", - "Empyrea/Interiors/EM_Z16_I05_BrokenBough_A": "Husk", - "Empyrea/Interiors/EM_Z16_I06_BrokenBough_B": "Husk", - "Empyrea/Interiors/Em_Z13_PossessedShrine": "Samsara Village", - "G14_DM/DM_Z01_CastleDarkmoor": "Castle Darkmoor", - "G14_DM/DM_Z02_MainHall": "Castle Darkmoor", - "G14_DM/DM_Z03_Armory": "Castle Darkmoor", - "G14_DM/DM_Z04_LandingZone2": "Upper Halls", - "G14_DM/DM_Z05_Library": "Upper Halls", - "G14_DM/DM_Z06_Bridge": "Graveyard", - "G14_DM/DM_Z07_Graveyard": "Graveyard", - "G14_DM/Interiors/DM_Z04_I01_Staircase": "Castle Darkmoor", - "G14_DM/Interiors/DM_Z04_I02_SkeletonKey3": "Castle Darkmoor Gold Key Room", - "G14_DM/Interiors/DM_Z05_I01_Hallway": "Upper Halls", - "G14_DM/Interiors/DM_Z05_I02_Hallway": "Upper Halls", - "G14_DM/Interiors/DM_Z05_I03_Staircase": "Upper Halls", - "G14_DM/Interiors/DM_Z05_I04_SkeletonKey1": "Upper Halls Gold Key Room", - "G14_DM/Interiors/DM_Z05_I05_Hallway": "Upper Halls", - "G14_DM/Interiors/DM_Z07_I01_Observatory": "Castle Darkmoor", - "G14_DM/Interiors/DM_Z08_I01_MausoleumTop": "Graveyard", - "G14_DM/Interiors/DM_Z08_I02_Mausoleum_Lower": "Graveyard", - "G14_DM/Interiors/DM_Z08_I03_SkeletonKey2": "Aphrodite II Gold Key Room", - "G14_HS/HS_Z01_ZigazagUpper": "Upper Zigazag", - "G14_HS/HS_Z02_ZigazagLower": "Lower Zigazag", - "G14_HS/HS_Z03_ApepsTent": "Lower Zigazag", - "G14_HS/HS_Z04_HouseOfScales": "House of Scales", - "G14_HS/HS_Z05_ChamberOfTheSistrum": "House of Scales", - "G14_HS/HS_Z06_ChamberOfReeds": "House of Scales", - "G14_HS/HS_Z07_HallOfJustice": "House of Scales", - "G14_HS/Interiors/HS_Z02_I01_TollHouse": "Lower Zigazag", - "G14_HS/Interiors/HS_Z02_SkeletonKey01": "Lower Zigazag Stone Key Room", - "G14_HS/Interiors/HS_Z02_SkeletonKey02": "Lower Zigazag Wooden Key Room", - "G14_HS/Interiors/HS_Z02_SkeletonKey03": "House of Scales Stone Key Room", - "G14_SB/SB_Z01_KimbaalungVillage": "Kembaalung Village", - "G14_SB/SB_Z02_PagodaRoom01": "Kembaalung Village", - "G14_SB/SB_Z03_PagodaRoom02": "Kembaalung Village", - "G14_SB/SB_Z04_PagodaRoom03": "Kembaalung Village", - "G14_SB/SB_Z05_CaveSystem": "Kembaalung Village", - "G14_SB/SB_Z06_PuzzleRoom": "Kembaalung Village", - "G14_SB/SB_Z07_Hallway": "Kembaalung Village", - "G14_SB/SB_Z08_ShrineRoom": "Kembaalung Village", - "G14_SB/SB_Z09_SkeletonKey01": "Kembaalung Village Wooden Key Room", - "G14_SB/SB_Z10_SkeletonKey02": "Kembaalung Village Wooden Key Room", - "Grizzleheim/GH_AbandCity/GH_EntranceHall": "Nidavellir", - "Grizzleheim/GH_AbandCity/GH_HallofKings": "Hall of Valor", - "Grizzleheim/GH_AbandCity/GH_Labyrinth": "Winterdeep Warren", - "Grizzleheim/GH_AbandCity/GH_Library": "Helgrind Warren", - "Grizzleheim/GH_HFjord/GH_Austrilund": "Austrilund", - "Grizzleheim/GH_HFjord/GH_HFjord": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/GH_Nastrond": "Nastrond", - "Grizzleheim/GH_HFjord/GH_Nordrilund": "Nordrilund", - "Grizzleheim/GH_HFjord/GH_Sudrilund": "Sudrilund", - "Grizzleheim/GH_HFjord/GH_Vestrilund": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave01": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave02": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave03": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave04": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave05": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave06": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave07": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave09": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Aust_Cave10": "Austrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Cave01": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Cave02": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Cave03": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Cave08": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Shop01": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Shop02": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Shop03": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Tower01": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_TownHall": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_HFjord_Well": "Hrundle Fjord", - "Grizzleheim/GH_HFjord/Interiors/GH_Nord_Cave01": "Nordrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Nord_Cave02": "Nordrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Nord_Cave03": "Nordrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Nord_Cave04": "Nordrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave01": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave02": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave03": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave04": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave05": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave06": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Sud_Cave07": "Sudrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave01": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave02": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave03": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave04": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave05": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave06": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave07": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave09": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Cave10": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Tower01": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Tower02": "Vestrilund", - "Grizzleheim/GH_HFjord/Interiors/GH_Vest_Vestri_Hall": "Vestrilund", - "Grizzleheim/GH_Hero": "Savarstaad Pass", - "Grizzleheim/GH_MainHub": "Northguard", - "Grizzleheim/GH_Raven": "Ravenscar", - "Grizzleheim/GH_RedClaw": "Vigrid Roughland", - "Grizzleheim/GH_Wolf": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Hero_SkelKey_Gold": "Savarstaad Pass Gold Key Room", - "Grizzleheim/Interiors/GH_Hero_SkelKey_Landing": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_SkelKey_Stone": "Savarstaad Pass Stone Key Room", - "Grizzleheim/Interiors/GH_Hero_SkelKey_Wood": "Savarstaad Pass Wooden Key Room", - "Grizzleheim/Interiors/GH_Hero_T1": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T2": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T3": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T4": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T5": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T6": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T7": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_Hero_T8": "Savarstaad Pass", - "Grizzleheim/Interiors/GH_RavenFortress_T1": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T10": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T11": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T12": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T2": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T3": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T4": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T5": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T6": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T7": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T8": "Ravenscar", - "Grizzleheim/Interiors/GH_RavenFortress_T9": "Ravenscar", - "Grizzleheim/Interiors/GH_RedClaw_4Room": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_End": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_T1": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_T2": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_T3": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_T4": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_T5": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_RedClaw_T6": "Vigrid Roughland", - "Grizzleheim/Interiors/GH_Wolf_T1": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T2": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T3": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T4": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T5": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T6": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T7": "Mirkholm Keep", - "Grizzleheim/Interiors/GH_Wolf_T8": "Mirkholm Keep", - "Grizzleheim/Interiors/Hub_CraftingRoom": "Hall of the Ice Forge", - "Grizzleheim/Interiors/Hub_ShopHat_Shoe": "Northguard", - "Grizzleheim/Interiors/Hub_ShopHouse": "Northguard", - "Grizzleheim/Interiors/Hub_ThroneRoom": "Northguard", - "GrizzleheimLite/GH_GrizzleheimHubLite": "Grizzleheim Preview", - "Heroic_Dungeons_01/AQ_HEROIC_Zeus_100": "Zeus Exalted Duel", - "Heroic_Dungeons_01/KT_HEROIC_Krokopatra_040": "Krokopatra Master Duel", - "Heroic_Dungeons_01/KT_HEROIC_Krokopatra_100": "Krokopatra Exalted Duel", - "Heroic_Dungeons_01/MB_HEROIC_Meowiarty_070": "Meowiarty Archmage Duel", - "Heroic_Dungeons_01/MB_HEROIC_Meowiarty_100": "Meowiarty Exalted Duel", - "Heroic_Dungeons_01/TEST_Rattlebones_NoDynamods": "Rattlebones", - "Heroic_Dungeons_01/WC_HEROIC_Rattlebones_040": "Rattlebones Master Duel", - "Heroic_Dungeons_01/WC_HEROIC_Rattlebones_100": "Rattlebones Exalted Duel", - "Holiday/Halloween/Gauntlet_Easy/Level1": "Hallowe'en Apprentice Tower", - "Holiday/Halloween/Gauntlet_Easy/Level2": "Hallowe'en Apprentice Tower", - "Holiday/Halloween/Gauntlet_Easy/Level3": "Hallowe'en Apprentice Tower", - "Holiday/Halloween/Gauntlet_Easy/Level4": "Hallowe'en Apprentice Tower", - "Holiday/Halloween/Gauntlet_Easy/Level5": "Hallowe'en Apprentice Tower", - "Holiday/Halloween/Gauntlet_Hard/Level1": "Hallowe'en Master Tower", - "Holiday/Halloween/Gauntlet_Hard/Level2": "Hallowe'en Master Tower", - "Holiday/Halloween/Gauntlet_Hard/Level3": "Hallowe'en Master Tower", - "Holiday/Halloween/Gauntlet_Hard/Level4": "Hallowe'en Master Tower", - "Holiday/Halloween/Gauntlet_Hard/Level5": "Hallowe'en Master Tower", - "Holiday/Halloween/Gauntlet_Medium/Level1": "Hallowe'en Adept Tower", - "Holiday/Halloween/Gauntlet_Medium/Level2": "Hallowe'en Adept Tower", - "Holiday/Halloween/Gauntlet_Medium/Level3": "Hallowe'en Adept Tower", - "Holiday/Halloween/Gauntlet_Medium/Level4": "Hallowe'en Adept Tower", - "Holiday/Halloween/Gauntlet_Medium/Level5": "Hallowe'en Adept Tower", - "Housing/CardPromo/GS_Fantasy_Castle": "Massive Fantasy Palace", - "Housing/CardPromo/GS_Fantasy_Castle_Interior": "Massive Fantasy Palace", - "Housing/Dragonspyre/DS_Tier1_Exteior_Preview": "Great Citadel", - "Housing/Dragonspyre/DS_Tier1_Exterior": "Great Citadel", - "Housing/Dragonspyre/DS_Tier1_Interior": "Great Citadel", - "Housing/Dragonspyre/DS_Tier1_Interior_Preview": "Great Citadel", - "Housing/Dragonspyre/DS_Tier2_Exterior": "Grand Fortress", - "Housing/Dragonspyre/DS_Tier2_Exterior_Preview": "Grand Fortress", - "Housing/Dragonspyre/DS_Tier2_Interior": "Grand Fortress", - "Housing/Dragonspyre/DS_Tier2_Interior_Preview": "Grand Fortress", - "Housing/Grizzleheim/GH_Tier2_Exterior": "Watchtower Hall", - "Housing/Grizzleheim/GH_Tier2_Exterior_Preview": "Watchtower Hall", - "Housing/Grizzleheim/GH_Tier2_Interior": "Watchtower Hall", - "Housing/Grizzleheim/GH_Tier2_Interior_Preview": "Watchtower Hall", - "Housing/Grizzleheim/GH_TowerIslandExterior": "Watchtower Hall", - "Housing/Grizzleheim/GH_TowerIslandExterior_Prev": "Watchtower Hall", - "Housing/Grizzleheim/GH_TowerIslandInterior": "Watchtower Hall", - "Housing/Grizzleheim/GH_TowerIslandInterior_Preview": "Watchtower Hall", - "Housing/Krokotopia/KT_Tier1_Exterior": "Oasis Camp", - "Housing/Krokotopia/KT_Tier1_Exterior_Preview": "Oasis Camp", - "Housing/Krokotopia/KT_Tier1_Interior": "Oasis Camp", - "Housing/Krokotopia/KT_Tier1_Interior_Preview": "Oasis Camp", - "Housing/Krokotopia/KT_Tier2_Exterior": "Desert Villa", - "Housing/Krokotopia/KT_Tier2_Exterior_Preview": "Desert Villa", - "Housing/Krokotopia/KT_Tier2_Interior": "Desert Villa", - "Housing/Krokotopia/KT_Tier2_Interior_Preview": "Desert Villa", - "Housing/Marleybone/MB_Teir2_Exterior": "Royal Estate", - "Housing/Marleybone/MB_Teir2_Interior": "Royal Estate", - "Housing/Marleybone/MB_Tier1_Exterior": "Metropolitan Manor", - "Housing/Marleybone/MB_Tier1_Exterior_Preview": "Metropolitan Manor", - "Housing/Marleybone/MB_Tier1_Interior": "Metropolitan Manor", - "Housing/Marleybone/MB_Tier1_Interior_Preview": "Metropolitan Manor", - "Housing/Marleybone/MB_Tier2_Exterior_Preview": "Royal Estate", - "Housing/Marleybone/MB_Tier2_Interior_Preview": "Royal Estate", - "Housing/Mooshu/MS_Tier1_Exterior": "Tranquil Cottage", - "Housing/Mooshu/MS_Tier1_Exterior_Preview": "Tranquil Cottage", - "Housing/Mooshu/MS_Tier1_Interior": "Tranquil Cottage", - "Housing/Mooshu/MS_Tier1_Interior_Preview": "Tranquil Cottage", - "Housing/Mooshu/MS_Tier2_Exterior": "Imperial Palace", - "Housing/Mooshu/MS_Tier2_Exterior_Preview": "Imperial Palace", - "Housing/Mooshu/MS_Tier2_Interior": "Imperial Palace", - "Housing/Mooshu/MS_Tier2_Interior_Preview": "Imperial Palace", - "Housing/School/Balance_Exterior": "Balance House", - "Housing/School/Balance_Exterior_Preview": "Balance House", - "Housing/School/Balance_Interior": "Balance House", - "Housing/School/Balance_Interior_Preview": "Balance House", - "Housing/School/Death_Exterior": "Death House", - "Housing/School/Death_Exterior_Preview": "Death House", - "Housing/School/Death_Interior": "Death House", - "Housing/School/Death_Interior_Preview": "Death House", - "Housing/School/Fire_Exterior": "Fire House", - "Housing/School/Fire_Exterior_Preview": "Fire House", - "Housing/School/Fire_Interior": "Fire House", - "Housing/School/Fire_Interior_Preview": "Fire House", - "Housing/School/Ice": "Ice House", - "Housing/School/Ice_Exterior_Preview": "Ice House", - "Housing/School/Ice_Interior": "Ice House", - "Housing/School/Ice_Interior_Preview": "Ice House", - "Housing/School/Life_Exterior": "Life House", - "Housing/School/Life_Exterior_Preview": "Life House", - "Housing/School/Life_Interior": "Life House", - "Housing/School/Life_Interior_Preview": "Life House", - "Housing/School/Myth_Exterior": "Myth House", - "Housing/School/Myth_Exterior_Preview": "Myth House", - "Housing/School/Myth_Interior": "Myth House", - "Housing/School/Myth_Interior_Preview": "Myth House", - "Housing/School/Storm_Exterior": "Storm House", - "Housing/School/Storm_Exterior_Preview": "Storm House", - "Housing/School/Storm_Interior": "Storm House", - "Housing/School/Storm_Interior_Preview": "Storm House", - "Housing/WizardCity/WC_Tier1_Exterior": "Wooded Cottage", - "Housing/WizardCity/WC_Tier1_Exterior_Preview": "Wooded Cottage", - "Housing/WizardCity/WC_Tier1_Interior": "Wooded Cottage", - "Housing/WizardCity/WC_Tier1_Interior_Preview": "Wooded Cottage", - "Housing/WizardCity/WC_Tier2_Exterior": "Royal Playhouse", - "Housing/WizardCity/WC_Tier2_Exterior_Preview": "Royal Playhouse", - "Housing/WizardCity/WC_Tier2_Interior": "Royal Playhouse", - "Housing/WizardCity/WC_Tier2_Interior_Preview": "Royal Playhouse", - "Housing_AR_Dormroom/Interior": "Arcanum Apartment", - "Housing_AV_BAC/Exterior": "Avalon Castle Plot", - "Housing_AV_BAC/Exterior_Preview": "Avalon Castle Plot", - "Housing_AV_BAC/Interior": "Avalon Castle Plot", - "Housing_AV_BAC/Interior_Preview": "Avalon Castle Plot", - "Housing_AV_Gauntlet/AV_Gauntlet_01/AV_Gauntlet_01_01": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_01/AV_Gauntlet_01_02": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_01/AV_Gauntlet_01_03": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_01/AV_Gauntlet_01_04": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_01/AV_Gauntlet_01_05": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_20/AV_Gauntlet_20_01": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_20/AV_Gauntlet_20_02": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_20/AV_Gauntlet_20_03": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_20/AV_Gauntlet_20_04": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_20/AV_Gauntlet_20_05": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_40/AV_Gauntlet_40_01": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_40/AV_Gauntlet_40_02": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_40/AV_Gauntlet_40_03": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_40/AV_Gauntlet_40_04": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_40/AV_Gauntlet_40_05": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_60/AV_Gauntlet_60_01": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_60/AV_Gauntlet_60_02": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_60/AV_Gauntlet_60_03": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_60/AV_Gauntlet_60_04": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_60/AV_Gauntlet_60_05": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_80/AV_Gauntlet_80_01": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_80/AV_Gauntlet_80_02": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_80/AV_Gauntlet_80_03": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_80/AV_Gauntlet_80_04": "Grand Tourney Arena", - "Housing_AV_Gauntlet/AV_Gauntlet_80/AV_Gauntlet_80_05": "Grand Tourney Arena", - "Housing_AV_OutlawHouse/AV_OutlawHouse_Ext": "Outlaw's Refuge", - "Housing_AV_OutlawHouse/AV_OutlawHouse_Ext_Preview": "Outlaw's Refuge", - "Housing_AV_OutlawHouse/AV_OutlawHouse_Int": "Outlaw's Refuge", - "Housing_AV_OutlawHouse/AV_OutlawHouse_Int_Preview": "Outlaw's Refuge", - "Housing_AZ_BAC/AZ_BAC_Ext_Preview": "Serpentine Escape", - "Housing_AZ_BAC/AZ_BAC_Int_Preview": "Serpentine Escape", - "Housing_AZ_BAC/Exterior": "Serpentine Escape", - "Housing_AZ_BAC/Interior": "Serpentine Escape", - "Housing_Acropolis/Ext_Preview": "The Acropolis", - "Housing_Acropolis/Exterior": "The Acropolis", - "Housing_Acropolis/Int_Preview": "The Acropolis", - "Housing_Acropolis/Interior": "The Acropolis", - "Housing_AeroVillage/Housing_AeroVillage_Ext": "Aero Village", - "Housing_AeroVillage/Housing_AeroVillage_Int": "Aero Village", - "Housing_AvalonTier1/Exterior": "Wyrd House", - "Housing_AvalonTier1/Exterior_Preview": "Wyrd House", - "Housing_AvalonTier1/Interior": "Wyrd House", - "Housing_AvalonTier1/Interior_Preview": "Wyrd House", - "Housing_AztecaTier1/Exterior": "Treetop Getaway", - "Housing_AztecaTier1/Exterior_Preview": "Treetop Getaway", - "Housing_AztecaTier1/Interior": "Treetop Getaway", - "Housing_AztecaTier1/Interior_Preview": "Treetop Getaway", - "Housing_BeeHouse/Ext_Preview": "Amber Estate", - "Housing_BeeHouse/Exterior": "Amber Estate", - "Housing_BeeHouse/Int_Preview": "Amber Estate", - "Housing_BeeHouse/Interior": "Amber Estate", - "Housing_BirdNest/Interior": "Treetop Getaway", - "Housing_BotanicalGardens/Exterior": "Botanical Gardens", - "Housing_BotanicalGardens/Exterior_Preview": "Botanical Gardens", - "Housing_BotanicalGardens/Interior": "Botanical Gardens", - "Housing_BotanicalGardens/Interior_Preview": "Botanical Gardens", - "Housing_BuildACastleProto/BAC_Dusk_Ext_Preview": "Build-A-Castle", - "Housing_BuildACastleProto/BAC_Dusk_Int_Preview": "Build-A-Castle", - "Housing_BuildACastleProto/BAC_Midday_Ext_Preview": "Build-A-Castle", - "Housing_BuildACastleProto/BAC_Midday_Int_Preview": "Build-A-Castle", - "Housing_BuildACastleProto/BAC_Night_Ext_Preview": "Build-A-Castle", - "Housing_BuildACastleProto/BAC_Night_Int_Preview": "Build-A-Castle", - "Housing_BuildACastleProto/Exterior": "Build-A-Castle", - "Housing_BuildACastleProto/Exterior_Dusk": "Build-A-Castle", - "Housing_BuildACastleProto/Exterior_Night": "Build-A-Castle", - "Housing_BuildACastleProto/Interior": "Build-A-Castle", - "Housing_BuildACastleProto/Interior_Dusk": "Build-A-Castle", - "Housing_BuildACastleProto/Interior_Night": "Build-A-Castle", - "Housing_CL/CL/House_CL_Tier01_A_Inside": "Island Getaway", - "Housing_CL/CL/House_CL_Tier01_A_Inside_Preview": "Island Getaway", - "Housing_CL/CL/House_CL_Tier01_A_Outside": "Island Getaway", - "Housing_CL/CL/House_CL_Tier01_A_Outside_Preview": "Island Getaway", - "Housing_CL/CL/House_CL_Tier02_A_Inside": "Celestial Observatory", - "Housing_CL/CL/House_CL_Tier02_A_Inside_Preview": "Celestial Observatory", - "Housing_CL/CL/House_CL_Tier02_A_Outside": "Celestial Observatory", - "Housing_CL/CL/House_CL_Tier02_A_Outside_Preview": "Celestial Observatory", - "Housing_CastleToursApt/Housing_CastleToursApt_Ext": "Castle Tours Apartment", - "Housing_CastleToursApt/Housing_CastleToursApt_Ext_Preview": "Castle Tours Apartment", - "Housing_CastleToursApt/Housing_CastleToursApt_Int": "Castle Tours Apartment", - "Housing_CastleToursApt/Housing_CastleToursApt_Int_Preview": "Castle Tours Apartment", - "Housing_CrystalMine/Interior": "Bountiful Mine", - "Housing_Darkmoor/Housing_Darkmoor_Ext": "Darkmoor Manor", - "Housing_Darkmoor/Housing_Darkmoor_Ext_Preview": "Darkmoor Manor", - "Housing_Darkmoor/Housing_Darkmoor_Int": "Darkmoor Manor", - "Housing_Darkmoor/Housing_Darkmoor_Int_Preview": "Darkmoor Manor", - "Housing_EM_Airship/EM_Airship_Ext": "Empyrean Airship", - "Housing_EM_Airship/EM_Airship_Ext_Preview": "Empyrean Airship", - "Housing_EM_Airship/EM_Airship_Int": "Empyrean Airship", - "Housing_EM_Airship/EM_Airship_Int_Preview": "Empyrean Airship", - "Housing_FairytaleFarm/FairytaleFarm_Ext": "Everafter Village", - "Housing_FairytaleFarm/FairytaleFarm_Ext_Preview": "Everafter Village", - "Housing_FairytaleFarm/FairytaleFarm_Int": "Everafter Village", - "Housing_FairytaleFarm/FairytaleFarm_Int_Preview": "Everafter Village", - "Housing_FantasyPalace/Exterior_Preview": "Massive Fantasy Palace", - "Housing_FantasyPalace/Interior_Preview": "Massive Fantasy Palace", - "Housing_FarmHouse/Exterior": "Red Barn Farm", - "Housing_FarmHouse/Exterior_Preview": "Red Barn Farm", - "Housing_FarmHouse/Interior": "Red Barn Farm", - "Housing_FarmHouse/Interior_Preview": "Red Barn Farm", - "Housing_FishBowl/Interior": "Fantastic Fish Bowl", - "Housing_FishingRetreat/Exterior": "Private Fishing Retreat", - "Housing_FlotsamCantina/FlotsamCantina_Ext": "Castaway's Bungalow", - "Housing_FlotsamCantina/FlotsamCantina_Ext_Preview": "Castaway's Bungalow", - "Housing_FlotsamCantina/FlotsamCantina_Int": "Castaway's Bungalow", - "Housing_FlotsamCantina/FlotsamCantina_Int_Preview": "Castaway's Bungalow", - "Housing_GHGauntlet/GH_WinterbaneGauntlet01/GH_WinterbaneGauntlet01_R01": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet01/GH_WinterbaneGauntlet01_R02": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet01/GH_WinterbaneGauntlet01_R03": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet01/GH_WinterbaneGauntlet01_R04": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet01/GH_WinterbaneGauntlet01_R05": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet01/GH_WinterbaneGauntlet01_R06": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet02/GH_WinterbaneGauntlet02_R01": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet02/GH_WinterbaneGauntlet02_R02": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet02/GH_WinterbaneGauntlet02_R03": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet02/GH_WinterbaneGauntlet02_R04": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet02/GH_WinterbaneGauntlet02_R05": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet02/GH_WinterbaneGauntlet02_R06": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet03/GH_WinterbaneGauntlet03_R01": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet03/GH_WinterbaneGauntlet03_R02": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet03/GH_WinterbaneGauntlet03_R03": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet03/GH_WinterbaneGauntlet03_R04": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet03/GH_WinterbaneGauntlet03_R05": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet03/GH_WinterbaneGauntlet03_R06": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet04/GH_WinterbaneGauntlet04_R01": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet04/GH_WinterbaneGauntlet04_R02": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet04/GH_WinterbaneGauntlet04_R03": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet04/GH_WinterbaneGauntlet04_R04": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet04/GH_WinterbaneGauntlet04_R05": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet04/GH_WinterbaneGauntlet04_R06": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet05/GH_WinterbaneGauntlet05_R01": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet05/GH_WinterbaneGauntlet05_R02": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet05/GH_WinterbaneGauntlet05_R03": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet05/GH_WinterbaneGauntlet05_R04": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet05/GH_WinterbaneGauntlet05_R05": "Winterbane Hall", - "Housing_GHGauntlet/GH_WinterbaneGauntlet05/GH_WinterbaneGauntlet05_R06": "Winterbane Hall", - "Housing_GH_BlacksmithFjord/GH_BlacksmithFjord_Ext": "Blacksmith Fjord", - "Housing_GH_BlacksmithFjord/GH_BlacksmithFjord_Ext_Preview": "Blacksmith Fjord", - "Housing_GH_BlacksmithFjord/GH_BlacksmithFjord_Int": "Blacksmith Fjord", - "Housing_GH_BlacksmithFjord/GH_BlacksmithFjord_Int_Preview": "Blacksmith Fjord", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_01": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_02": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_03": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_04": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_05": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_06": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_07": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet01/KH_Gauntlet01_08": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_01": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_02": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_03": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_04": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_05": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_06": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_07": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet20/KH_Gauntlet20_08": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_01": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_02": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_03": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_04": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_05": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_06": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_07": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet40/KH_Gauntlet40_08": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_01": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_02": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_03": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_04": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_05": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_06": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_07": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet60/KH_Gauntlet60_08": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_01": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_02": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_03": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_04": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_05": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_06": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_07": "Midnight Sun Pagoda", - "Housing_Gauntlet/KH_Gauntlet80/KH_Gauntlet80_08": "Midnight Sun Pagoda", - "Housing_Gauntlet_Professor/HG_Gauntlet_Professor_Int01": "Doomsday Krok Gauntlet", - "Housing_Gauntlet_Professor/HG_Gauntlet_Professor_Int02": "Doomsday Krok Gauntlet", - "Housing_Gauntlet_Professor/HG_Gauntlet_Professor_Int03": "Doomsday Krok Gauntlet", - "Housing_Gauntlet_Professor/HG_Gauntlet_Professor_Int04": "Doomsday Krok Gauntlet", - "Housing_Gauntlet_Sinbad/SP_SinbadGauntlet_Int01": "Sinbad & the Iron Sultan Gauntlet", - "Housing_Gauntlet_Sinbad/SP_SinbadGauntlet_Int02": "Sinbad & the Iron Sultan Gauntlet", - "Housing_Gauntlet_Sinbad/SP_SinbadGauntlet_Int03": "Sinbad & the Iron Sultan Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_01/TheaterGauntlet_G01_Int01": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_01/TheaterGauntlet_G01_Int02": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_01/TheaterGauntlet_G01_Int03": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_01/TheaterGauntlet_G01_Int04": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_02/TheaterGauntlet_G02_Int01": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_02/TheaterGauntlet_G02_Int02": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_02/TheaterGauntlet_G02_Int03": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_02/TheaterGauntlet_G02_Int04": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_03/TheaterGauntlet_G03_Int01": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_03/TheaterGauntlet_G03_Int02": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_03/TheaterGauntlet_G03_Int03": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_03/TheaterGauntlet_G03_Int04": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_04/TheaterGauntlet_G04_Int01": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_04/TheaterGauntlet_G04_Int02": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_04/TheaterGauntlet_G04_Int03": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_04/TheaterGauntlet_G04_Int04": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_05/TheaterGauntlet_G05_Int01": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_05/TheaterGauntlet_G05_Int02": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_05/TheaterGauntlet_G05_Int03": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_05/TheaterGauntlet_G05_Int04": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_06/TheaterGauntlet_G06_Int01": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_06/TheaterGauntlet_G06_Int02": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_06/TheaterGauntlet_G06_Int03": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Theater/Gauntlet_06/TheaterGauntlet_G06_Int04": "The Accursed Play Gauntlet", - "Housing_Gauntlet_Train/HG_Gauntlet_Train_Int01": "The Great Sky Train Robbery", - "Housing_Gauntlet_Train/HG_Gauntlet_Train_Int02": "The Great Sky Train Robbery", - "Housing_Gauntlet_Train/HG_Gauntlet_Train_Int03": "The Great Sky Train Robbery", - "Housing_Gauntlet_Train/HG_Gauntlet_Train_Int04": "The Great Sky Train Robbery", - "Housing_Gauntlet_Train/HG_Gauntlet_Train_Int05": "The Great Sky Train Robbery", - "Housing_Gauntlet_Train/HG_Gauntlet_Train_Int07": "The Great Sky Train Robbery", - "Housing_Gauntlet_Voyage/Gauntlet_01/Z01_KalypsoEngineRoom": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_01/Z02_KalypsoDeck": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_01/Z03_DataBeach": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_01/Z04_DataCavern": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_01/Z05_DataBeach_02": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_02/Z01_KalypsoEngineRoom": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_02/Z02_KalypsoDeck": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_02/Z03_DataBeach": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_02/Z04_DataCavern": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_02/Z05_DataBeach_02": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_03/Z01_KalypsoEngineRoom": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_03/Z02_KalypsoDeck": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_03/Z03_DataBeach": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_03/Z04_DataCavern": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_03/Z05_DataBeach_02": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_04/Z01_KalypsoEngineRoom": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_04/Z02_KalypsoDeck": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_04/Z03_DataBeach": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_04/Z04_DataCavern": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_04/Z05_DataBeach_02": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_05/Z01_KalypsoEngineRoom": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_05/Z02_KalypsoDeck": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_05/Z03_DataBeach": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_05/Z04_DataCavern": "Fantastic Voyage Expedition", - "Housing_Gauntlet_Voyage/Gauntlet_05/Z05_DataBeach_02": "Fantastic Voyage Expedition", - "Housing_GreatBelow/GreatBelow_Ext": "Briny Deep Retreat", - "Housing_GreatBelow/GreatBelow_Int": "Briny Deep Retreat", - "Housing_KaramelVillage/KaramelVillage_Ext": "Candied Isles Village", - "Housing_KaramelVillage/KaramelVillage_Ext_Preview": "Candied Isles Village", - "Housing_KaramelVillage/KaramelVillage_Int": "Candied Isles Village", - "Housing_KaramelVillage/KaramelVillage_Int_Preview": "Candied Isles Village", - "Housing_KrampusMagicArena/Interior": "Frostbitedome", - "Housing_MR_Dormroom/Interiors/MR_Faction_Calixco": "House Calixco Apartment", - "Housing_MR_Dormroom/Interiors/MR_Faction_Dromel": "Dromel Dwelling", - "Housing_MR_Dormroom/Interiors/MR_Faction_Hoods": "Hoods Hideout", - "Housing_MR_Dormroom/Interiors/MR_Faction_Sayameez": "House Sayameez Apartment", - "Housing_MR_Dormroom/Interiors/MR_Faction_Serpentine": "Serpentine Empire Den", - "Housing_MR_Dormroom/Interiors/MR_Faction_Tabbi": "House Tabbi Apartment", - "Housing_MR_Dormroom/Interiors_Preview/MR_Faction_Calixco_Preview": "House Calixco Apartment", - "Housing_MR_Dormroom/Interiors_Preview/MR_Faction_Dromel_Preview": "Dromel Dwelling", - "Housing_MR_Dormroom/Interiors_Preview/MR_Faction_Hoods_Preview": "Hoods Hideout", - "Housing_MR_Dormroom/Interiors_Preview/MR_Faction_Sayameez_Preview": "House Sayameez Apartment", - "Housing_MR_Dormroom/Interiors_Preview/MR_Faction_Serpentine_Preview": "Serpentine Empire Den", - "Housing_MR_Dormroom/Interiors_Preview/MR_Faction_Tabbi_Preview": "House Tabbi Apartment", - "Housing_Mirage_Tents/Mirage_Tents_Ext": "Nomad's Camp", - "Housing_Mirage_Tents/Mirage_Tents_Ext_Preview": "Nomad's Camp", - "Housing_Mirage_Tents/Mirage_Tents_Int": "Nomad's Camp", - "Housing_Mirage_Tents/Mirage_Tents_Int_Preview": "Nomad's Camp", - "Housing_MonsterMagicArena/Interior": "Monstrodome", - "Housing_NinjaDojo/Interior": "Shinobi Dojo", - "Housing_PA_Gauntlet/PA_Gauntlet_01/PA_Gauntlet_01_01": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_01/PA_Gauntlet_01_02": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_01/PA_Gauntlet_01_03": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_01/PA_Gauntlet_01_04": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_01/PA_Gauntlet_01_05": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_01/PA_Gauntlet_01_06": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_20/PA_Gauntlet_20_01": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_20/PA_Gauntlet_20_02": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_20/PA_Gauntlet_20_03": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_20/PA_Gauntlet_20_04": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_20/PA_Gauntlet_20_05": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_20/PA_Gauntlet_20_06": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_40/PA_Gauntlet_40_01": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_40/PA_Gauntlet_40_02": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_40/PA_Gauntlet_40_03": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_40/PA_Gauntlet_40_04": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_40/PA_Gauntlet_40_05": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_40/PA_Gauntlet_40_06": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_60/PA_Gauntlet_60_01": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_60/PA_Gauntlet_60_02": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_60/PA_Gauntlet_60_03": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_60/PA_Gauntlet_60_04": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_60/PA_Gauntlet_60_05": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_60/PA_Gauntlet_60_06": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_80/PA_Gauntlet_80_01": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_80/PA_Gauntlet_80_02": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_80/PA_Gauntlet_80_03": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_80/PA_Gauntlet_80_04": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_80/PA_Gauntlet_80_05": "Spiral Cup Gauntlet", - "Housing_PA_Gauntlet/PA_Gauntlet_80/PA_Gauntlet_80_06": "Spiral Cup Gauntlet", - "Housing_Polaris_Ship/House_Polaris_Ship_EXT": "Polarian Shipwreck", - "Housing_Polaris_Ship/House_Polaris_Ship_INT": "Polarian Shipwreck", - "Housing_Polaris_Ship/PolarisShip_Ext_Preview": "Polarian Shipwreck", - "Housing_Polaris_Ship/PolarisShip_Int_Preview": "Polarian Shipwreck", - "Housing_PyramidOfTheLost/Ext_Preview": "Pyramid of the Lost Horizon", - "Housing_PyramidOfTheLost/Exterior": "Pyramid of the Lost Horizon", - "Housing_PyramidOfTheLost/Int_Preview": "Pyramid of the Lost Horizon", - "Housing_PyramidOfTheLost/Interior": "Pyramid of the Lost Horizon", - "Housing_SP/GS_Sultans_Palace": "Sultan's Palace", - "Housing_SP/GS_Sultans_Palace_Interior": "Sultan's Palace", - "Housing_SP/SP_Exterior_Preview": "Sultan's Palace", - "Housing_SP/SP_Interior_Preview": "Sultan's Palace", - "Housing_SP_TomeFallArena/Interior": "Autumn Monstrodome", - "Housing_SP_TomeSummerArena/Interior": "Summer Monstrodome", - "Housing_SkyCastle/Housing_SkyCastle_Ext": "Heavenly Palace", - "Housing_SkyCastle/Housing_SkyCastle_Ext_Preview": "Heavenly Palace", - "Housing_SkyCastle/Housing_SkyCastle_Int": "Heavenly Palace", - "Housing_SkyCastle/Housing_SkyCastle_Int_Preview": "Heavenly Palace", - "Housing_SunPal/Exterior": "The Sun Palace", - "Housing_SunPal/Exterior_Preview": "The Sun Palace", - "Housing_SunPal/Interior": "The Sun Palace", - "Housing_SunPal/Interior_Preview": "The Sun Palace", - "Housing_SunkP/Exterior": "Sunken Palace", - "Housing_SunkP/Exterior_Preview": "Sunken Palace", - "Housing_SunkP/Interior": "Sunken Palace", - "Housing_SunkP/Interior_Preview": "Sunken Palace", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_020/VA_Level020_Exterior": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_020/VA_Level020_Room_01": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_020/VA_Level020_Room_03": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_020/VA_Level020_Room_04": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_020/VA_Level020_Room_05": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_040/VA_Level040_Exterior": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_040/VA_Level040_Room_01": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_040/VA_Level040_Room_03": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_040/VA_Level040_Room_04": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_040/VA_Level040_Room_05": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_060/VA_Level060_Exterior": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_060/VA_Level060_Room_01": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_060/VA_Level060_Room_03": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_060/VA_Level060_Room_04": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_060/VA_Level060_Room_05": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_080/VA_Level080_Exterior": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_080/VA_Level080_Room_01": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_080/VA_Level080_Room_03": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_080/VA_Level080_Room_04": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_080/VA_Level080_Room_05": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_100/VA_Level100_Exterior": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_100/VA_Level100_Room_01": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_100/VA_Level100_Room_03": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_100/VA_Level100_Room_04": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_100/VA_Level100_Room_05": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_120/VA_Level120_Exterior": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_120/VA_Level120_Room_01": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_120/VA_Level120_Room_03": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_120/VA_Level120_Room_04": "Great Clock Gauntlet", - "Housing_VA_Gauntlet/VA_Clock_Gauntlet_120/VA_Level120_Room_05": "Great Clock Gauntlet", - "Housing_Villa_Gardens/Exterior": "Wysteria Villa", - "Housing_Villa_Gardens/Exterior_Preview": "Wysteria Villa", - "Housing_Villa_Gardens/Interior": "Wysteria Villa", - "Housing_Villa_Gardens/Interior_Preview": "Wysteria Villa", - "Housing_Watch/Exterior": "Wizard's Watchtower", - "Housing_Watch/Exterior_Preview": "Wizard's Watchtower", - "Housing_Watch/Interior": "Wizard's Watchtower", - "Housing_Watch/Interior_Preview": "Wizard's Watchtower", - "Housing_Winter_Wind_Tower/Exterior": "Winter Wind Tower", - "Housing_Winter_Wind_Tower/Exterior_Preview": "Winter Wind Tower", - "Housing_Winter_Wind_Tower/Interior": "Winter Wind Tower", - "Housing_Winter_Wind_Tower/Interior_Preview": "Winter Wind Tower", - "Housing_WizardCommonsApt/House_WizardCommonsApt_Ext": "Olde Town Apartment", - "Housing_WizardCommonsApt/House_WizardCommonsApt_Ext_Pre": "Olde Town Apartment", - "Housing_WizardCommonsApt/House_WizardCommonsApt_Int": "Olde Town Apartment", - "Housing_WizardCommonsApt/House_WizardCommonsApt_Int_Pre": "Olde Town Apartment", - "Housing_WizardKeep/WizardKeep_Ext": "Battlemage Keep", - "Housing_WizardKeep/WizardKeep_Ext_Preview": "Battlemage Keep", - "Housing_WizardKeep/WizardKeep_Int": "Battlemage Keep", - "Housing_WizardKeep/WizardKeep_Int_Preview": "Battlemage Keep", - "Housing_ZF_HouseBoat/Exterior": "Jungle House Boat", - "Housing_ZF_HouseBoat/Exterior_Preview": "Jungle House Boat", - "Housing_ZF_HouseBoat/Interior": "Jungle House Boat", - "Housing_ZF_HouseBoat/Interior_Preview": "Jungle House Boat", - "Karamelle/Interiors/KM_Z00_CavityDining": "Karamelle City", - "Karamelle/Interiors/KM_Z00_CavityPassage": "Karamelle City", - "Karamelle/Interiors/KM_Z00_CountingCrypt": "Karamelle City", - "Karamelle/Interiors/KM_Z00_GingerbreadRoom": "Karamelle City", - "Karamelle/Interiors/KM_Z00_Glockenspiel_01": "Karamelle City", - "Karamelle/Interiors/KM_Z00_NanasHQ": "Karamelle City", - "Karamelle/Interiors/KM_Z00_ProductionJunction": "Karamelle City", - "Karamelle/Interiors/KM_Z00_RatingsBoard": "Karamelle City", - "Karamelle/Interiors/KM_Z00_TheCavity": "Karamelle City", - "Karamelle/Interiors/KM_Z00_TheLobby": "Karamelle City", - "Karamelle/Interiors/KM_Z01_VonTrapLodge": "Von Trap Estate", - "Karamelle/Interiors/KM_Z01_VonTrapLodge_02": "Von Trap Estate", - "Karamelle/Interiors/KM_Z03_HangryGobblerCave_01": "Gumdrop Forest", - "Karamelle/Interiors/KM_Z03_I02_PipelineCave": "Gumdrop Forest", - "Karamelle/Interiors/KM_Z03_I03_TreemuggerHideout": "Gumdrop Forest", - "Karamelle/Interiors/KM_Z04_BonBon": "Sweetzburg", - "Karamelle/Interiors/KM_Z04_GummyPlant": "Sweetzburg", - "Karamelle/Interiors/KM_Z04_IceCreamParlor": "Sweetzburg", - "Karamelle/Interiors/KM_Z04_Jamburglar": "Sweetzburg", - "Karamelle/Interiors/KM_Z04_Playhouse": "Sweetzburg", - "Karamelle/Interiors/KM_Z04_PowerRoom": "Sweetzburg", - "Karamelle/Interiors/KM_Z04_UwesWorkshop": "Sweetzburg", - "Karamelle/Interiors/KM_Z05_ChocShoppe": "Nibbleheim", - "Karamelle/Interiors/KM_Z05_OrsonOffice": "Nibbleheim", - "Karamelle/Interiors/KM_Z05_PipeJunction": "Nibbleheim", - "Karamelle/Interiors/KM_Z05_PumpRoom": "Nibbleheim", - "Karamelle/Interiors/KM_Z05_ToffeeHouse": "Nibbleheim", - "Karamelle/Interiors/KM_Z05_TreacleFoundry": "Nibbleheim", - "Karamelle/Interiors/KM_Z06_CrumblingMineshaft": "Nibbleheim Mines", - "Karamelle/Interiors/KM_Z06_MiningTunnel_A": "Nibbleheim Mines", - "Karamelle/Interiors/KM_Z06_MiningTunnel_B": "Nibbleheim Mines", - "Karamelle/Interiors/KM_Z06_MiningTunnel_C": "Nibbleheim Mines", - "Karamelle/Interiors/KM_Z06_SkelKey": "Marshmellow Critter", - "Karamelle/Interiors/KM_Z06_SkelKey_Boss": "Marshmellow Critter", - "Karamelle/Interiors/KM_Z06_WitchTunnel": "Nibbleheim Mines", - "Karamelle/Interiors/KM_Z07_CandyBar": "Gutenstadt", - "Karamelle/Interiors/KM_Z07_CupcakeFactory": "Gutenstadt", - "Karamelle/Interiors/KM_Z07_GutenShoppe": "Gutenstadt", - "Karamelle/Interiors/KM_Z07_HeidisHideout": "Gutenstadt", - "Karamelle/Interiors/KM_Z07_RegionalOffice": "Gutenstadt", - "Karamelle/Interiors/KM_Z07_Station": "Gutenstadt", - "Karamelle/Interiors/KM_Z08_BlackLicoriceCave": "Black Licorice Forest", - "Karamelle/Interiors/KM_Z08_CinnamonTrollCave": "Black Licorice Forest", - "Karamelle/Interiors/KM_Z08_ColaLake": "Black Licorice Forest", - "Karamelle/Interiors/KM_Z08_LoggingCampWahehouse": "Black Licorice Forest", - "Karamelle/Interiors/KM_Z08_RosinasHouse": "Black Licorice Forest", - "Karamelle/Interiors/KM_Z08_WitchsTreehouse": "Black Licorice Forest", - "Karamelle/Interiors/KM_Z09_Barn": "Candy Corn Farm", - "Karamelle/Interiors/KM_Z09_ChocolateMooitaurCave": "Candy Corn Farm", - "Karamelle/Interiors/KM_Z09_FactoryFarm": "Candy Corn Farm", - "Karamelle/Interiors/KM_Z09_FarmersHouse": "Candy Corn Farm", - "Karamelle/Interiors/KM_Z09_HotHouse": "Candy Corn Farm", - "Karamelle/Interiors/KM_Z09_Silo": "Candy Corn Farm", - "Karamelle/Interiors/KM_Z10_GobblertonFactory": "Gobblerton", - "Karamelle/Interiors/KM_Z10_GobblertonLibrary": "Gobblerton", - "Karamelle/Interiors/KM_Z10_Gym": "Gobblerton", - "Karamelle/Interiors/KM_Z10_RosinasLab": "Gobblerton", - "Karamelle/Interiors/KM_Z10_Store": "Gobblerton", - "Karamelle/Interiors/KM_Z10_ThroneRoom_A": "Gobblerton", - "Karamelle/Interiors/KM_Z10_ThroneRoom_B": "Gobblerton", - "Karamelle/Interiors/KM_Z10_UnderwaterGrotto": "Gobblerton", - "Karamelle/KM_Z00_HUB": "Karamelle City", - "Karamelle/KM_Z01_VonTrapEstate": "Von Trap Estate", - "Karamelle/KM_Z02_CandyMountains": "Rock Candy Mountains", - "Karamelle/KM_Z03_GumdropForest": "Gumdrop Forest", - "Karamelle/KM_Z04_Sweetzburg": "Sweetzburg", - "Karamelle/KM_Z05_Nibbleheim": "Nibbleheim", - "Karamelle/KM_Z06_Mines": "Nibbleheim Mines", - "Karamelle/KM_Z07_Gutenstadt": "Gutenstadt", - "Karamelle/KM_Z08_LicoriceForest": "Black Licorice Forest", - "Karamelle/KM_Z09_CandyCornFarm": "Candy Corn Farm", - "Karamelle/KM_Z10_Gobblerton": "Gobblerton", - "Khrysalis/Interiors/KM_ShrimpHideout_01": "Bastion", - "Khrysalis/Interiors/KM_ShrimpHideout_02": "Bastion", - "Khrysalis/Interiors/KR_Z000_Tymen_WhiteFlame": "Bastion", - "Khrysalis/Interiors/KR_Z00_I00_BenightedBurrow": "Bastion", - "Khrysalis/Interiors/KR_Z00_I01_WeepingTower_01": "Bastion", - "Khrysalis/Interiors/KR_Z00_I01_WeepingTower_02": "Bastion", - "Khrysalis/Interiors/KR_Z00_I03_Bastion_TowerofSilence": "Bastion", - "Khrysalis/Interiors/KR_Z00_I04_Bastion_BlindTower": "Bastion", - "Khrysalis/Interiors/KR_Z00_I05_Bastion_BrokenTower": "Bastion", - "Khrysalis/Interiors/KR_Z00_I07_Mausoleum": "Bastion", - "Khrysalis/Interiors/KR_Z00_I07_Mausoleum_Room01": "Bastion", - "Khrysalis/Interiors/KR_Z00_I07_Mausoleum_Room02": "Bastion", - "Khrysalis/Interiors/KR_Z00_I07_Mausoleum_Room03": "Bastion", - "Khrysalis/Interiors/KR_Z00_I07_Mausoleum_Room04": "Bastion", - "Khrysalis/Interiors/KR_Z00_I08_ThroneRoom": "Bastion", - "Khrysalis/Interiors/KR_Z00_I09_GoldenVault": "Bastion", - "Khrysalis/Interiors/KR_Z00_TwoFaced": "Bastion", - "Khrysalis/Interiors/KR_Z01_DoomMask": "Silent Market", - "Khrysalis/Interiors/KR_Z01_LimeBright": "Silent Market", - "Khrysalis/Interiors/KR_Z01_QuietOne": "Silent Market", - "Khrysalis/Interiors/KR_Z01_WarRoom": "Silent Market", - "Khrysalis/Interiors/KR_Z01_ZanzaQuarters": "Silent Market", - "Khrysalis/Interiors/KR_Z02_ButternutTower": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_CavedInCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_DetentionBlock": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_Grotto": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_HiddenCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_Honeymill": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_I02_HornetTower": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_I04_BeeHouseA": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_I07_Treasure": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_I08_QueenCine": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_I09_ThroneRoom": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_I10_WaterCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_KhazriCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_MandibleCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_MoonCliffs_Int01_01": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_MoonCliffs_Int01_02": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_MoonCliffs_Int01_03": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_MoonCliffs_Int01_A": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_MoonCliffs_Int01_B": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_StingersCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_VespaCave": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z02_ZanzaQuarters": "Moon Cliffs", - "Khrysalis/Interiors/KR_Z03_AsphodelMeadow": "Last Wood", - "Khrysalis/Interiors/KR_Z03_Cave_01": "Last Wood", - "Khrysalis/Interiors/KR_Z03_Clearing_01": "Last Wood", - "Khrysalis/Interiors/KR_Z03_DeathsHead_Cave_Int": "Last Wood", - "Khrysalis/Interiors/KR_Z03_Foothold": "Last Wood", - "Khrysalis/Interiors/KR_Z03_GardeningQuest": "Last Wood", - "Khrysalis/Interiors/KR_Z03_GlassShop": "Last Wood", - "Khrysalis/Interiors/KR_Z03_I05_UmbraTent": "Last Wood", - "Khrysalis/Interiors/KR_Z03_RagweedMeadow": "Last Wood", - "Khrysalis/Interiors/KR_Z03_ReverenceCave": "Last Wood", - "Khrysalis/Interiors/KR_Z03_UlleksTent": "Last Wood", - "Khrysalis/Interiors/KR_Z03_WeaponTent_Int": "Last Wood", - "Khrysalis/Interiors/KR_Z03_WorldRazer_Tent": "Last Wood", - "Khrysalis/Interiors/KR_Z04_I02_DragonflyNest": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I03CanyonWatchTower_01": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I03CanyonWatchTower_02": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I03_CanyonWatchTower": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I04_WinterHaloCave_01": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I05_WinterHaloCave_02": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I06_DyingSunTower": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I06_DyingSunTower_01": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I07_AbyssalCave": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I08_WampyCave": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I09_ChiroCave": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_I10_UgorCave": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z04_Overlook": "Tyrian Gorge", - "Khrysalis/Interiors/KR_Z05_BeachCave01": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I02_MetaChamber": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I03_TrainingHall": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I04_MessHall": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I06_Barracks": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I07_HallOfTrophies": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I08_InteroChamber": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I09_ChamberOfWeapons": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I10_CentralKeep": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I11_Keep": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I11_Keep_01": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I11_Keep_02": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I11_Keep_03": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I12_ManeBarracks": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_I13_HornedBarracks": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_Keep_04": "Fort Rachias", - "Khrysalis/Interiors/KR_Z05_SaqqaraBird": "Fort Rachias", - "Khrysalis/Interiors/KR_Z06_I01_BeastControl": "Aboard The Great Beast", - "Khrysalis/Interiors/KR_Z06_I01_BeastTopside_01": "Aboard The Great Beast", - "Khrysalis/Interiors/KR_Z06_I01_BeastTopside_02": "Aboard The Great Beast", - "Khrysalis/Interiors/KR_Z06_I01_BeastTopside_03": "Aboard The Great Beast", - "Khrysalis/Interiors/KR_Z06_I01_Hermitcave": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I01_Hermitcave02": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I02_AntLionWarren": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I02_AntLionWarren02": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I03_UmbraTentLarge": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I04_UmbraGuardTent": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I05_UmbraTentSm01": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I06_UmbraTentSm02": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I07_UmbraTentSm03": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I09_BeachCave01": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I10_BeachCave02": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I11_BeachCave03": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I12_BeachCave04": "Crescent Beach", - "Khrysalis/Interiors/KR_Z06_I13_BeachCave05": "Crescent Beach", - "Khrysalis/Interiors/KR_Z07_I01_ZodiacCave": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I02_AstrolabeCave": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I03_ReceptionCave": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I04_IslandCave01": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I04_IslandCave02": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I06_PhoenixBot": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I07_PhoenixTop": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I09_SerpBot": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I11_SerpCave": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I12_StagBot": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I13_StagTop": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I15_CrabBot": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z07_I17_CrabCave": "Ruined Alcazar", - "Khrysalis/Interiors/KR_Z08_I02_PheonixTower": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z08_I03_SerpentTower": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z08_I04_StagTower": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z08_I05_CrabTower": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z08_I06_Dreamroom1": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z08_I07_Dreamroom2": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z08_I08_Dreamroom3": "Radiance Reborn", - "Khrysalis/Interiors/KR_Z09_I01_ZaraziniaHouseSM": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I02_NadezhaHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I04_SeaTowerBot": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I06_DeadLeafBot": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I08_PaleBeautyBot": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I10_GarrisonBot": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I11_GarrisonTop": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I12_LostLightMain": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I13_ObeliskChamber": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I14_TroikaPalacePatronGate": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I14_TroikaPalaceSoothsayerGate": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I14_TroikaPalaceWSGate": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I15_ZedsHouseSM": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I16_ZoraksHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I19_TroikaPalaceDungeon": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I20_MunitionsRoom": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I21_VaziviaHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I22_GarrisonArmory": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I23_TorrekHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I24_RozimundHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I25_ZharelliaHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I26_PaleBeautyBot02": "Sardonyx", - "Khrysalis/Interiors/KR_Z09_I26_ZoudicaHouseLG": "Sardonyx", - "Khrysalis/Interiors/KR_Z10_I01_BurrowTent": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_AlluviumCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_DryGulchCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_MetasomaCave01": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_MetasomaCave02": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_MetasomaCave03": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_SandsOfTimeCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I05_TreeBeardCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I06_WBugCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I08_SolarArcMain": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I09_SolarArcChambBalance": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I10_SolarArcChambDeath": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I11_SolarArcChambStorm": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I12_SolarArcChambMyth": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I13_SolarArcChambIce": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I14_SolarArcChambFire": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I15_SolarArcChambLife": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I16_SolarArcChambShadow": "Solar Arc", - "Khrysalis/Interiors/KR_Z10_I17_BloodStoneCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z10_I18_FoodCave": "Kondha Desert", - "Khrysalis/Interiors/KR_Z11_I01_BlackHole": "The Hive", - "Khrysalis/Interiors/KR_Z11_I02_RecluseChamber": "The Hive", - "Khrysalis/Interiors/KR_Z11_I03_WarpTowerBot": "The Hive", - "Khrysalis/Interiors/KR_Z11_I04_WarpTowerTop": "The Hive", - "Khrysalis/Interiors/KR_Z11_I05_WeftTowerBot": "The Hive", - "Khrysalis/Interiors/KR_Z11_I06_WeftTowerTop": "The Hive", - "Khrysalis/Interiors/KR_Z11_I07_MagiHouseMain": "The Hive", - "Khrysalis/Interiors/KR_Z11_I08_MagiHouseChamb01": "The Hive", - "Khrysalis/Interiors/KR_Z11_I09_MagiHouseChamb02": "The Hive", - "Khrysalis/Interiors/KR_Z11_I10_MagiHouseChamb03": "The Hive", - "Khrysalis/Interiors/KR_Z11_I11_MagiHouseChamb04": "The Hive", - "Khrysalis/Interiors/KR_Z11_I12_MagiHouseChamb05": "The Hive", - "Khrysalis/Interiors/KR_Z11_I13_PalFangsMain": "The Hive", - "Khrysalis/Interiors/KR_Z11_I14_PalFangsChamb01": "The Hive", - "Khrysalis/Interiors/KR_Z11_I15_PalFangsChamb02": "The Hive", - "Khrysalis/Interiors/KR_Z11_I16_PalFangsChamb03": "The Hive", - "Khrysalis/Interiors/KR_Z11_I17_PalFangsChamb04": "The Hive", - "Khrysalis/Interiors/KR_Z11_I18_PalFangsChamb05": "The Hive", - "Khrysalis/Interiors/KR_Z11_I19_BarbCell": "The Hive", - "Khrysalis/Interiors/KR_Z11_I20_InteroRoom": "The Hive", - "Khrysalis/Interiors/KR_Z11_I21_MutationChamb01": "The Hive", - "Khrysalis/Interiors/KR_Z11_I22_MutationChamb02": "The Hive", - "Khrysalis/Interiors/KR_Z11_I23_TransformChamb": "The Hive", - "Khrysalis/Interiors/KR_Z11_I24_Cave01": "The Hive", - "Khrysalis/Interiors/KR_Z11_I25_Cave02": "The Hive", - "Khrysalis/Interiors/KR_Z12_I01_SpiritPlane": "Shadow Palace", - "Khrysalis/Interiors/KR_Z12_I02_Entry": "Shadow Palace", - "Khrysalis/Interiors/KR_Z12_I03_Galleries": "Shadow Palace", - "Khrysalis/Interiors/KR_Z12_I04_MorgantheBossRoom": "Morganthe's Chamber", - "Khrysalis/KR_Z00_Hub": "Bastion", - "Khrysalis/KR_Z01_SilentMarket": "Silent Market", - "Khrysalis/KR_Z02_MoonCliffs": "Moon Cliffs", - "Khrysalis/KR_Z03_LastWood": "Last Wood", - "Khrysalis/KR_Z04_TyrianGorge": "Tyrian Gorge", - "Khrysalis/KR_Z05_FortRachias": "Fort Rachias", - "Khrysalis/KR_Z06_CrescentBeach": "Crescent Beach", - "Khrysalis/KR_Z07_RuinedAlcazar": "Ruined Alcazar", - "Khrysalis/KR_Z08_RadianceReborn": "Radiance Reborn", - "Khrysalis/KR_Z09_MantisCity": "Sardonyx", - "Khrysalis/KR_Z10_KondhaDesert": "Kondha Desert", - "Khrysalis/KR_Z11_TheHive": "The Hive", - "Khrysalis/KR_Z12_ShadowPalace": "Shadow Palace", - "Krokotopia/Interiors/KT_HallofDoors": "Krokotopia Library", - "Krokotopia/Interiors/KT_Library": "Krokotopia Library", - "Krokotopia/Interiors/KT_PageEvent_BossRoom": "Lost Pages Event", - "Krokotopia/Interiors/KT_PageEvent_LandingRoom": "Lost Pages Event", - "Krokotopia/Interiors/KT_PageEvent_MobRoom": "Lost Pages Event", - "Krokotopia/Interiors/KT_School": "School of Balance", - "Krokotopia/Interiors/KT_School_Instanced": "School of Balance", - "Krokotopia/Interiors/KT_Shop01": "The Oasis", - "Krokotopia/Interiors/KT_Shop02": "The Oasis", - "Krokotopia/Interiors/KT_Shop03": "The Oasis", - "Krokotopia/Interiors/KT_Shop04": "The Oasis", - "Krokotopia/Interiors/KT_Shop05": "The Oasis", - "Krokotopia/Interiors/KT_ShopSecret": "The Oasis Secret Shop", - "Krokotopia/Interiors/KT_ShopSphinx": "Krokosphinx", - "Krokotopia/Interiors/KT_SkeletonKeyWood": "Ra's Reading Room", - "Krokotopia/Interiors/KT_SkeletonKeyWood_1330": "Sapoti's Treasure Chamber", - "Krokotopia/Interiors/KT_SkeletonKeyWood_Landing_1330": "Sapoti's Treasure Chamber", - "Krokotopia/Interiors/KT_SkeletonLanding": "Ra's Reading Room", - "Krokotopia/KT_Hub": "The Oasis", - "Krokotopia/KT_HubFlyingShip_ToIsland": "Boat to Krokosphinx", - "Krokotopia/KT_HubFlyingShip_ToMainland": "Boat to Krokosphinx", - "Krokotopia/KT_Hub_Crypt": "Tomb of Storms", - "Krokotopia/KT_Hub_Sphinx": "Krokosphinx", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T1": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T2": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T3": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T4": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T5": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T6": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T7": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Arena_T8": "Grand Arena", - "Krokotopia/KT_Krokosphinx/Interiors/KT_ChampHall_T1": "Hall of Champions", - "Krokotopia/KT_Krokosphinx/Interiors/KT_ChampHall_T2": "Hall of Champions", - "Krokotopia/KT_Krokosphinx/Interiors/KT_ChampHall_T3": "Hall of Champions", - "Krokotopia/KT_Krokosphinx/Interiors/KT_ChampHall_T4": "Hall of Champions", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Retreat_T1": "Emperor's Retreat", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Retreat_T2": "Emperor's Retreat", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Retreat_T4": "Emperor's Retreat", - "Krokotopia/KT_Krokosphinx/Interiors/KT_Vault_T1": "The Vault of Ice", - "Krokotopia/KT_Krokosphinx/KT_Arena": "Grand Arena", - "Krokotopia/KT_Krokosphinx/KT_ChampHall": "Hall of Champions", - "Krokotopia/KT_Krokosphinx/KT_EntranceHall": "Entrance Hall", - "Krokotopia/KT_Krokosphinx/KT_Retreat": "Emperor's Retreat", - "Krokotopia/KT_Krokosphinx/KT_Vault": "The Vault of Ice", - "Krokotopia/KT_Pyramid/Interiors/KT_Chamber_T1": "Chamber of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_Chamber_T2": "Chamber of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_Chamber_T3": "Chamber of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_Chamber_T4": "Chamber of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_Chamber_T5": "Chamber of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_Hall_T1": "Royal Hall", - "Krokotopia/KT_Pyramid/Interiors/KT_Hall_T2": "Royal Hall", - "Krokotopia/KT_Pyramid/Interiors/KT_Hall_T3": "Royal Hall", - "Krokotopia/KT_Pyramid/Interiors/KT_Hall_T4": "Royal Hall", - "Krokotopia/KT_Pyramid/Interiors/KT_Hall_T5": "Royal Hall", - "Krokotopia/KT_Pyramid/Interiors/KT_PalaceOfFire_T1": "Palace of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_PalaceOfFire_T2": "Palace of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_PalaceOfFire_T3": "Palace of Fire", - "Krokotopia/KT_Pyramid/Interiors/KT_PalaceOfFire_T4": "Palace of Fire", - "Krokotopia/KT_Pyramid/KT_AltarOfKings": "Altar of Kings", - "Krokotopia/KT_Pyramid/KT_Chamber": "Chamber of Fire", - "Krokotopia/KT_Pyramid/KT_Hall": "Royal Hall", - "Krokotopia/KT_Pyramid/KT_PalaceOfFire": "Palace of Fire", - "Krokotopia/KT_Pyramid/KT_ThroneRoom": "Throne Room of Fire", - "Krokotopia/KT_Tomb/Interiors/AhnicTomb_T2_2": "Ahnic Family Tomb", - "Krokotopia/KT_Tomb/Interiors/KT_AhnicTomb_T1": "Ahnic Family Tomb", - "Krokotopia/KT_Tomb/Interiors/KT_AhnicTomb_T2": "Ahnic Family Tomb", - "Krokotopia/KT_Tomb/Interiors/KT_Barracks_T1": "Karanahn Barracks", - "Krokotopia/KT_Tomb/Interiors/KT_Barracks_T2": "Karanahn Barracks", - "Krokotopia/KT_Tomb/Interiors/KT_Barracks_T4": "Karanahn Barracks", - "Krokotopia/KT_Tomb/Interiors/KT_Crypt06_Map00_Storm": "Tomb of the Beguiler", - "Krokotopia/KT_Tomb/Interiors/KT_Crypt06_Map01_Fire": "Tomb of the Beguiler", - "Krokotopia/KT_Tomb/Interiors/KT_Crypt06_Map02_Ice": "Tomb of the Beguiler", - "Krokotopia/KT_Tomb/Interiors/KT_Crypt06_Map03_Gauntlet": "Tomb of the Beguiler", - "Krokotopia/KT_Tomb/Interiors/KT_DjeseritTomb_T1": "Djeserit Family Tomb", - "Krokotopia/KT_Tomb/Interiors/KT_DjeseritTomb_T1_2": "Djeserit Family Tomb", - "Krokotopia/KT_Tomb/Interiors/KT_Djeserit_CL_Preview": "Djeserit Family Tomb", - "Krokotopia/KT_Tomb/KT_AhnicTomb": "Ahnic Family Tomb", - "Krokotopia/KT_Tomb/KT_Barracks": "Karanahn Barracks", - "Krokotopia/KT_Tomb/KT_DjeseritTomb": "Djeserit Family Tomb", - "Krokotopia/KT_Tomb/KT_KaranahnPalace": "Karanahn Palace", - "Krokotopia/KT_Tomb/KT_TempleOfStorms": "Temple of Storms", - "Krokotopia/KT_Tomb/KT_WellOfSpirits": "Well of Spirits", - "Krokotopia/KT_WorldTeleporter": "Krokotopia Spiral Chamber", - "Marleybone/G14_Gauntlet/MB_Z01_BarkinghamCourtyard": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z02_PalaceWestWing_01": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z03_PalaceWestWing_02": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z04_PalaceWestWing_03": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z05_ThroneRoom": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z06_Rooftop": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z07_Dirigible_Cargo": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z08_Dirigible_Main": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z09_ThroneRoomEnd": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z10_MainHall_01": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z11_MainHall_02": "Barkingham Palace", - "Marleybone/G14_Gauntlet/MB_Z12_SkeletoneKey01": "Barkingham Palace State Wing Wooden Key Room", - "Marleybone/G14_Gauntlet/MB_Z12_SkeletoneKey02": "Barkingham Palace Main Hall Wooden Key Room", - "Marleybone/G14_Gauntlet/MB_Z13_Dirigible_Cargo_02": "Barkingham Palace", - "Marleybone/Interiors/MB_Event_Maestro/MB_Z00_TelepgraphBox": "The Five B.O.X.E.S.", - "Marleybone/Interiors/MB_Event_Maestro/MB_Z01_Museum": "The Five B.O.X.E.S.", - "Marleybone/Interiors/MB_Event_Maestro/MB_Z02_Prison": "The Five B.O.X.E.S.", - "Marleybone/Interiors/MB_Event_Maestro/MB_Z03_MeowiartysLair": "The Five B.O.X.E.S.", - "Marleybone/Interiors/MB_Event_Maestro/MB_Z04_ClandestineTower": "The Five B.O.X.E.S.", - "Marleybone/Interiors/MB_Event_Maestro/MB_Z05_PreTowerFight": "The Five B.O.X.E.S.", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_01": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_02": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_03": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_04": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_05": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_06": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_07": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_08": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_09": "Big Ben", - "Marleybone/Interiors/MB_Gauntlet/MB_Gauntlet1/MB_Gauntlet1_10": "Big Ben", - "Marleybone/Interiors/MB_GravulumLab": "Regent's Square", - "Marleybone/Interiors/MB_PostOffice1": "Regent's Square", - "Marleybone/Interiors/MB_PostOffice2": "Regent's Square", - "Marleybone/Interiors/MB_PostOffice3": "Regent's Square", - "Marleybone/Interiors/MB_PostOffice4": "Regent's Square", - "Marleybone/Interiors/MB_PreAZ_HalleysTowerInt": "Halley's Observatory", - "Marleybone/Interiors/MB_Pubs": "Regent's Square", - "Marleybone/Interiors/MB_ScotlandYard": "Scotland Yard", - "Marleybone/Interiors/MB_SherlockHolmesHouse_Instance": "Regent's Square", - "Marleybone/Interiors/MB_SherlockHolmes_House": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Athames": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Decks": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Hats": "Regent's Square", - "Marleybone/Interiors/MB_Shop_House": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Rings": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Robes": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Shoes": "Regent's Square", - "Marleybone/Interiors/MB_Shop_Wands": "Regent's Square", - "Marleybone/Interiors/MB_WolfminsterAbbey": "Wolfminister Abbey", - "Marleybone/Interiors/PilotsPub": "Digmoore Station", - "Marleybone/MB_BigBen/MB_BigBen": "Big Ben", - "Marleybone/MB_BigBen/MB_CounterweightEast": "Counterweight East", - "Marleybone/MB_BigBen/MB_CounterweightWest": "Counterweight West", - "Marleybone/MB_BigBen/MB_Museum": "Royal Museum", - "Marleybone/MB_BigBen/MB_Museum_Instance": "Royal Museum", - "Marleybone/MB_BigBen/MB_Museum_XTRA_C04": "Royal Museum", - "Marleybone/MB_Hub": "Regent's Square", - "Marleybone/MB_PreAZ_HalleysTower": "Halley's Observatory", - "Marleybone/MB_ScotlandYard/Interiors/MB_KC_GRAV_02": "Scotland Yard", - "Marleybone/MB_ScotlandYard/Interiors/MB_KatzLab_T3": "Katzenstein's Lab", - "Marleybone/MB_ScotlandYard/Interiors/MB_KatzLab_T5": "Katzenstein's Lab", - "Marleybone/MB_ScotlandYard/Interiors/MB_KatzLab_T6": "Katzenstein's Lab", - "Marleybone/MB_ScotlandYard/Interiors/MB_KatzLab_T9": "Katzenstein's Lab", - "Marleybone/MB_ScotlandYard/Interiors/MB_KnightsCourt_T2": "Knight's Court", - "Marleybone/MB_ScotlandYard/Interiors/MB_KnightsCourt_T3": "Knight's Court", - "Marleybone/MB_ScotlandYard/Interiors/MB_KnightsCourt_T4": "Knight's Court", - "Marleybone/MB_ScotlandYard/Interiors/MB_KnightsCourt_T6": "Knight's Court", - "Marleybone/MB_ScotlandYard/Interiors/MB_KnightsCourt_T8": "Knight's Court", - "Marleybone/MB_ScotlandYard/Interiors/MB_KnightsCourt_T9": "Knight's Court", - "Marleybone/MB_ScotlandYard/Interiors/MB_Prison_T1": "Newgate Prison", - "Marleybone/MB_ScotlandYard/Interiors/MB_Prison_T3": "Newgate Prison", - "Marleybone/MB_ScotlandYard/Interiors/MB_Prison_T4": "Newgate Prison", - "Marleybone/MB_ScotlandYard/Interiors/MB_Prison_T5": "Newgate Prison", - "Marleybone/MB_ScotlandYard/MB_KatzLab": "Katzenstein's Lab", - "Marleybone/MB_ScotlandYard/MB_KnightsCourt": "Knight's Court", - "Marleybone/MB_ScotlandYard/MB_Prison": "Newgate Prison", - "Marleybone/MB_ScotlandYard/MB_Roof": "Scotland Yard Roof", - "Marleybone/MB_Station/Interiors/MB_Airport_Instance01": "Digmoore Station", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_LD": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_T3": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_T6": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_T8": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_T9": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_W1": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_ChelseaCourt_W2": "Chelsea Court", - "Marleybone/MB_Station/Interiors/MB_HydePark_T1": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T2": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T3": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T4": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T5": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T6": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T7": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_HydePark_T8": "Hyde Park", - "Marleybone/MB_Station/Interiors/MB_Ironworks_T1": "The Ironworks", - "Marleybone/MB_Station/Interiors/MB_Ironworks_T5": "The Ironworks", - "Marleybone/MB_Station/Interiors/MB_Ironworks_T6": "The Ironworks", - "Marleybone/MB_Station/Interiors/MB_Ironworks_T7": "The Ironworks", - "Marleybone/MB_Station/Interiors/MB_Ironworks_T8": "The Ironworks", - "Marleybone/MB_Station/MB_Airport_Instance01": "Digmoore Station", - "Marleybone/MB_Station/MB_ChelseaCourt": "Chelsea Court", - "Marleybone/MB_Station/MB_FlightFromCourt": "Balloon Car to Digmoore Station", - "Marleybone/MB_Station/MB_FlightFromHydePark": "Balloon Car to Digmoore Station", - "Marleybone/MB_Station/MB_FlightFromIronworks": "Balloon Car to Digmoore Station", - "Marleybone/MB_Station/MB_FlightToCourt": "Balloon Car to Chelsea Court", - "Marleybone/MB_Station/MB_FlightToHydePark": "Balloon Car to Hyde Park", - "Marleybone/MB_Station/MB_FlightToIronworks": "Balloon Car to The Ironworks", - "Marleybone/MB_Station/MB_HydePark": "Hyde Park", - "Marleybone/MB_Station/MB_Ironworks": "The Ironworks", - "Marleybone/MB_Station/MB_Station_Hub": "Digmoore Station", - "Mirage/Interiors/MR_Z00_CleanRoom": "Caravan", - "Mirage/Interiors/MR_Z00_DumoozidsTent": "Caravan", - "Mirage/Interiors/MR_Z00_GhulturesNest": "Caravan", - "Mirage/Interiors/MR_Z00_HideyHole": "Caravan", - "Mirage/Interiors/MR_Z00_ScaledDemonDen": "Caravan", - "Mirage/Interiors/MR_Z00_SnakeCave": "Caravan", - "Mirage/Interiors/MR_Z00_UlnarCrypt": "Caravan", - "Mirage/Interiors/MR_Z01_Barracks": "Alkali Barrows", - "Mirage/Interiors/MR_Z01_DefiledCrypt": "Alkali Barrows", - "Mirage/Interiors/MR_Z01_DrujCave": "Alkali Barrows", - "Mirage/Interiors/MR_Z01_ForbiddenVault": "Alkali Barrows", - "Mirage/Interiors/MR_Z01_ImportantCave": "Alkali Barrows", - "Mirage/Interiors/MR_Z01_OverlordsOssuary": "Alkali Barrows", - "Mirage/Interiors/MR_Z01_TombForgotten": "Alkali Barrows", - "Mirage/Interiors/MR_Z02_Alley01": "Aggrobah", - "Mirage/Interiors/MR_Z02_Alley02": "Aggrobah", - "Mirage/Interiors/MR_Z02_Alley03": "Aggrobah", - "Mirage/Interiors/MR_Z02_FourPoints": "Aggrobah", - "Mirage/Interiors/MR_Z02_GreyGhostOffice": "Aggrobah", - "Mirage/Interiors/MR_Z02_IndraHouse": "Aggrobah", - "Mirage/Interiors/MR_Z02_MagicCarpetRide": "Aggrobah", - "Mirage/Interiors/MR_Z02_NorthGate": "Aggrobah", - "Mirage/Interiors/MR_Z02_Palace": "Aggrobah", - "Mirage/Interiors/MR_Z02_PalaceMain": "Aggrobah", - "Mirage/Interiors/MR_Z02_PalaceTreasureVault": "Aggrobah", - "Mirage/Interiors/MR_Z02_PalaceTreasureVault02": "Aggrobah", - "Mirage/Interiors/MR_Z02_QuietBungalow": "Aggrobah", - "Mirage/Interiors/MR_Z02_SkeletonKeyLanding": "Aggrobah Skeleton Key Room", - "Mirage/Interiors/MR_Z02_SkeletonKeyWarehouse": "Aggrobah Skeleton Key Room", - "Mirage/Interiors/MR_Z02_SmugglingTunnel": "Aggrobah", - "Mirage/Interiors/MR_Z02_Stash": "Aggrobah", - "Mirage/Interiors/MR_Z02_SultFoyer": "Aggrobah", - "Mirage/Interiors/MR_Z02_SultOffice": "Aggrobah", - "Mirage/Interiors/MR_Z02_TheRoost": "Aggrobah", - "Mirage/Interiors/MR_Z02_TheRoost02": "Aggrobah", - "Mirage/Interiors/MR_Z02_ThuggieHideaway": "Aggrobah", - "Mirage/Interiors/MR_Z02_ThuggieLair": "Aggrobah", - "Mirage/Interiors/MR_Z02_ThuggieSalon": "Aggrobah", - "Mirage/Interiors/MR_Z02_VizierApt": "Aggrobah", - "Mirage/Interiors/MR_Z02_Warehouse01": "Aggrobah", - "Mirage/Interiors/MR_Z02_YahyaOffice": "Aggrobah", - "Mirage/Interiors/MR_Z03_BuriedGardens": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_CavernOfTheWurm": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_FemoralTomb": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_GhostMaze": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_JezzeritCounselHall": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_JezzeritMonastery": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_LordsRetreat": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_TabbiManor": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_TraitorsCave": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z03_VassalManse": "Caterwaul Canyons", - "Mirage/Interiors/MR_Z04_BaronsAudienceChamber": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_BaronsRetreat": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_CalixcoManor": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_CalixcoNursery": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_ChestCavity": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_HallsOfConfusion": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_MonguRefuge": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_MottomanTreasureCave": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_NepetaMine_Cave01": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_NepetaMine_Cave02": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_NepetaMine_Cave03": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_QhaysHideaway": "Rubal Wastes", - "Mirage/Interiors/MR_Z04_TowerOfBabble": "Rubal Wastes", - "Mirage/Interiors/MR_Z05_ArchitectHouse": "Istanboa", - "Mirage/Interiors/MR_Z05_Armory": "Istanboa", - "Mirage/Interiors/MR_Z05_CatstanArchives": "Istanboa", - "Mirage/Interiors/MR_Z05_CatstanRuins": "Istanboa", - "Mirage/Interiors/MR_Z05_ConstractorDepot": "Istanboa", - "Mirage/Interiors/MR_Z05_Gatehouse": "Istanboa", - "Mirage/Interiors/MR_Z05_KobraKaiDojo_Room01": "Istanboa", - "Mirage/Interiors/MR_Z05_OfficersClub": "Istanboa", - "Mirage/Interiors/MR_Z05_RahqiGym": "Istanboa", - "Mirage/Interiors/MR_Z05_SnakeSafehouse": "Istanboa", - "Mirage/Interiors/MR_Z05_SnakishPass": "Istanboa", - "Mirage/Interiors/MR_Z05_TetrusPrison": "Istanboa", - "Mirage/Interiors/MR_Z05_TetrusSolitaryBlock": "Istanboa", - "Mirage/Interiors/MR_Z05_VipersDen": "Istanboa", - "Mirage/Interiors/MR_Z06_ChairmanSuite": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_DeepFreeze": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_DeepFreeze_02": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_DeepFreeze_03": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_PrincessHovel": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_RebelHQ": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_RebelHQ_02": "Yakhal Mountain", - "Mirage/Interiors/MR_Z06_RotwangLab": "Yakhal Mountain", - "Mirage/Interiors/MR_Z07_AliChamber": "Thieves' Den", - "Mirage/Interiors/MR_Z07_PrivateHalls": "Thieves' Den", - "Mirage/Interiors/MR_Z07_SerpentSocialClub": "Serpent Social Club", - "Mirage/Interiors/MR_Z07_ThievesVault": "Thieves' Den", - "Mirage/Interiors/MR_Z07_Trap": "Thieves' Den", - "Mirage/Interiors/MR_Z07_UnderDen": "Thieves' Den", - "Mirage/Interiors/MR_Z08_DumoozidLamp": "Eerem Palace", - "Mirage/Interiors/MR_Z08_EeremGardens": "Eerem Palace", - "Mirage/Interiors/MR_Z08_EerkalaCourt": "Eerem Palace", - "Mirage/Interiors/MR_Z09_ChronocleChamber": "Zruvan Grotto", - "Mirage/Interiors/MR_Z09_HouseOfScrolls": "Zruvan Grotto", - "Mirage/Interiors/MR_Z09_TimelessCenter": "Zruvan Grotto", - "Mirage/Interiors/MR_Z09_TimelessTower": "Zruvan Grotto", - "Mirage/Interiors/MR_Z10_ChapterHall": "Chronoverge", - "Mirage/Interiors/MR_Z10_EastTimeDunes": "Sands of Time", - "Mirage/Interiors/MR_Z10_NorthTimeDunes": "Sands of Time", - "Mirage/Interiors/MR_Z10_SandsofTime": "Sands of Time", - "Mirage/Interiors/MR_Z10_SouthTimeDune": "Sands of Time", - "Mirage/Interiors/MR_Z10_WestTimeDune": "Sands of Time", - "Mirage/MR_Z00_Hub": "Caravan", - "Mirage/MR_Z01_AlkaliBarrows": "Alkali Barrows", - "Mirage/MR_Z02_Aggrobah": "Aggrobah", - "Mirage/MR_Z03_CaterwaulCanyon": "Caterwaul Canyons", - "Mirage/MR_Z04_RubalWastes": "Rubal Wastes", - "Mirage/MR_Z05_Istanboa": "Istanboa", - "Mirage/MR_Z06_YakhalMountain": "Yakhal Mountain", - "Mirage/MR_Z07_ThievesDen": "Thieves' Den", - "Mirage/MR_Z08_EeremPalace": "Eerem Palace", - "Mirage/MR_Z09_ZruvanGrotto": "Zruvan Grotto", - "Mirage/MR_Z09_ZruvanGrotto_Ancient": "Zruvan Grotto", - "Mirage/MR_Z10_Chronoverge": "Chronoverge", - "MooShu/Interiors/MS_Emperor_Palace": "Emperor's Throne Room", - "MooShu/Interiors/MS_GardenDojo_T1": "Jade Palace", - "MooShu/Interiors/MS_GardenDojo_T2": "Jade Palace", - "MooShu/Interiors/MS_GardenDojo_T3": "Jade Palace", - "MooShu/Interiors/MS_MaestroEvent/MS_Z00_LandingZone": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z01_GammaTower": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z02_SpiritSchool": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z03_DimwoodVale": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z04_CornuHouse": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z05_DimwoodShack": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z06_DeathTower01": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_MaestroEvent/MS_Z06_DeathTower02": "The Five B.O.X.E.S.", - "MooShu/Interiors/MS_Master_Sin_Pagoda": "Shoshun Village", - "MooShu/Interiors/MS_PageEvent_BossRoom": "Lost Pages Event", - "MooShu/Interiors/MS_PageEvent_LandingRoom": "Lost Pages Event", - "MooShu/Interiors/MS_PageEvent_MobRoom": "Lost Pages Event", - "MooShu/Interiors/MS_RockDojoT2": "Jade Palace", - "MooShu/Interiors/MS_ShopAccessories": "Jade Palace", - "MooShu/Interiors/MS_ShopClothing": "Jade Palace", - "MooShu/Interiors/MS_ShopHouse": "Jade Palace", - "MooShu/Interiors/MS_ShopJewelry": "Jade Palace", - "MooShu/Interiors/MS_ShopWeapon": "Jade Palace", - "MooShu/Interiors/MS_Teleport_Chamber": "MooShu Spiral Chamber", - "MooShu/Interiors/MS_WaterDojoT1": "Jade Palace", - "MooShu/Interiors/MS_WaterDojot1_Common": "Jade Palace", - "MooShu/MS_Death/Interiors/MS_CL_Preview": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death1_T1": "Ancient Burial Grounds", - "MooShu/MS_Death/Interiors/MS_Death1_T2": "Ancient Burial Grounds", - "MooShu/MS_Death/Interiors/MS_Death1_T3": "Ancient Burial Grounds", - "MooShu/MS_Death/Interiors/MS_Death1_T4": "Ancient Burial Grounds", - "MooShu/MS_Death/Interiors/MS_Death1_T5_SpiritWorld": "Ancient Burial Grounds", - "MooShu/MS_Death/Interiors/MS_Death1_T6": "Ancient Burial Grounds", - "MooShu/MS_Death/Interiors/MS_Death2_Dojo1A": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death2_T1": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death2_T2": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death2_T3": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death2_T5": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death2_T6": "Village of Sorrow", - "MooShu/MS_Death/Interiors/MS_Death3_SpiritWorld": "Tree of Life", - "MooShu/MS_Death/Interiors/MS_Death3_T2": "Tree of Life", - "MooShu/MS_Death/Interiors/MS_Death3_T4": "Tree of Life", - "MooShu/MS_Death/Interiors/MS_Death3_T5": "Tree of Life", - "MooShu/MS_Death/MS_Death_Hub_RuinedTemple": "Yoshihito Temple", - "MooShu/MS_Death/MS_Death_Zone1_BurialGround": "Ancient Burial Grounds", - "MooShu/MS_Death/MS_Death_Zone2_HauntedVillage": "Village of Sorrow", - "MooShu/MS_Death/MS_Death_Zone3_AncientTree": "Tree of Life", - "MooShu/MS_Hub": "Jade Palace", - "MooShu/MS_Plague/Interiors/MS_Plague1_T1": "Cave of Solitude", - "MooShu/MS_Plague/Interiors/MS_Plague1_T2": "Cave of Solitude", - "MooShu/MS_Plague/Interiors/MS_Plague1_T3": "Cave of Solitude", - "MooShu/MS_Plague/Interiors/MS_Plague1_T5": "Cave of Solitude", - "MooShu/MS_Plague/Interiors/MS_Plague1_T6": "Cave of Solitude", - "MooShu/MS_Plague/Interiors/MS_Plague1_T7": "Cave of Solitude", - "MooShu/MS_Plague/Interiors/MS_Plague2_PalaceInterior": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T1": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T2": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T2_Part2": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T3": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T4": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T5": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague2_T6": "Kishibe Village", - "MooShu/MS_Plague/Interiors/MS_Plague3_Dojo1": "Shirataki Temple", - "MooShu/MS_Plague/Interiors/MS_Plague3_T1": "Shirataki Temple", - "MooShu/MS_Plague/Interiors/MS_Plague3_T2": "Shirataki Temple", - "MooShu/MS_Plague/Interiors/MS_Plague3_T3": "Shirataki Temple", - "MooShu/MS_Plague/Interiors/MS_Plague3_T4": "Shirataki Temple", - "MooShu/MS_Plague/Interiors/MS_Plague3_T5": "Shirataki Temple", - "MooShu/MS_Plague/Interiors/MS_Plague_SkeletonKey_T1": "Cave of Solitude Wooden Key Room", - "MooShu/MS_Plague/Interiors/MS_Plague_SkeletonKey_T2": "Cave of Solitude Wooden Key Room", - "MooShu/MS_Plague/MS_Plague_Hub_FarmVillage": "Shoshun Village", - "MooShu/MS_Plague/MS_Plague_Zone1_WaterfallCave": "Cave of Solitude", - "MooShu/MS_Plague/MS_Plague_Zone2_RiverVillage": "Kishibe Village", - "MooShu/MS_Plague/MS_Plague_Zone3_CliffsidePalace": "Shirataki Temple", - "MooShu/MS_War/Interiors/MS_War1_T1": "Tatakai Outpost", - "MooShu/MS_War/Interiors/MS_War1_T3": "Tatakai Outpost", - "MooShu/MS_War/Interiors/MS_War1_T4": "Tatakai Outpost", - "MooShu/MS_War/Interiors/MS_War1_T5": "Tatakai Outpost", - "MooShu/MS_War/Interiors/MS_War1_T6": "Tatakai Outpost", - "MooShu/MS_War/Interiors/MS_War2_T1": "Crimson Fields", - "MooShu/MS_War/Interiors/MS_War2_T2": "Crimson Fields", - "MooShu/MS_War/Interiors/MS_War2_T4": "Crimson Fields", - "MooShu/MS_War/Interiors/MS_WarHub_T1": "Hametsu Village", - "MooShu/MS_War/Interiors/MS_WarHub_T4": "Hametsu Village", - "MooShu/MS_War/MS_War_BattlefieldA": "Crimson Fields", - "MooShu/MS_War/MS_War_BattlefieldB": "Tatakai Outpost", - "MooShu/MS_War/MS_War_RuinedVillage_Hub": "Hametsu Village", - "PetDerby/Derby_DS_Route_01": "Pet Derby", - "PetDerby/Derby_DS_Route_02": "Pet Derby", - "PetDerby/Derby_DS_Route_03": "Pet Derby", - "PetDerby/Derby_GH_Route_01": "Pet Derby", - "PetDerby/Derby_GH_Route_02": "Pet Derby", - "PetDerby/Derby_GH_Route_03": "Pet Derby", - "PetDerby/Derby_KT_Route_01": "Pet Derby", - "PetDerby/Derby_KT_Route_02": "Pet Derby", - "PetDerby/Derby_KT_Route_03": "Pet Derby", - "PetDerby/Derby_MB_Route_01": "Pet Derby", - "PetDerby/Derby_MB_Route_02": "Pet Derby", - "PetDerby/Derby_MB_Route_03": "Pet Derby", - "PetDerby/Derby_MS_Route_01": "Pet Derby", - "PetDerby/Derby_MS_Route_02": "Pet Derby", - "PetDerby/Derby_MS_Route_03": "Pet Derby", - "PetDerby/Derby_WC_Route_01": "Pet Derby", - "PetDerby/Derby_WC_Route_02": "Pet Derby", - "PetDerby/Derby_WC_Route_03": "Pet Derby", - "Polaris/Interiors/PL_Z00_ClovisHeadquarters": "Walruskberg", - "Polaris/Interiors/PL_Z00_FirstPrecinct": "Walruskberg", - "Polaris/Interiors/PL_Z00_I05_TowerBot": "Walruskberg", - "Polaris/Interiors/PL_Z00_I05_TowerMid": "Walruskberg", - "Polaris/Interiors/PL_Z00_I05_TowerMid_B": "Walruskberg", - "Polaris/Interiors/PL_Z00_I05_TowerTop": "Walruskberg", - "Polaris/Interiors/PL_Z00_I14_Barracks_A": "Walruskberg", - "Polaris/Interiors/PL_Z00_I14_Barracks_B": "Walruskberg", - "Polaris/Interiors/PL_Z00_LeonsHouse": "Walruskberg", - "Polaris/Interiors/PL_Z00_MidnightInn": "Walruskberg", - "Polaris/Interiors/PL_Z00_MidnightInn_Hall": "Walruskberg", - "Polaris/Interiors/PL_Z00_OperaHouse": "Walruskberg", - "Polaris/Interiors/PL_Z00_OperaHouse_02": "Walruskberg", - "Polaris/Interiors/PL_Z00_Operahouse_Dressingroom": "Walruskberg", - "Polaris/Interiors/PL_Z00_Palace": "Walruskberg", - "Polaris/Interiors/PL_Z00_Palace_02": "Walruskberg", - "Polaris/Interiors/PL_Z00_Palace_03": "Walruskberg", - "Polaris/Interiors/PL_Z00_Palace_04": "Walruskberg", - "Polaris/Interiors/PL_Z00_Palace_04B": "Walruskberg", - "Polaris/Interiors/PL_Z00_Shop01": "Walruskberg", - "Polaris/Interiors/PL_Z00_TikiStockroom": "Walruskberg", - "Polaris/Interiors/PL_Z00_TikiTavern": "Walruskberg", - "Polaris/Interiors/PL_Z00__ImperialRecords": "Walruskberg", - "Polaris/Interiors/PL_Z01_I03_HeadQuarters_A": "Walruskberg Harbor", - "Polaris/Interiors/PL_Z01_I03_HeadQuarters_B": "Walruskberg Harbor", - "Polaris/Interiors/PL_Z01_TorcidosOffice": "Walruskberg Harbor", - "Polaris/Interiors/PL_Z02_BabaYagaHut_Int": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_BabaYagaStatuary": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_BabaYagaStatuary02": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_BridgeControl": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_BullhemothCave": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_Detolli": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_Detolli02": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_MammothCave01": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_ScaryMonsterLair": "Forlorn Tayg", - "Polaris/Interiors/PL_Z02_Snowbeard": "Forlorn Tayg", - "Polaris/Interiors/PL_Z03I01_SunlessTempleBot": "River of Frozen Tears", - "Polaris/Interiors/PL_Z03I02_SunlessTempleMid": "River of Frozen Tears", - "Polaris/Interiors/PL_Z03I03_SunlessTempleTop": "River of Frozen Tears", - "Polaris/Interiors/PL_Z03I04_SunlessShrineEnt": "River of Frozen Tears", - "Polaris/Interiors/PL_Z03I05_AuroracleChamber": "River of Frozen Tears", - "Polaris/Interiors/PL_Z03_MommothCave02": "River of Frozen Tears", - "Polaris/Interiors/PL_Z03_SkeletonKeyT1": "Omen's Hideout", - "Polaris/Interiors/PL_Z03_SkeletonKeyT2": "Omen's Hideout", - "Polaris/Interiors/PL_Z04_BeastMaster01": "Urville Station", - "Polaris/Interiors/PL_Z04_BeastMaster02": "Urville Station", - "Polaris/Interiors/PL_Z04_BeastMaster03": "Urville Station", - "Polaris/Interiors/PL_Z04_Cave01": "Urville Station", - "Polaris/Interiors/PL_Z04_MayorsHouse": "Urville Station", - "Polaris/Interiors/PL_Z04_MayorsHouse02": "Urville Station", - "Polaris/Interiors/PL_Z04_NostradonimusHouse": "Urville Station", - "Polaris/Interiors/PL_Z05_MammothCave03": "Frigid Maw", - "Polaris/Interiors/PL_Z05_MineDocks": "Frigid Maw", - "Polaris/Interiors/PL_Z05_MineLiftChamber": "Frigid Maw", - "Polaris/Interiors/PL_Z05_MineLiftChamber_B": "Frigid Maw", - "Polaris/Interiors/PL_Z05_PebbleTrough": "Frigid Maw", - "Polaris/Interiors/PL_Z05_PitBossLair": "Frigid Maw", - "Polaris/Interiors/PL_Z05_PitBossLair_B": "Frigid Maw", - "Polaris/Interiors/PL_Z05_PitBossLair_C": "Frigid Maw", - "Polaris/Interiors/PL_Z06_ColdSteel01": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_GolemGarden": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_Kalypso_AboveDeck": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_Kalypso_BelowDeck": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_KambataUnderwater": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_KambataUnderwater02": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_RasputinsLaboratory": "Kataba IceBlock", - "Polaris/Interiors/PL_Z06_TitanPod": "Kataba IceBlock", - "Polaris/Interiors/PL_Z07_BreathingCave_01": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_BreathingCave_02": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_JeweledSlopes": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_JeweledSlopes_P2": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_JeweledSlopes_P3": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_PL_Horizon_Hold": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_SkyAnchorPeak": "Borealis Peaks", - "Polaris/Interiors/PL_Z07_Snowasis": "Borealis Peaks", - "Polaris/Interiors/Z01_CellblockB_01": "The Basstille", - "Polaris/Interiors/Z01_CellblockB_02": "The Basstille", - "Polaris/Interiors/Z01_CustomsStorage": "Walruskberg Harbor", - "Polaris/Interiors/Z01_I01_PirateShip01": "Walruskberg Harbor", - "Polaris/Interiors/Z01_I01_PirateShip02": "Walruskberg Harbor", - "Polaris/Interiors/Z01_I01_PirateShip03": "Walruskberg Harbor", - "Polaris/Interiors/Z01_I02_LaNettoyage": "Walruskberg Harbor", - "Polaris/Interiors/Z01_I06_Basstille": "The Basstille", - "Polaris/Interiors/Z01_I06b_Cellblock": "The Basstille", - "Polaris/Interiors/Z01_I07_CellblockA": "The Basstille", - "Polaris/Interiors/Z01_I08_CellblockB": "The Basstille", - "Polaris/Interiors/Z01_I09_CellblockC": "The Basstille", - "Polaris/Interiors/Z01_I10_ProcessingWard": "The Basstille", - "Polaris/Interiors/Z03_AlornasCave": "River of Frozen Tears", - "Polaris/Interiors/Z03_GroffsCave": "River of Frozen Tears", - "Polaris/Interiors/Z03_ZootsCave": "River of Frozen Tears", - "Polaris/PL_Z00_Walruskberg": "Walruskberg", - "Polaris/PL_Z01_Harbor": "Walruskberg Harbor", - "Polaris/PL_Z02_ForlornTaig": "Forlorn Tayg", - "Polaris/PL_Z03_IcefallPassage": "River of Frozen Tears", - "Polaris/PL_Z04_UrvilleStation": "Urville Station", - "Polaris/PL_Z05_FrigidMine": "Frigid Maw", - "Polaris/PL_Z06_KatabaIceblock": "Kataba IceBlock", - "Polaris/PL_Z07_BorealisPeaks": "Borealis Peaks", - "Test/Nathan_Test/MB_SherlockTest": "idk where tf y'all at anymore", - "Test/Sound_Test": "idk where tf y'all at anymore", - "ThePhantomZoneWorld/CatchAKey": "Catch a Key", - "ThePhantomZoneWorld/ChooChooZoo": "Choo-Choo Zoo", - "ThePhantomZoneWorld/DoodleDougPhantomZone": "Doodle Doug", - "ThePhantomZoneWorld/Dueling_Diego": "Dueling Diego", - "ThePhantomZoneWorld/HotShots": "Hot Shots", - "ThePhantomZoneWorld/LemuriaGame": "Lemuria Game", - "ThePhantomZoneWorld/PetGameCannon/Range01": "Pet Cannon Game", - "ThePhantomZoneWorld/PetGameCannon/Range02": "Pet Cannon Game", - "ThePhantomZoneWorld/PetGameCannon/Range03": "Pet Cannon Game", - "ThePhantomZoneWorld/PetGameCannon/Range04": "Pet Cannon Game", - "ThePhantomZoneWorld/PetGameCannon/Range05": "Pet Cannon Game", - "ThePhantomZoneWorld/PetGameDance": "Pet Dance Game", - "ThePhantomZoneWorld/PetGameDrop": "Pet Drop Game", - "ThePhantomZoneWorld/PetGameGrumpyGobblers": "Grumpy Gobblers Game", - "ThePhantomZoneWorld/PetGameMaze": "Pet Maze Game", - "ThePhantomZoneWorld/PetGameMorph": "Hatching a Pet", - "ThePhantomZoneWorld/PetGameObstacleCourse/Course01": "Pet Derby", - "ThePhantomZoneWorld/PetGameObstacleCourse/Course02": "Pet Derby", - "ThePhantomZoneWorld/PetGameObstacleCourse/Course03": "Pet Derby", - "ThePhantomZoneWorld/PetGameObstacleCourse/Course04": "Pet Derby", - "ThePhantomZoneWorld/PetGameObstacleCourse/Course05": "Pet Derby", - "ThePhantomZoneWorld/PotionMotion": "Potion Motion", - "ThePhantomZoneWorld/Shockalock": "Shock a Lock", - "ThePhantomZoneWorld/SkullRidersPhantomZone": "Skull Riders", - "ThePhantomZoneWorld/SoblocksPhantomZone": "Sorcery Stones", - "ThePhantomZoneWorld/ThePhantomZone": "Mini Games", - "ThePhantomZoneWorld/WebGameGrubGuardian": "Grub Guardian", - "ThePhantomZoneWorld/WebGameLobby": "Web Game Lobby", - "ThePhantomZoneWorld/concentration": "Conjuration Concentration", - "WizardCity/AV_Arena": "Avalon Arena", - "WizardCity/AZ_Arena": "Azteca Arena", - "WizardCity/CL_Arena": "Celestia Arena", - "WizardCity/DS_Arena": "Dragonspyre Arena", - "WizardCity/GH_Arena": "Grizzleheim Arena", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room01": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room02": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room03": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room04": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room05": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room06": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room07": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room08": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room09": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room10": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Gauntlet_01/Room11": "Colossus Boulevard", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_01": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_01a": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_02": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_03": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_04": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_05": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_06": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_07": "Waterworks", - "WizardCity/Gauntlets/WC_Triton_Gauntlet1/WC_Triton_Gauntlet_08": "Waterworks", - "WizardCity/Interiors/WC_AltarChamber": "Bartleby's Root System", - "WizardCity/Interiors/WC_CastleTours": "Castle Tours Headquarters", - "WizardCity/Interiors/WC_Fire_Cave": "Golem Court", - "WizardCity/Interiors/WC_Fishing_CE_01": "Fishing Cave", - "WizardCity/Interiors/WC_Hatchery": "The Pet Hatchery", - "WizardCity/Interiors/WC_Headmaster_CabinetOfWonders": "Merle Ambrose's House", - "WizardCity/Interiors/WC_Headmaster_Tower": "Merle Ambrose's Tower", - "WizardCity/Interiors/WC_Headmistress_House": "Merle Ambrose's House", - "WizardCity/Interiors/WC_Housing_Dorm_Interior": "Dormitory", - "WizardCity/Interiors/WC_Krampus_LandingZone": "Yuletide Feasting Hall", - "WizardCity/Interiors/WC_Krampus_Outside_Gold": "Krampusgarten (Gold Lock)", - "WizardCity/Interiors/WC_Krampus_Outside_Stone": "Krampusgarten (Stone Lock)", - "WizardCity/Interiors/WC_Krampus_Outside_Wood": "Krampusgarten (Wood Lock)", - "WizardCity/Interiors/WC_Library": "Wizard City Library", - "WizardCity/Interiors/WC_LibraryBookStacks": "Wizard City Library", - "WizardCity/Interiors/WC_Park_Petshop": "Pet Pavilion", - "WizardCity/Interiors/WC_Park_Snackshop": "Pet Pavilion", - "WizardCity/Interiors/WC_PartyRoom": "Shopping District", - "WizardCity/Interiors/WC_RootSystem": "Bartleby's Root System", - "WizardCity/Interiors/WC_SchoolDeath": "School of Death", - "WizardCity/Interiors/WC_SchoolFire": "School of Fire", - "WizardCity/Interiors/WC_SchoolFrost": "School of Ice", - "WizardCity/Interiors/WC_SchoolLife": "School of Life", - "WizardCity/Interiors/WC_SchoolLife_C02": "School of Life", - "WizardCity/Interiors/WC_SchoolMyth": "School of Myth", - "WizardCity/Interiors/WC_SchoolStorm": "School of Storm", - "WizardCity/Interiors/WC_ShopDye": "Dye Shop", - "WizardCity/Interiors/WC_Shop_Amulets": "Amulet Shop", - "WizardCity/Interiors/WC_Shop_Athames": "Athame Shop", - "WizardCity/Interiors/WC_Shop_Boots": "Boot Shop", - "WizardCity/Interiors/WC_Shop_Decks": "Deck Shop", - "WizardCity/Interiors/WC_Shop_Hat": "Hat Shop", - "WizardCity/Interiors/WC_Shop_House": "Furniture & Castle Shop", - "WizardCity/Interiors/WC_Shop_Jeweler": "RockHammer's Jewel Works", - "WizardCity/Interiors/WC_Shop_Makeup": "Magic Mirror Shop", - "WizardCity/Interiors/WC_Shop_Pets": "Pet Shop", - "WizardCity/Interiors/WC_Shop_Rings": "Ring Shop", - "WizardCity/Interiors/WC_Shop_Robes": "Robe Shop", - "WizardCity/Interiors/WC_Shop_Wands": "Wand Shop", - "WizardCity/Interiors/WC_Spiral_Cinematic": "Merle Ambrose's Tower", - "WizardCity/Interiors/WC_TowerBal_C02a": "Fire Tower", - "WizardCity/Interiors/WC_TowerBal_C02c": "Storm Tower", - "WizardCity/Interiors/WC_TowerBal__C02b": "Ice Tower", - "WizardCity/Interiors/WC_TowerDeath": "Death Tower", - "WizardCity/Interiors/WC_TowerDeath_C02_002": "Death Tower", - "WizardCity/Interiors/WC_TowerFire": "Fire Tower", - "WizardCity/Interiors/WC_TowerFire_C02": "Fire Tower", - "WizardCity/Interiors/WC_TowerIce": "Ice Tower", - "WizardCity/Interiors/WC_TowerIce_C02": "Ice Tower", - "WizardCity/Interiors/WC_TowerLife": "Life Tower", - "WizardCity/Interiors/WC_TowerMyth": "Myth Tower", - "WizardCity/Interiors/WC_TowerMyth_C02": "Myth Tower", - "WizardCity/Interiors/WC_TowerMyth_Main": "Myth Tower", - "WizardCity/Interiors/WC_TowerStorm": "Storm Tower", - "WizardCity/Interiors/WC_TowerStorm_C03": "Storm Tower", - "WizardCity/KR_IsleOfArachnis": "Isle Of Arachnis", - "WizardCity/KT_Duel_Arena": "Krokotopia Arena", - "WizardCity/MB_Arena": "Marleybone Arena", - "WizardCity/MS_Arena": "MooShu Arena", - "WizardCity/PA_Arena": "Wysteria Arena", - "WizardCity/QA_SpawnRate": "Wizard City", - "WizardCity/TreasureTower/WC_TT01_Balance_L01": "Balance Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Balance_L02": "Balance Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Balance_L03": "Balance Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Balance_L04": "Balance Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Balance_L05": "Balance Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Balance_L06": "Balance Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Balance_L07": "Balance Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Balance_L08": "Balance Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Balance_L09": "Balance Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Balance_L10": "Balance Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Balance_L11": "Balance Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Balance_L12": "Balance Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Balance_L13": "Balance Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Balance_L14": "Balance Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Balance_L15": "Balance Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Balance_L16": "Balance Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Balance_L17": "Balance Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Balance_L18": "Balance Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Balance_L19": "Balance Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Balance_L20": "Balance Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Balance_L21": "Balance Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Balance_L22": "Balance Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Balance_L23": "Balance Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Balance_L24": "Balance Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Balance_L25": "Balance Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Balance_L26": "Balance Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Balance_L27": "Balance Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Balance_L28": "Balance Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Balance_L29": "Balance Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Balance_L30": "Balance Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Death_L01": "Death Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Death_L02": "Death Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Death_L03": "Death Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Death_L04": "Death Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Death_L05": "Death Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Death_L06": "Death Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Death_L07": "Death Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Death_L08": "Death Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Death_L09": "Death Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Death_L10": "Death Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Death_L11": "Death Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Death_L12": "Death Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Death_L13": "Death Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Death_L14": "Death Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Death_L15": "Death Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Death_L16": "Death Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Death_L17": "Death Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Death_L18": "Death Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Death_L19": "Death Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Death_L20": "Death Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Death_L21": "Death Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Death_L22": "Death Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Death_L23": "Death Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Death_L24": "Death Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Death_L25": "Death Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Death_L26": "Death Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Death_L27": "Death Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Death_L28": "Death Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Death_L29": "Death Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Death_L30": "Death Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Fire_L01": "Fire Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Fire_L02": "Fire Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Fire_L03": "Fire Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Fire_L04": "Fire Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Fire_L05": "Fire Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Fire_L06": "Fire Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Fire_L07": "Fire Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Fire_L08": "Fire Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Fire_L09": "Fire Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Fire_L10": "Fire Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Fire_L11": "Fire Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Fire_L12": "Fire Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Fire_L13": "Fire Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Fire_L14": "Fire Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Fire_L15": "Fire Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Fire_L16": "Fire Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Fire_L17": "Fire Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Fire_L18": "Fire Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Fire_L19": "Fire Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Fire_L20": "Fire Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Fire_L21": "Fire Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Fire_L22": "Fire Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Fire_L23": "Fire Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Fire_L24": "Fire Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Fire_L25": "Fire Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Fire_L26": "Fire Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Fire_L27": "Fire Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Fire_L28": "Fire Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Fire_L29": "Fire Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Fire_L30": "Fire Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Ice_L01": "Ice Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Ice_L02": "Ice Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Ice_L03": "Ice Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Ice_L04": "Ice Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Ice_L05": "Ice Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Ice_L06": "Ice Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Ice_L07": "Ice Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Ice_L08": "Ice Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Ice_L09": "Ice Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Ice_L10": "Ice Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Ice_L11": "Ice Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Ice_L12": "Ice Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Ice_L13": "Ice Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Ice_L14": "Ice Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Ice_L15": "Ice Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Ice_L16": "Ice Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Ice_L17": "Ice Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Ice_L18": "Ice Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Ice_L19": "Ice Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Ice_L20": "Ice Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Ice_L21": "Ice Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Ice_L22": "Ice Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Ice_L23": "Ice Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Ice_L24": "Ice Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Ice_L25": "Ice Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Ice_L26": "Ice Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Ice_L27": "Ice Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Ice_L28": "Ice Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Ice_L29": "Ice Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Ice_L30": "Ice Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Life_L01": "Life Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Life_L02": "Life Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Life_L03": "Life Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Life_L04": "Life Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Life_L05": "Life Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Life_L06": "Life Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Life_L07": "Life Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Life_L08": "Life Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Life_L09": "Life Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Life_L10": "Life Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Life_L11": "Life Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Life_L12": "Life Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Life_L13": "Life Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Life_L14": "Life Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Life_L15": "Life Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Life_L16": "Life Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Life_L17": "Life Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Life_L18": "Life Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Life_L19": "Life Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Life_L20": "Life Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Life_L21": "Life Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Life_L22": "Life Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Life_L23": "Life Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Life_L24": "Life Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Life_L25": "Life Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Life_L26": "Life Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Life_L27": "Life Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Life_L28": "Life Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Life_L29": "Life Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Life_L30": "Life Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Myth_L01": "Myth Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Myth_L02": "Myth Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Myth_L03": "Myth Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Myth_L04": "Myth Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Myth_L05": "Myth Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Myth_L06": "Myth Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Myth_L07": "Myth Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Myth_L08": "Myth Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Myth_L09": "Myth Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Myth_L10": "Myth Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Myth_L11": "Myth Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Myth_L12": "Myth Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Myth_L13": "Myth Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Myth_L14": "Myth Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Myth_L15": "Myth Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Myth_L16": "Myth Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Myth_L17": "Myth Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Myth_L18": "Myth Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Myth_L19": "Myth Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Myth_L20": "Myth Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Myth_L21": "Myth Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Myth_L22": "Myth Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Myth_L23": "Myth Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Myth_L24": "Myth Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Myth_L25": "Myth Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Myth_L26": "Myth Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Myth_L27": "Myth Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Myth_L28": "Myth Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Myth_L29": "Myth Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Myth_L30": "Myth Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Storm_L01": "Storm Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Storm_L02": "Storm Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Storm_L03": "Storm Deckathalon Tower (Stage 1)", - "WizardCity/TreasureTower/WC_TT01_Storm_L04": "Storm Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Storm_L05": "Storm Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Storm_L06": "Storm Deckathalon Tower (Stage 2)", - "WizardCity/TreasureTower/WC_TT01_Storm_L07": "Storm Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Storm_L08": "Storm Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Storm_L09": "Storm Deckathalon Tower (Stage 3)", - "WizardCity/TreasureTower/WC_TT01_Storm_L10": "Storm Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Storm_L11": "Storm Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Storm_L12": "Storm Deckathalon Tower (Stage 4)", - "WizardCity/TreasureTower/WC_TT01_Storm_L13": "Storm Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Storm_L14": "Storm Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Storm_L15": "Storm Deckathalon Tower (Stage 5)", - "WizardCity/TreasureTower/WC_TT01_Storm_L16": "Storm Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Storm_L17": "Storm Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Storm_L18": "Storm Deckathalon Tower (Stage 6)", - "WizardCity/TreasureTower/WC_TT01_Storm_L19": "Storm Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Storm_L20": "Storm Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Storm_L21": "Storm Deckathalon Tower (Stage 7)", - "WizardCity/TreasureTower/WC_TT01_Storm_L22": "Storm Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Storm_L23": "Storm Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Storm_L24": "Storm Deckathalon Tower (Stage 8)", - "WizardCity/TreasureTower/WC_TT01_Storm_L25": "Storm Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Storm_L26": "Storm Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Storm_L27": "Storm Deckathalon Tower (Stage 9)", - "WizardCity/TreasureTower/WC_TT01_Storm_L28": "Storm Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Storm_L29": "Storm Deckathalon Tower (Stage 10)", - "WizardCity/TreasureTower/WC_TT01_Storm_L30": "Storm Deckathalon Tower (Stage 10)", - "WizardCity/Tutorial_Duel_Arena": "Arena", - "WizardCity/Tutorial_Duel_Arena_2": "Arena", - "WizardCity/Tutorial_Duel_Arena_3": "Arena", - "WizardCity/Tutorial_Exterior": "Tutorial", - "WizardCity/Tutorial_Interior": "Tutorial", - "WizardCity/WC_Duel_Arena": "Arena", - "WizardCity/WC_Duel_Arena_New": "Wizard City Arena", - "WizardCity/WC_Golem_Tower": "Golem Tower", - "WizardCity/WC_Hub": "The Commons", - "WizardCity/WC_NightSide": "Nightside", - "WizardCity/WC_Ravenwood": "Ravenwood", - "WizardCity/WC_Ravenwood_Graduation": "Graduation Ceremony", - "WizardCity/WC_Ravenwood_Lite": "Ravenwood", - "WizardCity/WC_Ravenwood_Teleporter": "The World Tree", - "WizardCity/WC_Shop_Area": "Shopping District", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_Avalon": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_Crypt01": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_DragonCave": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_LivingTomb": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_RealityEdge": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_Valencia_A": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_Valencia_B": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_Valencia_C": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_ViggorsTomb": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Catacombs_WhisperingSepulcher": "The Catacombs", - "WizardCity/WC_Streets/Interiors/WC_Colossus_Balcony": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Colossus_H1": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Colossus_HideoutEarl": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Colossus_T1": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Colossus_T2": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Colossus_T3": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Colossus_ThroneRoom": "Colossus Boulevard", - "WizardCity/WC_Streets/Interiors/WC_Cyclops_T1": "Cyclops Lane", - "WizardCity/WC_Streets/Interiors/WC_Cyclops_T2": "Cyclops Lane", - "WizardCity/WC_Streets/Interiors/WC_DarkCave_MalistairesHouse": "Malistaire's House", - "WizardCity/WC_Streets/Interiors/WC_DarkCave_MalistairesSanctum": "Malistaire's House", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z00_TelegraphBox": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z01__Falmeas_Dorm_Ice": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z02_Ice_Tower": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z03_GammaTower": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z04_Fire_School": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z05_Fire_Tower01": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z06_Falmeas_Dorm_Fire": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z07_Fire_Tower02": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_Event_Maestro/WC_Z08_Fire_Tower02_Basement": "The Five B.O.X.E.S.", - "WizardCity/WC_Streets/Interiors/WC_FireCat_HideoutMauler": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_CabalSafehouse": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_CabalSafehouse02": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_H1": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_H2": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_T1": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_T2": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_T3": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_Firecat_Theatre": "Firecat Alley", - "WizardCity/WC_Streets/Interiors/WC_HauntedCave_T1": "Haunted Cave", - "WizardCity/WC_Streets/Interiors/WC_HauntedCave_T2": "Haunted Cave", - "WizardCity/WC_Streets/Interiors/WC_HauntedCave_T3": "Haunted Cave", - "WizardCity/WC_Streets/Interiors/WC_OldeTown_AuctionHouse": "Wizard City Bazaar", - "WizardCity/WC_Streets/Interiors/WC_OldeTown_C01": "Olde Town", - "WizardCity/WC_Streets/Interiors/WC_OldeTown_T1": "Olde Town", - "WizardCity/WC_Streets/Interiors/WC_OldeTown_T2": "Olde Town", - "WizardCity/WC_Streets/Interiors/WC_OldeTwon_H1": "Olde Town", - "WizardCity/WC_Streets/Interiors/WC_PET_Park": "Pet Pavilion", - "WizardCity/WC_Streets/Interiors/WC_PageEvent_BossRoom": "Lost Pages Event", - "WizardCity/WC_Streets/Interiors/WC_PageEvent_LandingRoom": "Lost Pages Event", - "WizardCity/WC_Streets/Interiors/WC_PageEvent_MobRoom": "Lost Pages Event", - "WizardCity/WC_Streets/Interiors/WC_SkelKey_FathomlessTomb1": "Fathomless Tomb", - "WizardCity/WC_Streets/Interiors/WC_SkelKey_FathomlessTomb2": "Fathomless Tomb", - "WizardCity/WC_Streets/Interiors/WC_Sunken_City_SkeletonKey01": "Simon's Workshop", - "WizardCity/WC_Streets/Interiors/WC_Sunken_City_T1": "Sunken City", - "WizardCity/WC_Streets/Interiors/WC_Sunken_City_T2": "Sunken City", - "WizardCity/WC_Streets/Interiors/WC_Sunken_City_T3": "Sunken City", - "WizardCity/WC_Streets/Interiors/WC_Triton_H2": "Triton Avenue", - "WizardCity/WC_Streets/Interiors/WC_Triton_HideoutPetes": "Triton Avenue", - "WizardCity/WC_Streets/Interiors/WC_Triton_T1": "Triton Avenue", - "WizardCity/WC_Streets/Interiors/WC_Triton_T2": "Triton Avenue", - "WizardCity/WC_Streets/Interiors/WC_Triton_T3": "Triton Avenue", - "WizardCity/WC_Streets/Interiors/WC_Unicorn_H1": "Unicorn Way", - "WizardCity/WC_Streets/Interiors/WC_Unicorn_H2": "Unicorn Way", - "WizardCity/WC_Streets/Interiors/WC_Unicorn_H3": "Unicorn Way", - "WizardCity/WC_Streets/Interiors/WC_Unicorn_HedgeMaze": "Unicorn Way", - "WizardCity/WC_Streets/Interiors/WC_Unicorn_T1": "Unicorn Way", - "WizardCity/WC_Streets/Interiors/WC_Unicorn_T2": "Unicorn Way", - "WizardCity/WC_Streets/WC_Catacombs": "The Catacombs", - "WizardCity/WC_Streets/WC_Catacombs_B": "The Catacombs", - "WizardCity/WC_Streets/WC_Catacombs_C": "The Catacombs", - "WizardCity/WC_Streets/WC_Colossus": "Colossus Boulevard", - "WizardCity/WC_Streets/WC_Cyclops": "Cyclops Lane", - "WizardCity/WC_Streets/WC_DarkCave": "Dark Cave", - "WizardCity/WC_Streets/WC_Drains/WC_Drains_BeansBackyard": "The Drains", - "WizardCity/WC_Streets/WC_Drains/WC_Drains_BeansShop": "The Drains", - "WizardCity/WC_Streets/WC_Drains/WC_Drains_DeadsLair": "The Drains", - "WizardCity/WC_Streets/WC_Drains/WC_Drains_FalloutAntechamber": "The Drains", - "WizardCity/WC_Streets/WC_Drains/WC_Drains_FalloutShelter": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z00_BetterNinjaTunnel": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z00_ClubBackyard": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z00_ClubHouse": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z00_Drains_HUB": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z00_ShedderLair": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z00_ShedderTunnel": "The Drains", - "WizardCity/WC_Streets/WC_Drains/Z04_BossOffice": "Olde Town Drains", - "WizardCity/WC_Streets/WC_Drains/Z04_CollapsedTunnel": "Olde Town Drains", - "WizardCity/WC_Streets/WC_Drains/Z04_OldeTownDrains": "Olde Town Drains", - "WizardCity/WC_Streets/WC_Firecat": "Firecat Alley", - "WizardCity/WC_Streets/WC_Golem_Tower/WC_Golem_Tower_1": "Golem Tower", - "WizardCity/WC_Streets/WC_Golem_Tower/WC_Golem_Tower_2": "Golem Tower", - "WizardCity/WC_Streets/WC_Golem_Tower/WC_Golem_Tower_3": "Golem Tower", - "WizardCity/WC_Streets/WC_Golem_Tower/WC_Golem_Tower_4": "Golem Tower", - "WizardCity/WC_Streets/WC_Golem_Tower/WC_Golem_Tower_5": "Golem Tower", - "WizardCity/WC_Streets/WC_HauntedCave": "Haunted Cave", - "WizardCity/WC_Streets/WC_OldeTown": "Olde Town", - "WizardCity/WC_Streets/WC_Sunken_City": "Sunken City", - "WizardCity/WC_Streets/WC_Triton": "Triton Avenue", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_C1": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_H1": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_SkelKey": "Crab Alley Wooden Key Room", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_SkelKey_Boss": "Crab Alley Wooden Key Room", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_Storm": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_T1": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_T2": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_T3": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/Interiors/WC_Triton_Underwater_T4": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/WC_Triton_Underwater": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/WC_Triton_Warren01": "Crab Alley", - "WizardCity/WC_Streets/WC_Triton_Underwater/WC_Triton_Warren02": "Crab Alley", - "WizardCity/WC_Streets/WC_Unicorn": "Unicorn Way", - "WizardCity/ZF_Arena": "Zafaria Arena", - "Wysteria/Interiors/PA_Classroom_Chaos": "School of Chaos", - "Wysteria/Interiors/PA_Classroom_Earth": "School of Earth", - "Wysteria/Interiors/PA_Classroom_Earth_Variant": "School of Earth", - "Wysteria/Interiors/PA_Classroom_Ember": "School of Ember", - "Wysteria/Interiors/PA_Classroom_Equil": "School of Equilibrium", - "Wysteria/Interiors/PA_Classroom_Frost": "School of Frost", - "Wysteria/Interiors/PA_Classroom_Spirit": "School of Spirit", - "Wysteria/Interiors/PA_Classroom_Water": "School of Tempest", - "Wysteria/Interiors/PA_Crystal_Tower": "Pegasus Place", - "Wysteria/Interiors/PA_Dorm": "Pigswick Student Dormitory", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room1": "Tower of the Helephant", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room2": "Tower of the Helephant", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room3": "Tower of the Helephant", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room4": "Tower of the Helephant", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room5": "Tower of the Helephant", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room6": "Tower of the Helephant", - "Wysteria/Interiors/PA_Gauntlet_01/PA_Gauntlet_01_Room7": "Tower of the Helephant", - "Wysteria/Interiors/PA_Headmistress": "Headmistress' Office", - "Wysteria/Interiors/PA_House01": "Tanglewood Way", - "Wysteria/Interiors/PA_House02": "Pegasus Place", - "Wysteria/Interiors/PA_House03": "Tanglewood Way", - "Wysteria/Interiors/PA_Library": "Pigswick Library", - "Wysteria/Interiors/PA_Library_Archive": "Pigswick Library", - "Wysteria/Interiors/PA_Lord_Bramble_Tower": "Tanglewood Way", - "Wysteria/Interiors/PA_Store01": "Pigswick Academy", - "Wysteria/Interiors/PA_Store02": "Pigswick Academy", - "Wysteria/Interiors/PA_Store03": "Pigswick Academy", - "Wysteria/Interiors/PA_Store04": "Pigswick Academy", - "Wysteria/Interiors/PA_Store05": "Pigswick Academy", - "Wysteria/Interiors/PA_Tournament_Arena01": "Tournament Hall", - "Wysteria/Interiors/PA_Tournament_Arena02": "Tournament Hall", - "Wysteria/Interiors/PA_Tournament_Arena03": "Tournament Hall", - "Wysteria/Interiors/PA_Tournament_Arena04": "Tournament Hall", - "Wysteria/Interiors/PA_Tournament_Arena05": "Tournament Hall", - "Wysteria/Interiors/PA_Tournament_Entry": "Tournament Hall", - "Wysteria/PA_Hub": "Pigswick Academy", - "Wysteria/PA_Z01_Pegasus": "Pegasus Place", - "Wysteria/PA_Z02_Tanglewood": "Tanglewood Way", - "Zafaria/Interiors/ZF_Event_Maestro/ZF_Z00_TelegraphBox": "The Five B.O.X.E.S.", - "Zafaria/Interiors/ZF_Event_Maestro/ZF_Z01_IslandTavern": "The Five B.O.X.E.S.", - "Zafaria/Interiors/ZF_Event_Maestro/ZF_Z02_CaveHideout": "The Five B.O.X.E.S.", - "Zafaria/Interiors/ZF_Event_Maestro/ZF_Z03_PirateShipInt": "The Five B.O.X.E.S.", - "Zafaria/Interiors/ZF_Event_Maestro/ZF_Z04_PirateShipDeck": "The Five B.O.X.E.S.", - "Zafaria/Interiors/ZF_Z00_I01_Witch_Doctors_Hut": "Baobab Crossroads", - "Zafaria/Interiors/ZF_Z01_I01_Safari_Lodge_Dormitory": "Baobab Crown", - "Zafaria/Interiors/ZF_Z01_I02_Library_Classroom": "Baobab Crown", - "Zafaria/Interiors/ZF_Z01_I03_BriarPatch": "Baobab Crown", - "Zafaria/Interiors/ZF_Z03_I01_Blackhoofs_Hut": "Savannah", - "Zafaria/Interiors/ZF_Z03_I02_Redbands_Hut": "Savannah", - "Zafaria/Interiors/ZF_Z03_I03_Snaketongues_Hut": "Savannah", - "Zafaria/Interiors/ZF_Z04_CavePainting": "Savannah", - "Zafaria/Interiors/ZF_Z04_I01_Queens_Cave": "Savannah", - "Zafaria/Interiors/ZF_Z04_I02_Nemean_Rock_Cave": "Savannah", - "Zafaria/Interiors/ZF_Z04_I03_Top_of_the_Rock": "Savannah", - "Zafaria/Interiors/ZF_Z04_I04_Spirit_Cave_01": "Savannah", - "Zafaria/Interiors/ZF_Z04_I05_Spirit_Cave_02": "Savannah", - "Zafaria/Interiors/ZF_Z04_I06_Cave_01": "Savannah", - "Zafaria/Interiors/ZF_Z04_I07_Jatas_Cave_01": "Savannah", - "Zafaria/Interiors/ZF_Z04_I08_Wakanda_Cave": "Savannah", - "Zafaria/Interiors/ZF_Z04_I09_Kiathi_Nighthunter_Cave": "Savannah", - "Zafaria/Interiors/ZF_Z05_I05_Jungle_Clearing_01": "Zamunda Outskirts", - "Zafaria/Interiors/ZF_Z05_I05_Jungle_Clearing_02": "Zamunda Outskirts", - "Zafaria/Interiors/ZF_Z05_I05_Jungle_Clearing_03": "Zamunda Outskirts", - "Zafaria/Interiors/ZF_Z05_I05_Jungle_Clearing_04": "Zamunda Outskirts", - "Zafaria/Interiors/ZF_Z06_I01_Barracks": "Zamunda", - "Zafaria/Interiors/ZF_Z06_I02_Kings_Court03": "Zamunda", - "Zafaria/Interiors/ZF_Z06_I03_Magicians_House": "Zamunda", - "Zafaria/Interiors/ZF_Z06_I04_Kings_Tomb": "Zamunda", - "Zafaria/Interiors/ZF_Z06_I04_Kings_Tomb_Anteroom": "Zamunda", - "Zafaria/Interiors/ZF_Z07_I01_Darajani_Palace": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I02_War_Olyphants_Tower": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I03_Zoo": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I04_Amedras_Tower": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I05_Aleksis_Tower": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I06_Market_Tower": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I07_PoachersHome": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I08_MinionQuest": "Stone Town", - "Zafaria/Interiors/ZF_Z07_I09_MinionQuest": "Stone Town", - "Zafaria/Interiors/ZF_Z08_I01_Stone_Town_Barge": "Waterfront", - "Zafaria/Interiors/ZF_Z08_I02_Belloqs_Tent": "Waterfront", - "Zafaria/Interiors/ZF_Z08_I03_Black_Palace": "Waterfront", - "Zafaria/Interiors/ZF_Z08_I04_Library_Cave_Art_Museum": "Waterfront", - "Zafaria/Interiors/ZF_Z08_I08_Librarians_Hideout": "Waterfront", - "Zafaria/Interiors/ZF_Z08_SkeletonKeyLandingRoom": "Waterfront Stone Key Room", - "Zafaria/Interiors/ZF_Z08_SkeletonKeyMainRoom": "Waterfront Stone Key Room", - "Zafaria/Interiors/ZF_Z09_I01_Silverbacks_Shack": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_I02_Gorilla_Shack": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_I03_Barge_from_Stone_Town": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_I04_Overseers_Tower": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_I05_Waterfall_Cliff_Cave": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_I06_Jungle_Clearing": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_Ogun_Daggertooth_Shack": "Drum Jungle", - "Zafaria/Interiors/ZF_Z09_Oya_Redstorm_Cave": "Drum Jungle", - "Zafaria/Interiors/ZF_Z10_I01_Little_Mausoleum": "Elephant Graveyard", - "Zafaria/Interiors/ZF_Z10_I02_Didos_Mausoleum": "Elephant Graveyard", - "Zafaria/Interiors/ZF_Z10_I03_Drum_House": "Elephant Graveyard", - "Zafaria/Interiors/ZF_Z10_I04_Little_Mausoleum_02": "Elephant Graveyard", - "Zafaria/Interiors/ZF_Z10_I05_Little_Mausoleum_03": "Elephant Graveyard", - "Zafaria/Interiors/ZF_Z10_I06_Little_Mausoleum_04": "Elephant Graveyard", - "Zafaria/ZF_Z00_Hub": "Baobab Crossroads", - "Zafaria/ZF_Z01_Baobab_Crown": "Baobab Crown", - "Zafaria/ZF_Z02_Baobab_Market": "Baobab Market", - "Zafaria/ZF_Z03_Savannah": "Savannah", - "Zafaria/ZF_Z05_Zamunda_Outskirts": "Zamunda Outskirts", - "Zafaria/ZF_Z06_Zamunda": "Zamunda", - "Zafaria/ZF_Z07_Stone_Town": "Stone Town", - "Zafaria/ZF_Z08_Waterfront": "Waterfront", - "Zafaria/ZF_Z09_Drum_Jungle": "Drum Jungle", - "Zafaria/ZF_Z10_Elephant_Graveyard": "Elephant Graveyard", - "Zafaria/ZF_Z11_Mirror_Lake": "Mirror Lake", - "Zafaria/ZF_Z12_Shining_Mountain": "Mirror Lake", - "Zafaria/ZF_Z13_Mirror_Lake_Drained": "Mirror Lake", - "zoneNames": { - "Aquila": "Aquila", - "Arcanum": "Arcanum", - "Avalon": "Avalon", - "Azteca": "Azteca", - "Celestia": "Celestia", - "DragonSpire": "Dragonspyre", - "Empyrea": "Empyrea", - "Grizzleheim": "Grizzleheim", - "Karamelle": "Karamelle", - "Khrysalis": "Khrysalis", - "Krokotopia": "Krokotopia", - "Marleybone": "Marleybone", - "Mirage": "Mirage", - "MooShu": "MooShu", - "Polaris": "Polaris", - "WizardCity": "Wizard City", - "Wysteria": "Wysteria", - "Zafaria": "Zafaria" - }, - "CHARACTER LIST": "Character Selection" -}
\ No newline at end of file |