diff --git a/.gitignore b/.gitignore index 6443755..5c91074 100644 --- a/.gitignore +++ b/.gitignore @@ -446,18 +446,4 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ -corev_error.log -debug/external_resources/client/ -debug/external_resources/server/ -debug/internal_resources/client/ -debug/internal_resources/server/ -debug/internal_modules/client/ -debug/internal_modules/server/ -debug/external_resources/client/*.lua -debug/external_resources/server/*.lua -debug/internal_resources/client/*.lua -debug/internal_resources/server/*.lua -debug/internal_modules/client/*.lua -debug/internal_modules/server/*.lua - # End of https://www.toptal.com/developers/gitignore/api/lua,git,jspm,visualstudio,visualstudiocode,vue,vuejs \ No newline at end of file diff --git a/README.md b/README.md index 52036cb..9fc91fd 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,14 @@ # CoreV Framework [CVF] -[![N|CoreV](https://i.imgur.com/K7ywz4K.png)](https://i.imgur.com/K7ywz4K.png) +[![N|CoreV](https://i.imgur.com/3XeDqC0.png)](https://i.imgur.com/3XeDqC0.png) [![N|Project](https://img.shields.io/badge/GitHub%20Project-corv%20framework-lightgray?logo=github&style=for-the-badge)](https://github.com/ThymonA/CoreV-Framework) [![N|Project](https://img.shields.io/badge/GitLab%20Project-corv%20framework-orange?logo=gitlab&style=for-the-badge)](https://git.arens.io/ThymonA/corev-framework) [![N|Project](https://img.shields.io/badge/Discord-Tigo%239999-7289da?logo=discord&style=for-the-badge)](https://discordapp.com/users/733686533873467463) +--- +## This project is still under development, you can't use it yet! +--- + #### Credits CoreV Framework is inspired by [es_extended](https://github.com/esx-framework/es_extended) but is written from scratch by [ThymonA](https://github.com/ThymonA) (also known as TigoDevelopmet). @@ -13,11 +17,7 @@ All 3rd party code in CoreV Framework Developer(s) | Project | Repository | Version | File :-------- | :------ | :---------- | :--------- | :----- -**[Yonaba](https://github.com/Yonaba)** | *30log* | **[GitHub](https://github.com/Yonaba/30log)** | *1.3.0* | **[class.lua](https://git.arens.io/ThymonA/corev-framework/-/blob/master/vendors/class.lua)** -**[IllidanS4](https://github.com/IllidanS4)** | *entityiter.lua* | **[GitHub](https://gist.github.com/IllidanS4/9865ed17f60576425369fc1da70259b2)** | *14 Jul 2017* | **[entityiter.lua](https://git.arens.io/ThymonA/corev-framework/-/blob/master/vendors/entityiter.lua)** -**[Olivine Labs](https://github.com/Olivine-Labs)**, **[ThymonA](https://github.com/ThymonA)** | *FiveM-Mustache* | **[GitHub](https://github.com/ThymonA/FiveM-Mustache)** | *1.3.1-0* | **[mustache.lua](https://git.arens.io/ThymonA/corev-framework/-/blob/master/vendors/mustache.lua)** -**[VenomXNL](https://github.com/VenomXNL/)** | *ObjectNameFromHash* | **[GitHub](https://github.com/VenomXNL/ObjectNameFromHash)** | *21 Feb 2019* | **[hashlist.lua](https://git.arens.io/ThymonA/corev-framework/-/blob/master/vendors/hashlist.lua)** -**[luiseduardohd](https://github.com/luiseduardohd)** | *luaregex.lua* | **[GitHub](https://gist.github.com/luiseduardohd/10668729)** | *130911* | **[regex.lua](https://git.arens.io/ThymonA/corev-framework/-/blob/master/vendors/regex.lua)** +**[Yonaba](https://github.com/Yonaba/)** | *30log* | **[GitHub](https://github.com/Yonaba/30log/)** | *1.3.0* | **[class.lua](https://git.arens.io/ThymonA/corev-framework/-/blob/master/corev/vendors/class.lua)** **[esx-framework](https://github.com/esx-framework)** | *es_extended* | **[GitHub](https://github.com/esx-framework/es_extended)** | v1-final | **..** ## License diff --git a/[players]/cvf_jobs/classes/job.lua b/[players]/cvf_jobs/classes/job.lua new file mode 100644 index 0000000..83f2cc3 --- /dev/null +++ b/[players]/cvf_jobs/classes/job.lua @@ -0,0 +1,309 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local ipairs = assert(ipairs) +local pairs = assert(pairs) +local insert = assert(table.insert) +local lower = assert(string.lower) +local error = assert(error) + +--- Create a `jobs` class +---@class jobs +local jobs = setmetatable({ __class = 'jobs' }, {}) + +jobs.jobs = {} +jobs.defaultJob = { + job_id = nil, + grade = nil +} + +--- Create a new `job` class +---@param id number|nil Job ID +---@param name string Name of Job +---@param label string Label of Job +---@param grades table Grades of Job +---@return job New `job` class +local function createJobClass(id, name, label, grades) + --- Create a `job` class + ---@class job + local job = setmetatable({ __class = 'job' }, {}) + + job.id = id + ---@type string + job.name = name + ---@type string + job.label = label + ---@type table + job.grades = grades + + return job +end + +--- Creates a job object based on given `name` and `grades` +---@param name string Name of job, example: unemployed, police etc. (lowercase) +---@param label string Label of job, this will be displayed as name of given job +---@param grades table List of grades as table, every grade needs to be a table as well +---@return job|nil Returns a `job` class if found or created, otherwise `nil` +local function createJobObject(name, label, grades) + name = corev:ensure(name, 'unknown') + label = corev:ensure(label, 'Unknown') + grades = corev:ensure(grades, {}) + + if (name == 'unknown') then + return nil + end + + name = lower(name) + + --- If job already exists, then return stored job and don't override existing one + for _, _job in pairs(jobs.jobs) do + if (_job.name == name) then + return _job + end + end + + --- Create a `job` class + local job = createJobClass(nil, name, label, {}) + + local existingId = corev.db:fetchScalar('SELECT `id` FROM `jobs` WHERE `name` = @name LIMIT 1', { + ['@name'] = job.name + }) + + if (existingId == nil) then + job.id = corev.db:insert('INSERT INTO `jobs` (`name`, `label`) VALUES (@name, @label)', { + ['@name'] = job.name, + ['@label'] = job.label + }) + else + job.id = corev:ensure(existingId, 0) + end + + if (corev:typeof(grades) == 'table') then + for index, grade in ipairs(grades) do + if (corev:typeof(grade) == 'table') then + --- Create a `job-grade` class + ---@class job_grade + local jobGrade = setmetatable({ __class = 'job_grade' }, {}) + + jobGrade.job_id = job.id + jobGrade.grade = corev:ensure(index, 1) - 1 + jobGrade.name = lower(corev:ensure(grade.name, 'unknown')) + jobGrade.label = corev:ensure(grade.label, 'Unknown') + + job.grades[jobGrade.grade] = jobGrade + end + end + end + + local dbGrades = corev.db:fetchAll('SELECT * FROM `job_grades` WHERE `job_id` = @jobId', { + ['@jobId'] = job.id + }) + + local existingGrades = {} + + --- Update job_grades + for _, grade in pairs(job.grades) do + for _, dbGrade in pairs(dbGrades) do + if (corev:ensure(dbGrade.grade, -1) == grade.grade) then + insert(existingGrades, grade) + + if (grade.name ~= dbGrade.name or grade.label ~= dbGrade.label) then + corev.db:execute('UPDATE `job_grades` SET `name` = @name, `label` = @label WHERE `job_id` = @jobId AND `grade` = @grade', { + ['@name'] = grade.name, + ['@label'] = grade.label, + ['@jobId'] = job.id, + ['@grade'] = grade.grade + }) + end + end + end + end + + --- Add job_grades + for _, grade in pairs(job.grades) do + local needToBeAdded = true + + for _, existingGrade in pairs(existingGrades) do + if (grade.grade == existingGrade.grade) then + needToBeAdded = false + end + end + + if (needToBeAdded) then + corev.db:insert('INSERT INTO `job_grades` (`job_id`, `grade`, `name`, `label`) VALUES (@jobId, @grade, @name, @label)', { + ['@jobId'] = job.id, + ['@grade'] = grade.grade, + ['@name'] = grade.name, + ['@label'] = grade.label + }) + end + end + + --- Load default job if not already loaded + if (jobs.defaultJob.job_id == nil) then + --- Load default job names from configuration + local defaultJobName = lower(corev:ensure(corev:cfg('jobs', 'defaultJob', 'name'), 'unemployed')) + local defaultJobGrade = lower(corev:ensure(corev:cfg('jobs', 'defaultGrade', 'name'), 'unemployed')) + + local jobGradeResult = corev.db:fetchAll('SELECT `job_id`, `grade` FROM `job_grades` WHERE `job_id` = (SELECT `id` FROM `jobs` WHERE `name` = @jobName LIMIT 1) AND `name` = @gradeName LIMIT 1', { + ['@jobName'] = defaultJobName, + ['@gradeName'] = defaultJobGrade + }) + + jobGradeResult = corev:ensure(jobGradeResult, {}) + + if (#jobGradeResult <= 0) then + error(corev:t('default_job_not_exists')) + return + end + + local dbJobId = corev:ensure(jobGradeResult[1].job_id, -1) + local dbJobGrade = corev:ensure(jobGradeResult[1].grade, -1) + + if (dbJobId < 0 or dbJobGrade < 0) then + error(corev:t('default_job_not_exists')) + return + end + + jobs.defaultJob.job_id = dbJobId + jobs.defaultJob.grade = dbJobGrade + end + + --- Delete job_grades + for _, dbGrade in pairs(dbGrades) do + local canBeRemoved = true + + for _, existingGrade in pairs(existingGrades) do + if (corev:ensure(dbGrade.grade, -1) == existingGrade.grade) then + canBeRemoved = false + end + end + + if (canBeRemoved) then + if (corev.db:tableExists('players')) then + --- Change `job` values if player has removable `job` and `grade` + corev.db:execute('UPDATE `players` SET `job` = @newJob, `grade` = @newGrade WHERE `job` = @oldJob AND `grade` = @oldGrade', { + ['@oldJob'] = dbGrade.job_id, + ['@oldGrade'] = dbGrade.grade, + ['@newJob'] = jobs.defaultJob.job_id, + ['@newGrade'] = jobs.defaultJob.grade + }) + + --- Change `job2` values if player has removable `job2` and `grade2` + corev.db:execute('UPDATE `players` SET `job2` = @newJob, `grade2` = @newGrade WHERE `job2` = @oldJob AND `grade2` = @oldGrade', { + ['@oldJob'] = dbGrade.job_id, + ['@oldGrade'] = dbGrade.grade, + ['@newJob'] = jobs.defaultJob.job_id, + ['@newGrade'] = jobs.defaultJob.grade + }) + end + + --- After players has been updated, `job_grades` is safe to remove + corev.db:execute('DELETE FROM `job_grades` WHERE `job_id` = @jobId AND `grade` = @grade', { + ['@jobId'] = dbGrade.job_id, + ['@grade'] = dbGrade.grade + }) + end + end + + jobs.jobs[job.id] = job + + return job +end + +--- Returns `job` bases on given `name` +---@param input string|number Name of job or ID of job +---@return job|nil Returns a `job` class or nil +local function getCacheJob(input) + input = corev:typeof(input) == 'number' and input or corev:ensure(input, 'unknown') + + if (corev:typeof(input) == 'number') then + return (jobs.jobs or {})[input] or nil + end + + input = corev:ensure(input, 'unknown') + + if (input == 'unknown') then + return nil + end + + input = lower(input) + + --- If job already exists, then return stored job and don't override existing one + for _, job in pairs(jobs.jobs) do + if (job.name == input) then + return job + end + end + + return nil +end + +--- Returns `job` bases on given `name` +---@param input string|number Name of job or ID of job +---@return job|nil Returns a `job` class or nil +local function getJob(input) + input = corev:typeof(input) == 'number' and input or corev:ensure(input, 'unknown') + + local jobFromCache = getCacheJob(input) + + if (jobFromCache ~= nil) then return jobFromCache end + + local dbJob + + if (corev:typeof(input) == 'number') then + dbJob = corev.db:fetchAll('SELECT * FROM `jobs` WHERE `id` = @id LIMIT 1', { + ['@id'] = input + }) + else + dbJob = corev.db:fetchAll('SELECT * FROM `jobs` WHERE `name` = @name LIMIT 1', { + ['@name'] = input + }) + end + + dbJob = corev:ensure(dbJob, {}) + + if (#dbJob == 0) then return nil end + + --- Create a `job` class + local job = createJobClass(dbJob[1].id, dbJob[1].name, dbJob[1].label, {}) + + local dbGrades = corev.db:fetchAll('SELECT * FROM `job_grades` WHERE `job_id` = @id ORDER BY `grade` ASC', { + ['@id'] = job.id + }) + + dbGrades = corev:ensure(dbGrades, {}) + + if (#dbGrades == 0) then return job end + + for _, dbGrade in pairs(dbGrades) do + --- Create a `grade` class + ---@class grade + local grade = setmetatable({ __class = 'grade' }, {}) + + grade.job_id = dbGrade.job_id + grade.grade = corev:ensure(dbGrade.grade, 0) + grade.name = dbGrade.name + grade.label = dbGrade.label + + job.grades[grade.grade] = grade + end + + return job +end + +--- Register `createJobObject` as global function +_G.createJobObject = createJobObject +_G.getJob = getJob \ No newline at end of file diff --git a/[players]/cvf_jobs/fxmanifest.lua b/[players]/cvf_jobs/fxmanifest.lua new file mode 100644 index 0000000..29d0cf4 --- /dev/null +++ b/[players]/cvf_jobs/fxmanifest.lua @@ -0,0 +1,54 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Job Resource' +version '1.0.0' +description 'Job resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Load client files +--- +files { + 'translations/*.json' +} + +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'classes/job.lua', + 'server/main.lua' +} + +--- +--- Load translations +--- +translations { + 'translations/nl.json', + 'translations/en.json' +} + + +--- +--- Register all dependencies +--- +dependencies { + 'cvf_translations' +} \ No newline at end of file diff --git a/[players]/cvf_jobs/migrations/0.lua b/[players]/cvf_jobs/migrations/0.lua new file mode 100644 index 0000000..1068883 --- /dev/null +++ b/[players]/cvf_jobs/migrations/0.lua @@ -0,0 +1,37 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local migration = {} + +--- Prevent migration from executing before dependend sql has been executed +migration.dependencies = {} + +--- Execute this sql after `dependencies` has been executed +migration.sql = [[ + CREATE TABLE `jobs` ( + `id` INT AUTO_INCREMENT PRIMARY KEY, + `name` VARCHAR(20) NOT NULL DEFAULT 'unknown', + `label` VARCHAR(50) NOT NULL DEFAULT 'Unknown', + CONSTRAINT `unique_name` UNIQUE (`name`) + ); + + CREATE TABLE `job_grades` ( + `job_id` INT, + `grade` INT(5) NOT NULL DEFAULT 0, + `name` VARCHAR(20) NOT NULL DEFAULT 'unknown', + `label` VARCHAR(50) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`job_id`,`grade`), + CONSTRAINT `unique_job_name` UNIQUE (`job_id`, `name`), + CONSTRAINT `fk_job_grades_jobs` FOREIGN KEY (`job_id`) REFERENCES `jobs`(`id`) + ); +]] + +--- Returns current migration +return migration \ No newline at end of file diff --git a/[players]/cvf_jobs/server/main.lua b/[players]/cvf_jobs/server/main.lua new file mode 100644 index 0000000..9edcbbe --- /dev/null +++ b/[players]/cvf_jobs/server/main.lua @@ -0,0 +1,69 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local createJobObject = assert(createJobObject) +local getJob = assert(getJob) +local lower = assert(string.lower) + +--- Cahce FiveM globals +local exports = assert(exports) + +--- Mark this resource as `database` migration dependent resource +corev.db:migrationDependent() + +--- Register default job (fallback job) +corev.db:dbReady(function() + local defaultConfigJob = corev:cfg('jobs', 'defaultJob') + local defaultConfigGrade = corev:cfg('jobs', 'defaultGrade') + + defaultConfigJob = corev:ensure(defaultConfigJob, {}) + defaultConfigGrade = corev:ensure(defaultConfigGrade, {}) + + local defaultJob = { + name = lower(corev:ensure(defaultConfigJob.name, 'unemployed')), + label = corev:ensure(defaultConfigJob.label, 'Unemployed') + } + + local defaultGrade = { + name = lower(corev:ensure(defaultConfigGrade.name, 'unemployed')), + label = corev:ensure(defaultConfigGrade.label, 'Unemployed') + } + + --- Creates default job for any player without job or player's where job has been removed + createJobObject(defaultJob.name, defaultJob.label, { defaultGrade }) +end) + +--- Creates a job object based on given `name` and `grades` +---@param name string Name of job, example: unemployed, police etc. (lowercase) +---@param label string Label of job, this will be displayed as name of given job +---@param grades table List of grades as table, every grade needs to be a table as well +---@return job|nil Returns a `job` class if found or created, otherwise `nil` +local function addAJob(name, label, grades) + name = corev:ensure(name, 'unknown') + label = corev:ensure(label, 'Unknown') + grades = corev:ensure(grades, {}) + + if (name == 'unknown') then + return nil + end + + name = lower(name) + + return createJobObject(name, label, grades) +end + +--- Register `addAJob` and `loadJob` as export function +exports('__a', addAJob) +exports('__l', getJob) \ No newline at end of file diff --git a/[players]/cvf_jobs/translations/en.json b/[players]/cvf_jobs/translations/en.json new file mode 100644 index 0000000..e0f954e --- /dev/null +++ b/[players]/cvf_jobs/translations/en.json @@ -0,0 +1,16 @@ +{ + "language": "en", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "unemployed_label": "Unemployed", + "default_job_not_exists": "^1[ERROR] ^7Default job does not exist in database, restart your server and try again" + } +} \ No newline at end of file diff --git a/[players]/cvf_jobs/translations/nl.json b/[players]/cvf_jobs/translations/nl.json new file mode 100644 index 0000000..c69c342 --- /dev/null +++ b/[players]/cvf_jobs/translations/nl.json @@ -0,0 +1,16 @@ +{ + "language": "nl", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "unemployed_label": "Werkloos", + "default_job_not_exists": "^1[ERROR] ^7Standaard job bestaat niet in database, herstart je server en probeer het opnieuw" + } +} \ No newline at end of file diff --git a/[players]/cvf_player/classes/player.lua b/[players]/cvf_player/classes/player.lua new file mode 100644 index 0000000..affc707 --- /dev/null +++ b/[players]/cvf_player/classes/player.lua @@ -0,0 +1,143 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local lower = assert(string.lower) +local CreateThread = assert(Citizen.CreateThread) + +--- Create a players class +---@class players +local players = setmetatable({ __class = 'players' }, {}) + +players.players = {} +players.sources = {} + +--- Load a `job` class for given job +---@param input string|number Name or ID of job +---@param grade number Grade of given job +---@return job|nil Generated `job` class or `nil` +function players:getJobObject(input, grade) + input = corev:typeof(input) == 'number' and input or corev:ensure(input, 'unknown') + grade = corev:ensure(grade, 0) + + local _job = corev.jobs:getJob(input) + + if (_job == nil) then return nil end + + --- Create a `player_job` class + ---@class player_job + local job = setmetatable({ __class = 'player_job' }, {}) + + --- Set default values + job.id = corev:ensure(_job.id, 0) + job.name = corev:ensure(_job.name, 'unknown') + job.label = corev:ensure(_job.label, 'Unknown') + job.grades = corev:ensure(_job.grades, {}) + job.grade = nil + + local _grade = job.grades[grade] or nil + + if (_grade == nil) then return job end + + --- Create a `player_grade` class + ---@class player_grade + local gradeObj = setmetatable({ __class = 'player_grade' }, {}) + + --- Set default values + gradeObj.grade = _grade.grade + gradeObj.name = _grade.name + gradeObj.label = _grade.label + + job.grade = gradeObj + + return job +end + +--- Create a `vPlayer` class +---@param input string|number Player identifier or Player source +local function createPlayer(input) + local player = corev:getPlayerIdentifiers(input) + + if (player == nil or player.identifier == nil) then return nil end + + local key = corev:ensure(player.identifier, 'unknown') + + if (players.players[key] ~= nil) then + players.players[key].source = player.source or nil + + return players.players[key] + end + + --- Create a `vPlayer` class + ---@class vPlayer + local vPlayer = setmetatable({ __class = 'vPlayer' }, {}) + + local dbPlayer = corev.db:fetchAll('SELECT * FROM `players` WHERE `identifier` = @identifier LIMIT 1', { + ['@identifier'] = player.identifier + }) + + dbPlayer = corev:ensure(dbPlayer, {}) + + if (#dbPlayer == 0 and player.identifier == 'console') then + local defaultJobName = lower(corev:ensure(corev:cfg('jobs', 'defaultJob', 'name'), 'unemployed')) + local defaultJob = corev.jobs:getJob(defaultJobName) + + dbPlayer[1] = { + id = -999, + identifier = 'console', + name = 'Console', + group = 'console', + job = defaultJob.id or 0, + grade = 0, + job2 = defaultJob.id or 0, + grade2 = 0 + } + elseif (#dbPlayer == 0) then + return nil + end + + local playerGroup = corev:ensure(dbPlayer[1].group, 'user') + + --- Set default values + vPlayer.id = dbPlayer[1].id + vPlayer.source = player.source or nil + vPlayer.name = player.name + vPlayer.group = playerGroup + vPlayer.identifier = player.identifier + vPlayer.identifiers = player.identifiers + vPlayer.job = players:getJobObject(dbPlayer[1].job, dbPlayer[1].grade) + vPlayer.job2 = players:getJobObject(dbPlayer[1].job2, dbPlayer[1].grade2) + + --- This function will returns vPlayer primary identifier + function vPlayer:getIdentifier() + return corev:ensure(self.identifier, 'unknown') + end + + players.players[vPlayer.identifier] = vPlayer + + if (vPlayer.source ~= nil) then + players.sources[vPlayer.source] = players.players[vPlayer.identifier] + end + + return vPlayer +end + +--- Create a `vPlayer` object for `console` +CreateThread(function() + createPlayer('console') +end) + +--- Register `createPlayer` as global function and `players` as global variable +_G.players = players +_G.createPlayer = createPlayer \ No newline at end of file diff --git a/[players]/cvf_player/fxmanifest.lua b/[players]/cvf_player/fxmanifest.lua new file mode 100644 index 0000000..6684ee8 --- /dev/null +++ b/[players]/cvf_player/fxmanifest.lua @@ -0,0 +1,54 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Player Resource' +version '1.0.0' +description 'Player resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Load client files +--- +files { + 'translations/*.json' +} + +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'classes/player.lua', + 'server/main.lua', + 'server/commands.lua' +} + +--- +--- Load translations +--- +translations { + 'translations/nl.json', + 'translations/en.json' +} + +--- +--- Register all dependencies +--- +dependencies { + 'cvf_translations' +} \ No newline at end of file diff --git a/[players]/cvf_player/migrations/0.lua b/[players]/cvf_player/migrations/0.lua new file mode 100644 index 0000000..0ac2d1c --- /dev/null +++ b/[players]/cvf_player/migrations/0.lua @@ -0,0 +1,35 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local migration = {} + +--- Prevent migration from executing before dependend sql has been executed +migration.dependencies = { + ['cvf_jobs'] = 0 +} + +--- Execute this sql after `dependencies` has been executed +migration.sql = [[ + CREATE TABLE `players` ( + `id` INT AUTO_INCREMENT PRIMARY KEY, + `identifier` VARCHAR(50) NOT NULL, + `name` VARCHAR(100) NOT NULL DEFAULT 'Unknown', + `job` INT, + `grade` INT, + `job2` INT, + `grade2` INT, + CONSTRAINT `unique_player_identifier` UNIQUE (`identifier`), + CONSTRAINT `fk_player_job` FOREIGN KEY (`job`,`grade`) REFERENCES `job_grades`(`job_id`,`grade`), + CONSTRAINT `fk_player_job2` FOREIGN KEY (`job2`,`grade2`) REFERENCES `job_grades`(`job_id`,`grade`) + ); +]] + +--- Returns current migration +return migration \ No newline at end of file diff --git a/modules/[items]/items/client/main.lua b/[players]/cvf_player/migrations/1.lua similarity index 56% rename from modules/[items]/items/client/main.lua rename to [players]/cvf_player/migrations/1.lua index 0103d34..e4f5879 100644 --- a/modules/[items]/items/client/main.lua +++ b/[players]/cvf_player/migrations/1.lua @@ -8,20 +8,15 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -local items = class('items') +local migration = {} ---- Set default values -items:set { - items = {} -} +--- Prevent migration from executing before dependend sql has been executed +migration.dependencies = {} ---- Request all items -Citizen.CreateThread(function() - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end +--- Execute this sql after `dependencies` has been executed +migration.sql = [[ + ALTER TABLE `players` ADD `group` VARCHAR(20) NOT NULL DEFAULT 'user' AFTER `name`; +]] - triggerServerCallback('corev:items:receive', function(_items) - items.items = _items or {} - end) -end) \ No newline at end of file +--- Returns current migration +return migration \ No newline at end of file diff --git a/configs/client_config.lua b/[players]/cvf_player/server/commands.lua similarity index 75% rename from configs/client_config.lua rename to [players]/cvf_player/server/commands.lua index 5216cf2..52ab566 100644 --- a/configs/client_config.lua +++ b/[players]/cvf_player/server/commands.lua @@ -8,7 +8,8 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -Config.OS = 'windows' -Config.DefaultSpawnLocation = vector3(-206.79, -1015.12, 29.14) -Config.DrawMarkerDistance = 10 -Config.LockDoorDistance = 10 \ No newline at end of file + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) \ No newline at end of file diff --git a/[players]/cvf_player/server/main.lua b/[players]/cvf_player/server/main.lua new file mode 100644 index 0000000..5d33e8d --- /dev/null +++ b/[players]/cvf_player/server/main.lua @@ -0,0 +1,93 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local print = assert(print) +local lower = assert(string.lower) + +--- Cahce FiveM globals +local exports = assert(exports) + +--- Mark this resource as `database` migration dependent resource +corev.db:migrationDependent() + +--- Returns a `vPlayer` class based on given input +---@param input string|number Player identifier or Player source +---@return vPlayer|nil Founded/Generated `vPlayer` class or nil +local function getPlayer(input) + input = corev:typeof(input) == 'number' and input or corev:ensure(input, 'unknown') + + if (corev:typeof(input) == 'number') then + local vPlayer = players.sources[input] or nil + + if (vPlayer) then return vPlayer end + + return createPlayer(input) + end + + local vPlayer = players.players[input] or nil + + if (vPlayer) then return vPlayer end + + return createPlayer(input) +end + +--- This event will be triggerd when client is connecting +corev.events:onPlayerConnect(function(player, done, presentCard) + presentCard:setTitle(corev:t('connect_title'), false) + presentCard:setDescription(corev:t('connect_description')) + + local exists = corev.db:fetchScalar('SELECT COUNT(*) FROM `players` WHERE `identifier` = @identifier LIMIT 1', { + ['@identifier'] = player.identifier + }) + + if (exists == 1) then + corev.db:execute('UPDATE `players` SET `name` = @name WHERE `identifier` = @identifier LIMIT 1', { + ['@name'] = player.name, + ['@identifier'] = player.identifier + }) + + createPlayer(player.identifier) + done() + return + end + + local defaultConfigJob = corev:cfg('jobs', 'defaultJob') + local defaultJobName = lower(corev:ensure(defaultConfigJob.name, 'unemployed')) + local defaultJob = corev.jobs:getJob(defaultJobName) + + if (defaultJob == nil or (defaultJob.grades or {})[0] == nil) then + done(corev:t('default_job_not_found')) + return + end + + local defaultGrade = defaultJob.grades[0] + + corev.db:execute('INSERT INTO `players` (`identifier`, `name`, `job`, `job2`, `grade`, `grade2`) VALUES (@identifier, @name, @job, @job2, @grade, @grade2)', { + ['@identifier'] = player.identifier, + ['@name'] = player.name, + ['@job'] = defaultGrade.job_id, + ['@job2'] = defaultGrade.job_id, + ['@grade'] = defaultGrade.grade, + ['@grade2'] = defaultGrade.grade + }) + + print(corev:t('player_created'):format(corev:getCurrentResourceName(), player.name)) + + createPlayer(player.identifier) + done() +end) + +--- Register `GetPlayer` as export function +exports('__g', getPlayer) \ No newline at end of file diff --git a/[players]/cvf_player/translations/en.json b/[players]/cvf_player/translations/en.json new file mode 100644 index 0000000..d64dfa0 --- /dev/null +++ b/[players]/cvf_player/translations/en.json @@ -0,0 +1,18 @@ +{ + "language": "en", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "connect_title": "Loading account", + "connect_description": "We're loading your account...", + "default_job_not_found": "We could not find a standard job, please contact the server owners", + "player_created": "^2[^7%s^2] ^7Account for ^2\"^7%s^2\" ^7has been created^2!^7" + } +} \ No newline at end of file diff --git a/[players]/cvf_player/translations/es.lua b/[players]/cvf_player/translations/es.lua new file mode 100644 index 0000000..dceb0a6 --- /dev/null +++ b/[players]/cvf_player/translations/es.lua @@ -0,0 +1,18 @@ +{ + "language": "es", + "translators": [ + { + "name": "Valdorz", + "emails": ["None"], + "github": "https://github.com/Valdorz", + "gitlab": "None", + "website": "None" + } + ], + "translations": { + "connect_title": "Cargando cuenta...", + "connect_description": "Tu cuenta se está cargando...", + "default_job_not_found": "No hemos podido encontrar un trabajo estándar, por favor, contacta con el debido personal del servidor", + "player_created": "^2[^7%s^2] ^7La cuenta para ^2\"^7%s^2\" ^7ha sido creada^2!^7" + } +} diff --git a/[players]/cvf_player/translations/nl.json b/[players]/cvf_player/translations/nl.json new file mode 100644 index 0000000..62e0023 --- /dev/null +++ b/[players]/cvf_player/translations/nl.json @@ -0,0 +1,18 @@ +{ + "language": "nl", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "connect_title": "Inladen van account", + "connect_description": "We zijn bezig met het inladen van je account...", + "default_job_not_found": "Wij konden geen standaard baan vinden, neem contact op met de server eigenaren", + "player_created": "^2[^7%s^2] ^7Account voor ^2\"^7%s^2\" ^7is aangemaakt^2!^7" + } +} \ No newline at end of file diff --git a/modules/[items]/weapons/client/main.lua b/[required]/cvf_commands/fxmanifest.lua similarity index 53% rename from modules/[items]/weapons/client/main.lua rename to [required]/cvf_commands/fxmanifest.lua index c94132a..efda429 100644 --- a/modules/[items]/weapons/client/main.lua +++ b/[required]/cvf_commands/fxmanifest.lua @@ -8,20 +8,23 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -local weapons = class('weapons') +fx_version 'adamant' +game 'gta5' ---- Set default values -weapons:set { - weapons = {} -} +--- +--- Information about this resource +--- +name '[CVF] Translation Resource' +version '1.0.0' +description 'Translation resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' ---- Request all items -Citizen.CreateThread(function() - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - triggerServerCallback('corev:weapons:getInventoryWeapons', function(_items) - items.items = _items or {} - end) -end) \ No newline at end of file +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'server/main.lua' +} \ No newline at end of file diff --git a/[required]/cvf_commands/server/main.lua b/[required]/cvf_commands/server/main.lua new file mode 100644 index 0000000..6e86e66 --- /dev/null +++ b/[required]/cvf_commands/server/main.lua @@ -0,0 +1,205 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local pairs = assert(pairs) +local print = assert(print) +local xpcall = assert(xpcall) +local unpack = assert(table.unpack) +local insert = assert(table.insert) +local lower = assert(string.lower) +local traceback = assert(debug.traceback) + +--- FiveM cached global variables +local RegisterCommand = assert(RegisterCommand) +local GetInvokingResource = assert(GetInvokingResource) +local ExecuteCommand = assert(ExecuteCommand) +local exports = assert(exports) + +--- Create a `commands` class +---@class commands +local commands = setmetatable({ __class = 'commands' }, {}) + +--- Set default values +commands.commands = {} +commands.parsers = {} +commands.players = {} + +--- Execute function based on used `command` +---@param source number Player source +---@param rawArguments table Arguments given +---@param raw string Raw command +local function __executeCommand(source, rawArguments, raw) + raw = corev:ensure(raw, 'unknown') + + local commandName = lower(corev:ensure(corev:split(raw, ' ')[1], 'unknown')) + + if (commandName == 'unknown') then return end + + local player = commands.players[source] or corev:getPlayerIdentifiers(source) + + if (player == nil) then return end + if (commands.players[source] == nil) then commands.players[source] = player end + + local key = corev:hashString(commandName) + local cmd = commands.commands[key] or nil + + if (cmd == nil) then return end + + rawArguments = corev:ensure(rawArguments, {}) + + local arguments = {} + local parser = commands.parsers[key] or nil + + if (parser) then + for index, argument in pairs(parser.parameters) do + if (argument.type == 'any') then + arguments[index] = rawArguments[index] or argument.default + else + arguments[index] = corev:ensure(rawArguments[index], argument.default) + end + end + else + arguments = rawArguments + end + + xpcall(cmd.func, traceback, player, unpack(arguments)) +end + +--- Register a command +---@param resource string Name of resource where command is from +---@param name string|table Name of command to execute +---@param groups string|table Group(s) allowed to execute this command +---@param callback function Execute this function when player is allowed +function commands:register(resource, name, groups, callback) + if (corev:typeof(name) == 'tables') then + for _, _name in pairs(name) do + if (corev:typeof(_name) == 'string') then + self:register(resource, name, groups, callback) + end + end + + return + end + + resource = corev:ensure(resource, corev:getCurrentResourceName()) + name = lower(corev:ensure(name, 'unknown')) + groups = corev:typeof(groups) == 'table' and groups or corev:ensure(groups, 'superadmin') + callback = corev:ensure(callback, function() end) + + if (name == 'unknown') then return end + + local key = corev:hashString(name) + + if (self.commands[key] ~= nil) then + print(corev:t('command_exsits'):format(name)) + end + + --- Create a `command` class + ---@class command + local command = setmetatable({ __class = 'command' }, {}) + + --- Set default information + command.resource = resource + command.name = name + command.groups = groups + command.func = callback + + self.commands[key] = command + + --- Register command + RegisterCommand(name, __executeCommand, false) + + --- Whitelist a group + if corev:typeof(groups) == 'table' then + for _, group in pairs(groups) do + if (corev:typeof(group) == 'string') then + ExecuteCommand(('add_ace group.%s command.%s allow'):format(group, name)) + end + end + elseif corev:typeof(groups) == 'string' then + ExecuteCommand(('add_ace group.%s command.%s allow'):format(groups, name)) + end +end + +--- Create a parser for generated command +---@param resource string Name of resource where command is from +---@param name string Name of command +---@param parseInfo table Information about parser +function commands:parser(resource, name, parseInfo) + resource = corev:ensure(resource, corev:getCurrentResourceName()) + name = corev:ensure(name, 'unknown') + parseInfo = corev:ensure(parseInfo, {}) + + if (name == 'unknown') then return end + + local key = corev:hashString(name) + + if (self.commands[key] == nil or self.commands[key].resource ~= resource) then return end + + --- Create a `parser` class + ---@class parser + local parser = setmetatable({ __class = 'parser' }, {}) + + --- Set default value + parser.name = name + parser.resource = resource + parser.parameters = {} + + for _, info in pairs(parseInfo) do + local type = corev:ensure(info.type, 'any') + local default = info.default or nil + local rawType = corev:typeof(default) + + if (rawType ~= type) then + if (rawType == 'nil' and type == 'boolean') then + default = false + else + type = 'any' + end + end + + insert(parser.parameters, { + type = type, + default = default + }) + end + + self.parsers[key] = parser +end + +--- Register a command +---@param name string|table Name of command to execute +---@param groups string|table Group(s) allowed to execute this command +---@param callback function Execute this function when player is allowed +local function registerCommand(name, groups, callback) + local _r = GetInvokingResource() + local resource = corev:ensure(_r, corev:getCurrentResourceName()) + + commands:register(resource, name, groups, callback) +end + +--- Create a parser for generated command +---@param name string Name of command +---@param parseInfo table Information about parser +local function registerParser(name, parseInfo) + local _r = GetInvokingResource() + local resource = corev:ensure(_r, corev:getCurrentResourceName()) + + commands:parser(resource, name, parseInfo) +end + +--- Register `registerEvent` and `removeEvent` as export function +exports('__rc', registerCommand) +exports('__rp', registerParser) \ No newline at end of file diff --git a/[required]/cvf_commands/translations/en.json b/[required]/cvf_commands/translations/en.json new file mode 100644 index 0000000..e79d139 --- /dev/null +++ b/[required]/cvf_commands/translations/en.json @@ -0,0 +1,15 @@ +{ + "language": "en", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "command_exsits": "^8[^7CoreV^8] ^7Command ^8'^7%s^8' ^7already exists and will now be ^8overridden^7" + } +} \ No newline at end of file diff --git a/[required]/cvf_commands/translations/nl.json b/[required]/cvf_commands/translations/nl.json new file mode 100644 index 0000000..5a0dfef --- /dev/null +++ b/[required]/cvf_commands/translations/nl.json @@ -0,0 +1,15 @@ +{ + "language": "nl", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "command_exsits": "^8[^7CoreV^8] ^7Commando ^8'^7%s^8' ^7bestaat al en zal nu worden ^8overschreven^7" + } +} \ No newline at end of file diff --git a/modules/[fivem]/game/server/main.lua b/[required]/cvf_config/configs/client/core.lua similarity index 89% rename from modules/[fivem]/game/server/main.lua rename to [required]/cvf_config/configs/client/core.lua index 20a8839..f8f1d3b 100644 --- a/modules/[fivem]/game/server/main.lua +++ b/[required]/cvf_config/configs/client/core.lua @@ -8,6 +8,6 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -local game = class('game') +local config = {} -addModule('game', game) \ No newline at end of file +return config \ No newline at end of file diff --git a/libs/enums/resource.lua b/[required]/cvf_config/configs/server/core.lua similarity index 81% rename from libs/enums/resource.lua rename to [required]/cvf_config/configs/server/core.lua index 0b30826..f8f1d3b 100644 --- a/libs/enums/resource.lua +++ b/[required]/cvf_config/configs/server/core.lua @@ -8,8 +8,6 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -ResourceTypes = { - ExternalResource = "ER", - InternalResource = "IR", - InternalModule = "IM" -} \ No newline at end of file +local config = {} + +return config \ No newline at end of file diff --git a/resources/[jobs]/jobcenter/config/server_config.lua b/[required]/cvf_config/configs/server/events.lua similarity index 67% rename from resources/[jobs]/jobcenter/config/server_config.lua rename to [required]/cvf_config/configs/server/events.lua index 1e82252..f9e58d8 100644 --- a/resources/[jobs]/jobcenter/config/server_config.lua +++ b/[required]/cvf_config/configs/server/events.lua @@ -8,13 +8,8 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -Config.JobCenterConfig = { - Locations = { - ['BP_JOB_CENTER'] = vector3(-266.96, -960.0, 30.23) - }, - Marker = { - type = 1, - color = '#FF0000', - size = vector3(5.0, 5.0, 0.5) - } -} \ No newline at end of file +local config = {} + +config.bannerUrl = 'https://i.imgur.com/3XeDqC0.png' + +return config \ No newline at end of file diff --git a/[required]/cvf_config/configs/server/jobs.lua b/[required]/cvf_config/configs/server/jobs.lua new file mode 100644 index 0000000..e22a012 --- /dev/null +++ b/[required]/cvf_config/configs/server/jobs.lua @@ -0,0 +1,37 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert + +--- Cahce FiveM globals +local exports = assert(exports) + +--- Load translation module in configuration +local cvf_translations = assert(exports['cvf_translations'] or {}) +local getTranslation = assert(cvf_translations.__t or function() return 'MISSING TRANSLATION' end) +local _T = function(...) return getTranslation(cvf_translations, ...) end + +local config = {} + +--- Default job for any player (fallback job) +config.defaultJob = { + name = 'unemployed', + label = _T('jobs', 'unemployed_label') +} + +--- Default grade for any player (fallback grade) +config.defaultGrade = { + name = 'unemployed', + label = _T('jobs', 'unemployed_label') +} + +return config \ No newline at end of file diff --git a/[required]/cvf_config/configs/shared/brands.lua b/[required]/cvf_config/configs/shared/brands.lua new file mode 100644 index 0000000..58a4ef8 --- /dev/null +++ b/[required]/cvf_config/configs/shared/brands.lua @@ -0,0 +1,33 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local config = {} + +--- Brand configuration +config.brands = { + ['audi'] = { + brand = 'audi', + label = 'Audi', + logos = { + square_small = 'https://i.imgur.com/UU9H34O.png', -- 250px x 250px + square_large = 'https://i.imgur.com/HS9exOd.png' -- 750px x 750px + } + }, + ['lamborghini'] = { + brand = 'lamborghini', + label = 'Lamborghini', + logos = { + square_small = 'https://i.imgur.com/BJmQlZA.png', -- 250px x 250px + square_large = 'https://i.imgur.com/l4smrcd.png' -- 750px x 750px + } + } +} + +return config \ No newline at end of file diff --git a/[required]/cvf_config/configs/shared/core.lua b/[required]/cvf_config/configs/shared/core.lua new file mode 100644 index 0000000..5c9c614 --- /dev/null +++ b/[required]/cvf_config/configs/shared/core.lua @@ -0,0 +1,17 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local config = {} + +config.language = 'en' +config.identifierType = 'license' +config.serverName = 'CoreV Framework' + +return config \ No newline at end of file diff --git a/[required]/cvf_config/configs/shared/skins.lua b/[required]/cvf_config/configs/shared/skins.lua new file mode 100644 index 0000000..5daec7c --- /dev/null +++ b/[required]/cvf_config/configs/shared/skins.lua @@ -0,0 +1,16 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local config = {} + +config.defaultSpawnLocation = vector3(-206.79, -1015.12, 29.14) +config.defaultModel = 'mp_m_freemode_01' + +return config \ No newline at end of file diff --git a/configs/shared_config.lua b/[required]/cvf_config/configs/shared/vehicles.lua similarity index 52% rename from configs/shared_config.lua rename to [required]/cvf_config/configs/shared/vehicles.lua index 3289f98..459c9f0 100644 --- a/configs/shared_config.lua +++ b/[required]/cvf_config/configs/shared/vehicles.lua @@ -8,19 +8,24 @@ -- Version: 1.0.0 -- Description: Custom FiveM Framework ----------------------- [ CoreV ] ----------------------- -Config = {} -Config.IdentifierType = 'license' -Config.DefaultAvatar = 'https://i.imgur.com/dj637t5.png' -Config.Langauge = 'nl' +local config = {} -Colors = { - Green = 3066993, - Grey = 9807270, - Red = 15158332, - Orange = 15105570, - Blue = 3447003, - Purple = 10181046, - Yellow = 15844367, - DarkGreen = 2600544, - DarkRed = 12597547 -} \ No newline at end of file +--- Vehicle configuration +config.vehicles = { + ['hevo'] = { + price = 325000, + name = 'Huracan Evo', + label = '2020 Huracan Evo Spyder', + brand = 'lamborghini', + type = 'car' + }, + ['rs62'] = { + price = 275000, + name = 'Audi RS6', + label = 'Audi RS6 Avant', + brand = 'audi', + type = 'car' + } +} + +return config \ No newline at end of file diff --git a/configs/others/weapon_config.lua b/[required]/cvf_config/configs/shared/weapons.lua similarity index 61% rename from configs/others/weapon_config.lua rename to [required]/cvf_config/configs/shared/weapons.lua index 5d9b0b0..96c7051 100644 --- a/configs/others/weapon_config.lua +++ b/[required]/cvf_config/configs/shared/weapons.lua @@ -1,5 +1,31 @@ -Config.Weapons = { - ['ardent_mg'] = { +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert + +--- Cahce FiveM globals +local exports = assert(exports) + +--- Load translation module in configuration +local cvf_translations = assert(exports['cvf_translations'] or {}) +local getTranslation = assert(cvf_translations.__t or function() return 'MISSING TRANSLATION' end) +local _T = function(...) return getTranslation(cvf_translations, ...) end + +--- Create configuration object +local config = {} + +--- Weapon configuration +config.weapons = { + ['ardent_mg'] = { id = 'VEHICLE_WEAPON_ARDENT_MG', hash = -1001503935, clipSize = 750, @@ -9,14 +35,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_AR_MG', gxtDescription = 'WTD_V_AR_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_ardent_mg') + name = _T('core', 'vehicle_weapon_ardent_mg') }, ['insurgent_minigun'] = { id = 'VEHICLE_WEAPON_INSURGENT_MINIGUN', @@ -28,14 +54,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_INS_MINI', gxtDescription = 'WTD_V_INS_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_insurgent_minigun') + name = _T('core', 'vehicle_weapon_insurgent_minigun') }, ['mobileops_cannon'] = { id = 'VEHICLE_WEAPON_MOBILEOPS_CANNON', @@ -47,14 +73,14 @@ Config.Weapons = { id = 'AMMO_MOBILEOPS_CANNON', hash = 764589401, max = 20, - name = _(CR(), 'core', 'ammo_mobileops_cannon') + name = _T('core', 'ammo_mobileops_cannon') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mobileops_cannon') + name = _T('core', 'vehicle_weapon_mobileops_cannon') }, ['nightshark_mg'] = { id = 'VEHICLE_WEAPON_NIGHTSHARK_MG', @@ -66,14 +92,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_NS_MG', gxtDescription = 'WTD_V_NS_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_nightshark_mg') + name = _T('core', 'vehicle_weapon_nightshark_mg') }, ['technical_minigun'] = { id = 'VEHICLE_WEAPON_TECHNICAL_MINIGUN', @@ -85,14 +111,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TEC_MINI', gxtDescription = 'WTD_V_TEC_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_technical_minigun') + name = _T('core', 'vehicle_weapon_technical_minigun') }, ['akula_turret_single'] = { id = 'VEHICLE_WEAPON_AKULA_TURRET_SINGLE', @@ -104,14 +130,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_AKU_TS', gxtDescription = 'WTD_V_AKU_TS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_turret_single') + name = _T('core', 'vehicle_weapon_akula_turret_single') }, ['akula_turret_dual'] = { id = 'VEHICLE_WEAPON_AKULA_TURRET_DUAL', @@ -123,14 +149,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_AKU_TD', gxtDescription = 'WTD_V_AKU_TD', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_turret_dual') + name = _T('core', 'vehicle_weapon_akula_turret_dual') }, ['akula_minigun'] = { id = 'VEHICLE_WEAPON_AKULA_MINIGUN', @@ -142,14 +168,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_AKU_MN', gxtDescription = 'WTD_V_AKU_MN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_minigun') + name = _T('core', 'vehicle_weapon_akula_minigun') }, ['akula_missile'] = { id = 'VEHICLE_WEAPON_AKULA_MISSILE', @@ -161,14 +187,14 @@ Config.Weapons = { id = 'AMMO_HUNTER_MISSILE', hash = -119401255, max = 20, - name = _(CR(), 'core', 'ammo_hunter_missile') + name = _T('core', 'ammo_hunter_missile') }, gxtName = 'WT_V_AKU_MI', gxtDescription = 'WTD_V_AKU_MI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_missile') + name = _T('core', 'vehicle_weapon_akula_missile') }, ['akula_barrage'] = { id = 'VEHICLE_WEAPON_AKULA_BARRAGE', @@ -180,14 +206,14 @@ Config.Weapons = { id = 'AMMO_HUNTER_BARRAGE', hash = 935462248, max = 20, - name = _(CR(), 'core', 'ammo_hunter_barrage') + name = _T('core', 'ammo_hunter_barrage') }, gxtName = 'WT_V_AKU_BA', gxtDescription = 'WTD_V_AKU_BA', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_barrage') + name = _T('core', 'vehicle_weapon_akula_barrage') }, ['apc_cannon'] = { id = 'VEHICLE_WEAPON_APC_CANNON', @@ -199,14 +225,14 @@ Config.Weapons = { id = 'AMMO_APC_CANNON', hash = -767591211, max = 100, - name = _(CR(), 'core', 'ammo_apc_cannon') + name = _T('core', 'ammo_apc_cannon') }, gxtName = 'WT_V_APC_C', gxtDescription = 'WTD_V_APC_C', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_apc_cannon') + name = _T('core', 'vehicle_weapon_apc_cannon') }, ['apc_missile'] = { id = 'VEHICLE_WEAPON_APC_MISSILE', @@ -218,14 +244,14 @@ Config.Weapons = { id = 'AMMO_APC_MISSILE', hash = 119573070, max = 20, - name = _(CR(), 'core', 'ammo_apc_missile') + name = _T('core', 'ammo_apc_missile') }, gxtName = 'WT_V_APC_M', gxtDescription = 'WTD_V_APC_M', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_apc_missile') + name = _T('core', 'vehicle_weapon_apc_missile') }, ['apc_mg'] = { id = 'VEHICLE_WEAPON_APC_MG', @@ -237,14 +263,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_APC_S', gxtDescription = 'WTD_V_APC_S', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_apc_mg') + name = _T('core', 'vehicle_weapon_apc_mg') }, ['avenger_cannon'] = { id = 'VEHICLE_WEAPON_AVENGER_CANNON', @@ -256,14 +282,14 @@ Config.Weapons = { id = 'AMMO_AVENGER_CANNON', hash = 1849772700, max = 20, - name = _(CR(), 'core', 'ammo_avenger_cannon') + name = _T('core', 'ammo_avenger_cannon') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_avenger_cannon') + name = _T('core', 'vehicle_weapon_avenger_cannon') }, ['barrage_top_mg'] = { id = 'VEHICLE_WEAPON_BARRAGE_TOP_MG', @@ -275,14 +301,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_BAR_TMG', gxtDescription = 'WTD_V_BAR_TMG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_top_mg') + name = _T('core', 'vehicle_weapon_barrage_top_mg') }, ['barrage_top_minigun'] = { id = 'VEHICLE_WEAPON_BARRAGE_TOP_MINIGUN', @@ -294,14 +320,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_BAR_TMI', gxtDescription = 'WTD_V_BAR_TMI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_top_minigun') + name = _T('core', 'vehicle_weapon_barrage_top_minigun') }, ['barrage_rear_mg'] = { id = 'VEHICLE_WEAPON_BARRAGE_REAR_MG', @@ -313,14 +339,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_BAR_RMG', gxtDescription = 'WTD_V_BAR_RMG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_rear_mg') + name = _T('core', 'vehicle_weapon_barrage_rear_mg') }, ['barrage_rear_minigun'] = { id = 'VEHICLE_WEAPON_BARRAGE_REAR_MINIGUN', @@ -332,14 +358,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_BAR_RMI', gxtDescription = 'WTD_V_BAR_RMI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_rear_minigun') + name = _T('core', 'vehicle_weapon_barrage_rear_minigun') }, ['barrage_rear_gl'] = { id = 'VEHICLE_WEAPON_BARRAGE_REAR_GL', @@ -351,14 +377,14 @@ Config.Weapons = { id = 'AMMO_BARRAGE_GL', hash = 1364454752, max = 20, - name = _(CR(), 'core', 'ammo_barrage_gl') + name = _T('core', 'ammo_barrage_gl') }, gxtName = 'WT_V_BAR_RGL', gxtDescription = 'WTD_V_BAR_RGL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_rear_gl') + name = _T('core', 'vehicle_weapon_barrage_rear_gl') }, ['bomb'] = { id = 'VEHICLE_WEAPON_BOMB', @@ -370,14 +396,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEBOMB', hash = -1615671818, max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb') + name = _T('core', 'ammo_vehiclebomb') }, gxtName = 'WT_VEHBOMB', gxtDescription = 'WTD_VEHBOMB', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb') + name = _T('core', 'vehicle_weapon_bomb') }, ['bomb_cluster'] = { id = 'VEHICLE_WEAPON_BOMB_CLUSTER', @@ -389,14 +415,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEBOMB_CLUSTER', hash = 1584038003, max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_cluster') + name = _T('core', 'ammo_vehiclebomb_cluster') }, gxtName = 'WT_VEHBOMB_C', gxtDescription = 'WTD_VEHBOMB_C', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_cluster') + name = _T('core', 'vehicle_weapon_bomb_cluster') }, ['bomb_gas'] = { id = 'VEHICLE_WEAPON_BOMB_GAS', @@ -408,14 +434,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEBOMB_GAS', hash = 314485403, max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_gas') + name = _T('core', 'ammo_vehiclebomb_gas') }, gxtName = 'WT_VEHBOMB_G', gxtDescription = 'WTD_VEHBOMB_G', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_gas') + name = _T('core', 'vehicle_weapon_bomb_gas') }, ['bomb_incendiary'] = { id = 'VEHICLE_WEAPON_BOMB_INCENDIARY', @@ -427,14 +453,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEBOMB_INCENDIARY', hash = -111286589, max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_incendiary') + name = _T('core', 'ammo_vehiclebomb_incendiary') }, gxtName = 'WT_VEHBOMB_I', gxtDescription = 'WTD_VEHBOMB_I', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_incendiary') + name = _T('core', 'vehicle_weapon_bomb_incendiary') }, ['bombushka_cannon'] = { id = 'VEHICLE_WEAPON_BOMBUSHKA_CANNON', @@ -446,14 +472,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_BSHK_CANN', gxtDescription = 'WTD_V_BSHK_CANN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bombushka_cannon') + name = _T('core', 'vehicle_weapon_bombushka_cannon') }, ['bombushka_dualmg'] = { id = 'VEHICLE_WEAPON_BOMBUSHKA_DUALMG', @@ -465,14 +491,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_BSHK_DUAL', gxtDescription = 'WTD_V_BSHK_DUAL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bombushka_dualmg') + name = _T('core', 'vehicle_weapon_bombushka_dualmg') }, ['bruiser_50cal'] = { id = 'VEHICLE_WEAPON_BRUISER_50CAL', @@ -484,14 +510,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bruiser_50cal') + name = _T('core', 'vehicle_weapon_bruiser_50cal') }, ['bruiser2_50cal_laser'] = { id = 'VEHICLE_WEAPON_BRUISER2_50CAL_LASER', @@ -503,14 +529,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bruiser2_50cal_laser') + name = _T('core', 'vehicle_weapon_bruiser2_50cal_laser') }, ['caracara_mg'] = { id = 'VEHICLE_WEAPON_CARACARA_MG', @@ -522,14 +548,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TURRET', gxtDescription = 'WTD_V_TURRET', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_caracara_mg') + name = _T('core', 'vehicle_weapon_caracara_mg') }, ['caracara_minigun'] = { id = 'VEHICLE_WEAPON_CARACARA_MINIGUN', @@ -541,14 +567,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TEC_MINI', gxtDescription = 'WTD_V_TEC_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_caracara_minigun') + name = _T('core', 'vehicle_weapon_caracara_minigun') }, ['cherno_missile'] = { id = 'VEHICLE_WEAPON_CHERNO_MISSILE', @@ -560,14 +586,14 @@ Config.Weapons = { id = 'AMMO_CHERNO_MISSILE', hash = -1278325590, max = 10, - name = _(CR(), 'core', 'ammo_cherno_missile') + name = _T('core', 'ammo_cherno_missile') }, gxtName = 'WT_V_CHE_MI', gxtDescription = 'WTD_V_CHE_MI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_cherno_missile') + name = _T('core', 'vehicle_weapon_cherno_missile') }, ['deathbike_dualminigun'] = { id = 'VEHICLE_WEAPON_DEATHBIKE_DUALMINIGUN', @@ -579,14 +605,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_DBK_MINI', gxtDescription = 'WTD_V_DBK_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deathbike_dualminigun') + name = _T('core', 'vehicle_weapon_deathbike_dualminigun') }, ['deathbike2_minigun_laser'] = { id = 'VEHICLE_WEAPON_DEATHBIKE2_MINIGUN_LASER', @@ -598,14 +624,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deathbike2_minigun_laser') + name = _T('core', 'vehicle_weapon_deathbike2_minigun_laser') }, ['deluxo_mg'] = { id = 'VEHICLE_WEAPON_DELUXO_MG', @@ -617,14 +643,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_DEL_MG', gxtDescription = 'WTD_V_DEL_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deluxo_mg') + name = _T('core', 'vehicle_weapon_deluxo_mg') }, ['deluxo_missile'] = { id = 'VEHICLE_WEAPON_DELUXO_MISSILE', @@ -636,14 +662,14 @@ Config.Weapons = { id = 'AMMO_OPPRESSOR_MISSILE', hash = 570854289, max = 20, - name = _(CR(), 'core', 'ammo_oppressor_missile') + name = _T('core', 'ammo_oppressor_missile') }, gxtName = 'WT_V_DEL_MI', gxtDescription = 'WTD_V_DEL_MI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deluxo_missile') + name = _T('core', 'vehicle_weapon_deluxo_missile') }, ['dogfighter_mg'] = { id = 'VEHICLE_WEAPON_DOGFIGHTER_MG', @@ -655,14 +681,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_DGF_MG', gxtDescription = 'WTD_V_DGF_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dogfighter_mg') + name = _T('core', 'vehicle_weapon_dogfighter_mg') }, ['dogfighter_missile'] = { id = 'VEHICLE_WEAPON_DOGFIGHTER_MISSILE', @@ -674,14 +700,14 @@ Config.Weapons = { id = 'AMMO_SPACE_ROCKET', hash = 527765612, max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') + name = _T('core', 'ammo_space_rocket') }, gxtName = 'WT_V_DGF_MISS', gxtDescription = 'WTD_V_DGF_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dogfighter_missile') + name = _T('core', 'vehicle_weapon_dogfighter_missile') }, ['dune_mg'] = { id = 'VEHICLE_WEAPON_DUNE_MG', @@ -693,14 +719,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_DU_MG', gxtDescription = 'WTD_V_DU_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dune_mg') + name = _T('core', 'vehicle_weapon_dune_mg') }, ['dune_grenadelauncher'] = { id = 'VEHICLE_WEAPON_DUNE_GRENADELAUNCHER', @@ -712,14 +738,14 @@ Config.Weapons = { id = 'AMMO_DUNE_GRENADELAUNCHER', hash = 1742067183, max = 20, - name = _(CR(), 'core', 'ammo_dune_grenadelauncher') + name = _T('core', 'ammo_dune_grenadelauncher') }, gxtName = 'WT_V_DU_GL', gxtDescription = 'WTD_V_DU_GL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dune_grenadelauncher') + name = _T('core', 'vehicle_weapon_dune_grenadelauncher') }, ['dune_minigun'] = { id = 'VEHICLE_WEAPON_DUNE_MINIGUN', @@ -731,14 +757,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_DU_MINI', gxtDescription = 'WTD_V_DU_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dune_minigun') + name = _T('core', 'vehicle_weapon_dune_minigun') }, ['flamethrower'] = { id = 'VEHICLE_WEAPON_FLAMETHROWER', @@ -750,14 +776,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_FLAME', gxtDescription = 'WTD_V_FLAME', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_flamethrower') + name = _T('core', 'vehicle_weapon_flamethrower') }, ['flamethrower_scifi'] = { id = 'VEHICLE_WEAPON_FLAMETHROWER_SCIFI', @@ -769,14 +795,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_FLAME', gxtDescription = 'WTD_V_FLAME', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_flamethrower_scifi') + name = _T('core', 'vehicle_weapon_flamethrower_scifi') }, ['hacker_missile'] = { id = 'VEHICLE_WEAPON_HACKER_MISSILE', @@ -788,14 +814,14 @@ Config.Weapons = { id = 'AMMO_HACKER_MISSILE', hash = -2009808731, max = 20, - name = _(CR(), 'core', 'ammo_hacker_missile') + name = _T('core', 'ammo_hacker_missile') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hacker_missile') + name = _T('core', 'vehicle_weapon_hacker_missile') }, ['hacker_missile_homing'] = { id = 'VEHICLE_WEAPON_HACKER_MISSILE_HOMING', @@ -807,14 +833,14 @@ Config.Weapons = { id = 'AMMO_HACKER_MISSILE', hash = -2009808731, max = 20, - name = _(CR(), 'core', 'ammo_hacker_missile') + name = _T('core', 'ammo_hacker_missile') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hacker_missile_homing') + name = _T('core', 'vehicle_weapon_hacker_missile_homing') }, ['halftrack_dualmg'] = { id = 'VEHICLE_WEAPON_HALFTRACK_DUALMG', @@ -826,14 +852,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_HT_DUALMG', gxtDescription = 'WTD_V_HT_DUALMG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_halftrack_dualmg') + name = _T('core', 'vehicle_weapon_halftrack_dualmg') }, ['halftrack_quadmg'] = { id = 'VEHICLE_WEAPON_HALFTRACK_QUADMG', @@ -845,14 +871,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_HT_QUADMG', gxtDescription = 'WTD_V_HT_QUADMG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_halftrack_quadmg') + name = _T('core', 'vehicle_weapon_halftrack_quadmg') }, ['havok_minigun'] = { id = 'VEHICLE_WEAPON_HAVOK_MINIGUN', @@ -864,14 +890,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_HAV_MINI', gxtDescription = 'WTD_V_HAV_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_havok_minigun') + name = _T('core', 'vehicle_weapon_havok_minigun') }, ['hunter_mg'] = { id = 'VEHICLE_WEAPON_HUNTER_MG', @@ -883,14 +909,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_HUNT_MG', gxtDescription = 'WTD_V_HUNT_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_mg') + name = _T('core', 'vehicle_weapon_hunter_mg') }, ['hunter_missile'] = { id = 'VEHICLE_WEAPON_HUNTER_MISSILE', @@ -902,14 +928,14 @@ Config.Weapons = { id = 'AMMO_HUNTER_MISSILE', hash = -119401255, max = 20, - name = _(CR(), 'core', 'ammo_hunter_missile') + name = _T('core', 'ammo_hunter_missile') }, gxtName = 'WT_V_HUNT_MISS', gxtDescription = 'WTD_V_HUNT_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_missile') + name = _T('core', 'vehicle_weapon_hunter_missile') }, ['hunter_barrage'] = { id = 'VEHICLE_WEAPON_HUNTER_BARRAGE', @@ -921,14 +947,14 @@ Config.Weapons = { id = 'AMMO_HUNTER_BARRAGE', hash = 935462248, max = 20, - name = _(CR(), 'core', 'ammo_hunter_barrage') + name = _T('core', 'ammo_hunter_barrage') }, gxtName = 'WT_V_HUNT_BARR', gxtDescription = 'WTD_V_HUNT_BARR', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_barrage') + name = _T('core', 'vehicle_weapon_hunter_barrage') }, ['hunter_cannon'] = { id = 'VEHICLE_WEAPON_HUNTER_CANNON', @@ -940,14 +966,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_HUNT_CANN', gxtDescription = 'WTD_V_HUNT_CANN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_cannon') + name = _T('core', 'vehicle_weapon_hunter_cannon') }, ['issi4_50cal'] = { id = 'VEHICLE_WEAPON_ISSI4_50CAL', @@ -959,14 +985,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_issi4_50cal') + name = _T('core', 'vehicle_weapon_issi4_50cal') }, ['issi5_50cal_laser'] = { id = 'VEHICLE_WEAPON_ISSI5_50CAL_LASER', @@ -978,14 +1004,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_issi5_50cal_laser') + name = _T('core', 'vehicle_weapon_issi5_50cal_laser') }, ['khanjali_cannon'] = { id = 'VEHICLE_WEAPON_KHANJALI_CANNON', @@ -997,14 +1023,14 @@ Config.Weapons = { id = 'AMMO_TANK', hash = -1474608608, max = 100, - name = _(CR(), 'core', 'ammo_tank') + name = _T('core', 'ammo_tank') }, gxtName = 'WT_V_KHA_CA', gxtDescription = 'WTD_V_KHA_CA', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_cannon') + name = _T('core', 'vehicle_weapon_khanjali_cannon') }, ['khanjali_cannon_heavy'] = { id = 'VEHICLE_WEAPON_KHANJALI_CANNON_HEAVY', @@ -1016,14 +1042,14 @@ Config.Weapons = { id = 'AMMO_KHANJALI_CANNON_HEAVY', hash = 617011510, max = 100, - name = _(CR(), 'core', 'ammo_khanjali_cannon_heavy') + name = _T('core', 'ammo_khanjali_cannon_heavy') }, gxtName = 'WT_V_KHA_HCA', gxtDescription = 'WTD_V_KHA_HCA', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_cannon_heavy') + name = _T('core', 'vehicle_weapon_khanjali_cannon_heavy') }, ['khanjali_mg'] = { id = 'VEHICLE_WEAPON_KHANJALI_MG', @@ -1035,14 +1061,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_KHA_MG', gxtDescription = 'WTD_V_KHA_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_mg') + name = _T('core', 'vehicle_weapon_khanjali_mg') }, ['khanjali_gl'] = { id = 'VEHICLE_WEAPON_KHANJALI_GL', @@ -1054,14 +1080,14 @@ Config.Weapons = { id = 'AMMO_KHANJALI_GL', hash = -1630507076, max = 20, - name = _(CR(), 'core', 'ammo_khanjali_gl') + name = _T('core', 'ammo_khanjali_gl') }, gxtName = 'WT_V_KHA_GL', gxtDescription = 'WTD_V_KHA_GL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_gl') + name = _T('core', 'vehicle_weapon_khanjali_gl') }, ['menacer_mg'] = { id = 'VEHICLE_WEAPON_MENACER_MG', @@ -1073,14 +1099,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_NS_MG', gxtDescription = 'WTD_V_NS_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_menacer_mg') + name = _T('core', 'vehicle_weapon_menacer_mg') }, ['microlight_mg'] = { id = 'VEHICLE_WEAPON_MICROLIGHT_MG', @@ -1092,14 +1118,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_MCRL_MG', gxtDescription = 'WTD_V_MCRL_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_microlight_mg') + name = _T('core', 'vehicle_weapon_microlight_mg') }, ['mine'] = { id = 'VEHICLE_WEAPON_MINE', @@ -1111,14 +1137,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE', hash = 612448028, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine') + name = _T('core', 'ammo_vehiclemine') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine') + name = _T('core', 'vehicle_weapon_mine') }, ['mine_kinetic'] = { id = 'VEHICLE_WEAPON_MINE_KINETIC', @@ -1130,14 +1156,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_KINETIC', hash = -1140465749, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic') + name = _T('core', 'ammo_vehiclemine_kinetic') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_kinetic') + name = _T('core', 'vehicle_weapon_mine_kinetic') }, ['mine_emp'] = { id = 'VEHICLE_WEAPON_MINE_EMP', @@ -1149,14 +1175,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_EMP', hash = 1653442244, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp') + name = _T('core', 'ammo_vehiclemine_emp') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_emp') + name = _T('core', 'vehicle_weapon_mine_emp') }, ['mine_spike'] = { id = 'VEHICLE_WEAPON_MINE_SPIKE', @@ -1168,14 +1194,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_SPIKE', hash = 1782795920, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike') + name = _T('core', 'ammo_vehiclemine_spike') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_spike') + name = _T('core', 'vehicle_weapon_mine_spike') }, ['mine_slick'] = { id = 'VEHICLE_WEAPON_MINE_SLICK', @@ -1187,14 +1213,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_SLICK', hash = -418520852, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick') + name = _T('core', 'ammo_vehiclemine_slick') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_slick') + name = _T('core', 'vehicle_weapon_mine_slick') }, ['mine_tar'] = { id = 'VEHICLE_WEAPON_MINE_TAR', @@ -1206,14 +1232,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_TAR', hash = -1733963618, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar') + name = _T('core', 'ammo_vehiclemine_tar') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_tar') + name = _T('core', 'vehicle_weapon_mine_tar') }, ['mine_kinetic_rc'] = { id = 'VEHICLE_WEAPON_MINE_KINETIC_RC', @@ -1225,14 +1251,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_KINETIC_RC', hash = -338616823, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic_rc') + name = _T('core', 'ammo_vehiclemine_kinetic_rc') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_kinetic_rc') + name = _T('core', 'vehicle_weapon_mine_kinetic_rc') }, ['mine_emp_rc'] = { id = 'VEHICLE_WEAPON_MINE_EMP_RC', @@ -1244,14 +1270,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_EMP_RC', hash = -930619152, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp_rc') + name = _T('core', 'ammo_vehiclemine_emp_rc') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_emp_rc') + name = _T('core', 'vehicle_weapon_mine_emp_rc') }, ['mine_spike_rc'] = { id = 'VEHICLE_WEAPON_MINE_SPIKE_RC', @@ -1263,14 +1289,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_SPIKE_RC', hash = -1317227407, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike_rc') + name = _T('core', 'ammo_vehiclemine_spike_rc') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_spike_rc') + name = _T('core', 'vehicle_weapon_mine_spike_rc') }, ['mine_slick_rc'] = { id = 'VEHICLE_WEAPON_MINE_SLICK_RC', @@ -1282,14 +1308,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_SLICK_RC', hash = -590129723, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick_rc') + name = _T('core', 'ammo_vehiclemine_slick_rc') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_slick_rc') + name = _T('core', 'vehicle_weapon_mine_slick_rc') }, ['mine_tar_rc'] = { id = 'VEHICLE_WEAPON_MINE_TAR_RC', @@ -1301,14 +1327,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEMINE_TAR_RC', hash = -1955683003, max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar_rc') + name = _T('core', 'ammo_vehiclemine_tar_rc') }, gxtName = 'WT_VEHMINE', gxtDescription = 'WTD_VEHMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_tar_rc') + name = _T('core', 'vehicle_weapon_mine_tar_rc') }, ['mogul_nose'] = { id = 'VEHICLE_WEAPON_MOGUL_NOSE', @@ -1320,14 +1346,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MOG_NOSE', gxtDescription = 'WTD_V_MOG_NOSE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_nose') + name = _T('core', 'vehicle_weapon_mogul_nose') }, ['mogul_dualnose'] = { id = 'VEHICLE_WEAPON_MOGUL_DUALNOSE', @@ -1339,14 +1365,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MOG_DNOSE', gxtDescription = 'WTD_V_MOG_DNOSE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_dualnose') + name = _T('core', 'vehicle_weapon_mogul_dualnose') }, ['mogul_turret'] = { id = 'VEHICLE_WEAPON_MOGUL_TURRET', @@ -1358,14 +1384,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_MOG_TURR', gxtDescription = 'WTD_V_MOG_TURR', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_turret') + name = _T('core', 'vehicle_weapon_mogul_turret') }, ['mogul_dualturret'] = { id = 'VEHICLE_WEAPON_MOGUL_DUALTURRET', @@ -1377,14 +1403,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_MOG_DTURR', gxtDescription = 'WTD_V_MOG_DTURR', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_dualturret') + name = _T('core', 'vehicle_weapon_mogul_dualturret') }, ['monster3_glkin'] = { id = 'VEHICLE_WEAPON_MONSTER3_GLKIN', @@ -1396,14 +1422,14 @@ Config.Weapons = { id = 'AMMO_MONSTER3_KINETIC', hash = 2074953483, max = 10, - name = _(CR(), 'core', 'ammo_monster3_kinetic') + name = _T('core', 'ammo_monster3_kinetic') }, gxtName = 'WT_V_GREN_KIN', gxtDescription = 'WTD_V_GREN_KIN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_monster3_glkin') + name = _T('core', 'vehicle_weapon_monster3_glkin') }, ['mortar_explosive'] = { id = 'VEHICLE_WEAPON_MORTAR_EXPLOSIVE', @@ -1415,14 +1441,14 @@ Config.Weapons = { id = 'AMMO_MORTAR_EXPLOSIVE', hash = 814030577, max = 10, - name = _(CR(), 'core', 'ammo_mortar_explosive') + name = _T('core', 'ammo_mortar_explosive') }, gxtName = 'WT_V_TAM_MORT', gxtDescription = 'WTD_V_TAM_MORT', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mortar_explosive') + name = _T('core', 'vehicle_weapon_mortar_explosive') }, ['mortar_kinetic'] = { id = 'VEHICLE_WEAPON_MORTAR_KINETIC', @@ -1434,14 +1460,14 @@ Config.Weapons = { id = 'AMMO_MORTAR_KINETIC', hash = 648487681, max = 10, - name = _(CR(), 'core', 'ammo_mortar_kinetic') + name = _T('core', 'ammo_mortar_kinetic') }, gxtName = 'WT_V_MORTAR_KIN', gxtDescription = 'WTD_V_MORTAR_KIN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mortar_kinetic') + name = _T('core', 'vehicle_weapon_mortar_kinetic') }, ['mule4_mg'] = { id = 'VEHICLE_WEAPON_MULE4_MG', @@ -1453,14 +1479,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mule4_mg') + name = _T('core', 'vehicle_weapon_mule4_mg') }, ['mule4_missile'] = { id = 'VEHICLE_WEAPON_MULE4_MISSILE', @@ -1472,14 +1498,14 @@ Config.Weapons = { id = 'AMMO_SPACE_ROCKET', hash = 527765612, max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') + name = _T('core', 'ammo_space_rocket') }, gxtName = 'WT_V_TAM_MISS', gxtDescription = 'WTD_V_TAM_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mule4_missile') + name = _T('core', 'vehicle_weapon_mule4_missile') }, ['mule4_turret_gl'] = { id = 'VEHICLE_WEAPON_MULE4_TURRET_GL', @@ -1491,14 +1517,14 @@ Config.Weapons = { id = 'AMMO_MULE4_GL', hash = -206645419, max = 20, - name = _(CR(), 'core', 'ammo_mule4_gl') + name = _T('core', 'ammo_mule4_gl') }, gxtName = 'WT_V_KHA_GL', gxtDescription = 'WTD_V_KHA_GL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mule4_turret_gl') + name = _T('core', 'vehicle_weapon_mule4_turret_gl') }, ['oppressor_mg'] = { id = 'VEHICLE_WEAPON_OPPRESSOR_MG', @@ -1510,14 +1536,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_OP_MG', gxtDescription = 'WTD_V_OP_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor_mg') + name = _T('core', 'vehicle_weapon_oppressor_mg') }, ['oppressor_missile'] = { id = 'VEHICLE_WEAPON_OPPRESSOR_MISSILE', @@ -1529,14 +1555,14 @@ Config.Weapons = { id = 'AMMO_OPPRESSOR_MISSILE', hash = 570854289, max = 20, - name = _(CR(), 'core', 'ammo_oppressor_missile') + name = _T('core', 'ammo_oppressor_missile') }, gxtName = 'WT_V_OP_MISS', gxtDescription = 'WTD_V_OP_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor_missile') + name = _T('core', 'vehicle_weapon_oppressor_missile') }, ['oppressor2_mg'] = { id = 'VEHICLE_WEAPON_OPPRESSOR2_MG', @@ -1548,14 +1574,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_OP_MG', gxtDescription = 'WTD_V_OP_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor2_mg') + name = _T('core', 'vehicle_weapon_oppressor2_mg') }, ['oppressor2_cannon'] = { id = 'VEHICLE_WEAPON_OPPRESSOR2_CANNON', @@ -1567,14 +1593,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_ROG_CANN', gxtDescription = 'WTD_V_ROG_CANN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor2_cannon') + name = _T('core', 'vehicle_weapon_oppressor2_cannon') }, ['oppressor2_missile'] = { id = 'VEHICLE_WEAPON_OPPRESSOR2_MISSILE', @@ -1586,14 +1612,14 @@ Config.Weapons = { id = 'AMMO_OPPRESSOR2_MISSILE', hash = 914231229, max = 20, - name = _(CR(), 'core', 'ammo_oppressor2_missile') + name = _T('core', 'ammo_oppressor2_missile') }, gxtName = 'WT_V_OP_MISS', gxtDescription = 'WTD_V_OP_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor2_missile') + name = _T('core', 'vehicle_weapon_oppressor2_missile') }, ['paragon2_mg'] = { id = 'VEHICLE_WEAPON_PARAGON2_MG', @@ -1605,14 +1631,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_paragon2_mg') + name = _T('core', 'vehicle_weapon_paragon2_mg') }, ['pounder2_mini'] = { id = 'VEHICLE_WEAPON_POUNDER2_MINI', @@ -1624,14 +1650,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_mini') + name = _T('core', 'vehicle_weapon_pounder2_mini') }, ['pounder2_missile'] = { id = 'VEHICLE_WEAPON_POUNDER2_MISSILE', @@ -1643,14 +1669,14 @@ Config.Weapons = { id = 'AMMO_SPACE_ROCKET', hash = 527765612, max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') + name = _T('core', 'ammo_space_rocket') }, gxtName = 'WT_V_TAM_MISS', gxtDescription = 'WTD_V_TAM_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_missile') + name = _T('core', 'vehicle_weapon_pounder2_missile') }, ['pounder2_barrage'] = { id = 'VEHICLE_WEAPON_POUNDER2_BARRAGE', @@ -1662,14 +1688,14 @@ Config.Weapons = { id = 'AMMO_POUNDER2_MISSILE', hash = 948447183, max = 20, - name = _(CR(), 'core', 'ammo_pounder2_missile') + name = _T('core', 'ammo_pounder2_missile') }, gxtName = 'WT_V_POU_BA', gxtDescription = 'WTD_V_POU_BA', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_barrage') + name = _T('core', 'vehicle_weapon_pounder2_barrage') }, ['pounder2_gl'] = { id = 'VEHICLE_WEAPON_POUNDER2_GL', @@ -1681,14 +1707,14 @@ Config.Weapons = { id = 'AMMO_POUNDER2_GL', hash = 1624456817, max = 20, - name = _(CR(), 'core', 'ammo_pounder2_gl') + name = _T('core', 'ammo_pounder2_gl') }, gxtName = 'WT_V_KHA_GL', gxtDescription = 'WTD_V_KHA_GL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_gl') + name = _T('core', 'vehicle_weapon_pounder2_gl') }, ['rogue_mg'] = { id = 'VEHICLE_WEAPON_ROGUE_MG', @@ -1700,14 +1726,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_ROG_MG', gxtDescription = 'WTD_V_ROG_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rogue_mg') + name = _T('core', 'vehicle_weapon_rogue_mg') }, ['rogue_cannon'] = { id = 'VEHICLE_WEAPON_ROGUE_CANNON', @@ -1719,14 +1745,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_ROG_CANN', gxtDescription = 'WTD_V_ROG_CANN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rogue_cannon') + name = _T('core', 'vehicle_weapon_rogue_cannon') }, ['rogue_missile'] = { id = 'VEHICLE_WEAPON_ROGUE_MISSILE', @@ -1738,14 +1764,14 @@ Config.Weapons = { id = 'AMMO_ROGUE_MISSILE', hash = -1421421393, max = 20, - name = _(CR(), 'core', 'ammo_rogue_missile') + name = _T('core', 'ammo_rogue_missile') }, gxtName = 'WT_V_ROG_MISS', gxtDescription = 'WTD_V_ROG_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rogue_missile') + name = _T('core', 'vehicle_weapon_rogue_missile') }, ['scarab_50cal'] = { id = 'VEHICLE_WEAPON_SCARAB_50CAL', @@ -1757,14 +1783,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_1', gxtDescription = 'WTD_V_MG50_1', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scarab_50cal') + name = _T('core', 'vehicle_weapon_scarab_50cal') }, ['scarab2_50cal_laser'] = { id = 'VEHICLE_WEAPON_SCARAB2_50CAL_LASER', @@ -1776,14 +1802,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_1L', gxtDescription = 'WTD_V_MG50_1L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scarab2_50cal_laser') + name = _T('core', 'vehicle_weapon_scarab2_50cal_laser') }, ['scramjet_mg'] = { id = 'VEHICLE_WEAPON_SCRAMJET_MG', @@ -1795,14 +1821,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_VGL_MG', gxtDescription = 'WTD_V_VGL_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scramjet_mg') + name = _T('core', 'vehicle_weapon_scramjet_mg') }, ['scramjet_missile'] = { id = 'VEHICLE_WEAPON_SCRAMJET_MISSILE', @@ -1814,14 +1840,14 @@ Config.Weapons = { id = 'AMMO_SCRAMJET_MISSILE', hash = -1664293218, max = 20, - name = _(CR(), 'core', 'ammo_scramjet_missile') + name = _T('core', 'ammo_scramjet_missile') }, gxtName = 'WT_V_VGL_MISS', gxtDescription = 'WTD_V_VGL_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scramjet_missile') + name = _T('core', 'vehicle_weapon_scramjet_missile') }, ['seabreeze_mg'] = { id = 'VEHICLE_WEAPON_SEABREEZE_MG', @@ -1833,14 +1859,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_SBZ_MG', gxtDescription = 'WTD_V_SBZ_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_seabreeze_mg') + name = _T('core', 'vehicle_weapon_seabreeze_mg') }, ['speedo4_mg'] = { id = 'VEHICLE_WEAPON_SPEEDO4_MG', @@ -1852,14 +1878,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_speedo4_mg') + name = _T('core', 'vehicle_weapon_speedo4_mg') }, ['speedo4_turret_mg'] = { id = 'VEHICLE_WEAPON_SPEEDO4_TURRET_MG', @@ -1871,14 +1897,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_SPD_TMG', gxtDescription = 'WTD_V_SPD_TMG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_speedo4_turret_mg') + name = _T('core', 'vehicle_weapon_speedo4_turret_mg') }, ['speedo4_turret_mini'] = { id = 'VEHICLE_WEAPON_SPEEDO4_TURRET_MINI', @@ -1890,14 +1916,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_SPD_TMI', gxtDescription = 'WTD_V_SPD_TMI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_speedo4_turret_mini') + name = _T('core', 'vehicle_weapon_speedo4_turret_mini') }, ['strikeforce_barrage'] = { id = 'VEHICLE_WEAPON_STRIKEFORCE_BARRAGE', @@ -1909,14 +1935,14 @@ Config.Weapons = { id = 'AMMO_STRIKEFORCE_BARRAGE', hash = 987449399, max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_barrage') + name = _T('core', 'ammo_strikeforce_barrage') }, gxtName = 'WT_V_HUNT_BARR', gxtDescription = 'WTD_V_HUNT_BARR', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_strikeforce_barrage') + name = _T('core', 'vehicle_weapon_strikeforce_barrage') }, ['strikeforce_cannon'] = { id = 'VEHICLE_WEAPON_STRIKEFORCE_CANNON', @@ -1928,14 +1954,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_ROG_CANN', gxtDescription = 'WTD_V_ROG_CANN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_strikeforce_cannon') + name = _T('core', 'vehicle_weapon_strikeforce_cannon') }, ['strikeforce_missile'] = { id = 'VEHICLE_WEAPON_STRIKEFORCE_MISSILE', @@ -1947,14 +1973,14 @@ Config.Weapons = { id = 'AMMO_STRIKEFORCE_MISSILE', hash = 770578418, max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_missile') + name = _T('core', 'ammo_strikeforce_missile') }, gxtName = 'WT_V_HUNT_MISS', gxtDescription = 'WTD_V_HUNT_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_strikeforce_missile') + name = _T('core', 'vehicle_weapon_strikeforce_missile') }, ['subcar_mg'] = { id = 'VEHICLE_WEAPON_SUBCAR_MG', @@ -1966,14 +1992,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_SUB_MG', gxtDescription = 'WTD_V_SUB_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_subcar_mg') + name = _T('core', 'vehicle_weapon_subcar_mg') }, ['subcar_missile'] = { id = 'VEHICLE_WEAPON_SUBCAR_MISSILE', @@ -1985,14 +2011,14 @@ Config.Weapons = { id = 'AMMO_SUBCAR_MISSILE', hash = 456482729, max = 100, - name = _(CR(), 'core', 'ammo_subcar_missile') + name = _T('core', 'ammo_subcar_missile') }, gxtName = 'WT_V_SUB_MI', gxtDescription = 'WTD_V_SUB_MI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_subcar_missile') + name = _T('core', 'vehicle_weapon_subcar_missile') }, ['subcar_torpedo'] = { id = 'VEHICLE_WEAPON_SUBCAR_TORPEDO', @@ -2004,14 +2030,14 @@ Config.Weapons = { id = 'AMMO_SUBCAR_TORPEDO', hash = -684945118, max = 100, - name = _(CR(), 'core', 'ammo_subcar_torpedo') + name = _T('core', 'ammo_subcar_torpedo') }, gxtName = 'WT_V_SUB_TO', gxtDescription = 'WTD_V_SUB_TO', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_subcar_torpedo') + name = _T('core', 'vehicle_weapon_subcar_torpedo') }, ['tampa_missile'] = { id = 'VEHICLE_WEAPON_TAMPA_MISSILE', @@ -2023,14 +2049,14 @@ Config.Weapons = { id = 'AMMO_SPACE_ROCKET', hash = 527765612, max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') + name = _T('core', 'ammo_space_rocket') }, gxtName = 'WT_V_TAM_MISS', gxtDescription = 'WTD_V_TAM_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_missile') + name = _T('core', 'vehicle_weapon_tampa_missile') }, ['tampa_mortar'] = { id = 'VEHICLE_WEAPON_TAMPA_MORTAR', @@ -2042,14 +2068,14 @@ Config.Weapons = { id = 'AMMO_TAMPA_MORTAR', hash = -405037695, max = 10, - name = _(CR(), 'core', 'ammo_tampa_mortar') + name = _T('core', 'ammo_tampa_mortar') }, gxtName = 'WT_V_TAM_MORT', gxtDescription = 'WTD_V_TAM_MORT', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_mortar') + name = _T('core', 'vehicle_weapon_tampa_mortar') }, ['tampa_fixedminigun'] = { id = 'VEHICLE_WEAPON_TAMPA_FIXEDMINIGUN', @@ -2061,14 +2087,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TAM_FMINI', gxtDescription = 'WTD_V_TAM_FMINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_fixedminigun') + name = _T('core', 'vehicle_weapon_tampa_fixedminigun') }, ['tampa_dualminigun'] = { id = 'VEHICLE_WEAPON_TAMPA_DUALMINIGUN', @@ -2080,14 +2106,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TAM_DMINI', gxtDescription = 'WTD_V_TAM_DMINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_dualminigun') + name = _T('core', 'vehicle_weapon_tampa_dualminigun') }, ['thruster_mg'] = { id = 'VEHICLE_WEAPON_THRUSTER_MG', @@ -2099,14 +2125,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_THR_MG', gxtDescription = 'WTD_V_THR_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_thruster_mg') + name = _T('core', 'vehicle_weapon_thruster_mg') }, ['thruster_missile'] = { id = 'VEHICLE_WEAPON_THRUSTER_MISSILE', @@ -2118,14 +2144,14 @@ Config.Weapons = { id = 'AMMO_THRUSTER_MISSILE', hash = -379666311, max = 20, - name = _(CR(), 'core', 'ammo_thruster_missile') + name = _T('core', 'ammo_thruster_missile') }, gxtName = 'WT_V_THR_MI', gxtDescription = 'WTD_V_THR_MI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_thruster_missile') + name = _T('core', 'vehicle_weapon_thruster_missile') }, ['trailer_quadmg'] = { id = 'VEHICLE_WEAPON_TRAILER_QUADMG', @@ -2137,14 +2163,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TR_QUADMG', gxtDescription = 'WTD_V_TR_QUADMG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_trailer_quadmg') + name = _T('core', 'vehicle_weapon_trailer_quadmg') }, ['trailer_dualaa'] = { id = 'VEHICLE_WEAPON_TRAILER_DUALAA', @@ -2156,14 +2182,14 @@ Config.Weapons = { id = 'AMMO_TRAILER_AA', hash = 881918194, max = 100, - name = _(CR(), 'core', 'ammo_trailer_aa') + name = _T('core', 'ammo_trailer_aa') }, gxtName = 'WT_V_TR_DUALAA', gxtDescription = 'WTD_V_TR_DUALAA', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_trailer_dualaa') + name = _T('core', 'vehicle_weapon_trailer_dualaa') }, ['trailer_missile'] = { id = 'VEHICLE_WEAPON_TRAILER_MISSILE', @@ -2175,14 +2201,14 @@ Config.Weapons = { id = 'AMMO_TRAILER_MISSILE', hash = -11173636, max = 10, - name = _(CR(), 'core', 'ammo_trailer_missile') + name = _T('core', 'ammo_trailer_missile') }, gxtName = 'WT_V_TR_MISS', gxtDescription = 'WTD_V_TR_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_trailer_missile') + name = _T('core', 'vehicle_weapon_trailer_missile') }, ['tula_nosemg'] = { id = 'VEHICLE_WEAPON_TULA_NOSEMG', @@ -2194,14 +2220,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TUL_NOSE', gxtDescription = 'WTD_V_TUL_NOSE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_nosemg') + name = _T('core', 'vehicle_weapon_tula_nosemg') }, ['tula_mg'] = { id = 'VEHICLE_WEAPON_TULA_MG', @@ -2213,14 +2239,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TUL_MG', gxtDescription = 'WTD_V_TUL_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_mg') + name = _T('core', 'vehicle_weapon_tula_mg') }, ['tula_dualmg'] = { id = 'VEHICLE_WEAPON_TULA_DUALMG', @@ -2232,14 +2258,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TUL_DUAL', gxtDescription = 'WTD_V_TUL_DUAL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_dualmg') + name = _T('core', 'vehicle_weapon_tula_dualmg') }, ['tula_minigun'] = { id = 'VEHICLE_WEAPON_TULA_MINIGUN', @@ -2251,14 +2277,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TUL_MINI', gxtDescription = 'WTD_V_TUL_MINI', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_minigun') + name = _T('core', 'vehicle_weapon_tula_minigun') }, ['vigilante_mg'] = { id = 'VEHICLE_WEAPON_VIGILANTE_MG', @@ -2270,14 +2296,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_VGL_MG', gxtDescription = 'WTD_V_VGL_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_vigilante_mg') + name = _T('core', 'vehicle_weapon_vigilante_mg') }, ['vigilante_missile'] = { id = 'VEHICLE_WEAPON_VIGILANTE_MISSILE', @@ -2289,14 +2315,14 @@ Config.Weapons = { id = 'AMMO_VIGILANTE_MISSILE', hash = 1507289724, max = 20, - name = _(CR(), 'core', 'ammo_vigilante_missile') + name = _T('core', 'ammo_vigilante_missile') }, gxtName = 'WT_V_VGL_MISS', gxtDescription = 'WTD_V_VGL_MISS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_vigilante_missile') + name = _T('core', 'vehicle_weapon_vigilante_missile') }, ['bomb_standard_wide'] = { id = 'VEHICLE_WEAPON_BOMB_STANDARD_WIDE', @@ -2308,14 +2334,14 @@ Config.Weapons = { id = 'AMMO_VEHICLEBOMB_WIDE', hash = -117387562, max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_wide') + name = _T('core', 'ammo_vehiclebomb_wide') }, gxtName = 'WT_VEHBOMB', gxtDescription = 'WTD_VEHBOMB', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_standard_wide') + name = _T('core', 'vehicle_weapon_bomb_standard_wide') }, ['volatol_dualmg'] = { id = 'VEHICLE_WEAPON_VOLATOL_DUALMG', @@ -2327,14 +2353,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_VOL_MG', gxtDescription = 'WTD_V_VOL_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_volatol_dualmg') + name = _T('core', 'vehicle_weapon_volatol_dualmg') }, ['comet_mg'] = { id = 'VEHICLE_WEAPON_COMET_MG', @@ -2346,14 +2372,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_comet_mg') + name = _T('core', 'vehicle_weapon_comet_mg') }, ['revolter_mg'] = { id = 'VEHICLE_WEAPON_REVOLTER_MG', @@ -2365,14 +2391,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_revolter_mg') + name = _T('core', 'vehicle_weapon_revolter_mg') }, ['savestra_mg'] = { id = 'VEHICLE_WEAPON_SAVESTRA_MG', @@ -2384,14 +2410,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_savestra_mg') + name = _T('core', 'vehicle_weapon_savestra_mg') }, ['viseris_mg'] = { id = 'VEHICLE_WEAPON_VISERIS_MG', @@ -2403,14 +2429,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_viseris_mg') + name = _T('core', 'vehicle_weapon_viseris_mg') }, ['impaler2_50cal'] = { id = 'VEHICLE_WEAPON_IMPALER2_50CAL', @@ -2422,14 +2448,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_impaler2_50cal') + name = _T('core', 'vehicle_weapon_impaler2_50cal') }, ['impaler3_50cal_laser'] = { id = 'VEHICLE_WEAPON_IMPALER3_50CAL_LASER', @@ -2441,14 +2467,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_impaler3_50cal_laser') + name = _T('core', 'vehicle_weapon_impaler3_50cal_laser') }, ['imperator_50cal'] = { id = 'VEHICLE_WEAPON_IMPERATOR_50CAL', @@ -2460,14 +2486,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_imperator_50cal') + name = _T('core', 'vehicle_weapon_imperator_50cal') }, ['imperator2_50cal_laser'] = { id = 'VEHICLE_WEAPON_IMPERATOR2_50CAL_LASER', @@ -2479,14 +2505,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_imperator2_50cal_laser') + name = _T('core', 'vehicle_weapon_imperator2_50cal_laser') }, ['dominator4_50cal'] = { id = 'VEHICLE_WEAPON_DOMINATOR4_50CAL', @@ -2498,14 +2524,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dominator4_50cal') + name = _T('core', 'vehicle_weapon_dominator4_50cal') }, ['dominator5_50cal_laser'] = { id = 'VEHICLE_WEAPON_DOMINATOR5_50CAL_LASER', @@ -2517,14 +2543,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dominator5_50cal_laser') + name = _T('core', 'vehicle_weapon_dominator5_50cal_laser') }, ['slamvan4_50cal'] = { id = 'VEHICLE_WEAPON_SLAMVAN4_50CAL', @@ -2536,14 +2562,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_slamvan4_50cal') + name = _T('core', 'vehicle_weapon_slamvan4_50cal') }, ['slamvan5_50cal_laser'] = { id = 'VEHICLE_WEAPON_SLAMVAN5_50CAL_LASER', @@ -2555,14 +2581,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_slamvan5_50cal_laser') + name = _T('core', 'vehicle_weapon_slamvan5_50cal_laser') }, ['brutus_50cal'] = { id = 'VEHICLE_WEAPON_BRUTUS_50CAL', @@ -2574,14 +2600,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_1', gxtDescription = 'WTD_V_MG50_1', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_brutus_50cal') + name = _T('core', 'vehicle_weapon_brutus_50cal') }, ['brutus2_50cal_laser'] = { id = 'VEHICLE_WEAPON_BRUTUS2_50CAL_LASER', @@ -2593,14 +2619,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_1L', gxtDescription = 'WTD_V_MG50_1L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_brutus2_50cal_laser') + name = _T('core', 'vehicle_weapon_brutus2_50cal_laser') }, ['zr380_50cal'] = { id = 'VEHICLE_WEAPON_ZR380_50CAL', @@ -2612,14 +2638,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2', gxtDescription = 'WTD_V_MG50_2', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_zr380_50cal') + name = _T('core', 'vehicle_weapon_zr380_50cal') }, ['zr3802_50cal_laser'] = { id = 'VEHICLE_WEAPON_ZR3802_50CAL_LASER', @@ -2631,14 +2657,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_MG50_2L', gxtDescription = 'WTD_V_MG50_2L', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_zr3802_50cal_laser') + name = _T('core', 'vehicle_weapon_zr3802_50cal_laser') }, ['jb700_mg'] = { id = 'VEHICLE_WEAPON_JB700_MG', @@ -2650,14 +2676,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_COM_MG', gxtDescription = 'WTD_V_COM_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_jb700_mg') + name = _T('core', 'vehicle_weapon_jb700_mg') }, ['rctank_gun'] = { id = 'VEHICLE_WEAPON_RCTANK_GUN', @@ -2669,14 +2695,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_RCT_MG', gxtDescription = 'WTD_V_RCT_MG', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_gun') + name = _T('core', 'vehicle_weapon_rctank_gun') }, ['rctank_flame'] = { id = 'VEHICLE_WEAPON_RCTANK_FLAME', @@ -2688,14 +2714,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_RCT_FL', gxtDescription = 'WTD_V_RCT_FL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_flame') + name = _T('core', 'vehicle_weapon_rctank_flame') }, ['rctank_rocket'] = { id = 'VEHICLE_WEAPON_RCTANK_ROCKET', @@ -2707,14 +2733,14 @@ Config.Weapons = { id = 'AMMO_RCTANK_ROCKET', hash = -1585454291, max = 20, - name = _(CR(), 'core', 'ammo_rctank_rocket') + name = _T('core', 'ammo_rctank_rocket') }, gxtName = 'WT_V_RCT_RK', gxtDescription = 'WTD_V_RCT_RK', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_rocket') + name = _T('core', 'vehicle_weapon_rctank_rocket') }, ['rctank_lazer'] = { id = 'VEHICLE_WEAPON_RCTANK_LAZER', @@ -2726,14 +2752,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_RCT_LZ', gxtDescription = 'WTD_V_RCT_LZ', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_lazer') + name = _T('core', 'vehicle_weapon_rctank_lazer') }, ['air_defence_gun'] = { id = 'WEAPON_AIR_DEFENCE_GUN', @@ -2745,14 +2771,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_air_defence_gun') + name = _T('core', 'weapon_air_defence_gun') }, ['autoshotgun'] = { id = 'WEAPON_AUTOSHOTGUN', @@ -2764,7 +2790,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_AUTOSHGN', gxtDescription = 'WTD_AUTOSHGN', @@ -2782,7 +2808,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_autoshotgun') + name = _T('core', 'weapon_autoshotgun') }, ['battleaxe'] = { id = 'WEAPON_BATTLEAXE', @@ -2796,7 +2822,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_battleaxe') + name = _T('core', 'weapon_battleaxe') }, ['bottle'] = { id = 'WEAPON_BOTTLE', @@ -2810,7 +2836,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bottle') + name = _T('core', 'weapon_bottle') }, ['bullpuprifle'] = { id = 'WEAPON_BULLPUPRIFLE', @@ -2822,7 +2848,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_BULLRIFLE', gxtDescription = 'WTD_BULLRIFLE', @@ -2890,7 +2916,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_bullpuprifle') + name = _T('core', 'weapon_bullpuprifle') }, ['cannon_blazer'] = { id = 'VEHICLE_WEAPON_CANNON_BLAZER', @@ -2902,14 +2928,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_cannon_blazer') + name = _T('core', 'vehicle_weapon_cannon_blazer') }, ['combatpdw'] = { id = 'WEAPON_COMBATPDW', @@ -2921,7 +2947,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_COMBATPDW', gxtDescription = 'WTD_COMBATPDW', @@ -2979,7 +3005,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_combatpdw') + name = _T('core', 'weapon_combatpdw') }, ['compactlauncher'] = { id = 'WEAPON_COMPACTLAUNCHER', @@ -2991,7 +3017,7 @@ Config.Weapons = { id = 'AMMO_GRENADELAUNCHER', hash = 1003267566, max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher') + name = _T('core', 'ammo_grenadelauncher') }, gxtName = 'WT_CMPGL', gxtDescription = 'WTD_CMPGL', @@ -3009,7 +3035,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_compactlauncher') + name = _T('core', 'weapon_compactlauncher') }, ['compactrifle'] = { id = 'WEAPON_COMPACTRIFLE', @@ -3021,7 +3047,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_CMPRIFLE', gxtDescription = 'WTD_CMPRIFLE', @@ -3049,7 +3075,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_compactrifle') + name = _T('core', 'weapon_compactrifle') }, ['dagger'] = { id = 'WEAPON_DAGGER', @@ -3063,7 +3089,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_dagger') + name = _T('core', 'weapon_dagger') }, ['dbshotgun'] = { id = 'WEAPON_DBSHOTGUN', @@ -3075,7 +3101,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_DBSHGN', gxtDescription = 'WTD_DBSHGN', @@ -3093,7 +3119,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_dbshotgun') + name = _T('core', 'weapon_dbshotgun') }, ['firework'] = { id = 'WEAPON_FIREWORK', @@ -3105,7 +3131,7 @@ Config.Weapons = { id = 'AMMO_FIREWORK', hash = -1356599793, max = 20, - name = _(CR(), 'core', 'ammo_firework') + name = _T('core', 'ammo_firework') }, gxtName = 'WT_FIREWRK', gxtDescription = 'WTD_FIREWRK', @@ -3123,7 +3149,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_firework') + name = _T('core', 'weapon_firework') }, ['flaregun'] = { id = 'WEAPON_FLAREGUN', @@ -3135,7 +3161,7 @@ Config.Weapons = { id = 'AMMO_FLAREGUN', hash = 1173416293, max = 20, - name = _(CR(), 'core', 'ammo_flaregun') + name = _T('core', 'ammo_flaregun') }, gxtName = 'WT_FLAREGUN', gxtDescription = 'WTD_FLAREGUN', @@ -3153,7 +3179,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_flaregun') + name = _T('core', 'weapon_flaregun') }, ['flashlight'] = { id = 'WEAPON_FLASHLIGHT', @@ -3178,7 +3204,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_flashlight') + name = _T('core', 'weapon_flashlight') }, ['garbagebag'] = { id = 'WEAPON_GARBAGEBAG', @@ -3192,7 +3218,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_garbagebag') + name = _T('core', 'weapon_garbagebag') }, ['gusenberg'] = { id = 'WEAPON_GUSENBERG', @@ -3204,7 +3230,7 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_GUSNBRG', gxtDescription = 'WTD_GUSNBRG', @@ -3232,7 +3258,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_gusenberg') + name = _T('core', 'weapon_gusenberg') }, ['handcuffs'] = { id = 'WEAPON_HANDCUFFS', @@ -3246,7 +3272,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_handcuffs') + name = _T('core', 'weapon_handcuffs') }, ['hatchet'] = { id = 'WEAPON_HATCHET', @@ -3260,7 +3286,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hatchet') + name = _T('core', 'weapon_hatchet') }, ['heavypistol'] = { id = 'WEAPON_HEAVYPISTOL', @@ -3272,7 +3298,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_HVYPISTOL', gxtDescription = 'WTD_HVYPISTOL', @@ -3320,7 +3346,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_heavypistol') + name = _T('core', 'weapon_heavypistol') }, ['heavyshotgun'] = { id = 'WEAPON_HEAVYSHOTGUN', @@ -3332,7 +3358,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_HVYSHGN', gxtDescription = 'WTD_HVYSHGN', @@ -3390,7 +3416,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_heavyshotgun') + name = _T('core', 'weapon_heavyshotgun') }, ['hominglauncher'] = { id = 'WEAPON_HOMINGLAUNCHER', @@ -3402,7 +3428,7 @@ Config.Weapons = { id = 'AMMO_HOMINGLAUNCHER', hash = -1726673363, max = 10, - name = _(CR(), 'core', 'ammo_hominglauncher') + name = _T('core', 'ammo_hominglauncher') }, gxtName = 'WT_HOMLNCH', gxtDescription = 'WTD_HOMLNCH', @@ -3420,7 +3446,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_hominglauncher') + name = _T('core', 'weapon_hominglauncher') }, ['knuckle'] = { id = 'WEAPON_KNUCKLE', @@ -3535,7 +3561,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 10, - name = _(CR(), 'core', 'weapon_knuckle') + name = _T('core', 'weapon_knuckle') }, ['machete'] = { id = 'WEAPON_MACHETE', @@ -3549,7 +3575,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_machete') + name = _T('core', 'weapon_machete') }, ['machinepistol'] = { id = 'WEAPON_MACHINEPISTOL', @@ -3561,7 +3587,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_MCHPIST', gxtDescription = 'WTD_MCHPIST', @@ -3599,7 +3625,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_machinepistol') + name = _T('core', 'weapon_machinepistol') }, ['marksmanpistol'] = { id = 'WEAPON_MARKSMANPISTOL', @@ -3611,7 +3637,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_MKPISTOL', gxtDescription = 'WTD_MKPISTOL', @@ -3629,7 +3655,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_marksmanpistol') + name = _T('core', 'weapon_marksmanpistol') }, ['marksmanrifle'] = { id = 'WEAPON_MARKSMANRIFLE', @@ -3641,7 +3667,7 @@ Config.Weapons = { id = 'AMMO_SNIPER', hash = 1285032059, max = 250, - name = _(CR(), 'core', 'ammo_sniper') + name = _T('core', 'ammo_sniper') }, gxtName = 'WT_MKRIFLE', gxtDescription = 'WTD_MKRIFLE', @@ -3709,7 +3735,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_marksmanrifle') + name = _T('core', 'weapon_marksmanrifle') }, ['minismg'] = { id = 'WEAPON_MINISMG', @@ -3721,7 +3747,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_MINISMG', gxtDescription = 'WTD_MINISMG', @@ -3749,7 +3775,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_minismg') + name = _T('core', 'weapon_minismg') }, ['musket'] = { id = 'WEAPON_MUSKET', @@ -3761,7 +3787,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_MUSKET', gxtDescription = 'WTD_MUSKET', @@ -3779,7 +3805,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_musket') + name = _T('core', 'weapon_musket') }, ['pipebomb'] = { id = 'WEAPON_PIPEBOMB', @@ -3791,14 +3817,14 @@ Config.Weapons = { id = 'AMMO_PIPEBOMB', hash = 357983224, max = 10, - name = _(CR(), 'core', 'ammo_pipebomb') + name = _T('core', 'ammo_pipebomb') }, gxtName = 'WT_PIPEBOMB', gxtDescription = 'WTD_PIPEBOMB', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_pipebomb') + name = _T('core', 'weapon_pipebomb') }, ['poolcue'] = { id = 'WEAPON_POOLCUE', @@ -3812,7 +3838,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_poolcue') + name = _T('core', 'weapon_poolcue') }, ['proxmine'] = { id = 'WEAPON_PROXMINE', @@ -3824,14 +3850,14 @@ Config.Weapons = { id = 'AMMO_PROXMINE', hash = -1356724057, max = 5, - name = _(CR(), 'core', 'ammo_proxmine') + name = _T('core', 'ammo_proxmine') }, gxtName = 'WT_PRXMINE', gxtDescription = 'WTD_PRXMINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_proxmine') + name = _T('core', 'weapon_proxmine') }, ['railgun'] = { id = 'WEAPON_RAILGUN', @@ -3843,7 +3869,7 @@ Config.Weapons = { id = 'AMMO_RAILGUN', hash = 2034517757, max = 20, - name = _(CR(), 'core', 'ammo_railgun') + name = _T('core', 'ammo_railgun') }, gxtName = 'WT_RAILGUN', gxtDescription = 'WTD_RAILGUN', @@ -3861,7 +3887,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_railgun') + name = _T('core', 'weapon_railgun') }, ['revolver'] = { id = 'WEAPON_REVOLVER', @@ -3873,7 +3899,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_REVOLVER', gxtDescription = 'WTD_REVOLVER', @@ -3911,7 +3937,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_revolver') + name = _T('core', 'weapon_revolver') }, ['unarmed'] = { id = 'WEAPON_UNARMED', @@ -3925,7 +3951,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_unarmed') + name = _T('core', 'weapon_unarmed') }, ['animal'] = { id = 'WEAPON_ANIMAL', @@ -3939,7 +3965,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_animal') + name = _T('core', 'weapon_animal') }, ['cougar'] = { id = 'WEAPON_COUGAR', @@ -3953,7 +3979,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_cougar') + name = _T('core', 'weapon_cougar') }, ['knife'] = { id = 'WEAPON_KNIFE', @@ -3967,7 +3993,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_knife') + name = _T('core', 'weapon_knife') }, ['nightstick'] = { id = 'WEAPON_NIGHTSTICK', @@ -3981,7 +4007,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_nightstick') + name = _T('core', 'weapon_nightstick') }, ['hammer'] = { id = 'WEAPON_HAMMER', @@ -3995,7 +4021,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hammer') + name = _T('core', 'weapon_hammer') }, ['bat'] = { id = 'WEAPON_BAT', @@ -4009,7 +4035,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bat') + name = _T('core', 'weapon_bat') }, ['golfclub'] = { id = 'WEAPON_GOLFCLUB', @@ -4023,7 +4049,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_golfclub') + name = _T('core', 'weapon_golfclub') }, ['crowbar'] = { id = 'WEAPON_CROWBAR', @@ -4037,7 +4063,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_crowbar') + name = _T('core', 'weapon_crowbar') }, ['pistol'] = { id = 'WEAPON_PISTOL', @@ -4049,7 +4075,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_PIST', gxtDescription = 'WTD_PIST', @@ -4117,7 +4143,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_pistol') + name = _T('core', 'weapon_pistol') }, ['combatpistol'] = { id = 'WEAPON_COMBATPISTOL', @@ -4129,7 +4155,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_PIST_CBT', gxtDescription = 'WTD_PIST_CBT', @@ -4187,7 +4213,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_combatpistol') + name = _T('core', 'weapon_combatpistol') }, ['appistol'] = { id = 'WEAPON_APPISTOL', @@ -4199,7 +4225,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_PIST_AP', gxtDescription = 'WTD_PIST_AP', @@ -4257,7 +4283,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_appistol') + name = _T('core', 'weapon_appistol') }, ['pistol50'] = { id = 'WEAPON_PISTOL50', @@ -4269,7 +4295,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_PIST_50', gxtDescription = 'WTD_PIST_50', @@ -4327,7 +4353,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_pistol50') + name = _T('core', 'weapon_pistol50') }, ['microsmg'] = { id = 'WEAPON_MICROSMG', @@ -4339,7 +4365,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_SMG_MCR', gxtDescription = 'WTD_SMG_MCR', @@ -4407,7 +4433,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_microsmg') + name = _T('core', 'weapon_microsmg') }, ['smg'] = { id = 'WEAPON_SMG', @@ -4419,7 +4445,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_SMG', gxtDescription = 'WTD_SMG', @@ -4507,7 +4533,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 8, - name = _(CR(), 'core', 'weapon_smg') + name = _T('core', 'weapon_smg') }, ['assaultsmg'] = { id = 'WEAPON_ASSAULTSMG', @@ -4519,7 +4545,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_SMG_ASL', gxtDescription = 'WTD_SMG_ASL', @@ -4587,7 +4613,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_assaultsmg') + name = _T('core', 'weapon_assaultsmg') }, ['assaultrifle'] = { id = 'WEAPON_ASSAULTRIFLE', @@ -4599,7 +4625,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_RIFLE_ASL', gxtDescription = 'WTD_RIFLE_ASL', @@ -4697,7 +4723,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 9, - name = _(CR(), 'core', 'weapon_assaultrifle') + name = _T('core', 'weapon_assaultrifle') }, ['carbinerifle'] = { id = 'WEAPON_CARBINERIFLE', @@ -4709,7 +4735,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_RIFLE_CBN', gxtDescription = 'WTD_RIFLE_CBN', @@ -4817,7 +4843,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 10, - name = _(CR(), 'core', 'weapon_carbinerifle') + name = _T('core', 'weapon_carbinerifle') }, ['advancedrifle'] = { id = 'WEAPON_ADVANCEDRIFLE', @@ -4829,7 +4855,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_RIFLE_ADV', gxtDescription = 'WTD_RIFLE_ADV', @@ -4897,7 +4923,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_advancedrifle') + name = _T('core', 'weapon_advancedrifle') }, ['mg'] = { id = 'WEAPON_MG', @@ -4909,7 +4935,7 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_MG', gxtDescription = 'WTD_MG', @@ -4957,7 +4983,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_mg') + name = _T('core', 'weapon_mg') }, ['combatmg'] = { id = 'WEAPON_COMBATMG', @@ -4969,7 +4995,7 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_MG_CBT', gxtDescription = 'WTD_MG_CBT', @@ -5037,7 +5063,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_combatmg') + name = _T('core', 'weapon_combatmg') }, ['pumpshotgun'] = { id = 'WEAPON_PUMPSHOTGUN', @@ -5049,7 +5075,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_SG_PMP', gxtDescription = 'WTD_SG_PMP', @@ -5107,7 +5133,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_pumpshotgun') + name = _T('core', 'weapon_pumpshotgun') }, ['sawnoffshotgun'] = { id = 'WEAPON_SAWNOFFSHOTGUN', @@ -5119,7 +5145,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_SG_SOF', gxtDescription = 'WTD_SG_SOF', @@ -5147,7 +5173,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_sawnoffshotgun') + name = _T('core', 'weapon_sawnoffshotgun') }, ['assaultshotgun'] = { id = 'WEAPON_ASSAULTSHOTGUN', @@ -5159,7 +5185,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_SG_ASL', gxtDescription = 'WTD_SG_ASL', @@ -5217,7 +5243,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_assaultshotgun') + name = _T('core', 'weapon_assaultshotgun') }, ['bullpupshotgun'] = { id = 'WEAPON_BULLPUPSHOTGUN', @@ -5229,7 +5255,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_SG_BLP', gxtDescription = 'WTD_SG_BLP', @@ -5277,7 +5303,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_bullpupshotgun') + name = _T('core', 'weapon_bullpupshotgun') }, ['stungun'] = { id = 'WEAPON_STUNGUN', @@ -5289,14 +5315,14 @@ Config.Weapons = { id = 'AMMO_STUNGUN', hash = -1339118112, max = 250, - name = _(CR(), 'core', 'ammo_stungun') + name = _T('core', 'ammo_stungun') }, gxtName = 'WT_STUN', gxtDescription = 'WTD_STUN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_stungun') + name = _T('core', 'weapon_stungun') }, ['sniperrifle'] = { id = 'WEAPON_SNIPERRIFLE', @@ -5308,7 +5334,7 @@ Config.Weapons = { id = 'AMMO_SNIPER', hash = 1285032059, max = 250, - name = _(CR(), 'core', 'ammo_sniper') + name = _T('core', 'ammo_sniper') }, gxtName = 'WT_SNIP_RIF', gxtDescription = 'WTD_SNIP_RIF', @@ -5366,7 +5392,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_sniperrifle') + name = _T('core', 'weapon_sniperrifle') }, ['heavysniper'] = { id = 'WEAPON_HEAVYSNIPER', @@ -5378,7 +5404,7 @@ Config.Weapons = { id = 'AMMO_SNIPER', hash = 1285032059, max = 250, - name = _(CR(), 'core', 'ammo_sniper') + name = _T('core', 'ammo_sniper') }, gxtName = 'WT_SNIP_HVY', gxtDescription = 'WTD_SNIP_HVY', @@ -5426,7 +5452,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_heavysniper') + name = _T('core', 'weapon_heavysniper') }, ['remotesniper'] = { id = 'WEAPON_REMOTESNIPER', @@ -5438,14 +5464,14 @@ Config.Weapons = { id = 'AMMO_SNIPER_REMOTE', hash = -19235536, max = 250, - name = _(CR(), 'core', 'ammo_sniper_remote') + name = _T('core', 'ammo_sniper_remote') }, gxtName = 'WT_SNIP_RMT', gxtDescription = 'WTD_SNIP_RMT', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_remotesniper') + name = _T('core', 'weapon_remotesniper') }, ['grenadelauncher'] = { id = 'WEAPON_GRENADELAUNCHER', @@ -5457,7 +5483,7 @@ Config.Weapons = { id = 'AMMO_GRENADELAUNCHER', hash = 1003267566, max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher') + name = _T('core', 'ammo_grenadelauncher') }, gxtName = 'WT_GL', gxtDescription = 'WTD_GL', @@ -5505,7 +5531,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_grenadelauncher') + name = _T('core', 'weapon_grenadelauncher') }, ['grenadelauncher_smoke'] = { id = 'WEAPON_GRENADELAUNCHER_SMOKE', @@ -5517,7 +5543,7 @@ Config.Weapons = { id = 'AMMO_GRENADELAUNCHER_SMOKE', hash = 826266432, max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher_smoke') + name = _T('core', 'ammo_grenadelauncher_smoke') }, gxtName = 'WT_GL_SMOKE', gxtDescription = 'WTD_GL_SMOKE', @@ -5555,7 +5581,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_grenadelauncher_smoke') + name = _T('core', 'weapon_grenadelauncher_smoke') }, ['rpg'] = { id = 'WEAPON_RPG', @@ -5567,7 +5593,7 @@ Config.Weapons = { id = 'AMMO_RPG', hash = 1742569970, max = 20, - name = _(CR(), 'core', 'ammo_rpg') + name = _T('core', 'ammo_rpg') }, gxtName = 'WT_RPG', gxtDescription = 'WTD_RPG', @@ -5585,7 +5611,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_rpg') + name = _T('core', 'weapon_rpg') }, ['passenger_rocket'] = { id = 'WEAPON_PASSENGER_ROCKET', @@ -5597,7 +5623,7 @@ Config.Weapons = { id = 'AMMO_RPG', hash = 1742569970, max = 20, - name = _(CR(), 'core', 'ammo_rpg') + name = _T('core', 'ammo_rpg') }, gxtName = 'WT_INVALID', gxtDescription = 'WTD_INVALID', @@ -5615,7 +5641,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_passenger_rocket') + name = _T('core', 'weapon_passenger_rocket') }, ['airstrike_rocket'] = { id = 'WEAPON_AIRSTRIKE_ROCKET', @@ -5627,7 +5653,7 @@ Config.Weapons = { id = 'AMMO_RPG', hash = 1742569970, max = 20, - name = _(CR(), 'core', 'ammo_rpg') + name = _T('core', 'ammo_rpg') }, gxtName = 'WT_INVALID', gxtDescription = 'WTD_INVALID', @@ -5645,7 +5671,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_airstrike_rocket') + name = _T('core', 'weapon_airstrike_rocket') }, ['stinger'] = { id = 'WEAPON_STINGER', @@ -5657,7 +5683,7 @@ Config.Weapons = { id = 'AMMO_STINGER', hash = -1857257158, max = 20, - name = _(CR(), 'core', 'ammo_stinger') + name = _T('core', 'ammo_stinger') }, gxtName = 'WT_RPG', gxtDescription = 'WTD_RPG', @@ -5675,7 +5701,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_stinger') + name = _T('core', 'weapon_stinger') }, ['minigun'] = { id = 'WEAPON_MINIGUN', @@ -5687,7 +5713,7 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_MINIGUN', gxtDescription = 'WTD_MINIGUN', @@ -5705,7 +5731,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_minigun') + name = _T('core', 'weapon_minigun') }, ['grenade'] = { id = 'WEAPON_GRENADE', @@ -5717,14 +5743,14 @@ Config.Weapons = { id = 'AMMO_GRENADE', hash = 1003688881, max = 25, - name = _(CR(), 'core', 'ammo_grenade') + name = _T('core', 'ammo_grenade') }, gxtName = 'WT_GNADE', gxtDescription = 'WTD_GNADE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_grenade') + name = _T('core', 'weapon_grenade') }, ['stickybomb'] = { id = 'WEAPON_STICKYBOMB', @@ -5736,14 +5762,14 @@ Config.Weapons = { id = 'AMMO_STICKYBOMB', hash = 1411692055, max = 25, - name = _(CR(), 'core', 'ammo_stickybomb') + name = _T('core', 'ammo_stickybomb') }, gxtName = 'WT_GNADE_STK', gxtDescription = 'WTD_GNADE_STK', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_stickybomb') + name = _T('core', 'weapon_stickybomb') }, ['smokegrenade'] = { id = 'WEAPON_SMOKEGRENADE', @@ -5755,14 +5781,14 @@ Config.Weapons = { id = 'AMMO_SMOKEGRENADE', hash = -435287898, max = 25, - name = _(CR(), 'core', 'ammo_smokegrenade') + name = _T('core', 'ammo_smokegrenade') }, gxtName = 'WT_GNADE_SMK', gxtDescription = 'WTD_GNADE_SMK', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_smokegrenade') + name = _T('core', 'weapon_smokegrenade') }, ['bzgas'] = { id = 'WEAPON_BZGAS', @@ -5774,14 +5800,14 @@ Config.Weapons = { id = 'AMMO_BZGAS', hash = -1686864220, max = 25, - name = _(CR(), 'core', 'ammo_bzgas') + name = _T('core', 'ammo_bzgas') }, gxtName = 'WT_BZGAS', gxtDescription = 'WTD_BZGAS', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bzgas') + name = _T('core', 'weapon_bzgas') }, ['molotov'] = { id = 'WEAPON_MOLOTOV', @@ -5793,14 +5819,14 @@ Config.Weapons = { id = 'AMMO_MOLOTOV', hash = 1446246869, max = 25, - name = _(CR(), 'core', 'ammo_molotov') + name = _T('core', 'ammo_molotov') }, gxtName = 'WT_MOLOTOV', gxtDescription = 'WTD_MOLOTOV', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_molotov') + name = _T('core', 'weapon_molotov') }, ['fireextinguisher'] = { id = 'WEAPON_FIREEXTINGUISHER', @@ -5812,14 +5838,14 @@ Config.Weapons = { id = 'AMMO_FIREEXTINGUISHER', hash = 1359393852, max = 2000, - name = _(CR(), 'core', 'ammo_fireextinguisher') + name = _T('core', 'ammo_fireextinguisher') }, gxtName = 'WT_FIRE', gxtDescription = 'WTD_FIRE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_fireextinguisher') + name = _T('core', 'weapon_fireextinguisher') }, ['petrolcan'] = { id = 'WEAPON_PETROLCAN', @@ -5831,14 +5857,14 @@ Config.Weapons = { id = 'AMMO_PETROLCAN', hash = -899475295, max = 4500, - name = _(CR(), 'core', 'ammo_petrolcan') + name = _T('core', 'ammo_petrolcan') }, gxtName = 'WT_PETROL', gxtDescription = 'WTD_PETROL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_petrolcan') + name = _T('core', 'weapon_petrolcan') }, ['digiscanner'] = { id = 'WEAPON_DIGISCANNER', @@ -5852,7 +5878,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_digiscanner') + name = _T('core', 'weapon_digiscanner') }, ['nightvision'] = { id = 'GADGET_NIGHTVISION', @@ -5866,7 +5892,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'gadget_nightvision') + name = _T('core', 'gadget_nightvision') }, ['parachute'] = { id = 'GADGET_PARACHUTE', @@ -5880,7 +5906,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'gadget_parachute') + name = _T('core', 'gadget_parachute') }, ['object'] = { id = 'OBJECT', @@ -5905,7 +5931,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'object') + name = _T('core', 'object') }, ['briefcase'] = { id = 'WEAPON_BRIEFCASE', @@ -5919,7 +5945,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_briefcase') + name = _T('core', 'weapon_briefcase') }, ['briefcase_02'] = { id = 'WEAPON_BRIEFCASE_02', @@ -5933,7 +5959,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_briefcase_02') + name = _T('core', 'weapon_briefcase_02') }, ['ball'] = { id = 'WEAPON_BALL', @@ -5945,14 +5971,14 @@ Config.Weapons = { id = 'AMMO_BALL', hash = -6986138, max = 1, - name = _(CR(), 'core', 'ammo_ball') + name = _T('core', 'ammo_ball') }, gxtName = 'WT_BALL', gxtDescription = 'WTD_BALL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_ball') + name = _T('core', 'weapon_ball') }, ['flare'] = { id = 'WEAPON_FLARE', @@ -5964,14 +5990,14 @@ Config.Weapons = { id = 'AMMO_FLARE', hash = 1808594799, max = 25, - name = _(CR(), 'core', 'ammo_flare') + name = _T('core', 'ammo_flare') }, gxtName = 'WT_FLARE', gxtDescription = 'WTD_FLARE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_flare') + name = _T('core', 'weapon_flare') }, ['tank'] = { id = 'VEHICLE_WEAPON_TANK', @@ -5983,14 +6009,14 @@ Config.Weapons = { id = 'AMMO_TANK', hash = -1474608608, max = 100, - name = _(CR(), 'core', 'ammo_tank') + name = _T('core', 'ammo_tank') }, gxtName = 'WT_V_TANK', gxtDescription = 'WTD_V_TANK', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tank') + name = _T('core', 'vehicle_weapon_tank') }, ['space_rocket'] = { id = 'VEHICLE_WEAPON_SPACE_ROCKET', @@ -6002,14 +6028,14 @@ Config.Weapons = { id = 'AMMO_SPACE_ROCKET', hash = 527765612, max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') + name = _T('core', 'ammo_space_rocket') }, gxtName = 'WT_V_PLANEMSL', gxtDescription = 'WTD_V_PLANEMSL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_space_rocket') + name = _T('core', 'vehicle_weapon_space_rocket') }, ['plane_rocket'] = { id = 'VEHICLE_WEAPON_PLANE_ROCKET', @@ -6021,14 +6047,14 @@ Config.Weapons = { id = 'AMMO_PLANE_ROCKET', hash = 1198741878, max = 20, - name = _(CR(), 'core', 'ammo_plane_rocket') + name = _T('core', 'ammo_plane_rocket') }, gxtName = 'WT_V_PLANEMSL', gxtDescription = 'WTD_V_PLANEMSL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_plane_rocket') + name = _T('core', 'vehicle_weapon_plane_rocket') }, ['player_laser'] = { id = 'VEHICLE_WEAPON_PLAYER_LASER', @@ -6040,14 +6066,14 @@ Config.Weapons = { id = 'AMMO_PLAYER_LASER', hash = -165357558, max = 100, - name = _(CR(), 'core', 'ammo_player_laser') + name = _T('core', 'ammo_player_laser') }, gxtName = 'WT_V_PLRLSR', gxtDescription = 'WTD_V_PLRLSR', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_laser') + name = _T('core', 'vehicle_weapon_player_laser') }, ['player_bullet'] = { id = 'VEHICLE_WEAPON_PLAYER_BULLET', @@ -6059,14 +6085,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_bullet') + name = _T('core', 'vehicle_weapon_player_bullet') }, ['player_buzzard'] = { id = 'VEHICLE_WEAPON_PLAYER_BUZZARD', @@ -6078,14 +6104,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_buzzard') + name = _T('core', 'vehicle_weapon_player_buzzard') }, ['player_hunter'] = { id = 'VEHICLE_WEAPON_PLAYER_HUNTER', @@ -6097,14 +6123,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_hunter') + name = _T('core', 'vehicle_weapon_player_hunter') }, ['player_lazer'] = { id = 'VEHICLE_WEAPON_PLAYER_LAZER', @@ -6116,14 +6142,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_lazer') + name = _T('core', 'vehicle_weapon_player_lazer') }, ['enemy_laser'] = { id = 'VEHICLE_WEAPON_ENEMY_LASER', @@ -6135,14 +6161,14 @@ Config.Weapons = { id = 'AMMO_ENEMY_LASER', hash = -1372674932, max = 100, - name = _(CR(), 'core', 'ammo_enemy_laser') + name = _T('core', 'ammo_enemy_laser') }, gxtName = 'WT_A_ENMYLSR', gxtDescription = 'WTD_A_ENMYLSR', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_enemy_laser') + name = _T('core', 'vehicle_weapon_enemy_laser') }, ['searchlight'] = { id = 'VEHICLE_WEAPON_SEARCHLIGHT', @@ -6156,7 +6182,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_searchlight') + name = _T('core', 'vehicle_weapon_searchlight') }, ['radar'] = { id = 'VEHICLE_WEAPON_RADAR', @@ -6170,7 +6196,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_radar') + name = _T('core', 'vehicle_weapon_radar') }, ['rocket'] = { id = 'WEAPON_VEHICLE_ROCKET', @@ -6182,7 +6208,7 @@ Config.Weapons = { id = 'AMMO_RPG', hash = 1742569970, max = 20, - name = _(CR(), 'core', 'ammo_rpg') + name = _T('core', 'ammo_rpg') }, gxtName = 'WT_INVALID', gxtDescription = 'WTD_INVALID', @@ -6200,7 +6226,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_vehicle_rocket') + name = _T('core', 'weapon_vehicle_rocket') }, ['barbed_wire'] = { id = 'WEAPON_BARBED_WIRE', @@ -6214,7 +6240,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_barbed_wire') + name = _T('core', 'weapon_barbed_wire') }, ['drowning'] = { id = 'WEAPON_DROWNING', @@ -6228,7 +6254,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_drowning') + name = _T('core', 'weapon_drowning') }, ['drowning_in_vehicle'] = { id = 'WEAPON_DROWNING_IN_VEHICLE', @@ -6242,7 +6268,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_drowning_in_vehicle') + name = _T('core', 'weapon_drowning_in_vehicle') }, ['bleeding'] = { id = 'WEAPON_BLEEDING', @@ -6256,7 +6282,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bleeding') + name = _T('core', 'weapon_bleeding') }, ['electric_fence'] = { id = 'WEAPON_ELECTRIC_FENCE', @@ -6270,7 +6296,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_electric_fence') + name = _T('core', 'weapon_electric_fence') }, ['explosion'] = { id = 'WEAPON_EXPLOSION', @@ -6284,7 +6310,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_explosion') + name = _T('core', 'weapon_explosion') }, ['fall'] = { id = 'WEAPON_FALL', @@ -6298,7 +6324,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_fall') + name = _T('core', 'weapon_fall') }, ['exhaustion'] = { id = 'WEAPON_EXHAUSTION', @@ -6312,7 +6338,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_exhaustion') + name = _T('core', 'weapon_exhaustion') }, ['hit_by_water_cannon'] = { id = 'WEAPON_HIT_BY_WATER_CANNON', @@ -6326,7 +6352,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hit_by_water_cannon') + name = _T('core', 'weapon_hit_by_water_cannon') }, ['rammed_by_car'] = { id = 'WEAPON_RAMMED_BY_CAR', @@ -6340,7 +6366,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_rammed_by_car') + name = _T('core', 'weapon_rammed_by_car') }, ['run_over_by_car'] = { id = 'WEAPON_RUN_OVER_BY_CAR', @@ -6354,7 +6380,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_run_over_by_car') + name = _T('core', 'weapon_run_over_by_car') }, ['heli_crash'] = { id = 'WEAPON_HELI_CRASH', @@ -6368,7 +6394,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_heli_crash') + name = _T('core', 'weapon_heli_crash') }, ['rotors'] = { id = 'VEHICLE_WEAPON_ROTORS', @@ -6382,7 +6408,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rotors') + name = _T('core', 'vehicle_weapon_rotors') }, ['fire'] = { id = 'WEAPON_FIRE', @@ -6396,7 +6422,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_fire') + name = _T('core', 'weapon_fire') }, ['animal_retriever'] = { id = 'WEAPON_ANIMAL_RETRIEVER', @@ -6410,7 +6436,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_animal_retriever') + name = _T('core', 'weapon_animal_retriever') }, ['small_dog'] = { id = 'WEAPON_SMALL_DOG', @@ -6424,7 +6450,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_small_dog') + name = _T('core', 'weapon_small_dog') }, ['tiger_shark'] = { id = 'WEAPON_TIGER_SHARK', @@ -6438,7 +6464,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_tiger_shark') + name = _T('core', 'weapon_tiger_shark') }, ['hammerhead_shark'] = { id = 'WEAPON_HAMMERHEAD_SHARK', @@ -6452,7 +6478,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hammerhead_shark') + name = _T('core', 'weapon_hammerhead_shark') }, ['killer_whale'] = { id = 'WEAPON_KILLER_WHALE', @@ -6466,7 +6492,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_killer_whale') + name = _T('core', 'weapon_killer_whale') }, ['boar'] = { id = 'WEAPON_BOAR', @@ -6480,7 +6506,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_boar') + name = _T('core', 'weapon_boar') }, ['pig'] = { id = 'WEAPON_PIG', @@ -6494,7 +6520,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_pig') + name = _T('core', 'weapon_pig') }, ['coyote'] = { id = 'WEAPON_COYOTE', @@ -6508,7 +6534,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_coyote') + name = _T('core', 'weapon_coyote') }, ['deer'] = { id = 'WEAPON_DEER', @@ -6522,7 +6548,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_deer') + name = _T('core', 'weapon_deer') }, ['hen'] = { id = 'WEAPON_HEN', @@ -6536,7 +6562,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hen') + name = _T('core', 'weapon_hen') }, ['rabbit'] = { id = 'WEAPON_RABBIT', @@ -6550,7 +6576,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_rabbit') + name = _T('core', 'weapon_rabbit') }, ['cat'] = { id = 'WEAPON_CAT', @@ -6564,7 +6590,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_cat') + name = _T('core', 'weapon_cat') }, ['cow'] = { id = 'WEAPON_COW', @@ -6578,7 +6604,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_cow') + name = _T('core', 'weapon_cow') }, ['bird_crap'] = { id = 'WEAPON_BIRD_CRAP', @@ -6590,14 +6616,14 @@ Config.Weapons = { id = 'AMMO_BIRD_CRAP', hash = 1117307028, max = 25, - name = _(CR(), 'core', 'ammo_bird_crap') + name = _T('core', 'ammo_bird_crap') }, gxtName = 'WT_GNADE', gxtDescription = 'WTD_GNADE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bird_crap') + name = _T('core', 'weapon_bird_crap') }, ['snowball'] = { id = 'WEAPON_SNOWBALL', @@ -6609,14 +6635,14 @@ Config.Weapons = { id = 'AMMO_SNOWBALL', hash = -2112339603, max = 10, - name = _(CR(), 'core', 'ammo_snowball') + name = _T('core', 'ammo_snowball') }, gxtName = 'WT_SNWBALL', gxtDescription = 'WTD_SNWBALL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_snowball') + name = _T('core', 'weapon_snowball') }, ['snspistol'] = { id = 'WEAPON_SNSPISTOL', @@ -6628,7 +6654,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_SNSPISTOL', gxtDescription = 'WTD_SNSPISTOL', @@ -6656,7 +6682,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_snspistol') + name = _T('core', 'weapon_snspistol') }, ['specialcarbine'] = { id = 'WEAPON_SPECIALCARBINE', @@ -6668,7 +6694,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_SPCARBINE', gxtDescription = 'WTD_SPCARBINE', @@ -6736,7 +6762,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_specialcarbine') + name = _T('core', 'weapon_specialcarbine') }, ['stone_hatchet'] = { id = 'WEAPON_STONE_HATCHET', @@ -6750,7 +6776,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_stone_hatchet') + name = _T('core', 'weapon_stone_hatchet') }, ['switchblade'] = { id = 'WEAPON_SWITCHBLADE', @@ -6795,7 +6821,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_switchblade') + name = _T('core', 'weapon_switchblade') }, ['arena_machine_gun'] = { id = 'WEAPON_ARENA_MACHINE_GUN', @@ -6807,14 +6833,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_arena_machine_gun') + name = _T('core', 'weapon_arena_machine_gun') }, ['arena_homing_missile'] = { id = 'WEAPON_ARENA_HOMING_MISSILE', @@ -6826,14 +6852,14 @@ Config.Weapons = { id = 'AMMO_ARENA_HOMING_MISSILE', hash = 1669062227, max = 20, - name = _(CR(), 'core', 'ammo_arena_homing_missile') + name = _T('core', 'ammo_arena_homing_missile') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_arena_homing_missile') + name = _T('core', 'weapon_arena_homing_missile') }, ['assaultrifle_mk2'] = { id = 'WEAPON_ASSAULTRIFLE_MK2', @@ -6845,7 +6871,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_RIFLE_ASL2', gxtDescription = 'WTD_RIFLE_ASL2', @@ -7173,7 +7199,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_assaultrifle_mk2') + name = _T('core', 'weapon_assaultrifle_mk2') }, ['bullpuprifle_mk2'] = { id = 'WEAPON_BULLPUPRIFLE_MK2', @@ -7185,7 +7211,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_BULLRIFLE2', gxtDescription = 'WTD_BULLRIFLE2', @@ -7513,7 +7539,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_bullpuprifle_mk2') + name = _T('core', 'weapon_bullpuprifle_mk2') }, ['carbinerifle_mk2'] = { id = 'WEAPON_CARBINERIFLE_MK2', @@ -7525,7 +7551,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_RIFLE_CBN2', gxtDescription = 'WTD_RIFLE_CBN2', @@ -7853,7 +7879,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_carbinerifle_mk2') + name = _T('core', 'weapon_carbinerifle_mk2') }, ['combatmg_mk2'] = { id = 'WEAPON_COMBATMG_MK2', @@ -7865,7 +7891,7 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_MG_CBT2', gxtDescription = 'WTD_MG_CBT2', @@ -8173,7 +8199,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 30, - name = _(CR(), 'core', 'weapon_combatmg_mk2') + name = _T('core', 'weapon_combatmg_mk2') }, ['doubleaction'] = { id = 'WEAPON_DOUBLEACTION', @@ -8185,7 +8211,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_REV_DA', gxtDescription = 'WTD_REV_DA', @@ -8203,7 +8229,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_doubleaction') + name = _T('core', 'weapon_doubleaction') }, ['heavysniper_mk2'] = { id = 'WEAPON_HEAVYSNIPER_MK2', @@ -8215,7 +8241,7 @@ Config.Weapons = { id = 'AMMO_SNIPER', hash = 1285032059, max = 250, - name = _(CR(), 'core', 'ammo_sniper') + name = _T('core', 'ammo_sniper') }, gxtName = 'WT_SNIP_HVY2', gxtDescription = 'WTD_SNIP_HVY2', @@ -8483,7 +8509,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 26, - name = _(CR(), 'core', 'weapon_heavysniper_mk2') + name = _T('core', 'weapon_heavysniper_mk2') }, ['marksmanrifle_mk2'] = { id = 'WEAPON_MARKSMANRIFLE_MK2', @@ -8495,7 +8521,7 @@ Config.Weapons = { id = 'AMMO_SNIPER', hash = 1285032059, max = 250, - name = _(CR(), 'core', 'ammo_sniper') + name = _T('core', 'ammo_sniper') }, gxtName = 'WT_MKRIFLE2', gxtDescription = 'WTD_MKRIFLE2', @@ -8823,7 +8849,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_marksmanrifle_mk2') + name = _T('core', 'weapon_marksmanrifle_mk2') }, ['pistol_mk2'] = { id = 'WEAPON_PISTOL_MK2', @@ -8835,7 +8861,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_PIST2', gxtDescription = 'WTD_PIST2', @@ -9163,7 +9189,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_pistol_mk2') + name = _T('core', 'weapon_pistol_mk2') }, ['pumpshotgun_mk2'] = { id = 'WEAPON_PUMPSHOTGUN_MK2', @@ -9175,7 +9201,7 @@ Config.Weapons = { id = 'AMMO_SHOTGUN', hash = -1878508229, max = 250, - name = _(CR(), 'core', 'ammo_shotgun') + name = _T('core', 'ammo_shotgun') }, gxtName = 'WT_SG_PMP2', gxtDescription = 'WTD_SG_PMP2', @@ -9403,7 +9429,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 22, - name = _(CR(), 'core', 'weapon_pumpshotgun_mk2') + name = _T('core', 'weapon_pumpshotgun_mk2') }, ['revolver_mk2'] = { id = 'WEAPON_REVOLVER_MK2', @@ -9415,7 +9441,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_REVOLVER2', gxtDescription = 'WTD_REVOLVER2', @@ -9623,7 +9649,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 20, - name = _(CR(), 'core', 'weapon_revolver_mk2') + name = _T('core', 'weapon_revolver_mk2') }, ['smg_mk2'] = { id = 'WEAPON_SMG_MK2', @@ -9635,7 +9661,7 @@ Config.Weapons = { id = 'AMMO_SMG', hash = 1820140472, max = 250, - name = _(CR(), 'core', 'ammo_smg') + name = _T('core', 'ammo_smg') }, gxtName = 'WT_SMG2', gxtDescription = 'WTD_SMG2', @@ -9953,7 +9979,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 31, - name = _(CR(), 'core', 'weapon_smg_mk2') + name = _T('core', 'weapon_smg_mk2') }, ['snspistol_mk2'] = { id = 'WEAPON_SNSPISTOL_MK2', @@ -9965,7 +9991,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_SNSPISTOL2', gxtDescription = 'WTD_SNSPISTOL2', @@ -10293,7 +10319,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_snspistol_mk2') + name = _T('core', 'weapon_snspistol_mk2') }, ['raypistol'] = { id = 'WEAPON_RAYPISTOL', @@ -10305,7 +10331,7 @@ Config.Weapons = { id = 'AMMO_RAYPISTOL', hash = -1526023308, max = 20, - name = _(CR(), 'core', 'ammo_raypistol') + name = _T('core', 'ammo_raypistol') }, gxtName = 'WT_RAYPISTOL', gxtDescription = 'WTD_RAYPISTOL', @@ -10323,7 +10349,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_raypistol') + name = _T('core', 'weapon_raypistol') }, ['raycarbine'] = { id = 'WEAPON_RAYCARBINE', @@ -10335,14 +10361,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_RAYCARBINE', gxtDescription = 'WTD_RAYCARBINE', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_raycarbine') + name = _T('core', 'weapon_raycarbine') }, ['rayminigun'] = { id = 'WEAPON_RAYMINIGUN', @@ -10354,7 +10380,7 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_RAYMINIGUN', gxtDescription = 'WTD_RAYMINIGUN', @@ -10372,7 +10398,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_rayminigun') + name = _T('core', 'weapon_rayminigun') }, ['specialcarbine_mk2'] = { id = 'WEAPON_SPECIALCARBINE_MK2', @@ -10384,7 +10410,7 @@ Config.Weapons = { id = 'AMMO_RIFLE', hash = 218444191, max = 250, - name = _(CR(), 'core', 'ammo_rifle') + name = _T('core', 'ammo_rifle') }, gxtName = 'WT_SPCARBINE2', gxtDescription = 'WTD_SPCARBINE2', @@ -10712,7 +10738,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_specialcarbine_mk2') + name = _T('core', 'weapon_specialcarbine_mk2') }, ['turret_boxville'] = { id = 'VEHICLE_WEAPON_TURRET_BOXVILLE', @@ -10724,14 +10750,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TURRET', gxtDescription = 'WTD_V_TURRET', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_boxville') + name = _T('core', 'vehicle_weapon_turret_boxville') }, ['turret_insurgent'] = { id = 'VEHICLE_WEAPON_TURRET_INSURGENT', @@ -10743,14 +10769,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TURRET', gxtDescription = 'WTD_V_TURRET', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_insurgent') + name = _T('core', 'vehicle_weapon_turret_insurgent') }, ['turret_limo'] = { id = 'VEHICLE_WEAPON_TURRET_LIMO', @@ -10762,14 +10788,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TURRET', gxtDescription = 'WTD_V_TURRET', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_limo') + name = _T('core', 'vehicle_weapon_turret_limo') }, ['turret_technical'] = { id = 'VEHICLE_WEAPON_TURRET_TECHNICAL', @@ -10781,14 +10807,14 @@ Config.Weapons = { id = 'AMMO_MG', hash = 1788949567, max = 500, - name = _(CR(), 'core', 'ammo_mg') + name = _T('core', 'ammo_mg') }, gxtName = 'WT_V_TURRET', gxtDescription = 'WTD_V_TURRET', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_technical') + name = _T('core', 'vehicle_weapon_turret_technical') }, ['nose_turret_valkyrie'] = { id = 'VEHICLE_WEAPON_NOSE_TURRET_VALKYRIE', @@ -10800,14 +10826,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_nose_turret_valkyrie') + name = _T('core', 'vehicle_weapon_nose_turret_valkyrie') }, ['turret_valkyrie'] = { id = 'VEHICLE_WEAPON_TURRET_VALKYRIE', @@ -10819,14 +10845,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_TURRET', gxtDescription = 'WTD_V_TURRET', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_valkyrie') + name = _T('core', 'vehicle_weapon_turret_valkyrie') }, ['ruiner_bullet'] = { id = 'VEHICLE_WEAPON_RUINER_BULLET', @@ -10838,14 +10864,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_PLRBUL', gxtDescription = 'WTD_V_PLRBUL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_ruiner_bullet') + name = _T('core', 'vehicle_weapon_ruiner_bullet') }, ['ruiner_rocket'] = { id = 'VEHICLE_WEAPON_RUINER_ROCKET', @@ -10857,14 +10883,14 @@ Config.Weapons = { id = 'AMMO_SPACE_ROCKET', hash = 527765612, max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') + name = _T('core', 'ammo_space_rocket') }, gxtName = 'WT_V_PLANEMSL', gxtDescription = 'WTD_V_PLANEMSL', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_ruiner_rocket') + name = _T('core', 'vehicle_weapon_ruiner_rocket') }, ['player_savage'] = { id = 'VEHICLE_WEAPON_PLAYER_SAVAGE', @@ -10876,14 +10902,14 @@ Config.Weapons = { id = 'AMMO_MINIGUN', hash = -1614428030, max = 250, - name = _(CR(), 'core', 'ammo_minigun') + name = _T('core', 'ammo_minigun') }, gxtName = 'WT_V_LZRCAN', gxtDescription = 'WTD_V_LZRCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_savage') + name = _T('core', 'vehicle_weapon_player_savage') }, ['vintagepistol'] = { id = 'WEAPON_VINTAGEPISTOL', @@ -10895,7 +10921,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_VPISTOL', gxtDescription = 'WTD_VPISTOL', @@ -10933,7 +10959,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_vintagepistol') + name = _T('core', 'weapon_vintagepistol') }, ['wrench'] = { id = 'WEAPON_WRENCH', @@ -10947,7 +10973,7 @@ Config.Weapons = { components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_wrench') + name = _T('core', 'weapon_wrench') }, ['ceramicpistol'] = { id = 'WEAPON_CERAMICPISTOL', @@ -10959,7 +10985,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_CERPST', gxtDescription = 'WTD_CERPST', @@ -10997,7 +11023,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_ceramicpistol') + name = _T('core', 'weapon_ceramicpistol') }, ['hazardcan'] = { id = 'WEAPON_HAZARDCAN', @@ -11009,14 +11035,14 @@ Config.Weapons = { id = 'AMMO_HAZARDCAN', hash = 1618528319, max = 4500, - name = _(CR(), 'core', 'ammo_hazardcan') + name = _T('core', 'ammo_hazardcan') }, gxtName = 'WT_HAZARDCAN', gxtDescription = 'WTD_HAZARDCAN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hazardcan') + name = _T('core', 'weapon_hazardcan') }, ['navyrevolver'] = { id = 'WEAPON_NAVYREVOLVER', @@ -11028,7 +11054,7 @@ Config.Weapons = { id = 'AMMO_PISTOL', hash = 1950175060, max = 250, - name = _(CR(), 'core', 'ammo_pistol') + name = _T('core', 'ammo_pistol') }, gxtName = 'WT_REV_NV', gxtDescription = 'WTD_REV_NV', @@ -11046,7 +11072,7 @@ Config.Weapons = { }, hasAttachments = true, numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_navyrevolver') + name = _T('core', 'weapon_navyrevolver') }, ['tranquilizer'] = { id = 'WEAPON_TRANQUILIZER', @@ -11058,13 +11084,4752 @@ Config.Weapons = { id = 'AMMO_TRANQUILIZER', hash = 1964004553, max = 250, - name = _(CR(), 'core', 'ammo_tranquilizer') + name = _T('core', 'ammo_tranquilizer') }, gxtName = 'WT_STUN', gxtDescription = 'WTD_STUN', components = {}, hasAttachments = false, numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_tranquilizer') + name = _T('core', 'weapon_tranquilizer') } } + +--- Weapon components configuration +config.weapon_components = { + ['COMPONENT_AT_RAILCOVER_01'] = { + id = 'COMPONENT_AT_RAILCOVER_01', + hash = 1967214384, + model = 'w_at_railcover_01', + gxtName = 'WCT_RAIL', + gxtDescription = 'WCD_AT_RAIL', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_AR_AFGRIP'] = { + id = 'COMPONENT_AT_AR_AFGRIP', + hash = 202788691, + model = 'w_at_ar_afgrip', + gxtName = 'WCT_GRIP', + gxtDescription = 'WCD_GRIP', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_PI_FLSH'] = { + id = 'COMPONENT_AT_PI_FLSH', + hash = 899381934, + model = 'w_at_pi_flsh', + gxtName = 'WCT_FLASH', + gxtDescription = 'WCD_FLASH', + __type = 'CWeaponComponentFlashLightInfo', + type = 'flashlight' + }, + ['COMPONENT_AT_AR_FLSH'] = { + id = 'COMPONENT_AT_AR_FLSH', + hash = 2076495324, + model = 'w_at_ar_flsh', + gxtName = 'WCT_FLASH', + gxtDescription = 'WCD_FLASH', + __type = 'CWeaponComponentFlashLightInfo', + type = 'flashlight' + }, + ['POLICE_TORCH_FLASHLIGHT'] = { + id = 'POLICE_TORCH_FLASHLIGHT', + hash = -979169299, + model = '', + gxtName = 'WCT_FLASH', + gxtDescription = 'WCD_FLASH', + __type = 'CWeaponComponentFlashLightInfo', + type = 'flashlight' + }, + ['COMPONENT_AT_SCOPE_MACRO'] = { + id = 'COMPONENT_AT_SCOPE_MACRO', + hash = -1657815255, + model = 'w_at_scope_macro', + gxtName = 'WCT_SCOPE_MAC', + gxtDescription = 'WCD_SCOPE_MAC', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MACRO_02'] = { + id = 'COMPONENT_AT_SCOPE_MACRO_02', + hash = 1019656791, + model = 'w_at_scope_macro_2', + gxtName = 'WCT_SCOPE_MAC', + gxtDescription = 'WCD_SCOPE_MAC', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_SMALL'] = { + id = 'COMPONENT_AT_SCOPE_SMALL', + hash = -1439939148, + model = 'w_at_scope_small', + gxtName = 'WCT_SCOPE_SML', + gxtDescription = 'WCD_SCOPE_SML', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_SMALL_02'] = { + id = 'COMPONENT_AT_SCOPE_SMALL_02', + hash = 1006677997, + model = 'w_at_scope_small_2', + gxtName = 'WCT_SCOPE_SML', + gxtDescription = 'WCD_SCOPE_SML', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MEDIUM'] = { + id = 'COMPONENT_AT_SCOPE_MEDIUM', + hash = -1596416958, + model = 'w_at_scope_medium', + gxtName = 'WCT_SCOPE_MED', + gxtDescription = 'WCD_SCOPE_MED', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_LARGE'] = { + id = 'COMPONENT_AT_SCOPE_LARGE', + hash = -767279652, + model = 'w_at_scope_large', + gxtName = 'WCT_SCOPE_LRG', + gxtDescription = 'WCD_SCOPE_LRG', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MAX'] = { + id = 'COMPONENT_AT_SCOPE_MAX', + hash = -1135289737, + model = 'w_at_scope_max', + gxtName = 'WCT_SCOPE_MAX', + gxtDescription = 'WCD_SCOPE_MAX', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_PI_SUPP'] = { + id = 'COMPONENT_AT_PI_SUPP', + hash = -1023114086, + model = 'w_at_pi_supp', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_PI_SUPP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_PI_SUPP_02'] = { + id = 'COMPONENT_AT_PI_SUPP_02', + hash = 1709866683, + model = 'w_at_pi_supp_2', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_PI_SUPP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_AR_SUPP'] = { + id = 'COMPONENT_AT_AR_SUPP', + hash = -2089531990, + model = 'w_at_ar_supp', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_AR_SUPP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_AR_SUPP_02'] = { + id = 'COMPONENT_AT_AR_SUPP_02', + hash = -1489156508, + model = 'w_at_ar_supp_02', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_AR_SUPP2', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_SR_SUPP'] = { + id = 'COMPONENT_AT_SR_SUPP', + hash = -435637410, + model = 'w_at_sr_supp_2', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_SR_SUPP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_PISTOL_CLIP_01'] = { + id = 'COMPONENT_PISTOL_CLIP_01', + hash = -19858063, + model = 'w_pi_pistol_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_P_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_PISTOL_CLIP_02'] = { + id = 'COMPONENT_PISTOL_CLIP_02', + hash = -316253668, + model = 'w_pi_pistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_P_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 16 + }, + ['COMPONENT_COMBATPISTOL_CLIP_01'] = { + id = 'COMPONENT_COMBATPISTOL_CLIP_01', + hash = 119648377, + model = 'w_pi_combatpistol_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CP_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_COMBATPISTOL_CLIP_02'] = { + id = 'COMPONENT_COMBATPISTOL_CLIP_02', + hash = -696561875, + model = 'w_pi_combatpistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CP_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 16 + }, + ['COMPONENT_APPISTOL_CLIP_01'] = { + id = 'COMPONENT_APPISTOL_CLIP_01', + hash = 834974250, + model = 'w_pi_appistol_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_AP_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 18 + }, + ['COMPONENT_APPISTOL_CLIP_02'] = { + id = 'COMPONENT_APPISTOL_CLIP_02', + hash = 614078421, + model = 'w_pi_appistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_AP_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 36 + }, + ['COMPONENT_MICROSMG_CLIP_01'] = { + id = 'COMPONENT_MICROSMG_CLIP_01', + hash = -884429072, + model = 'w_sb_microsmg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCDMSMG_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 16 + }, + ['COMPONENT_MICROSMG_CLIP_02'] = { + id = 'COMPONENT_MICROSMG_CLIP_02', + hash = 283556395, + model = 'w_sb_microsmg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCDMSMG_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_SMG_CLIP_01'] = { + id = 'COMPONENT_SMG_CLIP_01', + hash = 643254679, + model = 'w_sb_smg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_SMG_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_SMG_CLIP_02'] = { + id = 'COMPONENT_SMG_CLIP_02', + hash = 889808635, + model = 'w_sb_smg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_SMG_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_ASSAULTRIFLE_CLIP_01'] = { + id = 'COMPONENT_ASSAULTRIFLE_CLIP_01', + hash = -1101075946, + model = 'w_ar_assaultrifle_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_AR_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_ASSAULTRIFLE_CLIP_02'] = { + id = 'COMPONENT_ASSAULTRIFLE_CLIP_02', + hash = -1323216997, + model = 'w_ar_assaultrifle_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_AR_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_CARBINERIFLE_CLIP_01'] = { + id = 'COMPONENT_CARBINERIFLE_CLIP_01', + hash = -1614924820, + model = 'w_ar_carbinerifle_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CR_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_CARBINERIFLE_CLIP_02'] = { + id = 'COMPONENT_CARBINERIFLE_CLIP_02', + hash = -1861183855, + model = 'w_ar_carbinerifle_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CR_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_ADVANCEDRIFLE_CLIP_01'] = { + id = 'COMPONENT_ADVANCEDRIFLE_CLIP_01', + hash = -91250417, + model = 'w_ar_advancedrifle_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_AR_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_ADVANCEDRIFLE_CLIP_02'] = { + id = 'COMPONENT_ADVANCEDRIFLE_CLIP_02', + hash = -1899902599, + model = 'w_ar_advancedrifle_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_AR_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_MG_CLIP_01'] = { + id = 'COMPONENT_MG_CLIP_01', + hash = -197857404, + model = 'w_mg_mg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_MG_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 54 + }, + ['COMPONENT_MG_CLIP_02'] = { + id = 'COMPONENT_MG_CLIP_02', + hash = -2112517305, + model = 'w_mg_mg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_MG_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_COMBATMG_CLIP_01'] = { + id = 'COMPONENT_COMBATMG_CLIP_01', + hash = -503336118, + model = 'w_mg_combatmg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCDCMG_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_COMBATMG_CLIP_02'] = { + id = 'COMPONENT_COMBATMG_CLIP_02', + hash = -691692330, + model = 'w_mg_combatmg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCDCMG_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 200 + }, + ['COMPONENT_PUMPSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_PUMPSHOTGUN_CLIP_01', + hash = -781249480, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_SAWNOFFSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_SAWNOFFSHOTGUN_CLIP_01', + hash = -942267867, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_ASSAULTSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_01', + hash = -1796727865, + model = 'w_sg_assaultshotgun_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_AS_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_ASSAULTSHOTGUN_CLIP_02'] = { + id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_02', + hash = -2034401422, + model = 'w_sg_assaultshotgun_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_AS_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 32 + }, + ['COMPONENT_SNIPERRIFLE_CLIP_01'] = { + id = 'COMPONENT_SNIPERRIFLE_CLIP_01', + hash = -1681506167, + model = 'w_sr_sniperrifle_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_SR_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 10 + }, + ['COMPONENT_HEAVYSNIPER_CLIP_01'] = { + id = 'COMPONENT_HEAVYSNIPER_CLIP_01', + hash = 1198478068, + model = 'w_sr_heavysniper_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_HS_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_MINIGUN_CLIP_01'] = { + id = 'COMPONENT_MINIGUN_CLIP_01', + hash = -924946682, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 15000 + }, + ['COMPONENT_RPG_CLIP_01'] = { + id = 'COMPONENT_RPG_CLIP_01', + hash = 1319465907, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_GRENADELAUNCHER_CLIP_01'] = { + id = 'COMPONENT_GRENADELAUNCHER_CLIP_01', + hash = 296639639, + model = 'w_lr_40mm', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 10 + }, + ['COMPONENT_PISTOL50_CLIP_01'] = { + id = 'COMPONENT_PISTOL50_CLIP_01', + hash = 580369945, + model = 'W_PI_PISTOL50_Mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_P50_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 9 + }, + ['COMPONENT_PISTOL50_CLIP_02'] = { + id = 'COMPONENT_PISTOL50_CLIP_02', + hash = -640439150, + model = 'W_PI_PISTOL50_Mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_P50_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_ASSAULTSMG_CLIP_01'] = { + id = 'COMPONENT_ASSAULTSMG_CLIP_01', + hash = -1928132688, + model = 'W_SB_ASSAULTSMG_Mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_ASSAULTSMG_CLIP_02'] = { + id = 'COMPONENT_ASSAULTSMG_CLIP_02', + hash = -1152981993, + model = 'W_SB_ASSAULTSMG_Mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_BULLPUPSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_BULLPUPSHOTGUN_CLIP_01', + hash = -917613298, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 14 + }, + ['COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE'] = { + id = 'COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE', + hash = 930927479, + model = 'W_AR_AdvancedRifle_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_APPISTOL_VARMOD_LUXE'] = { + id = 'COMPONENT_APPISTOL_VARMOD_LUXE', + hash = -1686714580, + model = 'W_PI_APPistol_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_ASSAULTRIFLE_VARMOD_LUXE'] = { + id = 'COMPONENT_ASSAULTRIFLE_VARMOD_LUXE', + hash = 1319990579, + model = 'W_AR_AssaultRifle_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_CARBINERIFLE_VARMOD_LUXE'] = { + id = 'COMPONENT_CARBINERIFLE_VARMOD_LUXE', + hash = -660892072, + model = 'W_AR_CarbineRifle_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_PISTOL_VARMOD_LUXE'] = { + id = 'COMPONENT_PISTOL_VARMOD_LUXE', + hash = -684126074, + model = 'W_PI_Pistol_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_PISTOL50_VARMOD_LUXE'] = { + id = 'COMPONENT_PISTOL50_VARMOD_LUXE', + hash = 2008591151, + model = 'W_PI_Pistol50_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_MICROSMG_VARMOD_LUXE'] = { + id = 'COMPONENT_MICROSMG_VARMOD_LUXE', + hash = 1215999497, + model = 'W_SB_MicroSMG_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE'] = { + id = 'COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE', + hash = -2052698631, + model = 'W_SG_Sawnoff_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SMG_VARMOD_LUXE'] = { + id = 'COMPONENT_SMG_VARMOD_LUXE', + hash = 663170192, + model = 'W_SB_SMG_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SNIPERRIFLE_VARMOD_LUXE'] = { + id = 'COMPONENT_SNIPERRIFLE_VARMOD_LUXE', + hash = 1077065191, + model = 'W_SR_SniperRifle_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER', + hash = 663517359, + model = 'w_sb_assaultsmg_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_COMBATMG_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_COMBATMG_VARMOD_LOWRIDER', + hash = -1828795171, + model = 'w_mg_combatmg_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER', + hash = -966439566, + model = 'w_pi_combatpistol_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_MG_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_MG_VARMOD_LOWRIDER', + hash = -690308418, + model = 'w_mg_mg_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER', + hash = -1562927653, + model = 'w_sg_pumpshotgun_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_ASSAULTRIFLE_CLIP_03'] = { + id = 'COMPONENT_ASSAULTRIFLE_CLIP_03', + hash = -604986051, + model = 'w_ar_assaultrifle_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_CARBINERIFLE_CLIP_03'] = { + id = 'COMPONENT_CARBINERIFLE_CLIP_03', + hash = -1167922891, + model = 'w_ar_carbinerifle_boxmag', + gxtName = 'WCT_CLIP_BOX', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_COMBATPDW_CLIP_03'] = { + id = 'COMPONENT_COMBATPDW_CLIP_03', + hash = 1857603803, + model = 'w_sb_pdw_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_COMPACTRIFLE_CLIP_03'] = { + id = 'COMPONENT_COMPACTRIFLE_CLIP_03', + hash = -972590066, + model = 'w_ar_assaultrifle_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_HEAVYSHOTGUN_CLIP_03'] = { + id = 'COMPONENT_HEAVYSHOTGUN_CLIP_03', + hash = -2000168365, + model = 'w_sg_heavyshotgun_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_MACHINEPISTOL_CLIP_03'] = { + id = 'COMPONENT_MACHINEPISTOL_CLIP_03', + hash = -1444295948, + model = 'w_sb_compactsmg_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_SMG_CLIP_03'] = { + id = 'COMPONENT_SMG_CLIP_03', + hash = 2043113590, + model = 'w_sb_smg_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_SPECIALCARBINE_CLIP_03'] = { + id = 'COMPONENT_SPECIALCARBINE_CLIP_03', + hash = 1801039530, + model = 'w_ar_specialcarbine_boxmag', + gxtName = 'WCT_CLIP_DRM', + gxtDescription = 'WCD_CLIP3', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_GUNRUN_MK2_UPGRADE'] = { + id = 'COMPONENT_GUNRUN_MK2_UPGRADE', + hash = 1623028892, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HOMINGLAUNCHER_CLIP_01'] = { + id = 'COMPONENT_HOMINGLAUNCHER_CLIP_01', + hash = -132960961, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO', + hash = -1371515465, + model = 'w_ar_bullpupriflemk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_02'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_02', + hash = -1190793877, + model = 'w_ar_bullpupriflemk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_03'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_03', + hash = -1497085720, + model = 'w_ar_bullpupriflemk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_04'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_04', + hash = -1803148180, + model = 'w_ar_bullpupriflemk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_05'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_05', + hash = -1975971886, + model = 'w_ar_bullpupriflemk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_06'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_06', + hash = 36929477, + model = 'w_ar_bullpupriflemk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_07'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_07', + hash = -268444834, + model = 'w_ar_bullpupriflemk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_08'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_08', + hash = -574769446, + model = 'w_ar_bullpupriflemk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_09'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_09', + hash = -882699739, + model = 'w_ar_bullpupriflemk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_10'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_10', + hash = -1468181474, + model = 'w_ar_bullpupriflemk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01', + hash = -974541230, + model = 'w_ar_bullpupriflemk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_01'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_01', + hash = 25766362, + model = 'w_ar_bullpupriflemk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_02'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_02', + hash = -273676760, + model = 'w_ar_bullpupriflemk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING', + hash = -89655827, + model = 'W_AR_BullpupRifleMK2_Mag_AP', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ', + hash = 1130501904, + model = 'W_AR_BullpupRifleMK2_Mag_FMJ', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY', + hash = -1449330342, + model = 'W_AR_BullpupRifleMK2_Mag_INC', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER', + hash = -2111807319, + model = 'W_AR_BullpupRifleMK2_Mag_TR', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_AT_BP_BARREL_01'] = { + id = 'COMPONENT_AT_BP_BARREL_01', + hash = 1704640795, + model = 'W_AR_BP_MK2_Barrel1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_BP_BARREL_02'] = { + id = 'COMPONENT_AT_BP_BARREL_02', + hash = 1005743559, + model = 'W_AR_BP_MK2_Barrel2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_DOUBLEACTION_CLIP_01'] = { + id = 'COMPONENT_DOUBLEACTION_CLIP_01', + hash = 1328622785, + model = 'w_pi_wep1_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_REV_DA_CLIP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO', + hash = -1869284448, + model = 'w_sr_marksmanriflemk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_02'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_02', + hash = 1931539634, + model = 'w_sr_marksmanriflemk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_03'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_03', + hash = 1624199183, + model = 'w_sr_marksmanriflemk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_04'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_04', + hash = -26834113, + model = 'w_sr_marksmanriflemk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_05'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_05', + hash = -210406055, + model = 'w_sr_marksmanriflemk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_06'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_06', + hash = 423313640, + model = 'w_sr_marksmanriflemk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_07'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_07', + hash = 276639596, + model = 'w_sr_marksmanriflemk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_08'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_08', + hash = -991356863, + model = 'w_sr_marksmanriflemk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_09'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_09', + hash = -1682848301, + model = 'w_sr_marksmanriflemk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_10'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_10', + hash = 996213771, + model = 'w_sr_marksmanriflemk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01', + hash = -1214048550, + model = 'w_sr_marksmanriflemk2_camo_ind', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_01'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_01', + hash = -1797182002, + model = 'w_sr_marksmanriflemk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_02'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_02', + hash = -422587990, + model = 'w_sr_marksmanriflemk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 16 + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING', + hash = -193998727, + model = 'w_sr_marksmanriflemk2_mag_ap', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 5 + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ', + hash = -515203373, + model = 'w_sr_marksmanriflemk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 5 + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY', + hash = 1842849902, + model = 'w_sr_marksmanriflemk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 5 + }, + ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER', + hash = -679861550, + model = 'w_sr_marksmanriflemk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_AT_MRFL_BARREL_01'] = { + id = 'COMPONENT_AT_MRFL_BARREL_01', + hash = 941317513, + model = 'w_sr_mr_mk2_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_MRFL_BARREL_02'] = { + id = 'COMPONENT_AT_MRFL_BARREL_02', + hash = 1748450780, + model = 'w_sr_mr_mk2_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO', + hash = -474112444, + model = 'w_sg_pumpshotgunmk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_02'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_02', + hash = 387223451, + model = 'w_sg_pumpshotgunmk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_03'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_03', + hash = 617753366, + model = 'w_sg_pumpshotgunmk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_04'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_04', + hash = -222378256, + model = 'w_sg_pumpshotgunmk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_05'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_05', + hash = 8741501, + model = 'w_sg_pumpshotgunmk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_06'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_06', + hash = -601286203, + model = 'w_sg_pumpshotgunmk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_07'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_07', + hash = -511433605, + model = 'w_sg_pumpshotgunmk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_08'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_08', + hash = -655387818, + model = 'w_sg_pumpshotgunmk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_09'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_09', + hash = -282476598, + model = 'w_sg_pumpshotgunmk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_10'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_10', + hash = 1739501925, + model = 'w_sg_pumpshotgunmk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01', + hash = 1178671645, + model = 'w_sg_pumpshotgunmk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_01'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_01', + hash = -845938367, + model = 'w_sg_pumpshotgunmk2_mag1', + gxtName = 'WCT_SHELL', + gxtDescription = 'WCD_SHELL', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING', + hash = 1315288101, + model = 'w_sg_pumpshotgunmk2_mag_ap', + gxtName = 'WCT_SHELL_AP', + gxtDescription = 'WCD_SHELL_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE', + hash = 1004815965, + model = 'w_sg_pumpshotgunmk2_mag_exp', + gxtName = 'WCT_SHELL_EX', + gxtDescription = 'WCD_SHELL_EX', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT', + hash = -380098265, + model = 'w_sg_pumpshotgunmk2_mag_hp', + gxtName = 'WCT_SHELL_HP', + gxtDescription = 'WCD_SHELL_HP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY', + hash = -1618338827, + model = 'w_sg_pumpshotgunmk2_mag_inc', + gxtName = 'WCT_SHELL_INC', + gxtDescription = 'WCD_SHELL_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_REVOLVER_MK2_CAMO'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO', + hash = -1069552225, + model = 'w_pi_revolvermk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_02'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_02', + hash = 11918884, + model = 'w_pi_revolvermk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_03'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_03', + hash = 176157112, + model = 'w_pi_revolvermk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_04'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_04', + hash = -220052855, + model = 'w_pi_revolvermk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_05'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_05', + hash = 288456487, + model = 'w_pi_revolvermk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_06'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_06', + hash = 398658626, + model = 'w_pi_revolvermk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_07'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_07', + hash = 628697006, + model = 'w_pi_revolvermk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_08'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_08', + hash = 925911836, + model = 'w_pi_revolvermk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_09'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_09', + hash = 1222307441, + model = 'w_pi_revolvermk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_10'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_10', + hash = 552442715, + model = 'w_pi_revolvermk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_REVOLVER_MK2_CAMO_IND_01', + hash = -648943513, + model = 'w_pi_revolvermk2_camo_ind', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_REVOLVER_MK2_CLIP_01'] = { + id = 'COMPONENT_REVOLVER_MK2_CLIP_01', + hash = -1172055874, + model = 'w_pi_revolvermk2_mag1', + gxtName = 'WCT_CLIP1_RV', + gxtDescription = 'WCD_CLIP1_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_REVOLVER_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_REVOLVER_MK2_CLIP_FMJ', + hash = 231258687, + model = 'w_pi_revolvermk2_mag5', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT'] = { + id = 'COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT', + hash = 284438159, + model = 'w_pi_revolvermk2_mag2', + gxtName = 'WCT_CLIP_HP', + gxtDescription = 'WCD_CLIP_HP_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY', + hash = 15712037, + model = 'w_pi_revolvermk2_mag3', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_REVOLVER_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_REVOLVER_MK2_CLIP_TRACER', + hash = -958864266, + model = 'w_pi_revolvermk2_mag4', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO', + hash = 259780317, + model = 'W_PI_SNS_PistolMk2_Camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE', + hash = -403805974, + model = 'W_PI_SNS_PistolMk2_SL_Camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_02'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02', + hash = -1973342474, + model = 'W_PI_SNS_PistolMk2_Camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE', + hash = 691432737, + model = 'W_PI_SNS_PistolMk2_SL_Camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_03'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03', + hash = 1996130345, + model = 'W_PI_SNS_PistolMk2_Camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE', + hash = 987648331, + model = 'W_PI_SNS_PistolMk2_SL_Camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_04'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04', + hash = -1455657812, + model = 'W_PI_SNS_PistolMk2_Camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE', + hash = -431680535, + model = 'W_PI_SNS_PistolMk2_SL_Camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_05'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05', + hash = -1668263084, + model = 'W_PI_SNS_PistolMk2_Camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE', + hash = -847582310, + model = 'W_PI_SNS_PistolMk2_SL_Camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_06'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06', + hash = 1308243489, + model = 'W_PI_SNS_PistolMk2_Camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE', + hash = -92592218, + model = 'W_PI_SNS_PistolMk2_SL_Camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_07'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07', + hash = 1122574335, + model = 'W_PI_SNS_PistolMk2_Camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE', + hash = -494548326, + model = 'W_PI_SNS_PistolMk2_SL_Camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_08'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08', + hash = 1420313469, + model = 'W_PI_SNS_PistolMk2_Camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE', + hash = 730876697, + model = 'W_PI_SNS_PistolMk2_SL_Camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_09'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09', + hash = 109848390, + model = 'W_PI_SNS_PistolMk2_Camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE', + hash = 583159708, + model = 'W_PI_SNS_PistolMk2_SL_Camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_10'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10', + hash = 593945703, + model = 'W_PI_SNS_PistolMk2_Camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE', + hash = -1928503603, + model = 'W_PI_SNS_PistolMk2_SL_Camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01', + hash = 1142457062, + model = 'w_pi_sns_pistolmk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE', + hash = 520557834, + model = 'W_PI_SNS_PistolMK2_SL_Camo_Ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SNSPISTOL_MK2_CLIP_01'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CLIP_01', + hash = 21392614, + model = 'w_pi_sns_pistolmk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SNSPISTOL_MK2_CLIP_02'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CLIP_02', + hash = -829683854, + model = 'w_pi_sns_pistolmk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_SNSPISTOL_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CLIP_FMJ', + hash = -1055790298, + model = 'W_PI_SNS_PistolMK2_Mag_FMJ', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT', + hash = -1928301566, + model = 'W_PI_SNS_PistolMK2_Mag_HP', + gxtName = 'WCT_CLIP_HP', + gxtDescription = 'WCD_CLIP_HP_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY', + hash = -424845447, + model = 'W_PI_SNS_PistolMK2_Mag_INC', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC_NS', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SNSPISTOL_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_SNSPISTOL_MK2_CLIP_TRACER', + hash = -1876057490, + model = 'W_PI_SNS_PistolMK2_Mag_TR', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR_RV', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO', + hash = -737430213, + model = 'w_ar_specialcarbinemk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_02'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_02', + hash = 1125852043, + model = 'w_ar_specialcarbinemk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_03'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_03', + hash = 886015732, + model = 'w_ar_specialcarbinemk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_04'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_04', + hash = -1262287139, + model = 'w_ar_specialcarbinemk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_05'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_05', + hash = -295208411, + model = 'w_ar_specialcarbinemk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_06'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_06', + hash = -544154504, + model = 'w_ar_specialcarbinemk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_07'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_07', + hash = 172765678, + model = 'w_ar_specialcarbinemk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_08'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_08', + hash = -1982877449, + model = 'w_ar_specialcarbinemk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_09'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_09', + hash = 2072122460, + model = 'w_ar_specialcarbinemk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_10'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_10', + hash = -1986220171, + model = 'w_ar_specialcarbinemk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01', + hash = 1377355801, + model = 'w_ar_specialcarbinemk2_camo_ind', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SPECIALCARBINE_MK2_CLIP_01'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_01', + hash = 382112385, + model = 'w_ar_specialcarbinemk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_SPECIALCARBINE_MK2_CLIP_02'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_02', + hash = -568352468, + model = 'w_ar_specialcarbinemk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING', + hash = 1362433589, + model = 'w_ar_specialcarbinemk2_mag_ap', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ', + hash = 1346235024, + model = 'w_ar_specialcarbinemk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY', + hash = -570355066, + model = 'w_ar_specialcarbinemk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER', + hash = -2023373174, + model = 'w_ar_specialcarbinemk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_AT_SC_BARREL_01'] = { + id = 'COMPONENT_AT_SC_BARREL_01', + hash = -415870039, + model = 'w_ar_sc_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_SC_BARREL_02'] = { + id = 'COMPONENT_AT_SC_BARREL_02', + hash = -109086661, + model = 'w_ar_sc_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_PI_COMP_02'] = { + id = 'COMPONENT_AT_PI_COMP_02', + hash = -1434287169, + model = 'w_at_pi_comp_2', + gxtName = 'WCT_COMP', + gxtDescription = 'WCD_COMP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_PI_COMP_03'] = { + id = 'COMPONENT_AT_PI_COMP_03', + hash = 654802123, + model = 'w_at_pi_comp_3', + gxtName = 'WCT_COMP', + gxtDescription = 'WCD_COMP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_PI_RAIL_02'] = { + id = 'COMPONENT_AT_PI_RAIL_02', + hash = 1205768792, + model = 'w_at_pi_rail_2', + gxtName = 'WCT_SCOPE_PI', + gxtDescription = 'WCD_SCOPE_PI', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_PI_FLSH_03'] = { + id = 'COMPONENT_AT_PI_FLSH_03', + hash = 1246324211, + model = 'w_at_pi_snsmk2_flsh_1', + gxtName = 'WCT_FLASH', + gxtDescription = 'WCD_FLASH', + __type = 'CWeaponComponentFlashLightInfo', + type = 'flashlight' + }, + ['COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2'] = { + id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2', + hash = 1528590652, + model = 'w_at_scope_large', + gxtName = 'WCT_SCOPE_LRG2', + gxtDescription = 'WCD_SCOPE_LRF', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_RAYPISTOL_VARMOD_XMAS18'] = { + id = 'COMPONENT_RAYPISTOL_VARMOD_XMAS18', + hash = -673450233, + model = 'w_pi_raygun_ev', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_01'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_01', + hash = -2045758401, + model = 'w_ar_assaultriflemk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_02'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_02', + hash = -785724817, + model = 'w_ar_assaultriflemk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING', + hash = -1478681000, + model = 'w_ar_assaultriflemk2_mag_ap', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ', + hash = 1675665560, + model = 'w_ar_assaultriflemk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY', + hash = -76490669, + model = 'w_ar_assaultriflemk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER', + hash = -282298175, + model = 'w_ar_assaultriflemk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_CARBINERIFLE_MK2_CLIP_01'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_01', + hash = 1283078430, + model = 'w_ar_carbineriflemk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_CARBINERIFLE_MK2_CLIP_02'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_02', + hash = 1574296533, + model = 'w_ar_carbineriflemk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING', + hash = 626875735, + model = 'w_ar_carbineriflemk2_mag_ap', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ', + hash = 1141059345, + model = 'w_ar_carbineriflemk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY', + hash = 1025884839, + model = 'w_ar_carbineriflemk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER', + hash = 391640422, + model = 'w_ar_carbineriflemk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_COMBATMG_MK2_CLIP_01'] = { + id = 'COMPONENT_COMBATMG_MK2_CLIP_01', + hash = 1227564412, + model = 'w_mg_combatmgmk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_COMBATMG_MK2_CLIP_02'] = { + id = 'COMPONENT_COMBATMG_MK2_CLIP_02', + hash = 400507625, + model = 'w_mg_combatmgmk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 200 + }, + ['COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING', + hash = 696788003, + model = 'w_mg_combatmgmk2_mag_ap', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 80 + }, + ['COMPONENT_COMBATMG_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_COMBATMG_MK2_CLIP_FMJ', + hash = 1475288264, + model = 'w_mg_combatmgmk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 80 + }, + ['COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY', + hash = -1020871238, + model = 'w_mg_combatmgmk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 80 + }, + ['COMPONENT_COMBATMG_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_COMBATMG_MK2_CLIP_TRACER', + hash = -161179835, + model = 'w_mg_combatmgmk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 100 + }, + ['COMPONENT_HEAVYSNIPER_MK2_CLIP_01'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_01', + hash = -98690520, + model = 'w_sr_heavysnipermk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_HEAVYSNIPER_MK2_CLIP_02'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_02', + hash = 752418717, + model = 'w_sr_heavysnipermk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING', + hash = -130689324, + model = 'w_sr_heavysnipermk2_mag_ap', + gxtName = 'WCT_CLIP_AP', + gxtDescription = 'WCD_CLIP_AP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 4 + }, + ['COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE', + hash = -1981031769, + model = 'w_sr_heavysnipermk2_mag_ap2', + gxtName = 'WCT_CLIP_EX', + gxtDescription = 'WCD_CLIP_EX', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 4 + }, + ['COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ', + hash = 1005144310, + model = 'w_sr_heavysnipermk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 4 + }, + ['COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY', + hash = 247526935, + model = 'w_sr_heavysnipermk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 4 + }, + ['COMPONENT_PISTOL_MK2_CLIP_01'] = { + id = 'COMPONENT_PISTOL_MK2_CLIP_01', + hash = -1795936926, + model = 'w_pi_pistolmk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_PISTOL_MK2_CLIP_02'] = { + id = 'COMPONENT_PISTOL_MK2_CLIP_02', + hash = 1591132456, + model = 'w_pi_pistolmk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 16 + }, + ['COMPONENT_PISTOL_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_PISTOL_MK2_CLIP_FMJ', + hash = 1329061674, + model = 'w_pi_pistolmk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT'] = { + id = 'COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT', + hash = -2046910199, + model = 'w_pi_pistolmk2_mag_hp', + gxtName = 'WCT_CLIP_HP', + gxtDescription = 'WCD_CLIP_HP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PISTOL_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_PISTOL_MK2_CLIP_INCENDIARY', + hash = 733837882, + model = 'w_pi_pistolmk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_PISTOL_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_PISTOL_MK2_CLIP_TRACER', + hash = 634039983, + model = 'w_pi_pistolmk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_SMG_MK2_CLIP_01'] = { + id = 'COMPONENT_SMG_MK2_CLIP_01', + hash = 1277460590, + model = 'w_sb_smgmk2_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_SMG_MK2_CLIP_02'] = { + id = 'COMPONENT_SMG_MK2_CLIP_02', + hash = -1182573778, + model = 'w_sb_smgmk2_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_SMG_MK2_CLIP_FMJ'] = { + id = 'COMPONENT_SMG_MK2_CLIP_FMJ', + hash = 190476639, + model = 'w_sb_smgmk2_mag_fmj', + gxtName = 'WCT_CLIP_FMJ', + gxtDescription = 'WCD_CLIP_FMJ', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT'] = { + id = 'COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT', + hash = 974903034, + model = 'w_sb_smgmk2_mag_hp', + gxtName = 'WCT_CLIP_HP', + gxtDescription = 'WCD_CLIP_HP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_SMG_MK2_CLIP_INCENDIARY'] = { + id = 'COMPONENT_SMG_MK2_CLIP_INCENDIARY', + hash = -644734235, + model = 'w_sb_smgmk2_mag_inc', + gxtName = 'WCT_CLIP_INC', + gxtDescription = 'WCD_CLIP_INC', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_SMG_MK2_CLIP_TRACER'] = { + id = 'COMPONENT_SMG_MK2_CLIP_TRACER', + hash = 2146055916, + model = 'w_sb_smgmk2_mag_tr', + gxtName = 'WCT_CLIP_TR', + gxtDescription = 'WCD_CLIP_TR', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_AT_AR_BARREL_01'] = { + id = 'COMPONENT_AT_AR_BARREL_01', + hash = 1134861606, + model = 'w_at_ar_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_AR_BARREL_02'] = { + id = 'COMPONENT_AT_AR_BARREL_02', + hash = 1447477866, + model = 'w_at_ar_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_CR_BARREL_01'] = { + id = 'COMPONENT_AT_CR_BARREL_01', + hash = -2093598721, + model = 'w_at_cr_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_CR_BARREL_02'] = { + id = 'COMPONENT_AT_CR_BARREL_02', + hash = -1958983669, + model = 'w_at_cr_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_MG_BARREL_01'] = { + id = 'COMPONENT_AT_MG_BARREL_01', + hash = -1018236364, + model = 'w_at_mg_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_MG_BARREL_02'] = { + id = 'COMPONENT_AT_MG_BARREL_02', + hash = -1243457701, + model = 'w_at_mg_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_SB_BARREL_01'] = { + id = 'COMPONENT_AT_SB_BARREL_01', + hash = -653246751, + model = 'w_at_sb_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_SB_BARREL_02'] = { + id = 'COMPONENT_AT_SB_BARREL_02', + hash = -1520117877, + model = 'w_at_sb_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_SR_BARREL_01'] = { + id = 'COMPONENT_AT_SR_BARREL_01', + hash = -1869205321, + model = 'w_at_sr_barrel_1', + gxtName = 'WCT_BARR', + gxtDescription = 'WCD_BARR', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_SR_BARREL_02'] = { + id = 'COMPONENT_AT_SR_BARREL_02', + hash = 277524638, + model = 'w_at_sr_barrel_2', + gxtName = 'WCT_BARR2', + gxtDescription = 'WCD_BARR2', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO', + hash = -1860492113, + model = 'w_at_armk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_02'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_02', + hash = 937772107, + model = 'w_at_armk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_03'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_03', + hash = 1401650071, + model = 'w_at_armk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_04'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_04', + hash = 628662130, + model = 'w_at_armk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_05'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_05', + hash = -985047251, + model = 'w_at_armk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_06'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_06', + hash = -812944463, + model = 'w_at_armk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_07'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_07', + hash = -1447352303, + model = 'w_at_armk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_08'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_08', + hash = -60338860, + model = 'w_at_armk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_09'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_09', + hash = 2088750491, + model = 'w_at_armk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_10'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_10', + hash = -1513913454, + model = 'w_at_armk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01', + hash = -1179558480, + model = 'w_at_armk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO', + hash = 1272803094, + model = 'w_ar_carbineriflemk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_02'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_02', + hash = 1080719624, + model = 'w_ar_carbineriflemk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_03'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_03', + hash = 792221348, + model = 'w_ar_carbineriflemk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_04'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_04', + hash = -452181427, + model = 'w_ar_carbineriflemk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_05'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_05', + hash = -746774737, + model = 'w_ar_carbineriflemk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_06'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_06', + hash = -2044296061, + model = 'w_ar_carbineriflemk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_07'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_07', + hash = -199171978, + model = 'w_ar_carbineriflemk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_08'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_08', + hash = -1428075016, + model = 'w_ar_carbineriflemk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_09'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_09', + hash = -1735153315, + model = 'w_ar_carbineriflemk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_10'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_10', + hash = 1796459838, + model = 'w_ar_carbineriflemk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01', + hash = -631911105, + model = 'w_ar_carbineriflemk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO', + hash = 1249283253, + model = 'w_mg_combatmgmk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_02'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_02', + hash = -857707587, + model = 'w_mg_combatmgmk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_03'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_03', + hash = -1097543898, + model = 'w_mg_combatmgmk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_04'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_04', + hash = 1980349969, + model = 'w_mg_combatmgmk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_05'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_05', + hash = 1219453777, + model = 'w_mg_combatmgmk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_06'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_06', + hash = -1853459190, + model = 'w_mg_combatmgmk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_07'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_07', + hash = -2074781016, + model = 'w_mg_combatmgmk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_08'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_08', + hash = 457967755, + model = 'w_mg_combatmgmk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_09'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_09', + hash = 235171324, + model = 'w_mg_combatmgmk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_10'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_10', + hash = 42685294, + model = 'w_mg_combatmgmk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_COMBATMG_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_COMBATMG_MK2_CAMO_IND_01', + hash = -687617715, + model = 'w_mg_combatmgmk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO'] = { + id = 'COMPONENT_SMG_MK2_CAMO', + hash = -996700057, + model = 'w_at_smgmk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_02'] = { + id = 'COMPONENT_SMG_MK2_CAMO_02', + hash = 940943685, + model = 'w_at_smgmk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_03'] = { + id = 'COMPONENT_SMG_MK2_CAMO_03', + hash = 1263226800, + model = 'w_at_smgmk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_04'] = { + id = 'COMPONENT_SMG_MK2_CAMO_04', + hash = -328035840, + model = 'w_at_smgmk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_05'] = { + id = 'COMPONENT_SMG_MK2_CAMO_05', + hash = 1224100642, + model = 'w_at_smgmk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_06'] = { + id = 'COMPONENT_SMG_MK2_CAMO_06', + hash = 899228776, + model = 'w_at_smgmk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_07'] = { + id = 'COMPONENT_SMG_MK2_CAMO_07', + hash = 616006309, + model = 'w_at_smgmk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_08'] = { + id = 'COMPONENT_SMG_MK2_CAMO_08', + hash = -1561952511, + model = 'w_at_smgmk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_09'] = { + id = 'COMPONENT_SMG_MK2_CAMO_09', + hash = 572063080, + model = 'w_at_smgmk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_10'] = { + id = 'COMPONENT_SMG_MK2_CAMO_10', + hash = 1170588613, + model = 'w_at_smgmk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_SMG_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_SMG_MK2_CAMO_IND_01', + hash = 966612367, + model = 'w_at_smgmk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_SLIDE', + hash = -1258515792, + model = 'W_PI_PistolMK2_Slide_Camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO', + hash = 1550611612, + model = 'w_pi_pistolmk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_02_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_02_SLIDE', + hash = 438243936, + model = 'W_PI_PistolMK2_Slide_Camo2', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_02'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_02', + hash = 368550800, + model = 'w_pi_pistolmk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_03_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_03_SLIDE', + hash = -455079056, + model = 'W_PI_PistolMK2_Slide_Camo3', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_03'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_03', + hash = -1769069349, + model = 'w_pi_pistolmk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_04_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_04_SLIDE', + hash = 740920107, + model = 'W_PI_PistolMK2_Slide_Camo4', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_04'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_04', + hash = 24902297, + model = 'w_pi_pistolmk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_05_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_05_SLIDE', + hash = -541616347, + model = 'W_PI_PistolMK2_Slide_Camo5', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_05'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_05', + hash = -228041614, + model = 'w_pi_pistolmk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_06_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_06_SLIDE', + hash = 1809261196, + model = 'W_PI_PistolMK2_Slide_Camo6', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_06'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_06', + hash = -584961562, + model = 'w_pi_pistolmk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_07_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_07_SLIDE', + hash = -1646538868, + model = 'W_PI_PistolMK2_Slide_Camo7', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_07'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_07', + hash = -1153175946, + model = 'w_pi_pistolmk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_08_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_08_SLIDE', + hash = -1290164948, + model = 'W_PI_PistolMK2_Slide_Camo8', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_08'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_08', + hash = 1301287696, + model = 'w_pi_pistolmk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_09_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_09_SLIDE', + hash = -964465134, + model = 'W_PI_PistolMK2_Slide_Camo9', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_09'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_09', + hash = 1597093459, + model = 'w_pi_pistolmk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_10_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_10_SLIDE', + hash = 1135718771, + model = 'W_PI_PistolMK2_Slide_Camo10', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_10'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_10', + hash = 1769871776, + model = 'w_pi_pistolmk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE', + hash = 1253942266, + model = 'W_PI_PistolMK2_Camo_Sl_Ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_PISTOL_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01', + hash = -1827882671, + model = 'w_pi_pistolmk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO', + hash = -130843390, + model = 'w_at_heavysnipermk2_camo1', + gxtName = 'WCT_CAMO_1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_02'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_02', + hash = -977347227, + model = 'w_at_heavysnipermk2_camo2', + gxtName = 'WCT_CAMO_2', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_03'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_03', + hash = -378461067, + model = 'w_at_heavysnipermk2_camo3', + gxtName = 'WCT_CAMO_3', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_04'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_04', + hash = 329939175, + model = 'w_at_heavysnipermk2_camo4', + gxtName = 'WCT_CAMO_4', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_05'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_05', + hash = 643374672, + model = 'w_at_heavysnipermk2_camo5', + gxtName = 'WCT_CAMO_5', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_06'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_06', + hash = 807875052, + model = 'w_at_heavysnipermk2_camo6', + gxtName = 'WCT_CAMO_6', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_07'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_07', + hash = -1401804168, + model = 'w_at_heavysnipermk2_camo7', + gxtName = 'WCT_CAMO_7', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_08'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_08', + hash = -1096495395, + model = 'w_at_heavysnipermk2_camo8', + gxtName = 'WCT_CAMO_8', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_09'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_09', + hash = -847811454, + model = 'w_at_heavysnipermk2_camo9', + gxtName = 'WCT_CAMO_9', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_10'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_10', + hash = -1413108537, + model = 'w_at_heavysnipermk2_camo10', + gxtName = 'WCT_CAMO_10', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01'] = { + id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01', + hash = 1815270123, + model = 'w_at_heavysnipermk2_camo_ind1', + gxtName = 'WCT_CAMO_IND', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_PI_FLSH_02'] = { + id = 'COMPONENT_AT_PI_FLSH_02', + hash = 1140676955, + model = 'w_at_pi_flsh_2', + gxtName = 'WCT_FLASH', + gxtDescription = 'WCD_FLASH', + __type = 'CWeaponComponentFlashLightInfo', + type = 'flashlight' + }, + ['COMPONENT_AT_AR_AFGRIP_02'] = { + id = 'COMPONENT_AT_AR_AFGRIP_02', + hash = -1654288262, + model = 'w_at_afgrip_2', + gxtName = 'WCT_GRIP', + gxtDescription = 'WCD_GRIP', + __type = 'CWeaponComponentInfo', + type = 'default' + }, + ['COMPONENT_AT_MUZZLE_01'] = { + id = 'COMPONENT_AT_MUZZLE_01', + hash = -1181482284, + model = 'w_at_muzzle_1', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_02'] = { + id = 'COMPONENT_AT_MUZZLE_02', + hash = -932732805, + model = 'w_at_muzzle_2', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_03'] = { + id = 'COMPONENT_AT_MUZZLE_03', + hash = -569259057, + model = 'w_at_muzzle_3', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_04'] = { + id = 'COMPONENT_AT_MUZZLE_04', + hash = -326080308, + model = 'w_at_muzzle_4', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_05'] = { + id = 'COMPONENT_AT_MUZZLE_05', + hash = 48731514, + model = 'w_at_muzzle_5', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_06'] = { + id = 'COMPONENT_AT_MUZZLE_06', + hash = 880736428, + model = 'w_at_muzzle_6', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_07'] = { + id = 'COMPONENT_AT_MUZZLE_07', + hash = 1303784126, + model = 'w_at_muzzle_7', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_08'] = { + id = 'COMPONENT_AT_MUZZLE_08', + hash = 1602080333, + model = 'w_at_muzzle_8', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ_SR', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_MUZZLE_09'] = { + id = 'COMPONENT_AT_MUZZLE_09', + hash = 1764221345, + model = 'w_at_muzzle_9', + gxtName = 'WCT_MUZZ', + gxtDescription = 'WCD_MUZZ_SR', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_PI_COMP'] = { + id = 'COMPONENT_AT_PI_COMP', + hash = 568543123, + model = 'w_at_pi_comp_1', + gxtName = 'WCT_COMP', + gxtDescription = 'WCD_COMP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_AT_PI_RAIL'] = { + id = 'COMPONENT_AT_PI_RAIL', + hash = -1898661008, + model = 'w_at_pi_rail_1', + gxtName = 'WCT_SCOPE_PI', + gxtDescription = 'WCD_SCOPE_PI', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MACRO_MK2'] = { + id = 'COMPONENT_AT_SCOPE_MACRO_MK2', + hash = 77277509, + model = 'w_at_scope_macro', + gxtName = 'WCT_SCOPE_MAC2', + gxtDescription = 'WCD_SCOPE_MAC', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MACRO_02_MK2'] = { + id = 'COMPONENT_AT_SCOPE_MACRO_02_MK2', + hash = -944910075, + model = 'w_at_scope_macro_2', + gxtName = 'WCT_SCOPE_MAC2', + gxtDescription = 'WCD_SCOPE_MAC', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2'] = { + id = 'COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2', + hash = -452809877, + model = 'w_at_scope_macro_2_mk2', + gxtName = 'WCT_SCOPE_MAC2', + gxtDescription = 'WCD_SCOPE_MAC', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_SMALL_MK2'] = { + id = 'COMPONENT_AT_SCOPE_SMALL_MK2', + hash = 1060929921, + model = 'w_at_scope_small', + gxtName = 'WCT_SCOPE_SML2', + gxtDescription = 'WCD_SCOPE_SML', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_SMALL_SMG_MK2'] = { + id = 'COMPONENT_AT_SCOPE_SMALL_SMG_MK2', + hash = 1038927834, + model = 'w_at_scope_small_mk2', + gxtName = 'WCT_SCOPE_SML2', + gxtDescription = 'WCD_SCOPE_SML', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_MEDIUM_MK2'] = { + id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', + hash = -966040254, + model = 'w_at_scope_medium_2', + gxtName = 'WCT_SCOPE_MED2', + gxtDescription = 'WCD_SCOPE_MED', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_LARGE_MK2'] = { + id = 'COMPONENT_AT_SCOPE_LARGE_MK2', + hash = -2101279869, + model = 'w_at_scope_large', + gxtName = 'WCT_SCOPE_LRG2', + gxtDescription = 'WCD_SCOPE_LRG', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_NV'] = { + id = 'COMPONENT_AT_SCOPE_NV', + hash = -1233121104, + model = 'w_at_scope_nv', + gxtName = 'WCT_SCOPE_NV', + gxtDescription = 'WCD_SCOPE_NV', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SCOPE_THERMAL'] = { + id = 'COMPONENT_AT_SCOPE_THERMAL', + hash = 776198721, + model = 'w_at_scope_nv', + gxtName = 'WCT_SCOPE_TH', + gxtDescription = 'WCD_SCOPE_TH', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SIGHTS'] = { + id = 'COMPONENT_AT_SIGHTS', + hash = 1108334355, + model = 'w_at_sights_1', + gxtName = 'WCT_HOLO', + gxtDescription = 'WCD_HOLO', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SIGHTS_SMG'] = { + id = 'COMPONENT_AT_SIGHTS_SMG', + hash = -1613015470, + model = 'w_at_sights_smg', + gxtName = 'WCT_HOLO', + gxtDescription = 'WCD_HOLO', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_AT_SR_SUPP_03'] = { + id = 'COMPONENT_AT_SR_SUPP_03', + hash = -1404903567, + model = 'w_at_sr_supp3', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_SR_SUPP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_FLASHLIGHT_LIGHT'] = { + id = 'COMPONENT_FLASHLIGHT_LIGHT', + hash = -575194865, + model = 'w_me_flashlight_flash', + gxtName = 'WCT_FLASH', + gxtDescription = 'WCD_FLASH', + __type = 'CWeaponComponentFlashLightInfo', + type = 'flashlight' + }, + ['COMPONENT_FLAREGUN_CLIP_01'] = { + id = 'COMPONENT_FLAREGUN_CLIP_01', + hash = -1813398119, + model = 'w_pi_flaregun_mag1', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCT_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_CERAMICPISTOL_CLIP_01'] = { + id = 'COMPONENT_CERAMICPISTOL_CLIP_01', + hash = 1423184737, + model = 'W_PI_Ceramic_Mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_P_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_CERAMICPISTOL_CLIP_02'] = { + id = 'COMPONENT_CERAMICPISTOL_CLIP_02', + hash = -2122814295, + model = 'w_pi_sns_pistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_P_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 17 + }, + ['COMPONENT_CERAMICPISTOL_SUPP'] = { + id = 'COMPONENT_CERAMICPISTOL_SUPP', + hash = -1828202758, + model = 'W_PI_Ceramic_Supp', + gxtName = 'WCT_SUPP', + gxtDescription = 'WCD_PI_SUPP', + __type = 'CWeaponComponentSuppressorInfo', + type = 'suppressor' + }, + ['COMPONENT_NAVYREVOLVER_CLIP_01'] = { + id = 'COMPONENT_NAVYREVOLVER_CLIP_01', + hash = -1738620313, + model = 'w_pi_wep2_gun_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_REV_NV_CLIP', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_MACHINEPISTOL_CLIP_01'] = { + id = 'COMPONENT_MACHINEPISTOL_CLIP_01', + hash = 1198425599, + model = 'w_sb_compactsmg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_MCHP_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_MACHINEPISTOL_CLIP_02'] = { + id = 'COMPONENT_MACHINEPISTOL_CLIP_02', + hash = -1188271751, + model = 'w_sb_compactsmg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_MCHP_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_COMPACTRIFLE_CLIP_01'] = { + id = 'COMPONENT_COMPACTRIFLE_CLIP_01', + hash = 1363085923, + model = 'w_ar_assaultrifle_smg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_CMPR_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_COMPACTRIFLE_CLIP_02'] = { + id = 'COMPONENT_COMPACTRIFLE_CLIP_02', + hash = 1509923832, + model = 'w_ar_assaultrifle_smg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_CMPR_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_DBSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_DBSHOTGUN_CLIP_01', + hash = 703231006, + model = 'w_sg_doublebarrel_mag1', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 2 + }, + ['COMPONENT_COMBATPDW_CLIP_01'] = { + id = 'COMPONENT_COMBATPDW_CLIP_01', + hash = 1125642654, + model = 'W_SB_PDW_Mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_PDW_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_COMBATPDW_CLIP_02'] = { + id = 'COMPONENT_COMBATPDW_CLIP_02', + hash = 860508675, + model = 'W_SB_PDW_Mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_PDW_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_SNSPISTOL_CLIP_01'] = { + id = 'COMPONENT_SNSPISTOL_CLIP_01', + hash = -125817127, + model = 'w_pi_sns_pistol_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_SNSP_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_SNSPISTOL_CLIP_02'] = { + id = 'COMPONENT_SNSPISTOL_CLIP_02', + hash = 2063610803, + model = 'w_pi_sns_pistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_SNSP_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_SNSPISTOL_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_SNSPISTOL_VARMOD_LOWRIDER', + hash = -2144080721, + model = 'w_pi_sns_pistol_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_MARKSMANPISTOL_CLIP_01'] = { + id = 'COMPONENT_MARKSMANPISTOL_CLIP_01', + hash = -878820883, + model = 'W_PI_SingleShot_Shell', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_KNUCKLE_VARMOD_BASE'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_BASE', + hash = -213504205, + model = 'W_ME_Knuckle', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_PIMP'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_PIMP', + hash = -971770235, + model = 'W_ME_Knuckle_02', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_BALLAS'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_BALLAS', + hash = -287703709, + model = 'W_ME_Knuckle_BG', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_DOLLAR'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_DOLLAR', + hash = 1351683121, + model = 'W_ME_Knuckle_DLR', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_DIAMOND'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_DIAMOND', + hash = -1755194916, + model = 'W_ME_Knuckle_DMD', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_HATE'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_HATE', + hash = 2112683568, + model = 'W_ME_Knuckle_HT', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_LOVE'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_LOVE', + hash = 1062111910, + model = 'W_ME_Knuckle_LV', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_PLAYER'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_PLAYER', + hash = 146278587, + model = 'W_ME_Knuckle_PC', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_KING'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_KING', + hash = -494162961, + model = 'W_ME_Knuckle_SLG', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_KNUCKLE_VARMOD_VAGOS'] = { + id = 'COMPONENT_KNUCKLE_VARMOD_VAGOS', + hash = 2062808965, + model = 'W_ME_Knuckle_VG', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_HEAVYPISTOL_CLIP_01'] = { + id = 'COMPONENT_HEAVYPISTOL_CLIP_01', + hash = 222992026, + model = 'w_pi_heavypistol_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_HPST_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 18 + }, + ['COMPONENT_HEAVYPISTOL_CLIP_02'] = { + id = 'COMPONENT_HEAVYPISTOL_CLIP_02', + hash = 1694090795, + model = 'w_pi_heavypistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_HPST_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 36 + }, + ['COMPONENT_SPECIALCARBINE_CLIP_01'] = { + id = 'COMPONENT_SPECIALCARBINE_CLIP_01', + hash = -959978111, + model = 'w_ar_specialcarbine_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_SCRB_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_SPECIALCARBINE_CLIP_02'] = { + id = 'COMPONENT_SPECIALCARBINE_CLIP_02', + hash = 2089537806, + model = 'w_ar_specialcarbine_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_SCRB_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_BULLPUPRIFLE_CLIP_01'] = { + id = 'COMPONENT_BULLPUPRIFLE_CLIP_01', + hash = -979292288, + model = 'w_ar_bullpuprifle_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_BRIF_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_BULLPUPRIFLE_CLIP_02'] = { + id = 'COMPONENT_BULLPUPRIFLE_CLIP_02', + hash = -1284994289, + model = 'w_ar_bullpuprifle_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_BRIF_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 60 + }, + ['COMPONENT_VINTAGEPISTOL_CLIP_01'] = { + id = 'COMPONENT_VINTAGEPISTOL_CLIP_01', + hash = 1168357051, + model = 'w_pi_vintage_pistol_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_VPST_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 7 + }, + ['COMPONENT_VINTAGEPISTOL_CLIP_02'] = { + id = 'COMPONENT_VINTAGEPISTOL_CLIP_02', + hash = 867832552, + model = 'w_pi_vintage_pistol_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_VPST_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 14 + }, + ['COMPONENT_FIREWORK_CLIP_01'] = { + id = 'COMPONENT_FIREWORK_CLIP_01', + hash = -454770035, + model = '', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_MUSKET_CLIP_01'] = { + id = 'COMPONENT_MUSKET_CLIP_01', + hash = 1322387263, + model = 'P_CS_Joint_02', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM'] = { + id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM', + hash = 471997210, + model = 'w_at_scope_large', + gxtName = 'WCT_SCOPE_LRG', + gxtDescription = 'WCD_SCOPE_LRF', + __type = 'CWeaponComponentScopeInfo', + type = 'scope' + }, + ['COMPONENT_MARKSMANRIFLE_CLIP_01'] = { + id = 'COMPONENT_MARKSMANRIFLE_CLIP_01', + hash = -667205311, + model = 'w_sr_marksmanrifle_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_MKRF_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 8 + }, + ['COMPONENT_MARKSMANRIFLE_CLIP_02'] = { + id = 'COMPONENT_MARKSMANRIFLE_CLIP_02', + hash = -855823675, + model = 'w_sr_marksmanrifle_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_MKRF_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 16 + }, + ['COMPONENT_HEAVYSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_HEAVYSHOTGUN_CLIP_01', + hash = 844049759, + model = 'w_sg_heavyshotgun_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_HVSG_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_HEAVYSHOTGUN_CLIP_02'] = { + id = 'COMPONENT_HEAVYSHOTGUN_CLIP_02', + hash = -1759709443, + model = 'w_sg_heavyshotgun_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_HVSG_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 12 + }, + ['COMPONENT_GUSENBERG_CLIP_01'] = { + id = 'COMPONENT_GUSENBERG_CLIP_01', + hash = 484812453, + model = 'w_sb_gusenberg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_GSNB_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + }, + ['COMPONENT_GUSENBERG_CLIP_02'] = { + id = 'COMPONENT_GUSENBERG_CLIP_02', + hash = -355941776, + model = 'w_sb_gusenberg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_GSNB_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 50 + }, + ['COMPONENT_RAILGUN_CLIP_01'] = { + id = 'COMPONENT_RAILGUN_CLIP_01', + hash = 59044840, + model = 'w_ar_railgun_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_RLGN_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_HEAVYPISTOL_VARMOD_LUXE'] = { + id = 'COMPONENT_HEAVYPISTOL_VARMOD_LUXE', + hash = 2053798779, + model = 'W_PI_HeavyPistol_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER'] = { + id = 'COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER', + hash = 1929467122, + model = 'w_ar_specialcarbine_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_BULLPUPRIFLE_VARMOD_LOW'] = { + id = 'COMPONENT_BULLPUPRIFLE_VARMOD_LOW', + hash = -1470645128, + model = 'w_ar_bullpuprifle_luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_MARKSMANRIFLE_VARMOD_LUXE'] = { + id = 'COMPONENT_MARKSMANRIFLE_VARMOD_LUXE', + hash = 371102273, + model = 'W_SR_MarksmanRifle_Luxe', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_REVOLVER_CLIP_01'] = { + id = 'COMPONENT_REVOLVER_CLIP_01', + hash = -377062173, + model = 'w_pi_revolver_Mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_REV_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 6 + }, + ['COMPONENT_REVOLVER_VARMOD_BOSS'] = { + id = 'COMPONENT_REVOLVER_VARMOD_BOSS', + hash = 384708672, + model = 'w_pi_revolver_b', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_REVOLVER_VARMOD_GOON'] = { + id = 'COMPONENT_REVOLVER_VARMOD_GOON', + hash = -1802258419, + model = 'w_pi_revolver_g', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SWITCHBLADE_VARMOD_BASE'] = { + id = 'COMPONENT_SWITCHBLADE_VARMOD_BASE', + hash = -1858624256, + model = 'w_me_switchblade', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SWITCHBLADE_VARMOD_VAR1'] = { + id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR1', + hash = 1530822070, + model = 'w_me_switchblade_b', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_SWITCHBLADE_VARMOD_VAR2'] = { + id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR2', + hash = -409758110, + model = 'w_me_switchblade_g', + gxtName = 'WCT_INVALID', + gxtDescription = 'WCD_INVALID', + __type = 'CWeaponComponentVariantModelInfo', + type = 'variant' + }, + ['COMPONENT_AUTOSHOTGUN_CLIP_01'] = { + id = 'COMPONENT_AUTOSHOTGUN_CLIP_01', + hash = 169463950, + model = 'w_sg_sweeper_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = '', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 10 + }, + ['COMPONENT_COMPACTLAUNCHER_CLIP_01'] = { + id = 'COMPONENT_COMPACTLAUNCHER_CLIP_01', + hash = 1235472140, + model = 'w_lr_compactgl_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = '', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 1 + }, + ['COMPONENT_MINISMG_CLIP_01'] = { + id = 'COMPONENT_MINISMG_CLIP_01', + hash = -2067221805, + model = 'w_sb_minismg_mag1', + gxtName = 'WCT_CLIP1', + gxtDescription = 'WCD_SCRP_CLIP1', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 20 + }, + ['COMPONENT_MINISMG_CLIP_02'] = { + id = 'COMPONENT_MINISMG_CLIP_02', + hash = -1820405577, + model = 'w_sb_minismg_mag2', + gxtName = 'WCT_CLIP2', + gxtDescription = 'WCD_SCRP_CLIP2', + __type = 'CWeaponComponentClipInfo', + type = 'clip', + clipSize = 30 + } +} + +--- Weapon ammo configuration +config.weapon_ammo = { + ['AMMO_MOBILEOPS_CANNON'] = { + id = 'AMMO_MOBILEOPS_CANNON', + hash = 764589401, + max = 20, + name = _T('core', 'ammo_mobileops_cannon') + }, + ['AMMO_APC_CANNON'] = { + id = 'AMMO_APC_CANNON', + hash = -767591211, + max = 100, + name = _T('core', 'ammo_apc_cannon') + }, + ['AMMO_APC_MISSILE'] = { + id = 'AMMO_APC_MISSILE', + hash = 119573070, + max = 20, + name = _T('core', 'ammo_apc_missile') + }, + ['AMMO_AVENGER_CANNON'] = { + id = 'AMMO_AVENGER_CANNON', + hash = 1849772700, + max = 20, + name = _T('core', 'ammo_avenger_cannon') + }, + ['AMMO_BARRAGE_GL'] = { + id = 'AMMO_BARRAGE_GL', + hash = 1364454752, + max = 20, + name = _T('core', 'ammo_barrage_gl') + }, + ['AMMO_VEHICLEBOMB'] = { + id = 'AMMO_VEHICLEBOMB', + hash = -1615671818, + max = 1, + name = _T('core', 'ammo_vehiclebomb') + }, + ['AMMO_VEHICLEBOMB_CLUSTER'] = { + id = 'AMMO_VEHICLEBOMB_CLUSTER', + hash = 1584038003, + max = 1, + name = _T('core', 'ammo_vehiclebomb_cluster') + }, + ['AMMO_VEHICLEBOMB_GAS'] = { + id = 'AMMO_VEHICLEBOMB_GAS', + hash = 314485403, + max = 1, + name = _T('core', 'ammo_vehiclebomb_gas') + }, + ['AMMO_VEHICLEBOMB_INCENDIARY'] = { + id = 'AMMO_VEHICLEBOMB_INCENDIARY', + hash = -111286589, + max = 1, + name = _T('core', 'ammo_vehiclebomb_incendiary') + }, + ['AMMO_CHERNO_MISSILE'] = { + id = 'AMMO_CHERNO_MISSILE', + hash = -1278325590, + max = 10, + name = _T('core', 'ammo_cherno_missile') + }, + ['AMMO_DUNE_GRENADELAUNCHER'] = { + id = 'AMMO_DUNE_GRENADELAUNCHER', + hash = 1742067183, + max = 20, + name = _T('core', 'ammo_dune_grenadelauncher') + }, + ['AMMO_HACKER_MISSILE'] = { + id = 'AMMO_HACKER_MISSILE', + hash = -2009808731, + max = 20, + name = _T('core', 'ammo_hacker_missile') + }, + ['AMMO_HUNTER_MISSILE'] = { + id = 'AMMO_HUNTER_MISSILE', + hash = -119401255, + max = 20, + name = _T('core', 'ammo_hunter_missile') + }, + ['AMMO_HUNTER_BARRAGE'] = { + id = 'AMMO_HUNTER_BARRAGE', + hash = 935462248, + max = 20, + name = _T('core', 'ammo_hunter_barrage') + }, + ['AMMO_KHANJALI_GL'] = { + id = 'AMMO_KHANJALI_GL', + hash = -1630507076, + max = 20, + name = _T('core', 'ammo_khanjali_gl') + }, + ['AMMO_KHANJALI_CANNON_HEAVY'] = { + id = 'AMMO_KHANJALI_CANNON_HEAVY', + hash = 617011510, + max = 100, + name = _T('core', 'ammo_khanjali_cannon_heavy') + }, + ['AMMO_VEHICLEMINE'] = { + id = 'AMMO_VEHICLEMINE', + hash = 612448028, + max = 1, + name = _T('core', 'ammo_vehiclemine') + }, + ['AMMO_VEHICLEMINE_KINETIC'] = { + id = 'AMMO_VEHICLEMINE_KINETIC', + hash = -1140465749, + max = 1, + name = _T('core', 'ammo_vehiclemine_kinetic') + }, + ['AMMO_VEHICLEMINE_EMP'] = { + id = 'AMMO_VEHICLEMINE_EMP', + hash = 1653442244, + max = 1, + name = _T('core', 'ammo_vehiclemine_emp') + }, + ['AMMO_VEHICLEMINE_SPIKE'] = { + id = 'AMMO_VEHICLEMINE_SPIKE', + hash = 1782795920, + max = 1, + name = _T('core', 'ammo_vehiclemine_spike') + }, + ['AMMO_VEHICLEMINE_SLICK'] = { + id = 'AMMO_VEHICLEMINE_SLICK', + hash = -418520852, + max = 1, + name = _T('core', 'ammo_vehiclemine_slick') + }, + ['AMMO_VEHICLEMINE_TAR'] = { + id = 'AMMO_VEHICLEMINE_TAR', + hash = -1733963618, + max = 1, + name = _T('core', 'ammo_vehiclemine_tar') + }, + ['AMMO_VEHICLEMINE_KINETIC_RC'] = { + id = 'AMMO_VEHICLEMINE_KINETIC_RC', + hash = -338616823, + max = 1, + name = _T('core', 'ammo_vehiclemine_kinetic_rc') + }, + ['AMMO_VEHICLEMINE_EMP_RC'] = { + id = 'AMMO_VEHICLEMINE_EMP_RC', + hash = -930619152, + max = 1, + name = _T('core', 'ammo_vehiclemine_emp_rc') + }, + ['AMMO_VEHICLEMINE_SPIKE_RC'] = { + id = 'AMMO_VEHICLEMINE_SPIKE_RC', + hash = -1317227407, + max = 1, + name = _T('core', 'ammo_vehiclemine_spike_rc') + }, + ['AMMO_VEHICLEMINE_SLICK_RC'] = { + id = 'AMMO_VEHICLEMINE_SLICK_RC', + hash = -590129723, + max = 1, + name = _T('core', 'ammo_vehiclemine_slick_rc') + }, + ['AMMO_VEHICLEMINE_TAR_RC'] = { + id = 'AMMO_VEHICLEMINE_TAR_RC', + hash = -1955683003, + max = 1, + name = _T('core', 'ammo_vehiclemine_tar_rc') + }, + ['AMMO_MONSTER3_KINETIC'] = { + id = 'AMMO_MONSTER3_KINETIC', + hash = 2074953483, + max = 10, + name = _T('core', 'ammo_monster3_kinetic') + }, + ['AMMO_MORTAR_EXPLOSIVE'] = { + id = 'AMMO_MORTAR_EXPLOSIVE', + hash = 814030577, + max = 10, + name = _T('core', 'ammo_mortar_explosive') + }, + ['AMMO_MORTAR_KINETIC'] = { + id = 'AMMO_MORTAR_KINETIC', + hash = 648487681, + max = 10, + name = _T('core', 'ammo_mortar_kinetic') + }, + ['AMMO_MULE4_GL'] = { + id = 'AMMO_MULE4_GL', + hash = -206645419, + max = 20, + name = _T('core', 'ammo_mule4_gl') + }, + ['AMMO_OPPRESSOR_MISSILE'] = { + id = 'AMMO_OPPRESSOR_MISSILE', + hash = 570854289, + max = 20, + name = _T('core', 'ammo_oppressor_missile') + }, + ['AMMO_OPPRESSOR2_MISSILE'] = { + id = 'AMMO_OPPRESSOR2_MISSILE', + hash = 914231229, + max = 20, + name = _T('core', 'ammo_oppressor2_missile') + }, + ['AMMO_POUNDER2_MISSILE'] = { + id = 'AMMO_POUNDER2_MISSILE', + hash = 948447183, + max = 20, + name = _T('core', 'ammo_pounder2_missile') + }, + ['AMMO_POUNDER2_GL'] = { + id = 'AMMO_POUNDER2_GL', + hash = 1624456817, + max = 20, + name = _T('core', 'ammo_pounder2_gl') + }, + ['AMMO_ROGUE_MISSILE'] = { + id = 'AMMO_ROGUE_MISSILE', + hash = -1421421393, + max = 20, + name = _T('core', 'ammo_rogue_missile') + }, + ['AMMO_SCRAMJET_MISSILE'] = { + id = 'AMMO_SCRAMJET_MISSILE', + hash = -1664293218, + max = 20, + name = _T('core', 'ammo_scramjet_missile') + }, + ['AMMO_STRIKEFORCE_BARRAGE'] = { + id = 'AMMO_STRIKEFORCE_BARRAGE', + hash = 987449399, + max = 20, + name = _T('core', 'ammo_strikeforce_barrage') + }, + ['AMMO_STRIKEFORCE_MISSILE'] = { + id = 'AMMO_STRIKEFORCE_MISSILE', + hash = 770578418, + max = 20, + name = _T('core', 'ammo_strikeforce_missile') + }, + ['AMMO_SUBCAR_MISSILE'] = { + id = 'AMMO_SUBCAR_MISSILE', + hash = 456482729, + max = 100, + name = _T('core', 'ammo_subcar_missile') + }, + ['AMMO_SUBCAR_TORPEDO'] = { + id = 'AMMO_SUBCAR_TORPEDO', + hash = -684945118, + max = 100, + name = _T('core', 'ammo_subcar_torpedo') + }, + ['AMMO_TAMPA_MORTAR'] = { + id = 'AMMO_TAMPA_MORTAR', + hash = -405037695, + max = 10, + name = _T('core', 'ammo_tampa_mortar') + }, + ['AMMO_THRUSTER_MISSILE'] = { + id = 'AMMO_THRUSTER_MISSILE', + hash = -379666311, + max = 20, + name = _T('core', 'ammo_thruster_missile') + }, + ['AMMO_TRAILER_AA'] = { + id = 'AMMO_TRAILER_AA', + hash = 881918194, + max = 100, + name = _T('core', 'ammo_trailer_aa') + }, + ['AMMO_TRAILER_MISSILE'] = { + id = 'AMMO_TRAILER_MISSILE', + hash = -11173636, + max = 10, + name = _T('core', 'ammo_trailer_missile') + }, + ['AMMO_VIGILANTE_MISSILE'] = { + id = 'AMMO_VIGILANTE_MISSILE', + hash = 1507289724, + max = 20, + name = _T('core', 'ammo_vigilante_missile') + }, + ['AMMO_VEHICLEBOMB_WIDE'] = { + id = 'AMMO_VEHICLEBOMB_WIDE', + hash = -117387562, + max = 1, + name = _T('core', 'ammo_vehiclebomb_wide') + }, + ['AMMO_RCTANK_ROCKET'] = { + id = 'AMMO_RCTANK_ROCKET', + hash = -1585454291, + max = 20, + name = _T('core', 'ammo_rctank_rocket') + }, + ['AMMO_FIREWORK'] = { + id = 'AMMO_FIREWORK', + hash = -1356599793, + max = 20, + name = _T('core', 'ammo_firework') + }, + ['AMMO_FLAREGUN'] = { + id = 'AMMO_FLAREGUN', + hash = 1173416293, + max = 20, + name = _T('core', 'ammo_flaregun') + }, + ['AMMO_HOMINGLAUNCHER'] = { + id = 'AMMO_HOMINGLAUNCHER', + hash = -1726673363, + max = 10, + name = _T('core', 'ammo_hominglauncher') + }, + ['AMMO_PIPEBOMB'] = { + id = 'AMMO_PIPEBOMB', + hash = 357983224, + max = 10, + name = _T('core', 'ammo_pipebomb') + }, + ['AMMO_PROXMINE'] = { + id = 'AMMO_PROXMINE', + hash = -1356724057, + max = 5, + name = _T('core', 'ammo_proxmine') + }, + ['AMMO_RAILGUN'] = { + id = 'AMMO_RAILGUN', + hash = 2034517757, + max = 20, + name = _T('core', 'ammo_railgun') + }, + ['AMMO_PISTOL'] = { + id = 'AMMO_PISTOL', + hash = 1950175060, + max = 250, + name = _T('core', 'ammo_pistol') + }, + ['AMMO_SMG'] = { + id = 'AMMO_SMG', + hash = 1820140472, + max = 250, + name = _T('core', 'ammo_smg') + }, + ['AMMO_RIFLE'] = { + id = 'AMMO_RIFLE', + hash = 218444191, + max = 250, + name = _T('core', 'ammo_rifle') + }, + ['AMMO_MG'] = { + id = 'AMMO_MG', + hash = 1788949567, + max = 500, + name = _T('core', 'ammo_mg') + }, + ['AMMO_SHOTGUN'] = { + id = 'AMMO_SHOTGUN', + hash = -1878508229, + max = 250, + name = _T('core', 'ammo_shotgun') + }, + ['AMMO_STUNGUN'] = { + id = 'AMMO_STUNGUN', + hash = -1339118112, + max = 250, + name = _T('core', 'ammo_stungun') + }, + ['AMMO_SNIPER'] = { + id = 'AMMO_SNIPER', + hash = 1285032059, + max = 250, + name = _T('core', 'ammo_sniper') + }, + ['AMMO_SNIPER_REMOTE'] = { + id = 'AMMO_SNIPER_REMOTE', + hash = -19235536, + max = 250, + name = _T('core', 'ammo_sniper_remote') + }, + ['AMMO_FIREEXTINGUISHER'] = { + id = 'AMMO_FIREEXTINGUISHER', + hash = 1359393852, + max = 2000, + name = _T('core', 'ammo_fireextinguisher') + }, + ['AMMO_PETROLCAN'] = { + id = 'AMMO_PETROLCAN', + hash = -899475295, + max = 4500, + name = _T('core', 'ammo_petrolcan') + }, + ['AMMO_MINIGUN'] = { + id = 'AMMO_MINIGUN', + hash = -1614428030, + max = 250, + name = _T('core', 'ammo_minigun') + }, + ['AMMO_GRENADELAUNCHER'] = { + id = 'AMMO_GRENADELAUNCHER', + hash = 1003267566, + max = 20, + name = _T('core', 'ammo_grenadelauncher') + }, + ['AMMO_GRENADELAUNCHER_SMOKE'] = { + id = 'AMMO_GRENADELAUNCHER_SMOKE', + hash = 826266432, + max = 20, + name = _T('core', 'ammo_grenadelauncher_smoke') + }, + ['AMMO_RPG'] = { + id = 'AMMO_RPG', + hash = 1742569970, + max = 20, + name = _T('core', 'ammo_rpg') + }, + ['AMMO_STINGER'] = { + id = 'AMMO_STINGER', + hash = -1857257158, + max = 20, + name = _T('core', 'ammo_stinger') + }, + ['AMMO_GRENADE'] = { + id = 'AMMO_GRENADE', + hash = 1003688881, + max = 25, + name = _T('core', 'ammo_grenade') + }, + ['AMMO_BALL'] = { + id = 'AMMO_BALL', + hash = -6986138, + max = 1, + name = _T('core', 'ammo_ball') + }, + ['AMMO_STICKYBOMB'] = { + id = 'AMMO_STICKYBOMB', + hash = 1411692055, + max = 25, + name = _T('core', 'ammo_stickybomb') + }, + ['AMMO_SMOKEGRENADE'] = { + id = 'AMMO_SMOKEGRENADE', + hash = -435287898, + max = 25, + name = _T('core', 'ammo_smokegrenade') + }, + ['AMMO_BZGAS'] = { + id = 'AMMO_BZGAS', + hash = -1686864220, + max = 25, + name = _T('core', 'ammo_bzgas') + }, + ['AMMO_FLARE'] = { + id = 'AMMO_FLARE', + hash = 1808594799, + max = 25, + name = _T('core', 'ammo_flare') + }, + ['AMMO_MOLOTOV'] = { + id = 'AMMO_MOLOTOV', + hash = 1446246869, + max = 25, + name = _T('core', 'ammo_molotov') + }, + ['AMMO_TANK'] = { + id = 'AMMO_TANK', + hash = -1474608608, + max = 100, + name = _T('core', 'ammo_tank') + }, + ['AMMO_SPACE_ROCKET'] = { + id = 'AMMO_SPACE_ROCKET', + hash = 527765612, + max = 20, + name = _T('core', 'ammo_space_rocket') + }, + ['AMMO_PLANE_ROCKET'] = { + id = 'AMMO_PLANE_ROCKET', + hash = 1198741878, + max = 20, + name = _T('core', 'ammo_plane_rocket') + }, + ['AMMO_PLAYER_LASER'] = { + id = 'AMMO_PLAYER_LASER', + hash = -165357558, + max = 100, + name = _T('core', 'ammo_player_laser') + }, + ['AMMO_ENEMY_LASER'] = { + id = 'AMMO_ENEMY_LASER', + hash = -1372674932, + max = 100, + name = _T('core', 'ammo_enemy_laser') + }, + ['AMMO_BIRD_CRAP'] = { + id = 'AMMO_BIRD_CRAP', + hash = 1117307028, + max = 25, + name = _T('core', 'ammo_bird_crap') + }, + ['AMMO_MG_ARMORPIERCING'] = { + id = 'AMMO_MG_ARMORPIERCING', + hash = 784861712, + max = 480, + name = _T('core', 'ammo_mg_armorpiercing') + }, + ['AMMO_MG_FMJ'] = { + id = 'AMMO_MG_FMJ', + hash = 234717365, + max = 480, + name = _T('core', 'ammo_mg_fmj') + }, + ['AMMO_MG_INCENDIARY'] = { + id = 'AMMO_MG_INCENDIARY', + hash = 1461941360, + max = 480, + name = _T('core', 'ammo_mg_incendiary') + }, + ['AMMO_MG_TRACER'] = { + id = 'AMMO_MG_TRACER', + hash = 1226421483, + max = 600, + name = _T('core', 'ammo_mg_tracer') + }, + ['AMMO_PISTOL_FMJ'] = { + id = 'AMMO_PISTOL_FMJ', + hash = -1132792829, + max = 240, + name = _T('core', 'ammo_pistol_fmj') + }, + ['AMMO_PISTOL_HOLLOWPOINT'] = { + id = 'AMMO_PISTOL_HOLLOWPOINT', + hash = -836519658, + max = 240, + name = _T('core', 'ammo_pistol_hollowpoint') + }, + ['AMMO_PISTOL_INCENDIARY'] = { + id = 'AMMO_PISTOL_INCENDIARY', + hash = -1416716039, + max = 240, + name = _T('core', 'ammo_pistol_incendiary') + }, + ['AMMO_PISTOL_TRACER'] = { + id = 'AMMO_PISTOL_TRACER', + hash = -1193480661, + max = 360, + name = _T('core', 'ammo_pistol_tracer') + }, + ['AMMO_RIFLE_ARMORPIERCING'] = { + id = 'AMMO_RIFLE_ARMORPIERCING', + hash = 423744068, + max = 240, + name = _T('core', 'ammo_rifle_armorpiercing') + }, + ['AMMO_RIFLE_FMJ'] = { + id = 'AMMO_RIFLE_FMJ', + hash = 1586900444, + max = 240, + name = _T('core', 'ammo_rifle_fmj') + }, + ['AMMO_RIFLE_INCENDIARY'] = { + id = 'AMMO_RIFLE_INCENDIARY', + hash = -1829688883, + max = 240, + name = _T('core', 'ammo_rifle_incendiary') + }, + ['AMMO_RIFLE_TRACER'] = { + id = 'AMMO_RIFLE_TRACER', + hash = -1340502689, + max = 360, + name = _T('core', 'ammo_rifle_tracer') + }, + ['AMMO_SMG_FMJ'] = { + id = 'AMMO_SMG_FMJ', + hash = 758230489, + max = 240, + name = _T('core', 'ammo_smg_fmj') + }, + ['AMMO_SMG_HOLLOWPOINT'] = { + id = 'AMMO_SMG_HOLLOWPOINT', + hash = 670318226, + max = 240, + name = _T('core', 'ammo_smg_hollowpoint') + }, + ['AMMO_SMG_INCENDIARY'] = { + id = 'AMMO_SMG_INCENDIARY', + hash = -332892697, + max = 240, + name = _T('core', 'ammo_smg_incendiary') + }, + ['AMMO_SMG_TRACER'] = { + id = 'AMMO_SMG_TRACER', + hash = 1569785553, + max = 360, + name = _T('core', 'ammo_smg_tracer') + }, + ['AMMO_SNIPER_ARMORPIERCING'] = { + id = 'AMMO_SNIPER_ARMORPIERCING', + hash = -1497580119, + max = 80, + name = _T('core', 'ammo_sniper_armorpiercing') + }, + ['AMMO_SNIPER_EXPLOSIVE'] = { + id = 'AMMO_SNIPER_EXPLOSIVE', + hash = -1378784071, + max = 40, + name = _T('core', 'ammo_sniper_explosive') + }, + ['AMMO_SNIPER_FMJ'] = { + id = 'AMMO_SNIPER_FMJ', + hash = -168704490, + max = 80, + name = _T('core', 'ammo_sniper_fmj') + }, + ['AMMO_SNIPER_INCENDIARY'] = { + id = 'AMMO_SNIPER_INCENDIARY', + hash = 796697766, + max = 80, + name = _T('core', 'ammo_sniper_incendiary') + }, + ['AMMO_SNIPER_TRACER'] = { + id = 'AMMO_SNIPER_TRACER', + hash = 1184011213, + max = 320, + name = _T('core', 'ammo_sniper_tracer') + }, + ['AMMO_SHOTGUN_ARMORPIERCING'] = { + id = 'AMMO_SHOTGUN_ARMORPIERCING', + hash = 1923327840, + max = 160, + name = _T('core', 'ammo_shotgun_armorpiercing') + }, + ['AMMO_SHOTGUN_EXPLOSIVE'] = { + id = 'AMMO_SHOTGUN_EXPLOSIVE', + hash = -309302955, + max = 40, + name = _T('core', 'ammo_shotgun_explosive') + }, + ['AMMO_SHOTGUN_HOLLOWPOINT'] = { + id = 'AMMO_SHOTGUN_HOLLOWPOINT', + hash = 2089185906, + max = 160, + name = _T('core', 'ammo_shotgun_hollowpoint') + }, + ['AMMO_SHOTGUN_INCENDIARY'] = { + id = 'AMMO_SHOTGUN_INCENDIARY', + hash = -609429612, + max = 160, + name = _T('core', 'ammo_shotgun_incendiary') + }, + ['AMMO_SNOWBALL'] = { + id = 'AMMO_SNOWBALL', + hash = -2112339603, + max = 10, + name = _T('core', 'ammo_snowball') + }, + ['AMMO_ARENA_HOMING_MISSILE'] = { + id = 'AMMO_ARENA_HOMING_MISSILE', + hash = 1669062227, + max = 20, + name = _T('core', 'ammo_arena_homing_missile') + }, + ['AMMO_RAYPISTOL'] = { + id = 'AMMO_RAYPISTOL', + hash = -1526023308, + max = 20, + name = _T('core', 'ammo_raypistol') + }, + ['AMMO_HAZARDCAN'] = { + id = 'AMMO_HAZARDCAN', + hash = 1618528319, + max = 4500, + name = _T('core', 'ammo_hazardcan') + }, + ['AMMO_TRANQUILIZER'] = { + id = 'AMMO_TRANQUILIZER', + hash = 1964004553, + max = 250, + name = _T('core', 'ammo_tranquilizer') + } +} + +--- Weapon categories configuration +config.weapon_categories = { + ['thrown'] = { + id = 'thrown', + weapons = { + 'VEHICLE_WEAPON_BOMB', + 'VEHICLE_WEAPON_BOMB_CLUSTER', + 'VEHICLE_WEAPON_BOMB_GAS', + 'VEHICLE_WEAPON_BOMB_INCENDIARY', + 'VEHICLE_WEAPON_MINE', + 'VEHICLE_WEAPON_MINE_KINETIC', + 'VEHICLE_WEAPON_MINE_EMP', + 'VEHICLE_WEAPON_MINE_SPIKE', + 'VEHICLE_WEAPON_MINE_SLICK', + 'VEHICLE_WEAPON_MINE_TAR', + 'VEHICLE_WEAPON_MINE_KINETIC_RC', + 'VEHICLE_WEAPON_MINE_EMP_RC', + 'VEHICLE_WEAPON_MINE_SPIKE_RC', + 'VEHICLE_WEAPON_MINE_SLICK_RC', + 'VEHICLE_WEAPON_MINE_TAR_RC', + 'VEHICLE_WEAPON_BOMB_STANDARD_WIDE', + 'WEAPON_PIPEBOMB', + 'WEAPON_PROXMINE', + 'WEAPON_GRENADE', + 'WEAPON_STICKYBOMB', + 'WEAPON_SMOKEGRENADE', + 'WEAPON_BZGAS', + 'WEAPON_MOLOTOV', + 'WEAPON_BALL', + 'WEAPON_FLARE', + 'WEAPON_BIRD_CRAP', + 'WEAPON_SNOWBALL' + }, + name = _T('core', 'thrown') + }, + ['heavy'] = { + id = 'heavy', + weapons = { + 'VEHICLE_WEAPON_RCTANK_LAZER', + 'WEAPON_COMPACTLAUNCHER', + 'WEAPON_FIREWORK', + 'WEAPON_HOMINGLAUNCHER', + 'WEAPON_RAILGUN', + 'WEAPON_GRENADELAUNCHER', + 'WEAPON_GRENADELAUNCHER_SMOKE', + 'WEAPON_RPG', + 'WEAPON_PASSENGER_ROCKET', + 'WEAPON_AIRSTRIKE_ROCKET', + 'WEAPON_STINGER', + 'WEAPON_MINIGUN', + 'WEAPON_VEHICLE_ROCKET', + 'WEAPON_RAYMINIGUN' + }, + name = _T('core', 'heavy') + }, + ['shotgun'] = { + id = 'shotgun', + weapons = { + 'WEAPON_AUTOSHOTGUN', + 'WEAPON_DBSHOTGUN', + 'WEAPON_HEAVYSHOTGUN', + 'WEAPON_PUMPSHOTGUN', + 'WEAPON_SAWNOFFSHOTGUN', + 'WEAPON_ASSAULTSHOTGUN', + 'WEAPON_BULLPUPSHOTGUN', + 'WEAPON_PUMPSHOTGUN_MK2' + }, + name = _T('core', 'shotgun') + }, + ['melee'] = { + id = 'melee', + weapons = { + 'WEAPON_BATTLEAXE', + 'WEAPON_BOTTLE', + 'WEAPON_DAGGER', + 'WEAPON_FLASHLIGHT', + 'WEAPON_GARBAGEBAG', + 'WEAPON_HANDCUFFS', + 'WEAPON_HATCHET', + 'WEAPON_MACHETE', + 'WEAPON_POOLCUE', + 'WEAPON_KNIFE', + 'WEAPON_NIGHTSTICK', + 'WEAPON_HAMMER', + 'WEAPON_BAT', + 'WEAPON_GOLFCLUB', + 'WEAPON_CROWBAR', + 'WEAPON_STONE_HATCHET', + 'WEAPON_SWITCHBLADE', + 'WEAPON_WRENCH' + }, + name = _T('core', 'melee') + }, + ['rifle'] = { + id = 'rifle', + weapons = { + 'WEAPON_BULLPUPRIFLE', + 'WEAPON_COMPACTRIFLE', + 'WEAPON_ASSAULTRIFLE', + 'WEAPON_CARBINERIFLE', + 'WEAPON_ADVANCEDRIFLE', + 'WEAPON_SPECIALCARBINE', + 'WEAPON_ASSAULTRIFLE_MK2', + 'WEAPON_BULLPUPRIFLE_MK2', + 'WEAPON_CARBINERIFLE_MK2', + 'WEAPON_SPECIALCARBINE_MK2' + }, + name = _T('core', 'rifle') + }, + ['smg'] = { + id = 'smg', + weapons = { + 'WEAPON_COMBATPDW', + 'WEAPON_MACHINEPISTOL', + 'WEAPON_MINISMG', + 'WEAPON_MICROSMG', + 'WEAPON_SMG', + 'WEAPON_ASSAULTSMG', + 'WEAPON_SMG_MK2' + }, + name = _T('core', 'smg') + }, + ['pistol'] = { + id = 'pistol', + weapons = { + 'WEAPON_FLAREGUN', + 'WEAPON_HEAVYPISTOL', + 'WEAPON_MARKSMANPISTOL', + 'WEAPON_REVOLVER', + 'WEAPON_PISTOL', + 'WEAPON_COMBATPISTOL', + 'WEAPON_APPISTOL', + 'WEAPON_PISTOL50', + 'WEAPON_SNSPISTOL', + 'WEAPON_DOUBLEACTION', + 'WEAPON_PISTOL_MK2', + 'WEAPON_REVOLVER_MK2', + 'WEAPON_SNSPISTOL_MK2', + 'WEAPON_RAYPISTOL', + 'WEAPON_VINTAGEPISTOL', + 'WEAPON_CERAMICPISTOL', + 'WEAPON_NAVYREVOLVER' + }, + name = _T('core', 'pistol') + }, + ['mg'] = { + id = 'mg', + weapons = { + 'WEAPON_GUSENBERG', + 'WEAPON_MG', + 'WEAPON_COMBATMG', + 'WEAPON_COMBATMG_MK2', + 'WEAPON_RAYCARBINE' + }, + name = _T('core', 'mg') + }, + ['unarmed'] = { + id = 'unarmed', + weapons = { + 'WEAPON_KNUCKLE', + 'WEAPON_UNARMED', + 'WEAPON_ANIMAL', + 'WEAPON_COUGAR', + 'WEAPON_ANIMAL_RETRIEVER', + 'WEAPON_SMALL_DOG', + 'WEAPON_TIGER_SHARK', + 'WEAPON_HAMMERHEAD_SHARK', + 'WEAPON_KILLER_WHALE', + 'WEAPON_BOAR', + 'WEAPON_PIG', + 'WEAPON_COYOTE', + 'WEAPON_DEER', + 'WEAPON_HEN', + 'WEAPON_RABBIT', + 'WEAPON_CAT', + 'WEAPON_COW' + }, + name = _T('core', 'unarmed') + }, + ['sniper'] = { + id = 'sniper', + weapons = { + 'WEAPON_MARKSMANRIFLE', + 'WEAPON_MUSKET', + 'WEAPON_SNIPERRIFLE', + 'WEAPON_HEAVYSNIPER', + 'WEAPON_HEAVYSNIPER_MK2', + 'WEAPON_MARKSMANRIFLE_MK2' + }, + name = _T('core', 'sniper') + }, + ['stungun'] = { + id = 'stungun', + weapons = { + 'WEAPON_STUNGUN' + }, + name = _T('core', 'stungun') + }, + ['fireextinguisher'] = { + id = 'fireextinguisher', + weapons = { + 'WEAPON_FIREEXTINGUISHER' + }, + name = _T('core', 'fireextinguisher') + }, + ['petrolcan'] = { + id = 'petrolcan', + weapons = { + 'WEAPON_PETROLCAN', + 'WEAPON_HAZARDCAN' + }, + name = _T('core', 'petrolcan') + }, + ['digiscanner'] = { + id = 'digiscanner', + weapons = { + 'WEAPON_DIGISCANNER' + }, + name = _T('core', 'digiscanner') + }, + ['nightvision'] = { + id = 'nightvision', + weapons = { + 'GADGET_NIGHTVISION' + }, + name = _T('core', 'nightvision') + }, + ['parachute'] = { + id = 'parachute', + weapons = { + 'GADGET_PARACHUTE' + }, + name = _T('core', 'parachute') + }, + ['tranqilizer'] = { + id = 'tranqilizer', + weapons = { + 'WEAPON_TRANQUILIZER' + }, + name = _T('core', 'tranqilizer') + } +} + +--- Return current configuration +return config \ No newline at end of file diff --git a/[required]/cvf_config/fxmanifest.lua b/[required]/cvf_config/fxmanifest.lua new file mode 100644 index 0000000..4c007ed --- /dev/null +++ b/[required]/cvf_config/fxmanifest.lua @@ -0,0 +1,44 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Config Resource' +version '1.0.0' +description 'Config resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Client available files +--- +files { + 'configs/client/*.lua', + 'configs/shared/*.lua' +} + +--- +--- Register client scripts +--- +server_scripts { + 'shared/main.lua' +} + +--- +--- Register client scripts +--- +client_scripts { + 'shared/main.lua' +} \ No newline at end of file diff --git a/[required]/cvf_config/shared/main.lua b/[required]/cvf_config/shared/main.lua new file mode 100644 index 0000000..9d9a396 --- /dev/null +++ b/[required]/cvf_config/shared/main.lua @@ -0,0 +1,156 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +local type = assert(type) +local pairs = assert(pairs) +local tostring = assert(tostring) +local xpcall = assert(xpcall) +local load = assert(load) +local traceback = assert(debug.traceback) +local pack = assert(table.pack) +local lower = assert(string.lower) +local isClient = not IsDuplicityVersion() +local GetHashKey = assert(GetHashKey) + +--- Cahce FiveM globals +local exports = assert(exports) + +--- Create a configuration table +local configuration = {} + +--- Merge multiple tables into one table +local function merge_tables(...) + local tables_to_merge = {...} + + if (#tables_to_merge == 0) then + return {} + elseif (#tables_to_merge == 1) then + return tables_to_merge[1] + end + + local result = tables_to_merge[1] + + if (type(result) ~= 'table') then + result = {} + end + + for i = 2, #tables_to_merge do + local from = tables_to_merge[i] + + if (type(from) == 'table') then + for k, v in pairs(from) do + if type(v) == 'table' then + result[k] = result[k] or {} + + if (type(result[k]) == 'table') then + result[k] = merge_tables(result[k], v) + end + else + result[k] = v + end + end + end + end + + return result +end + +--- This function results a config table or value from stored configuration variable +---@param cacheKey number Cached key from `GetHashKey` +---@return any|nil results from stored configuration variable +local function getConfigurationFromCache(cacheKey, ...) + local arguments = pack(...) + + if (configuration[cacheKey] ~= nil) then + local cachedResults = configuration[cacheKey] + + for _, argument in pairs(arguments) do + if (type(argument) == 'string') then + cachedResults = cachedResults[argument] or nil + + if (cachedResults == nil) then + return nil + elseif (type(cachedResults) ~= 'table') then + return cachedResults + end + end + end + + return cachedResults + end + + return nil +end + +--- Load configuration by name +---@param name string Name of configuration +---@param cacheKey number Cached key from `GetHashKey` +local function loadConfigurationVariable(name, cacheKey) + if (configuration[cacheKey] ~= nil) then + return + end + + local sharedConfiguration = {} + local sharedConfigurationPath = ('configs/shared/%s.lua'):format(name) + local sharedConfigurationFile = LoadResourceFile(GetCurrentResourceName(), sharedConfigurationPath) + local environmentConfiguration = {} + local environmentConfigurationPath = isClient and ('configs/client/%s.lua'):format(name) or ('configs/server/%s.lua'):format(name) + local environmentConfigurationFile = LoadResourceFile(GetCurrentResourceName(), environmentConfigurationPath) + + if (sharedConfigurationFile) then + local func, _ = load(sharedConfigurationFile, ('%s/%s'):format(GetCurrentResourceName(), sharedConfigurationPath)) + + if (func) then + local ok, result = xpcall(func, traceback) + + if (ok) then + sharedConfiguration = result or {} + end + end + end + + if (environmentConfigurationFile) then + local func, _ = load(environmentConfigurationFile, ('%s/%s'):format(GetCurrentResourceName(), environmentConfigurationPath)) + + if (func) then + local ok, result = xpcall(func, traceback) + + if (ok) then + environmentConfiguration = result or {} + end + end + end + + configuration[cacheKey] = merge_tables(sharedConfiguration, environmentConfiguration) +end + +--- Load or return cached configuration based on name +---@param name string Name of configuration to load +---@params ... string[] Filer results by key +---@return any|nil Returns `any` data from cached configuration or `nil` if not found +local function getConfiguration(name, ...) + name = name or 'core' + + if (type(name) ~= 'string') then name = tostring(name) end + + name = lower(name) + + local cacheKey = GetHashKey(name) + + loadConfigurationVariable(name, cacheKey) + + return getConfigurationFromCache(cacheKey, ...) +end + +--- Register `getConfiguration` as export function +exports('__c', getConfiguration) \ No newline at end of file diff --git a/[required]/cvf_events/fxmanifest.lua b/[required]/cvf_events/fxmanifest.lua new file mode 100644 index 0000000..f3159fd --- /dev/null +++ b/[required]/cvf_events/fxmanifest.lua @@ -0,0 +1,45 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Translation Resource' +version '1.0.0' +description 'Translation resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Load client files +--- +files { + 'translations/*.json' +} + +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'server/main.lua' +} + +--- +--- Load translations +--- +translations { + 'translations/nl.json', + 'translations/en.json' +} \ No newline at end of file diff --git a/[required]/cvf_events/server/main.lua b/[required]/cvf_events/server/main.lua new file mode 100644 index 0000000..fc07e12 --- /dev/null +++ b/[required]/cvf_events/server/main.lua @@ -0,0 +1,474 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local pack = assert(table.pack) +local insert = assert(table.insert) +local remove = assert(table.remove) +local ipairs = assert(ipairs) +local pairs = assert(pairs) +local lower = assert(string.lower) +local match = assert(string.match) +local sub = assert(string.sub) +local xpcall = assert(xpcall) +local traceback = assert(debug.traceback) +local encode = assert(json.encode) +local Wait = assert(Citizen.Wait) + +--- FiveM cached global variables +local GetInvokingResource = assert(GetInvokingResource) +local GetNumPlayerIdentifiers = assert(GetNumPlayerIdentifiers) +local GetPlayerIdentifier = assert(GetPlayerIdentifier) +local GetPlayerName = assert(GetPlayerName) +local _AEH = assert(AddEventHandler) +local exports = assert(exports) + +--- Create a `events` class +---@class events +local events = setmetatable({ __class = 'events' }, {}) + +--- Set default values +events.events = {} +events.resourceName = corev:getCurrentResourceName() + +--- Register a function as on event trigger +---@param resource string Name of resource where event came from +---@param event string Name of event +---@param name table|string Name or Names of entities, categories etc. +---@param func function Function to execute on event trigger +function events:onEvent(resource, event, name, func) + resource = corev:ensure(resource, self.resourceName) + event = corev:ensure(event, 'unknown') + name = corev:ensure(name, corev:typeof(name) == 'table' and {} or 'unknown') + func = corev:ensure(func, function() end) + + if (corev:typeof(name) == 'table') then + for _, n in pairs(name) do + if (corev:typeof(n) == 'string') then + self:onEvent(event, n, func) + end + end + + return + end + + event = lower(event) + + if (name == 'unknown') then name = nil else name = lower(name) end + + if (self.events == nil) then self.events = {} end + if (self.events[event] == nil) then + self.events[event] = { + triggers = {}, + parameters = {} + } + end + + if (name == nil) then + insert(self.events[event].triggers, { + resource = resource, + func = func + }) + else + if (self.events[event].parameters[name] == nil) then + self.events[event].parameters[name] = {} + end + + insert(self.events[event].parameters[name], { + resource = resource, + func = func + }) + end +end + +--- Filter given arguments on `function` and `name/names` +function events:filterArguments(...) + local _n, _ns, _c = nil, nil, nil + local _ni, _nsi = 999, 999 + local arguments = pack(...) + + for i, argument in ipairs(arguments) do + local argumentType = corev:typeof(argument) + + if (argumentType == 'function' and _c == nil) then + _c = argument + elseif (argumentType == 'table' and _ns == nil) then + for _, name in ipairs(argument) do + local _arg = corev:ensure(name, 'unknown') + + if (_arg ~= 'unknown') then + if (_ns == nil) then + _ns = {} + _nsi = i + end + + insert(_ns, _arg) + end + end + elseif (_n == nil) then + local _arg = corev:ensure(argument, 'unknown') + + if (_arg ~= 'unknown') then + _n = _arg + _ni = i + end + end + end + + if (_n ~= nil and _c ~= nil and _ni < _nsi) then + return _c, _n + elseif (_ns ~= nil and _c ~= nil and _nsi < _ni) then + return _c, _ns + elseif (_c ~= nil) then + return _c, nil + end +end + +--- Register a new on event +---@param resource string Name of resource where event came from +---@param event string Name of event +function events:registerOnEvents(resource, event, ...) + resource = corev:ensure(resource, self.resourceName) + event = corev:ensure(event, 'unknown') + + if (event == 'unknown') then return end + + local callback, name = self:filterArguments(...) + + if (callback == nil) then return end + + self:onEvent(resource, event, name, callback) +end + +--- Unregister a on event +---@param resource string Name of resource where event came from +---@param event string Name of event +function events:removeEvents(resource, event, ...) + resource = corev:ensure(resource, self.resourceName) + event = corev:ensure(event, 'unknown') + + if (event == 'unknown') then return end + + local _, name = self:filterArguments(...) + + if (name == nil) then + local triggers = ((self.events or {})[event] or {}).triggers or {} + local parameters = ((self.events or {})[event] or {}).parameters or {} + + for index, triggerInfo in ipairs(triggers) do + if (triggerInfo.resource == resource) then + remove(self.events[event].triggers, index) + end + end + + for pName, parameterTable in ipairs(parameters) do + for index, triggerInfo in ipairs(parameterTable) do + if (triggerInfo.resource == resource) then + remove(self.events[event].parameters[pName], index) + end + end + end + elseif (corev:typeof(name) == 'table') then + for _, n in pairs(name) do + local parameters = (((self.events or {})[event] or {}).parameters or {})[n] or {} + + for index, triggerInfo in ipairs(parameters) do + if (triggerInfo.resource == resource) then + remove(self.events[event].parameters[n], index) + end + end + end + else + local parameters = (((self.events or {})[event] or {}).parameters or {})[name] or {} + + for index, triggerInfo in ipairs(parameters) do + if (triggerInfo.resource == resource) then + remove(self.events[event].parameters[name], index) + end + end + end +end + +--- This function will return player's identifiers as table +---@param source number Source or Player ID to get identifiers for +---@return table Founded identifiers for player +function events:getIdentifiersBySource(source) + source = corev:ensure(source, -1) + + local tableResults = { + steam = nil, + license = nil, + xbl = nil, + live = nil, + discord = nil, + fivem = nil, + ip = nil + } + + if (source < 0 or source == 0) then return tableResults end + + local numIds = GetNumPlayerIdentifiers(source) + + for i = 0, numIds - 1, 1 do + local identifier = corev:ensure(GetPlayerIdentifier(source, i), 'none') + + if (match(identifier, 'steam:')) then + tableResults.steam = sub(identifier, 7) + elseif (match(identifier, 'license:')) then + tableResults.license = sub(identifier, 9) + elseif (match(identifier, 'xbl:')) then + tableResults.xbl = sub(identifier, 5) + elseif (match(identifier, 'live:')) then + tableResults.live = sub(identifier, 6) + elseif (match(identifier, 'discord:')) then + tableResults.discord = sub(identifier, 9) + elseif (match(identifier, 'fivem:')) then + tableResults.fivem = sub(identifier, 7) + elseif (match(identifier, 'ip:')) then + tableResults.ip = sub(identifier, 4) + end + end + + return tableResults +end + +--- Generates adaptive card json based on given `title`, `description` and `banner` +---@param title string|nil Title under banner +---@param description string|nil Description under title +---@param banner string|nil Banner Banner used in card (URL) +---@return string Generated card as json +function events:generateCard(title, description, banner) + local cfgBanner = corev:ensure(corev:cfg('events', 'bannerUrl'), 'https://i.imgur.com/3XeDqC0.png') + local serverName = corev:ensure(corev:cfg('core', 'serverName'), 'CoreV Framework') + + local _tit = corev:t('connecting_title'):format(serverName) + local _desc = corev:t('connecting_description'):format(serverName) + + title = corev:ensure(title, _tit) + description = corev:ensure(description, _desc) + banner = corev:ensure(banner, cfgBanner) + + local card = { + ['type'] = 'AdaptiveCard', + ['body'] = { + { type = "Image", url = banner }, + { type = "TextBlock", size = "Medium", weight = "Bolder", text = title, horizontalAlignment = "Center" }, + { type = "TextBlock", text = description, wrap = true, horizontalAlignment = "Center" } + }, + ['$schema'] = "http://adaptivecards.io/schemas/adaptive-card.json", + ['version'] = "1.3" + } + + return encode(card) +end + +--- This function will generate a `presentCard` class +---@param deferrals any Deferrals from `playerConnecting` event +---@return presentCard Generated `presentCard` class +function events:getPresentCard(deferrals) + --- Create a `presentCard` class + ---@class presentCard + local presentCard = setmetatable({ __class = 'presentCard' }, {}) + + --- Set default values presentCard + presentCard.title = nil + presentCard.description = nil + presentCard.banner = nil + presentCard.deferrals = deferrals + + function presentCard:update() + local cardJson = events:generateCard(self.title, self.description, self.banner) + + self.deferrals.presentCard(cardJson) + end + + function presentCard:setTitle(title, update) + title = corev:ensure(title, 'unknown') + update = corev:ensure(update, true) + + if (title == 'unknown') then title = nil end + + self.title = title + + if (update) then self:update() end + end + + function presentCard:setDescription(description, update) + description = corev:ensure(description, 'unknown') + update = corev:ensure(update, true) + + if (description == 'unknown') then description = nil end + + self.description = description + + if (update) then self:update() end + end + + function presentCard:setBanner(banner, update) + banner = corev:ensure(banner, 'unknown') + update = corev:ensure(update, true) + + if (banner == 'unknown') then banner = nil end + + self.banner = banner + + if (update) then self:update() end + end + + function presentCard:reset(update) + update = corev:ensure(update, true) + + self.title = nil + self.description = nil + self.banner = nil + + if (update) then self:update() end + end + + function presentCard:override(card, ...) + self.deferrals.presentCard(card, ...) + end + + presentCard:update() + + return presentCard +end + +--- This event will be triggerd when a player is connecting +_AEH('playerConnecting', function(name, _, deferrals) + deferrals.defer() + + local source = corev:ensure(source, 0) + local triggers = ((events.events or {})['playerconnecting'] or {}).triggers or {} + + if (#triggers == 0) then + deferrals.done() + return + end + + local presentCard = events:getPresentCard(deferrals) + local pIdentifiers = events:getIdentifiersBySource(source) + local identifierType = corev:ensure(corev:cfg('core', 'identifierType'), 'license') + + identifierType = lower(identifierType) + + --- Create a `player` class + local player = corev.classes:createPlayerClass(source, name, pIdentifiers, pIdentifiers[identifierType] or nil) + + for _, trigger in pairs(triggers) do + local continue, canConnect, rejectMessage = false, false, nil + + presentCard:reset() + + local func = corev:ensure(trigger.func, function(_, done, _) done() end) + local ok = xpcall(func, traceback, player, function(msg) + msg = corev:ensure(msg, '') + canConnect = corev:ensure(msg == '', false) + + if (not canConnect) then + rejectMessage = msg + end + + continue = true + end, presentCard) + + repeat Wait(0) until continue == true + + if (not ok) then + canConnect = false + rejectMessage = corev:t('connecting_error'):format(trigger.resource) + end + + if (not canConnect) then + deferrals.done(rejectMessage) + return + end + end + + deferrals.done() +end) + +--- This event will be triggerd when a player is connecting +_AEH('playerDropped', function(reason) + reason = corev:ensure(reason, 'unknown') + + local source = corev:ensure(source, 0) + local triggers = ((events.events or {})['playerdropped'] or {}).triggers or {} + + if (#triggers == 0) then + return + end + + local pIdentifiers = events:getIdentifiersBySource(source) + local identifierType = corev:ensure(corev:cfg('core', 'identifierType'), 'license') + + identifierType = lower(identifierType) + + --- Create a `player` class + local player = corev.classes:createPlayerClass(source, GetPlayerName(source), pIdentifiers, pIdentifiers[identifierType] or nil) + + for _, trigger in pairs(triggers) do + local func = corev:ensure(trigger.func, function(_, done, _) done() end) + local ok = xpcall(func, traceback, player, reason) + + repeat Wait(0) until ok ~= nil + end +end) + +--- Remove `triggers` when matching `resource` is stopped +_AEH('onResourceStop', function(name) + name = corev:ensure(name, 'unknown') + + for event, info in pairs(events.events) do + info = corev:ensure(info, {}) + + for index, trigger in pairs(info.triggers or {}) do + if (trigger.resource == name) then + remove(events.events[event].triggers, index) + end + end + + for param, paramInfo in pairs(info.parameters or {}) do + paramInfo = corev:ensure(paramInfo, {}) + + for index, trigger in pairs(paramInfo) do + if (trigger.resource == name) then + remove(events.events[event].parameters[param], index) + end + end + end + end +end) + +--- Register a new on event +---@param event string Name of event +local function registerEvent(event, ...) + local _r = GetInvokingResource() + local resource = corev:ensure(_r, events.resourceName) + + events:registerOnEvents(resource, event, ...) +end + +--- Unregister a on event +---@param event string Name of event +local function removeEvent(event, ...) + local _r = GetInvokingResource() + local resource = corev:ensure(_r, events.resourceName) + + events:removeEvents(resource, event, ...) +end + +--- Register `registerEvent` and `removeEvent` as export function +exports('__add', registerEvent) +exports('__del', removeEvent) \ No newline at end of file diff --git a/[required]/cvf_events/translations/en.json b/[required]/cvf_events/translations/en.json new file mode 100644 index 0000000..fad1a80 --- /dev/null +++ b/[required]/cvf_events/translations/en.json @@ -0,0 +1,17 @@ +{ + "language": "en", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "connecting_error": "[ERROR] You cannot join because of an error in @%s:playerConnecting", + "connecting_title": "Connecting with %s", + "connecting_description": "You are currently connecting with %s please wait..." + } +} \ No newline at end of file diff --git a/[required]/cvf_events/translations/nl.json b/[required]/cvf_events/translations/nl.json new file mode 100644 index 0000000..82b9401 --- /dev/null +++ b/[required]/cvf_events/translations/nl.json @@ -0,0 +1,17 @@ +{ + "language": "nl", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "connecting_error": "[ERROR] U kunt niet joinen i.v.m. een error in @%s:playerConnecting", + "connecting_title": "Verbinden met %s", + "connecting_description": "U bent momenteel aan het verbinden met %s even geduld a.u.b." + } +} \ No newline at end of file diff --git a/[required]/cvf_identifier/fxmanifest.lua b/[required]/cvf_identifier/fxmanifest.lua new file mode 100644 index 0000000..34bf0a3 --- /dev/null +++ b/[required]/cvf_identifier/fxmanifest.lua @@ -0,0 +1,43 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Identifier Resource' +version '1.0.0' +description 'Identifier resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'server/main.lua' +} + +--- +--- Load translations +--- +translations { + 'translations/nl.json', + 'translations/en.json' +} + +--- +--- This stops clients from downloading anything of this resource. +--- +server_only 'yes' \ No newline at end of file diff --git a/[required]/cvf_identifier/migrations/0.lua b/[required]/cvf_identifier/migrations/0.lua new file mode 100644 index 0000000..fec7e9f --- /dev/null +++ b/[required]/cvf_identifier/migrations/0.lua @@ -0,0 +1,34 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local migration = {} + +--- Prevent migration from executing before dependend sql has been executed +migration.dependencies = {} + +--- Execute this sql after `dependencies` has been executed +migration.sql = [[ + CREATE TABLE `player_identifiers` ( + `id` INT NOT NULL AUTO_INCREMENT, + `name` VARCHAR(255) NOT NULL, + `steam` VARCHAR(255) NULL DEFAULT NULL, + `license` VARCHAR(255) NULL DEFAULT NULL, + `xbl` VARCHAR(255) NULL DEFAULT NULL, + `live` VARCHAR(255) NULL DEFAULT NULL, + `discord` VARCHAR(255) NULL DEFAULT NULL, + `fivem` VARCHAR(255) NULL DEFAULT NULL, + `ip` VARCHAR(255) NULL DEFAULT NULL, + `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (`id`) + ); +]] + +--- Returns current migration +return migration \ No newline at end of file diff --git a/[required]/cvf_identifier/server/main.lua b/[required]/cvf_identifier/server/main.lua new file mode 100644 index 0000000..2d1fe07 --- /dev/null +++ b/[required]/cvf_identifier/server/main.lua @@ -0,0 +1,199 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local lower = assert(string.lower) +local match = assert(string.match) +local sub = assert(string.sub) +local pairs = assert(pairs) +local exports = assert(exports) + +--- Mark this resource as `database` migration dependent resource +corev.db:migrationDependent() + +--- Create a `identifiers` class +---@class identifiers +local identifiers = setmetatable({ __class = 'identifiers' }, {}) + +--- Set default values +identifiers.players = {} + +--- Generates a `player` class for console, with source '0' +---@return player Generated `player` class for console +function identifiers:createConsole() + --- Create a new `player` class + return corev.classes:createPlayerClass(0, 'Console', { + steam = 'console', + license = 'console', + xbl = 'console', + live = 'console', + discord = 'console', + fivem = 'console', + ip = '127.0.0.1' + }, 'console') +end + +--- Add console as player +identifiers.players['console'] = identifiers:createConsole() + +--- Validate given identifier +---@param identifier string Identifier to check on +---@return string Identifier without `steam:`, `license:` etc. +---@return string Identifier Type: `steam`, `license` etc. +---@return boolean `true` if identifier is a primary identifier, otherwise `false` +function identifiers:getIdentifierInfo(identifier) + identifier = corev:ensure(identifier, 'unknown') + + if (identifier == 'unknown') then + return identifier, identifier, false + end + + local primaryIdentifierType = corev:ensure(corev:cfg('core', 'identifierType'), 'license') + + primaryIdentifierType = lower(primaryIdentifierType) + + if (match(identifier, 'steam:')) then + return sub(identifier, 7), 'steam', primaryIdentifierType == 'steam' + elseif (match(identifier, 'license:')) then + return sub(identifier, 9), 'license', primaryIdentifierType == 'license' + elseif (match(identifier, 'xbl:')) then + return sub(identifier, 5), 'xbl', primaryIdentifierType == 'xbl' + elseif (match(identifier, 'live:')) then + return sub(identifier, 6), 'live', primaryIdentifierType == 'live' + elseif (match(identifier, 'discord:')) then + return sub(identifier, 9), 'discord', primaryIdentifierType == 'discord' + elseif (match(identifier, 'fivem:')) then + return sub(identifier, 7), 'fivem', primaryIdentifierType == 'fivem' + elseif (match(identifier, 'ip:')) then + return sub(identifier, 4), 'ip', primaryIdentifierType == 'ip' + end + + local stringParts = corev:split(identifier, ':') + + if (#stringParts == 2) then + local identifierType = corev:ensure(stringParts[2], 'unknown') + local identifierValue = corev:ensure(stringParts[1], 'unknown') + + return identifierType, identifierValue, primaryIdentifierType == identifierType + end + + return identifier, primaryIdentifierType, true +end + +--- Will load all players identifiers based on given rawInput, returns live information or cached database information +---@param rawInput string|number Identifier like `steam:...`, `license:...` etc. +---@return player|nil A generated `player` class or nil if identifier can't be found +local function getPlayerIdentifiers(rawInput) + if (corev:typeof(rawInput) == 'number') then + for _, player in pairs(identifiers.players) do + if (corev:ensure(player.source, -2) == rawInput) then + return player + end + end + + return nil + end + + rawInput = corev:ensure(rawInput, 'unknown') + + if (rawInput == 'unknown') then return nil end + + local identifier, identifierType, isPrimaryIdentifier = + identifiers:getIdentifierInfo(rawInput) + + if (identifierType == 'unknown') then return nil end + + if (isPrimaryIdentifier) then + if (identifiers.players[identifier] ~= nil) then + return identifiers.players[identifier] + end + end + + local primaryIdentifierType = lower(corev:ensure(corev:cfg('core', 'identifierType'), 'license')) + local sqlQuery = ('SELECT * FROM `player_identifiers` WHERE `%s` = @identifier ORDER BY `id` DESC LIMIT 1'):format(identifierType) + local latestIdentifiers = corev.db:fetchAll(sqlQuery, { + ['@identifier'] = identifier + }) + + latestIdentifiers = corev:ensure(latestIdentifiers, {}) + + if (#latestIdentifiers > 0) then + --- Create a new `player` class + local player = corev.classes:createPlayerClass(nil, corev:ensure(latestIdentifiers[1].name, 'Unknown'), + { + steam = latestIdentifiers[1].steam, + license = latestIdentifiers[1].license, + xbl = latestIdentifiers[1].xbl, + live = latestIdentifiers[1].live, + discord = latestIdentifiers[1].discord, + fivem = latestIdentifiers[1].fivem, + ip = latestIdentifiers[1].ip + }, (latestIdentifiers[1] or {})[primaryIdentifierType] or nil) + + if (player.identifier == nil) then return player end + + identifiers.players[player.identifier] = player + + return player + end + + return nil +end + +--- This event will be trigger when a player is connecting +corev.events:onPlayerConnect(function(player, done) + --- Store player identifiers for later use + corev.db:execute('INSERT INTO `player_identifiers` (`name`, `steam`, `license`, `xbl`, `live`, `discord`, `fivem`, `ip`) VALUES (@name, @steam, @license, @xbl, @live, @discord, @fivem, @ip)', { + ['@name'] = player.name, + ['@steam'] = player.identifiers.stream, + ['@license'] = player.identifiers.license, + ['@xbl'] = player.identifiers.xbl, + ['@live'] = player.identifiers.live, + ['@discord'] = player.identifiers.discord, + ['@fivem'] = player.identifiers.fivem, + ['@ip'] = player.identifiers.ip + }) + + if (player.identifier == nil) then + --- Load default framework's identifier + local identifierType = corev:ensure(corev:cfg('core', 'identifierType'), 'license') + + identifierType = lower(identifierType) + + done(corev:t(('%s_not_found'):format(identifierType))) + return + end + + --- Create a new `player` class + local vPlayer = corev.classes:createPlayerClass(player.source, player.name, player.identifiers, player.identifier) + + --- Save player for later access + identifiers.players[vPlayer.identifier] = vPlayer + + done() +end) + +--- This event will be triggerd when a player is disconnected +corev.events:onPlayerDisconnect(function(player) + if (player.identifier == nil) then + return + end + + if (identifiers.players[player.identifier] ~= nil) then + identifiers.players[player.identifier].source = nil + end +end) + +--- Register `getPlayerIdentifiers` as export function +exports('__g', getPlayerIdentifiers) \ No newline at end of file diff --git a/[required]/cvf_identifier/translations/en.json b/[required]/cvf_identifier/translations/en.json new file mode 100644 index 0000000..de8b5ed --- /dev/null +++ b/[required]/cvf_identifier/translations/en.json @@ -0,0 +1,23 @@ +{ + "language": "en", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "check_identifiers": "[%s] We are loading your identifiers...", + "identifiers_not_found": "We could not find your identity, please reconnect or try again later", + "steam_not_found": "You must have your Steam client open to connect to this server", + "license_not_found": "You must have a valid GTA5 license to connect to this server", + "xbl_not_found": "You must have your XBOX Live account connected to FiveM in order to join this server", + "live_not_found": "You must have your Microsoft account connected to FiveM in order to join this server", + "discord_not_found": "You must have your Discord account connected to FiveM in order to join this server", + "fivem_not_found": "You must have connected your FiveM Forum account to FiveM, create an account at https://forum.cfx.re/ and link it to FiveM", + "ip_not_found": "We need to be able to detect your IP to allow you on the server" + } +} \ No newline at end of file diff --git a/[required]/cvf_identifier/translations/nl.json b/[required]/cvf_identifier/translations/nl.json new file mode 100644 index 0000000..6e5f80b --- /dev/null +++ b/[required]/cvf_identifier/translations/nl.json @@ -0,0 +1,23 @@ +{ + "language": "nl", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "check_identifiers": "[%s] Wij zijn uw identifiers aan het laden...", + "identifiers_not_found": "Wij konden uw identiteit niet vaststellen, probeer a.u.b. opnieuw te joinen", + "steam_not_found": "U moet uw Steam client open hebben om met deze server te kunnen verbinden", + "license_not_found": "U moet een geldige GTA5 licentie hebben om met deze server te kunnen verbinden", + "xbl_not_found": "U moet uw XBOX Live account gekoppeld hebben om met deze server te kunnen verbinden", + "live_not_found": "U moet uw Microsoft account gekoppeld hebben om met deze server te kunnen verbinden", + "discord_not_found": "U moet uw Discord account gekoppeld hebben aan FiveM om met deze server te kunnen verbinden", + "fivem_not_found": "U moet uw FiveM Forum account gekoppeld hebben, maak een account op https://forum.cfx.re/ en koppel deze aan FiveM", + "ip_not_found": "Wij moeten uw IP kunnen traceren om u toe te laten op de server" + } +} \ No newline at end of file diff --git a/debug/external_resources/.gitkeep b/[required]/cvf_ipls/fxmanifest.lua similarity index 100% rename from debug/external_resources/.gitkeep rename to [required]/cvf_ipls/fxmanifest.lua diff --git a/[required]/cvf_skins/classes/skin.lua b/[required]/cvf_skins/classes/skin.lua new file mode 100644 index 0000000..c0d110b --- /dev/null +++ b/[required]/cvf_skins/classes/skin.lua @@ -0,0 +1,569 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_client +local corev = assert(corev_client) +local skin_funcs = assert(skin_funcs) +local loadTattoos = assert(loadTattoos) +local pairs = assert(pairs) +local GetNumberOfPedDrawableVariations = assert(GetNumberOfPedDrawableVariations) +local GetNumberOfPedPropDrawableVariations = assert(GetNumberOfPedPropDrawableVariations) +local GetNumHeadOverlayValues = assert(GetNumHeadOverlayValues) +local GetNumHairColors = assert(GetNumHairColors) +local GetPedDrawableVariation = assert(GetPedDrawableVariation) +local GetNumberOfPedTextureVariations = assert(GetNumberOfPedTextureVariations) +local GetPedTextureVariation = assert(GetPedTextureVariation) +local GetPedPropIndex = assert(GetPedPropIndex) +local GetNumberOfPedPropTextureVariations = assert(GetNumberOfPedPropTextureVariations) +local GetPedPropTextureIndex = assert(GetPedPropTextureIndex) +local __GetPedHeadOverlayValue = assert(GetPedHeadOverlayValue) + +--- Wrapper for GetPedHeadOverlayValue +local function GetPedHeadOverlayValue(ped, index) + local value = __GetPedHeadOverlayValue(ped, index) + + if (value ~= 255) then return value end + + return 0 +end + +--- Returns a `skin_options` classed based on given `ped` +---@param ped any Any ped entity +---@return skin_options Skin +function GeneratePedSkin(ped) + --- Makes sure that ped exists + ped = corev:ensure(ped, PlayerPedId()) + + --- Load and checks ped model + local pedModel = GetEntityModel(ped) + local isMP = pedModel == GetHashKey('mp_m_freemode_01') or pedModel == GetHashKey('mp_f_freemode_01') + local isMale = pedModel == GetHashKey('mp_m_freemode_01') or IsPedMale(ped) + + --- Create a skin_options class + ---@class skin_options + local skin_options = setmetatable({ __class = 'skin_options' }, {}) + local __index = 0 + + --- Set default values + skin_options.ped = ped + skin_options.isMultiplayerPed = isMP + skin_options.isMale = isMale + skin_options.isFemale = not isMale + skin_options.options = {} + + --- Create a skin option + ---@param name string Name for option identification + ---@param min number Number of minimal results + ---@param max number Number of maximum results + ---@param value number Current number on ped + ---@return skin_option Generated skin option + function skin_options:createOptions(name, min, max, value) + __index = __index + 1 + name = corev:ensure(name, 'unknown') + min = corev:ensure(min, 0) + max = corev:ensure(max, 0) + value = corev:ensure(value, min) + + if (name == 'unknown') then return nil end + + --- Create a `skin_option` class + ---@class skin_option + local skin_option = setmetatable({ __class = 'skin_option' }, {}) + + --- Set default value + skin_option.index = __index + skin_option.name = name + skin_option.min = min + skin_option.max = max + skin_option.value = value + + return skin_option + end + + --- Create a skin category + ---@param name string Name of category + function skin_options:createCategory(name) + name = corev:ensure(name, 'unknown') + + --- Create a `skin_category` class + ---@class skin_category + local skin_category = setmetatable({ __class = 'skin_category' }, {}) + + skin_category.name = name + skin_category.options = {} + + --- Add a `skin_option` class to current category + ---@param _name string Name for option identification + ---@param min number Number of minimal results + ---@param max number Number of maximum results + function skin_category:addOption(_name, min, max, value) + _name = corev:ensure(_name, 'unknown') + min = corev:ensure(min, 0) + max = corev:ensure(max, 0) + value = corev:ensure(value, 0) + + if (_name == 'unknown') then return nil end + + self.options[_name] = skin_options:createOptions(('%s.%s'):format(self.name, _name), min, max, value) + end + + return skin_category + end + + --- Transform current skin into table + function skin_options:toTable() + local result = {} + + for index, option in pairs(self.options) do + result[index] = option.value + end + + return result + end + + --- Returns `skin_option` based on `input` + ---@param input any Any input + ---@return skin_option|nil Skin option based on `input` + function skin_options:getOption(input) + if (input == nil) then return nil end + + local inputType = corev:typeof(input) + + if (inputType == 'number') then + if (self.options[input] ~= nil) then + return self.options[input] + end + + return nil + end + + if (inputType == 'string') then + for key, option in pairs(self.options) do + if (option.name == input) then + return self.options[key] + end + end + + return nil + end + + return nil + end + + --- #inheritance + skin_options.inheritance = skin_options:createCategory('inheritance') + skin_options.inheritance:addOption('father', 0, 46, 0) + skin_options.inheritance:addOption('mother', 0, 46, 0) + skin_options.inheritance:addOption('shapeMix', 0, 10, 0) + skin_options.inheritance:addOption('skinMix', 0, 10, 0) + + --- #inheritance + + --- #appearance + skin_options.appearance = { + hair = skin_options:createCategory('hair'), + blemishes = skin_options:createCategory('blemishes'), + beard = skin_options:createCategory('beard'), + eyebrows = skin_options:createCategory('eyebrows'), + ageing = skin_options:createCategory('ageing'), + makeup = skin_options:createCategory('makeup'), + blush = skin_options:createCategory('blush'), + complexion = skin_options:createCategory('complexion'), + sun_damage = skin_options:createCategory('sun_damage'), + lipstick = skin_options:createCategory('lipstick'), + moles_freckles = skin_options:createCategory('moles_freckles'), + chest_hair = skin_options:createCategory('chest_hair'), + body_blemishes = skin_options:createCategory('body_blemishes'), + add_body_blemishes = skin_options:createCategory('add_body_blemishes'), + eyes = skin_options:createCategory('eyes') + } + + local numberOfColors = GetNumHairColors() + + --- #appearance -> hair + skin_options.appearance.hair:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 2) + 1, GetPedDrawableVariation(ped, 2)) + skin_options.appearance.hair:addOption('color', 0, numberOfColors, 0) + skin_options.appearance.hair:addOption('highlight', 0, numberOfColors, 0) + --- #appearance -> blemishes + skin_options.appearance.blemishes:addOption('style', 0, GetNumHeadOverlayValues(0), GetPedHeadOverlayValue(ped, 0)) + skin_options.appearance.blemishes:addOption('opacity', 0, 10, 0) + --- #appearance -> beard + skin_options.appearance.beard:addOption('style', 0, GetNumHeadOverlayValues(1), GetPedHeadOverlayValue(ped, 1)) + skin_options.appearance.beard:addOption('opacity', 0, 10, 0) + skin_options.appearance.beard:addOption('color', 0, numberOfColors, 0) + --- #appearance -> eyebrows + skin_options.appearance.eyebrows:addOption('style', 0, GetNumHeadOverlayValues(2), GetPedHeadOverlayValue(ped, 2)) + skin_options.appearance.eyebrows:addOption('opacity', 0, 10, 0) + skin_options.appearance.eyebrows:addOption('color', 0, numberOfColors, 0) + --- #appearance -> ageing + skin_options.appearance.ageing:addOption('style', 0, GetNumHeadOverlayValues(3), GetPedHeadOverlayValue(ped, 3)) + skin_options.appearance.ageing:addOption('opacity', 0, 10, 0) + --- #appearance -> makeup + skin_options.appearance.makeup:addOption('style', 0, GetNumHeadOverlayValues(4), GetPedHeadOverlayValue(ped, 4)) + skin_options.appearance.makeup:addOption('opacity', 0, 10, 0) + skin_options.appearance.makeup:addOption('color', 0, numberOfColors, 0) + --- #appearance -> blush + skin_options.appearance.blush:addOption('style', 0, GetNumHeadOverlayValues(5), GetPedHeadOverlayValue(ped, 5)) + skin_options.appearance.blush:addOption('opacity', 0, 10, 0) + skin_options.appearance.blush:addOption('color', 0, numberOfColors, 0) + --- #appearance -> complexion + skin_options.appearance.complexion:addOption('style', 0, GetNumHeadOverlayValues(6), GetPedHeadOverlayValue(ped, 6)) + skin_options.appearance.complexion:addOption('opacity', 0, 10, 0) + --- #appearance -> sun_damage + skin_options.appearance.sun_damage:addOption('style', 0, GetNumHeadOverlayValues(7), GetPedHeadOverlayValue(ped, 7)) + skin_options.appearance.sun_damage:addOption('opacity', 0, 10, 0) + --- #appearance -> lipstick + skin_options.appearance.lipstick:addOption('style', 0, GetNumHeadOverlayValues(8), GetPedHeadOverlayValue(ped, 8)) + skin_options.appearance.lipstick:addOption('opacity', 0, 10, 0) + skin_options.appearance.lipstick:addOption('color', 0, numberOfColors, 0) + --- #appearance -> moles_freckles + skin_options.appearance.moles_freckles:addOption('style', 0, GetNumHeadOverlayValues(9), GetPedHeadOverlayValue(ped, 9)) + skin_options.appearance.moles_freckles:addOption('opacity', 0, 10, 0) + --- #appearance -> chest_hair + skin_options.appearance.chest_hair:addOption('style', 0, GetNumHeadOverlayValues(10), GetPedHeadOverlayValue(ped, 10)) + skin_options.appearance.chest_hair:addOption('opacity', 0, 10, 0) + skin_options.appearance.chest_hair:addOption('color', 0, numberOfColors, 0) + --- #appearance -> body_blemishes + skin_options.appearance.body_blemishes:addOption('style', 0, GetNumHeadOverlayValues(11), GetPedHeadOverlayValue(ped, 11)) + skin_options.appearance.body_blemishes:addOption('opacity', 0, 10, 0) + --- #appearance -> add_body_blemishes + skin_options.appearance.add_body_blemishes:addOption('style', 0, GetNumHeadOverlayValues(12), GetPedHeadOverlayValue(ped, 12)) + skin_options.appearance.add_body_blemishes:addOption('opacity', 0, 10, 0) + --- #appearance + + --- #clothing + skin_options.clothing = { + mask = skin_options:createCategory('mask'), + upper_body = skin_options:createCategory('upper_body'), + lower_body = skin_options:createCategory('lower_body'), + bag = skin_options:createCategory('bag'), + shoe = skin_options:createCategory('shoe'), + chain = skin_options:createCategory('chain'), + accessory = skin_options:createCategory('accessory'), + body_armor = skin_options:createCategory('body_armor'), + badge = skin_options:createCategory('badge'), + overlay = skin_options:createCategory('overlay') + } + + --- Clothing cached values + local cachedValues = { + mask = GetPedDrawableVariation(ped, 1), + upper_body = GetPedDrawableVariation(ped, 3), + lower_body = GetPedDrawableVariation(ped, 4), + bag = GetPedDrawableVariation(ped, 5), + shoe = GetPedDrawableVariation(ped, 6), + chain = GetPedDrawableVariation(ped, 7), + accessory = GetPedDrawableVariation(ped, 8), + body_armor = GetPedDrawableVariation(ped, 9), + badge = GetPedDrawableVariation(ped, 10), + overlay = GetPedDrawableVariation(ped, 11) + } + + --- #clothing -> mask + skin_options.clothing.mask:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 1), cachedValues.mask) + skin_options.clothing.mask:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 1, cachedValues.mask), GetPedTextureVariation(ped, 1)) + --- #clothing -> upper_body + skin_options.clothing.upper_body:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 3), cachedValues.upper_body) + skin_options.clothing.upper_body:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 3, cachedValues.upper_body), GetPedTextureVariation(ped, 3)) + --- #clothing -> lower_body + skin_options.clothing.lower_body:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 4), cachedValues.lower_body) + skin_options.clothing.lower_body:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 4, cachedValues.lower_body), GetPedTextureVariation(ped, 4)) + --- #clothing -> bag + skin_options.clothing.bag:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 5), cachedValues.bag) + skin_options.clothing.bag:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 5, cachedValues.bag), GetPedTextureVariation(ped, 5)) + --- #clothing -> shoe + skin_options.clothing.shoe:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 6), cachedValues.shoe) + skin_options.clothing.shoe:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 6, cachedValues.shoe), GetPedTextureVariation(ped, 6)) + --- #clothing -> chain + skin_options.clothing.chain:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 7), cachedValues.chain) + skin_options.clothing.chain:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 7, cachedValues.chain), GetPedTextureVariation(ped, 7)) + --- #clothing -> accessory + skin_options.clothing.accessory:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 8), cachedValues.accessory) + skin_options.clothing.accessory:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 8, cachedValues.accessory), GetPedTextureVariation(ped, 8)) + --- #clothing -> body_armor + skin_options.clothing.body_armor:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 9), cachedValues.body_armor) + skin_options.clothing.body_armor:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 9, cachedValues.body_armor), GetPedTextureVariation(ped, 9)) + --- #clothing -> badge + skin_options.clothing.badge:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 10), cachedValues.badge) + skin_options.clothing.badge:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 10, cachedValues.badge), GetPedTextureVariation(ped, 10)) + --- #clothing -> overlay + skin_options.clothing.overlay:addOption('style', 0, GetNumberOfPedDrawableVariations(ped, 11), cachedValues.overlay) + skin_options.clothing.overlay:addOption('variant', 0, GetNumberOfPedTextureVariations(ped, 11, cachedValues.overlay), GetPedTextureVariation(ped, 11)) + --- #clothing + + --- #props + skin_options.props = { + hats = skin_options:createCategory('hats'), + glasses = skin_options:createCategory('glasses'), + misc = skin_options:createCategory('misc'), + watches = skin_options:createCategory('watches'), + bracelets = skin_options:createCategory('bracelets') + } + + --- Clothing cached values + local cachedPropsValues = { + hats = GetPedPropIndex(ped, 0), + glasses = GetPedPropIndex(ped, 1), + misc = GetPedPropIndex(ped, 2), + watches = GetPedPropIndex(ped, 6), + bracelets = GetPedPropIndex(ped, 7) + } + + --- #props -> hats + skin_options.props.hats:addOption('style', -1, GetNumberOfPedPropDrawableVariations(ped, 0), cachedPropsValues.hats) + skin_options.props.hats:addOption('variant', 0, GetNumberOfPedPropTextureVariations(ped, 0, cachedPropsValues.hats), GetPedPropTextureIndex(ped, 0)) + --- #props -> glasses + skin_options.props.glasses:addOption('style', -1, GetNumberOfPedPropDrawableVariations(ped, 1), cachedPropsValues.glasses) + skin_options.props.glasses:addOption('variant', 0, GetNumberOfPedPropTextureVariations(ped, 1, cachedPropsValues.glasses), GetPedPropTextureIndex(ped, 1)) + --- #props -> misc + skin_options.props.misc:addOption('style', -1, GetNumberOfPedPropDrawableVariations(ped, 2), cachedPropsValues.misc) + skin_options.props.misc:addOption('variant', 0, GetNumberOfPedPropTextureVariations(ped, 2, cachedPropsValues.misc), GetPedPropTextureIndex(ped, 2)) + --- #props -> watches + skin_options.props.watches:addOption('style', -1, GetNumberOfPedPropDrawableVariations(ped, 6), cachedPropsValues.watches) + skin_options.props.watches:addOption('variant', 0, GetNumberOfPedPropTextureVariations(ped, 6, cachedPropsValues.watches), GetPedPropTextureIndex(ped, 6)) + --- #props -> bracelets + skin_options.props.bracelets:addOption('style', -1, GetNumberOfPedPropDrawableVariations(ped, 7), cachedPropsValues.bracelets) + skin_options.props.bracelets:addOption('variant', 0, GetNumberOfPedPropTextureVariations(ped, 7, cachedPropsValues.bracelets), GetPedPropTextureIndex(ped, 7)) + --- #props + + --- Update index references + function skin_options:updateRefs() + --- #inheritance + for key, inheritance_option in pairs((self.inheritance or {}).options or {}) do + self.options[inheritance_option.index] = self.inheritance.options[key] + end + --- #inheritance + + --- #appearance + for categoryKey, appearance_category in pairs(self.appearance or {}) do + for key, category_option in pairs(appearance_category.options or {}) do + self.options[category_option.index] = self.appearance[categoryKey].options[key] + end + end + --- #appearance + + --- #clothing + for categoryKey, clothing_category in pairs(self.clothing or {}) do + for key, category_option in pairs(clothing_category.options or {}) do + self.options[category_option.index] = self.clothing[categoryKey].options[key] + end + end + --- #clothing + + --- #props + for categoryKey, prop_category in pairs(self.props or {}) do + for key, category_option in pairs(prop_category.options or {}) do + self.options[category_option.index] = self.props[categoryKey].options[key] + end + end + --- #props + + --- #tattoos + for categoryKey, tattoo_category in pairs(self.tattoos or {}) do + for key, category_option in pairs(tattoo_category.options or {}) do + self.options[category_option.index] = self.tattoos[categoryKey].options[key] + end + end + --- #tattoos + end + + --- Returns if key matches pattern + ---@param key string Given input key + ---@param pattern string Pattern to check for + ---@return boolean `true` if matches, otherwise `false` + function skin_options:keyMatch(key, pattern) + if (type(pattern) == 'table') then + for _, ptrn in pairs(pattern) do + if (string.match(key, ptrn .. '%..*') ~= nil) then + return true + end + end + + return false + end + + return string.match(key, pattern .. '%..*') ~= nil + end + + --- Returns if key matches pattern + ---@param key string Given input key + ---@param pattern string Pattern to check for + ---@return string|nil Results from match + function skin_options:getKey(key, pattern) + if (type(pattern) == 'table') then + for inx, ptrn in pairs(pattern) do + local result = string.match(key, ptrn .. '%..*') + + if (result ~= nil) then + return result, inx + end + end + + return nil, 0 + end + + return string.match(key, pattern .. '%..*'), 0 + end + + --- Update the ped + function skin_options:triggerUpdate(key) + key = corev:ensure(key, 'none') + + --- local key table for code reuse and better readability | #apperaance + local apperaanceKeys = { + [1] = 'blemishes', [2] = 'beard', [3] = 'eyebrows', [4] = 'ageing', + [5] = 'makeup', [6] = 'blush', [7] = 'complexion', [8] = 'sun_damage', + [9] = 'lipstick', [10] = 'moles_freckles', [11] = 'chest_hair', [12] = 'body_blemishes', + [13] = 'add_body_blemishes' + } + + --- local key table for code reuse and better readability | #clothing + local clothingKeys = { + [1] = 'mask', [2] = 'not_used', [3] = 'upper_body', [4] = 'lower_body', + [5] = 'bag', [6] = 'shoe', [7] = 'chain', [8] = 'accessory', + [9] = 'body_armor', [10] = 'badge', [11] = 'overlay' + } + + --- local key table for code reuse and better readability | #clothing + local propKeys = { + [1] = 'hats', [2] = 'glasses', [3] = 'misc', [7] = 'watches', + [8] = 'bracelets' + } + + --- local key table for code reuse and better readability | #clothing + local tattooKeys = { + [1] = 'tattoo_torso', [2] = 'tattoo_head', [3] = 'tattoo_left_arm', [4] = 'tattoo_right_arm', + [5] = 'tattoo_left_leg', [6] = 'tattoo_right_leg', [7] = 'tattoo_badges' + } + + if (self:keyMatch(key, 'inheritance')) then + skin_funcs:updateInheritance(self) + elseif (self:keyMatch(key, 'hair')) then + skin_funcs:updateAppearanceHair(self) + elseif (self:keyMatch(key, apperaanceKeys)) then + local apperaanceKey, keyIndex = self:getKey(key, apperaanceKeys) + + if (apperaanceKey ~= nil) then + apperaanceKey = corev:split(apperaanceKey, '.')[1] + + skin_funcs:updateAppearance(self, apperaanceKey, keyIndex) + end + elseif (self:keyMatch(key, clothingKeys)) then + local clothingKey, keyIndex = self:getKey(key, clothingKeys) + + if (clothingKey ~= nil) then + clothingKey = corev:split(clothingKey, '.')[1] + + skin_funcs:updateClothing(self, clothingKey, keyIndex) + end + elseif (self:keyMatch(key, propKeys)) then + local propKey, keyIndex = self:getKey(key, propKeys) + + if (propKey ~= nil) then + propKey = corev:split(propKey, '.')[1] + + skin_funcs:updateProp(self, propKey, keyIndex - 1) + end + elseif (self:keyMatch(key, tattooKeys)) then + skin_funcs:updateTattoos(self) + end + end + + --- Update a skin option + function skin_options:updateValue(key, value, execute) + local option = self:getOption(key) + + if (option == nil) then return end + + value = corev:ensure(value, 0) + execute = corev:ensure(execute, false) + + if (option.min >= value) then + value = option.min + elseif (option.max <= value) then + value = option.max + end + + if (option.min <= value and option.max >= value) then + option.value = value + end + + if (execute) then + self:triggerUpdate(option.name) + end + end + + --- Refresh player skin + function skin_options:refresh() + --- local key table for code reuse and better readability | #apperaance + local apperaanceKeys = { + [1] = 'blemishes', [2] = 'beard', [3] = 'eyebrows', [4] = 'ageing', + [5] = 'makeup', [6] = 'blush', [7] = 'complexion', [8] = 'sun_damage', + [9] = 'lipstick', [10] = 'moles_freckles', [11] = 'chest_hair', [12] = 'body_blemishes', + [13] = 'add_body_blemishes' + } + + --- local key table for code reuse and better readability | #clothing + local clothingKeys = { + [1] = 'mask', [3] = 'upper_body', [4] = 'lower_body', [5] = 'bag', + [6] = 'shoe', [7] = 'chain', [8] = 'accessory', [9] = 'body_armor', + [10] = 'badge', [11] = 'overlay' + } + + --- local key table for code reuse and better readability | #clothing + local propKeys = { + [1] = 'hats', [2] = 'glasses', [3] = 'misc', [7] = 'watches', + [8] = 'bracelets' + } + + skin_funcs:updateInheritance(self) + skin_funcs:updateAppearanceHair(self) + + --- #appearance + for index, key in pairs(apperaanceKeys) do + skin_funcs:updateAppearance(self, key, index) + end + --- #appearance + --- #clothing + for index, key in pairs(clothingKeys) do + skin_funcs:updateClothing(self, key, index) + end + --- #clothing + --- #prop + for index, key in pairs(propKeys) do + skin_funcs:updateProp(self, key, index) + end + --- #prop + + skin_funcs:updateTattoos(self) + end + + --- Update skin based on given table + function skin_options:update(table) + table = corev:ensure(table, {}) + + for idx, vlu in pairs(table) do + self:updateValue(idx, vlu, false) + end + end + + --- Load skin tattoos + loadTattoos(skin_options) + + --- Update index references + skin_options:updateRefs() + + return skin_options +end + +_G.GeneratePedSkin = GeneratePedSkin \ No newline at end of file diff --git a/[required]/cvf_skins/classes/skin_funcs.lua b/[required]/cvf_skins/classes/skin_funcs.lua new file mode 100644 index 0000000..909d025 --- /dev/null +++ b/[required]/cvf_skins/classes/skin_funcs.lua @@ -0,0 +1,179 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_client +local corev = assert(corev_client) +local getTattooData = assert(getTattooData) +local pairs = assert(pairs) +local upper = assert(string.upper) +local lower = assert(string.lower) +local GetHashKey = assert(GetHashKey) +local SetPedHeadBlendData = assert(SetPedHeadBlendData) +local SetPedHairColor = assert(SetPedHairColor) +local SetPedComponentVariation = assert(SetPedComponentVariation) +local SetPedHeadOverlay = assert(SetPedHeadOverlay) +local SetPedHeadOverlayColor = assert(SetPedHeadOverlayColor) +local GetNumberOfPedTextureVariations = assert(GetNumberOfPedTextureVariations) +local GetNumberOfPedPropTextureVariations = assert(GetNumberOfPedPropTextureVariations) +local ClearPedProp = assert(ClearPedProp) +local SetPedPropIndex = assert(SetPedPropIndex) +local ClearPedDecorations = assert(ClearPedDecorations) +local AddPedDecorationFromHashes = assert(AddPedDecorationFromHashes) + +--- Create `skin_funcs` class +---@class skin_funcs +local skin_funcs = setmetatable({ __class = 'skin_funcs' }, {}) + +--- Checks if `input` exsists in `list` +---@param input number Any number +---@param list number[] List of numbers +---@return boolean `true` if `input` has been found, otherwise `false` +function skin_funcs:any(input, list) + input = corev:ensure(input, -1) + list = corev:ensure(list, {}) + + for _, item in pairs(list) do + if (item == input) then + return true + end + end + + return false +end + +--- Update category `inheritance` based on given `skin_options` +---@param skin_options skin_options Skin options +function skin_funcs:updateInheritance(skin_options) + local _father = (skin_options:getOption('inheritance.father') or {}).value or 0 + local _mother = (skin_options:getOption('inheritance.mother') or {}).value or 0 + local _shapeMix = (skin_options:getOption('inheritance.shapeMix') or {}).value or 0 + local _skinMix = (skin_options:getOption('inheritance.skinMix') or {}).value or 0 + + _shapeMix, _skinMix = _shapeMix + 0.0, _skinMix + 0.0 + + SetPedHeadBlendData(skin_options.ped, _father, _mother, 0, _father, _mother, 0, _shapeMix, _skinMix, 0.0, false) +end + +--- Update category `inheritance` based on given `skin_options` +---@param skin_options skin_options Skin options +function skin_funcs:updateAppearanceHair(skin_options) + local _style = (skin_options:getOption('hair.style') or {}).value or 0 + local _color = (skin_options:getOption('hair.color') or {}).value or 0 + local _highlight = (skin_options:getOption('hair.highlight') or {}).value or 0 + + SetPedHairColor(skin_options.ped, _color, _highlight) + SetPedComponentVariation(skin_options.ped, 2, _style, _style) +end + +--- Update category `appearance` based on given `skin_options` +---@param skin_options skin_options Skin options +function skin_funcs:updateAppearance(skin_options, key, index) + key = corev:ensure(key, 'unknown') + index = corev:ensure(index, -1) + + local _style = (skin_options:getOption(('%s.style'):format(key)) or {}).value or 0 + local _color = (skin_options:getOption(('%s.color'):format(key)) or {}).value or 0 + local _opacity = (skin_options:getOption(('%s.opacity'):format(key)) or {}).value or 0 + + if (index < 0) then return end + + _opacity = _opacity + 0.0 + + if (self:any(index, { 0, 3, 6, 7, 9, 11, 12 })) then + SetPedHeadOverlay(skin_options.ped, index, _style, _opacity) + elseif (self:any(index, { 1, 2, 10 })) then + SetPedHeadOverlay(skin_options.ped, index, _style, _opacity) + SetPedHeadOverlayColor(skin_options.ped, index, 1, _color, _color) + elseif (self:any(index, { 4, 5, 8 })) then + SetPedHeadOverlay(skin_options.ped, index, _style, _opacity) + SetPedHeadOverlayColor(skin_options.ped, index, 2, _color, _color) + end +end + +--- Update category `clothing` based on given `skin_options` +---@param skin_options skin_options Skin options +function skin_funcs:updateClothing(skin_options, key, index) + key = corev:ensure(key, 'unknown') + index = corev:ensure(index, -1) + + local _style = (skin_options:getOption(('%s.style'):format(key)) or {}).value or 0 + local _variantOption = skin_options:getOption(('%s.variant'):format(key)) + local _variant = (_variantOption or {}).value or 0 + + if (index < 0) then return end + + SetPedComponentVariation(skin_options.ped, index, _style, _variant) + + local newMax = GetNumberOfPedTextureVariations(skin_options.ped, index, _style) + + if (_variantOption ~= nil) then + _variantOption.max = newMax + + skin_options:updateValue(_variantOption.name, _variant, false) + end +end + +--- Update category `props` based on given `skin_options` +---@param skin_options skin_options Skin options +function skin_funcs:updateProp(skin_options, key, index) + key = corev:ensure(key, 'unknown') + index = corev:ensure(index, -1) + + local _style = (skin_options:getOption(('%s.style'):format(key)) or {}).value or -1 + local _variantOption = skin_options:getOption(('%s.variant'):format(key)) + local _variant = (_variantOption or {}).value or 0 + + if (index < 0) then return end + + if (_style == -1) then + ClearPedProp(skin_options.ped, index) + else + SetPedPropIndex(skin_options.ped, index, _style, _variant, 2) + + local newMax = GetNumberOfPedPropTextureVariations(skin_options.ped, index, _style) + + if (_variantOption ~= nil) then + _variantOption.max = newMax + + skin_options:updateValue(_variantOption.name, _variant, false) + end + end +end + +--- Update category `tattoo` based on given `skin_options` +---@param skin_options skin_options Skin options +function skin_funcs:updateTattoos(skin_options) + local tattooData = getTattooData(skin_options.isMale and 'male' or 'female') + + ClearPedDecorations(skin_options.ped) + + for categoryKey, tattoo_category in pairs(skin_options.tattoos or {}) do + for _, category_option in pairs(tattoo_category.options or {}) do + local value = category_option.value or 0 + + if (value > 0) then + local header = upper(corev:replace(categoryKey, 'tattoo_', '')) + local categoryName = ('tattoo_%s.'):format(lower(header)) + local dlc = corev:replace(category_option.name, categoryName, '') + local nameOfTatto = ((tattooData[header] or {})[dlc] or {})[value] or 'unknown' + + if (nameOfTatto ~= 'unknown') then + AddPedDecorationFromHashes(skin_options.ped, GetHashKey(dlc), GetHashKey(nameOfTatto)) + end + end + end + end +end + +--- Register `skin_funcs` as global library +_G.skin_funcs = skin_funcs \ No newline at end of file diff --git a/[required]/cvf_skins/classes/tattoo.lua b/[required]/cvf_skins/classes/tattoo.lua new file mode 100644 index 0000000..64b4b58 --- /dev/null +++ b/[required]/cvf_skins/classes/tattoo.lua @@ -0,0 +1,90 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_client +local corev = assert(corev_client) +local load = assert(load) +local xpcall = assert(xpcall) +local pairs = assert(pairs) +local traceback = assert(debug.traceback) +local lower = assert(string.lower) +local LoadResourceFile = assert(LoadResourceFile) +local GetCurrentResourceName = assert(GetCurrentResourceName) + +--- Load tattoo configuration based on given `type` +---@param type string Two options: `male` or `female` +---@return table|nil Tattoo configuraiton or nil +local function loadConfigurationFile(type) + type = corev:ensure(type, 'unknown') + + local filePath = ('data/tattoos_%s.lua'):format(type) + local rawFile = LoadResourceFile(GetCurrentResourceName(), filePath) + + if (rawFile) then + local func, _ = load(rawFile, ('%s/%s'):format(GetCurrentResourceName(), filePath)) + + if (func) then + local ok, result = xpcall(func, traceback) + + if (ok) then + return result + end + end + end + + return {} +end + +local function getTattooData(type) + type = corev:ensure(type, 'unknown') + + return loadConfigurationFile(type) +end + +--- Load tattoo information into skin +---@param skin_options skin_options Skin option to add information in +local function loadTattoos(skin_options) + local tattooInformation = {} + + if (skin_options.isMale) then + tattooInformation = loadConfigurationFile('male') + elseif (skin_options.isFemale) then + tattooInformation = loadConfigurationFile('female') + end + + skin_options.tattoos = { + tattoo_torso = skin_options:createCategory('tattoo_torso'), + tattoo_head = skin_options:createCategory('tattoo_head'), + tattoo_left_arm = skin_options:createCategory('tattoo_left_arm'), + tattoo_right_arm = skin_options:createCategory('tattoo_right_arm'), + tattoo_left_leg = skin_options:createCategory('tattoo_left_leg'), + tattoo_right_leg = skin_options:createCategory('tattoo_right_leg'), + tattoo_badges = skin_options:createCategory('tattoo_badges') + } + + for categoryType, categoryInfo in pairs(tattooInformation) do + local categoryName = ('tattoo_%s'):format(lower(categoryType)) + + if (skin_options.tattoos[categoryName] ~= nil) then + for categoryOption, _options in pairs(categoryInfo) do + _options = corev:ensure(_options, {}) + + skin_options.tattoos[categoryName]:addOption(categoryOption, 0, #_options, 0) + end + end + end +end + +--- Register `loadTattoos` and `getTattooData` as global function +_G.loadTattoos = loadTattoos +_G.getTattooData = getTattooData \ No newline at end of file diff --git a/[required]/cvf_skins/client/main.lua b/[required]/cvf_skins/client/main.lua new file mode 100644 index 0000000..eaf06ef --- /dev/null +++ b/[required]/cvf_skins/client/main.lua @@ -0,0 +1,114 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_client +local corev = assert(corev_client) +local GeneratePedSkin = assert(GeneratePedSkin) +local CreateThread = assert(Citizen.CreateThread) +local Wait = assert(Citizen.Wait) +local NetworkIsPlayerActive = assert(NetworkIsPlayerActive) +local GetEntityModel = assert(GetEntityModel) +local GetHashKey = assert(GetHashKey) +local RequestModel = assert(RequestModel) +local HasModelLoaded = assert(HasModelLoaded) +local SetPlayerModel = assert(SetPlayerModel) +local SetPedDefaultComponentVariation = assert(SetPedDefaultComponentVariation) +local SetModelAsNoLongerNeeded = assert(SetModelAsNoLongerNeeded) +local DoScreenFadeIn = assert(DoScreenFadeIn) +local ShutdownLoadingScreen = assert(ShutdownLoadingScreen) +local FreezeEntityPosition = assert(FreezeEntityPosition) +local SetCanAttackFriendly = assert(SetCanAttackFriendly) +local NetworkSetFriendlyFireOption = assert(NetworkSetFriendlyFireOption) +local ClearPlayerWantedLevel = assert(ClearPlayerWantedLevel) +local SetMaxWantedLevel = assert(SetMaxWantedLevel) +local RequestCollisionAtCoord = assert(RequestCollisionAtCoord) +local HasCollisionLoadedAroundEntity = assert(HasCollisionLoadedAroundEntity) +local SetEntityCoords = assert(SetEntityCoords) +local PlayerId = assert(PlayerId) +local PlayerPedId = assert(PlayerPedId) +local decode = assert(json.decode) +local vector3 = assert(vector3) + +--- Load a player and apply skin to it +CreateThread(function() + while true do + if (NetworkIsPlayerActive(PlayerId())) then + local defaultModel = corev:cfg('skins', 'defaultModel') + local spawnLocation = corev:cfg('skins', 'defaultSpawnLocation') + local result_data, result_model, finished = nil, nil, false + + corev.callback:triggerCallback('load', function(data, model) + result_data = data + result_model = model + finished = true + end) + + repeat Wait(0) until finished == true + + local model = GetHashKey(result_model or defaultModel) + + if (GetEntityModel(PlayerPedId()) == model) then + return + end + + RequestModel(model) + + while not HasModelLoaded(model) do + Wait(0) + end + + local pId = PlayerId() + + SetPlayerModel(pId, model) + + local ped = PlayerPedId() + + SetPedDefaultComponentVariation(ped) + + --- @type skin_options + local skin = GeneratePedSkin(ped) + local skin_info = decode(result_data or '{}') + + skin:update(skin_info) + skin:refresh() + + SetModelAsNoLongerNeeded(model) + + DoScreenFadeIn(2500) + ShutdownLoadingScreen() + + FreezeEntityPosition(ped, true) + SetCanAttackFriendly(ped, true, false) + + NetworkSetFriendlyFireOption(true) + ClearPlayerWantedLevel(pId) + SetMaxWantedLevel(0) + + local coords, timeout = corev:ensure(spawnLocation, vector3(0.0, 0.0, 0.0)), 0 + + RequestCollisionAtCoord(coords.x, coords.y, coords.z) + + while not HasCollisionLoadedAroundEntity(ped) and timeout < 2000 do + timeout = timeout + 1 + Wait(0) + end + + SetEntityCoords(ped, coords.x, coords.y, coords.z, false, false, false, true) + FreezeEntityPosition(ped, false) + + return + end + + Wait(0) + end +end) \ No newline at end of file diff --git a/[required]/cvf_skins/data/tattoos_female.lua b/[required]/cvf_skins/data/tattoos_female.lua new file mode 100644 index 0000000..fb74a33 --- /dev/null +++ b/[required]/cvf_skins/data/tattoos_female.lua @@ -0,0 +1,1381 @@ +return { + ['TORSO'] = { + ['mpAirraces_overlays'] = { + 'MP_Airraces_Tattoo_000_F', + 'MP_Airraces_Tattoo_001_F', + 'MP_Airraces_Tattoo_002_F', + 'MP_Airraces_Tattoo_004_F', + 'MP_Airraces_Tattoo_005_F', + 'MP_Airraces_Tattoo_006_F', + 'MP_Airraces_Tattoo_007_F' + }, + ['mpBeach_overlays'] = { + 'MP_Bea_F_Back_000', + 'MP_Bea_F_Back_001', + 'MP_Bea_F_Back_002', + 'MP_Bea_F_Chest_000', + 'MP_Bea_F_Chest_001', + 'MP_Bea_F_Chest_002', + 'MP_Bea_F_RSide_000', + 'MP_Bea_F_Should_000', + 'MP_Bea_F_Should_001', + 'MP_Bea_F_Stom_000', + 'MP_Bea_F_Stom_001', + 'MP_Bea_F_Stom_002' + }, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_000_F', + 'MP_MP_Biker_Tat_001_F', + 'MP_MP_Biker_Tat_003_F', + 'MP_MP_Biker_Tat_005_F', + 'MP_MP_Biker_Tat_006_F', + 'MP_MP_Biker_Tat_008_F', + 'MP_MP_Biker_Tat_010_F', + 'MP_MP_Biker_Tat_011_F', + 'MP_MP_Biker_Tat_013_F', + 'MP_MP_Biker_Tat_017_F', + 'MP_MP_Biker_Tat_018_F', + 'MP_MP_Biker_Tat_019_F', + 'MP_MP_Biker_Tat_021_F', + 'MP_MP_Biker_Tat_023_F', + 'MP_MP_Biker_Tat_026_F', + 'MP_MP_Biker_Tat_029_F', + 'MP_MP_Biker_Tat_030_F', + 'MP_MP_Biker_Tat_031_F', + 'MP_MP_Biker_Tat_032_F', + 'MP_MP_Biker_Tat_034_F', + 'MP_MP_Biker_Tat_039_F', + 'MP_MP_Biker_Tat_041_F', + 'MP_MP_Biker_Tat_043_F', + 'MP_MP_Biker_Tat_050_F', + 'MP_MP_Biker_Tat_052_F', + 'MP_MP_Biker_Tat_058_F', + 'MP_MP_Biker_Tat_059_F', + 'MP_MP_Biker_Tat_060_F' + }, + ['mpBusiness_overlays'] = { + 'MP_Buis_F_Chest_000', + 'MP_Buis_F_Chest_001', + 'MP_Buis_F_Chest_002', + 'MP_Buis_F_Stom_000', + 'MP_Buis_F_Stom_001', + 'MP_Buis_F_Stom_002', + 'MP_Buis_F_Back_000', + 'MP_Buis_F_Back_001', + 'MP_Female_Crew_Tat_000' + }, + ['mpChristmas2017_overlays'] = { + 'MP_Christmas2017_Tattoo_000_F', + 'MP_Christmas2017_Tattoo_002_F', + 'MP_Christmas2017_Tattoo_003_F', + 'MP_Christmas2017_Tattoo_005_F', + 'MP_Christmas2017_Tattoo_008_F', + 'MP_Christmas2017_Tattoo_009_F', + 'MP_Christmas2017_Tattoo_010_F', + 'MP_Christmas2017_Tattoo_011_F', + 'MP_Christmas2017_Tattoo_015_F', + 'MP_Christmas2017_Tattoo_016_F', + 'MP_Christmas2017_Tattoo_019_F', + 'MP_Christmas2017_Tattoo_020_F', + 'MP_Christmas2017_Tattoo_021_F', + 'MP_Christmas2017_Tattoo_022_F', + 'MP_Christmas2017_Tattoo_024_F', + 'MP_Christmas2017_Tattoo_026_F', + 'MP_Christmas2017_Tattoo_027_F' + }, + ['mpChristmas2018_overlays'] = {'MP_Christmas2018_Tat_000_F'}, + ['mpChristmas2_overlays'] = { + 'MP_Xmas2_F_Tat_005', + 'MP_Xmas2_F_Tat_006', + 'MP_Xmas2_F_Tat_009', + 'MP_Xmas2_F_Tat_011', + 'MP_Xmas2_F_Tat_013', + 'MP_Xmas2_F_Tat_015', + 'MP_Xmas2_F_Tat_016', + 'MP_Xmas2_F_Tat_017', + 'MP_Xmas2_F_Tat_018', + 'MP_Xmas2_F_Tat_019', + 'MP_Xmas2_F_Tat_028' + }, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Tattoo_000_F', + 'MP_Gunrunning_Tattoo_001_F', + 'MP_Gunrunning_Tattoo_009_F', + 'MP_Gunrunning_Tattoo_010_F', + 'MP_Gunrunning_Tattoo_012_F', + 'MP_Gunrunning_Tattoo_013_F', + 'MP_Gunrunning_Tattoo_014_F', + 'MP_Gunrunning_Tattoo_017_F', + 'MP_Gunrunning_Tattoo_018_F', + 'MP_Gunrunning_Tattoo_019_F', + 'MP_Gunrunning_Tattoo_020_F', + 'MP_Gunrunning_Tattoo_022_F', + 'MP_Gunrunning_Tattoo_028_F', + 'MP_Gunrunning_Tattoo_029_F' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_F_Tat_000', + 'FM_Hip_F_Tat_002', + 'FM_Hip_F_Tat_006', + 'FM_Hip_F_Tat_011', + 'FM_Hip_F_Tat_012', + 'FM_Hip_F_Tat_013', + 'FM_Hip_F_Tat_024', + 'FM_Hip_F_Tat_025', + 'FM_Hip_F_Tat_029', + 'FM_Hip_F_Tat_030', + 'FM_Hip_F_Tat_031', + 'FM_Hip_F_Tat_032', + 'FM_Hip_F_Tat_033', + 'FM_Hip_F_Tat_035', + 'FM_Hip_F_Tat_041', + 'FM_Hip_F_Tat_046', + 'FM_Hip_F_Tat_047', + 'FM_Hip_F_Tat_000', + 'FM_Hip_F_Tat_002', + 'FM_Hip_F_Tat_006', + 'FM_Hip_F_Tat_011', + 'FM_Hip_F_Tat_012', + 'FM_Hip_F_Tat_013', + 'FM_Hip_F_Tat_024', + 'FM_Hip_F_Tat_025', + 'FM_Hip_F_Tat_029', + 'FM_Hip_F_Tat_030', + 'FM_Hip_F_Tat_031', + 'FM_Hip_F_Tat_032', + 'FM_Hip_F_Tat_033', + 'FM_Hip_F_Tat_035', + 'FM_Hip_F_Tat_041', + 'FM_Hip_F_Tat_046', + 'FM_Hip_F_Tat_047' + }, + ['mpImportExport_overlays'] = { + 'MP_MP_ImportExport_Tat_000_F', + 'MP_MP_ImportExport_Tat_001_F', + 'MP_MP_ImportExport_Tat_002_F', + 'MP_MP_ImportExport_Tat_009_F', + 'MP_MP_ImportExport_Tat_010_F', + 'MP_MP_ImportExport_Tat_011_F' + }, + ['mpLowrider2_overlays'] = { + 'MP_LR_Tat_000_F', + 'MP_LR_Tat_008_F', + 'MP_LR_Tat_011_F', + 'MP_LR_Tat_012_F', + 'MP_LR_Tat_016_F', + 'MP_LR_Tat_019_F', + 'MP_LR_Tat_031_F', + 'MP_LR_Tat_032_F' + }, + ['mpLowrider_overlays'] = { + 'MP_LR_Tat_001_F', + 'MP_LR_Tat_002_F', + 'MP_LR_Tat_004_F', + 'MP_LR_Tat_009_F', + 'MP_LR_Tat_010_F', + 'MP_LR_Tat_013_F', + 'MP_LR_Tat_014_F', + 'MP_LR_Tat_021_F', + 'MP_LR_Tat_026_F' + }, + ['mpLuxe2_overlays'] = { + 'MP_LUXE_TAT_002_F', + 'MP_LUXE_TAT_012_F', + 'MP_LUXE_TAT_022_F', + 'MP_LUXE_TAT_025_F', + 'MP_LUXE_TAT_027_F', + 'MP_LUXE_TAT_029_F' + }, + ['mpLuxe_overlays'] = { + 'MP_LUXE_TAT_003_F', + 'MP_LUXE_TAT_006_F', + 'MP_LUXE_TAT_007_F', + 'MP_LUXE_TAT_008_F', + 'MP_LUXE_TAT_014_F', + 'MP_LUXE_TAT_015_F', + 'MP_LUXE_TAT_024_F' + }, + ['mpSmuggler_overlays'] = { + 'MP_Smuggler_Tattoo_000_F', + 'MP_Smuggler_Tattoo_002_F', + 'MP_Smuggler_Tattoo_003_F', + 'MP_Smuggler_Tattoo_006_F', + 'MP_Smuggler_Tattoo_007_F', + 'MP_Smuggler_Tattoo_009_F', + 'MP_Smuggler_Tattoo_010_F', + 'MP_Smuggler_Tattoo_013_F', + 'MP_Smuggler_Tattoo_015_F', + 'MP_Smuggler_Tattoo_016_F', + 'MP_Smuggler_Tattoo_017_F', + 'MP_Smuggler_Tattoo_018_F', + 'MP_Smuggler_Tattoo_019_F', + 'MP_Smuggler_Tattoo_021_F', + 'MP_Smuggler_Tattoo_022_F', + 'MP_Smuggler_Tattoo_024_F', + 'MP_Smuggler_Tattoo_025_F' + }, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_011_F', + 'MP_MP_Stunt_tat_012_F', + 'MP_MP_Stunt_tat_014_F', + 'MP_MP_Stunt_tat_018_F', + 'MP_MP_Stunt_tat_019_F', + 'MP_MP_Stunt_tat_024_F', + 'MP_MP_Stunt_tat_026_F', + 'MP_MP_Stunt_tat_027_F', + 'MP_MP_Stunt_tat_029_F', + 'MP_MP_Stunt_tat_030_F', + 'MP_MP_Stunt_tat_033_F', + 'MP_MP_Stunt_tat_034_F', + 'MP_MP_Stunt_tat_037_F', + 'MP_MP_Stunt_tat_040_F', + 'MP_MP_Stunt_tat_041_F', + 'MP_MP_Stunt_tat_044_F', + 'MP_MP_Stunt_tat_046_F', + 'MP_MP_Stunt_tat_048_F' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_F_003', + 'FM_Tat_Award_F_004', + 'FM_Tat_Award_F_005', + 'FM_Tat_Award_F_008', + 'FM_Tat_Award_F_011', + 'FM_Tat_Award_F_012', + 'FM_Tat_Award_F_013', + 'FM_Tat_Award_F_014', + 'FM_Tat_Award_F_016', + 'FM_Tat_Award_F_017', + 'FM_Tat_Award_F_018', + 'FM_Tat_Award_F_019', + 'FM_Tat_F_004', + 'FM_Tat_F_009', + 'FM_Tat_F_010', + 'FM_Tat_F_011', + 'FM_Tat_F_012', + 'FM_Tat_F_013', + 'FM_Tat_F_016', + 'FM_Tat_F_019', + 'FM_Tat_F_020', + 'FM_Tat_F_024', + 'FM_Tat_F_025', + 'FM_Tat_F_029', + 'FM_Tat_F_030', + 'FM_Tat_F_034', + 'FM_Tat_F_036', + 'FM_Tat_F_044', + 'FM_Tat_F_045', + 'FM_Tat_F_046', + 'FM_Tat_Award_F_003', + 'FM_Tat_Award_F_004', + 'FM_Tat_Award_F_005', + 'FM_Tat_Award_F_008', + 'FM_Tat_Award_F_011', + 'FM_Tat_Award_F_012', + 'FM_Tat_Award_F_013', + 'FM_Tat_Award_F_014', + 'FM_Tat_Award_F_016', + 'FM_Tat_Award_F_017', + 'FM_Tat_Award_F_018', + 'FM_Tat_Award_F_019', + 'FM_Tat_F_004', + 'FM_Tat_F_009', + 'FM_Tat_F_010', + 'FM_Tat_F_011', + 'FM_Tat_F_012', + 'FM_Tat_F_013', + 'FM_Tat_F_016', + 'FM_Tat_F_019', + 'FM_Tat_F_020', + 'FM_Tat_F_024', + 'FM_Tat_F_025', + 'FM_Tat_F_029', + 'FM_Tat_F_030', + 'FM_Tat_F_034', + 'FM_Tat_F_036', + 'FM_Tat_F_044', + 'FM_Tat_F_045', + 'FM_Tat_F_046' + } + }, + ['HEAD'] = { + ['mpBeach_overlays'] = {'MP_Bea_F_Neck_000'}, + ['mpBiker_overlays'] = {'MP_MP_Biker_Tat_009_F', 'MP_MP_Biker_Tat_038_F', 'MP_MP_Biker_Tat_051_F'}, + ['mpBusiness_overlays'] = {'MP_Buis_F_Neck_000', 'MP_Buis_F_Neck_001'}, + ['mpChristmas2_overlays'] = {'MP_Xmas2_F_Tat_007', 'MP_Xmas2_F_Tat_024', 'MP_Xmas2_F_Tat_025', 'MP_Xmas2_F_Tat_029'}, + ['mpGunrunning_overlays'] = {'MP_Gunrunning_Tattoo_003_F'}, + ['mpHipster_overlays'] = {'FM_Hip_F_Tat_005', 'FM_Hip_F_Tat_021', 'FM_Hip_F_Tat_005', 'FM_Hip_F_Tat_021'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_011_F', 'MP_Smuggler_Tattoo_012_F'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_Tat_000_F', + 'MP_MP_Stunt_tat_004_F', + 'MP_MP_Stunt_tat_006_F', + 'MP_MP_Stunt_tat_017_F', + 'MP_MP_Stunt_tat_042_F' + }, + ['multiplayer_overlays'] = {'FM_Tat_Award_F_000', 'FM_Tat_Award_F_000'} + }, + ['LEFT_ARM'] = { + ['mpAirraces_overlays'] = {'MP_Airraces_Tattoo_003_F'}, + ['mpBeach_overlays'] = {'MP_Bea_F_LArm_000', 'MP_Bea_F_LArm_001'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_012_F', + 'MP_MP_Biker_Tat_016_F', + 'MP_MP_Biker_Tat_020_F', + 'MP_MP_Biker_Tat_024_F', + 'MP_MP_Biker_Tat_025_F', + 'MP_MP_Biker_Tat_035_F', + 'MP_MP_Biker_Tat_045_F', + 'MP_MP_Biker_Tat_053_F', + 'MP_MP_Biker_Tat_055_F' + }, + ['mpBusiness_overlays'] = {'MP_Buis_F_LArm_000'}, + ['mpChristmas2017_overlays'] = { + 'MP_Christmas2017_Tattoo_001_F', + 'MP_Christmas2017_Tattoo_004_F', + 'MP_Christmas2017_Tattoo_007_F', + 'MP_Christmas2017_Tattoo_013_F', + 'MP_Christmas2017_Tattoo_025_F', + 'MP_Christmas2017_Tattoo_029_F' + }, + ['mpChristmas2_overlays'] = { + 'MP_Xmas2_F_Tat_000', + 'MP_Xmas2_F_Tat_010', + 'MP_Xmas2_F_Tat_012', + 'MP_Xmas2_F_Tat_020', + 'MP_Xmas2_F_Tat_021' + }, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Tattoo_004_F', + 'MP_Gunrunning_Tattoo_008_F', + 'MP_Gunrunning_Tattoo_015_F', + 'MP_Gunrunning_Tattoo_016_F', + 'MP_Gunrunning_Tattoo_025_F', + 'MP_Gunrunning_Tattoo_027_F' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_F_Tat_003', + 'FM_Hip_F_Tat_007', + 'FM_Hip_F_Tat_015', + 'FM_Hip_F_Tat_016', + 'FM_Hip_F_Tat_026', + 'FM_Hip_F_Tat_027', + 'FM_Hip_F_Tat_028', + 'FM_Hip_F_Tat_034', + 'FM_Hip_F_Tat_037', + 'FM_Hip_F_Tat_039', + 'FM_Hip_F_Tat_043', + 'FM_Hip_F_Tat_048', + 'FM_Hip_F_Tat_003', + 'FM_Hip_F_Tat_007', + 'FM_Hip_F_Tat_015', + 'FM_Hip_F_Tat_016', + 'FM_Hip_F_Tat_026', + 'FM_Hip_F_Tat_027', + 'FM_Hip_F_Tat_028', + 'FM_Hip_F_Tat_034', + 'FM_Hip_F_Tat_037', + 'FM_Hip_F_Tat_039', + 'FM_Hip_F_Tat_043', + 'FM_Hip_F_Tat_048' + }, + ['mpImportExport_overlays'] = {'MP_MP_ImportExport_Tat_004_F', 'MP_MP_ImportExport_Tat_008_F'}, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_006_F', 'MP_LR_Tat_018_F', 'MP_LR_Tat_022_F'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_005_F', 'MP_LR_Tat_027_F', 'MP_LR_Tat_033_F'}, + ['mpLuxe2_overlays'] = { + 'MP_LUXE_TAT_005_F', + 'MP_LUXE_TAT_016_F', + 'MP_LUXE_TAT_018_F', + 'MP_LUXE_TAT_028_F', + 'MP_LUXE_TAT_031_F' + }, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_009_F', 'MP_LUXE_TAT_020_F', 'MP_LUXE_TAT_021_F'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_004_F', 'MP_Smuggler_Tattoo_008_F', 'MP_Smuggler_Tattoo_014_F'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_001_F', + 'MP_MP_Stunt_tat_002_F', + 'MP_MP_Stunt_tat_008_F', + 'MP_MP_Stunt_tat_022_F', + 'MP_MP_Stunt_tat_023_F', + 'MP_MP_Stunt_tat_035_F', + 'MP_MP_Stunt_tat_039_F', + 'MP_MP_Stunt_tat_043_F' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_F_001', + 'FM_Tat_Award_F_007', + 'FM_Tat_Award_F_015', + 'FM_Tat_F_005', + 'FM_Tat_F_006', + 'FM_Tat_F_015', + 'FM_Tat_F_031', + 'FM_Tat_F_041', + 'FM_Tat_Award_F_001', + 'FM_Tat_Award_F_007', + 'FM_Tat_Award_F_015', + 'FM_Tat_F_005', + 'FM_Tat_F_006', + 'FM_Tat_F_015', + 'FM_Tat_F_031', + 'FM_Tat_F_041' + } + }, + ['RIGHT_ARM'] = { + ['mpBeach_overlays'] = {'MP_Bea_F_RArm_001'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_007_F', + 'MP_MP_Biker_Tat_014_F', + 'MP_MP_Biker_Tat_033_F', + 'MP_MP_Biker_Tat_042_F', + 'MP_MP_Biker_Tat_046_F', + 'MP_MP_Biker_Tat_047_F', + 'MP_MP_Biker_Tat_049_F', + 'MP_MP_Biker_Tat_054_F' + }, + ['mpBusiness_overlays'] = {'MP_Buis_F_RArm_000', 'MP_Female_Crew_Tat_001'}, + ['mpChristmas2017_overlays'] = { + 'MP_Christmas2017_Tattoo_006_F', + 'MP_Christmas2017_Tattoo_012_F', + 'MP_Christmas2017_Tattoo_014_F', + 'MP_Christmas2017_Tattoo_017_F', + 'MP_Christmas2017_Tattoo_018_F', + 'MP_Christmas2017_Tattoo_023_F', + 'MP_Christmas2017_Tattoo_028_F' + }, + ['mpChristmas2_overlays'] = { + 'MP_Xmas2_F_Tat_003', + 'MP_Xmas2_F_Tat_004', + 'MP_Xmas2_F_Tat_008', + 'MP_Xmas2_F_Tat_022', + 'MP_Xmas2_F_Tat_023', + 'MP_Xmas2_F_Tat_026', + 'MP_Xmas2_F_Tat_027' + }, + ['mpGunrunning_overlays'] = {'MP_Gunrunning_Tattoo_002_F', 'MP_Gunrunning_Tattoo_021_F', 'MP_Gunrunning_Tattoo_024_F'}, + ['mpHipster_overlays'] = { + 'FM_Hip_F_Tat_001', + 'FM_Hip_F_Tat_004', + 'FM_Hip_F_Tat_008', + 'FM_Hip_F_Tat_010', + 'FM_Hip_F_Tat_014', + 'FM_Hip_F_Tat_017', + 'FM_Hip_F_Tat_018', + 'FM_Hip_F_Tat_020', + 'FM_Hip_F_Tat_022', + 'FM_Hip_F_Tat_023', + 'FM_Hip_F_Tat_036', + 'FM_Hip_F_Tat_044', + 'FM_Hip_F_Tat_045', + 'FM_Hip_F_Tat_001', + 'FM_Hip_F_Tat_004', + 'FM_Hip_F_Tat_008', + 'FM_Hip_F_Tat_010', + 'FM_Hip_F_Tat_014', + 'FM_Hip_F_Tat_017', + 'FM_Hip_F_Tat_018', + 'FM_Hip_F_Tat_020', + 'FM_Hip_F_Tat_022', + 'FM_Hip_F_Tat_023', + 'FM_Hip_F_Tat_036', + 'FM_Hip_F_Tat_044', + 'FM_Hip_F_Tat_045' + }, + ['mpImportExport_overlays'] = { + 'MP_MP_ImportExport_Tat_003_F', + 'MP_MP_ImportExport_Tat_005_F', + 'MP_MP_ImportExport_Tat_006_F', + 'MP_MP_ImportExport_Tat_007_F' + }, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_003_F', 'MP_LR_Tat_028_F', 'MP_LR_Tat_035_F'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_015_F'}, + ['mpLuxe2_overlays'] = {'MP_LUXE_TAT_010_F', 'MP_LUXE_TAT_017_F', 'MP_LUXE_TAT_026_F', 'MP_LUXE_TAT_030_F'}, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_004_F', 'MP_LUXE_TAT_013_F', 'MP_LUXE_TAT_019_F'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_001_F', 'MP_Smuggler_Tattoo_005_F', 'MP_Smuggler_Tattoo_023_F'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_003_F', + 'MP_MP_Stunt_tat_009_F', + 'MP_MP_Stunt_tat_010_F', + 'MP_MP_Stunt_tat_016_F', + 'MP_MP_Stunt_tat_036_F', + 'MP_MP_Stunt_tat_038_F', + 'MP_MP_Stunt_tat_049_F' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_M_000', + 'FM_Tat_Award_F_002', + 'FM_Tat_Award_F_010', + 'FM_Tat_F_001', + 'FM_Tat_F_003', + 'FM_Tat_F_014', + 'FM_Tat_F_018', + 'FM_Tat_F_027', + 'FM_Tat_F_028', + 'FM_Tat_F_038', + 'FM_Tat_F_047', + 'FM_Tat_M_000', + 'FM_Tat_Award_F_002', + 'FM_Tat_Award_F_010', + 'FM_Tat_F_001', + 'FM_Tat_F_003', + 'FM_Tat_F_014', + 'FM_Tat_F_018', + 'FM_Tat_F_027', + 'FM_Tat_F_028', + 'FM_Tat_F_038', + 'FM_Tat_F_047' + } + }, + ['LEFT_LEG'] = { + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_002_F', + 'MP_MP_Biker_Tat_015_F', + 'MP_MP_Biker_Tat_027_F', + 'MP_MP_Biker_Tat_036_F', + 'MP_MP_Biker_Tat_037_F', + 'MP_MP_Biker_Tat_044_F', + 'MP_MP_Biker_Tat_056_F', + 'MP_MP_Biker_Tat_057_F' + }, + ['mpBusiness_overlays'] = {'MP_Buis_F_LLeg_000'}, + ['mpChristmas2_overlays'] = {'MP_Xmas2_F_Tat_001', 'MP_Xmas2_F_Tat_002'}, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Tattoo_005_F', + 'MP_Gunrunning_Tattoo_007_F', + 'MP_Gunrunning_Tattoo_011_F', + 'MP_Gunrunning_Tattoo_023_F' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_F_Tat_009', + 'FM_Hip_F_Tat_019', + 'FM_Hip_F_Tat_040', + 'FM_Hip_F_Tat_009', + 'FM_Hip_F_Tat_019', + 'FM_Hip_F_Tat_040' + }, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_029_F'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_007_F', 'MP_LR_Tat_020_F'}, + ['mpLuxe2_overlays'] = {'MP_LUXE_TAT_011_F'}, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_000_F'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_007_F', + 'MP_MP_Stunt_tat_013_F', + 'MP_MP_Stunt_tat_021_F', + 'MP_MP_Stunt_tat_028_F', + 'MP_MP_Stunt_tat_031_F' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_F_009', + 'FM_Tat_F_002', + 'FM_Tat_F_008', + 'FM_Tat_F_021', + 'FM_Tat_F_023', + 'FM_Tat_F_026', + 'FM_Tat_F_032', + 'FM_Tat_F_033', + 'FM_Tat_F_035', + 'FM_Tat_F_037', + 'FM_Tat_Award_F_009', + 'FM_Tat_F_002', + 'FM_Tat_F_008', + 'FM_Tat_F_021', + 'FM_Tat_F_023', + 'FM_Tat_F_026', + 'FM_Tat_F_032', + 'FM_Tat_F_033', + 'FM_Tat_F_035', + 'FM_Tat_F_037' + } + }, + ['RIGHT_LEG'] = { + ['mpBeach_overlays'] = {'MP_Bea_F_RLeg_000'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_004_F', + 'MP_MP_Biker_Tat_022_F', + 'MP_MP_Biker_Tat_028_F', + 'MP_MP_Biker_Tat_040_F', + 'MP_MP_Biker_Tat_048_F' + }, + ['mpBusiness_overlays'] = {'MP_Buis_F_RLeg_000'}, + ['mpChristmas2_overlays'] = {'MP_Xmas2_F_Tat_014'}, + ['mpGunrunning_overlays'] = {'MP_Gunrunning_Tattoo_006_F', 'MP_Gunrunning_Tattoo_026_F', 'MP_Gunrunning_Tattoo_030_F'}, + ['mpHipster_overlays'] = {'FM_Hip_F_Tat_038', 'FM_Hip_F_Tat_042', 'FM_Hip_F_Tat_038', 'FM_Hip_F_Tat_042'}, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_030_F'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_017_F', 'MP_LR_Tat_023_F'}, + ['mpLuxe2_overlays'] = {'MP_LUXE_TAT_023_F'}, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_001_F'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_020_F'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_005_F', + 'MP_MP_Stunt_tat_015_F', + 'MP_MP_Stunt_tat_020_F', + 'MP_MP_Stunt_tat_025_F', + 'MP_MP_Stunt_tat_032_F', + 'MP_MP_Stunt_tat_045_F', + 'MP_MP_Stunt_tat_047_F' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_F_006', + 'FM_Tat_F_007', + 'FM_Tat_F_017', + 'FM_Tat_F_022', + 'FM_Tat_F_039', + 'FM_Tat_F_040', + 'FM_Tat_F_042', + 'FM_Tat_F_043', + 'FM_Tat_Award_F_006', + 'FM_Tat_F_007', + 'FM_Tat_F_017', + 'FM_Tat_F_022', + 'FM_Tat_F_039', + 'FM_Tat_F_040', + 'FM_Tat_F_042', + 'FM_Tat_F_043' + } + }, + ['BADGES'] = { + ['mpBattle_overlays'] = { + 'MP_Battle_Clothing_000_F', + 'MP_Battle_Clothing_001_F', + 'MP_Battle_Clothing_002_F', + 'MP_Battle_Clothing_003_F', + 'MP_Battle_Clothing_004_F', + 'MP_Battle_Clothing_005_F', + 'MP_Battle_Clothing_006_F', + 'MP_Battle_Clothing_007_F', + 'MP_Battle_Clothing_008_F', + 'MP_Battle_Clothing_009_F', + 'MP_Battle_Clothing_010_F', + 'MP_Battle_Clothing_011_F', + 'MP_Battle_Clothing_012_F', + 'MP_Battle_Clothing_013_F', + 'MP_Battle_Clothing_014_F', + 'MP_Battle_Clothing_015_F', + 'MP_Battle_Clothing_016_F', + 'MP_Battle_Clothing_017_F', + 'MP_Battle_Clothing_018_F', + 'MP_Battle_Clothing_019_F', + 'MP_Battle_Clothing_020_F', + 'MP_Battle_Clothing_021_F', + 'MP_Battle_Clothing_022_F', + 'MP_Battle_Clothing_023_F', + 'MP_Battle_Clothing_024_F', + 'MP_Battle_Clothing_025_F', + 'MP_Battle_Clothing_026_F', + 'MP_Battle_Clothing_027_F', + 'MP_Battle_Clothing_028_F', + 'MP_Battle_Clothing_029_F', + 'MP_Battle_Clothing_030_F', + 'MP_Battle_Clothing_031_F', + 'MP_Battle_Clothing_032_F', + 'MP_Battle_Clothing_033_F', + 'MP_Battle_Clothing_034_F', + 'MP_Battle_Clothing_035_F', + 'MP_Battle_Clothing_036_F', + 'MP_Battle_Clothing_037_F', + 'MP_Battle_Clothing_038_F', + 'MP_Battle_Clothing_039_F', + 'MP_Battle_Clothing_040_F', + 'MP_Battle_Clothing_041_F', + 'MP_Battle_Clothing_042_F', + 'MP_Battle_Clothing_043_F', + 'MP_Battle_Clothing_044_F', + 'MP_Battle_Clothing_045_F', + 'MP_Battle_Clothing_046_F', + 'MP_Battle_Clothing_047_F', + 'MP_Battle_Clothing_048_F', + 'MP_Battle_Clothing_049_F', + 'MP_Battle_Clothing_050_F', + 'MP_Battle_Clothing_051_F', + 'MP_Battle_Clothing_052_F', + 'MP_Battle_Clothing_053_F', + 'MP_Battle_Clothing_054_F', + 'MP_Battle_Clothing_055_F', + 'MP_Battle_Clothing_056_F', + 'MP_Battle_Clothing_057_F', + 'MP_Battle_Clothing_058_F', + 'MP_Battle_Clothing_059_F', + 'MP_Battle_Clothing_060_F', + 'MP_Battle_Clothing_061_F', + 'MP_Battle_Clothing_062_F' + }, + ['mpBiker_overlays'] = { + 'MP_Biker_Award_000_F', + 'MP_Biker_Award_001_F', + 'MP_Biker_Rank_000_F', + 'MP_Biker_Rank_001_F', + 'MP_Biker_Rank_002_F', + 'MP_Biker_Rank_003_F', + 'MP_Biker_Rank_004_F', + 'MP_Biker_Rank_005_F', + 'MP_Biker_Rank_006_F', + 'MP_Biker_Rank_007_F', + 'MP_Biker_Rank_008_F', + 'MP_Biker_Rank_009_F', + 'MP_Biker_Rank_010_F', + 'MP_Biker_Rank_011_F', + 'MP_Biker_Rank_012_F', + 'MP_Biker_Rank_013_F', + 'MP_Biker_Rank_014_F', + 'MP_Biker_Rank_015_F', + 'MP_Biker_Rank_016_F', + 'MP_Biker_Rank_017_F', + 'MP_Biker_Tee_000_F', + 'MP_Biker_Tee_001_F', + 'MP_Biker_Tee_002_F', + 'MP_Biker_Tee_003_F', + 'MP_Biker_Tee_004_F', + 'MP_Biker_Tee_005_F', + 'MP_Biker_Tee_006_F', + 'MP_Biker_Tee_007_F', + 'MP_Biker_Tee_008_F', + 'MP_Biker_Tee_009_F', + 'MP_Biker_Tee_010_F', + 'MP_Biker_Tee_011_F', + 'MP_Biker_Tee_012_F', + 'MP_Biker_Tee_013_F', + 'MP_Biker_Tee_014_F', + 'MP_Biker_Tee_015_F', + 'MP_Biker_Tee_016_F', + 'MP_Biker_Tee_017_F', + 'MP_Biker_Tee_018_F', + 'MP_Biker_Tee_019_F', + 'MP_Biker_Tee_020_F', + 'MP_Biker_Tee_021_F', + 'MP_Biker_Tee_022_F', + 'MP_Biker_Tee_023_F', + 'MP_Biker_Tee_024_F', + 'MP_Biker_Tee_025_F', + 'MP_Biker_Tee_026_F', + 'MP_Biker_Tee_027_F', + 'MP_Biker_Tee_028_F', + 'MP_Biker_Tee_029_F', + 'MP_Biker_Tee_030_F', + 'MP_Biker_Tee_031_F', + 'MP_Biker_Tee_032_F', + 'MP_Biker_Tee_033_F', + 'MP_Biker_Tee_034_F', + 'MP_Biker_Tee_035_F', + 'MP_Biker_Tee_036_F', + 'MP_Biker_Tee_037_F', + 'MP_Biker_Tee_038_F', + 'MP_Biker_Tee_039_F', + 'MP_Biker_Tee_040_F', + 'MP_Biker_Tee_041_F', + 'MP_Biker_Tee_042_F', + 'MP_Biker_Tee_043_F', + 'MP_Biker_Tee_044_F', + 'MP_Biker_Tee_045_F', + 'MP_Biker_Tee_046_F', + 'MP_Biker_Tee_047_F', + 'MP_Biker_Tee_048_F', + 'MP_Biker_Tee_049_F', + 'MP_Biker_Tee_050_F', + 'MP_Biker_Tee_051_F', + 'MP_Biker_Tee_052_F', + 'MP_Biker_Tee_053_F', + 'MP_Biker_Tee_054_F', + 'MP_Biker_Tee_055_F' + }, + ['mpChristmas2018_overlays'] = { + 'MP_Christmas2018_Tee_000_F', + 'MP_Christmas2018_Tee_001_F', + 'MP_Christmas2018_Tee_002_F', + 'MP_Christmas2018_Tee_003_F', + 'MP_Christmas2018_Tee_004_F', + 'MP_Christmas2018_Tee_005_F', + 'MP_Christmas2018_Tee_006_F', + 'MP_Christmas2018_Tee_007_F', + 'MP_Christmas2018_Tee_008_F', + 'MP_Christmas2018_Tee_009_F', + 'MP_Christmas2018_Tee_010_F', + 'MP_Christmas2018_Tee_011_F', + 'MP_Christmas2018_Tee_012_F', + 'MP_Christmas2018_Tee_013_F', + 'MP_Christmas2018_Tee_014_F', + 'MP_Christmas2018_Tee_015_F', + 'MP_Christmas2018_Tee_016_F', + 'MP_Christmas2018_Tee_017_F', + 'MP_Christmas2018_Tee_018_F', + 'MP_Christmas2018_Tee_019_F', + 'MP_Christmas2018_Tee_020_F', + 'MP_Christmas2018_Tee_021_F', + 'MP_Christmas2018_Tee_022_F', + 'MP_Christmas2018_Tee_023_F', + 'MP_Christmas2018_Tee_024_F', + 'MP_Christmas2018_Tee_025_F', + 'MP_Christmas2018_Tee_026_F', + 'MP_Christmas2018_Tee_027_F', + 'MP_Christmas2018_Tee_028_F', + 'MP_Christmas2018_Tee_029_F', + 'MP_Christmas2018_Tee_030_F', + 'MP_Christmas2018_Tee_031_F', + 'MP_Christmas2018_Tee_032_F', + 'MP_Christmas2018_Tee_033_F', + 'MP_Christmas2018_Tee_034_F', + 'MP_Christmas2018_Tee_035_F', + 'MP_Christmas2018_Tee_036_F', + 'MP_Christmas2018_Tee_037_F', + 'MP_Christmas2018_Tee_038_F', + 'MP_Christmas2018_Tee_039_F', + 'MP_Christmas2018_Tee_040_F', + 'MP_Christmas2018_Tee_041_F', + 'MP_Christmas2018_Tee_042_F', + 'MP_Christmas2018_Tee_043_F', + 'MP_Christmas2018_Tee_044_F', + 'MP_Christmas2018_Tee_045_F', + 'MP_Christmas2018_Tee_046_F', + 'MP_Christmas2018_Tee_047_F', + 'MP_Christmas2018_Tee_048_F', + 'MP_Christmas2018_Tee_049_F', + 'MP_Christmas2018_Tee_050_F', + 'MP_Christmas2018_Tee_051_F', + 'MP_Christmas2018_Tee_052_F', + 'MP_Christmas2018_Tee_053_F', + 'MP_Christmas2018_Tee_054_F', + 'MP_Christmas2018_Tee_055_F', + 'MP_Christmas2018_Tee_056_F', + 'MP_Christmas2018_Tee_057_F', + 'MP_Christmas2018_Tee_058_F', + 'MP_Christmas2018_Tee_059_F', + 'MP_Christmas2018_Tee_060_F', + 'MP_Christmas2018_Tee_061_F', + 'MP_Christmas2018_Tee_062_F', + 'MP_Christmas2018_Tee_063_F', + 'MP_Christmas2018_Tee_064_F', + 'MP_Christmas2018_Tee_065_F', + 'MP_Christmas2018_Tee_066_F', + 'MP_Christmas2018_Tee_067_F', + 'MP_Christmas2018_Tee_068_F', + 'MP_Christmas2018_Tee_069_F', + 'MP_Christmas2018_Tee_070_F', + 'MP_Christmas2018_Tee_071_F', + 'MP_Christmas2018_Tee_072_F', + 'MP_Christmas2018_Tee_073_F', + 'MP_Christmas2018_Tee_074_F', + 'MP_Christmas2018_Tee_075_F', + 'MP_Christmas2018_Tee_076_F', + 'MP_Christmas2018_Tee_077_F', + 'MP_Christmas2018_Tee_078_F', + 'MP_Christmas2018_Tee_079_F', + 'MP_Christmas2018_Tee_080_F', + 'MP_Christmas2018_Tee_081_F', + 'MP_Christmas2018_Tee_082_F', + 'MP_Christmas2018_Tee_083_F', + 'MP_Christmas2018_Tee_084_F', + 'MP_Christmas2018_Tee_085_F', + 'MP_Christmas2018_Tee_086_F', + 'MP_Christmas2018_Tee_087_F', + 'MP_Christmas2018_Tee_088_F', + 'MP_Christmas2018_Tee_089_F', + 'MP_Christmas2018_Tee_090_F', + 'MP_Christmas2018_Tee_091_F', + 'MP_Christmas2018_Tee_092_F', + 'MP_Christmas2018_Tee_093_F', + 'MP_Christmas2018_Tee_094_F', + 'MP_Christmas2018_Tee_095_F', + 'MP_Christmas2018_Tee_096_F', + 'MP_Christmas2018_Tee_097_F', + 'MP_Christmas2018_Tee_098_F', + 'MP_Christmas2018_Tee_099_F', + 'MP_Christmas2018_Tee_100_F', + 'MP_Christmas2018_Tee_101_F', + 'MP_Christmas2018_Tee_102_F', + 'MP_Christmas2018_Tee_103_F', + 'MP_Christmas2018_Tee_104_F', + 'MP_Christmas2018_Tee_105_F', + 'MP_Christmas2018_Tee_106_F', + 'MP_Christmas2018_Tee_107_F', + 'MP_Christmas2018_Tee_108_F', + 'MP_Christmas2018_Tee_109_F', + 'MP_Christmas2018_Tee_110_F', + 'MP_Christmas2018_Tee_111_F', + 'MP_Christmas2018_Tee_112_F', + 'MP_Christmas2018_Tee_113_F', + 'MP_Christmas2018_Tee_114_F', + 'MP_Christmas2018_Tee_115_F', + 'MP_Christmas2018_Tee_116_F', + 'MP_Christmas2018_Tee_117_F', + 'MP_Christmas2018_Tee_118_F', + 'MP_Christmas2018_Tee_119_F', + 'MP_Christmas2018_Tee_120_F', + 'MP_Christmas2018_Tee_121_F', + 'MP_Christmas2018_Tee_122_F', + 'MP_Christmas2018_Tee_123_F', + 'MP_Christmas2018_Tee_124_F' + }, + ['mpExecutive_overlays'] = { + 'MP_Securoserv_000_F', + 'MP_exec_teams_000_F', + 'MP_exec_teams_001_F', + 'MP_exec_teams_002_F', + 'MP_exec_teams_003_F', + 'MP_exec_prizes_000_F', + 'MP_exec_prizes_001_F', + 'MP_exec_prizes_002_F', + 'MP_exec_prizes_003_F', + 'MP_exec_prizes_004_F', + 'MP_exec_prizes_005_F', + 'MP_exec_prizes_006_F', + 'MP_exec_prizes_007_F', + 'MP_exec_prizes_008_F', + 'MP_exec_prizes_009_F', + 'MP_exec_prizes_010_F', + 'MP_exec_prizes_011_F', + 'MP_exec_prizes_012_F', + 'MP_exec_prizes_013_F', + 'MP_exec_prizes_014_F', + 'MP_exec_prizes_015_F' + }, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Award_000_F', + 'MP_Gunrunning_Award_001_F', + 'MP_Gunrunning_Award_002_F', + 'MP_Gunrunning_Award_003_F', + 'MP_Gunrunning_Award_004_F', + 'MP_Gunrunning_Award_005_F', + 'MP_Gunrunning_Award_006_F', + 'MP_Gunrunning_Award_007_F', + 'MP_Gunrunning_Award_008_F', + 'MP_Gunrunning_Award_009_F', + 'MP_Gunrunning_Award_010_F', + 'MP_Gunrunning_Award_011_F', + 'MP_Gunrunning_Award_012_F', + 'MP_Gunrunning_Award_013_F', + 'MP_Gunrunning_Award_014_F', + 'MP_Gunrunning_Award_015_F', + 'MP_Gunrunning_Award_016_F', + 'MP_Gunrunning_Award_017_F', + 'MP_Gunrunning_Award_018_F', + 'MP_Gunrunning_Award_019_F', + 'MP_Gunrunning_Award_020_F', + 'MP_Gunrunning_Award_021_F', + 'MP_Gunrunning_Award_022_F', + 'MP_Gunrunning_Award_023_F', + 'MP_Gunrunning_Award_024_F', + 'MP_Gunrunning_Award_025_F', + 'MP_Gunrunning_Award_026_F' + }, + ['mpHalloween_overlays'] = { + 'HW_Tee_000_F', + 'HW_Tee_001_F', + 'HW_Tee_002_F', + 'HW_Tee_003_F', + 'HW_Tee_004_F', + 'HW_Tee_005_F', + 'HW_Tee_006_F', + 'HW_Tee_007_F', + 'HW_Tee_008_F', + 'HW_Tee_009_F', + 'HW_Tee_010_F', + 'HW_Tee_011_F', + 'HW_Tee_012_F' + }, + ['mpHeist_overlays'] = { + 'MP_Award_F_Tshirt_004', + 'MP_Award_F_Tshirt_005', + 'MP_Award_F_Tshirt_006', + 'MP_Award_F_Tshirt_007', + 'MP_Award_F_Tshirt_008', + 'MP_Award_F_Tshirt_009', + 'MP_Award_F_Tshirt_010', + 'MP_Award_F_Tshirt_011', + 'MP_Award_F_Tshirt_012', + 'MP_Award_F_Tshirt_013', + 'MP_Fli_F_Tshirt_000', + 'MP_Bugstar_A', + 'MP_Bugstar_B', + 'MP_Bugstar_C', + 'MP_Rogers_A', + 'MP_Rogers_B', + 'MP_Power_A', + 'MP_Power_B', + 'MP_Als_A', + 'MP_Als_B', + 'MP_Elite_F_Tshirt', + 'MP_Elite_F_Tshirt_1', + 'MP_Elite_F_Tshirt_2' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_F_Tshirt_000', + 'FM_Hip_F_Tshirt_001', + 'FM_Hip_F_Tshirt_002', + 'FM_Hip_F_Tshirt_003', + 'FM_Hip_F_Tshirt_004', + 'FM_Hip_F_Tshirt_005', + 'FM_Hip_F_Tshirt_006', + 'FM_Hip_F_Tshirt_007', + 'FM_Hip_F_Tshirt_008', + 'FM_Hip_F_Tshirt_009', + 'FM_Hip_F_Tshirt_010', + 'FM_Hip_F_Tshirt_011', + 'FM_Hip_F_Tshirt_012', + 'FM_Hip_F_Tshirt_013', + 'FM_Hip_F_Tshirt_014', + 'FM_Hip_F_Tshirt_015', + 'FM_Hip_F_Tshirt_016', + 'FM_Hip_F_Tshirt_017', + 'FM_Hip_F_Tshirt_018', + 'FM_Hip_F_Tshirt_019', + 'FM_Hip_F_Tshirt_020', + 'FM_Hip_F_Tshirt_021', + 'FM_Hip_F_Tshirt_022', + 'FM_Hip_F_Retro_000', + 'FM_Hip_F_Retro_001', + 'FM_Hip_F_Retro_002', + 'FM_Hip_F_Retro_003', + 'FM_Hip_F_Retro_004', + 'FM_Hip_F_Retro_005', + 'FM_Hip_F_Retro_006', + 'FM_Hip_F_Retro_007', + 'FM_Hip_F_Retro_008', + 'FM_Hip_F_Retro_009', + 'FM_Hip_F_Retro_010', + 'FM_Hip_F_Retro_011', + 'FM_Hip_F_Retro_012', + 'FM_Hip_F_Retro_013', + 'FM_Rstar_F_Tshirt_000', + 'FM_Rstar_F_Tshirt_001', + 'FM_Rstar_F_Tshirt_002', + 'FM_Hip_F_Tshirt_000', + 'FM_Hip_F_Tshirt_001', + 'FM_Hip_F_Tshirt_002', + 'FM_Hip_F_Tshirt_003', + 'FM_Hip_F_Tshirt_004', + 'FM_Hip_F_Tshirt_005', + 'FM_Hip_F_Tshirt_006', + 'FM_Hip_F_Tshirt_007', + 'FM_Hip_F_Tshirt_008', + 'FM_Hip_F_Tshirt_009', + 'FM_Hip_F_Tshirt_010', + 'FM_Hip_F_Tshirt_011', + 'FM_Hip_F_Tshirt_012', + 'FM_Hip_F_Tshirt_013', + 'FM_Hip_F_Tshirt_014', + 'FM_Hip_F_Tshirt_015', + 'FM_Hip_F_Tshirt_016', + 'FM_Hip_F_Tshirt_017', + 'FM_Hip_F_Tshirt_018', + 'FM_Hip_F_Tshirt_019', + 'FM_Hip_F_Tshirt_020', + 'FM_Hip_F_Tshirt_021', + 'FM_Hip_F_Tshirt_022', + 'FM_Hip_F_Retro_000', + 'FM_Hip_F_Retro_001', + 'FM_Hip_F_Retro_002', + 'FM_Hip_F_Retro_003', + 'FM_Hip_F_Retro_004', + 'FM_Hip_F_Retro_005', + 'FM_Hip_F_Retro_006', + 'FM_Hip_F_Retro_007', + 'FM_Hip_F_Retro_008', + 'FM_Hip_F_Retro_009', + 'FM_Hip_F_Retro_010', + 'FM_Hip_F_Retro_011', + 'FM_Hip_F_Retro_012', + 'FM_Hip_F_Retro_013', + 'FM_Rstar_F_Tshirt_000', + 'FM_Rstar_F_Tshirt_001', + 'FM_Rstar_F_Tshirt_002' + }, + ['mpIndependance_overlays'] = { + 'FM_Ind_F_Award_000', + 'FM_Ind_F_Tshirt_000', + 'FM_Ind_F_Tshirt_001', + 'FM_Ind_F_Tshirt_002', + 'FM_Ind_F_Tshirt_003', + 'FM_Ind_F_Tshirt_004', + 'FM_Ind_F_Tshirt_005', + 'FM_Ind_F_Tshirt_006', + 'FM_Ind_F_Tshirt_007', + 'FM_Ind_F_Tshirt_008', + 'FM_Ind_F_Tshirt_009', + 'FM_Ind_F_Tshirt_010', + 'FM_Ind_F_Tshirt_011', + 'FM_Ind_F_Tshirt_012', + 'FM_Ind_F_Tshirt_013', + 'FM_Ind_F_Tshirt_014', + 'FM_Ind_F_Tshirt_015', + 'FM_Ind_F_Tshirt_016', + 'FM_Ind_F_Tshirt_017', + 'FM_Ind_F_Tshirt_018', + 'FM_Ind_F_Tshirt_019', + 'FM_Ind_F_Tshirt_020', + 'FM_Ind_F_Tshirt_021', + 'FM_Ind_F_Tshirt_022', + 'FM_Ind_F_Tshirt_023', + 'FM_Ind_F_Tshirt_024', + 'FM_Ind_F_Tshirt_025', + 'FM_Ind_F_Tshirt_026' + }, + ['mpIndependence_overlays'] = { + 'FM_Ind_F_Award_000', + 'FM_Ind_F_Tshirt_000', + 'FM_Ind_F_Tshirt_001', + 'FM_Ind_F_Tshirt_002', + 'FM_Ind_F_Tshirt_003', + 'FM_Ind_F_Tshirt_004', + 'FM_Ind_F_Tshirt_005', + 'FM_Ind_F_Tshirt_006', + 'FM_Ind_F_Tshirt_007', + 'FM_Ind_F_Tshirt_008', + 'FM_Ind_F_Tshirt_009', + 'FM_Ind_F_Tshirt_010', + 'FM_Ind_F_Tshirt_011', + 'FM_Ind_F_Tshirt_012', + 'FM_Ind_F_Tshirt_013', + 'FM_Ind_F_Tshirt_014', + 'FM_Ind_F_Tshirt_015', + 'FM_Ind_F_Tshirt_016', + 'FM_Ind_F_Tshirt_017', + 'FM_Ind_F_Tshirt_018', + 'FM_Ind_F_Tshirt_019', + 'FM_Ind_F_Tshirt_020', + 'FM_Ind_F_Tshirt_021', + 'FM_Ind_F_Tshirt_022', + 'FM_Ind_F_Tshirt_023', + 'FM_Ind_F_Tshirt_024', + 'FM_Ind_F_Tshirt_025', + 'FM_Ind_F_Tshirt_026' + }, + ['mpLowrider2_overlays'] = { + 'MP_Chianski_000_F', + 'MP_Chianski_001_F', + 'MP_Chianski_002_F', + 'MP_Chianski_003_F', + 'MP_Chianski_004_F', + 'MP_Chianski_005_F', + 'MP_Chianski_006_F', + 'MP_Hntr_000_F', + 'MP_Hntr_001_F', + 'MP_Hntr_002_F', + 'MP_Hntr_003_F', + 'MP_Hntr_004_F', + 'MP_Hntr_005_F', + 'MP_Hntr_006_F', + 'MP_Hntr_007_F', + 'MP_Hntr_008_F', + 'MP_Hntr_009_F', + 'MP_Hntr_010_F', + 'MP_Hntr_011_F', + 'MP_Hntr_012_F', + 'MP_Dense_000_F', + 'MP_Dense_001_F', + 'MP_Dense_002_F', + 'MP_Dense_003_F', + 'MP_Dense_004_F', + 'MP_Dense_005_F', + 'MP_Dense_006_F', + 'MP_Dense_007_F' + }, + ['mpLowrider_overlays'] = { + 'MP_Broker_000_F', + 'MP_Broker_001_F', + 'MP_Broker_002_F', + 'MP_Broker_003_F', + 'MP_Broker_004_F', + 'MP_Broker_005_F', + 'MP_Magnetics_000_F', + 'MP_Magnetics_001_F', + 'MP_Magnetics_002_F', + 'MP_Magnetics_003_F', + 'MP_Magnetics_004_F', + 'MP_Magnetics_005_F', + 'MP_Trickster_000_F', + 'MP_Trickster_001_F', + 'MP_Trickster_002_F', + 'MP_Trickster_003_F', + 'MP_Trickster_004_F', + 'MP_Trickster_005_F', + 'MP_Trickster_006_F', + 'MP_Trickster_007_F', + 'MP_Trickster_010_F', + 'MP_Bennys_000_F', + 'MP_Bennys_001_F' + }, + ['mpLTS_overlays'] = {'FM_LTS_F_Tshirt_000'}, + ['mpLuxe2_overlays'] = { + 'MP_LUXE_LC_000_F', + 'MP_LUXE_LC_001_F', + 'MP_LUXE_LC_002_F', + 'MP_LUXE_LC_003_F', + 'MP_LUXE_LC_006_F', + 'MP_LUXE_LC_007_F', + 'MP_LUXE_LC_008_F', + 'MP_LUXE_LC_009_F', + 'MP_LUXE_LC_012_F', + 'MP_LUXE_LC_013_F', + 'MP_LUXE_LC_014_F', + 'MP_LUXE_LC_015_F', + 'MP_LUXE_VDG_000_F', + 'MP_LUXE_VDG_001_F', + 'MP_LUXE_VDG_002_F', + 'MP_LUXE_VDG_004_F', + 'MP_LUXE_VDG_005_F', + 'MP_LUXE_VDG_006_F' + }, + ['mpLuxe_overlays'] = { + 'MP_LUXE_LC_004_F', + 'MP_LUXE_LC_005_F', + 'MP_LUXE_LC_010_F', + 'MP_LUXE_LC_011_F', + 'MP_LUXE_Enema_000_F', + 'MP_LUXE_Per_001_F', + 'MP_FAKE_LB_000_F', + 'MP_FAKE_LC_000_F', + 'MP_FAKE_ENEMA_000_F', + 'MP_FAKE_Per_000_F', + 'MP_FAKE_SN_000_F', + 'MP_FAKE_SC_000_F', + 'MP_FAKE_DS_000_F', + 'MP_FAKE_Vap_000_F', + 'MP_FAKE_DIS_000_F', + 'MP_FAKE_DIS_001_F', + 'MP_LUXE_DIX_000_F', + 'MP_LUXE_DIX_001_F', + 'MP_LUXE_DIX_002_F', + 'MP_LUXE_SN_000_F', + 'MP_LUXE_SN_001_F', + 'MP_LUXE_SN_002_F', + 'MP_LUXE_SN_003_F', + 'MP_LUXE_SN_004_F', + 'MP_LUXE_SN_005_F', + 'MP_LUXE_SN_006_F', + 'MP_LUXE_SN_007_F', + 'MP_LUXE_SC_000_F', + 'MP_FILM_000_F', + 'MP_FILM_001_F', + 'MP_FILM_002_F', + 'MP_FILM_003_F', + 'MP_FILM_004_F', + 'MP_FILM_005_F', + 'MP_FILM_006_F', + 'MP_FILM_007_F', + 'MP_FILM_008_F', + 'MP_FILM_009_F' + }, + ['mpPilot_overlays'] = {'MP_Fli_F_Tshirt_000'}, + ['mpSmuggler_overlays'] = { + 'MP_Smuggler_Graphic_000_F', + 'MP_Smuggler_Graphic_001_F', + 'MP_Smuggler_Graphic_002_F', + 'MP_Smuggler_Graphic_003_F', + 'MP_Smuggler_Graphic_004_F', + 'MP_Smuggler_Graphic_005_F', + 'MP_Smuggler_Graphic_006_F', + 'MP_Smuggler_Graphic_007_F', + 'MP_Smuggler_Graphic_008_F', + 'MP_Smuggler_Graphic_009_F', + 'MP_Smuggler_Graphic_010_F', + 'MP_Smuggler_Graphic_011_F', + 'MP_Smuggler_Graphic_012_F', + 'MP_Smuggler_Graphic_013_F', + 'MP_Smuggler_Graphic_014_F', + 'MP_Smuggler_Graphic_015_F', + 'MP_Smuggler_Graphic_016_F', + 'MP_Smuggler_Graphic_017_F', + 'MP_Smuggler_Graphic_018_F' + }, + ['mpValentines_overlays'] = { + 'MP_Val_F_Tshirt_A', + 'MP_Val_F_Tshirt_B', + 'MP_Val_F_Tshirt_C', + 'MP_Val_F_Tshirt_D', + 'MP_Val_F_Tshirt_E', + 'MP_Val_F_Tshirt_F', + 'MP_Val_F_Tshirt_G', + 'MP_Val_F_Tshirt_H', + 'MP_Val_F_Tshirt_I', + 'MP_Val_F_Tshirt_J', + 'MP_Val_F_Tshirt_K', + 'MP_Val_F_Tshirt_L', + 'MP_Val_F_Tshirt_M', + 'MP_Val_F_Tshirt_N', + 'MP_Val_F_Tshirt_O', + 'MP_Val_F_Tshirt_P', + 'MP_Val_F_Tshirt_Q', + 'MP_Val_F_Tshirt_R', + 'MP_Val_F_Tshirt_S', + 'MP_Val_F_Tshirt_T' + }, + ['mpxmas_604490_overlays'] = {'MP_IHeartLC_001_F'}, + ['multiplayer_overlays'] = { + 'FM_CREW_F_000_A', + 'FM_CREW_F_000_B', + 'FM_CREW_F_000_C', + 'FM_CREW_F_000_D', + 'FM_Tshirt_Award_F_000', + 'FM_Tshirt_Award_F_001', + 'FM_Tshirt_Award_F_002', + 'mp_fm_branding_019', + 'mp_fm_branding_025', + 'mp_fm_branding_037', + 'mp_fm_branding_048', + 'mp_fm_branding_049', + 'mp_fm_branding_050', + 'mp_fm_branding_051', + 'mp_fm_branding_052', + 'mp_fm_branding_053', + 'mp_fm_branding_054', + 'mp_fm_branding_055', + 'mp_fm_branding_056', + 'mp_fm_branding_057', + 'mp_fm_branding_058', + 'mp_fm_branding_059', + 'mp_fm_branding_060', + 'mp_fm_branding_061', + 'mp_fm_branding_062', + 'mp_fm_branding_066', + 'mp_fm_branding_067', + 'mp_fm_branding_068', + 'mp_fm_branding_069', + 'mp_fm_branding_070', + 'mp_fm_branding_027_f', + 'mp_fm_branding_028_F', + 'mp_fm_branding_034_f', + 'mp_fm_branding_036_F', + 'mp_fm_branding_039_f', + 'mp_fm_OGA_000_f', + 'mp_fm_OGA_001_f', + 'mp_fm_OGA_002_f', + 'mp_fm_OGA_003_f', + 'FM_CREW_F_000_A', + 'FM_CREW_F_000_B', + 'FM_CREW_F_000_C', + 'FM_CREW_F_000_D', + 'FM_Tshirt_Award_F_000', + 'FM_Tshirt_Award_F_001', + 'FM_Tshirt_Award_F_002', + 'mp_fm_branding_019', + 'mp_fm_branding_025', + 'mp_fm_branding_037', + 'mp_fm_branding_048', + 'mp_fm_branding_049', + 'mp_fm_branding_050', + 'mp_fm_branding_051', + 'mp_fm_branding_052', + 'mp_fm_branding_053', + 'mp_fm_branding_054', + 'mp_fm_branding_055', + 'mp_fm_branding_056', + 'mp_fm_branding_057', + 'mp_fm_branding_058', + 'mp_fm_branding_059', + 'mp_fm_branding_060', + 'mp_fm_branding_061', + 'mp_fm_branding_062', + 'mp_fm_branding_066', + 'mp_fm_branding_067', + 'mp_fm_branding_068', + 'mp_fm_branding_069', + 'mp_fm_branding_070', + 'mp_fm_branding_027_f', + 'mp_fm_branding_028_F', + 'mp_fm_branding_034_f', + 'mp_fm_branding_036_F', + 'mp_fm_branding_039_f', + 'mp_fm_OGA_000_f', + 'mp_fm_OGA_001_f', + 'mp_fm_OGA_002_f', + 'mp_fm_OGA_003_f' + } + } +} diff --git a/[required]/cvf_skins/data/tattoos_male.lua b/[required]/cvf_skins/data/tattoos_male.lua new file mode 100644 index 0000000..7e6f37d --- /dev/null +++ b/[required]/cvf_skins/data/tattoos_male.lua @@ -0,0 +1,1409 @@ +return { + ['TORSO'] = { + ['mpAirraces_overlays'] = { + 'MP_Airraces_Tattoo_000_M', + 'MP_Airraces_Tattoo_001_M', + 'MP_Airraces_Tattoo_002_M', + 'MP_Airraces_Tattoo_004_M', + 'MP_Airraces_Tattoo_005_M', + 'MP_Airraces_Tattoo_006_M', + 'MP_Airraces_Tattoo_007_M' + }, + ['mpBeach_overlays'] = { + 'MP_Bea_M_Back_000', + 'MP_Bea_M_Chest_000', + 'MP_Bea_M_Chest_001', + 'MP_Bea_M_Stom_000', + 'MP_Bea_M_Stom_001' + }, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_000_M', + 'MP_MP_Biker_Tat_001_M', + 'MP_MP_Biker_Tat_003_M', + 'MP_MP_Biker_Tat_005_M', + 'MP_MP_Biker_Tat_006_M', + 'MP_MP_Biker_Tat_008_M', + 'MP_MP_Biker_Tat_010_M', + 'MP_MP_Biker_Tat_011_M', + 'MP_MP_Biker_Tat_013_M', + 'MP_MP_Biker_Tat_017_M', + 'MP_MP_Biker_Tat_018_M', + 'MP_MP_Biker_Tat_019_M', + 'MP_MP_Biker_Tat_021_M', + 'MP_MP_Biker_Tat_023_M', + 'MP_MP_Biker_Tat_026_M', + 'MP_MP_Biker_Tat_029_M', + 'MP_MP_Biker_Tat_030_M', + 'MP_MP_Biker_Tat_031_M', + 'MP_MP_Biker_Tat_032_M', + 'MP_MP_Biker_Tat_034_M', + 'MP_MP_Biker_Tat_039_M', + 'MP_MP_Biker_Tat_041_M', + 'MP_MP_Biker_Tat_043_M', + 'MP_MP_Biker_Tat_050_M', + 'MP_MP_Biker_Tat_052_M', + 'MP_MP_Biker_Tat_058_M', + 'MP_MP_Biker_Tat_059_M', + 'MP_MP_Biker_Tat_060_M' + }, + ['mpBusiness_overlays'] = { + 'MP_Buis_M_Stomach_000', + 'MP_Buis_M_Chest_000', + 'MP_Buis_M_Chest_001', + 'MP_Buis_M_Back_000', + 'MP_Male_Crew_Tat_000' + }, + ['mpChristmas2017_overlays'] = { + 'MP_Christmas2017_Tattoo_000_M', + 'MP_Christmas2017_Tattoo_002_M', + 'MP_Christmas2017_Tattoo_003_M', + 'MP_Christmas2017_Tattoo_005_M', + 'MP_Christmas2017_Tattoo_008_M', + 'MP_Christmas2017_Tattoo_009_M', + 'MP_Christmas2017_Tattoo_010_M', + 'MP_Christmas2017_Tattoo_011_M', + 'MP_Christmas2017_Tattoo_015_M', + 'MP_Christmas2017_Tattoo_016_M', + 'MP_Christmas2017_Tattoo_019_M', + 'MP_Christmas2017_Tattoo_020_M', + 'MP_Christmas2017_Tattoo_021_M', + 'MP_Christmas2017_Tattoo_022_M', + 'MP_Christmas2017_Tattoo_024_M', + 'MP_Christmas2017_Tattoo_026_M', + 'MP_Christmas2017_Tattoo_027_M' + }, + ['mpChristmas2018_overlays'] = {'MP_Christmas2018_Tat_000_M'}, + ['mpChristmas2_overlays'] = { + 'MP_Xmas2_M_Tat_005', + 'MP_Xmas2_M_Tat_006', + 'MP_Xmas2_M_Tat_009', + 'MP_Xmas2_M_Tat_011', + 'MP_Xmas2_M_Tat_013', + 'MP_Xmas2_M_Tat_015', + 'MP_Xmas2_M_Tat_016', + 'MP_Xmas2_M_Tat_017', + 'MP_Xmas2_M_Tat_018', + 'MP_Xmas2_M_Tat_019', + 'MP_Xmas2_M_Tat_028' + }, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Tattoo_000_M', + 'MP_Gunrunning_Tattoo_001_M', + 'MP_Gunrunning_Tattoo_009_M', + 'MP_Gunrunning_Tattoo_010_M', + 'MP_Gunrunning_Tattoo_012_M', + 'MP_Gunrunning_Tattoo_013_M', + 'MP_Gunrunning_Tattoo_014_M', + 'MP_Gunrunning_Tattoo_017_M', + 'MP_Gunrunning_Tattoo_018_M', + 'MP_Gunrunning_Tattoo_019_M', + 'MP_Gunrunning_Tattoo_020_M', + 'MP_Gunrunning_Tattoo_022_M', + 'MP_Gunrunning_Tattoo_028_M', + 'MP_Gunrunning_Tattoo_029_M' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_M_Tat_000', + 'FM_Hip_M_Tat_002', + 'FM_Hip_M_Tat_006', + 'FM_Hip_M_Tat_011', + 'FM_Hip_M_Tat_012', + 'FM_Hip_M_Tat_013', + 'FM_Hip_M_Tat_024', + 'FM_Hip_M_Tat_025', + 'FM_Hip_M_Tat_029', + 'FM_Hip_M_Tat_030', + 'FM_Hip_M_Tat_031', + 'FM_Hip_M_Tat_032', + 'FM_Hip_M_Tat_033', + 'FM_Hip_M_Tat_035', + 'FM_Hip_M_Tat_041', + 'FM_Hip_M_Tat_046', + 'FM_Hip_M_Tat_047', + 'FM_Hip_M_Tat_000', + 'FM_Hip_M_Tat_002', + 'FM_Hip_M_Tat_006', + 'FM_Hip_M_Tat_011', + 'FM_Hip_M_Tat_012', + 'FM_Hip_M_Tat_013', + 'FM_Hip_M_Tat_024', + 'FM_Hip_M_Tat_025', + 'FM_Hip_M_Tat_029', + 'FM_Hip_M_Tat_030', + 'FM_Hip_M_Tat_031', + 'FM_Hip_M_Tat_032', + 'FM_Hip_M_Tat_033', + 'FM_Hip_M_Tat_035', + 'FM_Hip_M_Tat_041', + 'FM_Hip_M_Tat_046', + 'FM_Hip_M_Tat_047' + }, + ['mpImportExport_overlays'] = { + 'MP_MP_ImportExport_Tat_000_M', + 'MP_MP_ImportExport_Tat_001_M', + 'MP_MP_ImportExport_Tat_002_M', + 'MP_MP_ImportExport_Tat_009_M', + 'MP_MP_ImportExport_Tat_010_M', + 'MP_MP_ImportExport_Tat_011_M' + }, + ['mpLowrider2_overlays'] = { + 'MP_LR_Tat_000_M', + 'MP_LR_Tat_008_M', + 'MP_LR_Tat_011_M', + 'MP_LR_Tat_012_M', + 'MP_LR_Tat_016_M', + 'MP_LR_Tat_019_M', + 'MP_LR_Tat_031_M', + 'MP_LR_Tat_032_M' + }, + ['mpLowrider_overlays'] = { + 'MP_LR_Tat_001_M', + 'MP_LR_Tat_002_M', + 'MP_LR_Tat_004_M', + 'MP_LR_Tat_009_M', + 'MP_LR_Tat_010_M', + 'MP_LR_Tat_013_M', + 'MP_LR_Tat_014_M', + 'MP_LR_Tat_021_M', + 'MP_LR_Tat_026_M' + }, + ['mpLuxe2_overlays'] = { + 'MP_LUXE_TAT_002_M', + 'MP_LUXE_TAT_012_M', + 'MP_LUXE_TAT_022_M', + 'MP_LUXE_TAT_025_M', + 'MP_LUXE_TAT_027_M', + 'MP_LUXE_TAT_029_M' + }, + ['mpLuxe_overlays'] = { + 'MP_LUXE_TAT_003_M', + 'MP_LUXE_TAT_006_M', + 'MP_LUXE_TAT_007_M', + 'MP_LUXE_TAT_008_M', + 'MP_LUXE_TAT_014_M', + 'MP_LUXE_TAT_015_M', + 'MP_LUXE_TAT_024_M' + }, + ['mpSmuggler_overlays'] = { + 'MP_Smuggler_Tattoo_000_M', + 'MP_Smuggler_Tattoo_002_M', + 'MP_Smuggler_Tattoo_003_M', + 'MP_Smuggler_Tattoo_006_M', + 'MP_Smuggler_Tattoo_007_M', + 'MP_Smuggler_Tattoo_009_M', + 'MP_Smuggler_Tattoo_010_M', + 'MP_Smuggler_Tattoo_013_M', + 'MP_Smuggler_Tattoo_015_M', + 'MP_Smuggler_Tattoo_016_M', + 'MP_Smuggler_Tattoo_017_M', + 'MP_Smuggler_Tattoo_018_M', + 'MP_Smuggler_Tattoo_019_M', + 'MP_Smuggler_Tattoo_021_M', + 'MP_Smuggler_Tattoo_022_M', + 'MP_Smuggler_Tattoo_024_M', + 'MP_Smuggler_Tattoo_025_M' + }, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_011_M', + 'MP_MP_Stunt_tat_012_M', + 'MP_MP_Stunt_tat_014_M', + 'MP_MP_Stunt_tat_018_M', + 'MP_MP_Stunt_tat_019_M', + 'MP_MP_Stunt_tat_024_M', + 'MP_MP_Stunt_tat_026_M', + 'MP_MP_Stunt_tat_027_M', + 'MP_MP_Stunt_tat_029_M', + 'MP_MP_Stunt_tat_030_M', + 'MP_MP_Stunt_tat_033_M', + 'MP_MP_Stunt_tat_034_M', + 'MP_MP_Stunt_tat_037_M', + 'MP_MP_Stunt_tat_040_M', + 'MP_MP_Stunt_tat_041_M', + 'MP_MP_Stunt_tat_044_M', + 'MP_MP_Stunt_tat_046_M', + 'MP_MP_Stunt_tat_048_M' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_M_003', + 'FM_Tat_Award_M_004', + 'FM_Tat_Award_M_005', + 'FM_Tat_Award_M_008', + 'FM_Tat_Award_M_011', + 'FM_Tat_Award_M_012', + 'FM_Tat_Award_M_013', + 'FM_Tat_Award_M_014', + 'FM_Tat_Award_M_016', + 'FM_Tat_Award_M_017', + 'FM_Tat_Award_M_018', + 'FM_Tat_Award_M_019', + 'FM_Tat_M_004', + 'FM_Tat_M_009', + 'FM_Tat_M_010', + 'FM_Tat_M_011', + 'FM_Tat_M_012', + 'FM_Tat_M_013', + 'FM_Tat_M_016', + 'FM_Tat_M_019', + 'FM_Tat_M_020', + 'FM_Tat_M_024', + 'FM_Tat_M_025', + 'FM_Tat_M_029', + 'FM_Tat_M_030', + 'FM_Tat_M_034', + 'FM_Tat_M_036', + 'FM_Tat_M_044', + 'FM_Tat_M_045', + 'FM_Tat_M_046', + 'FM_Tat_Award_M_003', + 'FM_Tat_Award_M_004', + 'FM_Tat_Award_M_005', + 'FM_Tat_Award_M_008', + 'FM_Tat_Award_M_011', + 'FM_Tat_Award_M_012', + 'FM_Tat_Award_M_013', + 'FM_Tat_Award_M_014', + 'FM_Tat_Award_M_016', + 'FM_Tat_Award_M_017', + 'FM_Tat_Award_M_018', + 'FM_Tat_Award_M_019', + 'FM_Tat_M_004', + 'FM_Tat_M_009', + 'FM_Tat_M_010', + 'FM_Tat_M_011', + 'FM_Tat_M_012', + 'FM_Tat_M_013', + 'FM_Tat_M_016', + 'FM_Tat_M_019', + 'FM_Tat_M_020', + 'FM_Tat_M_024', + 'FM_Tat_M_025', + 'FM_Tat_M_029', + 'FM_Tat_M_030', + 'FM_Tat_M_034', + 'FM_Tat_M_036', + 'FM_Tat_M_044', + 'FM_Tat_M_045', + 'FM_Tat_M_046' + } + }, + ['HEAD'] = { + ['mpBeach_overlays'] = { + 'MP_Bea_M_Head_000', + 'MP_Bea_M_Head_001', + 'MP_Bea_M_Head_002', + 'MP_Bea_M_Neck_000', + 'MP_Bea_M_Neck_001' + }, + ['mpBiker_overlays'] = {'MP_MP_Biker_Tat_009_M', 'MP_MP_Biker_Tat_038_M', 'MP_MP_Biker_Tat_051_M'}, + ['mpBusiness_overlays'] = {'MP_Buis_M_Neck_000', 'MP_Buis_M_Neck_001', 'MP_Buis_M_Neck_002', 'MP_Buis_M_Neck_003'}, + ['mpChristmas2_overlays'] = {'MP_Xmas2_M_Tat_007', 'MP_Xmas2_M_Tat_024', 'MP_Xmas2_M_Tat_025', 'MP_Xmas2_M_Tat_029'}, + ['mpGunrunning_overlays'] = {'MP_Gunrunning_Tattoo_003_M'}, + ['mpHipster_overlays'] = {'FM_Hip_M_Tat_005', 'FM_Hip_M_Tat_021', 'FM_Hip_M_Tat_005', 'FM_Hip_M_Tat_021'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_011_M', 'MP_Smuggler_Tattoo_012_M'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_Tat_000_M', + 'MP_MP_Stunt_tat_004_M', + 'MP_MP_Stunt_tat_006_M', + 'MP_MP_Stunt_tat_017_M', + 'MP_MP_Stunt_tat_042_M' + }, + ['multiplayer_overlays'] = {'FM_Tat_Award_M_000', 'FM_Tat_Award_M_000'} + }, + ['LEFT_ARM'] = { + ['mpAirraces_overlays'] = {'MP_Airraces_Tattoo_003_M'}, + ['mpBeach_overlays'] = {'MP_Bea_M_LArm_000', 'MP_Bea_M_LArm_001'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_012_M', + 'MP_MP_Biker_Tat_016_M', + 'MP_MP_Biker_Tat_020_M', + 'MP_MP_Biker_Tat_024_M', + 'MP_MP_Biker_Tat_025_M', + 'MP_MP_Biker_Tat_035_M', + 'MP_MP_Biker_Tat_045_M', + 'MP_MP_Biker_Tat_053_M', + 'MP_MP_Biker_Tat_055_M' + }, + ['mpBusiness_overlays'] = {'MP_Buis_M_LeftArm_000', 'MP_Buis_M_LeftArm_001'}, + ['mpChristmas2017_overlays'] = { + 'MP_Christmas2017_Tattoo_001_M', + 'MP_Christmas2017_Tattoo_004_M', + 'MP_Christmas2017_Tattoo_007_M', + 'MP_Christmas2017_Tattoo_013_M', + 'MP_Christmas2017_Tattoo_025_M', + 'MP_Christmas2017_Tattoo_029_M' + }, + ['mpChristmas2_overlays'] = { + 'MP_Xmas2_M_Tat_000', + 'MP_Xmas2_M_Tat_010', + 'MP_Xmas2_M_Tat_012', + 'MP_Xmas2_M_Tat_020', + 'MP_Xmas2_M_Tat_021' + }, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Tattoo_004_M', + 'MP_Gunrunning_Tattoo_008_M', + 'MP_Gunrunning_Tattoo_015_M', + 'MP_Gunrunning_Tattoo_016_M', + 'MP_Gunrunning_Tattoo_025_M', + 'MP_Gunrunning_Tattoo_027_M' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_M_Tat_003', + 'FM_Hip_M_Tat_007', + 'FM_Hip_M_Tat_015', + 'FM_Hip_M_Tat_016', + 'FM_Hip_M_Tat_026', + 'FM_Hip_M_Tat_027', + 'FM_Hip_M_Tat_028', + 'FM_Hip_M_Tat_034', + 'FM_Hip_M_Tat_037', + 'FM_Hip_M_Tat_039', + 'FM_Hip_M_Tat_043', + 'FM_Hip_M_Tat_048', + 'FM_Hip_M_Tat_003', + 'FM_Hip_M_Tat_007', + 'FM_Hip_M_Tat_015', + 'FM_Hip_M_Tat_016', + 'FM_Hip_M_Tat_026', + 'FM_Hip_M_Tat_027', + 'FM_Hip_M_Tat_028', + 'FM_Hip_M_Tat_034', + 'FM_Hip_M_Tat_037', + 'FM_Hip_M_Tat_039', + 'FM_Hip_M_Tat_043', + 'FM_Hip_M_Tat_048' + }, + ['mpImportExport_overlays'] = {'MP_MP_ImportExport_Tat_004_M', 'MP_MP_ImportExport_Tat_008_M'}, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_006_M', 'MP_LR_Tat_018_M', 'MP_LR_Tat_022_M'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_005_M', 'MP_LR_Tat_027_M', 'MP_LR_Tat_033_M'}, + ['mpLuxe2_overlays'] = { + 'MP_LUXE_TAT_005_M', + 'MP_LUXE_TAT_016_M', + 'MP_LUXE_TAT_018_M', + 'MP_LUXE_TAT_028_M', + 'MP_LUXE_TAT_031_M' + }, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_009_M', 'MP_LUXE_TAT_020_M', 'MP_LUXE_TAT_021_M'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_004_M', 'MP_Smuggler_Tattoo_008_M', 'MP_Smuggler_Tattoo_014_M'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_001_M', + 'MP_MP_Stunt_tat_002_M', + 'MP_MP_Stunt_tat_008_M', + 'MP_MP_Stunt_tat_022_M', + 'MP_MP_Stunt_tat_023_M', + 'MP_MP_Stunt_tat_035_M', + 'MP_MP_Stunt_tat_039_M', + 'MP_MP_Stunt_tat_043_M' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_M_001', + 'FM_Tat_Award_M_007', + 'FM_Tat_Award_M_015', + 'FM_Tat_M_005', + 'FM_Tat_M_006', + 'FM_Tat_M_015', + 'FM_Tat_M_031', + 'FM_Tat_M_041', + 'FM_Tat_Award_M_001', + 'FM_Tat_Award_M_007', + 'FM_Tat_Award_M_015', + 'FM_Tat_M_005', + 'FM_Tat_M_006', + 'FM_Tat_M_015', + 'FM_Tat_M_031', + 'FM_Tat_M_041' + } + }, + ['RIGHT_ARM'] = { + ['mpBeach_overlays'] = {'MP_Bea_M_RArm_000', 'MP_Bea_M_RArm_001'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_007_M', + 'MP_MP_Biker_Tat_014_M', + 'MP_MP_Biker_Tat_033_M', + 'MP_MP_Biker_Tat_042_M', + 'MP_MP_Biker_Tat_046_M', + 'MP_MP_Biker_Tat_047_M', + 'MP_MP_Biker_Tat_049_M', + 'MP_MP_Biker_Tat_054_M' + }, + ['mpBusiness_overlays'] = {'MP_Buis_M_RightArm_000', 'MP_Buis_M_RightArm_001', 'MP_Male_Crew_Tat_001'}, + ['mpChristmas2017_overlays'] = { + 'MP_Christmas2017_Tattoo_006_M', + 'MP_Christmas2017_Tattoo_012_M', + 'MP_Christmas2017_Tattoo_014_M', + 'MP_Christmas2017_Tattoo_017_M', + 'MP_Christmas2017_Tattoo_018_M', + 'MP_Christmas2017_Tattoo_023_M', + 'MP_Christmas2017_Tattoo_028_M' + }, + ['mpChristmas2_overlays'] = { + 'MP_Xmas2_M_Tat_003', + 'MP_Xmas2_M_Tat_004', + 'MP_Xmas2_M_Tat_008', + 'MP_Xmas2_M_Tat_022', + 'MP_Xmas2_M_Tat_023', + 'MP_Xmas2_M_Tat_026', + 'MP_Xmas2_M_Tat_027' + }, + ['mpGunrunning_overlays'] = {'MP_Gunrunning_Tattoo_002_M', 'MP_Gunrunning_Tattoo_021_M', 'MP_Gunrunning_Tattoo_024_M'}, + ['mpHipster_overlays'] = { + 'FM_Hip_M_Tat_001', + 'FM_Hip_M_Tat_004', + 'FM_Hip_M_Tat_008', + 'FM_Hip_M_Tat_010', + 'FM_Hip_M_Tat_014', + 'FM_Hip_M_Tat_017', + 'FM_Hip_M_Tat_018', + 'FM_Hip_M_Tat_020', + 'FM_Hip_M_Tat_022', + 'FM_Hip_M_Tat_023', + 'FM_Hip_M_Tat_036', + 'FM_Hip_M_Tat_044', + 'FM_Hip_M_Tat_045', + 'FM_Hip_M_Tat_001', + 'FM_Hip_M_Tat_004', + 'FM_Hip_M_Tat_008', + 'FM_Hip_M_Tat_010', + 'FM_Hip_M_Tat_014', + 'FM_Hip_M_Tat_017', + 'FM_Hip_M_Tat_018', + 'FM_Hip_M_Tat_020', + 'FM_Hip_M_Tat_022', + 'FM_Hip_M_Tat_023', + 'FM_Hip_M_Tat_036', + 'FM_Hip_M_Tat_044', + 'FM_Hip_M_Tat_045' + }, + ['mpImportExport_overlays'] = { + 'MP_MP_ImportExport_Tat_003_M', + 'MP_MP_ImportExport_Tat_005_M', + 'MP_MP_ImportExport_Tat_006_M', + 'MP_MP_ImportExport_Tat_007_M' + }, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_003_M', 'MP_LR_Tat_028_M', 'MP_LR_Tat_035_M'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_015_M'}, + ['mpLuxe2_overlays'] = {'MP_LUXE_TAT_010_M', 'MP_LUXE_TAT_017_M', 'MP_LUXE_TAT_026_M', 'MP_LUXE_TAT_030_M'}, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_004_M', 'MP_LUXE_TAT_013_M', 'MP_LUXE_TAT_019_M'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_001_M', 'MP_Smuggler_Tattoo_005_M', 'MP_Smuggler_Tattoo_023_M'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_003_M', + 'MP_MP_Stunt_tat_009_M', + 'MP_MP_Stunt_tat_010_M', + 'MP_MP_Stunt_tat_016_M', + 'MP_MP_Stunt_tat_036_M', + 'MP_MP_Stunt_tat_038_M', + 'MP_MP_Stunt_tat_049_M' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_M_002', + 'FM_Tat_Award_M_010', + 'FM_Tat_M_000', + 'FM_Tat_M_001', + 'FM_Tat_M_003', + 'FM_Tat_M_014', + 'FM_Tat_M_018', + 'FM_Tat_M_027', + 'FM_Tat_M_028', + 'FM_Tat_M_038', + 'FM_Tat_M_047', + 'FM_Tat_Award_M_002', + 'FM_Tat_Award_M_010', + 'FM_Tat_M_000', + 'FM_Tat_M_001', + 'FM_Tat_M_003', + 'FM_Tat_M_014', + 'FM_Tat_M_018', + 'FM_Tat_M_027', + 'FM_Tat_M_028', + 'FM_Tat_M_038', + 'FM_Tat_M_047' + } + }, + ['LEFT_LEG'] = { + ['mpBeach_overlays'] = {'MP_Bea_M_Lleg_000'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_002_M', + 'MP_MP_Biker_Tat_015_M', + 'MP_MP_Biker_Tat_027_M', + 'MP_MP_Biker_Tat_036_M', + 'MP_MP_Biker_Tat_037_M', + 'MP_MP_Biker_Tat_044_M', + 'MP_MP_Biker_Tat_056_M', + 'MP_MP_Biker_Tat_057_M' + }, + ['mpChristmas2_overlays'] = {'MP_Xmas2_M_Tat_001', 'MP_Xmas2_M_Tat_002'}, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Tattoo_005_M', + 'MP_Gunrunning_Tattoo_007_M', + 'MP_Gunrunning_Tattoo_011_M', + 'MP_Gunrunning_Tattoo_023_M' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_M_Tat_009', + 'FM_Hip_M_Tat_019', + 'FM_Hip_M_Tat_040', + 'FM_Hip_M_Tat_009', + 'FM_Hip_M_Tat_019', + 'FM_Hip_M_Tat_040' + }, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_029_M'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_007_M', 'MP_LR_Tat_020_M'}, + ['mpLuxe2_overlays'] = {'MP_LUXE_TAT_011_M'}, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_000_M'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_007_M', + 'MP_MP_Stunt_tat_013_M', + 'MP_MP_Stunt_tat_021_M', + 'MP_MP_Stunt_tat_028_M', + 'MP_MP_Stunt_tat_031_M' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_M_009', + 'FM_Tat_M_002', + 'FM_Tat_M_008', + 'FM_Tat_M_021', + 'FM_Tat_M_023', + 'FM_Tat_M_026', + 'FM_Tat_M_032', + 'FM_Tat_M_033', + 'FM_Tat_M_035', + 'FM_Tat_M_037', + 'FM_Tat_Award_M_009', + 'FM_Tat_M_002', + 'FM_Tat_M_008', + 'FM_Tat_M_021', + 'FM_Tat_M_023', + 'FM_Tat_M_026', + 'FM_Tat_M_032', + 'FM_Tat_M_033', + 'FM_Tat_M_035', + 'FM_Tat_M_037' + } + }, + ['RIGHT_LEG'] = { + ['mpBeach_overlays'] = {'MP_Bea_M_Rleg_000'}, + ['mpBiker_overlays'] = { + 'MP_MP_Biker_Tat_004_M', + 'MP_MP_Biker_Tat_022_M', + 'MP_MP_Biker_Tat_028_M', + 'MP_MP_Biker_Tat_040_M', + 'MP_MP_Biker_Tat_048_M' + }, + ['mpChristmas2_overlays'] = {'MP_Xmas2_M_Tat_014'}, + ['mpGunrunning_overlays'] = {'MP_Gunrunning_Tattoo_006_M', 'MP_Gunrunning_Tattoo_026_M', 'MP_Gunrunning_Tattoo_030_M'}, + ['mpHipster_overlays'] = {'FM_Hip_M_Tat_038', 'FM_Hip_M_Tat_042', 'FM_Hip_M_Tat_038', 'FM_Hip_M_Tat_042'}, + ['mpLowrider2_overlays'] = {'MP_LR_Tat_030_M'}, + ['mpLowrider_overlays'] = {'MP_LR_Tat_017_M', 'MP_LR_Tat_023_M'}, + ['mpLuxe2_overlays'] = {'MP_LUXE_TAT_023_M'}, + ['mpLuxe_overlays'] = {'MP_LUXE_TAT_001_M'}, + ['mpSmuggler_overlays'] = {'MP_Smuggler_Tattoo_020_M'}, + ['mpStunt_overlays'] = { + 'MP_MP_Stunt_tat_005_M', + 'MP_MP_Stunt_tat_015_M', + 'MP_MP_Stunt_tat_020_M', + 'MP_MP_Stunt_tat_025_M', + 'MP_MP_Stunt_tat_032_M', + 'MP_MP_Stunt_tat_045_M', + 'MP_MP_Stunt_tat_047_M' + }, + ['multiplayer_overlays'] = { + 'FM_Tat_Award_M_006', + 'FM_Tat_M_007', + 'FM_Tat_M_017', + 'FM_Tat_M_022', + 'FM_Tat_M_039', + 'FM_Tat_M_040', + 'FM_Tat_M_042', + 'FM_Tat_M_043', + 'FM_Tat_Award_M_006', + 'FM_Tat_M_007', + 'FM_Tat_M_017', + 'FM_Tat_M_022', + 'FM_Tat_M_039', + 'FM_Tat_M_040', + 'FM_Tat_M_042', + 'FM_Tat_M_043' + } + }, + ['BADGES'] = { + ['mpBattle_overlays'] = { + 'MP_Battle_Clothing_000_M', + 'MP_Battle_Clothing_001_M', + 'MP_Battle_Clothing_002_M', + 'MP_Battle_Clothing_003_M', + 'MP_Battle_Clothing_004_M', + 'MP_Battle_Clothing_005_M', + 'MP_Battle_Clothing_006_M', + 'MP_Battle_Clothing_007_M', + 'MP_Battle_Clothing_008_M', + 'MP_Battle_Clothing_009_M', + 'MP_Battle_Clothing_010_M', + 'MP_Battle_Clothing_011_M', + 'MP_Battle_Clothing_012_M', + 'MP_Battle_Clothing_013_M', + 'MP_Battle_Clothing_014_M', + 'MP_Battle_Clothing_015_M', + 'MP_Battle_Clothing_016_M', + 'MP_Battle_Clothing_017_M', + 'MP_Battle_Clothing_018_M', + 'MP_Battle_Clothing_019_M', + 'MP_Battle_Clothing_020_M', + 'MP_Battle_Clothing_021_M', + 'MP_Battle_Clothing_022_M', + 'MP_Battle_Clothing_023_M', + 'MP_Battle_Clothing_024_M', + 'MP_Battle_Clothing_025_M', + 'MP_Battle_Clothing_026_M', + 'MP_Battle_Clothing_027_M', + 'MP_Battle_Clothing_028_M', + 'MP_Battle_Clothing_029_M', + 'MP_Battle_Clothing_030_M', + 'MP_Battle_Clothing_031_M', + 'MP_Battle_Clothing_032_M', + 'MP_Battle_Clothing_033_M', + 'MP_Battle_Clothing_034_M', + 'MP_Battle_Clothing_035_M', + 'MP_Battle_Clothing_036_M', + 'MP_Battle_Clothing_037_M', + 'MP_Battle_Clothing_038_M', + 'MP_Battle_Clothing_039_M', + 'MP_Battle_Clothing_040_M', + 'MP_Battle_Clothing_041_M', + 'MP_Battle_Clothing_042_M', + 'MP_Battle_Clothing_043_M', + 'MP_Battle_Clothing_044_M', + 'MP_Battle_Clothing_045_M', + 'MP_Battle_Clothing_046_M', + 'MP_Battle_Clothing_047_M', + 'MP_Battle_Clothing_048_M', + 'MP_Battle_Clothing_049_M', + 'MP_Battle_Clothing_050_M', + 'MP_Battle_Clothing_051_M', + 'MP_Battle_Clothing_052_M', + 'MP_Battle_Clothing_053_M', + 'MP_Battle_Clothing_054_M', + 'MP_Battle_Clothing_055_M', + 'MP_Battle_Clothing_056_M', + 'MP_Battle_Clothing_057_M', + 'MP_Battle_Clothing_058_M', + 'MP_Battle_Clothing_059_M', + 'MP_Battle_Clothing_060_M', + 'MP_Battle_Clothing_061_M', + 'MP_Battle_Clothing_062_M' + }, + ['mpBiker_overlays'] = { + 'MP_Biker_Award_000_M', + 'MP_Biker_Award_001_M', + 'MP_Biker_Rank_000_M', + 'MP_Biker_Rank_001_M', + 'MP_Biker_Rank_002_M', + 'MP_Biker_Rank_003_M', + 'MP_Biker_Rank_004_M', + 'MP_Biker_Rank_005_M', + 'MP_Biker_Rank_006_M', + 'MP_Biker_Rank_007_M', + 'MP_Biker_Rank_008_M', + 'MP_Biker_Rank_009_M', + 'MP_Biker_Rank_010_M', + 'MP_Biker_Rank_011_M', + 'MP_Biker_Rank_012_M', + 'MP_Biker_Rank_013_M', + 'MP_Biker_Rank_014_M', + 'MP_Biker_Rank_015_M', + 'MP_Biker_Rank_016_M', + 'MP_Biker_Rank_017_M', + 'MP_Biker_Tee_000_M', + 'MP_Biker_Tee_001_M', + 'MP_Biker_Tee_002_M', + 'MP_Biker_Tee_003_M', + 'MP_Biker_Tee_004_M', + 'MP_Biker_Tee_005_M', + 'MP_Biker_Tee_006_M', + 'MP_Biker_Tee_007_M', + 'MP_Biker_Tee_008_M', + 'MP_Biker_Tee_009_M', + 'MP_Biker_Tee_010_M', + 'MP_Biker_Tee_011_M', + 'MP_Biker_Tee_012_M', + 'MP_Biker_Tee_013_M', + 'MP_Biker_Tee_014_M', + 'MP_Biker_Tee_015_M', + 'MP_Biker_Tee_016_M', + 'MP_Biker_Tee_017_M', + 'MP_Biker_Tee_018_M', + 'MP_Biker_Tee_019_M', + 'MP_Biker_Tee_020_M', + 'MP_Biker_Tee_021_M', + 'MP_Biker_Tee_022_M', + 'MP_Biker_Tee_023_M', + 'MP_Biker_Tee_024_M', + 'MP_Biker_Tee_025_M', + 'MP_Biker_Tee_026_M', + 'MP_Biker_Tee_027_M', + 'MP_Biker_Tee_028_M', + 'MP_Biker_Tee_029_M', + 'MP_Biker_Tee_030_M', + 'MP_Biker_Tee_031_M', + 'MP_Biker_Tee_032_M', + 'MP_Biker_Tee_033_M', + 'MP_Biker_Tee_034_M', + 'MP_Biker_Tee_035_M', + 'MP_Biker_Tee_036_M', + 'MP_Biker_Tee_037_M', + 'MP_Biker_Tee_038_M', + 'MP_Biker_Tee_039_M', + 'MP_Biker_Tee_040_M', + 'MP_Biker_Tee_041_M', + 'MP_Biker_Tee_042_M', + 'MP_Biker_Tee_043_M', + 'MP_Biker_Tee_044_M', + 'MP_Biker_Tee_045_M', + 'MP_Biker_Tee_046_M', + 'MP_Biker_Tee_047_M', + 'MP_Biker_Tee_048_M', + 'MP_Biker_Tee_049_M', + 'MP_Biker_Tee_050_M', + 'MP_Biker_Tee_051_M', + 'MP_Biker_Tee_052_M', + 'MP_Biker_Tee_053_M', + 'MP_Biker_Tee_054_M', + 'MP_Biker_Tee_055_M' + }, + ['mpChristmas2018_overlays'] = { + 'MP_Christmas2018_Tee_000_M', + 'MP_Christmas2018_Tee_001_M', + 'MP_Christmas2018_Tee_002_M', + 'MP_Christmas2018_Tee_003_M', + 'MP_Christmas2018_Tee_004_M', + 'MP_Christmas2018_Tee_005_M', + 'MP_Christmas2018_Tee_006_M', + 'MP_Christmas2018_Tee_007_M', + 'MP_Christmas2018_Tee_008_M', + 'MP_Christmas2018_Tee_009_M', + 'MP_Christmas2018_Tee_010_M', + 'MP_Christmas2018_Tee_011_M', + 'MP_Christmas2018_Tee_012_M', + 'MP_Christmas2018_Tee_013_M', + 'MP_Christmas2018_Tee_014_M', + 'MP_Christmas2018_Tee_015_M', + 'MP_Christmas2018_Tee_016_M', + 'MP_Christmas2018_Tee_017_M', + 'MP_Christmas2018_Tee_018_M', + 'MP_Christmas2018_Tee_019_M', + 'MP_Christmas2018_Tee_020_M', + 'MP_Christmas2018_Tee_021_M', + 'MP_Christmas2018_Tee_022_M', + 'MP_Christmas2018_Tee_023_M', + 'MP_Christmas2018_Tee_024_M', + 'MP_Christmas2018_Tee_025_M', + 'MP_Christmas2018_Tee_026_M', + 'MP_Christmas2018_Tee_027_M', + 'MP_Christmas2018_Tee_028_M', + 'MP_Christmas2018_Tee_029_M', + 'MP_Christmas2018_Tee_030_M', + 'MP_Christmas2018_Tee_031_M', + 'MP_Christmas2018_Tee_032_M', + 'MP_Christmas2018_Tee_033_M', + 'MP_Christmas2018_Tee_034_M', + 'MP_Christmas2018_Tee_035_M', + 'MP_Christmas2018_Tee_036_M', + 'MP_Christmas2018_Tee_037_M', + 'MP_Christmas2018_Tee_038_M', + 'MP_Christmas2018_Tee_039_M', + 'MP_Christmas2018_Tee_040_M', + 'MP_Christmas2018_Tee_041_M', + 'MP_Christmas2018_Tee_042_M', + 'MP_Christmas2018_Tee_043_M', + 'MP_Christmas2018_Tee_044_M', + 'MP_Christmas2018_Tee_045_M', + 'MP_Christmas2018_Tee_046_M', + 'MP_Christmas2018_Tee_047_M', + 'MP_Christmas2018_Tee_048_M', + 'MP_Christmas2018_Tee_049_M', + 'MP_Christmas2018_Tee_050_M', + 'MP_Christmas2018_Tee_051_M', + 'MP_Christmas2018_Tee_052_M', + 'MP_Christmas2018_Tee_053_M', + 'MP_Christmas2018_Tee_054_M', + 'MP_Christmas2018_Tee_055_M', + 'MP_Christmas2018_Tee_056_M', + 'MP_Christmas2018_Tee_057_M', + 'MP_Christmas2018_Tee_058_M', + 'MP_Christmas2018_Tee_059_M', + 'MP_Christmas2018_Tee_060_M', + 'MP_Christmas2018_Tee_061_M', + 'MP_Christmas2018_Tee_062_M', + 'MP_Christmas2018_Tee_063_M', + 'MP_Christmas2018_Tee_064_M', + 'MP_Christmas2018_Tee_065_M', + 'MP_Christmas2018_Tee_066_M', + 'MP_Christmas2018_Tee_067_M', + 'MP_Christmas2018_Tee_068_M', + 'MP_Christmas2018_Tee_069_M', + 'MP_Christmas2018_Tee_070_M', + 'MP_Christmas2018_Tee_071_M', + 'MP_Christmas2018_Tee_072_M', + 'MP_Christmas2018_Tee_073_M', + 'MP_Christmas2018_Tee_074_M', + 'MP_Christmas2018_Tee_075_M', + 'MP_Christmas2018_Tee_076_M', + 'MP_Christmas2018_Tee_077_M', + 'MP_Christmas2018_Tee_078_M', + 'MP_Christmas2018_Tee_079_M', + 'MP_Christmas2018_Tee_080_M', + 'MP_Christmas2018_Tee_081_M', + 'MP_Christmas2018_Tee_082_M', + 'MP_Christmas2018_Tee_083_M', + 'MP_Christmas2018_Tee_084_M', + 'MP_Christmas2018_Tee_085_M', + 'MP_Christmas2018_Tee_086_M', + 'MP_Christmas2018_Tee_087_M', + 'MP_Christmas2018_Tee_088_M', + 'MP_Christmas2018_Tee_089_M', + 'MP_Christmas2018_Tee_090_M', + 'MP_Christmas2018_Tee_091_M', + 'MP_Christmas2018_Tee_092_M', + 'MP_Christmas2018_Tee_093_M', + 'MP_Christmas2018_Tee_094_M', + 'MP_Christmas2018_Tee_095_M', + 'MP_Christmas2018_Tee_096_M', + 'MP_Christmas2018_Tee_097_M', + 'MP_Christmas2018_Tee_098_M', + 'MP_Christmas2018_Tee_099_M', + 'MP_Christmas2018_Tee_100_M', + 'MP_Christmas2018_Tee_101_M', + 'MP_Christmas2018_Tee_102_M', + 'MP_Christmas2018_Tee_103_M', + 'MP_Christmas2018_Tee_104_M', + 'MP_Christmas2018_Tee_105_M', + 'MP_Christmas2018_Tee_106_M', + 'MP_Christmas2018_Tee_107_M', + 'MP_Christmas2018_Tee_108_M', + 'MP_Christmas2018_Tee_109_M', + 'MP_Christmas2018_Tee_110_M', + 'MP_Christmas2018_Tee_111_M', + 'MP_Christmas2018_Tee_112_M', + 'MP_Christmas2018_Tee_113_M', + 'MP_Christmas2018_Tee_114_M', + 'MP_Christmas2018_Tee_115_M', + 'MP_Christmas2018_Tee_116_M', + 'MP_Christmas2018_Tee_117_M', + 'MP_Christmas2018_Tee_118_M', + 'MP_Christmas2018_Tee_119_M', + 'MP_Christmas2018_Tee_120_M', + 'MP_Christmas2018_Tee_121_M', + 'MP_Christmas2018_Tee_122_M', + 'MP_Christmas2018_Tee_123_M', + 'MP_Christmas2018_Tee_124_M' + }, + ['mpExecutive_overlays'] = { + 'MP_Securoserv_000_M', + 'MP_exec_teams_000_M', + 'MP_exec_teams_001_M', + 'MP_exec_teams_002_M', + 'MP_exec_teams_003_M', + 'MP_exec_prizes_000_M', + 'MP_exec_prizes_001_M', + 'MP_exec_prizes_002_M', + 'MP_exec_prizes_003_M', + 'MP_exec_prizes_004_M', + 'MP_exec_prizes_005_M', + 'MP_exec_prizes_006_M', + 'MP_exec_prizes_007_M', + 'MP_exec_prizes_008_M', + 'MP_exec_prizes_009_M', + 'MP_exec_prizes_010_M', + 'MP_exec_prizes_011_M', + 'MP_exec_prizes_012_M', + 'MP_exec_prizes_013_M', + 'MP_exec_prizes_014_M', + 'MP_exec_prizes_015_M' + }, + ['mpGunrunning_overlays'] = { + 'MP_Gunrunning_Award_000_M', + 'MP_Gunrunning_Award_001_M', + 'MP_Gunrunning_Award_002_M', + 'MP_Gunrunning_Award_003_M', + 'MP_Gunrunning_Award_004_M', + 'MP_Gunrunning_Award_005_M', + 'MP_Gunrunning_Award_006_M', + 'MP_Gunrunning_Award_007_M', + 'MP_Gunrunning_Award_008_M', + 'MP_Gunrunning_Award_009_M', + 'MP_Gunrunning_Award_010_M', + 'MP_Gunrunning_Award_011_M', + 'MP_Gunrunning_Award_012_M', + 'MP_Gunrunning_Award_013_M', + 'MP_Gunrunning_Award_014_M', + 'MP_Gunrunning_Award_015_M', + 'MP_Gunrunning_Award_016_M', + 'MP_Gunrunning_Award_017_M', + 'MP_Gunrunning_Award_018_M', + 'MP_Gunrunning_Award_019_M', + 'MP_Gunrunning_Award_020_M', + 'MP_Gunrunning_Award_021_M', + 'MP_Gunrunning_Award_022_M', + 'MP_Gunrunning_Award_023_M', + 'MP_Gunrunning_Award_024_M' + }, + ['mpHalloween_overlays'] = { + 'HW_Tee_000_M', + 'HW_Tee_001_M', + 'HW_Tee_002_M', + 'HW_Tee_003_M', + 'HW_Tee_004_M', + 'HW_Tee_005_M', + 'HW_Tee_006_M', + 'HW_Tee_007_M', + 'HW_Tee_008_M', + 'HW_Tee_009_M', + 'HW_Tee_010_M', + 'HW_Tee_011_M', + 'HW_Tee_012_M' + }, + ['mpHeist_overlays'] = { + 'MP_Award_M_Tshirt_004', + 'MP_Award_M_Tshirt_005', + 'MP_Award_M_Tshirt_006', + 'MP_Award_M_Tshirt_007', + 'MP_Award_M_Tshirt_008', + 'MP_Award_M_Tshirt_009', + 'MP_Award_M_Tshirt_010', + 'MP_Award_M_Tshirt_011', + 'MP_Award_M_Tshirt_012', + 'MP_Award_M_Tshirt_013', + 'MP_Fli_M_Tshirt_000', + 'MP_Bugstar_A', + 'MP_Bugstar_B', + 'MP_Bugstar_C', + 'MP_Rogers_A', + 'MP_Rogers_B', + 'MP_Power_A', + 'MP_Power_B', + 'MP_Als_A', + 'MP_Als_B', + 'MP_Elite_M_Tshirt', + 'MP_Elite_M_Tshirt_1', + 'MP_Elite_M_Tshirt_2' + }, + ['mpHipster_overlays'] = { + 'FM_Hip_M_Tshirt_000', + 'FM_Hip_M_Tshirt_001', + 'FM_Hip_M_Tshirt_002', + 'FM_Hip_M_Tshirt_003', + 'FM_Hip_M_Tshirt_004', + 'FM_Hip_M_Tshirt_005', + 'FM_Hip_M_Tshirt_006', + 'FM_Hip_M_Tshirt_007', + 'FM_Hip_M_Tshirt_008', + 'FM_Hip_M_Tshirt_009', + 'FM_Hip_M_Tshirt_010', + 'FM_Hip_M_Tshirt_011', + 'FM_Hip_M_Tshirt_012', + 'FM_Hip_M_Tshirt_013', + 'FM_Hip_M_Tshirt_014', + 'FM_Hip_M_Tshirt_015', + 'FM_Hip_M_Tshirt_016', + 'FM_Hip_M_Tshirt_017', + 'FM_Hip_M_Tshirt_018', + 'FM_Hip_M_Tshirt_019', + 'FM_Hip_M_Tshirt_020', + 'FM_Hip_M_Tshirt_021', + 'FM_Hip_M_Tshirt_022', + 'FM_Hip_M_Retro_000', + 'FM_Hip_M_Retro_001', + 'FM_Hip_M_Retro_002', + 'FM_Hip_M_Retro_003', + 'FM_Hip_M_Retro_004', + 'FM_Hip_M_Retro_005', + 'FM_Hip_M_Retro_006', + 'FM_Hip_M_Retro_007', + 'FM_Hip_M_Retro_008', + 'FM_Hip_M_Retro_009', + 'FM_Hip_M_Retro_010', + 'FM_Hip_M_Retro_011', + 'FM_Hip_M_Retro_012', + 'FM_Hip_M_Retro_013', + 'FM_Rstar_M_Tshirt_000', + 'FM_Rstar_M_Tshirt_001', + 'FM_Rstar_M_Tshirt_002', + 'FM_Hip_M_Tshirt_000', + 'FM_Hip_M_Tshirt_001', + 'FM_Hip_M_Tshirt_002', + 'FM_Hip_M_Tshirt_003', + 'FM_Hip_M_Tshirt_004', + 'FM_Hip_M_Tshirt_005', + 'FM_Hip_M_Tshirt_006', + 'FM_Hip_M_Tshirt_007', + 'FM_Hip_M_Tshirt_008', + 'FM_Hip_M_Tshirt_009', + 'FM_Hip_M_Tshirt_010', + 'FM_Hip_M_Tshirt_011', + 'FM_Hip_M_Tshirt_012', + 'FM_Hip_M_Tshirt_013', + 'FM_Hip_M_Tshirt_014', + 'FM_Hip_M_Tshirt_015', + 'FM_Hip_M_Tshirt_016', + 'FM_Hip_M_Tshirt_017', + 'FM_Hip_M_Tshirt_018', + 'FM_Hip_M_Tshirt_019', + 'FM_Hip_M_Tshirt_020', + 'FM_Hip_M_Tshirt_021', + 'FM_Hip_M_Tshirt_022', + 'FM_Hip_M_Retro_000', + 'FM_Hip_M_Retro_001', + 'FM_Hip_M_Retro_002', + 'FM_Hip_M_Retro_003', + 'FM_Hip_M_Retro_004', + 'FM_Hip_M_Retro_005', + 'FM_Hip_M_Retro_006', + 'FM_Hip_M_Retro_007', + 'FM_Hip_M_Retro_008', + 'FM_Hip_M_Retro_009', + 'FM_Hip_M_Retro_010', + 'FM_Hip_M_Retro_011', + 'FM_Hip_M_Retro_012', + 'FM_Hip_M_Retro_013', + 'FM_Rstar_M_Tshirt_000', + 'FM_Rstar_M_Tshirt_001', + 'FM_Rstar_M_Tshirt_002' + }, + ['mpIndependance_overlays'] = { + 'FM_Ind_M_Award_000', + 'FM_Ind_M_Tshirt_000', + 'FM_Ind_M_Tshirt_001', + 'FM_Ind_M_Tshirt_002', + 'FM_Ind_M_Tshirt_003', + 'FM_Ind_M_Tshirt_004', + 'FM_Ind_M_Tshirt_005', + 'FM_Ind_M_Tshirt_006', + 'FM_Ind_M_Tshirt_007', + 'FM_Ind_M_Tshirt_008', + 'FM_Ind_M_Tshirt_009', + 'FM_Ind_M_Tshirt_010', + 'FM_Ind_M_Tshirt_011', + 'FM_Ind_M_Tshirt_012', + 'FM_Ind_M_Tshirt_013', + 'FM_Ind_M_Tshirt_014', + 'FM_Ind_M_Tshirt_015', + 'FM_Ind_M_Tshirt_016', + 'FM_Ind_M_Tshirt_017', + 'FM_Ind_M_Tshirt_018', + 'FM_Ind_M_Tshirt_019', + 'FM_Ind_M_Tshirt_020', + 'FM_Ind_M_Tshirt_021', + 'FM_Ind_M_Tshirt_022', + 'FM_Ind_M_Tshirt_023', + 'FM_Ind_M_Tshirt_024', + 'FM_Ind_M_Tshirt_025', + 'FM_Ind_M_Tshirt_026' + }, + ['mpIndependence_overlays'] = { + 'FM_Ind_M_Award_000', + 'FM_Ind_M_Tshirt_000', + 'FM_Ind_M_Tshirt_001', + 'FM_Ind_M_Tshirt_002', + 'FM_Ind_M_Tshirt_003', + 'FM_Ind_M_Tshirt_004', + 'FM_Ind_M_Tshirt_005', + 'FM_Ind_M_Tshirt_006', + 'FM_Ind_M_Tshirt_007', + 'FM_Ind_M_Tshirt_008', + 'FM_Ind_M_Tshirt_009', + 'FM_Ind_M_Tshirt_010', + 'FM_Ind_M_Tshirt_011', + 'FM_Ind_M_Tshirt_012', + 'FM_Ind_M_Tshirt_013', + 'FM_Ind_M_Tshirt_014', + 'FM_Ind_M_Tshirt_015', + 'FM_Ind_M_Tshirt_016', + 'FM_Ind_M_Tshirt_017', + 'FM_Ind_M_Tshirt_018', + 'FM_Ind_M_Tshirt_019', + 'FM_Ind_M_Tshirt_020', + 'FM_Ind_M_Tshirt_021', + 'FM_Ind_M_Tshirt_022', + 'FM_Ind_M_Tshirt_023', + 'FM_Ind_M_Tshirt_024', + 'FM_Ind_M_Tshirt_025', + 'FM_Ind_M_Tshirt_026' + }, + ['mpLowrider2_overlays'] = { + 'MP_Chianski_000_M', + 'MP_Chianski_001_M', + 'MP_Chianski_002_M', + 'MP_Chianski_003_M', + 'MP_Chianski_004_M', + 'MP_Chianski_005_M', + 'MP_Chianski_006_M', + 'MP_Hntr_000_M', + 'MP_Hntr_001_M', + 'MP_Hntr_002_M', + 'MP_Hntr_003_M', + 'MP_Hntr_004_M', + 'MP_Hntr_005_M', + 'MP_Hntr_006_M', + 'MP_Hntr_007_M', + 'MP_Hntr_008_M', + 'MP_Hntr_009_M', + 'MP_Hntr_010_M', + 'MP_Hntr_011_M', + 'MP_Hntr_012_M', + 'MP_Dense_000_M', + 'MP_Dense_001_M', + 'MP_Dense_002_M', + 'MP_Dense_003_M', + 'MP_Dense_004_M', + 'MP_Dense_005_M', + 'MP_Dense_006_M', + 'MP_Dense_007_M' + }, + ['mpLowrider_overlays'] = { + 'MP_Broker_000_M', + 'MP_Broker_001_M', + 'MP_Broker_002_M', + 'MP_Broker_003_M', + 'MP_Broker_004_M', + 'MP_Broker_005_M', + 'MP_Magnetics_000_M', + 'MP_Magnetics_001_M', + 'MP_Magnetics_002_M', + 'MP_Magnetics_003_M', + 'MP_Magnetics_004_M', + 'MP_Magnetics_005_M', + 'MP_Trickster_000_M', + 'MP_Trickster_001_M', + 'MP_Trickster_002_M', + 'MP_Trickster_003_M', + 'MP_Trickster_004_M', + 'MP_Trickster_005_M', + 'MP_Trickster_006_M', + 'MP_Trickster_007_M', + 'MP_Trickster_008_M', + 'MP_Trickster_009_M', + 'MP_Trickster_010_M', + 'MP_Bennys_000_M', + 'MP_Bennys_001_M' + }, + ['mpLTS_overlays'] = {'FM_LTS_M_Tshirt_000'}, + ['mpLuxe2_overlays'] = { + 'MP_LUXE_LC_000_M', + 'MP_LUXE_LC_001_M', + 'MP_LUXE_LC_002_M', + 'MP_LUXE_LC_003_M', + 'MP_LUXE_LC_006_M', + 'MP_LUXE_LC_007_M', + 'MP_LUXE_LC_008_M', + 'MP_LUXE_LC_009_M', + 'MP_LUXE_LC_012_M', + 'MP_LUXE_LC_013_M', + 'MP_LUXE_LC_014_M', + 'MP_LUXE_LC_015_M', + 'MP_LUXE_VDG_000_M', + 'MP_LUXE_VDG_001_M', + 'MP_LUXE_VDG_002_M', + 'MP_LUXE_VDG_004_M', + 'MP_LUXE_VDG_005_M', + 'MP_LUXE_VDG_006_M' + }, + ['mpLuxe_overlays'] = { + 'MP_LUXE_LC_004_M', + 'MP_LUXE_LC_005_M', + 'MP_LUXE_LC_010_M', + 'MP_LUXE_LC_011_M', + 'MP_LUXE_ENEMA_000_M', + 'MP_LUXE_Per_001_M', + 'MP_LUXE_SC_000_M', + 'MP_FAKE_LB_000_M', + 'MP_FAKE_LC_000_M', + 'MP_FAKE_ENEMA_000_M', + 'MP_FAKE_Per_000_M', + 'MP_FAKE_SN_000_M', + 'MP_FAKE_SC_000_M', + 'MP_FAKE_DS_000_M', + 'MP_FAKE_Vap_000_M', + 'MP_FAKE_DIS_000_M', + 'MP_FAKE_DIS_001_M', + 'MP_LUXE_DIX_000_M', + 'MP_LUXE_DIX_001_M', + 'MP_LUXE_DIX_002_M', + 'MP_LUXE_SN_000_M', + 'MP_LUXE_SN_001_M', + 'MP_LUXE_SN_002_M', + 'MP_LUXE_SN_003_M', + 'MP_LUXE_SN_004_M', + 'MP_LUXE_SN_005_M', + 'MP_LUXE_SN_006_M', + 'MP_LUXE_SN_007_M', + 'MP_FILM_000_M', + 'MP_FILM_001_M', + 'MP_FILM_002_M', + 'MP_FILM_003_M', + 'MP_FILM_004_M', + 'MP_FILM_005_M', + 'MP_FILM_006_M', + 'MP_FILM_007_M', + 'MP_FILM_008_M', + 'MP_FILM_009_M' + }, + ['mpPilot_overlays'] = {'MP_Fli_M_Tshirt_000'}, + ['mpSmuggler_overlays'] = { + 'MP_Smuggler_Graphic_000_M', + 'MP_Smuggler_Graphic_001_M', + 'MP_Smuggler_Graphic_002_M', + 'MP_Smuggler_Graphic_003_M', + 'MP_Smuggler_Graphic_004_M', + 'MP_Smuggler_Graphic_005_M', + 'MP_Smuggler_Graphic_006_M', + 'MP_Smuggler_Graphic_007_M', + 'MP_Smuggler_Graphic_008_M', + 'MP_Smuggler_Graphic_009_M', + 'MP_Smuggler_Graphic_010_M', + 'MP_Smuggler_Graphic_011_M', + 'MP_Smuggler_Graphic_012_M', + 'MP_Smuggler_Graphic_013_M', + 'MP_Smuggler_Graphic_014_M', + 'MP_Smuggler_Graphic_015_M', + 'MP_Smuggler_Graphic_016_M', + 'MP_Smuggler_Graphic_017_M', + 'MP_Smuggler_Graphic_018_M' + }, + ['mpValentines_overlays'] = { + 'MP_Val_M_Tshirt_A', + 'MP_Val_M_Tshirt_B', + 'MP_Val_M_Tshirt_C', + 'MP_Val_M_Tshirt_D', + 'MP_Val_M_Tshirt_E', + 'MP_Val_M_Tshirt_F', + 'MP_Val_M_Tshirt_G', + 'MP_Val_M_Tshirt_H', + 'MP_Val_M_Tshirt_I', + 'MP_Val_M_Tshirt_J', + 'MP_Val_M_Tshirt_K', + 'MP_Val_M_Tshirt_L', + 'MP_Val_M_Tshirt_M', + 'MP_Val_M_Tshirt_N', + 'MP_Val_M_Tshirt_O', + 'MP_Val_M_Tshirt_P', + 'MP_Val_M_Tshirt_Q', + 'MP_Val_M_Tshirt_R', + 'MP_Val_M_Tshirt_S', + 'MP_Val_M_Tshirt_T' + }, + ['mpxmas_604490_overlays'] = {'MP_IHeartLC_000_M'}, + ['multiplayer_overlays'] = { + 'FM_CREW_M_000_A', + 'FM_CREW_M_000_B', + 'FM_CREW_M_000_C', + 'FM_CREW_M_000_D', + 'FM_CREW_M_000_E', + 'FM_CREW_M_000_F', + 'FM_Tshirt_Award_000', + 'FM_Tshirt_Award_001', + 'FM_Tshirt_Award_002', + 'mp_fm_branding_001', + 'mp_fm_branding_002', + 'mp_fm_branding_003', + 'mp_fm_branding_004', + 'mp_fm_branding_005', + 'mp_fm_branding_006', + 'mp_fm_branding_007', + 'mp_fm_branding_008', + 'mp_fm_branding_009', + 'mp_fm_branding_010', + 'mp_fm_branding_011', + 'mp_fm_branding_012', + 'mp_fm_branding_013', + 'mp_fm_branding_014', + 'mp_fm_branding_015', + 'mp_fm_branding_016', + 'mp_fm_branding_017', + 'mp_fm_branding_018', + 'mp_fm_branding_019', + 'mp_fm_branding_020', + 'mp_fm_branding_022', + 'mp_fm_branding_023', + 'mp_fm_branding_024', + 'mp_fm_branding_025', + 'mp_fm_branding_027', + 'mp_fm_branding_028', + 'mp_fm_branding_029', + 'mp_fm_branding_031', + 'mp_fm_branding_032', + 'mp_fm_branding_034', + 'mp_fm_branding_035', + 'mp_fm_branding_036', + 'mp_fm_branding_037', + 'mp_fm_branding_038', + 'mp_fm_branding_039', + 'mp_fm_branding_040', + 'mp_fm_branding_041', + 'mp_fm_branding_042', + 'mp_fm_branding_043', + 'mp_fm_branding_044', + 'mp_fm_branding_045', + 'mp_fm_branding_046', + 'mp_fm_branding_047', + 'mp_fm_OGA_000_m', + 'mp_fm_OGA_001_m', + 'mp_fm_OGA_002_m', + 'mp_fm_OGA_003_m', + 'FM_CREW_M_000_A', + 'FM_CREW_M_000_B', + 'FM_CREW_M_000_C', + 'FM_CREW_M_000_D', + 'FM_CREW_M_000_E', + 'FM_CREW_M_000_F', + 'FM_Tshirt_Award_000', + 'FM_Tshirt_Award_001', + 'FM_Tshirt_Award_002', + 'mp_fm_branding_001', + 'mp_fm_branding_002', + 'mp_fm_branding_003', + 'mp_fm_branding_004', + 'mp_fm_branding_005', + 'mp_fm_branding_006', + 'mp_fm_branding_007', + 'mp_fm_branding_008', + 'mp_fm_branding_009', + 'mp_fm_branding_010', + 'mp_fm_branding_011', + 'mp_fm_branding_012', + 'mp_fm_branding_013', + 'mp_fm_branding_014', + 'mp_fm_branding_015', + 'mp_fm_branding_016', + 'mp_fm_branding_017', + 'mp_fm_branding_018', + 'mp_fm_branding_019', + 'mp_fm_branding_020', + 'mp_fm_branding_022', + 'mp_fm_branding_023', + 'mp_fm_branding_024', + 'mp_fm_branding_025', + 'mp_fm_branding_027', + 'mp_fm_branding_028', + 'mp_fm_branding_029', + 'mp_fm_branding_031', + 'mp_fm_branding_032', + 'mp_fm_branding_034', + 'mp_fm_branding_035', + 'mp_fm_branding_036', + 'mp_fm_branding_037', + 'mp_fm_branding_038', + 'mp_fm_branding_039', + 'mp_fm_branding_040', + 'mp_fm_branding_041', + 'mp_fm_branding_042', + 'mp_fm_branding_043', + 'mp_fm_branding_044', + 'mp_fm_branding_045', + 'mp_fm_branding_046', + 'mp_fm_branding_047', + 'mp_fm_OGA_000_m', + 'mp_fm_OGA_001_m', + 'mp_fm_OGA_002_m', + 'mp_fm_OGA_003_m' + } + } +} diff --git a/[required]/cvf_skins/fxmanifest.lua b/[required]/cvf_skins/fxmanifest.lua new file mode 100644 index 0000000..5125fcb --- /dev/null +++ b/[required]/cvf_skins/fxmanifest.lua @@ -0,0 +1,56 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Skin Resource' +version '1.0.0' +description 'Skin resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Load client files +--- +files { + 'data/tattoos_female.lua', + 'data/tattoos_male.lua' +} + +--- +--- Register client scripts +--- +client_scripts { + '@corev/client/import.lua', + 'classes/tattoo.lua', + 'classes/skin_funcs.lua', + 'classes/skin.lua', + 'client/main.lua' +} + +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'server/main.lua' +} + +--- +--- Register all dependencies +--- +dependencies { + 'cvf_translations' +} \ No newline at end of file diff --git a/[required]/cvf_skins/migrations/0.lua b/[required]/cvf_skins/migrations/0.lua new file mode 100644 index 0000000..49c8d6a --- /dev/null +++ b/[required]/cvf_skins/migrations/0.lua @@ -0,0 +1,33 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local migration = {} + +--- Prevent migration from executing before dependend sql has been executed +migration.dependencies = { + ['cvf_player'] = 0 +} + +--- Execute this sql after `dependencies` has been executed +migration.sql = [[ + CREATE TABLE `player_skins` ( + `id` INT NOT NULL AUTO_INCREMENT, + `player_id` INT NOT NULL, + `data` MEDIUMTEXT NOT NULL, + `model` VARCHAR(100) NOT NULL DEFAULT 'mp_m_freemode_01', + + CONSTRAINT `fk_player_skins_player_id` FOREIGN KEY (`player_id`) REFERENCES `players`(`id`), + + PRIMARY KEY (`id`) + ); +]] + +--- Returns current migration +return migration \ No newline at end of file diff --git a/[required]/cvf_skins/server/main.lua b/[required]/cvf_skins/server/main.lua new file mode 100644 index 0000000..975ea26 --- /dev/null +++ b/[required]/cvf_skins/server/main.lua @@ -0,0 +1,55 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) + +--- Mark this resource as `database` migration dependent resource +corev.db:migrationDependent() + +--- Create a `skins` class +---@class skins +local skins = setmetatable({ __class = 'skins' }, {}) + +--- Set default values +skins.players = {} + +--- Register callback for loading database skin +corev.callback:register('load', function(vPlayer, cb) + if (vPlayer == nil) then + cb('{}', nil) + return + end + + if (skins.players ~= nil and skins.players[vPlayer.identifier] ~= nil) then + cb(skins.players[vPlayer.identifier].data, skins.players[vPlayer.identifier].model) + return + end + + corev.db:fetchAllAsync('SELECT * FROM `player_skins` WHERE `player_id` = @id LIMIT 1', { + ['@id'] = vPlayer.id + }, function(results) + results = corev:ensure(results, {}) + + if (#results <= 0) then + cb('{}', nil) + else + skins.players[vPlayer.identifier] = { + data = results[1].data or '{}', + model = results[1].model or nil + } + + cb(skins.players[vPlayer.identifier].data, skins.players[vPlayer.identifier].model) + end + end) +end) \ No newline at end of file diff --git a/[required]/cvf_translations/fxmanifest.lua b/[required]/cvf_translations/fxmanifest.lua new file mode 100644 index 0000000..14c6eca --- /dev/null +++ b/[required]/cvf_translations/fxmanifest.lua @@ -0,0 +1,42 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] Translation Resource' +version '1.0.0' +description 'Translation resource for CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Register client scripts +--- +client_scripts { + '@corev/client/import.lua', + 'shared/main.lua' +} + +--- +--- Register server scripts +--- +server_scripts { + '@corev/server/import.lua', + 'shared/main.lua' +} + +dependencies { + 'cvf_config' +} \ No newline at end of file diff --git a/[required]/cvf_translations/shared/main.lua b/[required]/cvf_translations/shared/main.lua new file mode 100644 index 0000000..c717514 --- /dev/null +++ b/[required]/cvf_translations/shared/main.lua @@ -0,0 +1,200 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_client|corev_server +local corev = assert(corev_client or corev_server) +local pairs = assert(pairs) +local insert = assert(table.insert) +local decode = assert(json.decode) +local sub = assert(string.sub) +local pack = assert(table.pack) + +--- Cahce FiveM globals +local exports = assert(exports) +local GetInvokingResource = assert(GetInvokingResource) +local LoadResourceFile = assert(LoadResourceFile) +local GetNumResources = assert(GetNumResources) +local GetResourceByFindIndex = assert(GetResourceByFindIndex) +local GetNumResourceMetadata = assert(GetNumResourceMetadata) +local GetResourceMetadata = assert(GetResourceMetadata) + +--- Create translation class +---@class translations +local translations = setmetatable({ __class = 'translations' }, {}) + +--- Set default values +translations.translations = {} + +--- Add a translation to CoreV's framework +---@param language string Needs to be a two letter identifier, example: EN, DE, NL, BE, FR etc. +---@param module string Register translation for a module, example: core +---@param key string Key of translation +---@param value string Translated value +---@param override boolean Override if translation already exists +function translations:addTranslation(language, module, key, value, override) + language = corev:ensure(language, 'unknown') + module = corev:ensure(module, 'unknown') + key = corev:ensure(key, 'unknown') + value = corev:ensure(value, 'unknown') + override = corev:ensure(override, false) + + if (language == 'unknown' or key == 'unknown' or value == 'unknown') then + return + end + + if (module == 'unknown') then module = 'core' end + + module = corev:hashString(module) + language = corev:hashString(language) + key = corev:hashString(key) + + if (self.translations == nil) then self.translations = {} end + if (self.translations[module] == nil) then self.translations[module] = {} end + if (self.translations[module][language] == nil) then self.translations[module][language] = {} end + + if (not override and self.translations[module][language][key] ~= nil) then return end + + self.translations[module][language][key] = value +end + +--- Returns a translation from current framework +---@param language string Needs to be a two letter identifier, example: EN, DE, NL, BE, FR etc. +---@param module string Register translation for a module, example: core +---@param key string Key of translation +---@return string Translation or 'MISSING TRANSLATION' +function translations:getTranslation(language, module, key) + language = corev:ensure(language, 'unknown') + module = corev:ensure(module, 'unknown') + key = corev:ensure(key, 'unknown') + + if (language == 'unknown' or key == 'unknown') then + return 'MISSING TRANSLATION' + end + + if (module == 'unknown') then module = 'core' end + + --- Transform invoking resource to CoreV module + if (module:startsWith('corev_')) then + module = sub(module, 7) + elseif (module:startsWith('cvf_')) then + module = sub(module, 5) + elseif (module == 'corev') then + module = 'core' + end + + module = corev:hashString(module) + language = corev:hashString(language) + key = corev:hashString(key) + + return (((self.translations or {})[module] or {})[language] or {})[key] or 'MISSING TRANSLATION' +end + +--- Load all translations +for i = 0, GetNumResources(), 1 do + local translationFiles = {} + local resourceName = corev:ensure(GetResourceByFindIndex(i), 'unknown') + + if (resourceName ~= 'unknown') then + for i2 = 0, GetNumResourceMetadata(resourceName, 'translation'), 1 do + local translationFile = corev:ensure(GetResourceMetadata(resourceName, 'translation', i2), 'unknown') + + if (translationFile ~= 'unknown') then + insert(translationFiles, translationFile) + end + end + end + + for _, translationFile in pairs(translationFiles) do + if (corev:endswith(translationFile, '.json')) then + local jsonFile = LoadResourceFile(resourceName, translationFile) + + if (jsonFile) then + local jsonData = decode(jsonFile) + + if (jsonData) then + local __language = jsonData.language or 'xx' + local __translations = jsonData.translations or {} + local __module = resourceName + + __language = corev:ensure(__language, 'xx') + __translations = corev:ensure(__translations, {}) + + if (__module == 'corev') then + __module = 'core' + else + if (__module:startsWith('corev_')) then + __module = sub(__module, 7) + elseif (__module:startsWith('cvf_')) then + __module = sub(__module, 5) + end + + __module = corev:ensure(__module, 'core') + end + + for __key, __value in pairs(__translations) do + __key = corev:ensure(__key, 'unknown') + __value = corev:ensure(__value, 'unknown') + + translations:addTranslation(__language, __module, __key, __value, true) + end + end + end + end + end +end + +--- Returns translation key founded or 'MISSING TRANSLATION' +---@params language string? (optional) Needs to be a two letter identifier, example: EN, DE, NL, BE, FR etc. +---@params module string? (optional) Register translation for a module, example: core +---@params key string Key of translation +---@return string Translation or 'MISSING TRANSLATION' +local function getTranslationKey(...) + local __module = GetInvokingResource() + + __module = corev:ensure(__module, 'corev') + + local arguments = pack(...) + + if (#arguments == 0) then + return 'MISSING TRANSLATION' + end + + if (#arguments == 1) then + local language = corev:ensure(corev:cfg('core', 'language'), 'en') + local module = __module + local key = corev:ensure(arguments[1], 'unknown') + + return translations:getTranslation(language, module, key) + end + + if (#arguments == 2) then + local language = corev:ensure(corev:cfg('core', 'language'), 'en') + local module = corev:ensure(arguments[1], __module) + local key = corev:ensure(arguments[2], 'unknown') + + return translations:getTranslation(language, module, key) + end + + if (#arguments >= 3) then + local language = corev:ensure(arguments[1], 'en') + local module = corev:ensure(arguments[2], __module) + local key = corev:ensure(arguments[3], 'unknown') + + return translations:getTranslation(language, module, key) + end + + return 'MISSING TRANSLATION' +end + +--- Register `getTranslationKey` as export function +exports('__t', getTranslationKey) \ No newline at end of file diff --git a/client/libs/callbacks.lua b/client/libs/callbacks.lua deleted file mode 100644 index 2744ede..0000000 --- a/client/libs/callbacks.lua +++ /dev/null @@ -1,48 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local callbacks = class('callbacks') - ---- Set default value -callbacks:set { - requestId = 1, - callbacks = {} -} - ---- Trigger server callback ---- @name string event ---- @cb function callback -function callbacks:triggerServerCallback(name, cb, ...) - self.callbacks[self.requestId] = cb - - TSE('corev:triggerServerCallback', name, self.requestId, ...) - - if (self.requestId < 65535) then - self.requestId = self.requestId + 1 - else - self.requestId = 1 - end -end - ---- When server trigger this event -onServerTrigger('corev:triggerCallback', function(requestId, ...) - if (requestId == nil or type(requestId) ~= 'number') then return end - if (callbacks.callbacks == nil or callbacks.callbacks[requestId] == nil) then return end - - callbacks.callbacks[requestId](...) - callbacks.callbacks[requestId] = nil -end) - ---- FiveM manipulation -_ENV.triggerServerCallback = function(name, cb, ...) callbacks:triggerServerCallback(name, cb, ...) end -_G.triggerServerCallback = function(name, cb, ...) callbacks:triggerServerCallback(name, cb, ...) end - ---- Regsiter callbacks as module -addModule('callbacks', callbacks) \ No newline at end of file diff --git a/client/libs/resources.lua b/client/libs/resources.lua deleted file mode 100644 index 44f6198..0000000 --- a/client/libs/resources.lua +++ /dev/null @@ -1,444 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -resource = class('resource') - ---- Set default values -resource:set { - externalResources = {}, - internalResources = {}, - internalModules = {}, - internalResourceStructure = {}, - internalModuleStructure = {}, - tasks = { - loadingInternalStructures = false, - loadingExecutables = false, - loadingFramework = false - } -} - ---- Returns `true` if resource/module exists ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:exists(name, _type) - if (name == nil or type(name) ~= 'string') then return false end - - name = string.lower(name) - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - return self.externalResources[name] ~= nil - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - return self.internalResources[name] ~= nil - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - return self.internalModules[name] ~= nil - end -end - ---- Returns `true` if resource is loaded ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:isLoaded(name, _type) - if (not self:exists(name, _type)) then return false end - - name = string.lower(name) - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - return self.externalResources[name].loaded == true - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - return self.internalResources[name].loaded == true - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - return self.internalModules[name].loaded == true - end - - return false -end - ---- Returns a path ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:getPath(name, _type) - local path = 'none' - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - path = GetResourcePath(name) - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalResourceStructure ~= nil and self.internalResourceStructure[name] ~= nil) then - path = self.internalResourceStructure[name].fullPath - end - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalModuleStructure ~= nil and self.internalModuleStructure[name] ~= nil) then - path = self.internalModuleStructure[name].fullPath - end - end - - return path -end - ---- Returns `true` if Resource/Module is a framework resource ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:isFrameworkExecutable(name, _type) - if (name == nil or type(name) ~= 'string') then return false end - - local content = self:getFilesByPath(name, _type, 'module.json') - - return content ~= nil -end - ---- Generates a framework manifest for Resource/Module ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:generateFrameworkManifest(name, _type) - local resource = '' - local internalPath = '' - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - resource = name - internalPath = '/module.json' - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalResourceStructure ~= nil and self.internalResourceStructure[name] ~= nil) then - resource = GetCurrentResourceName() - internalPath = ('%s/module.json'):format(self.internalResourceStructure[name].path) - end - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalModuleStructure ~= nil and self.internalModuleStructure[name] ~= nil) then - resource = GetCurrentResourceName() - internalPath = ('%s/module.json'):format(self.internalModuleStructure[name].path) - end - end - - local manifest = class('manifest') - - --- set default values - manifest:set { - name = name, - type = _type, - data = {} - } - - --- Returns a value from data in manifest - --- @key string key to search for - function manifest:getValue(key) - if (key == nil or type(key) ~= 'string') then - return nil - end - - if (self.data ~= nil and self.data[key] ~= nil) then - return self.data[key] - end - - return nil - end - - if (resource == '' or internalPath == '') then - return manifest - end - - local content = LoadResourceFile(resource, internalPath) - - if (content) then - local data = json.decode(content) - - if (data) then - for key, value in pairs(data) do - if (key ~= nil) then - manifest.data[key] = value - end - end - end - end - - return manifest -end - ---- Load Resources/Modules -function resource:loadFrameworkExecutables() - local enabledInternalResources, enabledInternalModules = {}, {} - - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - --- Load all enabled resources - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'resource'), 1 do - table.insert(enabledInternalResources, GetResourceMetadata(GetCurrentResourceName(), 'resource', i)) - end - - --- Load all enabled modules - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'module'), 1 do - table.insert(enabledInternalModules, GetResourceMetadata(GetCurrentResourceName(), 'module', i)) - end - - --- Add all internal executable resources - for _, internalResource in pairs(self.internalResourceStructure or {}) do - local internalResourceEnabled = false - - for _, internalResourceName in pairs(enabledInternalResources or {}) do - if (string.lower(internalResourceName) == string.lower(internalResource.name)) then - internalResourceEnabled = true - end - end - - if (self:isFrameworkExecutable(internalResource.name, ResourceTypes.InternalResource)) then - self.internalResources[internalResource.name] = { - name = internalResource.name, - path = internalResource.path, - fullPath = internalResource.fullPath, - enabled = internalResourceEnabled, - loaded = false, - error = { - status = false, - message = '' - }, - type = ResourceTypes.InternalResource, - manifest = self:generateFrameworkManifest(internalResource.name, ResourceTypes.InternalResource) - } - end - end - - --- Add all internal executable modules - for _, internalModule in pairs(self.internalModuleStructure or {}) do - local internalModuleEnabled = false - - for _, internalModuleName in pairs(enabledInternalModules or {}) do - if (string.lower(internalModuleName) == string.lower(internalModule.name)) then - internalModuleEnabled = true - end - end - - if (self:isFrameworkExecutable(internalModule.name, ResourceTypes.InternalModule)) then - self.internalModules[internalModule.name] = { - name = internalModule.name, - path = internalModule.path, - fullPath = internalModule.fullPath, - enabled = internalModuleEnabled, - loaded = false, - error = { - status = false, - message = '' - }, - type = ResourceTypes.InternalModule, - manifest = self:generateFrameworkManifest(internalModule.name, ResourceTypes.InternalModule) - } - end - end - - self.tasks.loadingExecutables = true -end - ---- Load all translations for ---- @param object module|resource|table Executable Resource/Module -function resource:loadTranslations(object) - if (object.enabled and object.manifest ~= nil and type(object.manifest) == 'manifest') then - local languages = object.manifest:getValue('languages') or {} - - for key, location in pairs(languages) do - if (string.lower(key) == LANGUAGE) then - local resourceName = '' - local content = nil - - if (string.lower(object.type) == string.lower(ResourceTypes.ExternalResource)) then - content = LoadResourceFile(object.name, location) - resourceName = object.name - end - - if (string.lower(object.type) == string.lower(ResourceTypes.InternalResource) or - string.lower(object.type) == string.lower(ResourceTypes.InternalModule)) then - content = LoadResourceFile(GetCurrentResourceName(), ('%s/%s'):format(object.path, location)) - resourceName = GetCurrentResourceName() - end - - if (content) then - local data = json.decode(content) - - if (data) then - if (CoreV.Translations[resourceName] == nil) then - CoreV.Translations[resourceName] = {} - end - - if (CoreV.Translations[resourceName][object.name] == nil) then - CoreV.Translations[resourceName][object.name] = {} - end - - for _key, _value in pairs(data or {}) do - CoreV.Translations[resourceName][object.name][_key] = _value - end - end - end - end - end - end -end - ---- Returns a list of files by path ---- @name string Resource/Module name ---- @_type string Type of Resource/Module ---- @internalPath string Internal path of Resource/Module -function resource:getFilesByPath(name, _type, internalPath) - local content = nil - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - content = LoadResourceFile(name, internalPath) - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - if (self.internalResourceStructure ~= nil and self.internalResourceStructure[name] ~= nil) then - content = LoadResourceFile(GetCurrentResourceName(), ('%s/%s'):format(self.internalResourceStructure[name].path, internalPath)) - end - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - if (self.internalModuleStructure ~= nil and self.internalModuleStructure[name] ~= nil) then - content = LoadResourceFile(GetCurrentResourceName(), ('%s/%s'):format(self.internalModuleStructure[name].path, internalPath)) - end - end - - if (content) then - return tostring(content) - end - - return nil -end - ---- Load all framework Resources/Modules -function resource:loadAll() - self:loadFrameworkExecutables() - - repeat Citizen.Wait(0) until self.tasks.loadingExecutables == true - - local enabledInternalModules = {} - - --- Load all enabled modules - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'module'), 1 do - local _module = GetResourceMetadata(GetCurrentResourceName(), 'module', i) - - if (_module ~= nil and type(_module) == 'string') then - table.insert(enabledInternalModules, string.lower(_module)) - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - --- Load and execute all internal modules - for i, internalModuleName in pairs(enabledInternalModules or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalModuleName - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalModuleName - - if (self.internalModules ~= nil and self.internalModules[internalModuleName] ~= nil) then - local internalModule = self.internalModules[internalModuleName] - - if (internalModule.enabled) then - self:loadTranslations(internalModule) - - self.internalModules[internalModuleName].loaded = true - end - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - --- Load and execute all internal modules - for i, internalModule in pairs(self.internalModules or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalModule.name - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalModule.name - - if (not internalModule.loaded) then - self:loadTranslations(internalModule) - - self.internalModules[i].loaded = true - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - --- Load and execute all internal resources - for i, internalResource in pairs(self.internalResources or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalResource.name - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalResource.name - - if (internalResource.enabled) then - self:loadTranslations(internalResource) - - self.internalResources[i].loaded = true - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - self.tasks.loadingFramework = true -end - ---- Returns how many executables are loaded -function resource:countAllLoaded() - local externalResources, internalResources, internalModules = 0, 0, 0 - - for i, externalResource in pairs(self.externalResources or {}) do - if (externalResource.enabled and externalResource.loaded) then - externalResources = externalResources + 1 - end - end - - for i, internalResource in pairs(self.internalResources or {}) do - if (internalResource.enabled and internalResource.loaded) then - internalResources = internalResources + 1 - end - end - - for i, internalModule in pairs(self.internalModules or {}) do - if (internalModule.loaded) then - internalModules = internalModules + 1 - end - end - - return externalResources, internalResources, internalModules -end - ---- Load internal structures -triggerServerCallback('corev:resource:loadStructure', function(internalResourceStructure, internalModuleStructure) - resource.internalResourceStructure = internalResourceStructure - resource.internalModuleStructure = internalModuleStructure - resource.tasks.loadingInternalStructures = true -end) - ---- FiveM maniplulation -_ENV.getFrameworkFile = function(name, _type, internalPath) return resource:getFilesByPath(name, _type, internalPath) end -_G.getFrameworkFile = function(name, _type, internalPath) return resource:getFilesByPath(name, _type, internalPath) end \ No newline at end of file diff --git a/client/main.lua b/client/main.lua deleted file mode 100644 index e91b731..0000000 --- a/client/main.lua +++ /dev/null @@ -1,40 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -Citizen.CreateThread(function() - print('[^5Core^4V^7] Is now loading.....') - - resource:loadAll() - - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - print(('============= [ ^5Core^4V^7 ] =============\n^2All framework executables are loaded ^7\n=====================================\n-> ^1External Resources: ^7%s ^7\n-> ^1Internal Resources: ^7%s ^7\n-> ^1Internal Modules: ^7%s ^7\n=====================================\n^3VERSION: ^71.0.0\n============= [ ^5Core^4V^7 ] =============') - :format(resource:countAllLoaded())) - - SendNUIMessage({ - __resource = GetCurrentResourceName(), - __module = 'loaded' - }) - - return -end) - -Citizen.CreateThread(function() - while true do - if (NetworkIsSessionStarted() or NetworkIsPlayerActive(PlayerId())) then - TSE('corev:core:playerLoaded') - return - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/configs/others/brands_config.lua b/configs/others/brands_config.lua deleted file mode 100644 index ba71e27..0000000 --- a/configs/others/brands_config.lua +++ /dev/null @@ -1,23 +0,0 @@ -Config.Brand = { - Audi = 'audi', - Lamborghini = 'lamborghini' -} - -Config.Brands = { - [Config.Brand.Audi] = { - brand = 'audi', - label = 'Audi', - logos = { - square_small = 'https://i.imgur.com/UU9H34O.png', -- 250px x 250px - square_large = 'https://i.imgur.com/HS9exOd.png' -- 750px x 750px - } - }, - [Config.Brand.Lamborghini] = { - brand = 'lamborghini', - label = 'Lamborghini', - logos = { - square_small = 'https://i.imgur.com/BJmQlZA.png', -- 250px x 250px - square_large = 'https://i.imgur.com/l4smrcd.png' -- 750px x 750px - } - } -} \ No newline at end of file diff --git a/configs/others/vehicle_config.lua b/configs/others/vehicle_config.lua deleted file mode 100644 index a5e8d7d..0000000 --- a/configs/others/vehicle_config.lua +++ /dev/null @@ -1,22 +0,0 @@ -Config.VehicleTypes = { - CAR = 'car', - AIRCRAFT = 'aircraft', - BOAT = 'boat' -} - -Config.Vehicles = { - ['hevo'] = { - price = 325000, - name = 'Huracan Evo', - label = '2020 Huracan Evo Spyder', - brand = Config.Brand.Lamborghini, - type = Config.VehicleTypes.CAR - }, - ['rs62'] = { - price = 275000, - name = 'Audi RS6', - label = 'Audi RS6 Avant', - brand = Config.Brand.Audi, - type = Config.VehicleTypes.CAR - } -} \ No newline at end of file diff --git a/configs/others/weapon_ammo_config.lua b/configs/others/weapon_ammo_config.lua deleted file mode 100644 index 90e68ae..0000000 --- a/configs/others/weapon_ammo_config.lua +++ /dev/null @@ -1,674 +0,0 @@ -Config.WeaponAmmos = { - ['AMMO_MOBILEOPS_CANNON'] = { - id = 'AMMO_MOBILEOPS_CANNON', - hash = 764589401, - max = 20, - name = _(CR(), 'core', 'ammo_mobileops_cannon') - }, - ['AMMO_APC_CANNON'] = { - id = 'AMMO_APC_CANNON', - hash = -767591211, - max = 100, - name = _(CR(), 'core', 'ammo_apc_cannon') - }, - ['AMMO_APC_MISSILE'] = { - id = 'AMMO_APC_MISSILE', - hash = 119573070, - max = 20, - name = _(CR(), 'core', 'ammo_apc_missile') - }, - ['AMMO_AVENGER_CANNON'] = { - id = 'AMMO_AVENGER_CANNON', - hash = 1849772700, - max = 20, - name = _(CR(), 'core', 'ammo_avenger_cannon') - }, - ['AMMO_BARRAGE_GL'] = { - id = 'AMMO_BARRAGE_GL', - hash = 1364454752, - max = 20, - name = _(CR(), 'core', 'ammo_barrage_gl') - }, - ['AMMO_VEHICLEBOMB'] = { - id = 'AMMO_VEHICLEBOMB', - hash = -1615671818, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb') - }, - ['AMMO_VEHICLEBOMB_CLUSTER'] = { - id = 'AMMO_VEHICLEBOMB_CLUSTER', - hash = 1584038003, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_cluster') - }, - ['AMMO_VEHICLEBOMB_GAS'] = { - id = 'AMMO_VEHICLEBOMB_GAS', - hash = 314485403, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_gas') - }, - ['AMMO_VEHICLEBOMB_INCENDIARY'] = { - id = 'AMMO_VEHICLEBOMB_INCENDIARY', - hash = -111286589, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_incendiary') - }, - ['AMMO_CHERNO_MISSILE'] = { - id = 'AMMO_CHERNO_MISSILE', - hash = -1278325590, - max = 10, - name = _(CR(), 'core', 'ammo_cherno_missile') - }, - ['AMMO_DUNE_GRENADELAUNCHER'] = { - id = 'AMMO_DUNE_GRENADELAUNCHER', - hash = 1742067183, - max = 20, - name = _(CR(), 'core', 'ammo_dune_grenadelauncher') - }, - ['AMMO_HACKER_MISSILE'] = { - id = 'AMMO_HACKER_MISSILE', - hash = -2009808731, - max = 20, - name = _(CR(), 'core', 'ammo_hacker_missile') - }, - ['AMMO_HUNTER_MISSILE'] = { - id = 'AMMO_HUNTER_MISSILE', - hash = -119401255, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_missile') - }, - ['AMMO_HUNTER_BARRAGE'] = { - id = 'AMMO_HUNTER_BARRAGE', - hash = 935462248, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_barrage') - }, - ['AMMO_KHANJALI_GL'] = { - id = 'AMMO_KHANJALI_GL', - hash = -1630507076, - max = 20, - name = _(CR(), 'core', 'ammo_khanjali_gl') - }, - ['AMMO_KHANJALI_CANNON_HEAVY'] = { - id = 'AMMO_KHANJALI_CANNON_HEAVY', - hash = 617011510, - max = 100, - name = _(CR(), 'core', 'ammo_khanjali_cannon_heavy') - }, - ['AMMO_VEHICLEMINE'] = { - id = 'AMMO_VEHICLEMINE', - hash = 612448028, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine') - }, - ['AMMO_VEHICLEMINE_KINETIC'] = { - id = 'AMMO_VEHICLEMINE_KINETIC', - hash = -1140465749, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic') - }, - ['AMMO_VEHICLEMINE_EMP'] = { - id = 'AMMO_VEHICLEMINE_EMP', - hash = 1653442244, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp') - }, - ['AMMO_VEHICLEMINE_SPIKE'] = { - id = 'AMMO_VEHICLEMINE_SPIKE', - hash = 1782795920, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike') - }, - ['AMMO_VEHICLEMINE_SLICK'] = { - id = 'AMMO_VEHICLEMINE_SLICK', - hash = -418520852, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick') - }, - ['AMMO_VEHICLEMINE_TAR'] = { - id = 'AMMO_VEHICLEMINE_TAR', - hash = -1733963618, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar') - }, - ['AMMO_VEHICLEMINE_KINETIC_RC'] = { - id = 'AMMO_VEHICLEMINE_KINETIC_RC', - hash = -338616823, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic_rc') - }, - ['AMMO_VEHICLEMINE_EMP_RC'] = { - id = 'AMMO_VEHICLEMINE_EMP_RC', - hash = -930619152, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp_rc') - }, - ['AMMO_VEHICLEMINE_SPIKE_RC'] = { - id = 'AMMO_VEHICLEMINE_SPIKE_RC', - hash = -1317227407, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike_rc') - }, - ['AMMO_VEHICLEMINE_SLICK_RC'] = { - id = 'AMMO_VEHICLEMINE_SLICK_RC', - hash = -590129723, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick_rc') - }, - ['AMMO_VEHICLEMINE_TAR_RC'] = { - id = 'AMMO_VEHICLEMINE_TAR_RC', - hash = -1955683003, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar_rc') - }, - ['AMMO_MONSTER3_KINETIC'] = { - id = 'AMMO_MONSTER3_KINETIC', - hash = 2074953483, - max = 10, - name = _(CR(), 'core', 'ammo_monster3_kinetic') - }, - ['AMMO_MORTAR_EXPLOSIVE'] = { - id = 'AMMO_MORTAR_EXPLOSIVE', - hash = 814030577, - max = 10, - name = _(CR(), 'core', 'ammo_mortar_explosive') - }, - ['AMMO_MORTAR_KINETIC'] = { - id = 'AMMO_MORTAR_KINETIC', - hash = 648487681, - max = 10, - name = _(CR(), 'core', 'ammo_mortar_kinetic') - }, - ['AMMO_MULE4_GL'] = { - id = 'AMMO_MULE4_GL', - hash = -206645419, - max = 20, - name = _(CR(), 'core', 'ammo_mule4_gl') - }, - ['AMMO_OPPRESSOR_MISSILE'] = { - id = 'AMMO_OPPRESSOR_MISSILE', - hash = 570854289, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor_missile') - }, - ['AMMO_OPPRESSOR2_MISSILE'] = { - id = 'AMMO_OPPRESSOR2_MISSILE', - hash = 914231229, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor2_missile') - }, - ['AMMO_POUNDER2_MISSILE'] = { - id = 'AMMO_POUNDER2_MISSILE', - hash = 948447183, - max = 20, - name = _(CR(), 'core', 'ammo_pounder2_missile') - }, - ['AMMO_POUNDER2_GL'] = { - id = 'AMMO_POUNDER2_GL', - hash = 1624456817, - max = 20, - name = _(CR(), 'core', 'ammo_pounder2_gl') - }, - ['AMMO_ROGUE_MISSILE'] = { - id = 'AMMO_ROGUE_MISSILE', - hash = -1421421393, - max = 20, - name = _(CR(), 'core', 'ammo_rogue_missile') - }, - ['AMMO_SCRAMJET_MISSILE'] = { - id = 'AMMO_SCRAMJET_MISSILE', - hash = -1664293218, - max = 20, - name = _(CR(), 'core', 'ammo_scramjet_missile') - }, - ['AMMO_STRIKEFORCE_BARRAGE'] = { - id = 'AMMO_STRIKEFORCE_BARRAGE', - hash = 987449399, - max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_barrage') - }, - ['AMMO_STRIKEFORCE_MISSILE'] = { - id = 'AMMO_STRIKEFORCE_MISSILE', - hash = 770578418, - max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_missile') - }, - ['AMMO_SUBCAR_MISSILE'] = { - id = 'AMMO_SUBCAR_MISSILE', - hash = 456482729, - max = 100, - name = _(CR(), 'core', 'ammo_subcar_missile') - }, - ['AMMO_SUBCAR_TORPEDO'] = { - id = 'AMMO_SUBCAR_TORPEDO', - hash = -684945118, - max = 100, - name = _(CR(), 'core', 'ammo_subcar_torpedo') - }, - ['AMMO_TAMPA_MORTAR'] = { - id = 'AMMO_TAMPA_MORTAR', - hash = -405037695, - max = 10, - name = _(CR(), 'core', 'ammo_tampa_mortar') - }, - ['AMMO_THRUSTER_MISSILE'] = { - id = 'AMMO_THRUSTER_MISSILE', - hash = -379666311, - max = 20, - name = _(CR(), 'core', 'ammo_thruster_missile') - }, - ['AMMO_TRAILER_AA'] = { - id = 'AMMO_TRAILER_AA', - hash = 881918194, - max = 100, - name = _(CR(), 'core', 'ammo_trailer_aa') - }, - ['AMMO_TRAILER_MISSILE'] = { - id = 'AMMO_TRAILER_MISSILE', - hash = -11173636, - max = 10, - name = _(CR(), 'core', 'ammo_trailer_missile') - }, - ['AMMO_VIGILANTE_MISSILE'] = { - id = 'AMMO_VIGILANTE_MISSILE', - hash = 1507289724, - max = 20, - name = _(CR(), 'core', 'ammo_vigilante_missile') - }, - ['AMMO_VEHICLEBOMB_WIDE'] = { - id = 'AMMO_VEHICLEBOMB_WIDE', - hash = -117387562, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_wide') - }, - ['AMMO_RCTANK_ROCKET'] = { - id = 'AMMO_RCTANK_ROCKET', - hash = -1585454291, - max = 20, - name = _(CR(), 'core', 'ammo_rctank_rocket') - }, - ['AMMO_FIREWORK'] = { - id = 'AMMO_FIREWORK', - hash = -1356599793, - max = 20, - name = _(CR(), 'core', 'ammo_firework') - }, - ['AMMO_FLAREGUN'] = { - id = 'AMMO_FLAREGUN', - hash = 1173416293, - max = 20, - name = _(CR(), 'core', 'ammo_flaregun') - }, - ['AMMO_HOMINGLAUNCHER'] = { - id = 'AMMO_HOMINGLAUNCHER', - hash = -1726673363, - max = 10, - name = _(CR(), 'core', 'ammo_hominglauncher') - }, - ['AMMO_PIPEBOMB'] = { - id = 'AMMO_PIPEBOMB', - hash = 357983224, - max = 10, - name = _(CR(), 'core', 'ammo_pipebomb') - }, - ['AMMO_PROXMINE'] = { - id = 'AMMO_PROXMINE', - hash = -1356724057, - max = 5, - name = _(CR(), 'core', 'ammo_proxmine') - }, - ['AMMO_RAILGUN'] = { - id = 'AMMO_RAILGUN', - hash = 2034517757, - max = 20, - name = _(CR(), 'core', 'ammo_railgun') - }, - ['AMMO_PISTOL'] = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - ['AMMO_SMG'] = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - ['AMMO_RIFLE'] = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - ['AMMO_MG'] = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - ['AMMO_SHOTGUN'] = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - ['AMMO_STUNGUN'] = { - id = 'AMMO_STUNGUN', - hash = -1339118112, - max = 250, - name = _(CR(), 'core', 'ammo_stungun') - }, - ['AMMO_SNIPER'] = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - ['AMMO_SNIPER_REMOTE'] = { - id = 'AMMO_SNIPER_REMOTE', - hash = -19235536, - max = 250, - name = _(CR(), 'core', 'ammo_sniper_remote') - }, - ['AMMO_FIREEXTINGUISHER'] = { - id = 'AMMO_FIREEXTINGUISHER', - hash = 1359393852, - max = 2000, - name = _(CR(), 'core', 'ammo_fireextinguisher') - }, - ['AMMO_PETROLCAN'] = { - id = 'AMMO_PETROLCAN', - hash = -899475295, - max = 4500, - name = _(CR(), 'core', 'ammo_petrolcan') - }, - ['AMMO_MINIGUN'] = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - ['AMMO_GRENADELAUNCHER'] = { - id = 'AMMO_GRENADELAUNCHER', - hash = 1003267566, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher') - }, - ['AMMO_GRENADELAUNCHER_SMOKE'] = { - id = 'AMMO_GRENADELAUNCHER_SMOKE', - hash = 826266432, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher_smoke') - }, - ['AMMO_RPG'] = { - id = 'AMMO_RPG', - hash = 1742569970, - max = 20, - name = _(CR(), 'core', 'ammo_rpg') - }, - ['AMMO_STINGER'] = { - id = 'AMMO_STINGER', - hash = -1857257158, - max = 20, - name = _(CR(), 'core', 'ammo_stinger') - }, - ['AMMO_GRENADE'] = { - id = 'AMMO_GRENADE', - hash = 1003688881, - max = 25, - name = _(CR(), 'core', 'ammo_grenade') - }, - ['AMMO_BALL'] = { - id = 'AMMO_BALL', - hash = -6986138, - max = 1, - name = _(CR(), 'core', 'ammo_ball') - }, - ['AMMO_STICKYBOMB'] = { - id = 'AMMO_STICKYBOMB', - hash = 1411692055, - max = 25, - name = _(CR(), 'core', 'ammo_stickybomb') - }, - ['AMMO_SMOKEGRENADE'] = { - id = 'AMMO_SMOKEGRENADE', - hash = -435287898, - max = 25, - name = _(CR(), 'core', 'ammo_smokegrenade') - }, - ['AMMO_BZGAS'] = { - id = 'AMMO_BZGAS', - hash = -1686864220, - max = 25, - name = _(CR(), 'core', 'ammo_bzgas') - }, - ['AMMO_FLARE'] = { - id = 'AMMO_FLARE', - hash = 1808594799, - max = 25, - name = _(CR(), 'core', 'ammo_flare') - }, - ['AMMO_MOLOTOV'] = { - id = 'AMMO_MOLOTOV', - hash = 1446246869, - max = 25, - name = _(CR(), 'core', 'ammo_molotov') - }, - ['AMMO_TANK'] = { - id = 'AMMO_TANK', - hash = -1474608608, - max = 100, - name = _(CR(), 'core', 'ammo_tank') - }, - ['AMMO_SPACE_ROCKET'] = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - ['AMMO_PLANE_ROCKET'] = { - id = 'AMMO_PLANE_ROCKET', - hash = 1198741878, - max = 20, - name = _(CR(), 'core', 'ammo_plane_rocket') - }, - ['AMMO_PLAYER_LASER'] = { - id = 'AMMO_PLAYER_LASER', - hash = -165357558, - max = 100, - name = _(CR(), 'core', 'ammo_player_laser') - }, - ['AMMO_ENEMY_LASER'] = { - id = 'AMMO_ENEMY_LASER', - hash = -1372674932, - max = 100, - name = _(CR(), 'core', 'ammo_enemy_laser') - }, - ['AMMO_BIRD_CRAP'] = { - id = 'AMMO_BIRD_CRAP', - hash = 1117307028, - max = 25, - name = _(CR(), 'core', 'ammo_bird_crap') - }, - ['AMMO_MG_ARMORPIERCING'] = { - id = 'AMMO_MG_ARMORPIERCING', - hash = 784861712, - max = 480, - name = _(CR(), 'core', 'ammo_mg_armorpiercing') - }, - ['AMMO_MG_FMJ'] = { - id = 'AMMO_MG_FMJ', - hash = 234717365, - max = 480, - name = _(CR(), 'core', 'ammo_mg_fmj') - }, - ['AMMO_MG_INCENDIARY'] = { - id = 'AMMO_MG_INCENDIARY', - hash = 1461941360, - max = 480, - name = _(CR(), 'core', 'ammo_mg_incendiary') - }, - ['AMMO_MG_TRACER'] = { - id = 'AMMO_MG_TRACER', - hash = 1226421483, - max = 600, - name = _(CR(), 'core', 'ammo_mg_tracer') - }, - ['AMMO_PISTOL_FMJ'] = { - id = 'AMMO_PISTOL_FMJ', - hash = -1132792829, - max = 240, - name = _(CR(), 'core', 'ammo_pistol_fmj') - }, - ['AMMO_PISTOL_HOLLOWPOINT'] = { - id = 'AMMO_PISTOL_HOLLOWPOINT', - hash = -836519658, - max = 240, - name = _(CR(), 'core', 'ammo_pistol_hollowpoint') - }, - ['AMMO_PISTOL_INCENDIARY'] = { - id = 'AMMO_PISTOL_INCENDIARY', - hash = -1416716039, - max = 240, - name = _(CR(), 'core', 'ammo_pistol_incendiary') - }, - ['AMMO_PISTOL_TRACER'] = { - id = 'AMMO_PISTOL_TRACER', - hash = -1193480661, - max = 360, - name = _(CR(), 'core', 'ammo_pistol_tracer') - }, - ['AMMO_RIFLE_ARMORPIERCING'] = { - id = 'AMMO_RIFLE_ARMORPIERCING', - hash = 423744068, - max = 240, - name = _(CR(), 'core', 'ammo_rifle_armorpiercing') - }, - ['AMMO_RIFLE_FMJ'] = { - id = 'AMMO_RIFLE_FMJ', - hash = 1586900444, - max = 240, - name = _(CR(), 'core', 'ammo_rifle_fmj') - }, - ['AMMO_RIFLE_INCENDIARY'] = { - id = 'AMMO_RIFLE_INCENDIARY', - hash = -1829688883, - max = 240, - name = _(CR(), 'core', 'ammo_rifle_incendiary') - }, - ['AMMO_RIFLE_TRACER'] = { - id = 'AMMO_RIFLE_TRACER', - hash = -1340502689, - max = 360, - name = _(CR(), 'core', 'ammo_rifle_tracer') - }, - ['AMMO_SMG_FMJ'] = { - id = 'AMMO_SMG_FMJ', - hash = 758230489, - max = 240, - name = _(CR(), 'core', 'ammo_smg_fmj') - }, - ['AMMO_SMG_HOLLOWPOINT'] = { - id = 'AMMO_SMG_HOLLOWPOINT', - hash = 670318226, - max = 240, - name = _(CR(), 'core', 'ammo_smg_hollowpoint') - }, - ['AMMO_SMG_INCENDIARY'] = { - id = 'AMMO_SMG_INCENDIARY', - hash = -332892697, - max = 240, - name = _(CR(), 'core', 'ammo_smg_incendiary') - }, - ['AMMO_SMG_TRACER'] = { - id = 'AMMO_SMG_TRACER', - hash = 1569785553, - max = 360, - name = _(CR(), 'core', 'ammo_smg_tracer') - }, - ['AMMO_SNIPER_ARMORPIERCING'] = { - id = 'AMMO_SNIPER_ARMORPIERCING', - hash = -1497580119, - max = 80, - name = _(CR(), 'core', 'ammo_sniper_armorpiercing') - }, - ['AMMO_SNIPER_EXPLOSIVE'] = { - id = 'AMMO_SNIPER_EXPLOSIVE', - hash = -1378784071, - max = 40, - name = _(CR(), 'core', 'ammo_sniper_explosive') - }, - ['AMMO_SNIPER_FMJ'] = { - id = 'AMMO_SNIPER_FMJ', - hash = -168704490, - max = 80, - name = _(CR(), 'core', 'ammo_sniper_fmj') - }, - ['AMMO_SNIPER_INCENDIARY'] = { - id = 'AMMO_SNIPER_INCENDIARY', - hash = 796697766, - max = 80, - name = _(CR(), 'core', 'ammo_sniper_incendiary') - }, - ['AMMO_SNIPER_TRACER'] = { - id = 'AMMO_SNIPER_TRACER', - hash = 1184011213, - max = 320, - name = _(CR(), 'core', 'ammo_sniper_tracer') - }, - ['AMMO_SHOTGUN_ARMORPIERCING'] = { - id = 'AMMO_SHOTGUN_ARMORPIERCING', - hash = 1923327840, - max = 160, - name = _(CR(), 'core', 'ammo_shotgun_armorpiercing') - }, - ['AMMO_SHOTGUN_EXPLOSIVE'] = { - id = 'AMMO_SHOTGUN_EXPLOSIVE', - hash = -309302955, - max = 40, - name = _(CR(), 'core', 'ammo_shotgun_explosive') - }, - ['AMMO_SHOTGUN_HOLLOWPOINT'] = { - id = 'AMMO_SHOTGUN_HOLLOWPOINT', - hash = 2089185906, - max = 160, - name = _(CR(), 'core', 'ammo_shotgun_hollowpoint') - }, - ['AMMO_SHOTGUN_INCENDIARY'] = { - id = 'AMMO_SHOTGUN_INCENDIARY', - hash = -609429612, - max = 160, - name = _(CR(), 'core', 'ammo_shotgun_incendiary') - }, - ['AMMO_SNOWBALL'] = { - id = 'AMMO_SNOWBALL', - hash = -2112339603, - max = 10, - name = _(CR(), 'core', 'ammo_snowball') - }, - ['AMMO_ARENA_HOMING_MISSILE'] = { - id = 'AMMO_ARENA_HOMING_MISSILE', - hash = 1669062227, - max = 20, - name = _(CR(), 'core', 'ammo_arena_homing_missile') - }, - ['AMMO_RAYPISTOL'] = { - id = 'AMMO_RAYPISTOL', - hash = -1526023308, - max = 20, - name = _(CR(), 'core', 'ammo_raypistol') - }, - ['AMMO_HAZARDCAN'] = { - id = 'AMMO_HAZARDCAN', - hash = 1618528319, - max = 4500, - name = _(CR(), 'core', 'ammo_hazardcan') - }, - ['AMMO_TRANQUILIZER'] = { - id = 'AMMO_TRANQUILIZER', - hash = 1964004553, - max = 250, - name = _(CR(), 'core', 'ammo_tranquilizer') - } -} diff --git a/configs/others/weapon_category_config.lua b/configs/others/weapon_category_config.lua deleted file mode 100644 index b9a3283..0000000 --- a/configs/others/weapon_category_config.lua +++ /dev/null @@ -1,241 +0,0 @@ -Config.WeaponCategories = { - ['Thrown'] = { - id = 'thrown', - weapons = { - 'VEHICLE_WEAPON_BOMB', - 'VEHICLE_WEAPON_BOMB_CLUSTER', - 'VEHICLE_WEAPON_BOMB_GAS', - 'VEHICLE_WEAPON_BOMB_INCENDIARY', - 'VEHICLE_WEAPON_MINE', - 'VEHICLE_WEAPON_MINE_KINETIC', - 'VEHICLE_WEAPON_MINE_EMP', - 'VEHICLE_WEAPON_MINE_SPIKE', - 'VEHICLE_WEAPON_MINE_SLICK', - 'VEHICLE_WEAPON_MINE_TAR', - 'VEHICLE_WEAPON_MINE_KINETIC_RC', - 'VEHICLE_WEAPON_MINE_EMP_RC', - 'VEHICLE_WEAPON_MINE_SPIKE_RC', - 'VEHICLE_WEAPON_MINE_SLICK_RC', - 'VEHICLE_WEAPON_MINE_TAR_RC', - 'VEHICLE_WEAPON_BOMB_STANDARD_WIDE', - 'WEAPON_PIPEBOMB', - 'WEAPON_PROXMINE', - 'WEAPON_GRENADE', - 'WEAPON_STICKYBOMB', - 'WEAPON_SMOKEGRENADE', - 'WEAPON_BZGAS', - 'WEAPON_MOLOTOV', - 'WEAPON_BALL', - 'WEAPON_FLARE', - 'WEAPON_BIRD_CRAP', - 'WEAPON_SNOWBALL' - }, - name = _(CR(), 'core', 'thrown') - }, - ['Heavy'] = { - id = 'heavy', - weapons = { - 'VEHICLE_WEAPON_RCTANK_LAZER', - 'WEAPON_COMPACTLAUNCHER', - 'WEAPON_FIREWORK', - 'WEAPON_HOMINGLAUNCHER', - 'WEAPON_RAILGUN', - 'WEAPON_GRENADELAUNCHER', - 'WEAPON_GRENADELAUNCHER_SMOKE', - 'WEAPON_RPG', - 'WEAPON_PASSENGER_ROCKET', - 'WEAPON_AIRSTRIKE_ROCKET', - 'WEAPON_STINGER', - 'WEAPON_MINIGUN', - 'WEAPON_VEHICLE_ROCKET', - 'WEAPON_RAYMINIGUN' - }, - name = _(CR(), 'core', 'heavy') - }, - ['Shotgun'] = { - id = 'shotgun', - weapons = { - 'WEAPON_AUTOSHOTGUN', - 'WEAPON_DBSHOTGUN', - 'WEAPON_HEAVYSHOTGUN', - 'WEAPON_PUMPSHOTGUN', - 'WEAPON_SAWNOFFSHOTGUN', - 'WEAPON_ASSAULTSHOTGUN', - 'WEAPON_BULLPUPSHOTGUN', - 'WEAPON_PUMPSHOTGUN_MK2' - }, - name = _(CR(), 'core', 'shotgun') - }, - ['Melee'] = { - id = 'melee', - weapons = { - 'WEAPON_BATTLEAXE', - 'WEAPON_BOTTLE', - 'WEAPON_DAGGER', - 'WEAPON_FLASHLIGHT', - 'WEAPON_GARBAGEBAG', - 'WEAPON_HANDCUFFS', - 'WEAPON_HATCHET', - 'WEAPON_MACHETE', - 'WEAPON_POOLCUE', - 'WEAPON_KNIFE', - 'WEAPON_NIGHTSTICK', - 'WEAPON_HAMMER', - 'WEAPON_BAT', - 'WEAPON_GOLFCLUB', - 'WEAPON_CROWBAR', - 'WEAPON_STONE_HATCHET', - 'WEAPON_SWITCHBLADE', - 'WEAPON_WRENCH' - }, - name = _(CR(), 'core', 'melee') - }, - ['Rifle'] = { - id = 'rifle', - weapons = { - 'WEAPON_BULLPUPRIFLE', - 'WEAPON_COMPACTRIFLE', - 'WEAPON_ASSAULTRIFLE', - 'WEAPON_CARBINERIFLE', - 'WEAPON_ADVANCEDRIFLE', - 'WEAPON_SPECIALCARBINE', - 'WEAPON_ASSAULTRIFLE_MK2', - 'WEAPON_BULLPUPRIFLE_MK2', - 'WEAPON_CARBINERIFLE_MK2', - 'WEAPON_SPECIALCARBINE_MK2' - }, - name = _(CR(), 'core', 'rifle') - }, - ['Smg'] = { - id = 'smg', - weapons = { - 'WEAPON_COMBATPDW', - 'WEAPON_MACHINEPISTOL', - 'WEAPON_MINISMG', - 'WEAPON_MICROSMG', - 'WEAPON_SMG', - 'WEAPON_ASSAULTSMG', - 'WEAPON_SMG_MK2' - }, - name = _(CR(), 'core', 'smg') - }, - ['Pistol'] = { - id = 'pistol', - weapons = { - 'WEAPON_FLAREGUN', - 'WEAPON_HEAVYPISTOL', - 'WEAPON_MARKSMANPISTOL', - 'WEAPON_REVOLVER', - 'WEAPON_PISTOL', - 'WEAPON_COMBATPISTOL', - 'WEAPON_APPISTOL', - 'WEAPON_PISTOL50', - 'WEAPON_SNSPISTOL', - 'WEAPON_DOUBLEACTION', - 'WEAPON_PISTOL_MK2', - 'WEAPON_REVOLVER_MK2', - 'WEAPON_SNSPISTOL_MK2', - 'WEAPON_RAYPISTOL', - 'WEAPON_VINTAGEPISTOL', - 'WEAPON_CERAMICPISTOL', - 'WEAPON_NAVYREVOLVER' - }, - name = _(CR(), 'core', 'pistol') - }, - ['Mg'] = { - id = 'mg', - weapons = { - 'WEAPON_GUSENBERG', - 'WEAPON_MG', - 'WEAPON_COMBATMG', - 'WEAPON_COMBATMG_MK2', - 'WEAPON_RAYCARBINE' - }, - name = _(CR(), 'core', 'mg') - }, - ['Unarmed'] = { - id = 'unarmed', - weapons = { - 'WEAPON_KNUCKLE', - 'WEAPON_UNARMED', - 'WEAPON_ANIMAL', - 'WEAPON_COUGAR', - 'WEAPON_ANIMAL_RETRIEVER', - 'WEAPON_SMALL_DOG', - 'WEAPON_TIGER_SHARK', - 'WEAPON_HAMMERHEAD_SHARK', - 'WEAPON_KILLER_WHALE', - 'WEAPON_BOAR', - 'WEAPON_PIG', - 'WEAPON_COYOTE', - 'WEAPON_DEER', - 'WEAPON_HEN', - 'WEAPON_RABBIT', - 'WEAPON_CAT', - 'WEAPON_COW' - }, - name = _(CR(), 'core', 'unarmed') - }, - ['Sniper'] = { - id = 'sniper', - weapons = { - 'WEAPON_MARKSMANRIFLE', - 'WEAPON_MUSKET', - 'WEAPON_SNIPERRIFLE', - 'WEAPON_HEAVYSNIPER', - 'WEAPON_HEAVYSNIPER_MK2', - 'WEAPON_MARKSMANRIFLE_MK2' - }, - name = _(CR(), 'core', 'sniper') - }, - ['Stungun'] = { - id = 'stungun', - weapons = { - 'WEAPON_STUNGUN' - }, - name = _(CR(), 'core', 'stungun') - }, - ['Fireextinguisher'] = { - id = 'fireextinguisher', - weapons = { - 'WEAPON_FIREEXTINGUISHER' - }, - name = _(CR(), 'core', 'fireextinguisher') - }, - ['Petrolcan'] = { - id = 'petrolcan', - weapons = { - 'WEAPON_PETROLCAN', - 'WEAPON_HAZARDCAN' - }, - name = _(CR(), 'core', 'petrolcan') - }, - ['Digiscanner'] = { - id = 'digiscanner', - weapons = { - 'WEAPON_DIGISCANNER' - }, - name = _(CR(), 'core', 'digiscanner') - }, - ['Nightvision'] = { - id = 'nightvision', - weapons = { - 'GADGET_NIGHTVISION' - }, - name = _(CR(), 'core', 'nightvision') - }, - ['Parachute'] = { - id = 'parachute', - weapons = { - 'GADGET_PARACHUTE' - }, - name = _(CR(), 'core', 'parachute') - }, - ['Tranqilizer'] = { - id = 'tranqilizer', - weapons = { - 'WEAPON_TRANQUILIZER' - }, - name = _(CR(), 'core', 'tranqilizer') - } -} diff --git a/configs/others/weapon_component_config.lua b/configs/others/weapon_component_config.lua deleted file mode 100644 index 8e7a2d3..0000000 --- a/configs/others/weapon_component_config.lua +++ /dev/null @@ -1,3815 +0,0 @@ -Config.WeaponComponents = { - ['COMPONENT_AT_RAILCOVER_01'] = { - id = 'COMPONENT_AT_RAILCOVER_01', - hash = 1967214384, - model = 'w_at_railcover_01', - gxtName = 'WCT_RAIL', - gxtDescription = 'WCD_AT_RAIL', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_AR_AFGRIP'] = { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_PI_FLSH'] = { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_AR_FLSH'] = { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['POLICE_TORCH_FLASHLIGHT'] = { - id = 'POLICE_TORCH_FLASHLIGHT', - hash = -979169299, - model = '', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_SCOPE_MACRO'] = { - id = 'COMPONENT_AT_SCOPE_MACRO', - hash = -1657815255, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_02'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_02', - hash = 1019656791, - model = 'w_at_scope_macro_2', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL'] = { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL_02'] = { - id = 'COMPONENT_AT_SCOPE_SMALL_02', - hash = 1006677997, - model = 'w_at_scope_small_2', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MEDIUM'] = { - id = 'COMPONENT_AT_SCOPE_MEDIUM', - hash = -1596416958, - model = 'w_at_scope_medium', - gxtName = 'WCT_SCOPE_MED', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_LARGE'] = { - id = 'COMPONENT_AT_SCOPE_LARGE', - hash = -767279652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MAX'] = { - id = 'COMPONENT_AT_SCOPE_MAX', - hash = -1135289737, - model = 'w_at_scope_max', - gxtName = 'WCT_SCOPE_MAX', - gxtDescription = 'WCD_SCOPE_MAX', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_PI_SUPP'] = { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_SUPP_02'] = { - id = 'COMPONENT_AT_PI_SUPP_02', - hash = 1709866683, - model = 'w_at_pi_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_AR_SUPP'] = { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_AR_SUPP_02'] = { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_SR_SUPP'] = { - id = 'COMPONENT_AT_SR_SUPP', - hash = -435637410, - model = 'w_at_sr_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_PISTOL_CLIP_01'] = { - id = 'COMPONENT_PISTOL_CLIP_01', - hash = -19858063, - model = 'w_pi_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_PISTOL_CLIP_02'] = { - id = 'COMPONENT_PISTOL_CLIP_02', - hash = -316253668, - model = 'w_pi_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_COMBATPISTOL_CLIP_01'] = { - id = 'COMPONENT_COMBATPISTOL_CLIP_01', - hash = 119648377, - model = 'w_pi_combatpistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_COMBATPISTOL_CLIP_02'] = { - id = 'COMPONENT_COMBATPISTOL_CLIP_02', - hash = -696561875, - model = 'w_pi_combatpistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_APPISTOL_CLIP_01'] = { - id = 'COMPONENT_APPISTOL_CLIP_01', - hash = 834974250, - model = 'w_pi_appistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 18 - }, - ['COMPONENT_APPISTOL_CLIP_02'] = { - id = 'COMPONENT_APPISTOL_CLIP_02', - hash = 614078421, - model = 'w_pi_appistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 36 - }, - ['COMPONENT_MICROSMG_CLIP_01'] = { - id = 'COMPONENT_MICROSMG_CLIP_01', - hash = -884429072, - model = 'w_sb_microsmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCDMSMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_MICROSMG_CLIP_02'] = { - id = 'COMPONENT_MICROSMG_CLIP_02', - hash = 283556395, - model = 'w_sb_microsmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCDMSMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_CLIP_01'] = { - id = 'COMPONENT_SMG_CLIP_01', - hash = 643254679, - model = 'w_sb_smg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_CLIP_02'] = { - id = 'COMPONENT_SMG_CLIP_02', - hash = 889808635, - model = 'w_sb_smg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_ASSAULTRIFLE_CLIP_01'] = { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_01', - hash = -1101075946, - model = 'w_ar_assaultrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ASSAULTRIFLE_CLIP_02'] = { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_02', - hash = -1323216997, - model = 'w_ar_assaultrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_CARBINERIFLE_CLIP_01'] = { - id = 'COMPONENT_CARBINERIFLE_CLIP_01', - hash = -1614924820, - model = 'w_ar_carbinerifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_CARBINERIFLE_CLIP_02'] = { - id = 'COMPONENT_CARBINERIFLE_CLIP_02', - hash = -1861183855, - model = 'w_ar_carbinerifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_ADVANCEDRIFLE_CLIP_01'] = { - id = 'COMPONENT_ADVANCEDRIFLE_CLIP_01', - hash = -91250417, - model = 'w_ar_advancedrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ADVANCEDRIFLE_CLIP_02'] = { - id = 'COMPONENT_ADVANCEDRIFLE_CLIP_02', - hash = -1899902599, - model = 'w_ar_advancedrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_MG_CLIP_01'] = { - id = 'COMPONENT_MG_CLIP_01', - hash = -197857404, - model = 'w_mg_mg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 54 - }, - ['COMPONENT_MG_CLIP_02'] = { - id = 'COMPONENT_MG_CLIP_02', - hash = -2112517305, - model = 'w_mg_mg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATMG_CLIP_01'] = { - id = 'COMPONENT_COMBATMG_CLIP_01', - hash = -503336118, - model = 'w_mg_combatmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCDCMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATMG_CLIP_02'] = { - id = 'COMPONENT_COMBATMG_CLIP_02', - hash = -691692330, - model = 'w_mg_combatmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCDCMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 200 - }, - ['COMPONENT_PUMPSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_PUMPSHOTGUN_CLIP_01', - hash = -781249480, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_SAWNOFFSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_SAWNOFFSHOTGUN_CLIP_01', - hash = -942267867, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_ASSAULTSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_01', - hash = -1796727865, - model = 'w_sg_assaultshotgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AS_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_ASSAULTSHOTGUN_CLIP_02'] = { - id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_02', - hash = -2034401422, - model = 'w_sg_assaultshotgun_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AS_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 32 - }, - ['COMPONENT_SNIPERRIFLE_CLIP_01'] = { - id = 'COMPONENT_SNIPERRIFLE_CLIP_01', - hash = -1681506167, - model = 'w_sr_sniperrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 10 - }, - ['COMPONENT_HEAVYSNIPER_CLIP_01'] = { - id = 'COMPONENT_HEAVYSNIPER_CLIP_01', - hash = 1198478068, - model = 'w_sr_heavysniper_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HS_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_MINIGUN_CLIP_01'] = { - id = 'COMPONENT_MINIGUN_CLIP_01', - hash = -924946682, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 15000 - }, - ['COMPONENT_RPG_CLIP_01'] = { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_GRENADELAUNCHER_CLIP_01'] = { - id = 'COMPONENT_GRENADELAUNCHER_CLIP_01', - hash = 296639639, - model = 'w_lr_40mm', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 10 - }, - ['COMPONENT_PISTOL50_CLIP_01'] = { - id = 'COMPONENT_PISTOL50_CLIP_01', - hash = 580369945, - model = 'W_PI_PISTOL50_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P50_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 9 - }, - ['COMPONENT_PISTOL50_CLIP_02'] = { - id = 'COMPONENT_PISTOL50_CLIP_02', - hash = -640439150, - model = 'W_PI_PISTOL50_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P50_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_ASSAULTSMG_CLIP_01'] = { - id = 'COMPONENT_ASSAULTSMG_CLIP_01', - hash = -1928132688, - model = 'W_SB_ASSAULTSMG_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ASSAULTSMG_CLIP_02'] = { - id = 'COMPONENT_ASSAULTSMG_CLIP_02', - hash = -1152981993, - model = 'W_SB_ASSAULTSMG_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_BULLPUPSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_BULLPUPSHOTGUN_CLIP_01', - hash = -917613298, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 14 - }, - ['COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE', - hash = 930927479, - model = 'W_AR_AdvancedRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_APPISTOL_VARMOD_LUXE'] = { - id = 'COMPONENT_APPISTOL_VARMOD_LUXE', - hash = -1686714580, - model = 'W_PI_APPistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_ASSAULTRIFLE_VARMOD_LUXE', - hash = 1319990579, - model = 'W_AR_AssaultRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_CARBINERIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_CARBINERIFLE_VARMOD_LUXE', - hash = -660892072, - model = 'W_AR_CarbineRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_PISTOL_VARMOD_LUXE'] = { - id = 'COMPONENT_PISTOL_VARMOD_LUXE', - hash = -684126074, - model = 'W_PI_Pistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_PISTOL50_VARMOD_LUXE'] = { - id = 'COMPONENT_PISTOL50_VARMOD_LUXE', - hash = 2008591151, - model = 'W_PI_Pistol50_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MICROSMG_VARMOD_LUXE'] = { - id = 'COMPONENT_MICROSMG_VARMOD_LUXE', - hash = 1215999497, - model = 'W_SB_MicroSMG_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE'] = { - id = 'COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE', - hash = -2052698631, - model = 'W_SG_Sawnoff_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SMG_VARMOD_LUXE'] = { - id = 'COMPONENT_SMG_VARMOD_LUXE', - hash = 663170192, - model = 'W_SB_SMG_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SNIPERRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_SNIPERRIFLE_VARMOD_LUXE', - hash = 1077065191, - model = 'W_SR_SniperRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER', - hash = 663517359, - model = 'w_sb_assaultsmg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_COMBATMG_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_COMBATMG_VARMOD_LOWRIDER', - hash = -1828795171, - model = 'w_mg_combatmg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER', - hash = -966439566, - model = 'w_pi_combatpistol_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MG_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_MG_VARMOD_LOWRIDER', - hash = -690308418, - model = 'w_mg_mg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER', - hash = -1562927653, - model = 'w_sg_pumpshotgun_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTRIFLE_CLIP_03'] = { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_03', - hash = -604986051, - model = 'w_ar_assaultrifle_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_CARBINERIFLE_CLIP_03'] = { - id = 'COMPONENT_CARBINERIFLE_CLIP_03', - hash = -1167922891, - model = 'w_ar_carbinerifle_boxmag', - gxtName = 'WCT_CLIP_BOX', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATPDW_CLIP_03'] = { - id = 'COMPONENT_COMBATPDW_CLIP_03', - hash = 1857603803, - model = 'w_sb_pdw_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMPACTRIFLE_CLIP_03'] = { - id = 'COMPONENT_COMPACTRIFLE_CLIP_03', - hash = -972590066, - model = 'w_ar_assaultrifle_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_HEAVYSHOTGUN_CLIP_03'] = { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_03', - hash = -2000168365, - model = 'w_sg_heavyshotgun_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_MACHINEPISTOL_CLIP_03'] = { - id = 'COMPONENT_MACHINEPISTOL_CLIP_03', - hash = -1444295948, - model = 'w_sb_compactsmg_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_CLIP_03'] = { - id = 'COMPONENT_SMG_CLIP_03', - hash = 2043113590, - model = 'w_sb_smg_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_SPECIALCARBINE_CLIP_03'] = { - id = 'COMPONENT_SPECIALCARBINE_CLIP_03', - hash = 1801039530, - model = 'w_ar_specialcarbine_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_GUNRUN_MK2_UPGRADE'] = { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HOMINGLAUNCHER_CLIP_01'] = { - id = 'COMPONENT_HOMINGLAUNCHER_CLIP_01', - hash = -132960961, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO', - hash = -1371515465, - model = 'w_ar_bullpupriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_02', - hash = -1190793877, - model = 'w_ar_bullpupriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_03', - hash = -1497085720, - model = 'w_ar_bullpupriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_04', - hash = -1803148180, - model = 'w_ar_bullpupriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_05', - hash = -1975971886, - model = 'w_ar_bullpupriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_06', - hash = 36929477, - model = 'w_ar_bullpupriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_07', - hash = -268444834, - model = 'w_ar_bullpupriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_08', - hash = -574769446, - model = 'w_ar_bullpupriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_09', - hash = -882699739, - model = 'w_ar_bullpupriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_10', - hash = -1468181474, - model = 'w_ar_bullpupriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01', - hash = -974541230, - model = 'w_ar_bullpupriflemk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_01', - hash = 25766362, - model = 'w_ar_bullpupriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_02', - hash = -273676760, - model = 'w_ar_bullpupriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -89655827, - model = 'W_AR_BullpupRifleMK2_Mag_AP', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ', - hash = 1130501904, - model = 'W_AR_BullpupRifleMK2_Mag_FMJ', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY', - hash = -1449330342, - model = 'W_AR_BullpupRifleMK2_Mag_INC', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER', - hash = -2111807319, - model = 'W_AR_BullpupRifleMK2_Mag_TR', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_AT_BP_BARREL_01'] = { - id = 'COMPONENT_AT_BP_BARREL_01', - hash = 1704640795, - model = 'W_AR_BP_MK2_Barrel1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_BP_BARREL_02'] = { - id = 'COMPONENT_AT_BP_BARREL_02', - hash = 1005743559, - model = 'W_AR_BP_MK2_Barrel2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_DOUBLEACTION_CLIP_01'] = { - id = 'COMPONENT_DOUBLEACTION_CLIP_01', - hash = 1328622785, - model = 'w_pi_wep1_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_DA_CLIP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO', - hash = -1869284448, - model = 'w_sr_marksmanriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_02', - hash = 1931539634, - model = 'w_sr_marksmanriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_03', - hash = 1624199183, - model = 'w_sr_marksmanriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_04', - hash = -26834113, - model = 'w_sr_marksmanriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_05', - hash = -210406055, - model = 'w_sr_marksmanriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_06', - hash = 423313640, - model = 'w_sr_marksmanriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_07', - hash = 276639596, - model = 'w_sr_marksmanriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_08', - hash = -991356863, - model = 'w_sr_marksmanriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_09', - hash = -1682848301, - model = 'w_sr_marksmanriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_10', - hash = 996213771, - model = 'w_sr_marksmanriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01', - hash = -1214048550, - model = 'w_sr_marksmanriflemk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_01', - hash = -1797182002, - model = 'w_sr_marksmanriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_02', - hash = -422587990, - model = 'w_sr_marksmanriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -193998727, - model = 'w_sr_marksmanriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 5 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ', - hash = -515203373, - model = 'w_sr_marksmanriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 5 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY', - hash = 1842849902, - model = 'w_sr_marksmanriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 5 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER', - hash = -679861550, - model = 'w_sr_marksmanriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_AT_MRFL_BARREL_01'] = { - id = 'COMPONENT_AT_MRFL_BARREL_01', - hash = 941317513, - model = 'w_sr_mr_mk2_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MRFL_BARREL_02'] = { - id = 'COMPONENT_AT_MRFL_BARREL_02', - hash = 1748450780, - model = 'w_sr_mr_mk2_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO', - hash = -474112444, - model = 'w_sg_pumpshotgunmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_02'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_02', - hash = 387223451, - model = 'w_sg_pumpshotgunmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_03'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_03', - hash = 617753366, - model = 'w_sg_pumpshotgunmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_04'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_04', - hash = -222378256, - model = 'w_sg_pumpshotgunmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_05'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_05', - hash = 8741501, - model = 'w_sg_pumpshotgunmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_06'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_06', - hash = -601286203, - model = 'w_sg_pumpshotgunmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_07'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_07', - hash = -511433605, - model = 'w_sg_pumpshotgunmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_08'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_08', - hash = -655387818, - model = 'w_sg_pumpshotgunmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_09'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_09', - hash = -282476598, - model = 'w_sg_pumpshotgunmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_10'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_10', - hash = 1739501925, - model = 'w_sg_pumpshotgunmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01', - hash = 1178671645, - model = 'w_sg_pumpshotgunmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_01'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_01', - hash = -845938367, - model = 'w_sg_pumpshotgunmk2_mag1', - gxtName = 'WCT_SHELL', - gxtDescription = 'WCD_SHELL', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING', - hash = 1315288101, - model = 'w_sg_pumpshotgunmk2_mag_ap', - gxtName = 'WCT_SHELL_AP', - gxtDescription = 'WCD_SHELL_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE', - hash = 1004815965, - model = 'w_sg_pumpshotgunmk2_mag_exp', - gxtName = 'WCT_SHELL_EX', - gxtDescription = 'WCD_SHELL_EX', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT', - hash = -380098265, - model = 'w_sg_pumpshotgunmk2_mag_hp', - gxtName = 'WCT_SHELL_HP', - gxtDescription = 'WCD_SHELL_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY', - hash = -1618338827, - model = 'w_sg_pumpshotgunmk2_mag_inc', - gxtName = 'WCT_SHELL_INC', - gxtDescription = 'WCD_SHELL_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_REVOLVER_MK2_CAMO'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO', - hash = -1069552225, - model = 'w_pi_revolvermk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_02'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_02', - hash = 11918884, - model = 'w_pi_revolvermk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_03'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_03', - hash = 176157112, - model = 'w_pi_revolvermk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_04'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_04', - hash = -220052855, - model = 'w_pi_revolvermk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_05'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_05', - hash = 288456487, - model = 'w_pi_revolvermk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_06'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_06', - hash = 398658626, - model = 'w_pi_revolvermk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_07'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_07', - hash = 628697006, - model = 'w_pi_revolvermk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_08'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_08', - hash = 925911836, - model = 'w_pi_revolvermk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_09'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_09', - hash = 1222307441, - model = 'w_pi_revolvermk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_10'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_10', - hash = 552442715, - model = 'w_pi_revolvermk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_IND_01', - hash = -648943513, - model = 'w_pi_revolvermk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CLIP_01'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_01', - hash = -1172055874, - model = 'w_pi_revolvermk2_mag1', - gxtName = 'WCT_CLIP1_RV', - gxtDescription = 'WCD_CLIP1_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_FMJ', - hash = 231258687, - model = 'w_pi_revolvermk2_mag5', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT', - hash = 284438159, - model = 'w_pi_revolvermk2_mag2', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY', - hash = 15712037, - model = 'w_pi_revolvermk2_mag3', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_TRACER', - hash = -958864266, - model = 'w_pi_revolvermk2_mag4', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO', - hash = 259780317, - model = 'W_PI_SNS_PistolMk2_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE', - hash = -403805974, - model = 'W_PI_SNS_PistolMk2_SL_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_02'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02', - hash = -1973342474, - model = 'W_PI_SNS_PistolMk2_Camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE', - hash = 691432737, - model = 'W_PI_SNS_PistolMk2_SL_Camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_03'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03', - hash = 1996130345, - model = 'W_PI_SNS_PistolMk2_Camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE', - hash = 987648331, - model = 'W_PI_SNS_PistolMk2_SL_Camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_04'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04', - hash = -1455657812, - model = 'W_PI_SNS_PistolMk2_Camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE', - hash = -431680535, - model = 'W_PI_SNS_PistolMk2_SL_Camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_05'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05', - hash = -1668263084, - model = 'W_PI_SNS_PistolMk2_Camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE', - hash = -847582310, - model = 'W_PI_SNS_PistolMk2_SL_Camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_06'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06', - hash = 1308243489, - model = 'W_PI_SNS_PistolMk2_Camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE', - hash = -92592218, - model = 'W_PI_SNS_PistolMk2_SL_Camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_07'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07', - hash = 1122574335, - model = 'W_PI_SNS_PistolMk2_Camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE', - hash = -494548326, - model = 'W_PI_SNS_PistolMk2_SL_Camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_08'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08', - hash = 1420313469, - model = 'W_PI_SNS_PistolMk2_Camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE', - hash = 730876697, - model = 'W_PI_SNS_PistolMk2_SL_Camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_09'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09', - hash = 109848390, - model = 'W_PI_SNS_PistolMk2_Camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE', - hash = 583159708, - model = 'W_PI_SNS_PistolMk2_SL_Camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_10'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10', - hash = 593945703, - model = 'W_PI_SNS_PistolMk2_Camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE', - hash = -1928503603, - model = 'W_PI_SNS_PistolMk2_SL_Camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01', - hash = 1142457062, - model = 'w_pi_sns_pistolmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE', - hash = 520557834, - model = 'W_PI_SNS_PistolMK2_SL_Camo_Ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_01'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_01', - hash = 21392614, - model = 'w_pi_sns_pistolmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_02'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_02', - hash = -829683854, - model = 'w_pi_sns_pistolmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_FMJ', - hash = -1055790298, - model = 'W_PI_SNS_PistolMK2_Mag_FMJ', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT', - hash = -1928301566, - model = 'W_PI_SNS_PistolMK2_Mag_HP', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY', - hash = -424845447, - model = 'W_PI_SNS_PistolMK2_Mag_INC', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC_NS', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_TRACER', - hash = -1876057490, - model = 'W_PI_SNS_PistolMK2_Mag_TR', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO', - hash = -737430213, - model = 'w_ar_specialcarbinemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_02'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_02', - hash = 1125852043, - model = 'w_ar_specialcarbinemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_03'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_03', - hash = 886015732, - model = 'w_ar_specialcarbinemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_04'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_04', - hash = -1262287139, - model = 'w_ar_specialcarbinemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_05'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_05', - hash = -295208411, - model = 'w_ar_specialcarbinemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_06'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_06', - hash = -544154504, - model = 'w_ar_specialcarbinemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_07'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_07', - hash = 172765678, - model = 'w_ar_specialcarbinemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_08'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_08', - hash = -1982877449, - model = 'w_ar_specialcarbinemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_09'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_09', - hash = 2072122460, - model = 'w_ar_specialcarbinemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_10'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_10', - hash = -1986220171, - model = 'w_ar_specialcarbinemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01', - hash = 1377355801, - model = 'w_ar_specialcarbinemk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_01'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_01', - hash = 382112385, - model = 'w_ar_specialcarbinemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_02'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_02', - hash = -568352468, - model = 'w_ar_specialcarbinemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING', - hash = 1362433589, - model = 'w_ar_specialcarbinemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ', - hash = 1346235024, - model = 'w_ar_specialcarbinemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY', - hash = -570355066, - model = 'w_ar_specialcarbinemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER', - hash = -2023373174, - model = 'w_ar_specialcarbinemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_AT_SC_BARREL_01'] = { - id = 'COMPONENT_AT_SC_BARREL_01', - hash = -415870039, - model = 'w_ar_sc_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SC_BARREL_02'] = { - id = 'COMPONENT_AT_SC_BARREL_02', - hash = -109086661, - model = 'w_ar_sc_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_PI_COMP_02'] = { - id = 'COMPONENT_AT_PI_COMP_02', - hash = -1434287169, - model = 'w_at_pi_comp_2', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_COMP_03'] = { - id = 'COMPONENT_AT_PI_COMP_03', - hash = 654802123, - model = 'w_at_pi_comp_3', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_RAIL_02'] = { - id = 'COMPONENT_AT_PI_RAIL_02', - hash = 1205768792, - model = 'w_at_pi_rail_2', - gxtName = 'WCT_SCOPE_PI', - gxtDescription = 'WCD_SCOPE_PI', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_PI_FLSH_03'] = { - id = 'COMPONENT_AT_PI_FLSH_03', - hash = 1246324211, - model = 'w_at_pi_snsmk2_flsh_1', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2'] = { - id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2', - hash = 1528590652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG2', - gxtDescription = 'WCD_SCOPE_LRF', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_RAYPISTOL_VARMOD_XMAS18'] = { - id = 'COMPONENT_RAYPISTOL_VARMOD_XMAS18', - hash = -673450233, - model = 'w_pi_raygun_ev', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_01', - hash = -2045758401, - model = 'w_ar_assaultriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_02', - hash = -785724817, - model = 'w_ar_assaultriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -1478681000, - model = 'w_ar_assaultriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ', - hash = 1675665560, - model = 'w_ar_assaultriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY', - hash = -76490669, - model = 'w_ar_assaultriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER', - hash = -282298175, - model = 'w_ar_assaultriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_01', - hash = 1283078430, - model = 'w_ar_carbineriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_02', - hash = 1574296533, - model = 'w_ar_carbineriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING', - hash = 626875735, - model = 'w_ar_carbineriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ', - hash = 1141059345, - model = 'w_ar_carbineriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY', - hash = 1025884839, - model = 'w_ar_carbineriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER', - hash = 391640422, - model = 'w_ar_carbineriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_01'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_01', - hash = 1227564412, - model = 'w_mg_combatmgmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_02'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_02', - hash = 400507625, - model = 'w_mg_combatmgmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 200 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING', - hash = 696788003, - model = 'w_mg_combatmgmk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 80 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_FMJ', - hash = 1475288264, - model = 'w_mg_combatmgmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 80 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY', - hash = -1020871238, - model = 'w_mg_combatmgmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 80 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_TRACER', - hash = -161179835, - model = 'w_mg_combatmgmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_01'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_01', - hash = -98690520, - model = 'w_sr_heavysnipermk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_02'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_02', - hash = 752418717, - model = 'w_sr_heavysnipermk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING', - hash = -130689324, - model = 'w_sr_heavysnipermk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE', - hash = -1981031769, - model = 'w_sr_heavysnipermk2_mag_ap2', - gxtName = 'WCT_CLIP_EX', - gxtDescription = 'WCD_CLIP_EX', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ', - hash = 1005144310, - model = 'w_sr_heavysnipermk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY', - hash = 247526935, - model = 'w_sr_heavysnipermk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_PISTOL_MK2_CLIP_01'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_01', - hash = -1795936926, - model = 'w_pi_pistolmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_PISTOL_MK2_CLIP_02'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_02', - hash = 1591132456, - model = 'w_pi_pistolmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_PISTOL_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_FMJ', - hash = 1329061674, - model = 'w_pi_pistolmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT', - hash = -2046910199, - model = 'w_pi_pistolmk2_mag_hp', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PISTOL_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_INCENDIARY', - hash = 733837882, - model = 'w_pi_pistolmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PISTOL_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_TRACER', - hash = 634039983, - model = 'w_pi_pistolmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_SMG_MK2_CLIP_01'] = { - id = 'COMPONENT_SMG_MK2_CLIP_01', - hash = 1277460590, - model = 'w_sb_smgmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_MK2_CLIP_02'] = { - id = 'COMPONENT_SMG_MK2_CLIP_02', - hash = -1182573778, - model = 'w_sb_smgmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_SMG_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_SMG_MK2_CLIP_FMJ', - hash = 190476639, - model = 'w_sb_smgmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT', - hash = 974903034, - model = 'w_sb_smgmk2_mag_hp', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SMG_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_SMG_MK2_CLIP_INCENDIARY', - hash = -644734235, - model = 'w_sb_smgmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SMG_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_SMG_MK2_CLIP_TRACER', - hash = 2146055916, - model = 'w_sb_smgmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_AT_AR_BARREL_01'] = { - id = 'COMPONENT_AT_AR_BARREL_01', - hash = 1134861606, - model = 'w_at_ar_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_AR_BARREL_02'] = { - id = 'COMPONENT_AT_AR_BARREL_02', - hash = 1447477866, - model = 'w_at_ar_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_CR_BARREL_01'] = { - id = 'COMPONENT_AT_CR_BARREL_01', - hash = -2093598721, - model = 'w_at_cr_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_CR_BARREL_02'] = { - id = 'COMPONENT_AT_CR_BARREL_02', - hash = -1958983669, - model = 'w_at_cr_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MG_BARREL_01'] = { - id = 'COMPONENT_AT_MG_BARREL_01', - hash = -1018236364, - model = 'w_at_mg_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MG_BARREL_02'] = { - id = 'COMPONENT_AT_MG_BARREL_02', - hash = -1243457701, - model = 'w_at_mg_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SB_BARREL_01'] = { - id = 'COMPONENT_AT_SB_BARREL_01', - hash = -653246751, - model = 'w_at_sb_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SB_BARREL_02'] = { - id = 'COMPONENT_AT_SB_BARREL_02', - hash = -1520117877, - model = 'w_at_sb_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SR_BARREL_01'] = { - id = 'COMPONENT_AT_SR_BARREL_01', - hash = -1869205321, - model = 'w_at_sr_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SR_BARREL_02'] = { - id = 'COMPONENT_AT_SR_BARREL_02', - hash = 277524638, - model = 'w_at_sr_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO', - hash = -1860492113, - model = 'w_at_armk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_02', - hash = 937772107, - model = 'w_at_armk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_03', - hash = 1401650071, - model = 'w_at_armk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_04', - hash = 628662130, - model = 'w_at_armk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_05', - hash = -985047251, - model = 'w_at_armk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_06', - hash = -812944463, - model = 'w_at_armk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_07', - hash = -1447352303, - model = 'w_at_armk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_08', - hash = -60338860, - model = 'w_at_armk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_09', - hash = 2088750491, - model = 'w_at_armk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_10', - hash = -1513913454, - model = 'w_at_armk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01', - hash = -1179558480, - model = 'w_at_armk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO', - hash = 1272803094, - model = 'w_ar_carbineriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_02', - hash = 1080719624, - model = 'w_ar_carbineriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_03', - hash = 792221348, - model = 'w_ar_carbineriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_04', - hash = -452181427, - model = 'w_ar_carbineriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_05', - hash = -746774737, - model = 'w_ar_carbineriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_06', - hash = -2044296061, - model = 'w_ar_carbineriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_07', - hash = -199171978, - model = 'w_ar_carbineriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_08', - hash = -1428075016, - model = 'w_ar_carbineriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_09', - hash = -1735153315, - model = 'w_ar_carbineriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_10', - hash = 1796459838, - model = 'w_ar_carbineriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01', - hash = -631911105, - model = 'w_ar_carbineriflemk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO', - hash = 1249283253, - model = 'w_mg_combatmgmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_02'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_02', - hash = -857707587, - model = 'w_mg_combatmgmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_03'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_03', - hash = -1097543898, - model = 'w_mg_combatmgmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_04'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_04', - hash = 1980349969, - model = 'w_mg_combatmgmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_05'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_05', - hash = 1219453777, - model = 'w_mg_combatmgmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_06'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_06', - hash = -1853459190, - model = 'w_mg_combatmgmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_07'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_07', - hash = -2074781016, - model = 'w_mg_combatmgmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_08'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_08', - hash = 457967755, - model = 'w_mg_combatmgmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_09'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_09', - hash = 235171324, - model = 'w_mg_combatmgmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_10'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_10', - hash = 42685294, - model = 'w_mg_combatmgmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_IND_01', - hash = -687617715, - model = 'w_mg_combatmgmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO'] = { - id = 'COMPONENT_SMG_MK2_CAMO', - hash = -996700057, - model = 'w_at_smgmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_02'] = { - id = 'COMPONENT_SMG_MK2_CAMO_02', - hash = 940943685, - model = 'w_at_smgmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_03'] = { - id = 'COMPONENT_SMG_MK2_CAMO_03', - hash = 1263226800, - model = 'w_at_smgmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_04'] = { - id = 'COMPONENT_SMG_MK2_CAMO_04', - hash = -328035840, - model = 'w_at_smgmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_05'] = { - id = 'COMPONENT_SMG_MK2_CAMO_05', - hash = 1224100642, - model = 'w_at_smgmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_06'] = { - id = 'COMPONENT_SMG_MK2_CAMO_06', - hash = 899228776, - model = 'w_at_smgmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_07'] = { - id = 'COMPONENT_SMG_MK2_CAMO_07', - hash = 616006309, - model = 'w_at_smgmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_08'] = { - id = 'COMPONENT_SMG_MK2_CAMO_08', - hash = -1561952511, - model = 'w_at_smgmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_09'] = { - id = 'COMPONENT_SMG_MK2_CAMO_09', - hash = 572063080, - model = 'w_at_smgmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_10'] = { - id = 'COMPONENT_SMG_MK2_CAMO_10', - hash = 1170588613, - model = 'w_at_smgmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_SMG_MK2_CAMO_IND_01', - hash = 966612367, - model = 'w_at_smgmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_SLIDE', - hash = -1258515792, - model = 'W_PI_PistolMK2_Slide_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO', - hash = 1550611612, - model = 'w_pi_pistolmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_02_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_02_SLIDE', - hash = 438243936, - model = 'W_PI_PistolMK2_Slide_Camo2', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_02'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_02', - hash = 368550800, - model = 'w_pi_pistolmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_03_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_03_SLIDE', - hash = -455079056, - model = 'W_PI_PistolMK2_Slide_Camo3', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_03'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_03', - hash = -1769069349, - model = 'w_pi_pistolmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_04_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_04_SLIDE', - hash = 740920107, - model = 'W_PI_PistolMK2_Slide_Camo4', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_04'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_04', - hash = 24902297, - model = 'w_pi_pistolmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_05_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_05_SLIDE', - hash = -541616347, - model = 'W_PI_PistolMK2_Slide_Camo5', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_05'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_05', - hash = -228041614, - model = 'w_pi_pistolmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_06_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_06_SLIDE', - hash = 1809261196, - model = 'W_PI_PistolMK2_Slide_Camo6', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_06'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_06', - hash = -584961562, - model = 'w_pi_pistolmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_07_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_07_SLIDE', - hash = -1646538868, - model = 'W_PI_PistolMK2_Slide_Camo7', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_07'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_07', - hash = -1153175946, - model = 'w_pi_pistolmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_08_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_08_SLIDE', - hash = -1290164948, - model = 'W_PI_PistolMK2_Slide_Camo8', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_08'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_08', - hash = 1301287696, - model = 'w_pi_pistolmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_09_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_09_SLIDE', - hash = -964465134, - model = 'W_PI_PistolMK2_Slide_Camo9', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_09'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_09', - hash = 1597093459, - model = 'w_pi_pistolmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_10_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_10_SLIDE', - hash = 1135718771, - model = 'W_PI_PistolMK2_Slide_Camo10', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_10'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_10', - hash = 1769871776, - model = 'w_pi_pistolmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE', - hash = 1253942266, - model = 'W_PI_PistolMK2_Camo_Sl_Ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01', - hash = -1827882671, - model = 'w_pi_pistolmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO', - hash = -130843390, - model = 'w_at_heavysnipermk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_02'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_02', - hash = -977347227, - model = 'w_at_heavysnipermk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_03'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_03', - hash = -378461067, - model = 'w_at_heavysnipermk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_04'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_04', - hash = 329939175, - model = 'w_at_heavysnipermk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_05'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_05', - hash = 643374672, - model = 'w_at_heavysnipermk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_06'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_06', - hash = 807875052, - model = 'w_at_heavysnipermk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_07'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_07', - hash = -1401804168, - model = 'w_at_heavysnipermk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_08'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_08', - hash = -1096495395, - model = 'w_at_heavysnipermk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_09'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_09', - hash = -847811454, - model = 'w_at_heavysnipermk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_10'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_10', - hash = -1413108537, - model = 'w_at_heavysnipermk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01', - hash = 1815270123, - model = 'w_at_heavysnipermk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_PI_FLSH_02'] = { - id = 'COMPONENT_AT_PI_FLSH_02', - hash = 1140676955, - model = 'w_at_pi_flsh_2', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_AR_AFGRIP_02'] = { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MUZZLE_01'] = { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_02'] = { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_03'] = { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_04'] = { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_05'] = { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_06'] = { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_07'] = { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_08'] = { - id = 'COMPONENT_AT_MUZZLE_08', - hash = 1602080333, - model = 'w_at_muzzle_8', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_09'] = { - id = 'COMPONENT_AT_MUZZLE_09', - hash = 1764221345, - model = 'w_at_muzzle_9', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_COMP'] = { - id = 'COMPONENT_AT_PI_COMP', - hash = 568543123, - model = 'w_at_pi_comp_1', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_RAIL'] = { - id = 'COMPONENT_AT_PI_RAIL', - hash = -1898661008, - model = 'w_at_pi_rail_1', - gxtName = 'WCT_SCOPE_PI', - gxtDescription = 'WCD_SCOPE_PI', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_02_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_02_MK2', - hash = -944910075, - model = 'w_at_scope_macro_2', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2', - hash = -452809877, - model = 'w_at_scope_macro_2_mk2', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL_MK2'] = { - id = 'COMPONENT_AT_SCOPE_SMALL_MK2', - hash = 1060929921, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL_SMG_MK2'] = { - id = 'COMPONENT_AT_SCOPE_SMALL_SMG_MK2', - hash = 1038927834, - model = 'w_at_scope_small_mk2', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MEDIUM_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_LARGE_MK2'] = { - id = 'COMPONENT_AT_SCOPE_LARGE_MK2', - hash = -2101279869, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG2', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_NV'] = { - id = 'COMPONENT_AT_SCOPE_NV', - hash = -1233121104, - model = 'w_at_scope_nv', - gxtName = 'WCT_SCOPE_NV', - gxtDescription = 'WCD_SCOPE_NV', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_THERMAL'] = { - id = 'COMPONENT_AT_SCOPE_THERMAL', - hash = 776198721, - model = 'w_at_scope_nv', - gxtName = 'WCT_SCOPE_TH', - gxtDescription = 'WCD_SCOPE_TH', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SIGHTS'] = { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SIGHTS_SMG'] = { - id = 'COMPONENT_AT_SIGHTS_SMG', - hash = -1613015470, - model = 'w_at_sights_smg', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SR_SUPP_03'] = { - id = 'COMPONENT_AT_SR_SUPP_03', - hash = -1404903567, - model = 'w_at_sr_supp3', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_FLASHLIGHT_LIGHT'] = { - id = 'COMPONENT_FLASHLIGHT_LIGHT', - hash = -575194865, - model = 'w_me_flashlight_flash', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_FLAREGUN_CLIP_01'] = { - id = 'COMPONENT_FLAREGUN_CLIP_01', - hash = -1813398119, - model = 'w_pi_flaregun_mag1', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCT_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_CERAMICPISTOL_CLIP_01'] = { - id = 'COMPONENT_CERAMICPISTOL_CLIP_01', - hash = 1423184737, - model = 'W_PI_Ceramic_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_CERAMICPISTOL_CLIP_02'] = { - id = 'COMPONENT_CERAMICPISTOL_CLIP_02', - hash = -2122814295, - model = 'w_pi_sns_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 17 - }, - ['COMPONENT_CERAMICPISTOL_SUPP'] = { - id = 'COMPONENT_CERAMICPISTOL_SUPP', - hash = -1828202758, - model = 'W_PI_Ceramic_Supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_NAVYREVOLVER_CLIP_01'] = { - id = 'COMPONENT_NAVYREVOLVER_CLIP_01', - hash = -1738620313, - model = 'w_pi_wep2_gun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_NV_CLIP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_MACHINEPISTOL_CLIP_01'] = { - id = 'COMPONENT_MACHINEPISTOL_CLIP_01', - hash = 1198425599, - model = 'w_sb_compactsmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MCHP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_MACHINEPISTOL_CLIP_02'] = { - id = 'COMPONENT_MACHINEPISTOL_CLIP_02', - hash = -1188271751, - model = 'w_sb_compactsmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MCHP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_COMPACTRIFLE_CLIP_01'] = { - id = 'COMPONENT_COMPACTRIFLE_CLIP_01', - hash = 1363085923, - model = 'w_ar_assaultrifle_smg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CMPR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_COMPACTRIFLE_CLIP_02'] = { - id = 'COMPONENT_COMPACTRIFLE_CLIP_02', - hash = 1509923832, - model = 'w_ar_assaultrifle_smg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CMPR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_DBSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_DBSHOTGUN_CLIP_01', - hash = 703231006, - model = 'w_sg_doublebarrel_mag1', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 2 - }, - ['COMPONENT_COMBATPDW_CLIP_01'] = { - id = 'COMPONENT_COMBATPDW_CLIP_01', - hash = 1125642654, - model = 'W_SB_PDW_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_PDW_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_COMBATPDW_CLIP_02'] = { - id = 'COMPONENT_COMBATPDW_CLIP_02', - hash = 860508675, - model = 'W_SB_PDW_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_PDW_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_SNSPISTOL_CLIP_01'] = { - id = 'COMPONENT_SNSPISTOL_CLIP_01', - hash = -125817127, - model = 'w_pi_sns_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SNSP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_CLIP_02'] = { - id = 'COMPONENT_SNSPISTOL_CLIP_02', - hash = 2063610803, - model = 'w_pi_sns_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SNSP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_SNSPISTOL_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_SNSPISTOL_VARMOD_LOWRIDER', - hash = -2144080721, - model = 'w_pi_sns_pistol_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MARKSMANPISTOL_CLIP_01'] = { - id = 'COMPONENT_MARKSMANPISTOL_CLIP_01', - hash = -878820883, - model = 'W_PI_SingleShot_Shell', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_KNUCKLE_VARMOD_BASE'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_BASE', - hash = -213504205, - model = 'W_ME_Knuckle', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_PIMP'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_PIMP', - hash = -971770235, - model = 'W_ME_Knuckle_02', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_BALLAS'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_BALLAS', - hash = -287703709, - model = 'W_ME_Knuckle_BG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_DOLLAR'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_DOLLAR', - hash = 1351683121, - model = 'W_ME_Knuckle_DLR', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_DIAMOND'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_DIAMOND', - hash = -1755194916, - model = 'W_ME_Knuckle_DMD', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_HATE'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_HATE', - hash = 2112683568, - model = 'W_ME_Knuckle_HT', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_LOVE'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_LOVE', - hash = 1062111910, - model = 'W_ME_Knuckle_LV', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_PLAYER'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_PLAYER', - hash = 146278587, - model = 'W_ME_Knuckle_PC', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_KING'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_KING', - hash = -494162961, - model = 'W_ME_Knuckle_SLG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_VAGOS'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_VAGOS', - hash = 2062808965, - model = 'W_ME_Knuckle_VG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_HEAVYPISTOL_CLIP_01'] = { - id = 'COMPONENT_HEAVYPISTOL_CLIP_01', - hash = 222992026, - model = 'w_pi_heavypistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HPST_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 18 - }, - ['COMPONENT_HEAVYPISTOL_CLIP_02'] = { - id = 'COMPONENT_HEAVYPISTOL_CLIP_02', - hash = 1694090795, - model = 'w_pi_heavypistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_HPST_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 36 - }, - ['COMPONENT_SPECIALCARBINE_CLIP_01'] = { - id = 'COMPONENT_SPECIALCARBINE_CLIP_01', - hash = -959978111, - model = 'w_ar_specialcarbine_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SCRB_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SPECIALCARBINE_CLIP_02'] = { - id = 'COMPONENT_SPECIALCARBINE_CLIP_02', - hash = 2089537806, - model = 'w_ar_specialcarbine_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SCRB_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_BULLPUPRIFLE_CLIP_01'] = { - id = 'COMPONENT_BULLPUPRIFLE_CLIP_01', - hash = -979292288, - model = 'w_ar_bullpuprifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_BRIF_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_BULLPUPRIFLE_CLIP_02'] = { - id = 'COMPONENT_BULLPUPRIFLE_CLIP_02', - hash = -1284994289, - model = 'w_ar_bullpuprifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_BRIF_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_VINTAGEPISTOL_CLIP_01'] = { - id = 'COMPONENT_VINTAGEPISTOL_CLIP_01', - hash = 1168357051, - model = 'w_pi_vintage_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_VPST_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 7 - }, - ['COMPONENT_VINTAGEPISTOL_CLIP_02'] = { - id = 'COMPONENT_VINTAGEPISTOL_CLIP_02', - hash = 867832552, - model = 'w_pi_vintage_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_VPST_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 14 - }, - ['COMPONENT_FIREWORK_CLIP_01'] = { - id = 'COMPONENT_FIREWORK_CLIP_01', - hash = -454770035, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_MUSKET_CLIP_01'] = { - id = 'COMPONENT_MUSKET_CLIP_01', - hash = 1322387263, - model = 'P_CS_Joint_02', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM'] = { - id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM', - hash = 471997210, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRF', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_MARKSMANRIFLE_CLIP_01'] = { - id = 'COMPONENT_MARKSMANRIFLE_CLIP_01', - hash = -667205311, - model = 'w_sr_marksmanrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MKRF_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_MARKSMANRIFLE_CLIP_02'] = { - id = 'COMPONENT_MARKSMANRIFLE_CLIP_02', - hash = -855823675, - model = 'w_sr_marksmanrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MKRF_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_HEAVYSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_01', - hash = 844049759, - model = 'w_sg_heavyshotgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HVSG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_HEAVYSHOTGUN_CLIP_02'] = { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_02', - hash = -1759709443, - model = 'w_sg_heavyshotgun_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_HVSG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_GUSENBERG_CLIP_01'] = { - id = 'COMPONENT_GUSENBERG_CLIP_01', - hash = 484812453, - model = 'w_sb_gusenberg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_GSNB_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_GUSENBERG_CLIP_02'] = { - id = 'COMPONENT_GUSENBERG_CLIP_02', - hash = -355941776, - model = 'w_sb_gusenberg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_GSNB_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 50 - }, - ['COMPONENT_RAILGUN_CLIP_01'] = { - id = 'COMPONENT_RAILGUN_CLIP_01', - hash = 59044840, - model = 'w_ar_railgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_RLGN_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_HEAVYPISTOL_VARMOD_LUXE'] = { - id = 'COMPONENT_HEAVYPISTOL_VARMOD_LUXE', - hash = 2053798779, - model = 'W_PI_HeavyPistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER', - hash = 1929467122, - model = 'w_ar_specialcarbine_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_BULLPUPRIFLE_VARMOD_LOW'] = { - id = 'COMPONENT_BULLPUPRIFLE_VARMOD_LOW', - hash = -1470645128, - model = 'w_ar_bullpuprifle_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MARKSMANRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_MARKSMANRIFLE_VARMOD_LUXE', - hash = 371102273, - model = 'W_SR_MarksmanRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_REVOLVER_CLIP_01'] = { - id = 'COMPONENT_REVOLVER_CLIP_01', - hash = -377062173, - model = 'w_pi_revolver_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_VARMOD_BOSS'] = { - id = 'COMPONENT_REVOLVER_VARMOD_BOSS', - hash = 384708672, - model = 'w_pi_revolver_b', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_REVOLVER_VARMOD_GOON'] = { - id = 'COMPONENT_REVOLVER_VARMOD_GOON', - hash = -1802258419, - model = 'w_pi_revolver_g', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SWITCHBLADE_VARMOD_BASE'] = { - id = 'COMPONENT_SWITCHBLADE_VARMOD_BASE', - hash = -1858624256, - model = 'w_me_switchblade', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SWITCHBLADE_VARMOD_VAR1'] = { - id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR1', - hash = 1530822070, - model = 'w_me_switchblade_b', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SWITCHBLADE_VARMOD_VAR2'] = { - id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR2', - hash = -409758110, - model = 'w_me_switchblade_g', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_AUTOSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_AUTOSHOTGUN_CLIP_01', - hash = 169463950, - model = 'w_sg_sweeper_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = '', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 10 - }, - ['COMPONENT_COMPACTLAUNCHER_CLIP_01'] = { - id = 'COMPONENT_COMPACTLAUNCHER_CLIP_01', - hash = 1235472140, - model = 'w_lr_compactgl_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = '', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_MINISMG_CLIP_01'] = { - id = 'COMPONENT_MINISMG_CLIP_01', - hash = -2067221805, - model = 'w_sb_minismg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SCRP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_MINISMG_CLIP_02'] = { - id = 'COMPONENT_MINISMG_CLIP_02', - hash = -1820405577, - model = 'w_sb_minismg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SCRP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - } -} diff --git a/configs/server_config.lua b/configs/server_config.lua deleted file mode 100644 index 0487e03..0000000 --- a/configs/server_config.lua +++ /dev/null @@ -1,68 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -Config.OS = 'linux' -Config.DatabaseName = 'corev' - -------------------------- ---- Permission Groups --- -------------------------- -Config.PermissionGroups = { - 'superadmin' -} - -Config.ModeratorGroups = { - 'superadmin' -} - ---------------- ---- Wallets --- ---------------- -Config.Wallets = { - ['cash'] = 500, - ['bank'] = 2500, - ['crime'] = 0 -} - ------------------------- ---- Discord Webhooks --- ------------------------- -Config.Webhooks = { - ['connection'] = { - 'https://discordapp.com/api/webhooks/744092761455722497/en3QUnePwO_6z14kfk9HIdWMpXpyzu7GwJv1pW3dAckabTB7ZgUarJvKPFKmChNlIUWd' - }, - ['connection.disconnect'] = { - 'https://discordapp.com/api/webhooks/745233064266956880/7u9qFNQE09q1hReYfYcfQ5L-X3XvyJPHGoHnhIZn7jTM92NRaDGj-A8Jx1QGvyvCxLVD' - }, - ['execute'] = { - 'https://discordapp.com/api/webhooks/744228535115186296/9NKlvtxajH--ga52IoHHsXYdeeN4uXf1lkETrswYd3wlqyrRFn4XE6b043zGo8pPAjDi' - }, - ['player.job'] = { - 'https://discordapp.com/api/webhooks/754306754355003453/uznoR98VO4rLd60UrhrFreYL8bb6rSkVYaQnW-Fwm6KWn1vFI0qsHhKeem6Noa9F_niQ' - }, - ['player.job2'] = { - 'https://discordapp.com/api/webhooks/754306754355003453/uznoR98VO4rLd60UrhrFreYL8bb6rSkVYaQnW-Fwm6KWn1vFI0qsHhKeem6Noa9F_niQ' - }, - ['weapon'] = { - 'https://discordapp.com/api/webhooks/761168369659150356/tTRT7bmfBNQtW5zULMXb2Qv5SpdrRGus-SYMw5hsU68cre6-DSw1COHOICqek1-Tlbrn' - }, - ['weapon.transfer'] = { - 'https://discordapp.com/api/webhooks/761168517977735168/sB3LG5y6VLknusLsjINGeDpmjXr7Su23ibF7yi2cMPFvTEWHd3JGAOKvf8W9gocolotC' - }, - ['weapon.new'] = { - 'https://discordapp.com/api/webhooks/761168601080135721/RvuOwwfruS1Vrf4JsDhGjGvPObhpXfuOH1jNd0Hd9kQR2Y5n2sJU-4PG1xXFvU4KhXrS' - }, - ['weapon.delete'] = { - 'https://discordapp.com/api/webhooks/761168681362915328/Du1HjMHSbUb6u_uTla4mTDs1e9AgNK-AeCmq28T7eONfzQeIzHx6OUB2OEMumVTNZww-' - } -} - ---- When webhook don't exists, this webhook will be used -Config.FallbackWebhook = '' \ No newline at end of file diff --git a/corev/client/import.lua b/corev/client/import.lua new file mode 100644 index 0000000..317a875 --- /dev/null +++ b/corev/client/import.lua @@ -0,0 +1,587 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local assert = assert + +--- Cache global variables +local __global = assert(_G) +local __environment = assert(_ENV) +local type = assert(type) +local string = assert(string) +local rawget = assert(rawget) +local rawset = assert(rawset) +local tonumber = assert(tonumber) +local tostring = assert(tostring) +local encode = assert(json.encode) +local lower = assert(string.lower) +local sub = assert(string.sub) +local len = assert(string.len) +local gmatch = assert(string.gmatch) +local char = assert(string.char) +local byte = assert(string.byte) +local insert = assert(table.insert) +local randomseed = assert(math.randomseed) +local random = assert(math.random) +local floor = assert(math.floor) +local load = assert(load) +local pcall = assert(pcall) +local xpcall = assert(xpcall) +local pairs = assert(pairs) +local traceback = assert(debug.traceback) +local error = assert(error) +local vector3 = assert(vector3) +local vector2 = assert(vector2) +local CreateThread = assert(Citizen.CreateThread) +local Wait = assert(Citizen.Wait) + +--- FiveM cached global variables +local LoadResourceFile = assert(LoadResourceFile) +local GetResourceState = assert(GetResourceState) +local _TSE = assert(TriggerServerEvent) +local _RNE = assert(RegisterNetEvent) +local _AEH = assert(AddEventHandler) +local IsDuplicityVersion = assert(IsDuplicityVersion) +local GetCurrentResourceName = assert(GetCurrentResourceName) +local GetHashKey = assert(GetHashKey) +local HasModelLoaded = assert(HasModelLoaded) +local IsModelInCdimage = assert(IsModelInCdimage) +local RequestModel = assert(RequestModel) +local HasStreamedTextureDictLoaded = assert(HasStreamedTextureDictLoaded) +local RequestStreamedTextureDict = assert(RequestStreamedTextureDict) +local GetGameTimer = assert(GetGameTimer) + +--- Required resource variables +local isClient = not IsDuplicityVersion() +local currentResourceName = GetCurrentResourceName() +local INT32_MAX, INT64_MAX = 2147483648, 4294967296 + +--- Cahce FiveM globals +local exports = assert(exports) +local __exports = assert({}) + +--- Prevent this file from executing from wrong side +if (not isClient) then + error('You are trying to load a client file which is only allowed on the client side') + return +end + +--- Prevent loading from crashing +local function try(func, catch_func) + if (type(func) ~= 'function') then return end + if (type(catch_func) ~= 'function') then return end + + local ok, exp = pcall(func) + + if (not ok) then + catch_func(exp) + end +end + +local function load_export(_le, index) + CreateThread(function() + while GetResourceState(_le.r) ~= 'started' do Wait(0) end + + try(function() + if (currentResourceName ~= _le.r) then + __exports[index] = { self = assert(exports[_le.r]), func = nil } + __exports[index].func = assert(__exports[index].self[_le.f]) + else + __exports[index] = { self = nil, func = __global[_le.f] or __environment[_le.f] or function() return nil end } + end + end, function() + __exports[index] = { self = nil, func = function() end } + end) + end) +end + +--- Load those exports +local __loadExports = { + [1] = { r = 'cvf_config', f = '__c', s = false }, + [2] = { r = 'cvf_translations', f = '__t', s = false } +} + +--- Store global exports as local variable +for index, _le in pairs(__loadExports) do + try(function() + if (currentResourceName ~= _le.r) then + __exports[index] = { self = assert(exports[_le.r]), func = nil } + __exports[index].func = assert(__exports[index].self[_le.f]) + else + __exports[index] = { self = nil, func = __global[_le.f] or __environment[_le.f] or function() return nil end } + end + end, function() + __exports[index] = { self = nil, func = function() end } + + load_export(_le, index) + end) +end + +_AEH('onResourceStart', function(resourceName) + for index, _le in pairs(__loadExports) do + if (resourceName == _le.r) then + if (_le.s) then + try(function() + if (currentResourceName ~= _le.r) then + __exports[index] = { self = assert(exports[_le.r]), func = nil } + __exports[index].func = assert(__exports[index].self[_le.f]) + else + __exports[index] = { self = nil, func = __global[_le.f] or __environment[_le.f] or function() return nil end } + end + end, function() + __exports[index] = { self = nil, func = function() end } + + load_export(_le, index) + end) + + __loadExports[index].s = false + end + + return + end + end +end) + +_AEH('onResourceStop', function(resourceName) + for index, _le in pairs(__loadExports) do + if (resourceName == _le.r) then + __loadExports[index].s = true + __exports[index].self = nil + __exports[index].func = function() error(('Resource %s has been stopped'):format(resourceName)) end + end + end +end) + +--- Create CoreV class +---@class corev_client +local corev_client = setmetatable({ __class = 'corev_client' }, {}) + +---@class corev_client_callback +corev_client.callback = setmetatable({ __class = 'corev_client_callback' }, {}) +---@class corev_client_streaming +corev_client.streaming = setmetatable({ __class = 'corev_client_streaming' }, {}) + +--- Set default values for `corev-callback` class +corev_client.callback.requestId = 1 +corev_client.callback.callbacks = {} + +--- Return a value type of any CFX object +---@param value any Any value +---@return string Type of value +function corev_client:typeof(value) + if (value == nil) then return 'nil' end + + local rawType = type(value) or 'nil' + + if (rawType ~= 'table') then return rawType end + + local isFunction = rawget(value, '__cfx_functionReference') ~= nil or + rawget(value, '__cfx_async_retval') ~= nil + + if (isFunction) then return 'function' end + + local isSource = rawget(value, '__cfx_functionSource') ~= nil + + if (isSource) then return 'number' end + if (value.__class) then return value.__class end + if (value.__type) then return value.__type end + + return rawType +end + +--- Convert value to number +---@param value any Any value +---@return number A integer +function corev_client:toInt(value) + local rawType = self:typeof(value) + + if (rawType == 'nil') then return 0 end + if (rawType == 'number') then return value or 0 end + + return tonumber(value) or 0 +end + +--- Convert value to int32 +---@param value any Any value to int32 +---@return number Int32 value +function corev_client:maxInt32(value) + local input = self:toInt(value) + + if (input >= INT32_MAX) then + return input & (INT64_MAX - 1) + end + + return input +end + +--- Makes sure your input matches your type of defaultValue +---@param input any Any type of value you want to match with defaultValue +---@param defaultValue any Any default value when input don't match with defaultValue's type +---@return any DefaultValue or translated/transformed input +function corev_client:ensure(input, defaultValue) + if (defaultValue == nil) then + return nil + end + + local inputType = self:typeof(defaultValue) + + if (input == nil) then + return defaultValue + end + + local currentInputType = self:typeof(input) + + if (currentInputType == inputType) then + return input + end + + if (inputType == 'number') then + if (currentInputType == 'string') then return tonumber(input) or defaultValue end + if (currentInputType == 'boolean') then return input and 1 or 0 end + + return defaultValue + end + + if (inputType == 'string') then + if (currentInputType == 'number') then return tostring(input) or defaultValue end + if (currentInputType == 'boolean') then return input and 'yes' or 'no' end + if (currentInputType == 'table') then return encode(input) or defaultValue end + if (currentInputType == 'vector3') then return encode({input.x, input.y, input.z}) or defaultValue end + if (currentInputType == 'vector2') then return encode({input.x, input.y}) or defaultValue end + + return tostring(input) or defaultValue + end + + if (inputType == 'boolean') then + if (currentInputType == 'string') then + input = lower(input) + + if (input == 'true') then return true end + if (input == 'false') then return false end + if (input == '1') then return true end + if (input == '0') then return false end + if (input == 'yes') then return true end + if (input == 'no') then return false end + if (input == 'y') then return true end + if (input == 'n') then return false end + + return defaultValue + end + + if (currentInputType == 'number') then + if (input == 1) then return true end + if (input == 0) then return false end + + return defaultValue + end + + return defaultValue + end + + if (inputType == 'vector3') then + if (currentInputType == 'table') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + local _z = self:ensure(input.z, defaultValue.z) + + return vector3(_x, _y, _z) + end + + if (currentInputType == 'vector2') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + + return vector3(_x, _y, 0) + end + + if (currentInputType == 'number') then + return vector3(input, input, input) + end + + return defaultValue + end + + if (inputType == 'vector2') then + if (currentInputType == 'table') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + + return vector2(_x, _y) + end + + if (currentInputType == 'vector3') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + + return vector2(_x, _y) + end + + if (currentInputType == 'number') then + return vector2(input, input) + end + + return defaultValue + end + + return defaultValue +end + +--- Load or return cached configuration based on name +---@param name string Name of configuration to load +---@params ... string[] Filer results by key +---@return any|nil Returns `any` data from cached configuration or `nil` if not found +function corev_client:cfg(name, ...) + name = self:ensure(name, 'unknown') + + if (name == 'unknown') then return {} end + + if (__exports[1].self == nil) then + return __exports[1].func(name, ...) + else + return __exports[1].func(__exports[1].self, name, ...) + end +end + +--- Returns translation key founded or 'MISSING TRANSLATION' +---@params language string? (optional) Needs to be a two letter identifier, example: EN, DE, NL, BE, FR etc. +---@params module string? (optional) Register translation for a module, example: core +---@params key string Key of translation +---@return string Translation or 'MISSING TRANSLATION' +function corev_client:t(...) + if (__exports[2].self == nil) then + return __exports[2].func(...) + else + return __exports[2].func(__exports[2].self, ...) + end +end + +--- Own implementation of GetHashKey +--- https://gist.github.com/ThymonA/5266760e0fe302feceb19094b6bff458 +---@param name string Key to transform to hash +---@return number Generated hash +function corev_client:hashString(name) + name = corev_client:ensure(name, 'unknown') + + local length = len(name) + local hash = 0 + + for i = 1, length, 1 do + local c = byte(name, i, i) + + hash = hash + (c >= 65 and c <= 90 and (c + 32) or c) + hash = hash + (hash << 10) + hash = self:maxInt32(hash) + hash = hash ~ (hash >> 6) + end + + hash = hash + (hash << 3) + hash = self:maxInt32(hash) + hash = hash ~ (hash >> 11) + hash = hash + (hash << 15) + hash = self:maxInt32(hash) + + return floor(((hash + INT32_MAX) % INT64_MAX - INT32_MAX)) +end + +--- Checks if a string ends with given word +---@param str string String to search in +---@param word string Word to search for +---@return boolean `true` if word has been found, otherwise `false` +function corev_client:endswith(str, word) + str = self:ensure(str, '') + word = self:ensure(word, '') + + return sub(str, -#word) == word +end + +--- Replace a string that contains `this` to `that` +---@param str string String where to replace in +---@param this string Word that's need to be replaced +---@param that string Replace `this` whit given string +---@return string String where `this` has been replaced with `that` +function corev_client:replace(str, this, that) + local b, e = str:find(this, 1, true) + + if b == nil then + return str + else + return str:sub(1, b - 1) .. that .. self:replace(str:sub(e + 1), this, that) + end +end + +--- Split a string by given delim +---@param str string String that's need to be split +---@param delim string Split string by every given delim +---@return string[] List of strings, splitted at given delim +function corev_client:split(str, delim) + local t = {} + + for substr in gmatch(self:ensure(str, ''), "[^".. delim .. "]*") do + if substr ~= nil and len(substr) > 0 then + insert(t, substr) + end + end + + return t +end + +--- Trigger func by server +---@param name string Name of trigger +---@param callback function Trigger this function +function corev_client:onServerTrigger(name, callback) + name = corev_client:ensure(name, 'unknown') + callback = corev_client:ensure(callback, function() end) + + if (name == 'unknown') then return end + + _RNE(name) + _AEH(name, callback) +end + +--- Trigger func by client +---@param name string Name of trigger +---@param callback function Trigger this function +function corev_client:onClientTrigger(name, callback) + name = corev_client:ensure(name, 'unknown') + callback = corev_client:ensure(callback, function() end) + + if (name == 'unknown') then return end + + _AEH(name, callback) +end + +--- Trigger server callback +---@param name string Name of callback +---@param callback function Trigger this function on server return +function corev_client.callback:triggerCallback(name, callback, ...) + name = corev_client:ensure(name, 'unknown') + callback = corev_client:ensure(callback, function() end) + + if (name == 'unknown') then return end + + self.callbacks[self.requestId] = callback + + _TSE(('corev:%s:serverCallback'):format(currentResourceName), name, self.requestId, ...) + + if (self.requestId < 65535) then + self.requestId = self.requestId + 1 + else + self.requestId = 1 + end +end + +--- Load a model async and trigger cb when model has been loaded +---@param hash number|string Hash you want to load +---@param cb function When model is loaded, this function will be triggerd +function corev_client.streaming:requestModelAsync(hash, cb) + hash = corev_client:typeof(hash) == 'number' and hash or corev_client:ensure(hash, 'unknown') + cb = corev_client:ensure(cb, function() end) + + if (corev_client:typeof(hash) == 'string') then + if (hash == 'unknown') then return end + + hash = GetHashKey(hash) + end + + if (not HasModelLoaded(hash) and IsModelInCdimage(hash)) then + RequestModel(hash) + + repeat Wait(0) until HasModelLoaded(hash) == true + end + + cb() +end + +--- Load a texture dictonary async and trigger cb when dictonary has been loaded +---@param textureDictionary string Name of texture dictonary to load +---@param cb function When dictonary is loaded, this function will be triggerd +function corev_client.streaming:requestTextureAsync(textureDictionary, cb) + textureDictionary = corev_client:ensure(textureDictionary, 'unknown') + cb = corev_client:ensure(cb, function() end) + + if (textureDictionary == 'unknown') then return end + + if (HasStreamedTextureDictLoaded(textureDictionary)) then + cb() + return + end + + RequestStreamedTextureDict(textureDictionary, true) + + repeat Wait(0) until HasStreamedTextureDictLoaded(textureDictionary) == true + + cb() +end + +--- Results from server callback +corev_client:onServerTrigger(('corev:%s:serverCallback'):format(currentResourceName), function(requestId, ...) + requestId = corev_client:ensure(requestId, 0) + + if (requestId <= 0 or requestId > 65535) then return end + if (((corev_client.callback or {}).callbacks or {})[requestId] == nil) then return end + + corev_client.callback.callbacks[requestId](...) + corev_client.callback.callbacks[requestId] = nil +end) + +--- Returns stored resource name or call `GetCurrentResourceName` +---@return string Returns name of current resource +function corev_client:getCurrentResourceName() + if (self:typeof(currentResourceName) == 'string') then + return currentResourceName + end + + return GetCurrentResourceName() +end + +--- Will generate a random string based on given length +---@param length number Length the random string must be +---@param recurse boolean When `false`, GetGameTimer() will called as seed, otherwise keep current seed +---@return string Generated random string matching your length +function corev_client:getRandomString(length, recurse) + length = self:ensure(length, 16) + recurse = self:ensure(recurse, false) + + if (not recurse) then + randomseed(GetGameTimer()) + end + + if (length <= 0) then return string.empty end + + local number = random(48, 122) + + if (number > 57 and number < 65) then + return self:getRandomString(length, true) + elseif (number > 90 and number < 97) then + return self:getRandomString(length, true) + else + return self:getRandomString(length - 1, true) .. char(number) + end +end + +--- Register corev as global variable +_G.corev_client = corev_client + +---------------------------- +--- Modify global variables +---------------------------- +_G.string = string + +--- Checks if a string starts with given word +---@param self string String to search in +---@param word string Word to search for +---@return boolean `true` if word has been found, otherwise `false` +_G.string.startsWith = function(self, word) + word = corev_client:ensure(word, 'unknown') + + return self:sub(1, #word) == word +end + +--- Represent a empty string +_G.string.empty = '' \ No newline at end of file diff --git a/corev/client/main.lua b/corev/client/main.lua new file mode 100644 index 0000000..a4ac2bf --- /dev/null +++ b/corev/client/main.lua @@ -0,0 +1,15 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local assert = assert + +--- Cache global variables +---@type corev_client +local corev = assert(corev_client) \ No newline at end of file diff --git a/modules/[framework]/database/scripts/main.sql b/corev/corev.sql similarity index 50% rename from modules/[framework]/database/scripts/main.sql rename to corev/corev.sql index e47869f..183ea05 100644 --- a/modules/[framework]/database/scripts/main.sql +++ b/corev/corev.sql @@ -1,11 +1,12 @@ +CREATE DATABASE `corev` /*!40100 COLLATE 'utf8_general_ci' */; + +USE `corev`; + CREATE TABLE `migrations` ( - `id` INT(11) NOT NULL AUTO_INCREMENT, + `id` INT NOT NULL AUTO_INCREMENT, `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `resource` VARCHAR(100) NOT NULL, - `type` VARCHAR(100) NOT NULL, `name` VARCHAR(100) NOT NULL, - `version` VARCHAR(100) NOT NULL, - PRIMARY KEY (`id`), - INDEX `logs_date` (`date`) + PRIMARY KEY (`id`) ); \ No newline at end of file diff --git a/corev/fxmanifest.lua b/corev/fxmanifest.lua new file mode 100644 index 0000000..fb80909 --- /dev/null +++ b/corev/fxmanifest.lua @@ -0,0 +1,62 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +fx_version 'adamant' +game 'gta5' + +--- +--- Information about this resource +--- +name '[CVF] CoreV Framework' +version '1.0.0' +description 'Core resource of CoreV Framework' +author 'ThymonA' +contact 'contact@arens.io' +url 'https://git.arens.io/ThymonA/corev-framework/' + +--- +--- Load client files +--- +files { + 'translations/*.json' +} + +--- +--- Register all client files +--- +client_scripts { + 'client/import.lua', + 'client/main.lua' +} + +--- +--- Register all server files +--- +server_scripts { + 'server/import.lua', + 'server/common.lua', + 'server/main.lua' +} + +--- +--- Load translations +--- +translations { + 'translations/nl.json', + 'translations/en.json' +} + +--- +--- Load dependencies +--- +dependencies { + 'cvf_config', + 'cvf_translations' +} \ No newline at end of file diff --git a/corev/server/common.lua b/corev/server/common.lua new file mode 100644 index 0000000..3995068 --- /dev/null +++ b/corev/server/common.lua @@ -0,0 +1,27 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- + +--- Cache global variables +local assert = assert +---@type corev_server +local corev = assert(corev_server) +local print = assert(print) + +--- This event will be trigger when a player is connecting +corev.events:onPlayerConnect(function(player, done) + print(corev:t('player_connecting'):format(player.name)) + done() +end) + +--- This event will be triggerd when a player is disconnected +corev.events:onPlayerDisconnect(function(player) + print(corev:t('player_disconnect'):format(player.name)) +end) \ No newline at end of file diff --git a/corev/server/import.lua b/corev/server/import.lua new file mode 100644 index 0000000..04aef92 --- /dev/null +++ b/corev/server/import.lua @@ -0,0 +1,1170 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- +local assert = assert + +--- Cache global variables +local __global = assert(_G) +local __environment = assert(_ENV) +local type = assert(type) +local string = assert(string) +local rawget = assert(rawget) +local rawset = assert(rawset) +local tonumber = assert(tonumber) +local tostring = assert(tostring) +local encode = assert(json.encode) +local lower = assert(string.lower) +local sub = assert(string.sub) +local len = assert(string.len) +local gmatch = assert(string.gmatch) +local char = assert(string.char) +local byte = assert(string.byte) +local insert = assert(table.insert) +local modf = assert(math.modf) +local randomseed = assert(math.randomseed) +local random = assert(math.random) +local floor = assert(math.floor) +local clock = assert(os.clock) +local time = assert(os.time) +local date = assert(os.date) +local load = assert(load) +local pcall = assert(pcall) +local xpcall = assert(xpcall) +local pairs = assert(pairs) +local next = assert(next) +local traceback = assert(debug.traceback) +local error = assert(error) +local print = assert(print) +local vector3 = assert(vector3) +local vector2 = assert(vector2) +local pack = assert(table.pack) +local unpack = assert(table.unpack) +local CreateThread = assert(Citizen.CreateThread) +local Wait = assert(Citizen.Wait) + +--- FiveM cached global variables +local LoadResourceFile = assert(LoadResourceFile) +local GetResourceState = assert(GetResourceState) +local _TCE = assert(TriggerClientEvent) +local _RSE = assert(RegisterServerEvent) +local _AEH = assert(AddEventHandler) +local IsDuplicityVersion = assert(IsDuplicityVersion) +local GetCurrentResourceName = assert(GetCurrentResourceName) +local GetGameTimer = assert(GetGameTimer) + +--- Required resource variables +local isServer = IsDuplicityVersion() +local currentResourceName = GetCurrentResourceName() +local INT32_MAX, INT64_MAX = 2147483648, 4294967296 + +--- Cahce FiveM globals +local exports = assert(exports) +local __exports = assert({}) + +--- Prevent this file from executing from wrong side +if (not isServer) then + error('You are trying to load a server file which is only allowed on the server side') + return +end + +--- Prevent loading from crashing +local function try(func, catch_func) + if (type(func) ~= 'function') then return end + if (type(catch_func) ~= 'function') then return end + + local ok, exp = pcall(func) + + if (not ok) then + catch_func(exp) + end +end + +local function load_export(_le, index) + CreateThread(function() + while GetResourceState(_le.r) ~= 'started' do Wait(0) end + + try(function() + if (currentResourceName ~= _le.r) then + __exports[index] = { self = assert(exports[_le.r]), func = nil } + __exports[index].func = assert(__exports[index].self[_le.f]) + else + __exports[index] = { self = nil, func = __global[_le.f] or __environment[_le.f] or function() return nil end } + end + end, function() + __exports[index] = { self = nil, func = function() end } + end) + end) +end + +--- Load those exports +local __loadExports = { + [1] = { r = 'cvf_config', f = '__c', s = false }, + [2] = { r = 'cvf_translations', f = '__t', s = false }, + [3] = { r = 'mysql-async', f = 'is_ready', s = false }, + [4] = { r = 'mysql-async', f = 'mysql_insert', s = false }, + [5] = { r = 'mysql-async', f = 'mysql_fetch_scalar', s = false }, + [6] = { r = 'mysql-async', f = 'mysql_fetch_all', s = false }, + [7] = { r = 'mysql-async', f = 'mysql_execute', s = false }, + [8] = { r = 'cvf_jobs', f = '__a', s = false }, + [9] = { r = 'cvf_jobs', f = '__l', s = false }, + [10] = { r = 'cvf_events', f = '__add', s = false }, + [11] = { r = 'cvf_events', f = '__del', s = false }, + [12] = { r = 'cvf_identifier', f = '__g', s = false }, + [13] = { r = 'cvf_player', f = '__g', s = false }, + [14] = { r = 'cvf_commands', f = '__rc', s = false }, + [15] = { r = 'cvf_commands', f = '__rp', s = false } +} + +--- Store global exports as local variable +for index, _le in pairs(__loadExports) do + try(function() + if (currentResourceName ~= _le.r) then + __exports[index] = { self = assert(exports[_le.r]), func = nil } + __exports[index].func = assert(__exports[index].self[_le.f]) + else + __exports[index] = { self = nil, func = __global[_le.f] or __environment[_le.f] or function() return nil end } + end + end, function() + __exports[index] = { self = nil, func = function() end } + + load_export(_le, index) + end) +end + +_AEH('onResourceStart', function(resourceName) + for index, _le in pairs(__loadExports) do + if (resourceName == _le.r) then + if (_le.s) then + try(function() + if (currentResourceName ~= _le.r) then + __exports[index] = { self = assert(exports[_le.r]), func = nil } + __exports[index].func = assert(__exports[index].self[_le.f]) + else + __exports[index] = { self = nil, func = __global[_le.f] or __environment[_le.f] or function() return nil end } + end + end, function() + __exports[index] = { self = nil, func = function() end } + + load_export(_le, index) + end) + + __loadExports[index].s = false + end + + return + end + end +end) + +_AEH('onResourceStop', function(resourceName) + for index, _le in pairs(__loadExports) do + if (resourceName == _le.r) then + __loadExports[index].s = true + __exports[index].self = nil + __exports[index].func = function() error(('Resource %s has been stopped'):format(resourceName)) end + end + end +end) + +--- Create CoreV class +---@class corev_server +local corev_server = setmetatable({ __class = 'corev_server' }, {}) + +---@class corev_server_db +corev_server.db = setmetatable({ __class = 'corev_server_db' }, {}) +---@class corev_server_callback +corev_server.callback = setmetatable({ __class = 'corev_server_callback' }, {}) +---@class corev_server_jobs +corev_server.jobs = setmetatable({ __class = 'corev_server_jobs' }, {}) +---@class corev_server_events +corev_server.events = setmetatable({ __class = 'corev_server_events' }, {}) +---@class corev_server_classes +corev_server.classes = setmetatable({ __class = 'corev_server_classes' }, {}) + +--- Set default values for `corev-db` class +corev_server.db.ready = false +corev_server.db.hasMigrations = false + +--- Set default values for `corev-callback` class +corev_server.callback.callbacks = {} + +--- Tries to execute `func`, if any error occur, `catch_func` will be triggerd +---@param func function Function to execute +---@param catch_func function Fallback function when error occur +function corev_server:try(func, catch_func) + return try(func, catch_func) +end + +--- Return a value type of any CFX object +---@param value any Any value +---@return string Type of value +function corev_server:typeof(value) + if (value == nil) then return 'nil' end + + local rawType = type(value) or 'nil' + + if (rawType ~= 'table') then return rawType end + + local isFunction = rawget(value, '__cfx_functionReference') ~= nil or + rawget(value, '__cfx_async_retval') ~= nil + + if (isFunction) then return 'function' end + + local isSource = rawget(value, '__cfx_functionSource') ~= nil + + if (isSource) then return 'number' end + if (value.__class) then return value.__class end + if (value.__type) then return value.__type end + + return rawType +end + +--- Convert value to number +---@param value any Any value +---@return number A integer +function corev_server:toInt(value) + local rawType = self:typeof(value) + + if (rawType == 'nil') then return 0 end + if (rawType == 'number') then return value or 0 end + + return tonumber(value) or 0 +end + +--- Convert value to int32 +---@param value any Any value to int32 +---@return number Int32 value +function corev_server:maxInt32(value) + local input = self:toInt(value) + + if (input >= INT32_MAX) then + return input & (INT64_MAX - 1) + end + + return input +end + +--- Makes sure your input matches your type of defaultValue +---@param input any Any type of value you want to match with defaultValue +---@param defaultValue any Any default value when input don't match with defaultValue's type +---@return any DefaultValue or translated/transformed input +function corev_server:ensure(input, defaultValue) + if (defaultValue == nil) then + return nil + end + + local inputType = self:typeof(defaultValue) + + if (input == nil) then + return defaultValue + end + + local currentInputType = self:typeof(input) + + if (currentInputType == inputType) then + return input + end + + if (inputType == 'number') then + if (currentInputType == 'string') then return tonumber(input) or defaultValue end + if (currentInputType == 'boolean') then return input and 1 or 0 end + + return defaultValue + end + + if (inputType == 'string') then + if (currentInputType == 'number') then return tostring(input) or defaultValue end + if (currentInputType == 'boolean') then return input and 'yes' or 'no' end + if (currentInputType == 'table') then return encode(input) or defaultValue end + if (currentInputType == 'vector3') then return encode({input.x, input.y, input.z}) or defaultValue end + if (currentInputType == 'vector2') then return encode({input.x, input.y}) or defaultValue end + + return tostring(input) or defaultValue + end + + if (inputType == 'boolean') then + if (currentInputType == 'string') then + input = lower(input) + + if (input == 'true') then return true end + if (input == 'false') then return false end + if (input == '1') then return true end + if (input == '0') then return false end + if (input == 'yes') then return true end + if (input == 'no') then return false end + if (input == 'y') then return true end + if (input == 'n') then return false end + + return defaultValue + end + + if (currentInputType == 'number') then + if (input == 1) then return true end + if (input == 0) then return false end + + return defaultValue + end + + return defaultValue + end + + if (inputType == 'vector3') then + if (currentInputType == 'table') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + local _z = self:ensure(input.z, defaultValue.z) + + return vector3(_x, _y, _z) + end + + if (currentInputType == 'vector2') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + + return vector3(_x, _y, 0) + end + + if (currentInputType == 'number') then + return vector3(input, input, input) + end + + return defaultValue + end + + if (inputType == 'vector2') then + if (currentInputType == 'table') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + + return vector2(_x, _y) + end + + if (currentInputType == 'vector3') then + local _x = self:ensure(input.x, defaultValue.x) + local _y = self:ensure(input.y, defaultValue.y) + + return vector2(_x, _y) + end + + if (currentInputType == 'number') then + return vector2(input, input) + end + + return defaultValue + end + + return defaultValue +end + +--- Load or return cached configuration based on name +---@param name string Name of configuration to load +---@params ... string[] Filer results by key +---@return any|nil Returns `any` data from cached configuration or `nil` if not found +function corev_server:cfg(name, ...) + name = self:ensure(name, 'unknown') + + if (name == 'unknown') then return {} end + + if (__exports[1].self == nil) then + return __exports[1].func(name, ...) + else + return __exports[1].func(__exports[1].self, name, ...) + end +end + +--- Returns translation key founded or 'MISSING TRANSLATION' +---@params language string? (optional) Needs to be a two letter identifier, example: EN, DE, NL, BE, FR etc. +---@params module string? (optional) Register translation for a module, example: core +---@params key string Key of translation +---@return string Translation or 'MISSING TRANSLATION' +function corev_server:t(...) + if (__exports[2].self == nil) then + return __exports[2].func(...) + else + return __exports[2].func(__exports[2].self, ...) + end +end + +--- Checks if a string ends with given word +---@param str string String to search in +---@param word string Word to search for +---@return boolean `true` if word has been found, otherwise `false` +function corev_server:endswith(str, word) + str = self:ensure(str, '') + word = self:ensure(word, '') + + return sub(str, -#word) == word +end + +--- Replace a string that contains `this` to `that` +---@param str string String where to replace in +---@param this string Word that's need to be replaced +---@param that string Replace `this` whit given string +---@return string String where `this` has been replaced with `that` +function corev_server:replace(str, this, that) + local b, e = str:find(this, 1, true) + + if b == nil then + return str + else + return str:sub(1, b - 1) .. that .. self:replace(str:sub(e + 1), this, that) + end +end + +--- Split a string by given delim +---@param str string String that's need to be split +---@param delim string Split string by every given delim +---@return string[] List of strings, splitted at given delim +function corev_server:split(str, delim) + local t = {} + + for substr in gmatch(self:ensure(str, ''), "[^".. delim .. "]*") do + if substr ~= nil and len(substr) > 0 then + insert(t, substr) + end + end + + return t +end + +--- Trigger callback when database is ready +---@param callback function Callback function to execute +function corev_server.db:dbReady(callback) + callback = corev_server:ensure(callback, function() end) + + CreateThread(function() + while GetResourceState('mysql-async') ~= 'started' do Wait(0) end + while not __exports[3].func(__exports[3].self) do Wait(0) end + + callback() + end) +end + +--- Update ready state when database is ready +corev_server.db:dbReady(function() + corev_server.db.ready = true +end) + +--- Escape database params +---@param params table Parameters to escape +---@return table Safe parameters +function corev_server.db:safeParameters(params) + params = corev_server:ensure(params, {}) + + if (next(params) == nil) then + return {[''] = ''} + end + + return params +end + +--- Execute async insert +---@param query string Query to execute +---@param params table Parameters to execute +---@param callback function Callback function to execute +function corev_server.db:insertAsync(query, params, callback) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + callback = corev_server:ensure(callback, function() end) + + if (query == 'unknown') then return end + + params = self:safeParameters(params) + + if (self.hasMigrations) then + repeat Wait(0) until self.hasMigrations == false + end + + if (not self.ready) then + corev_server.db:dbReady(function() + __exports[4].func(__exports[4].self, query, params, callback) + end) + else + __exports[4].func(__exports[4].self, query, params, callback) + end +end + +--- Returns first column of first row +---@param query string Query to execute +---@param params table Parameters to execute +---@param callback function Callback function to execute +function corev_server.db:fetchScalarAsync(query, params, callback) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + callback = corev_server:ensure(callback, function() end) + + if (query == 'unknown') then return end + + params = self:safeParameters(params) + + if (self.hasMigrations) then + repeat Wait(0) until self.hasMigrations == false + end + + if (not self.ready) then + corev_server.db:dbReady(function() + __exports[5].func(__exports[5].self, query, params, callback) + end) + else + __exports[5].func(__exports[5].self, query, params, callback) + end +end + +--- Fetch all results from database query +---@param query string Query to execute +---@param params table Parameters to execute +---@param callback function Callback function to execute +function corev_server.db:fetchAllAsync(query, params, callback) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + callback = corev_server:ensure(callback, function() end) + + if (query == 'unknown') then return end + + params = self:safeParameters(params) + + if (self.hasMigrations) then + repeat Wait(0) until self.hasMigrations == false + end + + if (not self.ready) then + corev_server.db:dbReady(function() + __exports[6].func(__exports[6].self, query, params, callback) + end) + else + __exports[6].func(__exports[6].self, query, params, callback) + end +end + +--- Execute a query on database +---@param query string Query to execute +---@param params table Parameters to execute +---@param callback function Callback function to execute +function corev_server.db:executeAsync(query, params, callback) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + callback = corev_server:ensure(callback, function() end) + + if (query == 'unknown') then return end + + params = self:safeParameters(params) + + if (self.hasMigrations) then + repeat Wait(0) until self.hasMigrations == false + end + + if (not self.ready) then + corev_server.db:dbReady(function() + __exports[7].func(__exports[7].self, query, params, callback) + end) + else + __exports[7].func(__exports[7].self, query, params, callback) + end +end + +--- Execute async insert +---@param query string Query to execute +---@param params table Parameters to execute +---@return any Returns results from database +function corev_server.db:insert(query, params) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + + if (query == 'unknown') then return nil end + + local res, finished = nil, false + + self:insertAsync(query, params, function(result) + res = result + finished = true + end) + + repeat Wait(0) until finished == true + + return res +end + +--- Returns first column of first row +---@param query string Query to execute +---@param params table Parameters to execute +---@return any Returns results from database +function corev_server.db:fetchScalar(query, params) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + + if (query == 'unknown') then return nil end + + local res, finished = nil, false + + self:fetchScalarAsync(query, params, function(result) + res = result + finished = true + end) + + repeat Wait(0) until finished == true + + return res +end + +--- Fetch all results from database query +---@param query string Query to execute +---@param params table Parameters to execute +---@return any Returns results from database +function corev_server.db:fetchAll(query, params) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + + if (query == 'unknown') then return nil end + + local res, finished = nil, false + + self:fetchAllAsync(query, params, function(result) + res = result + finished = true + end) + + repeat Wait(0) until finished == true + + return res +end + +--- Execute a query on database +---@param query string Query to execute +---@param params table Parameters to execute +---@return any Returns results from database +function corev_server.db:execute(query, params) + query = corev_server:ensure(query, 'unknown') + params = corev_server:ensure(params, {}) + + if (query == 'unknown') then return nil end + + local res, finished = nil, false + + self:executeAsync(query, params, function(result) + res = result + finished = true + end) + + repeat Wait(0) until finished == true + + return res +end + +--- This function returns `true` if resource and migration exists in database +---@param resourceName string Name of resource +---@param sqlVersion number SQL version number +---@return boolean `true` if exsits, otherwise `false` +function corev_server.db:migrationExists(resourceName, sqlVersion) + resourceName = corev_server:ensure(resourceName, 'unknown') + sqlVersion = corev_server:ensure(sqlVersion, 0) + + if (resourceName == 'unknown') then return false end + + local res, finished = nil, false + + __exports[6].func(__exports[6].self, 'SELECT `id` FROM `migrations` WHERE `resource` = @resource AND `name` = @name LIMIT 1', { + ['@resource'] = resourceName, + ['@name'] = ('%s.lua'):format(sqlVersion) + }, function(foundedResults) + foundedResults = corev_server:ensure(foundedResults, {}) + + res = #foundedResults > 0 + finished = true + end) + + repeat Wait(0) until finished == true + + return res +end + +--- Apply migrations +function corev_server.db:migrationDependent() + self.hasMigrations = true + + --- Execute this function when database is ready + self:dbReady(function() + local sql_index, migrations, finished = 0, nil, false + + __exports[6].func(__exports[6].self, 'SELECT * FROM `migrations` WHERE `resource` = @resource', { + ['@resource'] = currentResourceName + }, function(result) + migrations = corev_server:ensure(result, {}) + finished = true + end) + + repeat Wait(0) until finished == true + + while (self.hasMigrations) do + local lua_file = ('%s.lua'):format(sql_index) + local lua_exists = false + + for _, migration in pairs(migrations) do + local db_name = corev_server:ensure(migration.name, 'unknown') + + if (db_name == lua_file) then + lua_exists = true + end + end + + local rawLuaMigration = LoadResourceFile(currentResourceName, ('migrations/%s'):format(lua_file)) + + if (rawLuaMigration) then + if (not lua_exists) then + local migrationFinished = false + + local migrationFunc, _ = load(rawLuaMigration, ('@%s/migration/%s'):format(currentResourceName, lua_file)) + + if (migrationFunc) then + local migrationLoaded, migrationData = xpcall(migrationFunc, traceback) + + if (migrationLoaded) then + local migrationDependencies = corev_server:ensure(migrationData.dependencies, {}) + + for dependencyResource, sqlVersion in pairs(migrationDependencies) do + dependencyResource = corev_server:ensure(dependencyResource, 'unknown') + sqlVersion = corev_server:ensure(sqlVersion, 0) + + if (dependencyResource == 'unknown') then + print(corev_server:t('core', 'database_migration_not_loaded'):format(currentResourceName)) + return + end + + while GetResourceState(dependencyResource) ~= 'started' do Wait(0) end + while not self:migrationExists(dependencyResource, sqlVersion) do Wait(500) end + end + + local migrationSql = corev_server:ensure(migrationData.sql, 'unknown') + + if (migrationSql == 'unknown') then + print(corev_server:t('core', 'database_migration_not_loaded'):format(currentResourceName)) + return + end + + __exports[7].func(__exports[7].self, migrationSql, {}, function() + __exports[6].func(__exports[6].self, 'INSERT INTO `migrations` (`resource`, `name`) VALUES (@resource, @name)', { + ['@resource'] = currentResourceName, + ['@name'] = lua_file + }, function() + migrationFinished = true + end) + end) + else + print(corev_server:t('core', 'database_migration_not_loaded'):format(currentResourceName)) + end + else + print(corev_server:t('core', 'database_migration_not_loaded'):format(currentResourceName)) + end + + repeat Wait(0) until migrationFinished == true + end + else + self.hasMigrations = false + end + + sql_index = sql_index + 1 + + Wait(0) + end + + print(corev_server:t('core', 'database_migration'):format(currentResourceName)) + end) +end + +--- This function returns if a table exists or not +---@param tableName string Name of table +---@return boolean `true` if table exists, otherwise `false` +function corev_server.db:tableExists(tableName) + tableName = corev_server:ensure(tableName, 'unknown') + + if (tableName == 'unknown') then + return false + end + + local result = self:fetchScalar('SHOW TABLES LIKE @tableName', { + ['@tableName'] = tableName + }) + + result = lower(corev_server:ensure(result, 'unknown')) + + return lower(tableName) == result +end + +--- Trigger func by server +---@param name string Name of trigger +---@param callback function Trigger this function +function corev_server:onServerTrigger(name, callback) + name = self:ensure(name, 'unknown') + callback = self:ensure(callback, function() end) + + if (name == 'unknown') then return end + + _AEH(name, callback) +end + +--- Trigger func by client +---@param name string Name of trigger +---@param callback function Trigger this function +function corev_server:onClientTrigger(name, callback) + name = self:ensure(name, 'unknown') + callback = self:ensure(callback, function() end) + + if (name == 'unknown') then return end + + _RSE(name) + _AEH(name, callback) +end + +--- Register server callback +---@param name string Name of callback +---@param callback function Trigger this function on server return +function corev_server.callback:register(name, callback) + name = corev_server:ensure(name, 'unknown') + callback = corev_server:ensure(callback, function() end) + + if (name == 'unknown') then return end + + corev_server.callback.callbacks[name] = callback +end + +--- Trigger callback when callback exists +---@param name string Name of callback +---@param source number Player Source ID +---@param callback function Trigger this function on callback trigger +function corev_server.callback:triggerCallback(name, source, callback, ...) + name = corev_server:ensure(name, 'unknown') + source = corev_server:ensure(source, -1) + callback = corev_server:ensure(callback, function() end) + + if (name == 'unknown' or source == -1) then return end + + if ((self.callbacks or {})[name] ~= nil) then + local vPlayer = corev_server:getPlayer(source) + + self.callbacks[name](vPlayer, callback, ...) + end +end + +--- Returns `job` bases on given `name` +---@param input string|number Name of job or ID of job +---@return job|nil Returns a `job` class or nil +function corev_server.jobs:getJob(input) + if (__exports[9].self == nil) then + return __exports[9].func(input) + else + return __exports[9].func(__exports[9].self, input) + end +end + +--- Creates a job object based on given `name` and `grades` +---@param name string Name of job, example: unemployed, police etc. (lowercase) +---@param label string Label of job, this will be displayed as name of given job +---@param grades table List of grades as table, every grade needs to be a table as well +---@return job|nil Returns a `job` class if found or created, otherwise `nil` +function corev_server.jobs:addJob(name, label, grades) + name = corev_server:ensure(name, 'unknown') + label = corev_server:ensure(label, 'Unknown') + grades = corev_server:ensure(grades, {}) + + if (name == 'unknown') then + return nil + end + + name = lower(name) + + if (__exports[8].self == nil) then + return __exports[8].func(name, label, grades) + else + return __exports[8].func(__exports[8].self, name, label, grades) + end +end + +--- Register a new on event +---@param event string Name of event +function corev_server.events:register(event, ...) + event = corev_server:ensure(event, 'unknown') + + if (event == 'unknown') then return end + + if (__exports[10].self == nil) then + return __exports[10].func(event, ...) + else + return __exports[10].func(__exports[10].self, event, ...) + end +end + +--- Unregister events based on event and/or names +---@param event string Name of event +function corev_server.events:unregister(event, ...) + event = corev_server:ensure(event, 'unknown') + + if (event == 'unknown') then return end + + if (__exports[11].self == nil) then + return __exports[11].func(event, ...) + else + return __exports[11].func(__exports[11].self, event, ...) + end +end + +--- Register a function as `playerConnecting` +---@param func function Execute this function when player is connecting +function corev_server.events:onPlayerConnect(func) + func = corev_server:ensure(func, function(_, done) done() end) + + self:register('playerConnecting', func) +end + +--- Register a function as `playerDropped` +---@param func function Execute this function when player is disconnected +function corev_server.events:onPlayerDisconnect(func) + func = corev_server:ensure(func, function(_, done) done() end) + + self:register('playerDropped', func) +end + +--- Returns stored resource name or call `GetCurrentResourceName` +---@return string Returns name of current resource +function corev_server:getCurrentResourceName() + if (self:typeof(currentResourceName) == 'string') then + return currentResourceName + end + + return GetCurrentResourceName() +end + +--- Returns a `player` class with the latest identifiers +---@param input string|number Any identifier or Player source +---@return player|nil Returns a `player` class if found, otherwise nil +function corev_server:getPlayerIdentifiers(input) + input = corev_server:typeof(input) == 'number' and input or corev_server:ensure(input, 'unknown') + + if (self:typeof(input) == 'string' and input == 'unknown') then return nil end + + if (__exports[12].self == nil) then + return __exports[12].func(input) + else + return __exports[12].func(__exports[12].self, input) + end +end + +--- Returns a `vPlayer` class based on given input +---@param input string|number Player identifier or Player source +---@return vPlayer|nil Founded/Generated `vPlayer` class or nil +function corev_server:getPlayer(input) + input = corev_server:typeof(input) == 'number' and input or corev_server:ensure(input, 'unknown') + + if (self:typeof(input) == 'string' and input == 'unknown') then return nil end + + if (__exports[13].self == nil) then + return __exports[13].func(input) + else + return __exports[13].func(__exports[13].self, input) + end +end + +--- Register a command +---@param name string|table Name of command to execute +---@param groups string|table Group(s) allowed to execute this command +---@param callback function Execute this function when player is allowed +function corev_server:registerCommand(name, groups, callback) + name = self:ensure(name, 'unknown') + groups = self:typeof(groups) == 'table' and groups or corev_server:ensure(groups, 'superadmin') + callback = self:ensure(callback, function() end) + + if (__exports[14].self == nil) then + return __exports[14].func(name, groups, callback) + else + return __exports[14].func(__exports[14].self, name, groups, callback) + end +end + +--- Create a parser for generated command +---@param name string Name of command +---@param parseInfo table Information about parser +function corev_server:registerParser(name, parseInfo) + name = self:ensure(name, 'unknown') + parseInfo = self:ensure(parseInfo, {}) + + if (__exports[15].self == nil) then + return __exports[15].func(name, parseInfo) + else + return __exports[15].func(__exports[15].self, name, parseInfo) + end +end + +--- Own implementation of GetHashKey +--- https://gist.github.com/ThymonA/5266760e0fe302feceb19094b6bff458 +---@param name string Key to transform to hash +---@return number Generated hash +function corev_server:hashString(name) + name = corev_server:ensure(name, 'unknown') + + local length = len(name) + local hash = 0 + + for i = 1, length, 1 do + local c = byte(name, i, i) + + hash = hash + (c >= 65 and c <= 90 and (c + 32) or c) + hash = hash + (hash << 10) + hash = self:maxInt32(hash) + hash = hash ~ (hash >> 6) + end + + hash = hash + (hash << 3) + hash = self:maxInt32(hash) + hash = hash ~ (hash >> 11) + hash = hash + (hash << 15) + hash = self:maxInt32(hash) + + return floor(((hash + INT32_MAX) % INT64_MAX - INT32_MAX)) +end + +--- Returns current time in milliseconds +---@return number Time in milliseconds +function corev_server:getTimeInMilliseconds() + local currentMilliseconds + local _, b = modf(clock()) + + if (b == 0) then + currentMilliseconds = 0 + else + currentMilliseconds = tonumber(tostring(b):sub(3,5)) + end + + local currentLocalTime = time(date('*t')) + + currentLocalTime = currentLocalTime * 1000 + currentLocalTime = currentLocalTime + currentMilliseconds + + return currentLocalTime +end + +function corev_server:getCurrentTime() + local _, b = modf(clock()) + + if (b == 0) then + b = '000' + else + b = tostring(b):sub(3,5) + end + + return date('%Y-%m-%d %H:%M:%S.', time()) .. b +end + +--- Will generate a random string based on given length +---@param length number Length the random string must be +---@param recurse boolean When `false`, GetGameTimer() will called as seed, otherwise keep current seed +---@return string Generated random string matching your length +function corev_server:getRandomString(length, recurse) + length = self:ensure(length, 16) + recurse = self:ensure(recurse, false) + + if (not recurse) then + randomseed(GetGameTimer()) + end + + if (length <= 0) then return string.empty end + + local number = random(48, 122) + + if (number > 57 and number < 65) then + return self:getRandomString(length, true) + elseif (number > 90 and number < 97) then + return self:getRandomString(length, true) + else + return self:getRandomString(length - 1, true) .. char(number) + end +end + +--- This function will return player's primary identifier or nil +---@param input string|number Any identifier or Player source +---@return string|nil Founded primary identifier or nil +function corev_server:getPrimaryIdentifier(input) + local player = self:getPlayerIdentifiers(input) + + if (player == nil) then return nil end + + return player.identifier +end + +--- Create a `player` class object +---@param source number|nil Player Source +---@param name string Name of player +---@param identifiers table List of identifiers +---@param identifier string Primary Identifier +---@return player New `player` class +function corev_server.classes:createPlayerClass(source, name, identifiers, identifier) + --- Create a `player` class + ---@class player + local player = setmetatable({ __class = 'player' }, {}) + + player.source = source + player.name = name + player.identifiers = identifiers + player.identifier = identifier + + return player +end + +--- Trigger event when client is requesting callback +corev_server:onClientTrigger(('corev:%s:serverCallback'):format(currentResourceName), function(name, requestId, ...) + name = corev_server:ensure(name, 'unknown') + requestId = corev_server:ensure(requestId, 0) + + local playerId = corev_server:ensure(source, -1) + + if (playerId == -1) then return end + if (name == 'unknown') then return end + if (requestId <= 0 or requestId > 65535) then return end + if (((corev_server.callback or {}).callbacks or {})[name] == nil) then return end + + local params = pack(...) + + CreateThread(function() + corev_server.callback:triggerCallback(name, playerId, function(...) + _TCE(('corev:%s:serverCallback'):format(currentResourceName), playerId, requestId, ...) + end, unpack(params)) + end) +end) + +--- Prevent users from joining the server while database is updating +corev_server.events:onPlayerConnect(function(_, done, presentCard) + presentCard:setTitle(corev_server:t('core', 'checking_server'), false) + presentCard:setDescription(corev_server:t('core', 'check_for_database_updates')) + + if (corev_server.db.hasMigrations) then + done(corev_server:t('core', 'database_is_updating'):format(currentResourceName)) + return + end + + done() +end) + +--- Register corev as global variable +_G.corev_server = corev_server + +---------------------------- +--- Modify global variables +---------------------------- +_G.string = string + +--- Checks if a string starts with given word +---@param self string String to search in +---@param word string Word to search for +---@return boolean `true` if word has been found, otherwise `false` +_G.string.startsWith = function(self, word) + word = corev_server:ensure(word, 'unknown') + + return self:sub(1, #word) == word +end + +--- Represent a empty string +_G.string.empty = '' \ No newline at end of file diff --git a/corev/server/main.lua b/corev/server/main.lua new file mode 100644 index 0000000..3b5aa27 --- /dev/null +++ b/corev/server/main.lua @@ -0,0 +1,10 @@ +----------------------- [ CoreV ] ----------------------- +-- GitLab: https://git.arens.io/ThymonA/corev-framework/ +-- GitHub: https://github.com/ThymonA/CoreV-Framework/ +-- License: GNU General Public License v3.0 +-- https://choosealicense.com/licenses/gpl-3.0/ +-- Author: Thymon Arens +-- Name: CoreV +-- Version: 1.0.0 +-- Description: Custom FiveM Framework +----------------------- [ CoreV ] ----------------------- \ No newline at end of file diff --git a/corev/translations/en.json b/corev/translations/en.json new file mode 100644 index 0000000..eb7d9d4 --- /dev/null +++ b/corev/translations/en.json @@ -0,0 +1,120 @@ +{ + "language": "en", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "empty_function_error": "Your function is empty or isn't a function.", + "no_description": "No description specified", + "corev_loading": "Framework is starting, please wait....", + "corev_ready": "-------\nCoreV framework has been loaded...\n-------", + "database_migration": "^2[^7CoreV^2] ^7Database ^2updated ^7for resource: ^2%s^7", + "database_migration_not_loaded": "^1[^7CoreV^1] ^1Cannot update ^7 database for resource: ^1%s^7", + "database_is_updating": "[CoreV] Framework is updating `%s`, please reconnect or try again later.", + "check_for_database_updates": "[CoreV] We check if server is not updating...", + "checking_server": "Checking server status", + "player_connecting": "^2[^7CoreV^2] ^7Player ^2'^7%s^2' ^7is connecting to the server", + "player_disconnect": "^1[^7CoreV^1] ^7Player ^1'^7%s^1' ^7has left the server", + "weapon_dagger": "Antique Cavalry Dagger", + "weapon_bat": "Baseball Bat", + "weapon_bottle": "Broken Bottle", + "weapon_crowbar": "Crowbar", + "weapon_unarmed": "Fist", + "weapon_flashlight": "Flashlight", + "weapon_golfclub": "Golf Club", + "weapon_hammer": "Hammer", + "weapon_hatchet": "Hatchet", + "weapon_knuckle": "Brass Knuckles", + "weapon_knife": "Knife", + "weapon_machete": "Machete", + "weapon_switchblade": "Switchblade", + "weapon_nightstick": "Nightstick", + "weapon_wrench": "Pipe Wrench", + "weapon_battleaxe": "Battle Axe", + "weapon_poolcue": "Pool Cue", + "weapon_stone_hatchet": "Stone Hatchet", + "weapon_pistol": "Pistol", + "weapon_pistol_mk2": "Pistol Mk II", + "weapon_combatpistol": "Combat Pistol", + "weapon_appistol": "AP Pistol", + "weapon_stungun": "Stun Gun", + "weapon_pistol50": "Pistol .50", + "weapon_snspistol": "SNS Pistol", + "weapon_snspistol_mk2": "SNS Pistol Mk II", + "weapon_heavypistol": "Heavy Pistol", + "weapon_vintagepistol": "Vintage Pistol", + "weapon_flaregun": "Flare Gun", + "weapon_marksmanpistol": "Marksman Pistol", + "weapon_revolver": "Heavy Revolver", + "weapon_revolver_mk2": "Heavy Revolver Mk II", + "weapon_doubleaction": "Double Action Revolver", + "weapon_raypistol": "Up-n-Atomizer", + "weapon_ceramicpistol": "Ceramic Pistol", + "weapon_navyrevolver": "Navy Revolver", + "weapon_microsmg": "Micro SMG", + "weapon_smg": "SMG", + "weapon_smg_mk2": "SMG Mk II", + "weapon_assaultsmg": "Assault SMG", + "weapon_combatpdw": "Combat PDW", + "weapon_machinepistol": "Machine Pistol", + "weapon_minismg": "Mini SMG", + "weapon_raycarbine": "Unholy Hellbringer", + "weapon_pumpshotgun": "Pump Shotgun", + "weapon_pumpshotgun_mk2": "Pump Shotgun Mk II", + "weapon_sawnoffshotgun": "Sawed-Off Shotgun", + "weapon_assaultshotgun": "Assault Shotgun", + "weapon_bullpupshotgun": "Bullpup Shotgun", + "weapon_musket": "Musket", + "weapon_heavyshotgun": "Heavy Shotgun", + "weapon_dbshotgun": "Double Barrel Shotgun", + "weapon_autoshotgun": "Sweeper Shotgun", + "weapon_assaultrifle": "Assault Rifle", + "weapon_assaultrifle_mk2": "Assault Rifle Mk II", + "weapon_carbinerifle": "Carbine Rifle", + "weapon_carbinerifle_mk2": "Carbine Rifle Mk II", + "weapon_advancedrifle": "Advanced Rifle", + "weapon_specialcarbine": "Special Carbine", + "weapon_specialcarbine_mk2": "Special Carbine Mk II", + "weapon_bullpuprifle": "Bullpup Rifle", + "weapon_bullpuprifle_mk2": "Bullpup Rifle Mk II", + "weapon_compactrifle": "Compact Rifle", + "weapon_mg": "MG", + "weapon_combatmg": "Combat MG", + "weapon_combatmg_mk2": "Combat MG Mk II", + "weapon_gusenberg": "Gusenberg Sweeper", + "weapon_sniperrifle": "Sniper Rifle", + "weapon_heavysniper": "Heavy Sniper", + "weapon_heavysniper_mk2": "Heavy Sniper Mk II", + "weapon_marksmanrifle": "Marksman Rifle", + "weapon_marksmanrifle_mk2": "Marksman Rifle Mk II", + "weapon_rpg": "RPG", + "weapon_grenadelauncher": "Grenade Launcher", + "weapon_grenadelauncher_smoke": "Grenade Launcher Smoke", + "weapon_minigun": "Minigun", + "weapon_firework": "Firework Launcher", + "weapon_railgun": "Railgun", + "weapon_hominglauncher": "Homing Launcher", + "weapon_compactlauncher": "Compact Grenade Launcher", + "weapon_rayminigun": "Widowmaker", + "weapon_grenade": "Grenade", + "weapon_bzgas": "BZ Gas", + "weapon_molotov": "Molotov Cocktail", + "weapon_stickybomb": "Sticky Bomb", + "weapon_proxmine": "Proximity Mines", + "weapon_snowball": "Snowballs", + "weapon_pipebomb": "Pipe Bombs", + "weapon_ball": "Baseball", + "weapon_smokegrenade": "Tear Gas", + "weapon_flare": "Flare", + "weapon_petrolcan": "Jerry Can", + "gadget_parachute": "Parachute", + "weapon_fireextinguisher": "Fire Extinguisher", + "weapon_hazardcan": "Hazardous Jerry Can" + } +} \ No newline at end of file diff --git a/corev/translations/nl.json b/corev/translations/nl.json new file mode 100644 index 0000000..0d9dcee --- /dev/null +++ b/corev/translations/nl.json @@ -0,0 +1,120 @@ +{ + "language": "nl", + "translators": [ + { + "name": "ThymonA", + "emails": ["contact@arens.io", "contact@thymonarens.nl", "me@tigodev.com"], + "github": "https://github.com/ThymonA", + "gitlab": "https://git.arens.io/ThymonA/", + "website": "https://git.arens.io/ThymonA/" + } + ], + "translations": { + "empty_function_error": "Uw opgegeven functie is leeg of komt niet overeen met een functie.", + "no_description": "Geen beschrijving opgegeven", + "corev_loading": "Framework is bezig met opstarten, even geduld a.u.b....", + "corev_ready": "-------\nCoreV framework is geladen...\n-------", + "database_migration": "^2[^7CoreV^2] ^7Database is ^2bijgewerkt ^7voor resource: ^2%s^7", + "database_migration_not_loaded": "^1[^7CoreV^1] ^7Kan database ^1niet bijwereken ^7voor resource: ^1%s^7", + "database_is_updating": "[CoreV] Framework is bezig met update van `%s`, probeer a.u.b. opnieuw te joinen", + "check_for_database_updates": "[CoreV] Wij controleren of server niet aan het update is...", + "checking_server": "Status van server controleren", + "player_connecting": "^2[^7CoreV^2] ^7Speler ^2'^7%s^2' ^7is aan het verbinden met de server", + "player_disconnect": "^1[^7CoreV^1] ^7Speler ^1'^7%s^1' ^7heeft de server verlaten", + "weapon_dagger": "Antique Cavalry Dagger", + "weapon_bat": "Baseball Bat", + "weapon_bottle": "Broken Bottle", + "weapon_crowbar": "Crowbar", + "weapon_unarmed": "Fist", + "weapon_flashlight": "Flashlight", + "weapon_golfclub": "Golf Club", + "weapon_hammer": "Hammer", + "weapon_hatchet": "Hatchet", + "weapon_knuckle": "Brass Knuckles", + "weapon_knife": "Knife", + "weapon_machete": "Machete", + "weapon_switchblade": "Switchblade", + "weapon_nightstick": "Nightstick", + "weapon_wrench": "Pipe Wrench", + "weapon_battleaxe": "Battle Axe", + "weapon_poolcue": "Pool Cue", + "weapon_stone_hatchet": "Stone Hatchet", + "weapon_pistol": "Pistol", + "weapon_pistol_mk2": "Pistol Mk II", + "weapon_combatpistol": "Combat Pistol", + "weapon_appistol": "AP Pistol", + "weapon_stungun": "Stun Gun", + "weapon_pistol50": "Pistol .50", + "weapon_snspistol": "SNS Pistol", + "weapon_snspistol_mk2": "SNS Pistol Mk II", + "weapon_heavypistol": "Heavy Pistol", + "weapon_vintagepistol": "Vintage Pistol", + "weapon_flaregun": "Flare Gun", + "weapon_marksmanpistol": "Marksman Pistol", + "weapon_revolver": "Heavy Revolver", + "weapon_revolver_mk2": "Heavy Revolver Mk II", + "weapon_doubleaction": "Double Action Revolver", + "weapon_raypistol": "Up-n-Atomizer", + "weapon_ceramicpistol": "Ceramic Pistol", + "weapon_navyrevolver": "Navy Revolver", + "weapon_microsmg": "Micro SMG", + "weapon_smg": "SMG", + "weapon_smg_mk2": "SMG Mk II", + "weapon_assaultsmg": "Assault SMG", + "weapon_combatpdw": "Combat PDW", + "weapon_machinepistol": "Machine Pistol", + "weapon_minismg": "Mini SMG", + "weapon_raycarbine": "Unholy Hellbringer", + "weapon_pumpshotgun": "Pump Shotgun", + "weapon_pumpshotgun_mk2": "Pump Shotgun Mk II", + "weapon_sawnoffshotgun": "Sawed-Off Shotgun", + "weapon_assaultshotgun": "Assault Shotgun", + "weapon_bullpupshotgun": "Bullpup Shotgun", + "weapon_musket": "Musket", + "weapon_heavyshotgun": "Heavy Shotgun", + "weapon_dbshotgun": "Double Barrel Shotgun", + "weapon_autoshotgun": "Sweeper Shotgun", + "weapon_assaultrifle": "Assault Rifle", + "weapon_assaultrifle_mk2": "Assault Rifle Mk II", + "weapon_carbinerifle": "Carbine Rifle", + "weapon_carbinerifle_mk2": "Carbine Rifle Mk II", + "weapon_advancedrifle": "Advanced Rifle", + "weapon_specialcarbine": "Special Carbine", + "weapon_specialcarbine_mk2": "Special Carbine Mk II", + "weapon_bullpuprifle": "Bullpup Rifle", + "weapon_bullpuprifle_mk2": "Bullpup Rifle Mk II", + "weapon_compactrifle": "Compact Rifle", + "weapon_mg": "MG", + "weapon_combatmg": "Combat MG", + "weapon_combatmg_mk2": "Combat MG Mk II", + "weapon_gusenberg": "Gusenberg Sweeper", + "weapon_sniperrifle": "Sniper Rifle", + "weapon_heavysniper": "Heavy Sniper", + "weapon_heavysniper_mk2": "Heavy Sniper Mk II", + "weapon_marksmanrifle": "Marksman Rifle", + "weapon_marksmanrifle_mk2": "Marksman Rifle Mk II", + "weapon_rpg": "RPG", + "weapon_grenadelauncher": "Grenade Launcher", + "weapon_grenadelauncher_smoke": "Grenade Launcher Smoke", + "weapon_minigun": "Minigun", + "weapon_firework": "Firework Launcher", + "weapon_railgun": "Railgun", + "weapon_hominglauncher": "Homing Launcher", + "weapon_compactlauncher": "Compact Grenade Launcher", + "weapon_rayminigun": "Widowmaker", + "weapon_grenade": "Grenade", + "weapon_bzgas": "BZ Gas", + "weapon_molotov": "Molotov Cocktail", + "weapon_stickybomb": "Sticky Bomb", + "weapon_proxmine": "Proximity Mines", + "weapon_snowball": "Snowballs", + "weapon_pipebomb": "Pipe Bombs", + "weapon_ball": "Baseball", + "weapon_smokegrenade": "Tear Gas", + "weapon_flare": "Flare", + "weapon_petrolcan": "Jerry Can", + "gadget_parachute": "Parachute", + "weapon_fireextinguisher": "Fire Extinguisher", + "weapon_hazardcan": "Hazardous Jerry Can" + } +} \ No newline at end of file diff --git a/debug/external_resources/client/.gitkeep b/debug/external_resources/client/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/external_resources/server/.gitkeep b/debug/external_resources/server/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/internal_modules/.gitkeep b/debug/internal_modules/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/internal_modules/client/.gitkeep b/debug/internal_modules/client/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/internal_modules/server/.gitkeep b/debug/internal_modules/server/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/internal_resources/.gitkeep b/debug/internal_resources/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/internal_resources/client/.gitkeep b/debug/internal_resources/client/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/debug/internal_resources/server/.gitkeep b/debug/internal_resources/server/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/fxmanifest.lua b/fxmanifest.lua deleted file mode 100644 index c42a27f..0000000 --- a/fxmanifest.lua +++ /dev/null @@ -1,177 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- ---- ---- Default information about supported games and versions ---- -fx_version 'adamant' -game 'gta5' - ---- ---- Information about this resource (Custom Framework) ---- -name 'CoreV' -version '1.0.0' -description 'Custom FiveM Framework' -author 'ThymonA' -contact 'contact@arens.io' -url 'https://git.arens.io/ThymonA/corev-framework/' - - ---- ---- Default FiveM server_scripts ---- -server_scripts { - 'vendors/regex.lua', - 'vendors/class.lua', - 'vendors/async.lua', - 'vendors/mustache.lua', - 'vendors/hashlist.lua', - - 'configs/shared_config.lua', - 'configs/others/brands_config.lua', - 'configs/others/vehicle_config.lua', - 'configs/others/weapon_ammo_config.lua', - 'configs/others/weapon_category_config.lua', - 'configs/others/weapon_component_config.lua', - 'configs/others/weapon_config.lua', - 'configs/server_config.lua', - - 'libs/common.lua', - 'libs/framework/functions.lua', - 'libs/modules/cache.lua', - 'libs/modules/error.lua', - 'libs/framework/events.lua', - 'libs/framework/modules.lua', - 'libs/enums/*.lua', - - 'server/libs/callbacks.lua', - 'server/libs/resources.lua', - 'server/libs/compiler.lua', - - 'server/functions.lua', - 'server/main.lua' -} - ---- ---- These files will later be placed in `corev_client` resource manifest as `client_scripts` ---- -corevclients { - 'vendors/regex.lua', - 'vendors/class.lua', - 'vendors/entityiter.lua', - 'vendors/mustache.lua', - 'vendors/hashlist.lua', - - 'configs/shared_config.lua', - 'configs/others/brands_config.lua', - 'configs/others/vehicle_config.lua', - 'configs/others/weapon_ammo_config.lua', - 'configs/others/weapon_category_config.lua', - 'configs/others/weapon_component_config.lua', - 'configs/others/weapon_config.lua', - 'configs/client_config.lua', - - 'libs/common.lua', - 'libs/framework/functions.lua', - 'libs/modules/cache.lua', - 'libs/modules/error.lua', - 'libs/framework/events.lua', - 'libs/framework/modules.lua', - 'libs/enums/markers.lua', - 'libs/enums/resource.lua', - 'libs/enums/vehicle.lua', - - 'client/libs/callbacks.lua', - 'client/libs/resources.lua', - - 'client/main.lua' -} - ---- ---- These files will later be placed in `corev_client` resource manifest as `files` ---- -corevfiles { - 'modules/**/module.json', - 'modules/**/client/**/*.lua', - 'modules/**/langs/**/*.json', - 'modules/**/client/**/client_*.lua', - 'modules/**/html/**/*', - 'modules/**/html/**/*.png', - 'modules/**/html/**/*.jpg', - 'modules/**/html/**/*.html', - 'modules/**/html/**/*.js', - 'modules/**/html/**/*.css', - 'resources/**/module.json', - 'resources/**/client/**/*.lua', - 'resources/**/langs/**/*.json', - 'resources/**/client/**/client_*.lua', - 'resources/**/html/**/*', - 'resources/**/html/**/*.png', - 'resources/**/html/**/*.jpg', - 'resources/**/html/**/*.html', - 'resources/**/html/**/*.js', - 'resources/**/html/**/*.css', - 'hud/**/*.css', - 'hud/**/*.png', - 'hud/**/*.js', - 'hud/**/*.woff', - 'hud/**/*.woff2', - 'hud/ui.html', - 'hud/assets/css/*.css', - 'hud/assets/images/*.png', - 'hud/assets/js/*.js', - 'langs/*.json' -} - ---- ---- These files will later be placed in `corev_client` resource manifest as `ui_page` ---- -corevuipage 'hud/ui.html' - ---- ---- All modules with priority over other modules, load it first in the specified order, ---- modules not listed will be loaded after this list in a random order. ---- -corevmodules { - 'spawnmanager', - 'keybinds', - 'nui', - 'controls', - 'database', - 'identifiers', - 'logs', - 'commands', - 'wallets', - 'jobs', - 'players', - 'items', - 'weapons', - 'streaming', - 'markers', - 'game', - 'menus', - 'utils', - 'chat', - 'raycast', - 'wheels', - 'els', - 'locks' -} - ---- ---- All resources with priority over other resources, load it first in the specified order, ---- resources not listed will be loaded after this list in a random order. ---- -corevresources { - 'parking', - 'vehicleinteraction', - 'jobs' -} \ No newline at end of file diff --git a/hud/assets/css/all.css b/hud/assets/css/all.css deleted file mode 100644 index 605183d..0000000 --- a/hud/assets/css/all.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * Font Awesome Pro 5.8.1 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license (Commercial License) - */ -.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-abacus:before{content:"\f640"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acorn:before{content:"\f6ae"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-alarm-clock:before{content:"\f34e"}.fa-algolia:before{content:"\f36c"}.fa-alicorn:before{content:"\f6b0"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-analytics:before{content:"\f643"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angel:before{content:"\f779"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-crate:before{content:"\f6b1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-alt-down:before{content:"\f354"}.fa-arrow-alt-from-bottom:before{content:"\f346"}.fa-arrow-alt-from-left:before{content:"\f347"}.fa-arrow-alt-from-right:before{content:"\f348"}.fa-arrow-alt-from-top:before{content:"\f349"}.fa-arrow-alt-left:before{content:"\f355"}.fa-arrow-alt-right:before{content:"\f356"}.fa-arrow-alt-square-down:before{content:"\f350"}.fa-arrow-alt-square-left:before{content:"\f351"}.fa-arrow-alt-square-right:before{content:"\f352"}.fa-arrow-alt-square-up:before{content:"\f353"}.fa-arrow-alt-to-bottom:before{content:"\f34a"}.fa-arrow-alt-to-left:before{content:"\f34b"}.fa-arrow-alt-to-right:before{content:"\f34c"}.fa-arrow-alt-to-top:before{content:"\f34d"}.fa-arrow-alt-up:before{content:"\f357"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-from-bottom:before{content:"\f342"}.fa-arrow-from-left:before{content:"\f343"}.fa-arrow-from-right:before{content:"\f344"}.fa-arrow-from-top:before{content:"\f345"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-square-down:before{content:"\f339"}.fa-arrow-square-left:before{content:"\f33a"}.fa-arrow-square-right:before{content:"\f33b"}.fa-arrow-square-up:before{content:"\f33c"}.fa-arrow-to-bottom:before{content:"\f33d"}.fa-arrow-to-left:before{content:"\f33e"}.fa-arrow-to-right:before{content:"\f340"}.fa-arrow-to-top:before{content:"\f341"}.fa-arrow-up:before{content:"\f062"}.fa-arrows:before{content:"\f047"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-arrows-h:before{content:"\f07e"}.fa-arrows-v:before{content:"\f07d"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-atom-alt:before{content:"\f5d3"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-axe:before{content:"\f6b2"}.fa-axe-battle:before{content:"\f6b3"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backpack:before{content:"\f5d4"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-badge:before{content:"\f335"}.fa-badge-check:before{content:"\f336"}.fa-badge-dollar:before{content:"\f645"}.fa-badge-percent:before{content:"\f646"}.fa-badger-honey:before{content:"\f6b4"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ball-pile:before{content:"\f77e"}.fa-ballot:before{content:"\f732"}.fa-ballot-check:before{content:"\f733"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-barcode-alt:before{content:"\f463"}.fa-barcode-read:before{content:"\f464"}.fa-barcode-scan:before{content:"\f465"}.fa-bars:before{content:"\f0c9"}.fa-baseball:before{content:"\f432"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-basketball-hoop:before{content:"\f435"}.fa-bat:before{content:"\f6b5"}.fa-bath:before{content:"\f2cd"}.fa-battery-bolt:before{content:"\f376"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-slash:before{content:"\f377"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-school:before{content:"\f5d5"}.fa-bell-school-slash:before{content:"\f5d6"}.fa-bell-slash:before{content:"\f1f6"}.fa-bells:before{content:"\f77f"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blanket:before{content:"\f498"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bone-break:before{content:"\f5d8"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-alt:before{content:"\f5d9"}.fa-book-dead:before{content:"\f6b7"}.fa-book-heart:before{content:"\f499"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-book-spells:before{content:"\f6b8"}.fa-book-user:before{content:"\f7e7"}.fa-bookmark:before{content:"\f02e"}.fa-books:before{content:"\f5db"}.fa-books-medical:before{content:"\f7e8"}.fa-boot:before{content:"\f782"}.fa-booth-curtain:before{content:"\f734"}.fa-bootstrap:before{content:"\f836"}.fa-bow-arrow:before{content:"\f6b9"}.fa-bowling-ball:before{content:"\f436"}.fa-bowling-pins:before{content:"\f437"}.fa-box:before{content:"\f466"}.fa-box-alt:before{content:"\f49a"}.fa-box-ballot:before{content:"\f735"}.fa-box-check:before{content:"\f467"}.fa-box-fragile:before{content:"\f49b"}.fa-box-full:before{content:"\f49c"}.fa-box-heart:before{content:"\f49d"}.fa-box-open:before{content:"\f49e"}.fa-box-up:before{content:"\f49f"}.fa-box-usd:before{content:"\f4a0"}.fa-boxes:before{content:"\f468"}.fa-boxes-alt:before{content:"\f4a1"}.fa-boxing-glove:before{content:"\f438"}.fa-brackets:before{content:"\f7e9"}.fa-brackets-curly:before{content:"\f7ea"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-loaf:before{content:"\f7eb"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-browser:before{content:"\f37e"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-bullseye-arrow:before{content:"\f648"}.fa-bullseye-pointer:before{content:"\f649"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-burrito:before{content:"\f7ed"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-bus-school:before{content:"\f5dd"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-cabinet-filing:before{content:"\f64b"}.fa-calculator:before{content:"\f1ec"}.fa-calculator-alt:before{content:"\f64c"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-edit:before{content:"\f333"}.fa-calendar-exclamation:before{content:"\f334"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-star:before{content:"\f736"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-alt:before{content:"\f332"}.fa-camera-retro:before{content:"\f083"}.fa-campfire:before{content:"\f6ba"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candle-holder:before{content:"\f6bc"}.fa-candy-cane:before{content:"\f786"}.fa-candy-corn:before{content:"\f6bd"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-bump:before{content:"\f5e0"}.fa-car-crash:before{content:"\f5e1"}.fa-car-garage:before{content:"\f5e2"}.fa-car-mechanic:before{content:"\f5e3"}.fa-car-side:before{content:"\f5e4"}.fa-car-tilt:before{content:"\f5e5"}.fa-car-wash:before{content:"\f5e6"}.fa-caret-circle-down:before{content:"\f32d"}.fa-caret-circle-left:before{content:"\f32e"}.fa-caret-circle-right:before{content:"\f330"}.fa-caret-circle-up:before{content:"\f331"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cauldron:before{content:"\f6bf"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chair-office:before{content:"\f6c1"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-line-down:before{content:"\f64d"}.fa-chart-network:before{content:"\f78a"}.fa-chart-pie:before{content:"\f200"}.fa-chart-pie-alt:before{content:"\f64e"}.fa-chart-scatter:before{content:"\f7ee"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-cheese-swiss:before{content:"\f7f0"}.fa-cheeseburger:before{content:"\f7f1"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-bishop-alt:before{content:"\f43b"}.fa-chess-board:before{content:"\f43c"}.fa-chess-clock:before{content:"\f43d"}.fa-chess-clock-alt:before{content:"\f43e"}.fa-chess-king:before{content:"\f43f"}.fa-chess-king-alt:before{content:"\f440"}.fa-chess-knight:before{content:"\f441"}.fa-chess-knight-alt:before{content:"\f442"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-pawn-alt:before{content:"\f444"}.fa-chess-queen:before{content:"\f445"}.fa-chess-queen-alt:before{content:"\f446"}.fa-chess-rook:before{content:"\f447"}.fa-chess-rook-alt:before{content:"\f448"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-double-down:before{content:"\f322"}.fa-chevron-double-left:before{content:"\f323"}.fa-chevron-double-right:before{content:"\f324"}.fa-chevron-double-up:before{content:"\f325"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-square-down:before{content:"\f329"}.fa-chevron-square-left:before{content:"\f32a"}.fa-chevron-square-right:before{content:"\f32b"}.fa-chevron-square-up:before{content:"\f32c"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chimney:before{content:"\f78b"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-claw-marks:before{content:"\f6c2"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-list-check:before{content:"\f737"}.fa-clipboard-prescription:before{content:"\f5e8"}.fa-clipboard-user:before{content:"\f7f3"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-drizzle:before{content:"\f738"}.fa-cloud-hail:before{content:"\f739"}.fa-cloud-hail-mixed:before{content:"\f73a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-rainbow:before{content:"\f73e"}.fa-cloud-showers:before{content:"\f73f"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sleet:before{content:"\f741"}.fa-cloud-snow:before{content:"\f742"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-clouds:before{content:"\f744"}.fa-clouds-moon:before{content:"\f745"}.fa-clouds-sun:before{content:"\f746"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-club:before{content:"\f327"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-merge:before{content:"\f387"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-coffee-togo:before{content:"\f6c5"}.fa-coffin:before{content:"\f6c6"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-alt-check:before{content:"\f4a2"}.fa-comment-alt-dollar:before{content:"\f650"}.fa-comment-alt-dots:before{content:"\f4a3"}.fa-comment-alt-edit:before{content:"\f4a4"}.fa-comment-alt-exclamation:before{content:"\f4a5"}.fa-comment-alt-lines:before{content:"\f4a6"}.fa-comment-alt-medical:before{content:"\f7f4"}.fa-comment-alt-minus:before{content:"\f4a7"}.fa-comment-alt-plus:before{content:"\f4a8"}.fa-comment-alt-slash:before{content:"\f4a9"}.fa-comment-alt-smile:before{content:"\f4aa"}.fa-comment-alt-times:before{content:"\f4ab"}.fa-comment-check:before{content:"\f4ac"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-edit:before{content:"\f4ae"}.fa-comment-exclamation:before{content:"\f4af"}.fa-comment-lines:before{content:"\f4b0"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-minus:before{content:"\f4b1"}.fa-comment-plus:before{content:"\f4b2"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-smile:before{content:"\f4b4"}.fa-comment-times:before{content:"\f4b5"}.fa-comments:before{content:"\f086"}.fa-comments-alt:before{content:"\f4b6"}.fa-comments-alt-dollar:before{content:"\f652"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-slash:before{content:"\f5e9"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-compress-wide:before{content:"\f326"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-container-storage:before{content:"\f4b7"}.fa-contao:before{content:"\f26d"}.fa-conveyor-belt:before{content:"\f46e"}.fa-conveyor-belt-alt:before{content:"\f46f"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-corn:before{content:"\f6c7"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-credit-card-blank:before{content:"\f389"}.fa-credit-card-front:before{content:"\f38a"}.fa-cricket:before{content:"\f449"}.fa-critical-role:before{content:"\f6c9"}.fa-croissant:before{content:"\f7f6"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-crutches:before{content:"\f7f8"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-curling:before{content:"\f44a"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dagger:before{content:"\f6cb"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-debug:before{content:"\f7f9"}.fa-deer:before{content:"\f78e"}.fa-deer-rudolph:before{content:"\f78f"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-desktop-alt:before{content:"\f390"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dewpoint:before{content:"\f748"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diamond:before{content:"\f219"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d10:before{content:"\f6cd"}.fa-dice-d12:before{content:"\f6ce"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d4:before{content:"\f6d0"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-d8:before{content:"\f6d2"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-diploma:before{content:"\f5ea"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-do-not-enter:before{content:"\f5ec"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dog-leashed:before{content:"\f6d4"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-empty:before{content:"\f473"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dolly-flatbed-alt:before{content:"\f475"}.fa-dolly-flatbed-empty:before{content:"\f476"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-circle:before{content:"\f5ed"}.fa-draw-polygon:before{content:"\f5ee"}.fa-draw-square:before{content:"\f5ef"}.fa-dreidel:before{content:"\f792"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick:before{content:"\f6d6"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-duck:before{content:"\f6d8"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-ear:before{content:"\f5f0"}.fa-ear-muffs:before{content:"\f795"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-eclipse:before{content:"\f749"}.fa-eclipse-alt:before{content:"\f74a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-egg-fried:before{content:"\f7fc"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-elephant:before{content:"\f6da"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-h-alt:before{content:"\f39b"}.fa-ellipsis-v:before{content:"\f142"}.fa-ellipsis-v-alt:before{content:"\f39c"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-empty-set:before{content:"\f656"}.fa-engine-warning:before{content:"\f5f2"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-dollar:before{content:"\f657"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange:before{content:"\f0ec"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-square:before{content:"\f321"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows:before{content:"\f31d"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expand-wide:before{content:"\f320"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link:before{content:"\f08e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square:before{content:"\f14c"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-evil:before{content:"\f6db"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-field-hockey:before{content:"\f44c"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-certificate:before{content:"\f5f3"}.fa-file-chart-line:before{content:"\f659"}.fa-file-chart-pie:before{content:"\f65a"}.fa-file-check:before{content:"\f316"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-edit:before{content:"\f31c"}.fa-file-excel:before{content:"\f1c3"}.fa-file-exclamation:before{content:"\f31a"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-minus:before{content:"\f318"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-plus:before{content:"\f319"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-spreadsheet:before{content:"\f65b"}.fa-file-times:before{content:"\f317"}.fa-file-upload:before{content:"\f574"}.fa-file-user:before{content:"\f65c"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-files-medical:before{content:"\f7fd"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-film-alt:before{content:"\f3a0"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-smoke:before{content:"\f74b"}.fa-firefox:before{content:"\f269"}.fa-fireplace:before{content:"\f79a"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fish-cooked:before{content:"\f7fe"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-alt:before{content:"\f74c"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flame:before{content:"\f6df"}.fa-flask:before{content:"\f0c3"}.fa-flask-poison:before{content:"\f6e0"}.fa-flask-potion:before{content:"\f6e1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flower:before{content:"\f7ff"}.fa-flower-daffodil:before{content:"\f800"}.fa-flower-tulip:before{content:"\f801"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-fog:before{content:"\f74e"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-times:before{content:"\f65f"}.fa-folder-tree:before{content:"\f802"}.fa-folders:before{content:"\f660"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-football-helmet:before{content:"\f44f"}.fa-forklift:before{content:"\f47a"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-fragile:before{content:"\f4bb"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-french-fries:before{content:"\f803"}.fa-frog:before{content:"\f52e"}.fa-frosty-head:before{content:"\f79b"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-function:before{content:"\f661"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gas-pump-slash:before{content:"\f5f4"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gift-card:before{content:"\f663"}.fa-gifts:before{content:"\f79c"}.fa-gingerbread-man:before{content:"\f79d"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass:before{content:"\f804"}.fa-glass-champagne:before{content:"\f79e"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glass-whiskey-rocks:before{content:"\f7a1"}.fa-glasses:before{content:"\f530"}.fa-glasses-alt:before{content:"\f5f5"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-globe-snow:before{content:"\f7a3"}.fa-globe-stand:before{content:"\f5f6"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-golf-club:before{content:"\f451"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-h1:before{content:"\f313"}.fa-h2:before{content:"\f314"}.fa-h3:before{content:"\f315"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hammer-war:before{content:"\f6e4"}.fa-hamsa:before{content:"\f665"}.fa-hand-heart:before{content:"\f4bc"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-box:before{content:"\f47b"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-magic:before{content:"\f6e5"}.fa-hand-holding-seedling:before{content:"\f4bf"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-receiving:before{content:"\f47c"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-heart:before{content:"\f4c3"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-usd:before{content:"\f4c5"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt:before{content:"\f4c6"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-santa:before{content:"\f7a7"}.fa-hat-winter:before{content:"\f7a8"}.fa-hat-witch:before{content:"\f6e7"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-head-side:before{content:"\f6e9"}.fa-head-side-brain:before{content:"\f808"}.fa-head-side-medical:before{content:"\f809"}.fa-head-vr:before{content:"\f6ea"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heart-circle:before{content:"\f4c7"}.fa-heart-rate:before{content:"\f5f8"}.fa-heart-square:before{content:"\f4c8"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helmet-battle:before{content:"\f6eb"}.fa-hexagon:before{content:"\f312"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-mask:before{content:"\f6ee"}.fa-hockey-puck:before{content:"\f453"}.fa-hockey-sticks:before{content:"\f454"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-home-alt:before{content:"\f80a"}.fa-home-heart:before{content:"\f4c9"}.fa-home-lg:before{content:"\f80b"}.fa-home-lg-alt:before{content:"\f80c"}.fa-hood-cloak:before{content:"\f6ef"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hospitals:before{content:"\f80e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-flood:before{content:"\f74f"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-humidity:before{content:"\f750"}.fa-hurricane:before{content:"\f751"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-ice-skate:before{content:"\f7ac"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-inbox-in:before{content:"\f310"}.fa-inbox-out:before{content:"\f311"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-industry-alt:before{content:"\f3b3"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-info-square:before{content:"\f30f"}.fa-inhaler:before{content:"\f5f9"}.fa-instagram:before{content:"\f16d"}.fa-integral:before{content:"\f667"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-intersection:before{content:"\f668"}.fa-inventory:before{content:"\f480"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-island-tropical:before{content:"\f811"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jack-o-lantern:before{content:"\f30e"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-key-skeleton:before{content:"\f6f3"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-keynote:before{content:"\f66c"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kidneys:before{content:"\f5fb"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kite:before{content:"\f6f4"}.fa-kiwi-bird:before{content:"\f535"}.fa-knife-kitchen:before{content:"\f6f5"}.fa-korvue:before{content:"\f42f"}.fa-lambda:before{content:"\f66e"}.fa-lamp:before{content:"\f4ca"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before{content:"\f752"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-layer-minus:before{content:"\f5fe"}.fa-layer-plus:before{content:"\f5ff"}.fa-leaf:before{content:"\f06c"}.fa-leaf-heart:before{content:"\f4cb"}.fa-leaf-maple:before{content:"\f6f6"}.fa-leaf-oak:before{content:"\f6f7"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down:before{content:"\f149"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up:before{content:"\f148"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lightbulb-dollar:before{content:"\f670"}.fa-lightbulb-exclamation:before{content:"\f671"}.fa-lightbulb-on:before{content:"\f672"}.fa-lightbulb-slash:before{content:"\f673"}.fa-lights-holiday:before{content:"\f7b2"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lips:before{content:"\f600"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location:before{content:"\f601"}.fa-location-arrow:before{content:"\f124"}.fa-location-circle:before{content:"\f602"}.fa-location-slash:before{content:"\f603"}.fa-lock:before{content:"\f023"}.fa-lock-alt:before{content:"\f30d"}.fa-lock-open:before{content:"\f3c1"}.fa-lock-open-alt:before{content:"\f3c2"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-long-arrow-up:before{content:"\f176"}.fa-loveseat:before{content:"\f4cc"}.fa-low-vision:before{content:"\f2a8"}.fa-luchador:before{content:"\f455"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lyft:before{content:"\f3c3"}.fa-mace:before{content:"\f6f8"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailbox:before{content:"\f813"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-mandolin:before{content:"\f6f9"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-marker-alt-slash:before{content:"\f605"}.fa-map-marker-check:before{content:"\f606"}.fa-map-marker-edit:before{content:"\f607"}.fa-map-marker-exclamation:before{content:"\f608"}.fa-map-marker-minus:before{content:"\f609"}.fa-map-marker-plus:before{content:"\f60a"}.fa-map-marker-question:before{content:"\f60b"}.fa-map-marker-slash:before{content:"\f60c"}.fa-map-marker-smile:before{content:"\f60d"}.fa-map-marker-times:before{content:"\f60e"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-meat:before{content:"\f814"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaphone:before{content:"\f675"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-mind-share:before{content:"\f677"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-hexagon:before{content:"\f307"}.fa-minus-octagon:before{content:"\f308"}.fa-minus-square:before{content:"\f146"}.fa-mistletoe:before{content:"\f7b4"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-mobile-android:before{content:"\f3ce"}.fa-mobile-android-alt:before{content:"\f3cf"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monitor-heart-rate:before{content:"\f611"}.fa-monkey:before{content:"\f6fb"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-moon-cloud:before{content:"\f754"}.fa-moon-stars:before{content:"\f755"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mountains:before{content:"\f6fd"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-mug-marshmallows:before{content:"\f7b7"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-narwhal:before{content:"\f6fe"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octagon:before{content:"\f306"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-oil-temp:before{content:"\f614"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-omega:before{content:"\f67a"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-ornament:before{content:"\f7b8"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-brush-alt:before{content:"\f5a9"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-pallet-alt:before{content:"\f483"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-parking-circle:before{content:"\f615"}.fa-parking-circle-slash:before{content:"\f616"}.fa-parking-slash:before{content:"\f617"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paw-alt:before{content:"\f701"}.fa-paw-claws:before{content:"\f702"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pegasus:before{content:"\f703"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil:before{content:"\f040"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-paintbrush:before{content:"\f618"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-pennant:before{content:"\f456"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-person-carry:before{content:"\f4cf"}.fa-person-dolly:before{content:"\f4d0"}.fa-person-dolly-empty:before{content:"\f4d1"}.fa-person-sign:before{content:"\f757"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-office:before{content:"\f67d"}.fa-phone-plus:before{content:"\f4d2"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pi:before{content:"\f67e"}.fa-pie:before{content:"\f705"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pig:before{content:"\f706"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza:before{content:"\f817"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-alt:before{content:"\f3de"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-hexagon:before{content:"\f300"}.fa-plus-octagon:before{content:"\f301"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-podium:before{content:"\f680"}.fa-podium-star:before{content:"\f758"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poll-people:before{content:"\f759"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-popcorn:before{content:"\f819"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-presentation:before{content:"\f685"}.fa-print:before{content:"\f02f"}.fa-print-search:before{content:"\f81a"}.fa-print-slash:before{content:"\f686"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pumpkin:before{content:"\f707"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-question-square:before{content:"\f2fd"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-rabbit:before{content:"\f708"}.fa-rabbit-fast:before{content:"\f709"}.fa-racquet:before{content:"\f45a"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-raindrops:before{content:"\f75c"}.fa-ram:before{content:"\f70a"}.fa-ramp-loading:before{content:"\f4d4"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-rectangle-landscape:before{content:"\f2fa"}.fa-rectangle-portrait:before{content:"\f2fb"}.fa-rectangle-wide:before{content:"\f2fc"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-repeat:before{content:"\f363"}.fa-repeat-1:before{content:"\f365"}.fa-repeat-1-alt:before{content:"\f366"}.fa-repeat-alt:before{content:"\f364"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-retweet-alt:before{content:"\f361"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-rings-wedding:before{content:"\f81b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-route-highway:before{content:"\f61a"}.fa-route-interstate:before{content:"\f61b"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-triangle:before{content:"\f61c"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rv:before{content:"\f7be"}.fa-sack:before{content:"\f81c"}.fa-sack-dollar:before{content:"\f81d"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salad:before{content:"\f81e"}.fa-salesforce:before{content:"\f83b"}.fa-sandwich:before{content:"\f81f"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-sausage:before{content:"\f820"}.fa-save:before{content:"\f0c7"}.fa-scalpel:before{content:"\f61d"}.fa-scalpel-path:before{content:"\f61e"}.fa-scanner:before{content:"\f488"}.fa-scanner-keyboard:before{content:"\f489"}.fa-scanner-touchscreen:before{content:"\f48a"}.fa-scarecrow:before{content:"\f70d"}.fa-scarf:before{content:"\f7c1"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-scroll-old:before{content:"\f70f"}.fa-scrubber:before{content:"\f2f8"}.fa-scythe:before{content:"\f710"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-all:before{content:"\f367"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-sheep:before{content:"\f711"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield:before{content:"\f132"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-check:before{content:"\f2f7"}.fa-shield-cross:before{content:"\f712"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shipping-timed:before{content:"\f48c"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shish-kebab:before{content:"\f821"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shovel:before{content:"\f713"}.fa-shovel-snow:before{content:"\f7c3"}.fa-shower:before{content:"\f2cc"}.fa-shredder:before{content:"\f68a"}.fa-shuttle-van:before{content:"\f5b6"}.fa-shuttlecock:before{content:"\f45b"}.fa-sickle:before{content:"\f822"}.fa-sigma:before{content:"\f68b"}.fa-sign:before{content:"\f4d9"}.fa-sign-in:before{content:"\f090"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out:before{content:"\f08b"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signal-1:before{content:"\f68c"}.fa-signal-2:before{content:"\f68d"}.fa-signal-3:before{content:"\f68e"}.fa-signal-4:before{content:"\f68f"}.fa-signal-alt:before{content:"\f690"}.fa-signal-alt-1:before{content:"\f691"}.fa-signal-alt-2:before{content:"\f692"}.fa-signal-alt-3:before{content:"\f693"}.fa-signal-alt-slash:before{content:"\f694"}.fa-signal-slash:before{content:"\f695"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-skeleton:before{content:"\f620"}.fa-sketch:before{content:"\f7c6"}.fa-ski-jump:before{content:"\f7c7"}.fa-ski-lift:before{content:"\f7c8"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sledding:before{content:"\f7cb"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-sliders-h-square:before{content:"\f3f0"}.fa-sliders-v:before{content:"\f3f1"}.fa-sliders-v-square:before{content:"\f3f2"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-plus:before{content:"\f5b9"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoke:before{content:"\f760"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snake:before{content:"\f716"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snow-blowing:before{content:"\f761"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowflakes:before{content:"\f7cf"}.fa-snowman:before{content:"\f7d0"}.fa-snowmobile:before{content:"\f7d1"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-soup:before{content:"\f823"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-spade:before{content:"\f2f4"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spider:before{content:"\f717"}.fa-spider-black-widow:before{content:"\f718"}.fa-spider-web:before{content:"\f719"}.fa-spinner:before{content:"\f110"}.fa-spinner-third:before{content:"\f3f4"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root:before{content:"\f697"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-squirrel:before{content:"\f71a"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-staff:before{content:"\f71b"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-christmas:before{content:"\f7d4"}.fa-star-exclamation:before{content:"\f2f3"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-stars:before{content:"\f762"}.fa-staylinked:before{content:"\f3f5"}.fa-steak:before{content:"\f824"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-steering-wheel:before{content:"\f622"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stocking:before{content:"\f7d5"}.fa-stomach:before{content:"\f623"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-stretcher:before{content:"\f825"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-cloud:before{content:"\f763"}.fa-sun-dust:before{content:"\f764"}.fa-sun-haze:before{content:"\f765"}.fa-sunrise:before{content:"\f766"}.fa-sunset:before{content:"\f767"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sword:before{content:"\f71c"}.fa-swords:before{content:"\f71d"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablet-android:before{content:"\f3fb"}.fa-tablet-android-alt:before{content:"\f3fc"}.fa-tablet-rugged:before{content:"\f48f"}.fa-tablets:before{content:"\f490"}.fa-tachometer:before{content:"\f0e4"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tachometer-alt-average:before{content:"\f624"}.fa-tachometer-alt-fast:before{content:"\f625"}.fa-tachometer-alt-fastest:before{content:"\f626"}.fa-tachometer-alt-slow:before{content:"\f627"}.fa-tachometer-alt-slowest:before{content:"\f628"}.fa-tachometer-average:before{content:"\f629"}.fa-tachometer-fast:before{content:"\f62a"}.fa-tachometer-fastest:before{content:"\f62b"}.fa-tachometer-slow:before{content:"\f62c"}.fa-tachometer-slowest:before{content:"\f62d"}.fa-taco:before{content:"\f826"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tally:before{content:"\f69c"}.fa-tanakh:before{content:"\f827"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-tasks-alt:before{content:"\f828"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-frigid:before{content:"\f768"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-hot:before{content:"\f76a"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-tennis-ball:before{content:"\f45e"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-theta:before{content:"\f69e"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-thunderstorm:before{content:"\f76c"}.fa-thunderstorm-moon:before{content:"\f76d"}.fa-thunderstorm-sun:before{content:"\f76e"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tilde:before{content:"\f69f"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-times-hexagon:before{content:"\f2ee"}.fa-times-octagon:before{content:"\f2f0"}.fa-times-square:before{content:"\f2d3"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tire:before{content:"\f631"}.fa-tire-flat:before{content:"\f632"}.fa-tire-pressure-warning:before{content:"\f633"}.fa-tire-rugged:before{content:"\f634"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-alt:before{content:"\f71f"}.fa-tombstone:before{content:"\f720"}.fa-tombstone-alt:before{content:"\f721"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-toothbrush:before{content:"\f635"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-cone:before{content:"\f636"}.fa-traffic-light:before{content:"\f637"}.fa-traffic-light-go:before{content:"\f638"}.fa-traffic-light-slow:before{content:"\f639"}.fa-traffic-light-stop:before{content:"\f63a"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-treasure-chest:before{content:"\f723"}.fa-tree:before{content:"\f1bb"}.fa-tree-alt:before{content:"\f400"}.fa-tree-christmas:before{content:"\f7db"}.fa-tree-decorated:before{content:"\f7dc"}.fa-tree-large:before{content:"\f7dd"}.fa-tree-palm:before{content:"\f82b"}.fa-trees:before{content:"\f724"}.fa-trello:before{content:"\f181"}.fa-triangle:before{content:"\f2ec"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-trophy-alt:before{content:"\f2eb"}.fa-truck:before{content:"\f0d1"}.fa-truck-container:before{content:"\f4dc"}.fa-truck-couch:before{content:"\f4dd"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-plow:before{content:"\f7de"}.fa-truck-ramp:before{content:"\f4e0"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-turkey:before{content:"\f725"}.fa-turtle:before{content:"\f726"}.fa-tv:before{content:"\f26c"}.fa-tv-retro:before{content:"\f401"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-unicorn:before{content:"\f727"}.fa-union:before{content:"\f6a2"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usd-circle:before{content:"\f2e8"}.fa-usd-square:before{content:"\f2e9"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-chart:before{content:"\f6a3"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-crown:before{content:"\f6a4"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-hard-hat:before{content:"\f82c"}.fa-user-headset:before{content:"\f82d"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-md-chat:before{content:"\f82e"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-class:before{content:"\f63d"}.fa-users-cog:before{content:"\f509"}.fa-users-crown:before{content:"\f6a5"}.fa-users-medical:before{content:"\f830"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-fork:before{content:"\f2e3"}.fa-utensil-knife:before{content:"\f2e4"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-utensils-alt:before{content:"\f2e6"}.fa-vaadin:before{content:"\f408"}.fa-value-absolute:before{content:"\f6a6"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-plus:before{content:"\f4e1"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume:before{content:"\f6a8"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-slash:before{content:"\f2e2"}.fa-volume-up:before{content:"\f028"}.fa-vote-nay:before{content:"\f771"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walker:before{content:"\f831"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-wand:before{content:"\f72a"}.fa-wand-magic:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-warehouse-alt:before{content:"\f495"}.fa-watch:before{content:"\f2e1"}.fa-watch-fitness:before{content:"\f63e"}.fa-water:before{content:"\f773"}.fa-water-lower:before{content:"\f774"}.fa-water-rise:before{content:"\f775"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-webcam:before{content:"\f832"}.fa-webcam-slash:before{content:"\f833"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whale:before{content:"\f72c"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheat:before{content:"\f72d"}.fa-wheelchair:before{content:"\f193"}.fa-whistle:before{content:"\f460"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wifi-1:before{content:"\f6aa"}.fa-wifi-2:before{content:"\f6ab"}.fa-wifi-slash:before{content:"\f6ac"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-wind-warning:before{content:"\f776"}.fa-window:before{content:"\f40e"}.fa-window-alt:before{content:"\f40f"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-windsock:before{content:"\f777"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wreath:before{content:"\f7e2"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;font-display:auto;src:url(../webfonts/fa-light-300.eot);src:url(../webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-light-300.woff2) format("woff2"),url(../webfonts/fa-light-300.woff) format("woff"),url(../webfonts/fa-light-300.ttf) format("truetype"),url(../webfonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-weight:300}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fal,.far{font-family:"Font Awesome 5 Pro"}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900} \ No newline at end of file diff --git a/hud/assets/css/main.css b/hud/assets/css/main.css deleted file mode 100644 index 26cacd7..0000000 --- a/hud/assets/css/main.css +++ /dev/null @@ -1,1588 +0,0 @@ -@import url('all.css'); -@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:100,200,300,400,500,600,700,800,900"); -@import url("https://fonts.googleapis.com/css?family=K2D:100,200,300,400,500,600,700,800,900"); - -::-webkit-scrollbar { - display: none; -} - -*, *:before, *:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - margin: 0; - padding: 0; - font-family: 'K2D', sans-serif; -} - -body.hidden, -body .hidden { - display: none !important; - opacity: 0.0 !important; -} - -.fab, -.fab:before, -.fab:after { - font-family: "Font Awesome 5 Brands"; -} - -.fa, -.fa:before, -.fa:after, -.far, -.far:before, -.far:after, -.fas, -.fas:before, -.fas:after, -.fad, -.fad:before, -.fad:after { - font-family: "Font Awesome 5 Pro"; -} - -html { - display: grid; - min-height: 100%; -} - -body { -/*background: url('https://i.imgur.com/MoYBh1e.jpg') center center no-repeat;*/ - background-size: cover; - -ms-overflow-style: none; - scrollbar-width: none; -} - -#ui { - position: relative; - width: 100%; - height: 100%; -} - -div.separator { - display: block; - clear: both; - width: 100%; -} - -.icon { - display: block; - position: relative; - padding: 10px 8px; - margin: 10px 5px 0 5px; - width: 30px; - height: 30px; - border-radius: 0; - border: none; -} - -.icon i { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%,-50%); - color: #FFF; - z-index: 11; - font-size: 15px; -} - -.icon img { - width: 16px; - margin: -3px 0 0 0; -} - -.icon span { - display: block; - position: absolute; - left: 50%; - bottom: 0; - transform: translate(-50%,0); - width: 100%; - height: 100%; -} -.icon.text { - display: inline-block; - overflow: visible; - width: auto; - height: 30px; - padding: 0; -} - -.icon.text i { - display: inline-block; - float: left; - transform: translate(0%,0%); - left: 0; - top: 0; - position: relative; - padding: 10px 8px; - width: 30px; - height: 30px; - margin-left: 5px; - border-radius: 100px; - color: #FFF; -} - -.icon.text i:before { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%,-50%); -} - -.icon.text span { - position: relative; - width: auto; - height: auto; - left: 0; - transform: translate(0,0); - display: inline-block; - font-size: 12px; - padding: 7px 15px 0 10px; - font-weight: 700; - color: #FFF; -} - -.icon.dying:not(.customstatus) span { - animation: trew-status-blink 500ms infinite; -} - -.icon.pulse i { - animation: trew-pulse 500ms 1; -} - -.icon .job_label { - position: absolute; - height: 20px; - margin-top: -20px; - margin-left: -1px; - width: 202px; - background-color: #fedc00; - border: 1px solid white; - border-bottom: none; - color: black; - font-size: 12.5px; - font-size: bold; - text-align: center; - padding-top: 1px; - font-weight: bold; - border-radius: 5px 5px 0 0; -} - -.icon .job_money { - position: absolute; - height: 20px; - margin-top: 8px; - margin-left: -1px; - width: 202px; - background-color: white; - border: 1px solid white; - border-bottom: none; - color: black; - font-size: 12.5px; - font-size: bold; - text-align: center; - padding-top: -1px; - font-weight: bold; - border-radius: 0 0 5px 5px; -} - -.icon .job_details { - margin-right: 35px; -} - -.icon .job_icon { - position: absolute; - height: 30px; - width: 30px; - padding: 0; - border: 1px solid rgba(0, 0, 0, 0.7); - background: rgba(0,0,0,0.6); - top: 6px; - right: 4px; - border-radius: 0px; - text-align: center; - vertical-align: center; - color: white; -} - -.icon .job_icon span { - font-size: 25px; - position: absolute; - left: -4px; - bottom: 2px; -} - -.icon div.job_logo { - position: absolute; - left: -58px; - width: 55px; - height: 55px; - background-color: rgba(0,0,0,0.4); - top: 6px; - padding: 0; - border-radius: 5px 0 0 5px; -} - -.icon div.job_logo span.job_logo { - font-size: 40px; - text-align: center; - width: calc(100% + 4px); - vertical-align: middle; - margin-top: -10px; - font-weight: 900; -} - -.info { - position: absolute; -} - -.info.server { - top: 45px; - right: 26px; - width: 90px; - height: 90px; -} - -.info.server #server img { - max-width: 100%; - opacity: 0.75; -} - -.info.player { - top: 140px; - right: 35px; - text-align: left; -} - -.info.player div#job i.fas, .info.player div#job2 i.fas { - color: white; -} - -.info.player #money i { - color: white; -} - -.info.player span#job_name, .info.player span#job2_name { - font-size: 12px; - color: #fedc00; - display:block; - text-align: left; - line-height: 0.75em; - background: rgba(0,0,0,0.5); - padding: 10px; - top: 6px; - margin-right: 2px; - width: calc(100% + 22px); - border-radius: 0 5px 0 0; -} - -.info.player span#job_grade, .info.player span#job2_grade { - color: black; - display: inline-block; - background-color: #fedc00; - width: calc(100% + 22px); - top: 8px; - font-size: 10px; - text-align: left; - vertical-align: middle; - padding: 3px 12px; - font-weight: bold; - border-radius: 0 0 5px 0; -} - -.info.player #money div[id] { - float: right; -} - -.info.player #money { - clear: both; - min-width: 200px; -} - -.info.player #money strong { - font-size: 12px; - color: #fedc00; - display:block; - text-align: right; - margin-right: 15px; - margin-top: 7.5px; - line-height: 0.75em; -} - -.info.player #money span::before { - content: '€ '; -} - -.info.player #money span { - font-size: 12px; - color: white; - display:block; - min-width: 200px; - line-height: 0em; - text-align: right; - line-height: 0.5em; -} - -.info.player #money #wallet i { - background: linear-gradient(180deg, #18b70b 0%, #128c08 100%); -} - -.info.player #money #blackMoney i { - background: linear-gradient(180deg, #474747 0%, #252525 100%); -} - -.info.player #money #bank i { - background: linear-gradient(180deg, #c70a0a 0%, #960505 100%); -} - -.info.player #money #society i { - background: linear-gradient(180deg, #874c14 0%, #6a3c10 100%); -} - -.info.status { - right: 35px; - display: block; - margin: 0; - top: 173px; -} - -.info.status.status-bar { - top: 150px; -} - -.info.status.status-bar li { - height: 5px; - min-height: 20px; - border: none !important; - color: white; -} - -.info.status.status-bar li span { - background: rgba(0,0,0,0.4) !important; -} - -.info.status li { - display: inline-block; -} - -.info.status li.icon { - width: 52px; - margin: -3px; - border: 1px solid rgba(0,0,0,0.3); -} - -.info.status li.icon div.bar-status { - position: absolute; - top: 0; - left: 0; - margin-top: -10px; - z-index: 9999; -} - -.info.status li:first-child { - border-radius: 0 0 0 10px; -} - -.info.status.status-bar li:first-child { - border-radius: 10px 0 0 0; -} - -.info.status li:last-child { - border-radius: 0 0 10px 0; -} - -.info.status.status-bar li:last-child { - border-radius: 0 10px 0 0; -} - -.info.status #status { - clear: both; -} - -.info.status #status ul { - margin: 10px 0 0 0; -} - -.info.status #status ul li#health span { - background: #fe0000; -} - -.info.status #status ul li#armor span { - background: #5c9600; -} - -.info.status #status ul li#stamina span { - background: linear-gradient(180deg, #ffb700 0%, #e0a102 100%); -} - -.info.status #status ul li#hunger span { - background: #d87732; -} - -.info.status #status ul li#thirst span { - background: #00a0fe; -} - -.info.status #status ul li#health.dead { - animation: trew-pulse 500ms infinite; -} - -.info.status #status ul li#health.dead span { - height: 0 !important; -} - -.info.status #status ul li#health.dead i.fas:before { - content: '\f714'; -} - -.info.status #status ul li#voice { - border-radius: 0; - background: linear-gradient(180deg, rgba(24, 183, 11, 0.7) 0%, rgba(18, 140, 8, 0.6) 100%); - text-align: center; - padding: 7px 0 0 0; - transition: all 0.1s linear; -} - -.info.status.status-bar #status ul li#voice { - background: rgba(0,0,0,0.0) !important; -} - -.info.status.status-bar li i { - font-size: 12px; -} - -.info.status #status ul li#voice i.fas { - color: #FFF; -} - -.info.status #status ul li#voice.whisper span { - background: linear-gradient(180deg, #ffb700 0%, #e0a102 100%); -} -.info.status #status ul li#voice.normal span { - background: linear-gradient(180deg, #18b70b 0%, #128c08 100%); -} - -.info.status #status ul li#voice.shout span { - background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%); -} - -.info.status #status ul li#voice.speak { - overflow: visible; -} - -.info.status #status ul li#voice.speak span { - animation: trew-soundwave 1s infinite; - border-radius: 50%; -} - -.info.weapon { - bottom: 15px; - right: 25px; -} - -.info.weapon.armed { - display: block; - opacity: 1; -} - -.info.weapon.unarmed { - display: none; - opacity: 0; -} - -.info.weapon #weapon_image { - float: left; - width: 200px; - height: 40px; - text-align: left; - position: relative; -} - -.info.weapon #weapon_image img { - position: absolute; - top: 50%; - right: 25px; - transform: translateY(-50%); - height: 40px; -} - -.info.weapon #weapon_bullets { - color: #FFF; - float: left; - width: 35px; - text-shadow: 0px 1px 1px rgba(0,0,0,0.75); - line-height: 1; -} - -.info.weapon #weapon_bullets .clip { - font-weight: 900; - font-size: 22px; -} - -.info.weapon #weapon_bullets .ammo { - font-weight: 700; - font-size: 16px; - opacity: 0.7; -} - -.info.weapon #bullets { - margin: 0; - float: left; - margin: 5px 0 0 20px; - overflow: visible; - transform: scale(1.1); -} - -.info.weapon #bullets i { - color: #FFF; - float: right; - height: 34px; - width: 34px; - border-radius: 100px; -} - -.info.weapon #bullets i.clone { - background: none; - position: absolute; - float: none; - top: 15px; - left: inherit; - left: 10px; - opacity: 0; -} - -.info.weapon #bullets.shooting i.clone { - animation: trew-bullets 250ms 1; -} - -.info.weapon #bullets i img { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%,-35%); -} - -.radio, .info.radio { - clear: both; -} - -.radio #voice, .info.radio #voice { - width: 35px; - height: 35px; - border-radius: 50%; - background: linear-gradient(180deg, #18b70b 0%, #128c08 100%); - text-align: center; - padding: 7px 0 0 0; - transition: all 0.1s linear; -} - -.radio #voice.whisper, .info.radio #voice.whisper { - background: linear-gradient(180deg, #ffb700 0%, #e0a102 100%); -} - -.radio #voice.normal, .info.radio #voice.normal { - background: linear-gradient(180deg, #18b70b 0%, #128c08 100%); -} - -.radio #voice.shout, .info.radio #voice.shout { - background: linear-gradient(180deg, #ff0000 0%, #aa0000 100%); -} - -.radio #voice i.fas, .info.radio #voice i.fas { - font-size: 18px; - color: #FFF; -} - -.radio #voice.speak, .info.radio #voice.speak { - animation: trew-soundwave 1s infinite; -} - -@keyframes trew-siren { - 0% { - border-color: rgba(255,0,0,0); - box-shadow: 0 0 10px 10px rgba(255,0,0,0); - } - 50% { - border-color: rgba(255,0,0,1); - box-shadow: 0 0 10px 10px rgba(255,0,0,0.50); - } - 100% { - border-color: rgba(255,0,0,0); - box-shadow: 0 0 10px 10px rgba(255,0,0,0); - } -} - -@keyframes trew-soundwave { - 0% { - box-shadow: 0 0 0 0px rgba(255,255,255,0.75); - } - 100% { - box-shadow: 0 0 0 8px rgba(255,255,255,0); - } -} - -@keyframes trew-status-blink { - 0% { - opacity: 0; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - -@keyframes trew-pulse { - 0% { - transform: scale(1); - } - 25% { - transform: scale(1.5); - } - 100% { - transform: scale(1); - } -} - -@keyframes trew-speed { - 0% { - stroke-dashoffset: 280; - } - 50% { - stroke-dashoffset: 75; - } - 100% { - stroke-dashoffset: 280; - } -} - -@keyframes trew-bullets { - 0% { - opacity: 0; - } - 25% { - opacity: 1; - } - 100% { - transform: translate(30px,-60px) rotate(90deg); - opacity: 0; - } -} - -@keyframes trew-rainbow{ - 100%, 0%{ - background: rgba(255,0,0,0.70); - } - 8%{ - background: rgba(255,127,0,0.70); - } - 16%{ - background: rgba(230,205,23,0.70); - } - 25%{ - background: rgba(127,255,0,0.70); - } - 33%{ - background: rgba(0,255,0,0.70); - } - 41%{ - background: rgba(0,255,127,0.70); - } - 50%{ - background: rgba(0,255,255,0.70); - } - 58%{ - background: rgba(0,127,255,0.70); - } - 66%{ - background: rgba(0,0,255,0.70); - } - 75%{ - background: rgba(127,0,255,0.70); - } - 83%{ - background: rgba(255,0,255,0.70); - } - 91%{ - background: rgba(255,0,127,0.70); - } -} - -.corev-menu { - position: absolute; -} - -.align-center-left { - top: 50%; - transform: translateY(-50%) perspective(30em) rotateY(10deg); - left: 3.5em; -} - -.corev-menu .corev-menu-head { - text-transform : uppercase; - font-size : 1em; - background-color: black; - text-align : center; - height : 90px; - line-height : 90px; - color : black; - font-style : oblique; - background-image: url("../images/default.png"); - background-repeat: no-repeat; - background-position: center; - border-radius : 10px 10px 0 0; - border-bottom : none; -} - -.corev-menu .corev-menu-category { - font-size : 1em; - height : 35px; - line-height : 35px; - padding : 20px; - color : #fedc00; - background-color: rgba(0, 0, 0, 1); - text-transform : uppercase; - font-size : 18px; - font-weight : 500; - padding : 0 15px; - position : left; - text-align : left; - top : 0px; - letter-spacing : 1px; -} - -.corev-menu .corev-menu-items { - background-color: rgba(0, 0, 0, 0.4); - border-radius : 0 0 10px 10px; - border-top : none; -} - -.corev-menu .corev-menu-items .corev-menu-item { - display : block; - font-size : 1em; - height : 40px; - line-height : 40px; - color : white; - text-align : left; - padding : 0 15px; - display : flex; - justify-content : space-between; - min-width : 300px; - font-weight : 500; - letter-spacing : 1px; -} - -.corev-menu .corev-menu-items .corev-menu-item img { - max-height : 40px; - line-height : 40px; - max-width : 40px; - display : flex; - float : left; - margin-right : 1em; -} - -.corev-menu .corev-menu-items .corev-menu-item.selected { - background-color: #fedc00; - color :black; - font-weight: 800; -} - -.corev-menu .corev-menu-items .corev-menu-item.disabled { - color: gray; -} - -.corev-menu .corev-menu-items .corev-menu-item i { - position : absolute; - right : 0.5em; - height : 40px; - line-height : 40px; - font-size : 1.5em; -} - -.corev-menu .corev-menu-items .corev-menu-item span.item-info { - width: 100%; -} - -.corev-menu .corev-menu-items .corev-menu-item span span { - color : #fedc00; - margin-right : 1em; -} - -.corev-menu .corev-menu-items .corev-menu-item.selected span span { - color : black; - font-weight : 900; -} - -.corev-menu .corev-menu-items .corev-menu-border { - display : block; - font-size : 1em; - height : 1.5em; - line-height : 1.5em; - color : #fedc00; - text-align : left; - padding : 0 15px; - display : block; - justify-content : space-between; - min-width : 300px; - background-color: black; - font-weight : 800; - text-transform : uppercase; -} - -.corev-menu .corev-menu-items .corev-menu-border span span { - font-weight: 500; - margin-left: 5px; - margin-right: 5px; -} - -.corev-menu .corev-menu-items .corev-menu-description { - display : block; - font-size : 1em; - min-height : 40px; - line-height : 25px; - color : white; - text-align : left; - padding : 0 15px; - display : block; - justify-content : space-between; - min-width : 300px; - text-transform : uppercase; -} - -.corev-menu .corev-menu-items .corev-menu-description span span { - font-weight : 700; - color : #fedc00; -} - -.core-chat-container { - position: relative; - top: 0; - left: 0; - width: 350px; - height: 450px; - float: left; - z-index: 1; -} - -.core-chat-messages { - position: absolute; - background: #F9FBFF; - opacity: 0.5; - width: 30%; - height: 70%; - top: 2.5%; - left: 5%; - border-radius: 5px 0 0 5px; - box-shadow: -5px 5px 10px rgba(119, 119, 119, 0.5); -} - -/*chat messages */ -.core-chat-people { - position: absolute; - list-style-type: none; - width: 30.2%; - left: -10px; - top: 24.7%; - line-height: 0.7em; -} - -.core-chat-people .core-chat-title { - text-transform: uppercase; - font-size: 0.7em; - margin-left: 14px; - letter-spacing: 1px; - color: #777777; -} - -.core-chat-people .core-chat-time { - font-size: 0.3em; - color: #777777; - position: absolute; - right: 10px; - margin-top: 2px; -} - -.core-chat-people .core-chat-preview { - color: #79C7C5; - margin-left: 14px; - font-size: 0.5em; -} - -.core-chat-person { - padding: 12px 0 12px 12px; - border-bottom: 1px solid #79C7C5; - cursor: pointer; -} - -.core-chat-person:hover { - background: #F9FBFF; - transition: all 0.3s ease-in-out; -} - -.core-chat-focus { - background: #F9FBFF; - margin-left: 1px; -} - -.core-chat-profile { - position: absolute; - left: 16%; - top: 7%; -} - -.core-chat-name2 { - position: absolute; - top: 50px; - left: 2px; - text-transform: uppercase; - color: #79C7C5; - font-size: 0.8em; - letter-spacing: 2px; - font-weight: 500; -} - -.core-chat-email { - color: #F9FBFF; - font-size: 0.5em; - margin-left: -30px; - margin-top: 2px; -} - -.core-chat-chatbox { - margin: 0; - padding: 0; - position: fixed; - bottom: 25px; - right: 25px; - height: 30%; - width: 60%; - border-radius: 10px; -} - -.core-chat-top-bar { - width: 100%; - height: 25px; - background: #F9FBFF; - border-radius: 10px 10px 0 0; -} - -.core-chat-avatar { - width: 35px; - height: 35px; - background: linear-gradient(to bottom left, #79C7C5 20%, #A1E2D9 100%); - border-radius: 50%; - position: absolute; - top: 11px; - left: 15px; -} - -.core-chat-avatar p { - color: #F9FBFF; - margin: 7px 12px; -} - -.core-chat-name { - position: absolute; - top: 22px; - text-transform: uppercase; - color: #777777; - font-size: 0.8em; - letter-spacing: 2px; - font-weight: 500; - left: 25px; -} - -.core-chat-menu { - position: absolute; - right: 10px; - top: 20px; - width: 10px; - height: 20px; - cursor: pointer; -} - -.core-chat-menu:hover { - transform: scale(1.1); - transition: all 0.3s ease-in; -} - -.core-chat-icons { - position: absolute; - color: #A1E2D9; - padding: 10px; - top: 5px; - right: 21px; - cursor: pointer; -} - -.core-chat-icons .fas { - padding: 5px; - opacity: 0.8; -} - -.core-chat-icons .fas:hover { - transform: scale(1.1); - transition: all 0.3s ease-in; -} - -.core-chat-dots { - width: 4px; - height: 4px; - border-radius: 50%; - background-color: #79C7C5; - box-shadow: 0px 7px 0px #79C7C5, 0px 14px 0px #79C7C5; -} - -.core-chat-middle { - width: 100%; - max-width: 450px; - height: 100%; - border-radius: 10px 10px 0 0; - padding-top: 10px; - left: 0; - top: 0; - position: fixed; -} - -.core-chat-incoming { - position: absolute; - width: 50%; - height: 100%; - padding: 20px; -} - -.core-chat-incoming .core-chat-bubble { - background: #b2b2b2; -} - -.core-chat-ellipsis { - width: 5px; - height: 5px; - display: inline-block; - background: #b7b7b7; - border-radius: 50%; - animation: bounce 1.3s linear infinite; -} - -.core-chat-one { - animation-delay: 0.6s; -} - -.core-chat-two { - animation-delay: 0.5s; -} - -.core-chat-three { - animation-delay: 0.8s; -} - -.core-chat-bubble { - position: relative; - display: inline-block; - margin-bottom: 5px; - color: #F9FBFF; - font-size: 0.7em; - padding: 10px 10px 10px 12px; - border-radius: 5px; - -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); - -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); - box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); -} - -.core-chat-inner-messages, -.core-chat-voldemort { - width: 100%; - max-width: calc(100% - 10px); - overflow: scroll; - max-height: 300px; -} - -.core-chat-inner-messages .core-chat-bubble { - width: 100%; - max-width: 410px; - margin-left: 10px; - margin-top: 5px; - font-weight: 500; - padding-right: 35px; - font-size: 0.7em; -} - -.core-chat-inner-messages .core-chat-bubble i { - margin-right: 5px; - font-size: 15px; - vertical-align: middle; -} - -.core-chat-inner-messages .core-chat-bubble span.core-chat-sender { - font-weight: 900; - margin-right: 5px; - margin-left: 0; - border-radius: 5px; - line-height: 20px; - padding: 0; -} - -.core-chat-inner-messages .core-chat-time { - color: white; - position: absolute; - right: 10px; - font-weight: 900; - font-size: 12px; -} - -.core-chat-bubble.core-chat-twitter { - background: rgba(0,19,112,1); - background: -moz-linear-gradient(left, rgba(0,19,112,1) 0%, rgba(32,124,229,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,19,112,1)), color-stop(100%, rgba(32,124,229,1))); - background: -webkit-linear-gradient(left, rgba(0,19,112,1) 0%, rgba(32,124,229,1) 100%); - background: -o-linear-gradient(left, rgba(0,19,112,1) 0%, rgba(32,124,229,1) 100%); - background: -ms-linear-gradient(left, rgba(0,19,112,1) 0%, rgba(32,124,229,1) 100%); - background: linear-gradient(to right, rgba(0,19,112,1) 0%, rgba(32,124,229,1) 100%); -} - -.core-chat-bubble.core-chat-advertisment { - background: rgba(229,199,31,1); - background: -moz-linear-gradient(left, rgba(229,199,31,1) 0%, rgba(255,242,0,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(229,199,31,1)), color-stop(100%, rgba(255,242,0,1))); - background: -webkit-linear-gradient(left, rgba(229,199,31,1) 0%, rgba(255,242,0,1) 100%); - background: -o-linear-gradient(left, rgba(229,199,31,1) 0%, rgba(255,242,0,1) 100%); - background: -ms-linear-gradient(left, rgba(229,199,31,1) 0%, rgba(255,242,0,1) 100%); - background: linear-gradient(to right, rgba(229,199,31,1) 0%, rgba(255,242,0,1) 100%); - color: black; -} - -.core-chat-bubble.core-chat-advertisment .core-chat-time { - color: black; -} - -.core-chat-bubble.core-chat-me { - background: rgba(92,0,112,1); - background: -moz-linear-gradient(left, rgba(92,0,112,1) 0%, rgba(133,31,229,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(92,0,112,1)), color-stop(100%, rgba(133,31,229,1))); - background: -webkit-linear-gradient(left, rgba(92,0,112,1) 0%, rgba(133,31,229,1) 100%); - background: -o-linear-gradient(left, rgba(92,0,112,1) 0%, rgba(133,31,229,1) 100%); - background: -ms-linear-gradient(left, rgba(92,0,112,1) 0%, rgba(133,31,229,1) 100%); - background: linear-gradient(to right, rgba(92,0,112,1) 0%, rgba(133,31,229,1) 100%); -} - -.core-chat-bubble.core-chat-ooc { - background: rgba(87,87,87,1); - background: -moz-linear-gradient(left, rgba(87,87,87,1) 0%, rgba(138,138,138,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(87,87,87,1)), color-stop(100%, rgba(138,138,138,1))); - background: -webkit-linear-gradient(left, rgba(87,87,87,1) 0%, rgba(138,138,138,1) 100%); - background: -o-linear-gradient(left, rgba(87,87,87,1) 0%, rgba(138,138,138,1) 100%); - background: -ms-linear-gradient(left, rgba(87,87,87,1) 0%, rgba(138,138,138,1) 100%); - background: linear-gradient(to right, rgba(87,87,87,1) 0%, rgba(138,138,138,1) 100%); -} - -.core-chat-bubble.core-chat-adminmessage { - background: rgba(189,0,0,1); - background: -moz-linear-gradient(left, rgba(189,0,0,1) 0%, rgba(171,0,0,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(189,0,0,1)), color-stop(100%, rgba(171,0,0,1))); - background: -webkit-linear-gradient(left, rgba(189,0,0,1) 0%, rgba(171,0,0,1) 100%); - background: -o-linear-gradient(left, rgba(189,0,0,1) 0%, rgba(171,0,0,1) 100%); - background: -ms-linear-gradient(left, rgba(189,0,0,1) 0%, rgba(171,0,0,1) 100%); - background: linear-gradient(to right, rgba(189,0,0,1) 0%, rgba(171,0,0,1) 100%); -} - -.core-chat-bubble.core-chat-error { - background: rgba(255,111,111,1); - background: -moz-linear-gradient(left, rgba(255,111,111,1) 0%, rgba(255,90,90,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,111,111,1)), color-stop(100%, rgba(255,90,90,1))); - background: -webkit-linear-gradient(left, rgba(255,111,111,1) 0%, rgba(255,90,90,1) 100%); - background: -o-linear-gradient(left, rgba(255,111,111,1) 0%, rgba(255,90,90,1) 100%); - background: -ms-linear-gradient(left, rgba(255,111,111,1) 0%, rgba(255,90,90,1) 100%); - background: linear-gradient(to right, rgba(255,111,111,1) 0%, rgba(255,90,90,1) 100%); -} - -.core-chat-bubble.core-chat-command { - background: rgba(139,26,255,1); - background: -moz-linear-gradient(left, rgba(139,26,255,1) 0%, rgba(86,26,255,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(139,26,255,1)), color-stop(100%, rgba(86,26,255,1))); - background: -webkit-linear-gradient(left, rgba(139,26,255,1) 0%, rgba(86,26,255,1) 100%); - background: -o-linear-gradient(left, rgba(139,26,255,1) 0%, rgba(86,26,255,1) 100%); - background: -ms-linear-gradient(left, rgba(139,26,255,1) 0%, rgba(86,26,255,1) 100%); - background: linear-gradient(to right, rgba(139,26,255,1) 0%, rgba(86,26,255,1) 100%); -} - -.core-chat-lower { - margin-top: 45px; -} - -.core-chat-outgoing { - position: absolute; - padding: 20px; - right: 0; - top: 15%; - width: 50%; - height: 100%; -} - -.core-chat-outgoing .core-chat-bubble { - background: #79C7C5; - float: right; -} - -.core-chat-bottom-bar { - position: fixed; - width: 410px; - height: 50px; - top: 320px; - margin-left: 10px; - left: 0; - background: rgba(54,54,54,1); - background: -moz-linear-gradient(left, rgba(54,54,54,1) 0%, rgba(0,0,0,1) 100%); - background: -webkit-gradient(left top, right top, color-stop(0%, rgba(54,54,54,1)), color-stop(100%, rgba(0,0,0,1))); - background: -webkit-linear-gradient(left, rgba(54,54,54,1) 0%, rgba(0,0,0,1) 100%); - background: -o-linear-gradient(left, rgba(54,54,54,1) 0%, rgba(0,0,0,1) 100%); - background: -ms-linear-gradient(left, rgba(54,54,54,1) 0%, rgba(0,0,0,1) 100%); - background: linear-gradient(to right, rgba(54,54,54,1) 0%, rgba(0,0,0,1) 100%); - border-radius: 5px; -} - -.core-chat-left { - left: 0px; -} - -.core-chat-container textarea { - padding: 7px; - width: calc(100% - 30px); - left: 10px; - position: absolute; - border: 0; - top: 8px; - background: transparent; - color: white; -} - -.core-chat-container textarea::placeholder { - color: white; -} - -.core-chat-container textarea:focus { - color: white; - outline: 0; -} - -.core-chat-container button { - position: absolute; - border: 0; - font-size: 1em; - color: #A1E2D9; - top: 19px; - opacity: 0.8; - right: 17px; - cursor: pointer; - outline: 0; -} - -.core-chat-container button:hover { - transform: scale(1.1); - transition: all 0.3s ease-in-out; - color: #79C7C5; -} - -/* Variables */ -::-webkit-scrollbar { - display: none; -} - -*, *:before, *:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - margin: 0; - padding: 0; - font-family: 'K2D', sans-serif; -} - -.fab, -.fab:before, -.fab:after { - font-family: "Font Awesome 5 Brands"; -} - -.fa, -.fa:before, -.fa:after, -.far, -.far:before, -.far:after, -.fas, -.fas:before, -.fas:after { - font-family: "Font Awesome 5 Pro"; -} - -* { - box-sizing: border-box; -} - -html { - user-select: none; - overflow: hidden; -} - -html body { - width: 100vw; - height: 100vh; - overflow: hidden; - position: relative; - padding: 0; - margin: 0; -} - -h1 { - position: absolute; - top: 30%; - color: rgba(255, 255, 255, 0.3); - padding: 0 1rem; - text-align: center; - width: 100%; -} - -.wheel { - --x: 0px; - --y: 0px; - position: absolute; - top: var(--y); - left: var(--x); - width: 500px; - height: 500px; - transform: translate(-50%, -50%); - transform-origin: 0% 0%; -} - -.wheel.on .arc { - opacity: 0.8; - transform: scale(1) rotate(var(--rotation)) !important; - transition-timing-function: cubic-bezier(0, 0.5, 0.5, 1.5); -} - -.wheel .arc { - position: absolute; - top: 0; - right: 0; - width: 50%; - height: 50%; - transform-origin: 0% 100%; - background-image: radial-gradient(circle at 0% 100%, transparent, transparent 29.5%, var(--color-border) 30%, var(--color-border) 30.5%, var(--color) 31%, var(--color) 50%, var(--color-border) 50.25%, var(--color-border) 51.5%, transparent 51.75%, transparent); - transition-property: transform, opacity; - transition-duration: 0.3s; - transition-timing-function: cubic-bezier(0.4, -0.4, 0.7, -0.3); - -webkit-clip-path: polygon(0 0, 0 99%, 99% 0); - clip-path: polygon(0 0, 0 99%, 99% 0); - opacity: 0; - transform: scale(0) rotate(var(--rotation)); -} - -.wheel .arc i { - position: absolute; - top: 40%; - left: 15%; - font-size: 2rem; - transform: rotate(calc(var(--rotation) * -1)); - color: rgba(0, 255, 20, 0.8); - transition: color 0.3s; -} - -.wheel[data-chosen="1"] .arc:nth-child(1):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="1"] .arc:nth-child(1):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(1) { - --rotation: -22.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0.015s; -} - -.wheel .arc:nth-child(2).disabled { - --rotation: -22.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0.015s; -} - -.wheel[data-chosen="2"] .arc:nth-child(2):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="2"] .arc:nth-child(2):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(2) { - --rotation: 22.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0s; -} - -.wheel .arc:nth-child(2).disabled { - --rotation: 22.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0s; -} - -.wheel[data-chosen="3"] .arc:nth-child(3):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="3"] .arc:nth-child(3):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(3) { - --rotation: 67.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0.015s; -} - -.wheel .arc:nth-child(3).disabled { - --rotation: 67.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0.015s; -} - -.wheel[data-chosen="4"] .arc:nth-child(4):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="4"] .arc:nth-child(4):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(4) { - --rotation: 112.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0s; -} - -.wheel .arc:nth-child(4).disabled { - --rotation: 112.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0s; -} - -.wheel[data-chosen="5"] .arc:nth-child(5):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="5"] .arc:nth-child(5):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(5) { - --rotation: 157.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0.015s; -} - -.wheel .arc:nth-child(5).disabled { - --rotation: 157.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0.015s; -} - -.wheel[data-chosen="6"] .arc:nth-child(6):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="6"] .arc:nth-child(6):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(6) { - --rotation: 202.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0s; -} - -.wheel .arc:nth-child(6).disabled { - --rotation: 202.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0s; -} - -.wheel[data-chosen="7"] .arc:nth-child(7):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="7"] .arc:nth-child(7):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(7) { - --rotation: 247.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0.015s; -} - -.wheel .arc:nth-child(7).disabled { - --rotation: 247.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0.015s; -} - -.wheel[data-chosen="8"] .arc:nth-child(8):not(.disabled) { - opacity: 1; - transform: scale(1.1) rotate(var(--rotation)) !important; - filter: brightness(150%); -} - -.wheel[data-chosen="8"] .arc:nth-child(8):not(.disabled) i { - color: rgba(0, 0, 0, 0.5); -} - -.wheel .arc:nth-child(8) { - --rotation: 292.5deg; - --color: hsla(0, 0%, 14%, 0.75); - --color-border: hsla(127, 100%, 50%, 0.94); - transition-delay: 0s; -} - -.wheel .arc:nth-child(8).disabled { - --rotation: 292.5deg; - --color: hsla(0, 0%, 100%, 0); - --color-border: hsla(127, 100%, 50%, 0.2); - transition-delay: 0s; -} \ No newline at end of file diff --git a/hud/assets/images/default.png b/hud/assets/images/default.png deleted file mode 100644 index 3bf7041..0000000 Binary files a/hud/assets/images/default.png and /dev/null differ diff --git a/hud/assets/images/garage.png b/hud/assets/images/garage.png deleted file mode 100644 index 5fc7460..0000000 Binary files a/hud/assets/images/garage.png and /dev/null differ diff --git a/hud/assets/js/app.js b/hud/assets/js/app.js deleted file mode 100644 index ff00d60..0000000 --- a/hud/assets/js/app.js +++ /dev/null @@ -1,54 +0,0 @@ -window.frameworkLoaded = false; - -$(function(){ - window.addEventListener('message', function(event) { - var item = event.data || event.detail; - - if (typeof item == 'undefined' || item == null) { - return - } - - var module = item.__module - - if (typeof module == 'undefined' || module == null) { - module = 'core' - } - - switch(module) { - case 'menu': - const menuEvent = new CustomEvent('menu_message', { - detail: item - }); - - window.dispatchEvent(menuEvent) - - break; - case 'chat': - const chatEvent = new CustomEvent('chat_message', { - detail: item - }); - - window.dispatchEvent(chatEvent) - break; - case 'hud': - const hudEvent = new CustomEvent('hud_message', { - detail: item - }); - - window.dispatchEvent(hudEvent) - break; - case 'wheel': - const wheelEvent = new CustomEvent('wheel_message', { - detail: item - }); - - window.dispatchEvent(wheelEvent) - break; - case 'loaded': - window.frameworkLoaded = true; - break; - default: - break; - } - }); -}); \ No newline at end of file diff --git a/hud/assets/js/chat.js b/hud/assets/js/chat.js deleted file mode 100644 index cfdb86a..0000000 --- a/hud/assets/js/chat.js +++ /dev/null @@ -1,207 +0,0 @@ -window.CHAT = { - template: '#chat_template', - name: 'CHAT', - data() { - return { - showInput: false, - showWindow: false, - shouldHide: false, - message: '', - messages: [], - backingSuggestions: [], - removedSuggestions: [], - oldMessages: [], - oldMessagesIndex: -1 - } - }, - mounted() { - this.mountedCallback(); - }, - watch: { - messages() { - if (this.showWindowTimer) { - clearTimeout(this.showWindowTimer); - } - - this.showWindow = true; - this.resetShowWindowTimer(); - - const messagesObj = this.$el.querySelector('.core-chat-inner-messages'); - - this.$nextTick(() => { - messagesObj.scrollTop = messagesObj.scrollHeight; - }); - }, - }, - computed: { - suggestions() { - return this.backingSuggestions.filter((suggestion) => removedSuggestions.find(removedSuggestion => removedSuggestion == suggestion.name) == undefined); - }, - }, - methods: { - CHANGE_STATE({ shouldHide }) { - this.shouldHide = shouldHide - }, - OPEN_CHAT() { - this.showInput = true; - this.showWindow = true; - - if (this.showWindowTimer) { - clearTimeout(this.showWindowTimer) - } - - this.focusTimer = setInterval(() => { - if (this.$refs.input) { - this.$refs.input.focus(); - } else { - clearInterval(this.focusTimer); - } - }, 100); - }, - ADD_MESSAGE({ message }) { - this.messages.push(message); - }, - CLEAR_CHAT() { - this.messages = []; - }, - ADD_SUGGESTION({ suggestion }) { - this.addSuggestion(suggestion) - }, - ADD_SUGGESTIONS({ suggestions, removeAll }) { - removeAll = removeAll || false; - - if (removeAll) { - this.backingSuggestions = [] - this.removedSuggestions = [] - } - - for (var suggestion in suggestions) { - this.addSuggestion(suggestion) - } - }, - REMOVE_SUGGESTION({ name }) { - const suggestionIndex = this.backingSuggestions.findIndex(suggestion => suggestion.name == name); - - if (suggestionIndex >= 0) { - this.backingSuggestions = this.backingSuggestions.splice(suggestionIndex, 1) - } - - const removedSuggestionIndex = this.removedSuggestions.findIndex(removedSuggestion == name); - - if (removedSuggestionIndex < 0) { - this.removedSuggestions.push(name); - } - }, - clearShowWindowTimer() { - if (this.showWindowTimer) { - clearTimeout(this.showWindowTimer) - } - }, - resetShowWindowTimer() { - this.clearShowWindowTimer(); - this.showWindowTimer = setTimeout(() => { - if (!this.showInput) { - this.showWindow = false; - } - }, 7000) - }, - keyUp() { - this.resize(); - }, - keyDown(e) { - if (e.which === 38 || e.which === 40) { - e.preventDefault(); - this.moveOldMessageIndex(e.which === 38); - } else if (e.which == 33) { - var buf = document.getElementsByClassName('core-chat-inner-messages')[0]; - buf.scrollTop = buf.scrollTop - 100; - } else if (e.which == 34) { - var buf = document.getElementsByClassName('core-chat-inner-messages')[0]; - buf.scrollTop = buf.scrollTop + 100; - } - }, - moveOldMessageIndex(up) { - if (up && this.oldMessages.length > this.oldMessagesIndex + 1) { - this.oldMessagesIndex += 1; - this.message = this.oldMessages[this.oldMessagesIndex]; - } else if (!up && this.oldMessagesIndex - 1 >= 0) { - this.oldMessagesIndex -= 1; - this.message = this.oldMessages[this.oldMessagesIndex]; - } else if (!up && this.oldMessagesIndex - 1 === -1) { - this.oldMessagesIndex = -1; - this.message = ''; - } - }, - resize() { - const input = this.$refs.input; - - input.style.height = '5px'; - input.style.height = `${input.scrollHeight + 2}px`; - }, - send(e) { - if(this.message !== '') { - $.post('http://corev_client/chat_results', JSON.stringify({ - message: this.message, - })); - this.oldMessages.unshift(this.message); - this.oldMessagesIndex = -1; - this.hideInput(); - } else { - this.hideInput(true); - } - }, - hideInput(canceled = false) { - if (canceled) { - $.post('http://corev_client/chat_results', JSON.stringify({ canceled })); - } - - this.message = ''; - this.showInput = false; - - clearInterval(this.focusTimer); - - this.resetShowWindowTimer(); - }, - addSuggestion(suggestion) { - const existingSuggestion = this.backingSuggestions.find(a => a.name == suggestion.name); - - if (existingSuggestion) { - if (suggestion.help || suggestion.params) { - existingSuggestion.help = suggestion.help || existingSuggestion.help || ''; - existingSuggestion.params = suggestion.params || existingSuggestion.params || []; - } - - return; - } - - if (!suggestion.params) { suggestion.params = []; } - - this.backingSuggestions.push(suggestion); - - if (typeof this.removedSuggestions != 'undefined' && typeof removedSuggestion != 'undefined') { - const removedSuggestionIndex = this.removedSuggestions.findIndex(removedSuggestion == name); - - if (removedSuggestionIndex >= 0) { - this.removedSuggestions = this.removedSuggestions.splice(removedSuggestionIndex, 1); - } - } else { - this.removedSuggestions = []; - } - }, - mountedCallback() { - if (window.frameworkLoaded) { - $.post('http://corev_client/chat_loaded', JSON.stringify({})); - - this.listener = window.addEventListener('chat_message', (event) => { - const item = event.data || event.detail; - - if (this[item.action]) { - this[item.action](item); - } - }); - } else { - window.setTimeout(this.mountedCallback, 100); - } - } - }, -}; \ No newline at end of file diff --git a/hud/assets/js/chat/config.js b/hud/assets/js/chat/config.js deleted file mode 100644 index f93cc41..0000000 --- a/hud/assets/js/chat/config.js +++ /dev/null @@ -1,20 +0,0 @@ -// DO NOT EDIT THIS FILE -// Copy it to `config.js` and edit it -window.CONFIG = { - defaultTemplateId: 'default', //This is the default template for 2 args1 - defaultAltTemplateId: 'defaultAlt', //This one for 1 arg - templates: { //You can add static templates here - 'default': '{0}: {1}', - 'defaultAlt': '{0}', - 'print': '
{0}
', - 'example:important': '

^2{0}

' - }, - fadeTimeout: 7000, - suggestionLimit: 5, - style: { - background: 'rgba(52, 73, 94, 0.7)', - width: '38%', - height: '22%', - } - }; - \ No newline at end of file diff --git a/hud/assets/js/chat/message.js b/hud/assets/js/chat/message.js deleted file mode 100644 index a1e44b9..0000000 --- a/hud/assets/js/chat/message.js +++ /dev/null @@ -1,42 +0,0 @@ -Vue.component('message', { - template: '#message_template', - data() { - return {}; - }, - computed: { - }, - methods: { - }, - props: { - type: { - type: String, - default: 'ooc' - }, - time: { - type: String, - default: () => { - var today = new Date(); - - return today.getHours() + ":" + today.getMinutes(); - } - }, - icon: { - type: String, - default: 'globe-europe', - }, - iconlib: { - type: String, - default: 'fas' - }, - sender: { - type: String, - default: 'Anoniem', - }, - message: { - type: String, - default: '', - }, - }, -}); - - \ No newline at end of file diff --git a/hud/assets/js/chat/suggestions.js b/hud/assets/js/chat/suggestions.js deleted file mode 100644 index e5350d1..0000000 --- a/hud/assets/js/chat/suggestions.js +++ /dev/null @@ -1,47 +0,0 @@ -Vue.component('suggestions', { - template: '#suggestions_template', - props: ['message', 'suggestions'], - data() { - return {}; - }, - computed: { - currentSuggestions() { - if (this.message === '') { - return []; - } - - const currentSuggestions = this.suggestions.filter((s) => { - if (!s.name.startsWith(this.message)) { - const suggestionSplitted = s.name.split(' '); - const messageSplitted = this.message.split(' '); - for (let i = 0; i < messageSplitted.length; i += 1) { - if (i >= suggestionSplitted.length) { - return i < suggestionSplitted.length + s.params.length; - } - if (suggestionSplitted[i] !== messageSplitted[i]) { - return false; - } - } - } - return true; - }).slice(0, CONFIG.suggestionLimit); - - currentSuggestions.forEach((s) => { - // eslint-disable-next-line no-param-reassign - s.disabled = !s.name.startsWith(this.message); - - s.params.forEach((p, index) => { - const wType = (index === s.params.length - 1) ? '.' : '\\S'; - const regex = new RegExp(`${s.name} (?:\\w+ ){${index}}(?:${wType}*)$`, 'g'); - - // eslint-disable-next-line no-param-reassign - p.disabled = this.message.match(regex) == null; - }); - }); - - return currentSuggestions; - }, - }, - methods: {}, -}); - \ No newline at end of file diff --git a/hud/assets/js/hud.js b/hud/assets/js/hud.js deleted file mode 100644 index 3cf3049..0000000 --- a/hud/assets/js/hud.js +++ /dev/null @@ -1,82 +0,0 @@ -window.HUD = { - template: '#hud_template', - name: 'HUD', - data() { - return { - job_name: 'Unknown', - job_grade: 'Unknown', - job2_name: 'Unknown', - job2_grade: 'Unknown', - status: { - health: 100, - thirst: 100, - hunger: 100, - armor: 100 - }, - shouldHide: false - } - }, - mounted() { - this.mountedCallback(); - }, - watch: { - job_name() {}, - job_grade() {}, - job2_name() {}, - job2_grade() {}, - status() {}, - }, - methods: { - CHANGE_STATE({ shouldHide }) { - this.shouldHide = shouldHide - }, - UPDATE_STATUS({ status, value }) { - if (status == undefined || typeof status == 'undefined' || status == null || typeof status != 'string') { status = 'unknown'; } - if (value == undefined || typeof value == 'undefined' || value == null || typeof value != 'number') { value = -1; } - - switch(status.toLowerCase()) { - case 'health': - if (value >= 0) { this.status.health = value; } - break; - case 'thirst': - if (value >= 0) { this.status.thirst = value; } - break; - case 'hunger': - if (value >= 0) { this.status.hunger = value; } - break; - case 'armor': - if (value >= 0) { this.status.armor = value; } - break; - } - }, - UPDATE_JOB({ jobName, jobGrade }) { - if (jobName == undefined || typeof jobName == 'undefined' || jobName == null || typeof jobName != 'string') { jobName = this.job_name; } - if (jobGrade == undefined || typeof jobGrade == 'undefined' || jobGrade == null || typeof jobGrade != 'string') { jobGrade = this.job_grade; } - - this.job_name = jobName; - this.job_grade = jobGrade; - }, - UPDATE_JOB2({ jobName, jobGrade }) { - if (jobName == undefined || typeof jobName == 'undefined' || jobName == null || typeof jobName != 'string') { jobName = this.job2_name; } - if (jobGrade == undefined || typeof jobGrade == 'undefined' || jobGrade == null || typeof jobGrade != 'string') { jobGrade = this.job2_grade; } - - this.job2_name = jobName; - this.job2_grade = jobGrade; - }, - mountedCallback() { - if (window.frameworkLoaded) { - $.post('http://corev_client/hud_loaded', JSON.stringify({})); - - this.listener = window.addEventListener('hud_message', (event) => { - const item = event.data || event.detail; - - if (this[item.action]) { - this[item.action](item); - } - }); - } else { - window.setTimeout(this.mountedCallback, 100); - } - } - }, -}; \ No newline at end of file diff --git a/hud/assets/js/menu.js b/hud/assets/js/menu.js deleted file mode 100644 index b5b00be..0000000 --- a/hud/assets/js/menu.js +++ /dev/null @@ -1,364 +0,0 @@ -$(function(){ - window.menus = {}; - - menus.template = document.getElementById('menu-template').innerHTML; - menus.currentResource = 'corev_client'; - menus.opened = {}; - menus.currentMenu = null; - menus.pos = {}; - - menus.open = function(namespace, name, data) { - if (typeof data == 'undefined') { return; } - - if (typeof menus.opened[namespace] == 'undefined' || menus.opened[namespace] == null) { menus.opened[namespace] = {} } - if (typeof menus.pos[namespace] == 'undefined' || menus.pos[namespace] == null) { menus.pos[namespace] = {}; } - if (typeof data.items == 'undefined' || data.items == null) { data.items = [] } - - data.__namespace = namespace; - data.__name = name; - data.__open = false; - - for (let i = 0; i < data.items.length; i++) { - if (typeof data.items[i] != 'undefined') { - data.items[i].__namespace = namespace; - data.items[i].__name = name; - data.items[i].index = i; - - if (typeof data.items[i].type == 'undefined') { - data.items[i].type = 'default'; - } - - if (typeof data.items[i].selected != 'undefined' && data.items[i].selected) { - menus.pos[namespace][name] = i; - } - - if (typeof data.items[i].disabled == 'undefined' || !data.items[i].disabled || data.items[i].disabled == 0) { - data.items[i].disabled = false; - } else { - data.items[i].disabled = true; - } - } - } - - let cachedPosition = 0; - - if (typeof menus.pos[namespace][name] != 'undefined') { - cachedPosition = menus.pos[namespace][name]; - } - - let filteredMenuItems = menus.filterDisabled(data); - - if (typeof filteredMenuItems == 'undefined' || - filteredMenuItems == null) { - menus.pos[namespace][name] = 0; - } else if (typeof filteredMenuItems[0] == 'undefined' || - filteredMenuItems[0] == null) { - menus.pos[namespace][name] = 0; - } else { - let posStillExists = false; - - for (let i = 0; i < data.items.length; i++) { - if (data.items[i].pos == cachedPosition) { - posStillExists = true; - menus.pos[namespace][name] = data.items[i].pos; - break; - } - } - - if (!posStillExists && data.items.length > 0) { - menus.pos[namespace][name] = data.items[0].pos; - } else if (!posStillExists) { - menus.pos[namespace][name] = 0; - } - } - - data.description = ''; - - if (data.items.length > 0) { - for(i = 0; i < data.items.length; i++) { - if (i == menus.pos[namespace][name]) { - data.items[i].selected = true; - - if (typeof data.items[i].description != 'undefined' && data.items[i].description != null) { - data.description = data.items[i].description - } - } else { - data.items[i].selected = false; - } - } - } - - menus.opened[namespace][name] = data; - menus.opened[namespace][name].position = menus.pos[namespace][name]; - menus.currentMenu = menus.opened[namespace][name]; - - menus.render(); - - data.__open = true; - - SendMessage(namespace, name, 'open', menus.opened[namespace][name]); - }; - - menus.close = function(_namespace, _name) { - if (typeof menus.currentMenu == 'undefined' || menus.currentMenu == null) { return; } - - let namespace = menus.currentMenu.__namespace - let name = menus.currentMenu.__name - - if (typeof namespace == 'undefined' || typeof name == 'undefined' || namespace == null || name == null) { return; } - if (_namespace != namespace || _name != name) { return; } - if (typeof menus.opened[namespace] == 'undefined' || typeof menus.opened[namespace][name] == 'undefined') { return; } - - menus.opened[namespace][name].__open = false; - menus.currentMenu = null; - - menus.render(); - - SendMessage(namespace, name, 'close', menus.opened[namespace][name]); - }; - - menus.filterDisabled = function(menu) { - let menu_items = [] - - if (menu == null || menu.items == null) { - return [] - } - - for (let i = 0; i < menu.items.length; i++) { - if (typeof menu.items[i] == 'undefined' || menu.items[i] == null) { - continue - } - - menu.items[i].pos = i; - - if (menu.items[i].disabled == null || - menu.items[i].disabled == false) { - menu_items.push(menu.items[i]) - } - } - - return menu_items - }; - - menus.render = function() { - let menuContainer = document.getElementById('menus'); - - if (typeof menus.currentMenu == 'undefined' || menus.currentMenu == null) { - menuContainer.innerHTML = ''; - return; - } - - let namespace = menus.currentMenu.__namespace - let name = menus.currentMenu.__name - - let menu = menus.opened[namespace][name] - let view = JSON.parse(JSON.stringify(menu)); - - menuContainer.innerHTML = Mustache.render(menus.template, view); - }; - - menus.change = function(namespace, name, data) { - SendMessage(namespace, name, 'change', data); - } - - menus.submit = function(namespace, name, data) { - SendMessage(namespace, name, 'submit', data); - } - - menus.onData = (data) => { - switch (data.action) { - case 'openMenu': { - menus.open(data.__namespace, data.__name, data.data); - break; - } - - case 'closeMenu': { - menus.close(data.__namespace, data.__name); - break; - } - - case 'controlPressed': { - switch (data.control) { - case 'ENTER': { - if (typeof menus.currentMenu == 'undefined' || menus.currentMenu == null) { return; } - - let namespace = menus.currentMenu.__namespace - let name = menus.currentMenu.__name - - if (typeof namespace == 'undefined' || typeof name == 'undefined' || namespace == null || name == null) { return; } - - if (typeof data == 'undefined') { return; } - if (typeof menus.opened[namespace] == 'undefined') { return; } - if (typeof menus.opened[namespace][name] == 'undefined') { return; } - - let menu = menus.opened[namespace][name]; - let position = menus.pos[namespace][name]; - - if (menu.items.length > 0) { - menus.submit(namespace, name, { - __namespace: namespace, - __name: name, - index: position - }); - } - - break; - } - - case 'BACKSPACE': { - menus.close(data.__namespace, data.__name); - break; - } - - case 'TOP': { - if (typeof menus.currentMenu == 'undefined' || menus.currentMenu == null) { return; } - - let namespace = menus.currentMenu.__namespace - let name = menus.currentMenu.__name - - if (typeof namespace == 'undefined' || typeof name == 'undefined' || namespace == null || name == null) { return; } - - if (typeof data == 'undefined') { return; } - if (typeof menus.opened[namespace] == 'undefined') { return; } - if (typeof menus.opened[namespace][name] == 'undefined') { return; } - - let menu = menus.opened[namespace][name]; - let filteredMenuItems = menus.filterDisabled(menu); - let position = menus.pos[namespace][name] + 0; - - if (filteredMenuItems.length > 0) { - if (position > 0) { - let index = 0; - - for (let i = 0; i < filteredMenuItems.length; i++) { - if (position == filteredMenuItems[i].pos) { - index = i; - } - } - - index--; - - if (index < 0) { - index = filteredMenuItems.length - 1 - } else if (index > filteredMenuItems.length) { - index = 0; - } - - menus.pos[namespace][name] = filteredMenuItems[index].pos; - } else { - menus.pos[namespace][name] = filteredMenuItems[filteredMenuItems.length - 1].pos; - } - - menus.opened[namespace][name].description = ''; - - for(i = 0; i < menu.items.length; i++) { - if (i == menus.pos[namespace][name]) { - menus.opened[namespace][name].items[i].selected = true; - - if (typeof menus.opened[namespace][name].items[i].description != 'undefined' && menus.opened[namespace][name].items[i].description != null) { - menus.opened[namespace][name].description = menus.opened[namespace][name].items[i].description; - } - } else { - menus.opened[namespace][name].items[i].selected = false; - } - } - - menus.render(); - menus.opened[namespace][name].position = menus.pos[namespace][name]; - menus.change(namespace, name, { - __namespace: namespace, - __name: name, - oldIndex: position, - newIndex: menus.pos[namespace][name] - }); - } - - break; - } - - case 'DOWN': { - if (typeof menus.currentMenu == 'undefined' || menus.currentMenu == null) { return; } - - let namespace = menus.currentMenu.__namespace - let name = menus.currentMenu.__name - - if (typeof namespace == 'undefined' || typeof name == 'undefined' || namespace == null || name == null) { return; } - - if (typeof data == 'undefined') { return; } - if (typeof menus.opened[namespace] == 'undefined') { return; } - if (typeof menus.opened[namespace][name] == 'undefined') { return; } - - let menu = menus.opened[namespace][name]; - let filteredMenuItems = menus.filterDisabled(menu); - let position = menus.pos[namespace][name] + 0; - - if (filteredMenuItems.length > 0) { - if (position < filteredMenuItems[filteredMenuItems.length - 1].pos) { - let index = 0; - - for (let i = 0; i < filteredMenuItems.length; i++) { - if (position == filteredMenuItems[i].pos) { - index = i; - } - } - - index++; - - if (index < 0) { - index = 0 - } else if (index > filteredMenuItems.length) { - index = filteredMenuItems.length - 1; - } - - menus.pos[namespace][name] = filteredMenuItems[index].pos; - } else { - menus.pos[namespace][name] = filteredMenuItems[0].pos; - } - - menus.opened[namespace][name].description = ''; - - for(i = 0; i < menu.items.length; i++) { - if (i == menus.pos[namespace][name]) { - menus.opened[namespace][name].items[i].selected = true; - - if (typeof menus.opened[namespace][name].items[i].description != 'undefined' && menus.opened[namespace][name].items[i].description != null) { - menus.opened[namespace][name].description = menus.opened[namespace][name].items[i].description; - } - } else { - menus.opened[namespace][name].items[i].selected = false; - } - } - - menus.render(); - menus.opened[namespace][name].position = menus.pos[namespace][name]; - menus.change(namespace, name, { - __namespace: namespace, - __name: name, - oldIndex: position, - newIndex: menus.pos[namespace][name] - }); - } - - break; - } - - default: break; - } - - break; - } - - default: break; - } - }; - - window.addEventListener('menu_message', function(event) { - var item = event.data || event.detail; - - if (typeof item == 'undefined' || item == null) { - return - } - - menus.onData(item); - }); -}); \ No newline at end of file diff --git a/hud/assets/js/wheel.js b/hud/assets/js/wheel.js deleted file mode 100644 index de16ac4..0000000 --- a/hud/assets/js/wheel.js +++ /dev/null @@ -1,213 +0,0 @@ -window.WHEEL = { - template: '#wheel-template', - name: 'WHEEL', - data() { - return { - namespace: 'unknown', - name: 'unknown', - shouldHide: true, - items: [], - showing: false, - anchorX: 0, - anchorY: 0, - min: 100 - } - }, - mounted() { - this.mountedCallback(); - }, - watch: { - items() {}, - namespace() {}, - name() {} - }, - methods: { - CHANGE_STATE({ shouldHide, x, y }) { - if (!shouldHide) { - this.onMouseOpen(x, y); - } else { - this.onMouseClose(); - } - - this.shouldHide = shouldHide - }, - SET_NAMESPACE({ namespace, name }) { - if (typeof namespace != 'undefined' && namespace != null) { - this.namespace = namespace || 'unknown'; - } - - if (typeof name != 'undefined' && name != null) { - this.name = name || 'unknown'; - } - }, - CLEAR_ITEMS() { - this.items = []; - }, - ADD_ITEM({ item }) { - this.addItem(item); - }, - ADD_ITEMS({ items, removeAll }) { - removeAll = removeAll || false; - - if (removeAll) { - this.items = []; - } - - for (var i = 0; i < items.length; i++) { - var item = items[i]; - - this.addItem(item); - } - }, - mountedCallback() { - if (window.frameworkLoaded) { - $.post('http://corev_client/wheel_loaded', JSON.stringify({})); - - this.listener = window.addEventListener('wheel_message', (event) => { - const item = event.data || event.detail; - - if (this[item.action]) { - this[item.action](item); - } - }); - - document.body.addEventListener('mousemove', this.onMouseMove); - document.body.addEventListener('touchmove', e => this.onMouseMove(e.touches[0])); - } else { - window.setTimeout(this.mountedCallback, 100); - } - }, - getCurrentItemIndex() { - if (typeof this.items != 'undefined' && this.items != null) { - return this.items.length + 1; - } else { - return 0; - } - }, - addItem(item) { - if (typeof item == 'undefined' || item == null) { - return; - } - - const _item = { - show: false - } - - if (typeof item.namespace != 'undefined' && item.namespace != null) { - _item.namespace = item.namespace || this.namespace || 'unknown'; - } - - if (typeof item.name != 'undefined' && item.name != null) { - _item.name = item.name || this.name || 'unknown'; - } - - if (typeof item.id != 'undefined' && item.id != null) { - _item.show = true; - _item.id = item.id || this.getCurrentItemIndex(); - } else { - _item.id = item.id || this.getCurrentItemIndex(); - } - - if (typeof item.icon != 'undefined' && item.icon != null) { - _item.show = true; - _item.icon = item.icon || 'fa-angle-right'; - } - - if (typeof item.lib != 'undefined' && item.lib != null) { - _item.show = true; - _item.lib = item.lib || 'fad'; - } - - if (!_item.show) { - _item.class = 'disabled' - } else { - _item.class = '' - } - - this.items.push(_item) - }, - onMouseMove({ clientX: x, clientY: y }) { - if (!this.showing) return; - - const wheel = this.getWheel(); - - let dx = x - this.anchorX; - let dy = y - this.anchorY; - let mag = Math.sqrt(dx * dx + dy * dy); - let index = 0; - - if (mag >= this.min) { - let deg = Math.atan2(dy, dx) + 0.625 * Math.PI; - while (deg < 0) deg += Math.PI * 2; - index = Math.floor(deg / Math.PI * 4) + 1; - } - - wheel.setAttribute('data-chosen', index); - }, - onMouseOpen(x, y) { - const wheel = this.getWheel(); - - this.showing = true; - this.anchorX = x; - this.anchorY = y; - - wheel.style.setProperty('--x', `${x}px`); - wheel.style.setProperty('--y', `${y}px`); - wheel.classList.add('on'); - }, - onMouseClose() { - const wheel = this.getWheel(); - - this.showing = false; - - let chosen = wheel.getAttribute('data-chosen') || 0; - - if (typeof chosen == 'undefined') { - chosen = 0; - } else if (typeof chosen == 'string') { - chosen = parseInt(chosen) || 0; - } else if (typeof chosen != 'number') { - chosen = 0; - } - - if (chosen != 0) { - $.post('http://corev_client/wheel_results', JSON.stringify({ - selected: chosen, - __namespace: this.namespace || 'unknown', - __name: this.name || 'unknown' - })); - } - - wheel.setAttribute('data-chosen', 0); - wheel.classList.remove('on'); - }, - getWheel() { - return document.querySelector('.wheel'); - } - }, - computed: { - getItems() { - if (typeof this.items == 'undefined' || this.items == null) { - this.items = []; - } - - var startIndex = this.items.length || 0; - - for (var i = startIndex; i < 8; i++) { - this.items[i] = { - namespace: this.namespace, - name: this.name, - show: false, - title: '', - description: '', - id: -1, - icon: '', - lib: '', - class: 'disabled' - } - } - - return this.items - } - } -}; \ No newline at end of file diff --git a/hud/assets/js/wrapper.js b/hud/assets/js/wrapper.js deleted file mode 100644 index ca599a7..0000000 --- a/hud/assets/js/wrapper.js +++ /dev/null @@ -1,49 +0,0 @@ -(() => { - let ChunkWrapper = {}; - - ChunkWrapper.MessageSize = 1024; - ChunkWrapper.messageId = 0; - - window.SendMessage = function (namespace, name, messageType, msg) { - msg.__type = messageType; - - ChunkWrapper.messageId = (ChunkWrapper.messageId < 65535) ? ChunkWrapper.messageId + 1 : 0; - - const _data = JSON.parse(JSON.stringify(msg)); - - if (_data.items != null || typeof _data.items != 'undefined') { - delete _data.items; - } - - const str = JSON.stringify(_data); - - for (let i = 0; i < str.length; i++) { - - let count = 0; - let chunk = ''; - - while (count < ChunkWrapper.MessageSize && i < str.length) { - - chunk += str[i]; - - count++; - i++; - } - - i--; - - let data = { - __namespace: namespace, - __name: name, - __type: messageType, - id: ChunkWrapper.messageId, - chunk: chunk - } - - if (i == str.length - 1) - data.end = true; - - $.post('http://corev_client/__chunk', JSON.stringify(data)); - } - } -})(); \ No newline at end of file diff --git a/hud/assets/webfonts/fa-brands-400.woff2 b/hud/assets/webfonts/fa-brands-400.woff2 deleted file mode 100644 index 5f5017d..0000000 Binary files a/hud/assets/webfonts/fa-brands-400.woff2 and /dev/null differ diff --git a/hud/assets/webfonts/fa-light-300.woff2 b/hud/assets/webfonts/fa-light-300.woff2 deleted file mode 100644 index 96bc16b..0000000 Binary files a/hud/assets/webfonts/fa-light-300.woff2 and /dev/null differ diff --git a/hud/assets/webfonts/fa-regular-400.woff b/hud/assets/webfonts/fa-regular-400.woff deleted file mode 100644 index 0f56619..0000000 Binary files a/hud/assets/webfonts/fa-regular-400.woff and /dev/null differ diff --git a/hud/assets/webfonts/fa-regular-400.woff2 b/hud/assets/webfonts/fa-regular-400.woff2 deleted file mode 100644 index 6280751..0000000 Binary files a/hud/assets/webfonts/fa-regular-400.woff2 and /dev/null differ diff --git a/hud/assets/webfonts/fa-solid-900.woff2 b/hud/assets/webfonts/fa-solid-900.woff2 deleted file mode 100644 index 6d40484..0000000 Binary files a/hud/assets/webfonts/fa-solid-900.woff2 and /dev/null differ diff --git a/hud/ui.html b/hud/ui.html deleted file mode 100644 index 5b8f70c..0000000 --- a/hud/ui.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - CoreV Framework - - - -
-
- -
- - - - - - - - - - - - - - - - - - - - diff --git a/langs/nl.json b/langs/nl.json deleted file mode 100644 index ffdf326..0000000 --- a/langs/nl.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "corev_loading": "Is nu aan het laden.....", - "corev_server_load": "Server bestanden zijn geladen in %s seconden", - "corev_loaded": "^2Alle onderdelen van framework zijn geladen ^7\n=====================================\n-> ^1External Resources: ^7%s ^7\n-> ^1Internal Resources: ^7%s ^7\n-> ^1Internal Modules: ^7%s ^7\n-> ^1Framework laadtijd: ^7%s seconden ^7\n=====================================\n^3VERSIE: ^71.0.0", - "corev_deleting_resource": "Verwijderen van resource \"^5%s^7\"", - "corev_generate_folder_structure": "Aanmaken van mappen voor \"^5%s^7\"", - "corev_copy_files": "Bestanden aan het kopiëren van \"^5%s^7\" naar \"^5%s^7\"", - "corev_fxmanifest": "Bestand ^5fxmanifest.lua^7 aan het genereren voor \"^5%s^7\"", - "corev_command_stop": "Uitvoeren van command \"^5stop %s^7\"", - "corev_command_refresh": "Uitvoeren van command \"^5refresh^7\"", - "corev_command_start": "Uitvoeren van command \"^5start %s^7\"", - "corev_isloading": "Server is aan het opstarten, event geduld a.u.b. [%s]", - "corev_help_reload_client": "Reload CoreV client files and update the resource", - "weapon_dagger": "Antique Cavalry Dagger", - "weapon_bat": "Baseball Bat", - "weapon_bottle": "Broken Bottle", - "weapon_crowbar": "Crowbar", - "weapon_unarmed": "Fist", - "weapon_flashlight": "Flashlight", - "weapon_golfclub": "Golf Club", - "weapon_hammer": "Hammer", - "weapon_hatchet": "Hatchet", - "weapon_knuckle": "Brass Knuckles", - "weapon_knife": "Knife", - "weapon_machete": "Machete", - "weapon_switchblade": "Switchblade", - "weapon_nightstick": "Nightstick", - "weapon_wrench": "Pipe Wrench", - "weapon_battleaxe": "Battle Axe", - "weapon_poolcue": "Pool Cue", - "weapon_stone_hatchet": "Stone Hatchet", - "weapon_pistol": "Pistol", - "weapon_pistol_mk2": "Pistol Mk II", - "weapon_combatpistol": "Combat Pistol", - "weapon_appistol": "AP Pistol", - "weapon_stungun": "Stun Gun", - "weapon_pistol50": "Pistol .50", - "weapon_snspistol": "SNS Pistol", - "weapon_snspistol_mk2": "SNS Pistol Mk II", - "weapon_heavypistol": "Heavy Pistol", - "weapon_vintagepistol": "Vintage Pistol", - "weapon_flaregun": "Flare Gun", - "weapon_marksmanpistol": "Marksman Pistol", - "weapon_revolver": "Heavy Revolver", - "weapon_revolver_mk2": "Heavy Revolver Mk II", - "weapon_doubleaction": "Double Action Revolver", - "weapon_raypistol": "Up-n-Atomizer", - "weapon_ceramicpistol": "Ceramic Pistol", - "weapon_navyrevolver": "Navy Revolver", - "weapon_microsmg": "Micro SMG", - "weapon_smg": "SMG", - "weapon_smg_mk2": "SMG Mk II", - "weapon_assaultsmg": "Assault SMG", - "weapon_combatpdw": "Combat PDW", - "weapon_machinepistol": "Machine Pistol", - "weapon_minismg": "Mini SMG", - "weapon_raycarbine": "Unholy Hellbringer", - "weapon_pumpshotgun": "Pump Shotgun", - "weapon_pumpshotgun_mk2": "Pump Shotgun Mk II", - "weapon_sawnoffshotgun": "Sawed-Off Shotgun", - "weapon_assaultshotgun": "Assault Shotgun", - "weapon_bullpupshotgun": "Bullpup Shotgun", - "weapon_musket": "Musket", - "weapon_heavyshotgun": "Heavy Shotgun", - "weapon_dbshotgun": "Double Barrel Shotgun", - "weapon_autoshotgun": "Sweeper Shotgun", - "weapon_assaultrifle": "Assault Rifle", - "weapon_assaultrifle_mk2": "Assault Rifle Mk II", - "weapon_carbinerifle": "Carbine Rifle", - "weapon_carbinerifle_mk2": "Carbine Rifle Mk II", - "weapon_advancedrifle": "Advanced Rifle", - "weapon_specialcarbine": "Special Carbine", - "weapon_specialcarbine_mk2": "Special Carbine Mk II", - "weapon_bullpuprifle": "Bullpup Rifle", - "weapon_bullpuprifle_mk2": "Bullpup Rifle Mk II", - "weapon_compactrifle": "Compact Rifle", - "weapon_mg": "MG", - "weapon_combatmg": "Combat MG", - "weapon_combatmg_mk2": "Combat MG Mk II", - "weapon_gusenberg": "Gusenberg Sweeper", - "weapon_sniperrifle": "Sniper Rifle", - "weapon_heavysniper": "Heavy Sniper", - "weapon_heavysniper_mk2": "Heavy Sniper Mk II", - "weapon_marksmanrifle": "Marksman Rifle", - "weapon_marksmanrifle_mk2": "Marksman Rifle Mk II", - "weapon_rpg": "RPG", - "weapon_grenadelauncher": "Grenade Launcher", - "weapon_grenadelauncher_smoke": "Grenade Launcher Smoke", - "weapon_minigun": "Minigun", - "weapon_firework": "Firework Launcher", - "weapon_railgun": "Railgun", - "weapon_hominglauncher": "Homing Launcher", - "weapon_compactlauncher": "Compact Grenade Launcher", - "weapon_rayminigun": "Widowmaker", - "weapon_grenade": "Grenade", - "weapon_bzgas": "BZ Gas", - "weapon_molotov": "Molotov Cocktail", - "weapon_stickybomb": "Sticky Bomb", - "weapon_proxmine": "Proximity Mines", - "weapon_snowball": "Snowballs", - "weapon_pipebomb": "Pipe Bombs", - "weapon_ball": "Baseball", - "weapon_smokegrenade": "Tear Gas", - "weapon_flare": "Flare", - "weapon_petrolcan": "Jerry Can", - "gadget_parachute": "Parachute", - "weapon_fireextinguisher": "Fire Extinguisher", - "weapon_hazardcan": "Hazardous Jerry Can" -} \ No newline at end of file diff --git a/libs/common.lua b/libs/common.lua deleted file mode 100644 index 8c8e3bc..0000000 --- a/libs/common.lua +++ /dev/null @@ -1,29 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -CoreV = { - Translations = {} -} - -_ENV.SERVER = IsDuplicityVersion() -_ENV.CLIENT = not _ENV.SERVER -_ENV.OperatingSystem = Config.OS -_ENV.IDTYPE = string.lower(Config.IdentifierType or 'license') -_ENV.LANGUAGE = string.lower(Config.Langauge or 'en') -_G.SERVER = IsDuplicityVersion() -_G.CLIENT = not _G.SERVER -_G.OperatingSystem = Config.OS -_G.IDTYPE = string.lower(Config.IdentifierType or 'license') -_G.LANGUAGE = string.lower(Config.Langauge or 'en') - -if (SERVER) then - _ENV.DBNAME = Config.DatabaseName or 'Unknown' - _G.DBNAME = Config.DatabaseName or 'Unknown' -end \ No newline at end of file diff --git a/libs/enums/markers.lua b/libs/enums/markers.lua deleted file mode 100644 index c74399e..0000000 --- a/libs/enums/markers.lua +++ /dev/null @@ -1,56 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -MarkerTypes = { - MarkerTypeUpsideDownCone = 0, - MarkerTypeVerticalCylinder = 1, - MarkerTypeThickChevronUp = 2, - MarkerTypeThinChevronUp = 3, - MarkerTypeCheckeredFlagRect = 4, - MarkerTypeCheckeredFlagCircle = 5, - MarkerTypeVerticleCircle = 6, - MarkerTypePlaneModel = 7, - MarkerTypeLostMCTransparent = 8, - MarkerTypeLostMC = 9, - MarkerTypeNumber0 = 10, - MarkerTypeNumber1 = 11, - MarkerTypeNumber2 = 12, - MarkerTypeNumber3 = 13, - MarkerTypeNumber4 = 14, - MarkerTypeNumber5 = 15, - MarkerTypeNumber6 = 16, - MarkerTypeNumber7 = 17, - MarkerTypeNumber8 = 18, - MarkerTypeNumber9 = 19, - MarkerTypeChevronUpx1 = 20, - MarkerTypeChevronUpx2 = 21, - MarkerTypeChevronUpx3 = 22, - MarkerTypeHorizontalCircleFat = 23, - MarkerTypeReplayIcon = 24, - MarkerTypeHorizontalCircleSkinny = 25, - MarkerTypeHorizontalCircleSkinny_Arrow = 26, - MarkerTypeHorizontalSplitArrowCircle = 27, - MarkerTypeDebugSphere = 28, - MarkerTypeDollarSign = 29, - MarkerTypeHorizontalBars = 30, - MarkerTypeWolfHead = 31, - MarkerTypeQuestionMark = 32, - MarkerTypePlaneSymbol = 33, - MarkerTypeHelicopterSymbol = 34, - MarkerTypeBoatSymbol = 35, - MarkerTypeCarSymbol = 36, - MarkerTypeMotorcycleSymbol = 37, - MarkerTypeBikeSymbol = 38, - MarkerTypeTruckSymbol = 39, - MarkerTypeParachuteSymbol = 40, - MarkerTypeJetpackSymbol = 41, - MarkerTypeSawbladeSymbol = 42, - MarkerTypeUnknownCylinder = 43 -} \ No newline at end of file diff --git a/libs/enums/vehicle.lua b/libs/enums/vehicle.lua deleted file mode 100644 index d1bab93..0000000 --- a/libs/enums/vehicle.lua +++ /dev/null @@ -1,102 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -VehicleClasses = { - Compacts = 0, - Sedans = 1, - SUVs = 2, - Coupes = 3, - Muscle = 4, - SportsClassics = 5, - Sports = 6, - Super = 7, - Motorcycles = 8, - OffRoad = 9, - Industrial = 10, - Utility = 11, - Vans = 12, - Cycles = 13, - Boats = 14, - Helicopters = 15, - Planes = 16, - Service = 17, - Emergency = 18, - Military = 19, - Commercial = 20, - Trains = 21 -} - -VehicleModType = { - Spoilers = 0, - FrontBumper = 1, - RearBumper = 2, - SideSkirt = 3, - Exhaust = 4, - Frame = 5, - Grille = 6, - Hood = 7, - Fender = 8, - RightFender = 9, - Roof = 10, - Engine = 11, - Brakes = 12, - Transmission = 13, - Horns = 14, - Suspension = 15, - Armor = 16, - FrontWheel = 23, - RearWheel = 24, - PlateHolder = 25, - VanityPlates = 26, - TrimDesign = 27, - Ornaments = 28, - Dashboard = 29, - DialDesign = 30, - DoorSpeakers = 31, - Seats = 32, - SteeringWheels = 33, - ColumnShifterLevers = 34, - Plaques = 35, - Speakers = 36, - Trunk = 37, - Hydraulics = 38, - EngineBlock = 39, - AirFilter = 40, - Struts = 41, - ArchCover = 42, - Aerials = 43, - Trim = 44, - Tank = 45, - Windows = 46, - UNK47 = 47, - Livery = 48 -} - -VehicleToggleModType = { - UNK17 = 17, - Turbo = 18, - UNK19 = 19, - TireSmoke = 20, - UNK21 = 21, - XenonHeadlights = 22 -} - -VehicleWheelType ={ - Sport = 0, - Muscle = 1, - Lowrider = 2, - SUV = 3, - Offroad = 4, - Tuner = 5, - BikeWheels = 6, - HighEnd = 7, - BennysOriginals = 8, - BennysBespoke = 9 -} \ No newline at end of file diff --git a/libs/framework/events.lua b/libs/framework/events.lua deleted file mode 100644 index 340b544..0000000 --- a/libs/framework/events.lua +++ /dev/null @@ -1,476 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local events = { - client = {}, - server = {} -} - -events.__onEvent = function(event, name, module, func, ...) - if (event == nil or type(event) ~= 'string') then return end - if (name ~= nil and (type(name) ~= 'string' and type(name) ~= 'table')) then name = tostring(name) end - if (func == nil or type(func) ~= 'function') then func = function() end end - - if (type(name) == 'table') then - for _, _name in pairs(name or {}) do - if (type(_name) == 'string') then - events.__onEvent(event, _name, func, ...) - end - end - - return - end - - if (event ~= nil) then event = string.lower(event) end - if (name ~= nil) then name = string.lower(name) end - - if (CLIENT) then - if (events.client == nil) then events.client = {} end - if (events.client[event] == nil) then events.client[event] = {} end - if (name ~= nil and events.client[event][name] == nil) then events.client[event][name] = {} end - - local params = table.pack(...) - - if (name ~= nil) then - table.insert(events.client[event][name], { - module = module, - name = name, - func = func, - params = params - }) - else - table.insert(events.client[event], { - module = module, - name = name, - func = func, - params = params - }) - end - else - module = CurrentFrameworkModule or 'unknown' - - if (events.server == nil) then events.server = {} end - if (events.server[event] == nil) then events.server[event] = {} end - if (name ~= nil and events.server[event][name] == nil) then events.server[event][name] = {} end - - local params = table.pack(...) - - if (name ~= nil) then - table.insert(events.server[event][name], { - module = module, - name = name, - func = func, - params = params - }) - else - table.insert(events.server[event], { - module = module, - name = name, - func = func, - params = params - }) - end - end -end - ---- Register a new on event ---- @param event string Name of event example 'PlayerConnecting' -events.onEvent = function(event, ...) - if (event == nil or type(event) ~= 'string') then return end - - local name = nil - local nameIndex = 999 - local names = nil - local namesIndex = 999 - local callback = nil - local callbackIndex = 999 - local params = table.pack(...) - - for i, param in pairs(params or {}) do - if (type(param) == 'function' and callback == nil) then - callback = param - callbackIndex = type(i) == 'number' and i or tonumber(i) or 0 - break - elseif (type(param) == 'table' and names == nil) then - for _, _name in pairs(param or {}) do - if (type(_name) == 'string') then - if (names == nil) then names = {} end - table.insert(names, _name) - namesIndex = type(i) == 'number' and i or tonumber(i) or 0 - end - end - elseif (name == nil) then - local _name = tostring(param) or '' - - if (_name ~= '' and _name ~= 'nil') then - name = _name - nameIndex = type(i) == 'number' and i or tonumber(i) or 0 - end - end - end - - local _module = 'unknown' - - if (CLIENT) then _module = getCurrentModule() or 'unknown' end - - if (name ~= nil and callback ~= nil and nameIndex < namesIndex) then - table.remove(params, nameIndex) - table.remove(params, callbackIndex) - - events.__onEvent(event, name, _module, callback, table.unpack(params)) - elseif (names ~= nil and callback ~= nil and namesIndex < nameIndex) then - table.remove(params, namesIndex) - table.remove(params, callbackIndex) - - events.__onEvent(event, names, _module, callback, table.unpack(params)) - elseif (callback ~= nil) then - table.remove(params, callbackIndex) - - events.__onEvent(event, nil, _module, callback, table.unpack(params)) - end -end - ---- Remove a event from on event trigger ---- @param event string On event name ---- @param name string Name of entity etc. -events.clearOnEvents = function(event, name) - if (event == nil or type(event) ~= 'string') then return end - if (name ~= nil and (type(name) ~= 'string' and type(name) ~= 'table')) then name = tostring(name) end - - if (name ~= nil and type(name) == 'table') then - for _, _name in pairs(name or {}) do - if (_name ~= nil and type(_name) == 'string') then - events.clearOnEvents(event, _name) - end - end - - return - end - - if (CLIENT) then - local moduleName = getCurrentModule() or 'unknown' - - if (name == nil) then - local clientEvents = (events.client or {})[event] or nil - - if (clientEvents == nil or type(clientEvents) ~= 'table') then return end - - for i, clientEvent in pairs((events.client or {})[event] or {}) do - if (clientEvent.func == nil and type(clientEvent) == 'table') then - for i2, clientSubEvent in pairs(((events.client or {})[event] or {})[i] or {}) do - if (clientSubEvent.func ~= nil and string.lower(clientSubEvent.module) == string.lower(moduleName)) then - table.remove(events.client[event][i], i2) - end - end - elseif (clientEvent.func ~= nil and string.lower(clientEvent.module) == string.lower(moduleName)) then - table.remove(events.client[event], i) - end - end - else - local clientEvents = ((events.client or {})[event] or {})[name] or nil - - if (clientEvents == nil or type(clientEvents) ~= 'table') then return end - - for i, clientEvent in pairs(((events.client or {})[event] or {})[name] or {}) do - if (clientEvent.func == nil and type(clientEvent) == 'table') then - for i2, clientSubEvent in pairs((((events.client or {})[event] or {})[name] or {})[i] or {}) do - if (clientSubEvent.func ~= nil and string.lower(clientSubEvent.module) == string.lower(moduleName)) then - table.remove(events.client[event][name][i], i2) - end - end - elseif (clientEvent.func ~= nil and string.lower(clientEvent.module) == string.lower(moduleName)) then - table.remove(events.client[event][name], i) - end - end - end - else - local moduleName = 'unknown' - - if (name == nil) then - local serverEvents = (events.server or {})[event] or nil - - if (serverEvents == nil or type(serverEvents) ~= 'table') then return end - - for i, serverEvent in pairs((events.server or {})[event] or {}) do - if (serverEvent.func == nil and type(serverEvent) == 'table') then - for i2, serverSubEvent in pairs(((events.server or {})[event] or {})[i] or {}) do - if (serverSubEvent.func ~= nil and string.lower(serverSubEvent.module) == string.lower(moduleName)) then - table.remove(events.server[event][i], i2) - end - end - elseif (serverEvent.func ~= nil and string.lower(serverEvent.module) == string.lower(moduleName)) then - table.remove(events.server[event], i) - end - end - else - local serverEvents = ((events.server or {})[event] or {})[name] or nil - - if (serverEvents == nil or type(serverEvents) ~= 'table') then return end - - for i, serverEvent in pairs(((events.server or {})[event] or {})[name] or {}) do - if (serverEvent.func == nil and type(serverEvent) == 'table') then - for i2, serverSubEvent in pairs((((events.server or {})[event] or {})[name] or {})[i] or {}) do - if (serverSubEvent.func ~= nil and string.lower(serverSubEvent.module) == string.lower(moduleName)) then - table.remove(events.server[event][name][i], i2) - end - end - elseif (serverEvent.func ~= nil and string.lower(serverEvent.module) == string.lower(moduleName)) then - table.remove(events.server[event][name], i) - end - end - end - end -end - ---- Returns if any event has been registerd based on event and name ---- @param event string On event name ---- @param name string Name of entity etc. -events.anyEventRegistered = function(event, name) - if (event == nil or type(event) ~= 'string') then return false end - if (name ~= nil and (type(name) ~= 'string' and type(name) ~= 'table')) then name = tostring(name) end - - if (CLIENT and name ~= nil) then - return #(((events.client or {})[event] or {})[name] or {}) > 0 - elseif (CLIENT) then - return #((events.client or {})[event] or {}) > 0 - elseif (SERVER and name ~= nil) then - return #(((events.server or {})[event] or {})[name] or {}) > 0 - elseif (SERVER) then - return #((events.server or {})[event] or {}) > 0 - end - - return false -end - -if (CLIENT) then - local triggerOnEvent = function(event, name, ...) - if (event == nil or type(event) ~= 'string') then return end - if (name ~= nil and type(name) ~= 'string') then name = tostring(name) end - if (event ~= nil) then event = string.lower(event) end - if (name ~= nil) then name = string.lower(name) end - - local clientEvents = (events.client or {})[event] or {} - - if (name ~= nil and type(name) == 'string') then - clientEvents = clientEvents[name] or {} - end - - local params = table.pack(...) - - for _, _event in pairs(clientEvents or {}) do - if (_event ~= nil and _event.func ~= nil) then - Citizen.CreateThread(function() - try(function() - _event.func(table.unpack(params)) - end, function(err) end) - return - end) - end - end - end - - --- Trigger func by server - ---@param name string Trigger name - ---@param func function Function to trigger - local onServerTrigger = function(name, func) - RegisterNetEvent(name) - AddEventHandler(name, func) - end - - --- Trigger func by client - ---@param name string Trigger name - ---@param func function Function to trigger - local onClientTrigger = function(name, func) - AddEventHandler(name, func) - end - - -- FiveM maniplulation - _ENV.triggerOnEvent = triggerOnEvent - _G.triggerOnEvent = triggerOnEvent - _ENV.onServerTrigger = onServerTrigger - _G.onServerTrigger = onServerTrigger - _ENV.onClientTrigger = onClientTrigger - _G.onClientTrigger = onClientTrigger -end - -if (SERVER) then - local triggerOnEvent = function(event, name, _source, ...) - if (event == nil or type(event) ~= 'string') then return end - if (name ~= nil and type(name) ~= 'string') then name = tostring(name) end - if (_source == nil or type(_source) ~= 'number') then _source = source or -1 end - if (event ~= nil) then event = string.lower(event) end - if (name ~= nil) then name = string.lower(name) end - - local serverEvents = (events.server or {})[event] or {} - - if (name ~= nil and type(name) == 'string') then - serverEvents = serverEvents[name] or {} - end - - local params = table.pack(...) - - for _, _event in pairs(serverEvents or {}) do - if (_event ~= nil and _event.func ~= nil) then - Citizen.CreateThread(function() - try(function() - _event.func(_source, table.unpack(params)) - end, function(err) end) - return - end) - end - end - end - - --- Trigger all player connecting events - --- @param source int PlayerId - local triggerPlayerConnecting = function(source, deferrals) - local serverEvents = (events.server or {})['playerconnecting'] or {} - - for _, playerConnectingEvent in pairs(serverEvents) do - if (playerConnectingEvent ~= nil and playerConnectingEvent.func ~= nil) then - try(function() - local continue, error, error_message = false, false, '' - - playerConnectingEvent.func(source, function() - continue = true - end, function(err_message) - continue = true - error = true - error_message = err_message or 'Unknown Error' - end, deferrals) - - while not continue do - Citizen.Wait(0) - end - - if (error) then - deferrals.done(error_message) - return - end - end, function(err) - deferrals.done('[SCRIPT ERROR]: ' .. err) - end) - end - end - - deferrals.done() - end - - --- Trigger all player connected events - --- @param source int PlayerId - local triggerPlayerConnected = function(source) - local serverEvents = (events.server or {})['playerconnected'] or {} - - for _, playerConnectedEvent in pairs(serverEvents) do - if (playerConnectedEvent ~= nil and playerConnectedEvent.func ~= nil) then - try(function() - local continue, error, error_message = false, false, '' - - playerConnectedEvent.func(source, function() - continue = true - end, function(err_message) - continue = true - error = true - error_message = err_message or 'Unknown Error' - end) - - while not continue do - Citizen.Wait(0) - end - - if (error) then - error:print(error_message) - return - end - end, function(err) end) - end - end - end - - --- Trigger all player disconnect events - --- @param source int PlayerId - local triggerPlayerDisconnect = function(source, reason) - local serverEvents = (events.server or {})['playerdisconnect'] or {} - - for _, playerDisconnectEvent in pairs(serverEvents) do - if (playerDisconnectEvent ~= nil and playerDisconnectEvent.func ~= nil) then - try(function() - local continue, error, error_message = false, false, '' - - playerDisconnectEvent.func(source, function() - continue = true - end, function(err_message) - continue = true - error = true - error_message = err_message or 'Unknown Error' - end, reason) - - while not continue do - Citizen.Wait(0) - end - - if (error) then - error:print(error_message) - return - end - end, function(err) end) - end - end - end - - --- Trigger func by client - ---@param name string Trigger name - ---@param func function Function to trigger - local onClientTrigger = function(name, func) - RegisterServerEvent(name) - AddEventHandler(name, func) - end - - --- Trigger func by server - ---@param name string Trigger name - ---@param func function Function to trigger - local onServerTrigger = function(name, func) - AddEventHandler(name, func) - end - - -- FiveM maniplulation - _ENV.triggerOnEvent = triggerOnEvent - _G.triggerOnEvent = triggerOnEvent - _ENV.triggerPlayerConnecting = triggerPlayerConnecting - _G.triggerPlayerConnecting = triggerPlayerConnecting - _ENV.triggerPlayerConnected = triggerPlayerConnected - _G.triggerPlayerConnected = triggerPlayerConnected - _ENV.triggerPlayerDisconnect = triggerPlayerDisconnect - _G.triggerPlayerDisconnect = triggerPlayerDisconnect - _ENV.onServerTrigger = onServerTrigger - _G.onServerTrigger = onServerTrigger - _ENV.onClientTrigger = onClientTrigger - _G.onClientTrigger = onClientTrigger -end - -local onFrameworkStarted = function(cb) - if (cb ~= nil and type(cb) == 'function') then - Citizen.CreateThread(function() - repeat Citizen.Wait(0) until resource.tasks.loadingFramework == true - - cb() - end) - end -end - --- FiveM maniplulation -_ENV.onFrameworkStarted = onFrameworkStarted -_G.onFrameworkStarted = onFrameworkStarted -_ENV.on = events.onEvent -_G.on = events.onEvent -_ENV.clearOn = events.clearOnEvents -_G.clearOn = events.clearOnEvents -_ENV.anyEvent = events.anyEventRegistered -_G.anyEvent = events.anyEventRegistered \ No newline at end of file diff --git a/libs/framework/functions.lua b/libs/framework/functions.lua deleted file mode 100644 index daadb60..0000000 --- a/libs/framework/functions.lua +++ /dev/null @@ -1,387 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- --- --- Custom function for try catch --- @func function Function to call --- @catch_func function Trigger when exception is given --- -local function try(func, catch_func) - local status, exception = pcall(func) - - if (not status) then - catch_func(exception) - end -end - --- Trim a string --- @value string String to trim --- @result string String after trim --- -local function string_trim(value) - if value then - return (string.gsub(value, "^%s*(.-)%s*$", "%1")) - else - return nil - end -end - ---- Translations ----@param resource Resource ----@param module Module Name ----@param key Translation Key -local function _(resource, module, key, ...) - local translations = CoreV.Translations or {} - local resourceTranslations = translations[resource] or {} - local moduleTranslations = resourceTranslations[module] or {} - local translationKey = moduleTranslations[key] or ('MISSING TRANSLATION [%s][%s][%s]'):format(resource, module, key) - - return translationKey:format(...) -end - ---- Returns a current time as string -local function currentTimeString() - local date_table = os.date("*t") - local hour, minute, second = date_table.hour, date_table.min, date_table.sec - local year, month, day = date_table.year, date_table.month, date_table.day - - if (tonumber(month) < 10) then - month = '0' .. tostring(month) - end - - if (tonumber(day) < 10) then - day = '0' .. tostring(day) - end - - if (tonumber(hour) < 10) then - hour = '0' .. tostring(hour) - end - - if (tonumber(minute) < 10) then - minute = '0' .. tostring(minute) - end - - if (tonumber(second) < 10) then - second = '0' .. tostring(second) - end - - local timestring = '' - - if (string.lower(Config.Locale or 'en') == 'nl') then - timestring = string.format("%d-%d-%d %d:%d:%d", day, month, year, hour, minute, second) - else - timestring = string.format("%d-%d-%d %d:%d:%d", year, month, day, hour, minute, second) - end - - return timestring -end - ---- Split a string by `delim` ---- @param str string String to split ---- @param delim Delimeter to split at -local function split(str, delim) - local t = {} - - for substr in string.gmatch(str, "[^".. delim.. "]*") do - if substr ~= nil and string.len(substr) > 0 then - table.insert(t,substr) - end - end - - return t -end - ---- Round up a value ---- @param value int Value to round up ---- @param numDecimalPlaces int Number of decimals -local function round(value, numDecimalPlaces) - if (numDecimalPlaces) then - local power = 10^numDecimalPlaces - return math.floor((value * power) + 0.5) / (power) - end - - return math.floor(value + 0.5) -end - -local function updateFilePath(file) - _ENV.CurrentFile = file -end - -local function string_replace(str, this, that) - local b,e = str:find(this,1,true) - if b==nil then - return str - else - return str:sub(1,b-1) .. that .. str:sub(e+1):replace(this, that) - end -end - -local function os_currentTime() - local a, b = math.modf(os.clock()) - - if (b == 0) then - b = '000' - else - b = tostring(b):sub(3,5) - end - - local tf = os.date('%Y-%m-%d %H:%M:%S.', os.time()) - - return tf .. b -end - -local function os_currentTimeInMilliseconds() - local currentMilliseconds = 0 - local a, b = math.modf(os.clock()) - - if (b == 0) then - currentMilliseconds = 0 - else - currentMilliseconds = tonumber(tostring(b):sub(3,5)) - end - - local currentLocalTime = os.time(os.date('*t')) - - currentLocalTime = currentLocalTime * 1000 - currentLocalTime = currentLocalTime + currentMilliseconds - - return currentLocalTime -end - -local function os_currentTimeAsString() - return os.date('%H:%M', os.time()) -end - ---- Hex to RGB ---- @param hex string Hex as #FFF or #FFFFFF -local function hex2rgb(hex) - if (hex == nil or type(hex) ~= 'string') then return 255, 255, 255 end - if (hex:startswith('#')) then hex = hex:gsub('#', '') end - - if (string.len(hex) == 3) then - return tonumber(('0x%s'):format(hex:sub(1,1))), - tonumber(('0x%s'):format(hex:sub(2,2))), - tonumber(('0x%s'):format(hex:sub(3,3))) - elseif (string.len(hex) == 6) then - return tonumber(('0x%s'):format(hex:sub(1,2))), - tonumber(('0x%s'):format(hex:sub(3,4))), - tonumber(('0x%s'):format(hex:sub(5,6))) - end - - return 255, 255, 255 -end - ---- Get a file from stream folder ---- @param resource string Resource Name ---- @param module string Module Name ---- @param file string Filename -local function getStreamFile(resource, module, file) - if (resource == nil or type(resource) ~= 'string') then return nil end - if (module == nil or type(module) ~= 'string') then return nil end - if (file == nil or type(file) ~= 'string') then return nil end - - local isInternal = string.lower(resource) == string.lower(GetCurrentResourceName()) - - if (isInternal) then - local internalModuleData = LoadResourceFile(GetCurrentResourceName(), ('stream/01_%s/%s'):format(module, file)) - - if (internalModuleData ~= nil and internalModuleData) then - return internalModuleData - end - - local internalResourceData = LoadResourceFile(GetCurrentResourceName(), ('stream/02_%s/%s'):format(module, file)) - - if (internalResourceData ~= nil and internalResourceData) then - return internalResourceData - end - - return nil - end - - local externalModuleData = LoadResourceFile(GetCurrentResourceName(), ('stream/03_%s/%s'):format(module, file)) - - if (externalModuleData ~= nil and externalModuleData) then - return externalModuleData - end - - local externalResourceData = LoadResourceFile(GetCurrentResourceName(), ('stream/04_%s/%s'):format(module, file)) - - if (externalResourceData ~= nil and externalResourceData) then - return externalResourceData - end - - return nil -end - -local chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+-={}|[]`~' -local charTable = {} - -for c in chars:gmatch"." do - table.insert(charTable, c) -end - ---- Returns a random string ---- @param length number Length of string -local function getRandomString(length) - if (length == nil or type(length) ~= 'number' or length <= 0) then length = 24 end - - local randomString = '' - - if (os ~= nil and os.time ~= nil) then - math.randomseed(os.time()) - end - - for i = 1, length do - randomString = randomString .. charTable[math.random(1, #charTable)] - end -end - -local function getCurrentModule() - if (CLIENT) then - local debugInfo = debug.getinfo(3) - local pathOfModule = debugInfo.short_src or 'unknown' - local currentResourceName = GetCurrentResourceName() - - pathOfModule = string.replace(pathOfModule, '@', '') - - local isInternalModule = string.startswith(pathOfModule, currentResourceName) - - if (isInternalModule) then - for _, _module in pairs(resource.internalModules or {}) do - local generatedPath = ('%s/client/%s_module_client.lua'):format(currentResourceName, _module.name) - - if (string.lower(generatedPath) == pathOfModule) then - return _module.name - end - end - - for _, _resource in pairs(resource.internalResources or {}) do - local generatedPath = ('%s/client/%s_resource_client.lua'):format(currentResourceName, _resource.name) - - if (string.lower(generatedPath) == pathOfModule) then - return _resource.name - end - end - - return nil - end - end - - return nil -end - --- FiveM maniplulation -_ENV.getCurrentModule = getCurrentModule -_G.getCurrentModule = getCurrentModule -_ENV.try = try -_G.try = try -_ENV.string.trim = string_trim -_G.string.trim = string_trim -_ENV.string.split = function(self, delim) - return split(self, delim) -end -_G.string.split = function(self, delim) - return split(self, delim) -end -_ENV._ = _ -_G._ = _ -_ENV.currentTimeString = currentTimeString -_G.currentTimeString = currentTimeString -_ENV.split = split -_G.split = split -_ENV.round = round -_G.round = round -_ENV.hex2rgb = hex2rgb -_G.hex2rgb = hex2rgb -_ENV.updateFilePath = updateFilePath -_G.updateFilePath = updateFilePath -_ENV.getStreamFile = getStreamFile -_G.getStreamFile = getStreamFile -_ENV.getRandomString = getRandomString -_G.getRandomString = getRandomString - -_ENV.CR = function() - if (CurrentFrameworkResource ~= nil and type(CurrentFrameworkResource) == 'string' and CurrentFrameworkResource ~= '') then - return CurrentFrameworkResource - end - - return GetCurrentResourceName() -end -_G.CR = function() - if (CurrentFrameworkResource ~= nil and type(CurrentFrameworkResource) == 'string' and CurrentFrameworkResource ~= '') then - return CurrentFrameworkResource - end - - return GetCurrentResourceName() -end - -_ENV.string.startswith = function(self, str) - return self:sub(1, #str) == str -end -_G.string.startswith = function(self, str) - return self:sub(1, #str) == str -end -_ENV.string.endswith = function(self, str) - return self:sub(-#str) == str -end -_G.string.endswith = function(self, str) - return self:sub(-#str) == str -end - -_ENV.string.replace = string_replace -_G.string.replace = string_replace - -if (_ENV.os == nil) then _ENV.os = {} end -if (_G.os == nil) then _G.os = {} end - -_ENV.os.currentTime = function(self) - return os_currentTime() -end -_G.os.currentTime = function(self) - return os_currentTime() -end - -_ENV.os.currentTimeInMilliseconds = function(self) - return os_currentTimeInMilliseconds() -end -_G.os.currentTimeInMilliseconds = function(self) - return os_currentTimeInMilliseconds() -end - -_ENV.os.currentTimeAsString = os_currentTimeAsString -_G.os.currentTimeAsString = os_currentTimeAsString - -local function triggerServerEvent(name, ...) - if (CLIENT) then - TriggerServerEvent(name, ...) - else - TriggerEvent(name, ...) - end -end - -local function triggerClientEvent(name, param1, ...) - if (CLIENT) then - TriggerEvent(name, param1, ...) - else - if (type(param1) == 'string') then param1 = tonumber(param1) end - if (type(param1) ~= 'number') then param1 = 0 end - - if (param1 == 0) then - TriggerEvent(name, ...) - else - TriggerClientEvent(name, param1, ...) - end - end -end - -_ENV.TSE = triggerServerEvent -_G.TSE = triggerServerEvent -_ENV.TCE = triggerClientEvent -_G.TCE = triggerClientEvent \ No newline at end of file diff --git a/libs/framework/modules.lua b/libs/framework/modules.lua deleted file mode 100644 index a06a006..0000000 --- a/libs/framework/modules.lua +++ /dev/null @@ -1,220 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -module = class('module') - ---- Set default values -module:set { - modules = {} -} - ---- Check if module exists ---- @name Name of module -function module:exists(name) - if (name == nil or type(name) ~= 'string') then return false end - - return module.modules ~= nil and module.modules[name] ~= nil -end - ---- Check if module exists ---- @name Name of module ---- @argument function|object Module arguments -function module:create(name, argument) - local executable = class('executable') - - if (type(argument) == 'function') then - local info = debug.getinfo(argument) - local numberOfParams = info.nparams or 0 - local params = {} - - if (numberOfParams > 0) then - for i = 1, numberOfParams, 1 do - local paramName = debug.getlocal(argument, i) - - if (paramName ~= nil and type(paramName) ~= 'string') then - error:print(('Dependency at index #%s is empty'):format(i)) - return nil - end - - if (string.lower(name) == string.lower(paramName)) then - error:print(('Dependency refers to itself at index #%s'):format(i)) - return nil - end - - table.insert(params, paramName) - end - end - - executable:set { - name = name, - resource = CurrentFrameworkResource, - module = CurrentFrameworkModule, - func = argument, - loaded = false, - error = false, - params = params, - value = nil - } - else - executable:set { - name = name, - resource = CurrentFrameworkResource, - module = CurrentFrameworkModule, - func = function() - return argument - end, - loaded = true, - error = false, - params = {}, - value = argument - } - end - - --- Check if module is loaded - function executable:isLoaded() - return self.loaded or false - end - - --- Check if module has error - function executable:hasError() - return self.error or false - end - - --- Check if module can be started - function executable:canStart() - if (self:isLoaded() or self:hasError()) then return false end - if (#self.params <= 0) then return false end - - for i, param in pairs(self.params or {}) do - local paramKey = string.lower(param) - local paramExecutable = (module.modules[paramKey] or nil) - - if (paramExecutable ~= nil) then - if (not paramExecutable:isLoaded() and paramExecutable:hasError()) then - self.error = true - - error:print(('Dependency \'%s\' at index #%s failed to load, module can\'t be started'):format(i), self.resource, self.module) - - return false - elseif (not paramExecutable:isLoaded()) then - return false - end - elseif (resource.tasks.loadingFramework) then - self.error = true - - error:print(('Dependency \'%s\' at index #%s failed to load, module doesn\'t exists'):format(i), self.resource, self.module) - - return false - end - end - - return true - end - - --- Returns module if exists - function executable:get() - return self.value or nil - end - - --- Execute module code - function executable:execute() - if (self.isLoaded() or self:hasError()) then - return - end - - if (self.func ~= nil and self:canStart()) then - if (#self.params <= 0) then - self.value = self.func() - else - local params = {} - - for i, param in pairs(self.params or {}) do - local paramKey = string.lower(param) - local paramExecutable = (module.modules[paramKey] or nil) - - if (paramExecutable ~= nil) then - table.insert(params, paramExecutable:get()) - else - table.insert(params, nil) - end - end - - self.value = self.func(table.unpack(params)) - end - end - end - - return executable -end - ---- Check if module exists ---- @name Name of module ---- @argument function|object Module function or object ---- @override boolean Overide if exsits -function module:load(name, argument, override) - if (name == nil or type(name) ~= 'string') then return end - - name = string.lower(name) - - try(function() - _ENV.CurrentFrameworkModule = name - _G.CurrentFrameworkModule = name - - override = override == true - - if (not override and self:exists(name)) then - return - end - - local executable = self:create(name, argument) - - module.modules[name] = executable - - if (module.modules[name]:canStart()) then - module.modules[name]:execute() - end - end, function(e) - error:print(e) - - if (module.modules[name] ~= nil) then - module.modules[name].error = true - end - end) -end - ---- Returns module or nil ---- @name Name of module -function module:get(name) - if (name == nil or type(name) ~= 'string') then return nil end - - name = string.lower(name) - - if (not module:exists(name)) then - return nil - end - - local executable = module.modules[name] - - if (executable:isLoaded()) then - return executable:get() - end - - if (executable:hasError()) then - return nil - end - - return self:get(name) -end - ---- FiveM manipulation -_ENV.addModule = function(name, arguments, override) module:load(name, arguments, override) end -_G.addModule = function(name, arguments, override) module:load(name, arguments, override) end -_ENV.m = function(moduleName) return module:get(moduleName) end -_G.m = function(moduleName) return module:get(moduleName) end \ No newline at end of file diff --git a/libs/modules/cache.lua b/libs/modules/cache.lua deleted file mode 100644 index ab429f7..0000000 --- a/libs/modules/cache.lua +++ /dev/null @@ -1,88 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- ---- cache addon -cache = class('cache') - --- set default values -cache:set { - data = {} -} - ---- Read data from the cache ---- @param key cached key -function cache:read(key) - if (key == nil or (type(key) ~= 'number' and type(key) ~= 'string')) then - return nil - end - - if (type(key) == 'number') then - key = tostring(key) - end - - key = string.lower(key) - - if (cache.data ~= nil and cache.data[key] ~= nil) then - return cache.data[key] - end - - return nil -end - ---- Write data to the cache ---- @param key Cache Key ---- @param value Cache Value -function cache:write(key, value) - if (key == nil or (type(key) ~= 'number' and type(key) ~= 'string')) then - return nil - end - - if (type(key) == 'number') then - key = tostring(key) - end - - key = string.lower(key) - - if (cache.data ~= nil) then - cache.data[key] = value - end -end - ---- Check if key exists in cache ---- @param key Cache Key -function cache:exists(key) - if (key == nil or (type(key) ~= 'number' and type(key) ~= 'string')) then - return false - end - - if (type(key) == 'number') then - key = tostring(key) - end - - key = string.lower(key) - - if (cache.data ~= nil and cache.data[key] ~= nil) then - return true - end - - return false -end - ---- Add cache as module when available -Citizen.CreateThread(function() - while true do - if (addModule ~= nil and type(addModule) == 'function') then - addModule('cache', cache) - return - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/libs/modules/error.lua b/libs/modules/error.lua deleted file mode 100644 index 83a792f..0000000 --- a/libs/modules/error.lua +++ /dev/null @@ -1,61 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -error = class('error') - ---- Log a error message ---- @param message string Message -function error:print(msg, resource, module) - if (resource ~= nil and type(resource) == 'string') then - resource = (' [%s]'):format(tostring(resource)) - elseif (CurrentFrameworkResource ~= nil and type(CurrentFrameworkResource) == 'string') then - resource = (' [%s]'):format(tostring(CurrentFrameworkResource)) - else - resource = '' - end - - local currentModule = getCurrentModule() or CurrentFrameworkModule or 'unknown' - - if (module ~= nil and type(module) == 'string') then - module = (' [%s]'):format(tostring(module)) - elseif (currentModule ~= nil and type(currentModule) == 'string') then - module = (' [%s]'):format(currentModule) - elseif (CurrentFrameworkModule ~= nil and type(CurrentFrameworkModule) == 'string') then - module = (' [%s]'):format(CurrentFrameworkModule) - else - module = '' - end - - if (SERVER) then - local currentFile = LoadResourceFile(GetCurrentResourceName(), 'corev_error.log') or '' - - if (not currentFile) then - currentFile = '' - end - - local newData = ('%s%s ERROR%s%s %s\n'):format(currentFile, currentTimeString(), resource, module, msg) - - SaveResourceFile(GetCurrentResourceName(), 'corev_error.log', newData) - end - - print(('[%s][ERROR]%s%s %s'):format(GetCurrentResourceName(), resource, module, msg)) -end - ---- Add error as module when available -Citizen.CreateThread(function() - while true do - if (addModule ~= nil and type(addModule) == 'function') then - addModule('error', error) - return - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/modules/[fivem]/els/client/main.lua b/modules/[fivem]/els/client/main.lua deleted file mode 100644 index e69de29..0000000 diff --git a/modules/[fivem]/els/config/config.lua b/modules/[fivem]/els/config/config.lua deleted file mode 100644 index bd6c386..0000000 --- a/modules/[fivem]/els/config/config.lua +++ /dev/null @@ -1,13 +0,0 @@ -Config.ELS = { - Files = { - 'fbi', - 'FBI2', - 'POLICE', - 'police2', - 'police3', - 'police4', - 'pranger', - 'sheriff', - 'sheriff2' - } -} \ No newline at end of file diff --git a/modules/[fivem]/els/module.json b/modules/[fivem]/els/module.json deleted file mode 100644 index a49c441..0000000 --- a/modules/[fivem]/els/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV els module", - "client_scripts": [ - "client/main.lua" - ], - "server_scripts": [ - "server/main.lua" - ], - "module": "els" -} \ No newline at end of file diff --git a/modules/[fivem]/els/server/main.lua b/modules/[fivem]/els/server/main.lua deleted file mode 100644 index e69de29..0000000 diff --git a/modules/[fivem]/game/client/commands.lua b/modules/[fivem]/game/client/commands.lua deleted file mode 100644 index fe13f3f..0000000 --- a/modules/[fivem]/game/client/commands.lua +++ /dev/null @@ -1,75 +0,0 @@ -onServerTrigger('corev:game:spawnVehicle', function(vehicle) - local playerPed = PlayerPedId() - local playerPedCoords, playerPedHeading = GetEntityCoords(playerPed), GetEntityHeading(playerPed) - - game:spawnVehicle(vehicle, playerPedCoords, playerPedHeading, function(vehicle) - SetVehicleEngineOn(vehicle, true, true, true) - TaskWarpPedIntoVehicle(playerPed, vehicle, -1) - - if (GetVehicleClass(vehicle) == VehicleClasses.Helicopters and GetEntityHeightAboveGround(playerPed) > 10.0) then - SetHeliBladesFullSpeed(vehicle) - else - SetVehicleOnGroundProperly(vehicle) - end - end) -end) - -onServerTrigger('corev:game:deleteVehicle', function(radius) - local vehicle, attempt = nil, 0 - local playerPed = PlayerPedId() - - Citizen.CreateThread(function() - if (IsPedInAnyVehicle(playerPed, true)) then - vehicle = GetVehiclePedIsIn(playerPed, false) - - while (not NetworkHasControlOfEntity(vehicle) and attempt < 50 and DoesEntityExist(vehicle)) do - Citizen.Wait(200) - - NetworkRequestControlOfEntity(vehicle) - - attempt = attempt + 1 - end - - if (DoesEntityExist(vehicle)) then - game:deleteVehicle(vehicle) - end - end - - if (radius ~= nil and type(radius) == 'number' and radius > 0) then - radius = radius + 0.01 - - local vehicles = game:getVehiclesInArea(GetEntityCoords(playerPed), radius) - - for i, _vehicle in pairs(vehicles or {}) do - attempt = 0 - - while (not NetworkHasControlOfEntity(_vehicle) and attempt < 50 and DoesEntityExist(_vehicle)) do - Citizen.Wait(200) - - NetworkRequestControlOfEntity(_vehicle) - - attempt = attempt + 1 - end - - if (DoesEntityExist(_vehicle)) then - game:deleteVehicle(_vehicle) - end - end - end - end) -end) - -onServerTrigger('corev:game:printVehicle', function() - local playerPed = PlayerPedId() - - Citizen.CreateThread(function() - if (IsPedInAnyVehicle(playerPed, true)) then - local vehicle = GetVehiclePedIsIn(playerPed, false) - local vehicleProps = game:getVehicleProperties(vehicle, true, true, true, true) - - if (vehicleProps) then - print(json.encode(vehicleProps)) - end - end - end) -end) \ No newline at end of file diff --git a/modules/[fivem]/game/client/main.lua b/modules/[fivem]/game/client/main.lua deleted file mode 100644 index acc75e0..0000000 --- a/modules/[fivem]/game/client/main.lua +++ /dev/null @@ -1,369 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local game = class('game') - ---- Returns a list of vehicles in area ---- @coords vector3 coords ---- @maxDistance int max distance between coords and vehicle -function game:getVehiclesInArea(coords, maxDistance) - if (coords == nil) then coords = GetEntityCoords(PlayerPedId()) end - if (type(coords) == 'table') then coords = vector3(coords.x, coords.y, coords.z) end - if (type(coords) ~= 'vector3') then return {} end - - local vehicles = {} - - for vehicle in EnumerateVehicles() do - if DoesEntityExist(vehicle) and #(coords - GetEntityCoords(vehicle)) <= maxDistance then - table.insert(vehicles, vehicle) - end - end - - return vehicles -end - ---- Spawn a vehicle at specified coords ---- @moduleName string Hash|string Vehicle hash or name ---- @coords vector3|table Coords where vehicle needs to be spawned ---- @heading int vehicle's heading ---- @cb function vehicle callback -function game:spawnVehicle(moduleName, coords, heading, cb) - local model = moduleName - - if (moduleName == nil or (type(moduleName) ~= 'number' and type(moduleName) ~= 'string')) then return end - if (type(moduleName) == 'string') then model = GetHashKey(moduleName) end - - Citizen.CreateThread(function() - local streaming = m('streaming') - - streaming:requestModel(model, function() - local vehicle = CreateVehicle(model, coords.x, coords.y, coords.z + 1.0, heading, true, false) - - SetVehicleNeedsToBeHotwired(vehicle, false) - SetVehicleHasBeenOwnedByPlayer(vehicle, true) - SetEntityAsMissionEntity(vehicle, true, true) - SetVehicleIsStolen(vehicle, false) - SetVehicleIsWanted(vehicle, false) - SetVehRadioStation(vehicle, 'OFF') - - if (cb ~= nil and type(cb) == 'function') then - cb(vehicle) - end - end) - end) -end - ---- Delete specified vehicle ---- @param vehicle table Vehicle object -function game:deleteVehicle(vehicle) - if (vehicle ~= nil) then - if (IsVehiclePreviouslyOwnedByPlayer(vehicle)) then - SetVehicleHasBeenOwnedByPlayer(vehicle, false) - end - - SetEntityAsMissionEntity(vehicle, true, true) - DeleteVehicle(vehicle) - end -end - ---- Returns closest vehicle in a given distance ---- @param coords vector3|table|nil Information about coordinates ---- @param maxDistance number Max distance to search for -function game:getClosestVehicle(coords, maxDistance) - maxDistance = maxDistance or 10.0 - - if (type(maxDistance) == 'string') then maxDistance = tonumber(maxDistance) end - if (type(maxDistance) ~= 'number') then maxDistance = 10.0 end - if (coords == nil or (type(coords) ~= 'table' and type(coords) ~= 'vector3')) then coords = GetEntityCoords(PlayerPedId()) end - - local entities = self:getVehiclesInArea(coords, maxDistance) - - return self:getClosestEntity(entities, false, coords) -end - ---- Returns the closest entity from given entities ---- @param entities table List of entities ---- @param isPlayerEntities boolean List are player entities ---- @param coords vector3|table|nil Information about coordinates ---- @param modelFilter table List of entity to filter on -function game:getClosestEntity(entities, isPlayerEntities, coords, modelFilter) - local entityFound, closestEntity, closestEntityDistance, filteredEntities = false, -1, -1, nil - - if (coords == nil) then coords = GetEntityCoords(PlayerPedId()) end - if (type(coords) == 'table') then coords = vector3(coords.x, coords.y, coords.z) end - if (type(coords) ~= 'vector3') then coords = GetEntityCoords(PlayerPedId()) end - - if (modelFilter) then - filteredEntities = {} - - for _, entity in pairs(entities or {}) do - if (modelFilter[GetEntityModel(entity)]) then - table.insert(filteredEntities, entity) - end - end - end - - for i, entity in pairs(filteredEntities or entities or {}) do - local distance = #(coords - GetEntityCoords(entity)) - - if (closestEntityDistance == -1 or distance < closestEntityDistance) then - entityFound, closestEntity, closestEntityDistance = true, isPlayerEntities and i or entity, distance - end - end - - return entityFound, closestEntity, closestEntityDistance -end - ---- Returns a object with all vehicle properties ---- @param vehicle any Vehicle object ---- @param ignoreDefaultOrNull boolean|number Ignore if empty, null or default ---- @param ignoreModel boolean|number Ignore model when returning results ---- @param ignorePlate boolean|number Ignore license plate when returning results ---- @param ignoreStatus boolean|number Ignore vehicle health and fuel -function game:getVehicleProperties(vehicle, ignoreDefaultOrNull, ignoreModel, ignorePlate, ignoreStatus) - ignoreDefaultOrNull = ignoreDefaultOrNull or false - - --- Make sure that all parameters has been set - if (ignoreDefaultOrNull == nil) then ignoreDefaultOrNull = false end - if (ignoreModel == nil) then ignoreModel = false end - if (ignorePlate == nil) then ignorePlate = false end - if (ignoreStatus == nil) then ignoreStatus = false end - if (type(ignoreDefaultOrNull) ~= 'boolean') then ignoreDefaultOrNull = tonumber(ignoreDefaultOrNull) end - if (type(ignoreModel) ~= 'boolean') then ignoreModel = tonumber(ignoreModel) end - if (type(ignorePlate) ~= 'boolean') then ignorePlate = tonumber(ignorePlate) end - if (type(ignoreStatus) ~= 'boolean') then ignoreStatus = tonumber(ignoreStatus) end - if (type(ignoreDefaultOrNull) == 'number') then ignoreDefaultOrNull = ignoreDefaultOrNull == 1 end - if (type(ignoreModel) == 'number') then ignoreModel = ignoreModel == 1 end - if (type(ignorePlate) == 'number') then ignorePlate = ignorePlate == 1 end - if (type(ignoreStatus) == 'number') then ignoreStatus = ignoreStatus == 1 end - - if (vehicle ~= nil and DoesEntityExist(vehicle)) then - local colorPrimary, colorSecondary = GetVehicleColours(vehicle) - local pearlescentColor, wheelColor = GetVehicleExtraColours(vehicle) - - local results = { - ['colors'] = { - ['primary'] = colorPrimary, - ['secondary'] = colorSecondary, - ['pearlescent'] = pearlescentColor, - ['wheel'] = wheelColor - } - } - local vehicleExtras = {} - local vehicleNeonEnabled = {} - - --- Load all vehicle's extra's - for extra = 0, 14, 1 do - if (DoesExtraExist(vehicle, extra) and IsVehicleExtraTurnedOn(vehicle, extra) == 1) then - table.insert(vehicleExtras, extra) - end - end - - --- Set neon lights of vehicle entity - for neon = 0, 3, 1 do - local neonEnabled = IsVehicleNeonLightEnabled(vehicle, neon) == 1 - - if (neonEnabled) then - table.insert(vehicleNeonEnabled, neon) - end - end - - --- Set all mod type values of vehicle entity - for name, modIndex in pairs(VehicleModType or {}) do - local modValue = GetVehicleMod(vehicle, modIndex) - local modKey = ('mod%s'):format(name) - - if ((not ignoreDefaultOrNull or modValue >= 0) and modIndex ~= VehicleModType.Livery) then - results[modKey] = modValue - end - end - - --- Set all toggable options of vehicle entity - for name, modIndex in pairs(VehicleToggleModType or {}) do - local modValue = IsToggleModOn(vehicle, modIndex) - local modKey = ('mod%s'):format(name) - - if (not ignoreDefaultOrNull or modValue) then - results[modKey] = modValue - end - end - - if (not ignoreModel) then results['model'] = GetEntityModel(vehicle) end - if (not ignorePlate) then results['plate'] = GetVehicleNumberPlateText(vehicle) end - - if (not ignoreStatus) then - local bodyHealth = round(GetVehicleBodyHealth(vehicle), 1) - local engineHealth = round(GetVehicleEngineHealth(vehicle), 1) - local tankHealth = round(GetVehiclePetrolTankHealth(vehicle), 1) - local fuelLevel = round(GetVehicleFuelLevel(vehicle), 1) - local dirtLevel = round(GetVehicleDirtLevel(vehicle), 1) - - if (not ignoreDefaultOrNull or bodyHealth <= 950) then results['bodyHealth'] = bodyHealth end - if (not ignoreDefaultOrNull or engineHealth <= 950) then results['engineHealth'] = engineHealth end - if (not ignoreDefaultOrNull or tankHealth <= 950) then results['tankHealth'] = tankHealth end - if (not ignoreDefaultOrNull or fuelLevel <= 950) then results['fuelLevel'] = fuelLevel end - if (not ignoreDefaultOrNull or dirtLevel >= 1) then results['dirtLevel'] = dirtLevel end - end - - if (not ignoreDefaultOrNull or #vehicleExtras > 0) then results['extras'] = vehicleExtras end - if (not ignoreDefaultOrNull or #vehicleNeonEnabled > 0) then results['neonEnabled'] = vehicleNeonEnabled end - - local plateIndex = GetVehicleNumberPlateTextIndex(vehicle) - local windowTint = GetVehicleWindowTint(vehicle) - local xenonColor = GetVehicleXenonLightsColour(vehicle) - local livery = GetVehicleLivery(vehicle) - - if (not ignoreDefaultOrNull or plateIndex > 0) then results['plateIndex'] = plateIndex end - if (not ignoreDefaultOrNull or (windowTint > 0 and windowTint ~= 4)) then results['windowTint'] = windowTint end - if (not ignoreDefaultOrNull or (xenonColor >= 0 and xenonColor ~= 255)) then results['colors']['xenon'] = xenonColor end - if (not ignoreDefaultOrNull or (#vehicleNeonEnabled > 0)) then results['colors']['neon'] = table.pack(GetVehicleNeonLightsColour(vehicle)) end - if (not ignoreDefaultOrNull or IsToggleModOn(vehicle, VehicleToggleModType.TireSmoke)) then results['colors']['tyreSmoke'] = table.pack(GetVehicleTyreSmokeColor(vehicle)) end - if (not ignoreDefaultOrNull or livery > 0) then results['modLivery'] = livery end - - results['wheels'] = GetVehicleWheelType(vehicle) - - return results - end -end - ---- Apply props to given vehicle ---- @param vehicle any Vehicle object ---- @param props table Vehicle properties ---- @param setNullToDefault boolean|number When prop don't exists in props set default value -function game:setVehicleProperties(vehicle, props, setNullToDefault) - if (setNullToDefault == nil) then setNullToDefault = false end - if (type(setNullToDefault) ~= 'boolean') then setNullToDefault = tonumber(setNullToDefault) end - if (type(setNullToDefault) == 'number') then setNullToDefault = setNullToDefault == 1 end - if (type(props) ~= 'table') then props = nil end - if (not setNullToDefault and props == nil) then return end - if (props == nil) then props = {} end - - if (vehicle == nil or not DoesEntityExist(vehicle)) then - return - end - - SetVehicleModKit(vehicle, 0) - - local colorPrimary, colorSecondary = GetVehicleColours(vehicle) - local pearlescentColor, wheelColor = GetVehicleExtraColours(vehicle) - - if ((props.plateIndex == nil or not props.plateIndex) and setNullToDefault) then props.plateIndex = 0 end - if ((props.bodyHealth == nil or not props.bodyHealth) and setNullToDefault) then props.bodyHealth = 1000 end - if ((props.engineHealth == nil or not props.engineHealth) and setNullToDefault) then props.engineHealth = 1000 end - if ((props.tankHealth == nil or not props.tankHealth) and setNullToDefault) then props.tankHealth = 1000 end - if ((props.fuelLevel == nil or not props.fuelLevel) and setNullToDefault) then props.fuelLevel = 1000 end - if ((props.dirtLevel == nil or not props.dirtLevel) and setNullToDefault) then props.dirtLevel = 0 end - if ((props.windowTint == nil or not props.windowTint) and setNullToDefault) then props.windowTint = 4 end - if (props.colors == nil or not props.colors) then props.colors = {} end - if ((props.colors.xenon == nil or not props.colors.xenon) and setNullToDefault) then props.colors.xenon = -1 end - - if ((props.extras == nil or not props.extras) and setNullToDefault) then - props.extras = { [0] = false, [1] = false, [2] = false, [3] = false, [4] = false, [5] = false, [6] = false, [7] = false, [8] = false, [9] = false, [10] = false, [11] = false, [12] = false, [13] = false, [14] = false } - elseif(props.extras ~= nil and props.extras) then - local extras = {} - - for _, index in pairs(props.extras or {}) do - extras[index] = true - end - - props.extras = extras - else - props.extras = {} - end - - if ((props.neonEnabled == nil or not props.neonEnabled) and setNullToDefault) then - props.neonEnabled = { [0] = false, [1] = false, [2] = false, [3] = false } - elseif(props.neonEnabled ~= nil and props.neonEnabled) then - local neonEnabled = {} - - for _, index in pairs(props.neonEnabled or {}) do - neonEnabled[index] = true - end - - props.neonEnabled = neonEnabled - else - props.neonEnabled = {} - end - - if (props.plate ~= nil and props.plate) then SetVehicleNumberPlateText(vehicle, props.plate) end - if (props.plateIndex ~= nil and props.plateIndex) then SetVehicleNumberPlateTextIndex(vehicle, props.plateIndex) end - if (props.bodyHealth ~= nil and props.bodyHealth) then SetVehicleBodyHealth(vehicle, props.bodyHealth + 0.0) end - if (props.engineHealth ~= nil and props.engineHealth) then SetVehicleEngineHealth(vehicle, props.engineHealth + 0.0) end - if (props.tankHealth ~= nil and props.tankHealth) then SetVehiclePetrolTankHealth(vehicle, props.tankHealth + 0.0) end - if (props.fuelLevel ~= nil and props.fuelLevel) then SetVehicleFuelLevel(vehicle, props.fuelLevel + 0.0) end - if (props.dirtLevel ~= nil and props.dirtLevel) then SetVehicleDirtLevel(vehicle, props.dirtLevel + 0.0) end - - if ((props.colors.primary ~= nil and props.colors.primary) or (props.colors.secondary ~= nil and props.colors.secondary)) then - SetVehicleColours(vehicle, props.colors.primary or colorPrimary, props.colors.secondary or colorSecondary) - end - - if ((props.colors.pearlescent ~= nil and props.colors.pearlescent) or (props.colors.wheel ~= nil and props.colors.wheel)) then - SetVehicleExtraColours(vehicle, props.colors.pearlescent or pearlescentColor, props.colors.wheel or wheelColor) - end - - if (props.colors.neon ~= nil and props.colors.neon) then - SetVehicleNeonLightsColour(vehicle, props.colors.neon[1] or 255, props.colors.neon[2] or 255, props.colors.neon[3] or 255) - end - - if (props.colors.tyreSmoke ~= nil and props.colors.tyreSmoke) then - SetVehicleTyreSmokeColor(vehicle, props.colors.tyreSmoke[1] or 255, props.colors.tyreSmoke[2] or 255, props.colors.tyreSmoke[3] or 255) - end - - if (props.colors.xenon ~= nil and props.colors.xenon) then SetVehicleXenonLightsColour(vehicle, props.colors.xenon) end - if (props.wheels ~= nil and props.wheels) then SetVehicleWheelType(vehicle, props.wheels) end - if (props.windowTint ~= nil and props.windowTint) then SetVehicleWindowTint(vehicle, props.windowTint) end - - -- Enable or disbale neon's - for i = 0, 3, 1 do - if (props.neonEnabled[i]) then - SetVehicleNeonLightEnabled(vehicle, i, true) - elseif (setNullToDefault) then - SetVehicleNeonLightEnabled(vehicle, i, false) - end - end - - -- Enable or disable extra's - for i = 0, 14, 1 do - local extraExits = DoesExtraExist(vehicle, i) - - if (extraExits and props.extras[i]) then - SetVehicleExtra(vehicle, i, false) - elseif (extraExits and setNullToDefault) then - SetVehicleExtra(vehicle, i, true) - end - end - - --- Set all mod type values of vehicle entity - for name, modIndex in pairs(VehicleModType or {}) do - local modKey = ('mod%s'):format(name) - - if ((props[modKey] == nil or not props[modKey]) and setNullToDefault) then props[modKey] = -1 end - - if (props[modKey] ~= nil and props[modKey]) then - SetVehicleMod(vehicle, modIndex, props[modKey], false) - - if (modIndex == VehicleModType.Livery) then - if (props[modKey] == -1) then props[modKey] = 0 end - - SetVehicleLivery(vehicle, props[modKey]) - end - end - end - - --- Set all mod type values of vehicle entity - for name, modIndex in pairs(VehicleToggleModType or {}) do - local modKey = ('mod%s'):format(name) - - if (props[modKey] == nil and setNullToDefault) then props[modKey] = false end - if (props[modKey] ~= nil) then ToggleVehicleMod(vehicle, modIndex, props[modKey]) end - end -end - -addModule("game", game) \ No newline at end of file diff --git a/modules/[fivem]/game/langs/nl.json b/modules/[fivem]/game/langs/nl.json deleted file mode 100644 index c9a3764..0000000 --- a/modules/[fivem]/game/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "help_car": "Spawn een voertuig op je locatie", - "help_deletevehicle": "Verwijderd een voertuig in een bepaalde radius", - "vehicle_name": "Naam van voertuig", - "vehicle_radius": "Radius waarin u voertuig wilt verwijderen", - "console_not_allowed": "Console is niet toegestaan om deze commando uit te voeren", - "empty_or_invalid_name": "U heeft een ongeldige naam opgegeven", - "help_print_car": "Log vehicle in console om te gebruiken in bijv. scripts" -} \ No newline at end of file diff --git a/modules/[fivem]/game/module.json b/modules/[fivem]/game/module.json deleted file mode 100644 index 346da76..0000000 --- a/modules/[fivem]/game/module.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV game module", - "client_scripts": [ - "client/main.lua", - "client/commands.lua" - ], - "server_scripts": [ - "server/main.lua", - "server/commands.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "game" -} \ No newline at end of file diff --git a/modules/[fivem]/game/server/commands.lua b/modules/[fivem]/game/server/commands.lua deleted file mode 100644 index c266680..0000000 --- a/modules/[fivem]/game/server/commands.lua +++ /dev/null @@ -1,72 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local commands = m('commands') - ---- Spawn a vehicle with /car {vehicle} -commands:register('car', { 'superadmin' }, function(source, arguments, showError) - local playerId = source - - if (source <= 0) then - showError(_(CR(), 'game', 'console_not_allowed')) - return - end - - if (arguments.name ~= nil and type(arguments.name) == 'string') then arguments.name = GetHashKey(arguments.name) end - if (arguments.name == nil or type(arguments.name) ~= 'number') then - showError(_(CR(), 'game', 'empty_or_invalid_name')) - return - end - - TCE('corev:game:spawnVehicle', playerId, arguments.name) -end, false, { - help = _(CR(), 'game', 'help_car'), - validate = true, - arguments = { - { name = 'name', help = _(CR(), 'game', 'vehicle_name'), type = 'any' } - } -}) - ---- Spawn a vehicle with /car {vehicle} -commands:register('dv', { 'superadmin' }, function(source, arguments, showError) - local playerId = source - - if (source <= 0) then - showError(_(CR(), 'game', 'console_not_allowed')) - return - end - - if (arguments.radius ~= nil and type(arguments.radius) == 'string') then arguments.radius = tonumber(arguments.radius) end - if (arguments.radius == nil or type(arguments.radius) ~= 'number' or arguments.radius <= 0) then arguments.radius = 0 end - - TCE('corev:game:deleteVehicle', playerId, arguments.radius) -end, false, { - help = _(CR(), 'game', 'help_deletevehicle'), - validate = true, - arguments = { - { name = 'radius', help = _(CR(), 'game', 'vehicle_radius'), type = 'any' } - } -}) - ---- Print a vehicle to console with /pc -commands:register('pc', { 'superadmin' }, function(source, arguments, showError) - local playerId = source - - if (source <= 0) then - showError(_(CR(), 'game', 'console_not_allowed')) - return - end - - TCE('corev:game:printVehicle', playerId, arguments.name) -end, false, { - help = _(CR(), 'game', 'help_print_car'), - validate = true, - arguments = {} -}) \ No newline at end of file diff --git a/modules/[fivem]/keybinds/client/main.lua b/modules/[fivem]/keybinds/client/main.lua deleted file mode 100644 index b5b953a..0000000 --- a/modules/[fivem]/keybinds/client/main.lua +++ /dev/null @@ -1,79 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local keybinds = class('keybinds') - -keybinds:set { - keys = {}, - eventBinds = {}, - pressed = {} -} - -function keybinds:registerKey(name, description, keyType, default) - if (name == nil or type(name) ~= 'string') then return end - if (description == nil or type(description) ~= 'string') then description = 'unknown' end - if (keyType == nil or type(keyType) ~= 'string') then keyType = 'keyboard' end - if (default == nil or type(default) ~= 'string') then default = 'e' end - if (string.lower(keyType) ~= 'keyboard' and string.lower(keyType) ~= 'mouse') then return end - if (string.lower(keyType) == 'mouse') then keyType = 'mouse_button' end - - name = string.replace(name, ' ', '') - name = string.lower(name) - - if (self.keys ~= nil and self.keys[name] ~= nil) then return end - - self.keys[name] = { - name = name, - description = description, - default = default, - type = keyType - } - - self.eventBinds[('+%s'):format(name)] = name - self.eventBinds[('-%s'):format(name)] = name - - RegisterKeyMapping(('+%s'):format(name), description, keyType, default) - - RegisterCommand(('+%s'):format(name), function() - local keyName = keybinds.eventBinds[('+%s'):format(name)] or nil - - if (keyName == nil) then return end - - keybinds.pressed[keyName] = true - end) - - RegisterCommand(('-%s'):format(name), function() - local keyName = keybinds.eventBinds[('+%s'):format(name)] or nil - - if (keyName == nil) then return end - - keybinds.pressed[keyName] = false - end) -end - -function keybinds:isControlPressed(name) - if (name == nil or type(name) ~= 'string') then return end - - name = string.replace(name, ' ', '') - name = string.lower(name) - - return (self.pressed or {})[name] or false -end - -function keybinds:isControlReleased(name) - if (name == nil or type(name) ~= 'string') then return end - - name = string.replace(name, ' ', '') - name = string.lower(name) - - return not ((self.pressed or {})[name] or false) -end - -addModule('keybinds', keybinds) \ No newline at end of file diff --git a/modules/[fivem]/keybinds/langs/nl.json b/modules/[fivem]/keybinds/langs/nl.json deleted file mode 100644 index 7a73a41..0000000 --- a/modules/[fivem]/keybinds/langs/nl.json +++ /dev/null @@ -1,2 +0,0 @@ -{ -} \ No newline at end of file diff --git a/modules/[fivem]/keybinds/module.json b/modules/[fivem]/keybinds/module.json deleted file mode 100644 index b20ee04..0000000 --- a/modules/[fivem]/keybinds/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV keybinds module", - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "keybinds" -} \ No newline at end of file diff --git a/modules/[fivem]/locks/classes/door.lua b/modules/[fivem]/locks/classes/door.lua deleted file mode 100644 index d28b64a..0000000 --- a/modules/[fivem]/locks/classes/door.lua +++ /dev/null @@ -1,62 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function locks:createDoor(doorData) - local door = class('door') - - door:set { - name = nil, - hash = -1, - heading = 0.000, - position = nil, - rotation = nil, - locked = false, - resetPosition = false, - latest = {} - } - - if (doorData.Name ~= nil and type(doorData.Name) == 'string') then - door.name = doorData.Name - end - - if (doorData.Hash ~= nil and type(doorData.Hash) == 'number') then - door.hash = doorData.Hash or GetHashKey(door.name or 'unknown') - else - door.hash = GetHashKey(door.name or 'unknown') - end - - if (doorData.Heading ~= nil and type(doorData.Heading) == 'number') then - door.heading = doorData.Heading - end - - if (doorData.Position ~= nil and type(doorData.Position) == 'vector3') then - door.position = doorData.Position - elseif (doorData.Position ~= nil and type(doorData.Position) == 'table') then - door.position = vector3(doorData.Position.x or 0.0, doorData.Position.y or 0.0, doorData.Position.z or 0.0) - end - - if (doorData.Rotation ~= nil and type(doorData.Rotation) == 'vector3') then - door.rotation = doorData.Rotation - elseif (doorData.Rotation ~= nil and type(doorData.Rotation) == 'table') then - door.rotation = vector3(doorData.Rotation.x or 0.0, doorData.Rotation.y or 0.0, doorData.Rotation.z or 0.0) - end - - if (doorData.Locked ~= nil and type(doorData.Locked) == 'boolean') then - door.locked = doorData.Locked or false - end - - if (doorData.ResetPosition ~= nil and type(doorData.ResetPosition) == 'boolean') then - door.resetPosition = doorData.ResetPosition or false - end - - if (door.name == nil or door.hash == -1 or door.position == nil) then return nil end - - return door -end \ No newline at end of file diff --git a/modules/[fivem]/locks/classes/lock.lua b/modules/[fivem]/locks/classes/lock.lua deleted file mode 100644 index 8fb24f9..0000000 --- a/modules/[fivem]/locks/classes/lock.lua +++ /dev/null @@ -1,169 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function locks:createLock(name, lockData) - local lock = class('lock') - - --- Set default values - lock:set { - name = 'unknown', - whitelist = { jobs = {}, groups = {} }, - locked = false, - distance = -1, - doors = {}, - numberOfDoors = 0, - labelPosition = nil - } - - --- Make sure that every lock has a name - if (name == nil or type(name) ~= 'string') then name = getRandomString(24) end - - --- Make sure that every illegal character has been removed from name - for _, character in pairs({ '.', ',', '/', '\\', ':', '"', '\'', '[', ']', '{', '}', '-', '<', '>', '*', '!', '@', '#', '$', '%', '^', '&', '(', ')', '+', '=', '|', '`', '~' }) do - name = string.replace(name, character, '_') - end - - --- Make sure that every lock has there own name - if (self.locks ~= nil and self.locks[name] ~= nil) then return self:createLock(getRandomString(24), lockData) end - - lock.name = name - - if (lockData ~= nil and lockData.Authorized ~= nil and type(lockData.Authorized) == 'table') then - local authorized = lockData.Authorized or {} - - for i, group in pairs(authorized.Groups or {}) do - if (type(group) == 'string' and group ~= '') then - if (string.lower(group) == 'all') then - for _i, _group in pairs(Config.PermissionGroups or {}) do - ExecuteCommand(('add_ace group.%s "lock.%s" allow'):format(_group, lock.name)) - end - else - ExecuteCommand(('add_ace group.%s "lock.%s" allow'):format(group, lock.name)) - end - end - end - - lock.whitelist.jobs = authorized.Jobs or {} - lock.whitelist.groups = authorized.Groups or {} - end - - if (lockData ~= nil and lockData.Locked ~= nil and type(lockData.Locked) == 'boolean') then - lock.locked = lockData.Locked or false - elseif (lockData ~= nil and lockData.Locked ~= nil and type(lockData.Locked) == 'number') then - lock.locked = (lockData.Locked or 0) == 1 - end - - if (lockData ~= nil and lockData.Distance ~= nil and type(lockData.Distance) == 'number') then - lock.distance = lockData.Distance or -1 - end - - if (lockData.LabelPosition ~= nil and type(lockData.LabelPosition) == 'vector3') then - lock.labelPosition = lockData.LabelPosition - elseif (lockData.LabelPosition ~= nil and type(lockData.LabelPosition) == 'table') then - lock.labelPosition = vector3(lockData.LabelPosition.x or 0.0, lockData.LabelPosition.y or 0.0, lockData.LabelPosition.z or 0.0) - end - - if (lockData ~= nil and lockData.Doors ~= nil and type(lockData.Doors) == 'table') then - for _, door in pairs(lockData.Doors or {}) do - door.Locked = lock.locked or false - - local doorObject = self:createDoor(door or {}) - - if (doorObject ~= nil) then - lock.numberOfDoors = lock.numberOfDoors + 1 - table.insert(lock.doors, doorObject) - end - end - end - - if (lockData ~= nil and lockData.Door ~= nil and type(lockData.Door) == 'table') then - lockData.Door.Locked = lock.locked or false - - local doorObject = self:createDoor(lockData.Door or {}) - - if (doorObject ~= nil) then - lock.numberOfDoors = lock.numberOfDoors + 1 - table.insert(lock.doors, doorObject) - end - end - - if (lock.numberOfDoors <= 0) then return nil end - - --- Checks if a player is allowed to interact with lock - --- @param source number Player ID - function lock:playerAllowed(source) - if (source == nil or type(source) ~= 'number') then - return false - end - - local aceAllowed = IsPlayerAceAllowed(source, ('lock.%s'):format(self.name)) - - if (aceAllowed == true or aceAllowed == 1) then return true end - - local players = m('players') - local player = players:getPlayer(source) - - if (player == nil) then return false end - - for i, job in pairs((locks.locks[self.name].whitelist or {}).jobs or {}) do - if (job ~= nil and type(job) == 'string') then - return string.lower(job) == string.lower(player.job.name) or string.lower(job) == string.lower(player.job2.name) - elseif (job ~= nil and type(job) == 'table') then - if (job.name ~= nil and type(job.name) == 'string') then - if (string.lower(job.name) == string.lower(player.job.name)) then - for _i, _grade in pairs(job.grades or {}) do - if (_grade ~= nil and type(_grade) == 'string' and string.lower(_grade) == string.lower(player.grade.name)) then - return true - elseif (_grade ~= nil and type(_grade) == 'number' and _grade == player.grade.grade) then - return true - end - end - elseif (string.lower(job.name) == string.lower(player.job2.name)) then - for _i, _grade in pairs(job.grades or {}) do - if (_grade ~= nil and type(_grade) == 'string' and string.lower(_grade) == string.lower(player.grade2.name)) then - return true - elseif (_grade ~= nil and type(_grade) == 'number' and _grade == player.grade2.grade) then - return true - end - end - end - end - end - end - - return false - end - - --- Update current lock state - --- @param newState boolean New lock status - function lock:updateState(newState) - if (newState == nil or (type(newState) ~= 'boolean' and type(newState) ~= 'number')) then - return - end - - if (type(newState) == 'number') then newState = newState == 1 end - - if (self.locked == newState) then - return - else - self.locked = newState - end - - if (self.numberOfDoors > 0) then - for i, _ in pairs(self.doors or {}) do - self.doors[i].locked = newState - end - end - - TCE('corev:locks:updateLock', -1, self.name, self.locked) - end - - return lock -end \ No newline at end of file diff --git a/modules/[fivem]/locks/client/main.lua b/modules/[fivem]/locks/client/main.lua deleted file mode 100644 index 084782a..0000000 --- a/modules/[fivem]/locks/client/main.lua +++ /dev/null @@ -1,249 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local locks = class('locks') - -locks:set { - locks = {}, - closeLocks = {}, - drawLocks = {}, - utils = m('utils'), - raycast = m('raycast'), - entityEvents = {}, - flagState = false, - anyInRange = false -} - ---- Load locks in > locks.closeLocks -Citizen.CreateThread(function() - while true do - local coords = GetEntityCoords(GetPlayerPed(-1)) - - locks.drawLocks = {} - locks.anyInRange = false - - for lockName, lock in pairs(locks.locks or {}) do - if (lock.numberOfDoors > 0) then - local doorDistance = -1 - - if (lock.numberOfDoors == 1 and lock.doors[1].position ~= nil) then - doorDistance = #(lock.doors[1].position - coords) - else - for _, door in pairs(lock.doors or {}) do - if (door.position ~= nil) then - local _distance = #(door.position - coords) - - if (doorDistance == -1 or doorDistance > _distance) then - doorDistance = _distance - end - end - end - end - - if (doorDistance ~= -1 and doorDistance < Config.LockDoorDistance) then - locks.anyInRange = true - locks.closeLocks[lockName] = locks.closeLocks[lockName] or lock - elseif (locks.closeLocks[lockName] ~= nil) then - locks.closeLocks[lockName] = nil - end - - if (doorDistance ~= -1 and doorDistance < (lock.distance or -1) and type(lock.labelPosition) == 'vector3' and lock.allowed) then - local label = 'unknown' - - if (lock.locked) then - label = _(CR(), 'locks', 'door_locked') - else - label = _(CR(), 'locks', 'door_unlocked') - end - - table.insert(locks.drawLocks, { - position = lock.labelPosition, - label = label - }) - end - end - end - - if (not locks.anyInRange) then - locks.closeLocks = {} - locks.drawLocks = {} - locks.entityEvents = {} - - clearOn('raycast:entity') - end - - Citizen.Wait(500) - end -end) - ---- Draw labels for locks from > locks.drawLocks -Citizen.CreateThread(function() - while true do - for _, lockLabel in pairs(locks.drawLocks or {}) do - locks.utils:drawText3Ds(lockLabel.position, lockLabel.label) - end - - Citizen.Wait(0) - end -end) - ---- Find entities for doorlocks > locks.closeLocks -Citizen.CreateThread(function() - while true do - local coords = GetEntityCoords(GetPlayerPed(-1)) - - for _, lock in pairs(locks.closeLocks or {}) do - if (lock.numberOfDoors > 0) then - for i, _ in pairs(lock.doors or {}) do - if (lock.doors[i].position ~= nil and lock.doors[i].entity == nil) then - if (#(lock.doors[i].position - coords) <= lock.distance) then - lock.doors[i].entity = GetClosestObjectOfType(lock.doors[i].position.x, lock.doors[i].position.y, lock.doors[i].position.z, 1.0, lock.doors[i].hash, false, false, false) - end - end - end - end - end - - Citizen.Wait(500) - end -end) - ---- Find entities for doorlocks > locks.closeLocks -Citizen.CreateThread(function() - local wheels, unlockWheel, wheelCreated = nil, nil, false - - while true do - local coords = GetEntityCoords(GetPlayerPed(-1)) - - for _, lock in pairs(locks.closeLocks or {}) do - if (lock.numberOfDoors > 0) then - for i, door in pairs(lock.doors or {}) do - if (lock.doors[i].latest == nil) then lock.doors[i].latest = {} end - - if (lock.doors[i].position ~= nil and lock.doors[i].entity ~= nil) then - if (lock.locked and lock.doors[i].resetPosition ~= nil and lock.doors[i].resetPosition) then - if (lock.doors[i].latest.coords == nil or not lock.doors[i].latest.coords) then - lock.doors[i].latest.coords = true - - SetEntityCoords(lock.doors[i].entity, lock.doors[i].position.x, lock.doors[i].position.y, lock.doors[i].position.z, 1, 1, 1, false) - end - end - - if (#(lock.doors[i].position - coords) <= lock.distance) then - if (lock.doors[i].latest.freeze == nil or lock.doors[i].latest.freeze ~= lock.locked) then - lock.doors[i].latest.freeze = lock.locked - - FreezeEntityPosition(lock.doors[i].entity, lock.locked) - end - end - - if (lock.locked and lock.doors[i].rotation ~= nil) then - if (lock.doors[i].latest.rotation == nil or not lock.doors[i].latest.rotation) then - lock.doors[i].latest.rotation = true - - SetEntityRotation(lock.doors[i].entity, lock.doors[i].rotation.x, lock.doors[i].rotation.y, lock.doors[i].rotation.z, 2, true) - end - end - - if (lock.allowed and (locks.entityEvents ~= nil and locks.entityEvents[tostring(lock.doors[i].entity)] == nil)) then - locks.entityEvents[tostring(lock.doors[i].entity)] = true - - on('raycast:entity', lock.doors[i].entity, function(entity, coords) - if (lock.allowed) then - if (wheels == nil) then wheels = m('wheels') end - - unlockWheel, wheelCreated = wheels:create('unlock', 'unlock') - - if (wheelCreated) then - unlockWheel:addItem({ - icon = 'fa-unlock', - lib = 'far', - addon = { action = 'unlock' } - }) - - unlockWheel:addItem({ - icon = 'fa-lock', - lib = 'far', - addon = { action = 'lock' } - }) - - unlockWheel:registerEvent('submit', function(wheel, selectedItem) - local addon = wheel:getAddon() - local itemAddon = selectedItem.addon or {} - - if (itemAddon.action == 'unlock') then - triggerServerCallback('corev:locks:unlock', function(changed) - end, addon.name) - - elseif (itemAddon.action == 'lock') then - triggerServerCallback('corev:locks:lock', function(changed) - end, addon.name) - end - end) - end - - unlockWheel:setAddon({ entity = entity, name = lock.name }) - - wheels:open('unlock', 'unlock', true) - end - end) - end - end - end - end - end - - Citizen.Wait(100) - end -end) - ---- Request all locks -Citizen.CreateThread(function() - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - triggerServerCallback('corev:locks:receive', function(_locks) - locks.locks = _locks or {} - end) -end) - -onServerTrigger('corev:locks:updateLock', function(name, locked) - if (locks.locks ~= nil and locks.locks[name] ~= nil) then - locks.locks[name].locked = locked - - for i, _ in pairs(locks.locks[name].doors or {}) do - locks.locks[name].doors[i].locked = locked - locks.locks[name].doors[i].latest = {} - end - end -end) - -onServerTrigger('corev:players:setJob', function(job, grade) - while not resource.tasks.loadingFramework do - Wait(0) - end - - triggerServerCallback('corev:locks:receive', function(_locks) - locks.locks = _locks or {} - end) -end) - -onServerTrigger('corev:players:setJob2', function(job, grade) - while not resource.tasks.loadingFramework do - Wait(0) - end - - triggerServerCallback('corev:locks:receive', function(_locks) - locks.locks = _locks or {} - end) -end) - -addModule('locks', locks) \ No newline at end of file diff --git a/modules/[fivem]/locks/config/server_config.lua b/modules/[fivem]/locks/config/server_config.lua deleted file mode 100644 index a089f64..0000000 --- a/modules/[fivem]/locks/config/server_config.lua +++ /dev/null @@ -1,83 +0,0 @@ -Config.Locks = { - Doors = { - --- Office door - ['POLICE_OFFICE_DOOR'] = { - Authorized = { Jobs = { 'politie' }, Groups = { } }, - Locked = true, - Distance = 10, - LabelPosition = vector3(447.23, -980.03, 31.20), - Door = { - Name = 'v_ilev_ph_gendoor002', - Hash = -1320876379, - Heading = 180.000, - Position = vector3(446.57280, -980.01060, 30.83930), - Rotation = vector3(0.00000, 0.00000, -179.99990), - ResetPosition = false - } - }, - --- Hallway locker room - ['POLICE_HALLWAY_LOCKER_ROOM'] = { - Authorized = { Jobs = { 'politie' }, Groups = { } }, - Locked = true, - Distance = 10, - LabelPosition = vector3(449.99, -986.42, 31.20), - Door = { - Name = 'v_ilev_ph_gendoor004', - Hash = 1557126584, - Heading = 89.873, - Position = vector3(450.10410, -985.73840, 30.83930), - Rotation = vector3(-0.00001, 0.00000, 89.87250), - ResetPosition = false - } - }, - --- Hallway stairs - ['POLICE_HALLWAY_STARIS'] = { - Authorized = { Jobs = { 'politie' }, Groups = { } }, - Locked = true, - Distance = 10, - LabelPosition = vector3(444.7, -989.39, 31.20), - Doors = { - { - Name = 'v_ilev_ph_gendoor005', - Hash = 185711165, - Heading = 0.000, - Position = vector3(446.00790, -989.44540, 30.83930), - Rotation = vector3(0.00000, 0.00000, 0.00000), - ResetPosition = false - }, - { - Name = 'v_ilev_ph_gendoor005', - Hash = 185711165, - Heading = 180.000, - Position = vector3(443.40780, -989.44540, 30.83930), - Rotation = vector3(0.00000, 0.00000, 180.00000), - ResetPosition = false - } - } - }, - --- Entrance police station - ['POLICE_ENTRANCE_STATION'] = { - Authorized = { Jobs = { 'politie' }, Groups = { } }, - Distance = 10, - LabelPosition = vector3(434.71, -981.91, 31.20), - Doors = { - { - Name = 'v_ilev_ph_door01', - Hash = 3079744621, - Heading = 0.000, - Position = vector3(434.7479, -980.6184, 30.83926), - Rotation = vector3(0.00000, 0.00000, -89.87250), - ResetPosition = false - }, - { - Name = 'v_ilev_ph_door002', - Hash = 320433149, - Heading = 180.000, - Position = vector3(434.7479, -983.2151, 30.83926), - Rotation = vector3(0.00000, 0.00000, -89.87250), - ResetPosition = false - } - } - } - } -} \ No newline at end of file diff --git a/modules/[fivem]/locks/langs/nl.json b/modules/[fivem]/locks/langs/nl.json deleted file mode 100644 index c765565..0000000 --- a/modules/[fivem]/locks/langs/nl.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "door_locked": "🔒", - "door_unlocked": "🔓" -} \ No newline at end of file diff --git a/modules/[fivem]/locks/module.json b/modules/[fivem]/locks/module.json deleted file mode 100644 index df94d34..0000000 --- a/modules/[fivem]/locks/module.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV lock module", - "server_scripts": [ - "config/server_config.lua", - "server/main.lua", - "classes/door.lua", - "classes/lock.lua" - ], - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "lock" -} \ No newline at end of file diff --git a/modules/[fivem]/locks/server/main.lua b/modules/[fivem]/locks/server/main.lua deleted file mode 100644 index d878ac0..0000000 --- a/modules/[fivem]/locks/server/main.lua +++ /dev/null @@ -1,83 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local locks = class('locks') - -locks:set { - locks = {}, - loaded = false -} - -Citizen.CreateThread(function() - for name, lock in pairs((Config.Locks or {}).Doors or {}) do - local lockObject = locks:createLock(name, lock) - - if (lockObject ~= nil) then - locks.locks[lockObject.name] = lockObject - end - end - - locks.loaded = true -end) - ---- Returns all current locks -function locks:getPlayerLocks(source) - local _locks = {} - - for _, lock in pairs(locks.locks or {}) do - _locks[lock.name] = { - name = lock.name, - locked = lock.locked or false, - distance = lock.distance or 5, - doors = lock.doors or {}, - numberOfDoors = lock.numberOfDoors or 0, - allowed = lock:playerAllowed(source), - labelPosition = lock.labelPosition or false - } - end - - return _locks -end - -registerCallback('corev:locks:receive', function(source, cb) - repeat Wait(0) until locks.loaded == true - - local doorLocks = locks:getPlayerLocks(source) or {} - - cb(doorLocks) -end) - -registerCallback('corev:locks:lock', function(source, cb, name) - repeat Wait(0) until locks.loaded == true - - local lock = (locks.locks or {})[name] or nil - - if (lock == nil) then cb(false) return end - if (not lock:playerAllowed(source)) then cb(false) return end - - lock:updateState(true) - - cb(true) -end) - -registerCallback('corev:locks:unlock', function(source, cb, name) - repeat Wait(0) until locks.loaded == true - - local lock = (locks.locks or {})[name] or nil - - if (lock == nil) then cb(false) return end - if (not lock:playerAllowed(source)) then cb(false) return end - - lock:updateState(false) - - cb(true) -end) - -addModule('locks', locks) \ No newline at end of file diff --git a/modules/[fivem]/markers/classes/marker.lua b/modules/[fivem]/markers/classes/marker.lua deleted file mode 100644 index 81b1374..0000000 --- a/modules/[fivem]/markers/classes/marker.lua +++ /dev/null @@ -1,114 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- - ---- Create a marker object ---- @param name string Marker name ---- @param event string Marker event ---- @param whitelist array Whitelist ---- @param markerType int Marker type ---- @param position vector3 Marker position ---- @param size vector3 Marker size ---- @param colors array Marker colors -function markers:createMarker(name, event, whitelist, markerType, position, size, colors, addon) - local marker = class('marker') - - marker:set { - name = name, - whitelist = whitelist, - type = markerType, - position = position, - size = size, - colors = colors, - event = event, - addon = addon or {} - } - - if (markers.markers ~= nil and markers.markers[name] ~= nil) then - error:print(_(CR(), 'markers', 'override_marker', name)) - - for i, group in pairs((markers.markers[name].whitelist or {}).groups or {}) do - if (string.lower(group) == 'all') then - for _i, _group in pairs(Config.PermissionGroups or {}) do - ExecuteCommand(('remove_ace group.%s "marker.%s" allow'):format(_group, name)) - end - else - ExecuteCommand(('remove_ace group.%s "marker.%s" allow'):format(group, name)) - end - end - end - - for i, group in pairs((marker.whitelist or {}).groups or {}) do - if (type(group) == 'string' and group ~= '') then - if (string.lower(group) == 'all') then - for _i, _group in pairs(Config.PermissionGroups or {}) do - ExecuteCommand(('add_ace group.%s "marker.%s" allow'):format(_group, name)) - end - else - ExecuteCommand(('add_ace group.%s "marker.%s" allow'):format(group, name)) - end - end - end - - --- Check if player is allowed to see marker - --- @param source int player source - function marker:playerAllowed(source) - if (source == nil or type(source) ~= 'number') then - return false - end - - local aceAllowed = IsPlayerAceAllowed(source, ('marker.%s'):format(self.name)) - - if (aceAllowed == true or aceAllowed == 1) then return true end - - local players = m('players') - local player = players:getPlayer(source) - - if (player == nil) then return false end - - for i, job in pairs((markers.markers[self.name].whitelist or {}).jobs or {}) do - if (job ~= nil and type(job) == 'string') then - return string.lower(job) == string.lower(player.job.name) or string.lower(job) == string.lower(player.job2.name) - elseif (job ~= nil and type(job) == 'table') then - if (job.name ~= nil and type(job.name) == 'string') then - if (string.lower(job.name) == string.lower(player.job.name)) then - for _i, _grade in pairs(job.grades or {}) do - if (_grade ~= nil and type(_grade) == 'string' and string.lower(_grade) == string.lower(player.grade.name)) then - return true - elseif (_grade ~= nil and type(_grade) == 'number' and _grade == player.grade.grade) then - return true - end - end - elseif (string.lower(job.name) == string.lower(player.job2.name)) then - for _i, _grade in pairs(job.grades or {}) do - if (_grade ~= nil and type(_grade) == 'string' and string.lower(_grade) == string.lower(player.grade2.name)) then - return true - elseif (_grade ~= nil and type(_grade) == 'number' and _grade == player.grade2.grade) then - return true - end - end - end - end - end - end - - return false - end - - --- Returns marker position - function marker:getPosition() - return self.position or vector3(0.0, 0.0, 0.0) - end - - --- Store marker - markers.markers[marker.name] = marker - - return marker -end \ No newline at end of file diff --git a/modules/[fivem]/markers/client/main.lua b/modules/[fivem]/markers/client/main.lua deleted file mode 100644 index 25c7d28..0000000 --- a/modules/[fivem]/markers/client/main.lua +++ /dev/null @@ -1,140 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local markers = class('markers') - ---- Default values -markers:set { - markers = {}, - anyMarkerDrawed = false, - drawMarkers = {}, - inMarker = false, - currentMarker = nil, - lastMarker = nil -} - ---- Load markers in > markers.drawMarkers -Citizen.CreateThread(function() - while true do - local coords = GetEntityCoords(GetPlayerPed(-1)) - - markers.drawMarkers = {} - - for i, marker in pairs(markers.markers or {}) do - if (marker ~= nil and marker.position ~= nil and #(marker.position - coords) < Config.DrawMarkerDistance) then - table.insert(markers.drawMarkers, marker) - end - end - - Citizen.Wait(1000) - end -end) - ---- Draw markers from > markers.drawMarkers -Citizen.CreateThread(function() - while true do - markers.anyMarkerDrawed = false - - for i, marker in pairs(markers.drawMarkers or {}) do - markers.anyMarkerDrawed = true - - DrawMarker( - marker.type, - marker.position.x, - marker.position.y, - marker.position.z, - 0.0, 0.0, 0.0, 0, 0.0, 0.0, - marker.size.x, - marker.size.y, - marker.size.z, - marker.colors.red, - marker.colors.green, - marker.colors.blue, - 100, - false, - true, - 2, - false, - false, - false, - false) - end - - Citizen.Wait(0) - end -end) - ---- Trigger marker event -Citizen.CreateThread(function() - while true do - markers.inMarker = false - markers.currentMarker = nil - - if (markers.anyMarkerDrawed) then - local coords = GetEntityCoords(GetPlayerPed(-1)) - - for _, marker in pairs(markers.drawMarkers or {}) do - if (not markers.inMarker and #(marker.position - coords) < marker.size.x) then - markers.inMarker = true - markers.currentMarker = marker - markers.lastMarker = marker - - triggerOnEvent('marker:enter', marker.event, marker) - end - end - - if (markers.currentMarker == nil and markers.lastMarker ~= nil) then - triggerOnEvent('marker:leave', markers.lastMarker.event, markers.lastMarker) - markers.lastMarker = nil - end - end - - Citizen.Wait(0) - end -end) - ---- Request all markers -Citizen.CreateThread(function() - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - triggerServerCallback('corev:markers:receive', function(_markers) - markers.markers = _markers or {} - end) -end) - -onServerTrigger('corev:players:setJob', function(job, grade) - while not resource.tasks.loadingFramework do - Wait(0) - end - - triggerServerCallback('corev:markers:receive', function(_markers) - markers.markers = _markers or {} - end) -end) - -onServerTrigger('corev:players:setJob2', function(job, grade) - while not resource.tasks.loadingFramework do - Wait(0) - end - - triggerServerCallback('corev:markers:receive', function(_markers) - markers.markers = _markers or {} - end) -end) - -onFrameworkStarted(function() - local keybinds = m('keybinds') - - keybinds:registerKey('marker_trigger', _(CR(), 'markers', 'keybind_markers'), 'keyboard', 'e') -end) - -addModule('markers', markers) \ No newline at end of file diff --git a/modules/[fivem]/markers/langs/nl.json b/modules/[fivem]/markers/langs/nl.json deleted file mode 100644 index 090dbde..0000000 --- a/modules/[fivem]/markers/langs/nl.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "override_marker": "Marker `%s` bestaat al, marker wordt voor nu overschreven", - "keybind_markers": "Gebruiken van een cirkel bijv. garage menu" -} \ No newline at end of file diff --git a/modules/[fivem]/markers/module.json b/modules/[fivem]/markers/module.json deleted file mode 100644 index 8e2409d..0000000 --- a/modules/[fivem]/markers/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV markers module", - "server_scripts": [ - "server/main.lua", - "classes/marker.lua" - ], - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "markers" -} \ No newline at end of file diff --git a/modules/[fivem]/markers/server/main.lua b/modules/[fivem]/markers/server/main.lua deleted file mode 100644 index ca94585..0000000 --- a/modules/[fivem]/markers/server/main.lua +++ /dev/null @@ -1,118 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local markers = class('markers') - ---- Default values -markers:set { - markers = {} -} - ---- Add a marker to global framework ---- @param name string name of marker ---- @param whitelist array whitelist ---- @param mType int marker type ---- @param pos array|vector3|int position of marker ---- @param info array|vector3|int size of marker ---- @param hex string color of marker -function markers:add(name, event, whitelist, mType, pos, info, hex, addon) - local position = nil - local size = nil - local red, green, blue = 255, 255, 255 - - if (name == nil or type(name) ~= 'string' or name == '' or event == nil or type(event) ~= 'string' or event == '') then - return - end - - --- define position as vector3 - if (string.lower(type(pos)) == 'vector3') then - position = pos - elseif (type(pos) == 'table') then - position = vector3((pos.x or 0.0), (pos.y or 0.0), (pos.z or 0.0)) - elseif (type(pos) == 'number') then - position = vector3((pos or 0.0), (pos or 0.0), (pos or 0.0)) - else - return - end - - --- define size as vector3 - if (string.lower(type(info)) == 'vector3') then - size = info - elseif (type(info) == 'table') then - size = vector3((info.x or 0.0), (info.y or 0.0), (info.z or 0.0)) - elseif (type(info) == 'number') then - size = vector3((info or 0.0), (info or 0.0), (info or 0.0)) - else - size = vector3(1.5, 1.5, 1.5) - end - - --- transform hex to rgb color - red, green, blue = hex2rgb(hex) - - --- define marker type - if (mType == nil or (type(mType) == 'number' and (mType < 0 or mType > 43))) then - mType = MarkerTypes.MarkerTypeHorizontalSplitArrowCircle or 27 - elseif (type(mType) == 'number') then - mType = mType - elseif ((type(mType) == 'string')) then - local mType = tonumber(mType or '0') - - if ((type(mType) == 'number' and (mType < 0 or mType > 43))) then - mType = MarkerTypes.MarkerTypeHorizontalSplitArrowCircle or 27 - end - else - mType = MarkerTypes.MarkerTypeHorizontalSplitArrowCircle or 27 - end - - --- define marker whitelist - if (whitelist == nil and type(whitelist) ~= 'table') then - whitelist = { groups = { 'all' }, jobs = { 'all' } } - else - whitelist = { groups = whitelist.groups or {}, jobs = whitelist.jobs or {} } - end - - --- create marker - self:createMarker(name, event, whitelist, mType, position, size, { - red = red, - green = green, - blue = blue - }, (addon or {})) -end - ---- Get a list of markers ---- @param source int|string Player -function markers:getPlayerMarkers(source) - local _markers = {} - - for _, marker in pairs(markers.markers or {}) do - if (marker:playerAllowed(source)) then - table.insert(_markers, { - name = marker.name, - type = marker.type, - position = marker.position, - size = marker.size, - colors = marker.colors, - event = marker.event, - addon = marker.addon or {} - }) - end - end - - return _markers -end - ---- Returns all markers to player -registerCallback('corev:markers:receive', function(source, cb) - local playerMarkers = markers:getPlayerMarkers(source) or {} - - cb(playerMarkers) -end) - -addModule('markers', markers) \ No newline at end of file diff --git a/modules/[fivem]/notifications/client/main.lua b/modules/[fivem]/notifications/client/main.lua deleted file mode 100644 index 96f0044..0000000 --- a/modules/[fivem]/notifications/client/main.lua +++ /dev/null @@ -1,50 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local notifications = class('notifications') - ---- Show a notifiaction (client side) ---- @param msg string notification message ---- @param hudColorIndex number Color index -function notifications:showNotification(msg, hudColorIndex) - if (hudColorIndex == nil or type(hudColorIndex) ~= 'number') then hudColorIndex = 140 end - - SetNotificationTextEntry('STRING') - SetNotificationFlashColor(hudColorIndex) - SetNotificationBackgroundColor(hudColorIndex) - AddTextComponentSubstringPlayerName(msg) - DrawNotification(false, true) -end - ---- Show a help notification ---- @param msg string notification message ---- @param thisFrame number show only this frame ---- @param beep boolean make a beep sound ---- @param duration number duration of message -function notifications:showHelpNotification(msg, thisFrame, beep, duration) - local name = 'corev:helpNotification' - - if (thisFrame == nil or type(thisFrame) ~= 'number' or type(thisFrame) ~= 'boolean') then thisFrame = false end - if (type(thisFrame) == 'number' and (thisFrame < 0 or thisFrame > 1)) then thisFrame = false end - if (beep == nil or type(beep) ~= 'number' or type(beep) ~= 'boolean') then beep = false end - if (type(beep) == 'number' and (beep < 0 or beep > 1)) then beep = false end - if (duration == nil or type(duration) ~= 'number') then duration = -1 end - - AddTextEntry(name, msg) - - if (thisFrame) then - DisplayHelpTextThisFrame(name, false) - else - BeginTextCommandDisplayHelp(name) - EndTextCommandDisplayHelp(0, false, beep, duration) - end -end - -addModule('notifications', notifications) \ No newline at end of file diff --git a/modules/[fivem]/notifications/module.json b/modules/[fivem]/notifications/module.json deleted file mode 100644 index e19d7d6..0000000 --- a/modules/[fivem]/notifications/module.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV notifications module", - "client_scripts": [ - "client/main.lua" - ], - "server_scripts": [ - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "notifications" -} \ No newline at end of file diff --git a/modules/[fivem]/raycast/client/main.lua b/modules/[fivem]/raycast/client/main.lua deleted file mode 100644 index 1c4f7c4..0000000 --- a/modules/[fivem]/raycast/client/main.lua +++ /dev/null @@ -1,291 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local raycast = class('raycast') - --- Set default values -raycast:set { - latestMouseState = false, - showMouse = false, - lastShowMouseState = false, - keybinds = m('keybinds'), - hashList = hashList or m('hashList'), - flag = Config.EnableCustomFilter == true and 2 or 30, - flags = { - [1] = 'self', --- Player's own entity - [2] = 'vehicle', --- Vehicles in world - [4] = 'ped', --- Peds in world - [8] = 'ped', --- Peds in world - [16] = 'object', --- Objects in world - [32] = 'player' --- Players in world - }, - pi = math.pi, - abs = math.abs, - cos = math.cos, - sin = math.sin -} - ---- Transform a enumerator to a table ---- @param enumerator function Enumerator ---- @param entityType string Entity type ---- @param table table Table (optional) -function raycast:toTable(enumerator, entityType, table) - local output = table or {} - - if (output == nil or type(output) ~= 'table') then output = {} end - if (entityType == nil or type(entityType) ~= 'string') then entityType = 'unknown' end - - for entity in enumerator() do - output[tostring(entity)] = { - entity = entity, - type = entityType, - coords = nil, - screenCoords = nil - } - end - - return output -end - ---- Get a objects from enumerator and returns a table ---- @param table table Table to add results to (optional) -function raycast:getObjects(table) - return self:toTable(EnumerateObjects, 'object', table) -end - ---- Get a peds from enumerator and returns a table ---- @param table table Table to add results to (optional) -function raycast:getPeds(table) - return self:toTable(EnumeratePeds, 'ped', table) -end - ---- Get a vehicles from enumerator and returns a table ---- @param table table Table to add results to (optional) -function raycast:getVehicles(table) - return self:toTable(EnumerateVehicles, 'vehicle', table) -end - - ---- Get a vehicles from enumerator and returns a table ---- @param table table Table to add results to (optional) -function raycast:getSelfPlayerPed(table) - local output, entityType = table or {}, 'self' - - if (output == nil or type(output) ~= 'table') then output = {} end - - local playerPed = PlayerPedId() - - output[tostring(playerPed)] = { - entity = playerPed, - type = entityType, - coords = nil, - screenCoords = nil - } - - return output -end - ---- Transform position to 2D screen coords ---- @param position vector3|table Position -function raycast:world3dToScreen2D(position) - local onScreen, screenX, screenY = GetScreenCoordFromWorldCoord(position.x, position.y, position.z) - - return onScreen, vector2(screenX, screenY) -end - ---- Returns closest entity on screen based on mouse position ---- @param flags number Flags can be found in raycast.flags [1,2,4,8,16,32] -function raycast:screen2dToWorld3D(flags) - local camRotation = GetGameplayCamRot(0) - local camPosition = GetGameplayCamCoord() - local mousePosition = vector2(GetControlNormal(0, 239), GetControlNormal(0, 240)) - local camera3dPositon, forwardDirection = self:screenToWorld(camPosition, camRotation, mousePosition) - local cameraDirection = camPosition + forwardDirection * (Config.RaycastLength or 50.0) - local raycastHandle = StartShapeTestRay(camera3dPositon, cameraDirection, flags, 0, 0) - local retval, hit, endCoords, surfaceNormal, entityHit = GetShapeTestResult(raycastHandle) - - if (entityHit ~= nil and entityHit >= 1) then - return true, endCoords, surfaceNormal, entityHit, GetEntityType(entityHit), cameraDirection - end - - return false, nil, nil, 0, 0, nil -end - ---- Based on current camera position, calculates where mousePosition is poiting at ---- @param camPosition vector3|table Position of camera ---- @param camRotation vector3|table Rotation of camera ---- @param mousePosition vecot2|table Position of mouse -function raycast:screenToWorld(camPosition, camRotation, mousePosition) - local cameraForward = self:rotateToDirection(camRotation) - - local rotationUp = vector3(camRotation.x + 1.0, camRotation.y, camRotation.z) - local rotationDown = vector3(camRotation.x - 1.0, camRotation.y, camRotation.z) - local rotationLeft = vector3(camRotation.x, camRotation.y, camRotation.z - 1.0) - local rotationRight = vector3(camRotation.x, camRotation.y, camRotation.z + 1.0) - - local cameraRight = self:rotateToDirection(rotationRight) - self:rotateToDirection(rotationLeft) - local cameraUp = self:rotateToDirection(rotationUp) - self:rotateToDirection(rotationDown) - - local roll = -(camRotation.y * self.pi / 180.0) - - local cameraRightRoll = cameraRight * self.cos(roll) - cameraUp * self.sin(roll) - local cameraUpRoll = cameraRight * self.sin(roll) + cameraUp * self.cos(roll) - - local point3dZero = camPosition + cameraForward * 1.0 - local point3d = point3dZero + cameraRightRoll + cameraUpRoll - - local _, point2dZero = self:world3dToScreen2D(point3dZero) - local _, point2D = self:world3dToScreen2D(point3d) - - local scaleX = (mousePosition.x - point2dZero.x) / (point2D.x - point2dZero.x) - local scaleY = (mousePosition.y - point2dZero.y) / (point2D.y - point2dZero.y) - - local point3d = point3dZero + cameraRightRoll * scaleX + cameraUpRoll * scaleY - local forwardDirection = cameraForward + cameraRightRoll * scaleX + cameraUpRoll * scaleY - - return point3d, forwardDirection -end - ---- Rotate rotation ---- @param rotation vector3|table Position -function raycast:rotateToDirection(rotation) - local x = rotation.x * self.pi / 180.0 - local z = rotation.z * self.pi / 180.0 - local num = self.abs(self.cos(x)) - - return vector3((-self.sin(z) * num), (self.cos(z) * num), self.sin(x)) -end - ---- Removes y from x flag ---- @param x number Flag ---- @param y number Flag to remove -function raycast:xor(x, y) - local z = 0 - - for i = 0, 31 do - if (x % 2 == 0) then - if ( y % 2 == 1) then - y = y - 1 - z = z + 2 ^ i - end - else - x = x - 1 - - if (y % 2 == 0) then - z = z + 2 ^ i - else - y = y - 1 - end - end - - y = y / 2 - x = x / 2 - end - - return z -end - ---- Checks if flagType exists in flag ---- @param flagType number Flag type like: 1,2,4,8,16,32... ---- @param flag number Flag like 3,5,6,7,9,10.... -function raycast:flagExists(flagType, flag) - if (flagType == nil or type(flagType) ~= 'number') then return false end - if (flag == nil or type(flag) ~= 'number') then return false end - - local result = self:xor(flag, flagType) - - return flag - result == flagType -end - -function raycast:enableFlag(flag) - if (not Config.EnableCustomFilter) then return end - if (flag == nil or (type(flag) ~= 'number' and type(flag) ~= 'string')) then return end - if (type(flag) == 'string') then flag = tonumber(flag) end - - if (self:flagExists(flag, self.flag)) then return end - - self.flag = self.flag + flag -end - -function raycast:disableFlag(flag) - if (not Config.EnableCustomFilter) then return end - if (flag == nil or (type(flag) ~= 'number' and type(flag) ~= 'string')) then return end - if (type(flag) == 'string') then flag = tonumber(flag) end - - if (not self:flagExists(flag, self.flag)) then return end - - self.flag = self.flag - flag -end - -Citizen.CreateThread(function() - while true do - if (raycast.keybinds:isControlPressed('raycast_select') and not raycast.showMouse) then - raycast.showMouse = true - end - - if (raycast.showMouse ~= raycast.lastShowMouseState) then - raycast.lastShowMouseState = raycast.showMouse or false - - --- Update NUI Focus state - nui:setNuiFocus(false, raycast.showMouse, 'raycast') - - --- Update Controls state - controls:disableControlAction(0, 1, raycast.showMouse, 'raycast') -- LookLeftRight - controls:disableControlAction(0, 2, raycast.showMouse, 'raycast') -- LookUpDown - controls:disableControlAction(0, 142, raycast.showMouse, 'raycast') -- MeleeAttackAlternate - controls:disableControlAction(0, 106, raycast.showMouse, 'raycast') -- VehicleMouseControlOverride - end - - if (raycast.showMouse) then - if (raycast.keybinds:isControlPressed('raycast_click')) then - raycast.showMouse = false - - local anyEntityFound, entityCoords, surfaceNormal, entityHit, entityType, cameraDirection = raycast:screen2dToWorld3D(raycast.flag) - - if (anyEntityFound) then - local hashFound, hashName = false, nil - - if (entityType > 0) then - local entityHash = GetEntityModel(entityHit) - - hashFound, hashName = raycast.hashList:getName(entityHash) - end - - if (hashFound) then - triggerOnEvent('raycast:hash', hashName, entityHit, entityCoords) - end - - triggerOnEvent('raycast:entity', entityHit, entityHit, entityCoords) - - if (entityType == 1 or entityType == '1') then - triggerOnEvent('raycast:type', 'ped', entityHit, entityCoords) - elseif (entityType == 2 or entityType == '2') then - triggerOnEvent('raycast:type', 'vehicle', entityHit, entityCoords) - elseif (entityType == 3 or entityType == '3') then - triggerOnEvent('raycast:type', 'object', entityHit, entityCoords) - elseif (entityType == 4 or entityType == '4') then - triggerOnEvent('raycast:type', 'self', entityHit, entityCoords) - elseif (entityType == 5 or entityType == '5') then - triggerOnEvent('raycast:type', 'player', entityHit, entityCoords) - end - end - end - end - - Citizen.Wait(0) - end -end) - -addModule('raycast', raycast) - -onFrameworkStarted(function() - raycast.keybinds:registerKey('raycast_select', _(CR(), 'raycast', 'keybind_raycast_select'), 'mouse', 'mouse_right') - raycast.keybinds:registerKey('raycast_click', _(CR(), 'raycast', 'keybind_raycast_click'), 'mouse', 'mouse_left') -end) \ No newline at end of file diff --git a/modules/[fivem]/raycast/config/shared_config.lua b/modules/[fivem]/raycast/config/shared_config.lua deleted file mode 100644 index ff87791..0000000 --- a/modules/[fivem]/raycast/config/shared_config.lua +++ /dev/null @@ -1,2 +0,0 @@ -Config.RaycastLength = 50.0 -Config.EnableCustomFilter = false \ No newline at end of file diff --git a/modules/[fivem]/raycast/langs/nl.json b/modules/[fivem]/raycast/langs/nl.json deleted file mode 100644 index af1d14c..0000000 --- a/modules/[fivem]/raycast/langs/nl.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "keybind_raycast_select": "Muis zichtbaar maken om een object te kunnen selecteren", - "keybind_raycast_click": "Drukken op een object om hiervoor een actie uitvoeren" -} \ No newline at end of file diff --git a/modules/[fivem]/raycast/module.json b/modules/[fivem]/raycast/module.json deleted file mode 100644 index 52dc983..0000000 --- a/modules/[fivem]/raycast/module.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV raycast module", - "client_scripts": [ - "config/shared_config.lua", - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "raycast" -} \ No newline at end of file diff --git a/modules/[fivem]/skins/classes/skin.lua b/modules/[fivem]/skins/classes/skin.lua deleted file mode 100644 index fb67aad..0000000 --- a/modules/[fivem]/skins/classes/skin.lua +++ /dev/null @@ -1,417 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function skins:loadSkin(playerPed, model, values) - --- Some checks in order to let everthing run fine - if (playerPed == nil) then playerPed = PlayerPedId() end - if (model == nil or type(model) ~= 'string') then model = 'mp_m_freemode_01' end - if (values == nil) then values = {} end - if (type(values) ~= 'table') then values = {} end - - --- Create a skin object - local skin = class('skin') - - --- Set default ped variation - SetPedComponentVariation(playerPed, 3, 15, 0, 0) - SetPedComponentVariation(playerPed, 8, 15, 0, 0) - SetPedComponentVariation(playerPed, 11, 15, 0, 0) - - --- Set default skin values - skin:set { - drawableVariations = {}, - propVariations = {}, - options = { - colors = {}, - hairs = {}, - blemishes = {}, - beards = {}, - eyebrows = {}, - ageings = {}, - makeups = {}, - blushes = {}, - complexions = {}, - sunDamages = {}, - lipsticks = {}, - molesFreckles = {}, - chestHairs = {}, - bodyBlemishes = {}, - eyeColors = {}, - clothingMasks = {}, - clothingMasksTexture = {}, - clothingUpperBody = {}, - clothingUpperBodyTexture = {}, - clothingLowerBody = {}, - clothingLowerBodyTexture = {}, - clothingBagsParachutes = {}, - clothingBagsParachutesTexture = {}, - clothingShoes = {}, - clothingShoesTexture = {}, - clothingScarfsChains = {}, - clothingScarfsChainsTexture = {}, - clothingShirtAccessory = {}, - clothingShirtAccessoryTexture = {}, - clothingBodyArmor = {}, - clothingBodyArmorTexture = {}, - clothingBagsesLogos = {}, - clothingBagsesLogosTexture = {}, - clothingShirtOverlayJackets = {}, - clothingShirtOverlayJacketsTexture = {} - }, - modelHash = GetHashKey(model) - } - - --- Change ped if model don't match - if (GetEntityModel(playerPed) ~= skin.modelHash) then - RequestModel(skin.modelHash) - - repeat Wait(0) until HasModelLoaded(skin.modelHash) - - if (PlayerPedId() == playerPed) then - SetPlayerModel(PlayerId(), skin.modelHash) - end - - SetPedDefaultComponentVariation(skin.modelHash) - SetModelAsNoLongerNeeded(skin.modelHash) - end - - --- Set default values for - skin:set { - values = { - hair = { - style = (values.hair or {}).style or values['hair:style'] or GetPedDrawableVariation(playerPed, 2), - color = (values.hair or {}).color or values['hair:color'] or 0, - hightlightColor = (values.hair or {}).hightlightColor or values['hair:hightlightColor'] or 0 - }, - blemish = { - style = (values.blemish or {}).style or values['blemish:style'] or 0, - opacity = (values.blemish or {}).opacity or values['blemish:opacity'] or 0.0 - }, - beard = { - style = (values.beard or {}).style or values['beard:style'] or 0, - color = (values.beard or {}).color or values['beard:color'] or 0, - opacity = (values.beard or {}).opacity or values['beard:opacity'] or 0 - }, - eyebrow = { - style = (values.eyebrow or {}).style or values['eyebrow:style'] or 0, - color = (values.eyebrow or {}).color or values['eyebrow:color'] or 0, - opacity = (values.eyebrow or {}).opacity or values['eyebrow:opacity'] or 0 - }, - ageing = { - style = (values.ageing or {}).style or values['ageing:style'] or 0, - opacity = (values.ageing or {}).opacity or values['ageing:opacity'] or 0 - }, - makeup = { - style = (values.makeup or {}).style or values['makeup:style'] or 0, - color = (values.makeup or {}).color or values['makeup:color'] or 0, - opacity = (values.makeup or {}).opacity or values['makeup:opacity'] or 0 - }, - blush = { - style = (values.blush or {}).style or values['blush:style'] or 0, - color = (values.blush or {}).color or values['blush:color'] or 0, - opacity = (values.blush or {}).opacity or values['blush:opacity'] or 0 - }, - complexion = { - style = (values.complexion or {}).style or values['complexion:style'] or 0, - opacity = (values.complexion or {}).opacity or values['complexion:opacity'] or 0 - }, - sun_damage = { - style = (values.sun_damage or {}).style or values['sun_damage:style'] or 0, - opacity = (values.sun_damage or {}).opacity or values['sun_damage:opacity'] or 0 - }, - lipstick = { - style = (values.lipstick or {}).style or values['lipstick:style'] or 0, - color = (values.lipstick or {}).color or values['lipstick:color'] or 0, - opacity = (values.lipstick or {}).opacity or values['lipstick:opacity'] or 0 - }, - mole_freckle = { - style = (values.mole_freckle or {}).style or values['mole_freckle:style'] or 0, - opacity = (values.mole_freckle or {}).opacity or values['mole_freckle:opacity'] or 0 - }, - chest_hair = { - style = (values.chest_hair or {}).style or values['chest_hair:style'] or 0, - color = (values.chest_hair or {}).color or values['chest_hair:color'] or 0, - opacity = (values.chest_hair or {}).opacity or values['chest_hair:opacity'] or 0 - }, - body_blemish = { - style = (values.body_blemish or {}).style or values['body_blemish:style'] or 0, - opacity = (values.body_blemish or {}).opacity or values['body_blemish:opacity'] or 0 - }, - clothing = { - unused_head = 0, - unused_head_texture = 0, - masks = 0, - masks_texture = 0, - unused_hair = 0, - unused_hair_texture = 0, - upper_body = 0, - upper_body_texture = 0, - lower_body = 0, - lower_body_texture = 0, - bags_parachutes = 0, - bags_parachutes_texture = 0, - shoes = 0, - shoes_texture = 0, - scarfs_chains = 0, - scarfs_chains_texture = 0, - shirt_accessory = 0, - shirt_accessory_texture = 0, - body_armor = 0, - body_armor_texture = 0, - badges_logos = 0, - badges_logos_texture = 0, - shirt_overlay_jackets = 0, - shirt_overlay_jackets_texture = 0 - }, - eyeColor = values.eyeColor or values['eyeColor'] or 0 - } - } - - --- Returns current skin as table - --- @param ignoreDefaultOrNull boolean|number Ignore default values - function skin:getSkinData(ignoreDefaultOrNull) - if (ignoreDefaultOrNull == nil) then ignoreDefaultOrNull = false end - if (type(ignoreDefaultOrNull) ~= 'boolean') then ignoreDefaultOrNull = tonumber(ignoreDefaultOrNull) end - if (type(ignoreDefaultOrNull) == 'number') then ignoreDefaultOrNull = ignoreDefaultOrNull == 1 end - - local result = {} - local currentSkin = self.values or {} - - for category, value in pairs(currentSkin) do - local categoryName = tostring(category or 'unknown') - - if (type(value) == 'table') then - for option, optionValue in pairs(value or {}) do - local optionName = tostring(option or 'unknown') - local addOptionToResult = not ignoreDefaultOrNull - - if (not addOptionToResult) then - if (type(optionValue) == 'number' and optionValue > 0) then - addOptionToResult = true - elseif (type(optionValue) == 'table') then - addOptionToResult = true - elseif (type(optionValue) == 'boolean' and optionValue) then - addOptionToResult = true - end - end - - if (addOptionToResult) then - result[('%s:%s'):format(categoryName, optionName)] = optionValue - end - end - else - local addOptionToResult = not ignoreDefaultOrNull - - if (not addOptionToResult) then - if (type(value) == 'number' and value > 0) then - addOptionToResult = true - elseif (type(value) == 'boolean' and value) then - addOptionToResult = true - end - end - - if (addOptionToResult) then - result[categoryName] = value - end - end - end - - return result - end - - for i = 0, GetNumHairColors(), 1 do - table.insert(skin.options.colors, { value = i, label = _(CR(), 'skins', 'color_label', (i + 1)) }) - end - - for i = 0, GetNumberOfPedDrawableVariations(playerPed, 2), 1 do - table.insert(skin.options.hairs, { value = i, label = _(CR(), 'skins', 'hair_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(0), 1 do - table.insert(skin.options.blemishes, { value = i, label = _(CR(), 'skins', 'blemishes_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(1), 1 do - table.insert(skin.options.beards, { value = i, label = _(CR(), 'skins', 'beard_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(2), 1 do - table.insert(skin.options.eyebrows, { value = i, label = _(CR(), 'skins', 'eyebrow_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(3), 1 do - table.insert(skin.options.ageings, { value = i, label = _(CR(), 'skins', 'ageing_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(4), 1 do - table.insert(skin.options.makeups, { value = i, label = _(CR(), 'skins', 'makeup_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(5), 1 do - table.insert(skin.options.blushes, { value = i, label = _(CR(), 'skins', 'blush_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(6), 1 do - table.insert(skin.options.complexions, { value = i, label = _(CR(), 'skins', 'complexion_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(7), 1 do - table.insert(skin.options.sunDamages, { value = i, label = _(CR(), 'skins', 'sun_damage_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(8), 1 do - table.insert(skin.options.lipsticks, { value = i, label = _(CR(), 'skins', 'lipstick_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(9), 1 do - table.insert(skin.options.molesFreckles, { value = i, label = _(CR(), 'skins', 'moles_freckle_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(10), 1 do - table.insert(skin.options.chestHairs, { value = i, label = _(CR(), 'skins', 'chest_hair_style_label', (i + 1)) }) - end - - for i = 0, GetNumHeadOverlayValues(11), 1 do - table.insert(skin.options.bodyBlemishes, { value = i, label = _(CR(), 'skins', 'body_blemish_style_label', (i + 1)) }) - end - - for i = 0, 32, 1 do - table.insert(skin.options.eyeColors, { value = i, label = _(CR(), 'skins', 'eye_color_label', (i + 1)) }) - end - - for i = 1, #skins.clothingOptions, 1 do - if (i ~= 1 and i ~= 3) then - local clothingOption = skins.clothingOptions[i] or { label = 'Unknown', key = 'unknown' } - local value = (values.clothing or {})[clothingOption.key or 'unknown'] or values[('clothing:%s'):format(clothingOption.key or 'unknown')] or 0 - local valueTexture = (values.clothing or {})[('%s_texture'):format(clothingOption.key or 'unknown')] or values[('clothing:%s_texture'):format(clothingOption.key or 'unknown')] or 0 - - local index = value ~= 255 and value or GetPedDrawableVariation(playerPed, i) - local textureIndex = valueTexture ~= 255 and valueTexture or GetPedTextureVariation(playerPed, i) - - local maxDrawables = GetNumberOfPedDrawableVariations(playerPed, i) - local maxTextures = GetNumberOfPedTextureVariations(playerPed, i, index) - - for x = 1, maxDrawables, 1 do - if (i == 2) then - skin.values.clothing.masks = index - - table.insert(skin.options.clothingMasks, { value = x, label = ('#%s'):format(i) }) - elseif (i == 4) then - skin.values.clothing.upper_body = index - - table.insert(skin.options.clothingUpperBody, { value = x, label = ('#%s'):format(i) }) - elseif (i == 5) then - skin.values.clothing.lower_body = index - - table.insert(skin.options.clothingLowerBody, { value = x, label = ('#%s'):format(i) }) - elseif (i == 6) then - skin.values.clothing.bags_parachutes = index - - table.insert(skin.options.clothingBagsParachutes, { value = x, label = ('#%s'):format(i) }) - elseif (i == 7) then - skin.values.clothing.shoes = index - - table.insert(skin.options.clothingShoes, { value = x, label = ('#%s'):format(i) }) - elseif (i == 8) then - skin.values.clothing.scarfs_chains = index - - table.insert(skin.options.clothingScarfsChains, { value = x, label = ('#%s'):format(i) }) - elseif (i == 9) then - skin.values.clothing.shirt_accessory = index - - table.insert(skin.options.clothingShirtAccessory, { value = x, label = ('#%s'):format(i) }) - elseif (i == 10) then - skin.values.clothing.body_armor = index - - table.insert(skin.options.clothingBodyArmor, { value = x, label = ('#%s'):format(i) }) - elseif (i == 11) then - skin.values.clothing.badges_logos = index - - table.insert(skin.options.clothingBagsesLogos, { value = x, label = ('#%s'):format(i) }) - elseif (i == 12) then - skin.values.clothing.shirt_overlay_jackets = index - - table.insert(skin.options.clothingShirtOverlayJackets, { value = x, label = ('#%s'):format(i) }) - end - end - - for x = 1, maxTextures, 1 do - if (i == 2) then - skin.values.clothing.masks_texture = textureIndex - - table.insert(skin.options.clothingMasksTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 4) then - skin.values.clothing.upper_body_texture = textureIndex - - table.insert(skin.options.clothingUpperBodyTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 5) then - skin.values.clothing.lower_body_texture = textureIndex - - table.insert(skin.options.clothingLowerBodyTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 6) then - skin.values.clothing.bags_parachutes_texture = textureIndex - - table.insert(skin.options.clothingBagsParachutesTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 7) then - skin.values.clothing.shoes_texture = textureIndex - - table.insert(skin.options.clothingShoesTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 8) then - skin.values.clothing.scarfs_chains_texture = textureIndex - - table.insert(skin.options.clothingScarfsChainsTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 9) then - skin.values.clothing.shirt_accessory_texture = textureIndex - - table.insert(skin.options.clothingShirtAccessoryTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 10) then - skin.values.clothing.body_armor_texture = textureIndex - - table.insert(skin.options.clothingBodyArmorTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 11) then - skin.values.clothing.badges_logos_texture = textureIndex - - table.insert(skin.options.clothingBagsesLogosTexture, { value = x, label = ('#%s'):format(i) }) - elseif (i == 12) then - skin.values.clothing.shirt_overlay_jackets_texture = textureIndex - - table.insert(skin.options.clothingShirtOverlayJacketsTexture, { value = x, label = ('#%s'):format(i) }) - end - end - end - end - - --- Update current playerPed - SetPedHeadOverlay(playerPed, 0, skin.values.blemish.style, skin.values.blemish.opacity) - SetPedHeadOverlay(playerPed, 1, skin.values.beard.style, skin.values.beard.opacity) - SetPedHeadOverlayColor(playerPed, 1, 1, skin.values.beard.color, skin.values.beard.color) - SetPedHeadOverlay(playerPed, 2, skin.values.eyebrow.style, skin.values.eyebrow.opacity) - SetPedHeadOverlayColor(playerPed, 2, 1, skin.values.eyebrow.color, skin.values.eyebrow.color) - SetPedHeadOverlay(playerPed, 3, skin.values.ageing.style, skin.values.ageing.opacity) - SetPedHeadOverlay(playerPed, 4, skin.values.makeup.style, skin.values.makeup.opacity) - SetPedHeadOverlayColor(playerPed, 4, 1, skin.values.makeup.color, skin.values.makeup.color) - SetPedHeadOverlay(playerPed, 5, skin.values.blush.style, skin.values.blush.opacity) - SetPedHeadOverlayColor(playerPed, 5, 1, skin.values.blush.color, skin.values.blush.color) - SetPedHeadOverlay(playerPed, 6, skin.values.complexion.style, skin.values.complexion.opacity) - SetPedHeadOverlay(playerPed, 7, skin.values.sun_damage.style, skin.values.sun_damage.opacity) - SetPedHeadOverlay(playerPed, 8, skin.values.lipstick.style, skin.values.lipstick.opacity) - SetPedHeadOverlayColor(playerPed, 8, 1, skin.values.lipstick.color, skin.values.lipstick.color) - SetPedHeadOverlay(playerPed, 9, skin.values.mole_freckle.style, skin.values.mole_freckle.opacity) - SetPedHeadOverlay(playerPed, 10, skin.values.chest_hair.style, skin.values.chest_hair.opacity) - SetPedHeadOverlayColor(playerPed, 10, 1, skin.values.chest_hair.color, skin.values.chest_hair.color) - SetPedHeadOverlay(playerPed, 11, skin.values.body_blemish.style, skin.values.body_blemish.opacity) - SetPedEyeColor(playerPed, skin.values.eyeColor) - - for _, clothingOption in pairs(skins.clothingOptions or {}) do - local value = (((skin or {}).value or {}).clothing or {})[clothingOption.key] or 0 - local valueTexture = (((skin or {}).value or {}).clothing or {})[('%s_texture'):format(clothingOption.key)] or 0 - - SetPedComponentVariation(playerPed, clothingOption.index, value, valueTexture, 0) - end -end \ No newline at end of file diff --git a/modules/[fivem]/skins/client/main.lua b/modules/[fivem]/skins/client/main.lua deleted file mode 100644 index 000a5d8..0000000 --- a/modules/[fivem]/skins/client/main.lua +++ /dev/null @@ -1,46 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local skins = class('skins') - -skins:set { - defaultOpacityOptions = { - { value = 0, label = '0%' }, - { value = 10, label = '10%' }, - { value = 20, label = '20%' }, - { value = 30, label = '30%' }, - { value = 40, label = '40%' }, - { value = 50, label = '50%' }, - { value = 60, label = '60%' }, - { value = 70, label = '70%' }, - { value = 80, label = '80%' }, - { value = 90, label = '90%' }, - { value = 100, label = '100%' } - }, - clothingOptions = { - { label = _(CR(), 'skins', 'unused_head_label'), key = 'unused_head', index = 0 }, - { label = _(CR(), 'skins', 'masks_label'), key = 'masks', index = 1 }, - { label = _(CR(), 'skins', 'unused_hair_label'), key = 'unused_hair', index = 2 }, - { label = _(CR(), 'skins', 'upper_body_label'), key = 'upper_body', index = 3 }, - { label = _(CR(), 'skins', 'lower_body_label'), key = 'lower_body', index = 4 }, - { label = _(CR(), 'skins', 'bags_parachutes_label'), key = 'bags_parachutes', index = 5 }, - { label = _(CR(), 'skins', 'shoes_label'), key = 'shoes', index = 6 }, - { label = _(CR(), 'skins', 'scarfs_chains_label'), key = 'scarfs_chains', index = 7 }, - { label = _(CR(), 'skins', 'shirt_accessory_label'), key = 'shirt_accessory', index = 8 }, - { label = _(CR(), 'skins', 'body_armor_label'), key = 'body_armor', index = 9 }, - { label = _(CR(), 'skins', 'badges_logos_label'), key = 'badges_logos', index = 10 }, - { label = _(CR(), 'skins', 'shirt_overlay_jackets_label'), key = 'shirt_overlay_jackets', index = 11 } - }, - categories = { - [1] = { - label = _(CR(), 'skins', 'inheritance_options_label'), - } - } -} \ No newline at end of file diff --git a/modules/[fivem]/skins/langs/nl.json b/modules/[fivem]/skins/langs/nl.json deleted file mode 100644 index 13248d1..0000000 --- a/modules/[fivem]/skins/langs/nl.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "color_label": "Kleur %s", - "hair_style_label": "Haar %s", - "blemishes_style_label": "Imperfecties variant %s", - "beard_style_label": "Baard %s", - "eyebrow_style_label": "Wenkbrauw %s", - "ageing_style_label": "Veroudering variant %s", - "makeup_style_label": "Make-up variant %s", - "blush_style_label": "Blozen variant %s", - "complexion_style_label": "Teint %s", - "sun_damage_style_label": "Zonschade %s", - "lipstick_style_label": "Lippenstift variant %s", - "moles_freckle_style_label": "Sproeten %s", - "chest_hair_style_label": "Borsthaar %s", - "body_blemish_style_label": "Borst imperfecties variant %s", - "eye_color_label": "Oogkleur %s", - "unused_head_label": "Hoofd", - "masks_label": "Masker", - "unused_hair_label": "Haar", - "upper_body_label": "Armen", - "lower_body_label": "Broek", - "bags_parachutes_label": "Tassen", - "shoes_label": "Schoenen", - "scarfs_chains_label": "Kettingen", - "shirt_accessory_label": "T-Shirt", - "body_armor_label": "Armor", - "badges_logos_label": "Badges", - "shirt_overlay_jackets_label": "Jas", - "inheritance_options_label": "Erfelijkheidsopties" -} \ No newline at end of file diff --git a/modules/[fivem]/skins/module.json b/modules/[fivem]/skins/module.json deleted file mode 100644 index f06d7b1..0000000 --- a/modules/[fivem]/skins/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV skins module", - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "skins" -} \ No newline at end of file diff --git a/modules/[fivem]/spawnmanager/client/main.lua b/modules/[fivem]/spawnmanager/client/main.lua deleted file mode 100644 index 4d511ea..0000000 --- a/modules/[fivem]/spawnmanager/client/main.lua +++ /dev/null @@ -1,58 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -Citizen.CreateThread(function() - while true do - if (NetworkIsPlayerActive(PlayerId())) then - if (GetEntityModel(PlayerPedId()) == GetHashKey('a_f_y_epsilon_01')) then - return; - end - - if (GetEntityModel(PlayerPedId()) == GetHashKey('PLAYER_ZERO')) then - local defaultModel = GetHashKey('a_f_y_epsilon_01') - - RequestModel(defaultModel) - - while not HasModelLoaded(defaultModel) do - Citizen.Wait(0) - end - - SetPlayerModel(PlayerId(), defaultModel) - SetPedDefaultComponentVariation(PlayerPedId()) - SetPedRandomComponentVariation(PlayerPedId(), true) - SetModelAsNoLongerNeeded(defaultModel) - end - - ShutdownLoadingScreen() - DoScreenFadeIn(2500) - FreezeEntityPosition(PlayerPedId(), true) - SetCanAttackFriendly(PlayerPedId(), true, false) - NetworkSetFriendlyFireOption(true) - ClearPlayerWantedLevel(PlayerId()) - SetMaxWantedLevel(0) - - local coords, timeout = Config.DefaultSpawnLocation or vector3(-206.79, -1015.12, 29.14), 0 - - RequestCollisionAtCoord(coords.x, coords.y, coords.z) - - while not HasCollisionLoadedAroundEntity(PlayerPedId()) and timeout < 2000 do - timeout = timeout + 1 - Citizen.Wait(0) - end - - SetEntityCoords(PlayerPedId(), coords.x, coords.y, coords.z, false, false, false, true) - FreezeEntityPosition(PlayerPedId(), false) - - return; - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/modules/[fivem]/spawnmanager/module.json b/modules/[fivem]/spawnmanager/module.json deleted file mode 100644 index 0761b78..0000000 --- a/modules/[fivem]/spawnmanager/module.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV spawnmanager module", - "client_scripts": [ - "client/main.lua" - ], - "module": "spawnmanager" -} \ No newline at end of file diff --git a/modules/[fivem]/streaming/client/main.lua b/modules/[fivem]/streaming/client/main.lua deleted file mode 100644 index 1d169e7..0000000 --- a/modules/[fivem]/streaming/client/main.lua +++ /dev/null @@ -1,58 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local streaming = class('streaming') - ---- Load a requested model -function streaming:requestModel(hash, cb) - local model = hash - - if (hash == nil or (type(hash) ~= 'number' and type(hash) ~= 'string')) then return end - if (type(hash) == 'string') then model = GetHashKey(hash) end - - if (not HasModelLoaded(model) and IsModelInCdimage(model)) then - RequestModel(hash) - - while not HasModelLoaded(model) do - Citizen.Wait(0) - end - end - - if (cb ~= nil and type(cb) == 'function') then - cb() - end -end - ---- Load a texture dictonary and trigger callback when loaded ---- @param textureDictionary string Name of texture dictonary ---- @param cb function Callback -function streaming:requestTextureDictionary(textureDictionary, cb) - if (textureDictionary == nil or type(textureDictionary) ~= 'string') then return end - - if (not HasStreamedTextureDictLoaded(textureDictionary)) then - Citizen.CreateThread(function() - RequestStreamedTextureDict(textureDictionary, true) - - while (not HasStreamedTextureDictLoaded(textureDictionary)) do - Citizen.Wait(0) - end - - if (cb ~= nil and type(cb) == 'function') then - cb() - end - end) - else - if (cb ~= nil and type(cb) == 'function') then - cb() - end - end -end - -addModule('streaming', streaming) \ No newline at end of file diff --git a/modules/[fivem]/streaming/module.json b/modules/[fivem]/streaming/module.json deleted file mode 100644 index 2a67d24..0000000 --- a/modules/[fivem]/streaming/module.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV streaming module", - "client_scripts": [ - "client/main.lua" - ], - "module": "streaming" -} \ No newline at end of file diff --git a/modules/[fivem]/utils/client/main.lua b/modules/[fivem]/utils/client/main.lua deleted file mode 100644 index 4e92c8e..0000000 --- a/modules/[fivem]/utils/client/main.lua +++ /dev/null @@ -1,45 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local utils = class('utils') - -function utils:drawText3Ds(coords, text) - if (coords == nil) then coords = GetEntityCoords(PlayerPedId()) end - if (type(coords) == 'table') then coords = vector3(coords.x, coords.y, coords.z) end - if (type(coords) ~= 'vector3') then return end - - local onScreen, x, y = GetScreenCoordFromWorldCoord((coords.x or 0), (coords.y or 0), (coords.z or 0)) - - if (onScreen) then - local camCoords = GetGameplayCamCoords() - local distance = #(coords - camCoords) - local scale = (1 / distance) * 2 - local fov = (1 / GetGameplayCamFov()) * 100 - - scale = scale * fov - - SetTextColour(255, 255, 255, 255) - SetTextScale(0.0 * scale, 0.55 * scale) - SetTextDropshadow(0, 0, 0, 0) - SetTextDropShadow() - SetTextOutline() - SetTextFont(0) - SetTextProportional(1) - SetTextCentre(true) - - SetDrawOrigin(coords, 0) - BeginTextCommandDisplayText('STRING') - AddTextComponentSubstringPlayerName(text) - EndTextCommandDisplayText(0.0, 0.0) - ClearDrawOrigin() - end -end - -addModule('utils', utils) \ No newline at end of file diff --git a/modules/[fivem]/utils/module.json b/modules/[fivem]/utils/module.json deleted file mode 100644 index b4af98a..0000000 --- a/modules/[fivem]/utils/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV utils module", - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "utils" -} \ No newline at end of file diff --git a/modules/[framework]/chat/client/main.lua b/modules/[framework]/chat/client/main.lua deleted file mode 100644 index 7fae187..0000000 --- a/modules/[framework]/chat/client/main.lua +++ /dev/null @@ -1,192 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local chat = class('chat') - -chat:set { - inputActive = false, - inputActivating = false, - hidden = false, - loaded = false -} - -onServerTrigger('corev:chat:addSuggestion', function(name, help, params) - SendNUIMessage({ - action = 'ADD_SUGGESTION', - suggestion = { - name = name, - help = help, - params = params or {} - }, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) -end) - -onServerTrigger('corev:chat:addMessage', function(rawMessage) - local message = { - type = 'core-chat-' .. (rawMessage.type or 'ooc'), - time = rawMessage.time or nil, - icon = 'fa-' .. (rawMessage.icon or 'globe-europe'), - sender = rawMessage.sender or 'Anoniem', - message = rawMessage.message or '' - } - - SendNUIMessage({ - action = 'ADD_MESSAGE', - message = message, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) -end) - -onServerTrigger('corev:chat:addError', function(msg) - local message = { - type = 'core-chat-error', - time = nil, - icon = 'fa-exclamation-triangle', - sender = 'ERROR', - message = msg or '' - } - - SendNUIMessage({ - action = 'ADD_MESSAGE', - message = message, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) -end) - -onServerTrigger('corev:chat:removeSuggestion', function(name) - SendNUIMessage({ - action = 'REMOVE_SUGGESTION', - name = name, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) -end) - -onServerTrigger('corev:chat:addSuggestions', function(suggestions, removeAll) - removeAll = removeAll or false - - if (type(removeAll) == 'string') then removeAll = tonumber(removeAll) end - if (type(removeAll) == 'number') then removeAll = removeAll == 1 end - if (type(removeAll) ~= 'boolean') then removeAll = false end - - SendNUIMessage({ - action = 'ADD_SUGGESTIONS', - suggestions = suggestions, - removeAll = removeAll, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) -end) - -onServerTrigger('corev:chat:clear', function() - SendNUIMessage({ - action = 'CLEAR_CHAT', - __resource = GetCurrentResourceName(), - __module = 'chat' - }) -end) - -RegisterNUICallback('chat_results', function(data, cb) - chat.inputActive = false - - nui:setNuiFocus(false, false, 'chat') - - if not data.canceled then - local id = PlayerId() - - if data.message:sub(1, 1) == '/' then - local commandParts = split(data.message, ' ') - local command = (commandParts[1] or '/unknown'):sub(2) - - SendNUIMessage({ - action = 'ADD_MESSAGE', - message = { - sender = 'Console', - time = nil, - message = _(CR(), 'chat', 'command_used', command), - iconlib = 'fas', - icon = 'fa-terminal', - type = 'core-chat-command' - }, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) - - ExecuteCommand(data.message:sub(2)) - else - TSE('corev:chat:messageEntered', GetPlayerName(id), data.message) - end - end - - cb('ok') -end) - -RegisterNUICallback('chat_loaded', function(data, cb) - TSE('corev:chat:init'); - - chat.loaded = true - - cb('ok') -end) - ---- Thread to manage game input -Citizen.CreateThread(function() - SetTextChatEnabled(false) - - nui:setNuiFocus(false, false, 'chat') - - while true do - Citizen.Wait(0) - - if ((not chat.inputActive) and IsControlPressed(0, 245)) then - chat.inputActive = true - chat.inputActivating = true - - SendNUIMessage({ - action = 'OPEN_CHAT', - __resource = GetCurrentResourceName(), - __module = 'chat' - }) - end - - if (chat.inputActivating and (not IsControlPressed(0, 245))) then - nui:setNuiFocus(true, false, 'chat') - - chat.inputActivating = false - end - - if (chat.loaded) then - local shouldBeHidden = false - - if (IsScreenFadedOut() or IsPauseMenuActive()) then - shouldBeHidden = true - end - - if (shouldBeHidden ~= chat.hidden) then - chat.hidden = shouldBeHidden - - SendNUIMessage({ - action = 'CHANGE_STATE', - shouldHide = chat.hidden, - __resource = GetCurrentResourceName(), - __module = 'chat' - }) - - if (chat.hidden) then - SetNuiFocus(false) - end - end - end - end -end) \ No newline at end of file diff --git a/modules/[framework]/chat/langs/nl.json b/modules/[framework]/chat/langs/nl.json deleted file mode 100644 index 3ea2463..0000000 --- a/modules/[framework]/chat/langs/nl.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "command_used": "U heeft \"%s\" command uitgevoerd" -} \ No newline at end of file diff --git a/modules/[framework]/chat/module.json b/modules/[framework]/chat/module.json deleted file mode 100644 index 5b2bbc7..0000000 --- a/modules/[framework]/chat/module.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV chat module", - "server_scripts": [ - "server/main.lua" - ], - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "chat" -} \ No newline at end of file diff --git a/modules/[framework]/chat/server/main.lua b/modules/[framework]/chat/server/main.lua deleted file mode 100644 index f46eba1..0000000 --- a/modules/[framework]/chat/server/main.lua +++ /dev/null @@ -1,179 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local chat = class('chat') - -chat:set { - types = { - ['ooc'] = { - icon = 'globe-europe', - type = 'ooc', - lib = 'fas' - }, - ['twitter'] = { - icon = 'twitter', - type = 'twitter', - lib = 'fab' - }, - ['twt'] = { - icon = 'twitter', - type = 'twitter', - lib = 'fab' - }, - ['advertisment'] = { - icon = 'ad', - type = 'me', - lib = 'fas' - }, - ['ad'] = { - icon = 'ad', - type = 'me', - lib = 'fas' - }, - ['me'] = { - icon = 'user', - type = 'me', - lib = 'fas' - }, - ['adminmessage'] = { - icon = 'crown', - type = 'adminmessage', - lib = 'fas' - }, - ['admin'] = { - icon = 'crown', - type = 'adminmessage', - lib = 'fas' - }, - ['command'] = { - icon = 'terminal', - type = 'command', - lib = 'fas' - }, - ['cmd'] = { - icon = 'terminal', - type = 'command', - lib = 'fas' - } - } -} - ---- Refresh client commands and resturn all commands to client ---- @param source number Player ID (source) -function chat:refreshCommands(source) - if (source == nil) then return end - if (type(source) == 'string') then source = tonumber(source) end - if (type(source) ~= 'number') then return end - if (source == 0) then return end - - local commands = m('commands') - local playerCommands = commands:getPlayerCommands(source) or {} - - TCE('corev:chat:addSuggestions', source, playerCommands, true) -end - -function chat:getTypeInfo(msgType) - msgType = msgType or 'ooc' - - if (type(msgType) ~= 'string') then msgType = 'ooc' end - - local msgTypeInfo = (chat.types or {})[msgType] or (chat.types or {})['ooc'] or { - icon = 'globe-europe', - type = 'ooc', - lib = 'fas' - } - - return msgTypeInfo -end - -onClientTrigger('corev:chat:messageEntered', function(name, message, msgType) - if (not message or message == '' or not name or name == '') then - return - end - - TSE('chatMessage', source, name, message) - - if (not WasEventCanceled()) then - local msgTypeInfo = chat:getTypeInfo(msgType) - - TCE('corev:chat:addMessage', -1, { - sender = name, - time = os.currentTimeAsString(), - message = message, - iconlib = msgTypeInfo.lib, - icon = msgTypeInfo.icon, - type = msgTypeInfo.type - }) - end -end) - -onClientTrigger('__cfx_internal:commandFallback', function(command) - local name = GetPlayerName(source) - - TSE('chatMessage', source, name, '/' .. command) - - if not WasEventCanceled() then - local msgTypeInfo = chat:getTypeInfo('ooc') - - TCE('corev:chat:addMessage', -1, { - sender = name, - time = os.currentTimeAsString(), - message = ('/%s'):format(command), - iconlib = msgTypeInfo.lib, - icon = msgTypeInfo.icon, - type = msgTypeInfo.type - }) - else - local msgTypeInfo = chat:getTypeInfo('command') - - TCE('corev:chat:addMessage', source, { - sender = 'Console', - time = os.currentTimeAsString(), - message = _(CR(), 'chat', 'command_used', command), - iconlib = msgTypeInfo.lib, - icon = msgTypeInfo.icon, - type = msgTypeInfo.type - }) - end - - CancelEvent() -end) - -onClientTrigger('corev:chat:init', function() - chat:refreshCommands(source) -end) - -onServerTrigger('onServerResourceStart', function() - local async = m('async') - local players = GetPlayers() - - async:parallel(function(playerId, cb) - Citizen.Wait(500) - - chat:refreshCommands(playerId) - - cb() - end, players, function() - end) -end) - -onServerTrigger('onServerResourceStop', function() - local async = m('async') - local players = GetPlayers() - - async:parallel(function(playerId, cb) - Citizen.Wait(500) - - chat:refreshCommands(playerId) - - cb() - end, players, function() - end) -end) \ No newline at end of file diff --git a/modules/[framework]/commands/langs/nl.json b/modules/[framework]/commands/langs/nl.json deleted file mode 100644 index b342da3..0000000 --- a/modules/[framework]/commands/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "command_already_registered": "Command '%s' is al toegevoegd en zullen hem overschrijden", - "command_console_not_allowed": "U mag command '%s' niet uitvoeren vanuit de console", - "command_mismatch_arguemnts": "Uw aantal argumenten komen niet overeen, command verwacht %s en kreeg %s", - "command_argument_number_error": "U moet een getal opgeven bij argument %s", - "command_not_allowed": "U heeft geen toestemming om deze command uit te voeren.", - "command_message": "Naam: %s\nCommand: %s\nArgumenten:\n```%s```", - "command_title": "%s heeft een commando uitgevoerd" -} \ No newline at end of file diff --git a/modules/[framework]/commands/module.json b/modules/[framework]/commands/module.json deleted file mode 100644 index 20c005a..0000000 --- a/modules/[framework]/commands/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV commands module", - "server_scripts": [ - "server/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "commands" -} \ No newline at end of file diff --git a/modules/[framework]/commands/server/main.lua b/modules/[framework]/commands/server/main.lua deleted file mode 100644 index 2072e36..0000000 --- a/modules/[framework]/commands/server/main.lua +++ /dev/null @@ -1,163 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local commands = class('commands') - ---- Set default value -commands:set { - commands = {} -} - ---- Register a commands ---- @param name commands ---- @param groups groups allowed ---- @param callback function callback function ---- @param consoleAllowed boolean console allowed -function commands:register(name, groups, callback, consoleAllowed, suggestion) - if (type(name) == 'table') then - for _, _name in pairs(name or {}) do - self:register(_name, groups, callback, consoleAllowed, suggestion) - end - - return - end - - if (type(name) ~= 'string') then - return - end - - if (commands.commands ~= nil and commands.commands[name] ~= nil) then - error:print(_(CR(), 'commands', 'command_already_registered', name)) - - if (commands.commands[name].suggestion ~= nil) then - TCE('corev:chat:removeSuggestion', -1, ('/%s'):format(name)) - end - end - - if (suggestion) then - if (not suggestion.arguments) then suggestion.arguments = {} end - if (not suggestion.help) then suggestion.help = '' end - - TCE('corev:chat:addSuggestion', -1, ('/%s'):format(name), suggestion.help, suggestion.arguments) - end - - commands.commands[name] = { - groups = groups, - callback = callback, - consoleAllowed = consoleAllowed, - suggestion = suggestion - } - - RegisterCommand(name, function(source, args, rawCommand) - local identifiers = m('identifiers') - - if (type(source) == 'string') then source = tonumber(source) end - if (type(source) ~= 'number') then source = 0 end - - local identifier = identifiers:getIdentifier(source) - local cmd = commands.commands[name] - - if (not cmd.consoleAllowed and source == 0) then - error:print(_(CR(), 'commands', 'command_console_not_allowed', name)) - return - end - - if (source > 0) then - if (not IsPlayerAceAllowed(source, ('command.%s'):format(name))) then - error:print(_(CR(), 'commands', 'command_not_allowed', name)) - return - end - end - - if (cmd.suggestion and #cmd.suggestion.arguments > 0) then - if (cmd.suggestion.validate and #args ~= #cmd.suggestion.arguments) then - TCE('corev:chat:addError', source, _(CR(), 'commands', 'command_mismatch_arguemnts', #cmd.suggestion.arguments, #args)) - return - end - end - - if (cmd.suggestion and #(cmd.suggestion.arguments or {}) > 0) then - local newArguments = {} - - for i, argument in pairs(cmd.suggestion.arguments or {}) do - if (argument.type) then - if (string.lower(argument.type) == 'number') then - local newArgument = tonumber(args[i]) - - if (newArgument) then - newArguments[argument.name] = newArgument - else - TCE('corev:chat:addError', source, _(CR(), 'commands', 'command_argument_number_error', i)) - return - end - elseif (string.lower(argument.type) == 'string') then - newArguments[argument.name] = tostring(args[i]) - elseif (string.lower(argument.type) == 'any') then - newArguments[argument.name] = args[i] - end - end - end - - args = newArguments - end - - log(identifier, { - args = { - command = name, - arguments = args - }, - action = 'execute.command', - color = Colors.Blue, - footer = ('command "%s" | %s | %s'):format(name, '{identifier}', currentTimeString()), - message = _(CR(), 'commands', 'command_message', '{playername}', name, json.encode(args)), - title = _(CR(), 'commands', 'command_title', '{playername}'), - username = ('[COMMAND] /%s LOG'):format(name) - }) - - cmd.callback(source, args, function(msg) - if (msg ~= nil and type(msg) == 'string') then - TCE('corev:chat:addError', source, msg) - end - end) - end, true) - - if (groups and type(groups) == 'string') then - ExecuteCommand(('add_ace group.%s command.%s allow'):format(groups, name)) - elseif (groups and type(groups) == 'table') then - for _, group in pairs(groups or {}) do - ExecuteCommand(('add_ace group.%s command.%s allow'):format(tostring(group), name)) - end - end -end - ---- Returns a list of commands available for player ---- @param playerId number Player ID (source) -function commands:getPlayerCommands(playerId) - if (playerId == nil or type(playerId) ~= 'number') then return {} end - - if (playerId ~= 0) then - local _commands = {} - - for name, command in pairs(self.commands or {}) do - if (IsPlayerAceAllowed(playerId, ('commands.%s'):format(name))) then - table.insert(_commands, { - name = name, - suggestion = command.suggestion or {} - }) - end - end - - return _commands - end - - return {} -end - -addModule('commands', commands) \ No newline at end of file diff --git a/modules/[framework]/controls/client/main.lua b/modules/[framework]/controls/client/main.lua deleted file mode 100644 index d2bf044..0000000 --- a/modules/[framework]/controls/client/main.lua +++ /dev/null @@ -1,94 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local controls = class('controls') - ---- Set default values -controls:set { - controls = {}, - modules = {} -} - ---- Enable or Disable a button -function controls:disableControlAction(group, key, disabled, moduleName) - moduleName = moduleName or getCurrentModule() or CurrentFrameworkModule or 'unknown' - - if (moduleName == nil) then moduleName = 'unknown' end - if (type(moduleName) ~= 'string') then moduleName = tostring(moduleName) end - if (group == nil or type(group) ~= 'number') then group = tonumber(group or '0') end - if (key == nil or type(key) ~= 'number') then key = tonumber(key or '0') end - if (disabled == nil or (type(disabled) ~= 'boolean' and type(disabled) ~= 'number')) then disabled = tonumber(disabled or '0') end - if (type(disabled) == 'number') then disabled = disabled == 1 end - if (self.modules == nil) then self.modules = {} end - if (self.modules[moduleName] == nil) then self.modules[moduleName] = { } end - if (self.modules[moduleName][tostring(group)] == nil) then self.modules[moduleName][tostring(group)] = { group = group, keys = {} } end - if (self.controls[tostring(group)] == nil) then self.controls[tostring(group)] = { group = group, keys = {} } end - if (self.modules[moduleName][tostring(group)].keys[tostring(key)] == nil) then self.modules[moduleName][tostring(group)].keys[tostring(key)] = { key = key, disabled = disabled } end - if (self.controls[tostring(group)].keys[tostring(key)] == nil) then self.controls[tostring(group)].keys[tostring(key)] = { key = key, anyDisabled = false, lastStatus = nil } end - - self.modules[moduleName][tostring(group)].keys[tostring(key)].disabled = disabled -end - ---- Update NUI focus and mouse input status -Citizen.CreateThread(function() - while true do - for group, groupInfo in pairs(controls.controls or {}) do - for key, keyInfo in pairs(groupInfo.keys or {}) do - controls.controls[group].keys[key].anyDisabled = false - - for moduleName, _ in pairs(controls.modules or {}) do - local isDisabled, module = false, controls.modules[moduleName] or nil - - if (module ~= nil) then - local moduleGroup = module[tostring(group)] or nil - - if (moduleGroup ~= nil) then - local moduleKeys = moduleGroup.keys or nil - - if (moduleKeys ~= nil) then - local moduleKey = moduleKeys[key] or nil - - if (moduleKey ~= nil) then - isDisabled = moduleKey.disabled or false - - if (isDisabled) then controls.controls[group].keys[key].anyDisabled = true end - end - end - end - end - end - end - end - - Citizen.Wait(250) - end -end) - ---- Enable/Disable NUI Focus and input -Citizen.CreateThread(function() - while true do - for group, groupInfo in pairs(controls.controls or {}) do - for key, keyInfo in pairs(groupInfo.keys or {}) do - if (keyInfo.anyDisabled) then - DisableControlAction(groupInfo.group, keyInfo.key, keyInfo.anyDisabled) - end - end - end - - Citizen.Wait(0) - end -end) - ---- FiveM maniplulation -_ENV.controls = controls -_G.controls = controls - ---- Add NUI as module -addModule('controls', controls) \ No newline at end of file diff --git a/modules/[framework]/controls/module.json b/modules/[framework]/controls/module.json deleted file mode 100644 index 59aed7f..0000000 --- a/modules/[framework]/controls/module.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV controls module", - "client_scripts": [ - "client/main.lua" - ], - "module": "controls" -} \ No newline at end of file diff --git a/modules/[framework]/database/langs/nl.json b/modules/[framework]/database/langs/nl.json deleted file mode 100644 index 8d91386..0000000 --- a/modules/[framework]/database/langs/nl.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "error_query_type": "De SQL query moet een string of getal zijn.", - "error_params_type": "Parameters moet een tabel zijn.", - "error_queries_type": "De SQL queries moeten een tabel zijn", - "database_not_started": "Server is bezig met de verbiding met de database... even geduld a.u.b....." -} \ No newline at end of file diff --git a/modules/[framework]/database/module.json b/modules/[framework]/database/module.json deleted file mode 100644 index 9c769ac..0000000 --- a/modules/[framework]/database/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV database module", - "server_scripts": [ - "server/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "database" -} \ No newline at end of file diff --git a/modules/[framework]/database/server/main.lua b/modules/[framework]/database/server/main.lua deleted file mode 100644 index 785237f..0000000 --- a/modules/[framework]/database/server/main.lua +++ /dev/null @@ -1,337 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local database = class('database') - ---- Set default values -database:set { - isReady = false, - migrations = {} -} - ---- Make sure params are safe ---- @param params array Parameters -function database:safeParameters(params) - if (params == nil) then - return {[''] = ''} - end - - assert(type(params) == 'table', _(CR(), 'database', 'error_params_type')) - - if (next(params) == nil) then - return {[''] = ''} - end - - return params -end - ---- Execute query to database ---- @param query string Query ---- @param params array Parameters -function database:execute(query, params) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - local result, finished = 0, false - - exports['mysql-async']:mysql_execute(query, self:safeParameters(params), function(results) - result = results - finished = true - end) - - repeat Citizen.Wait(0) until finished == true - - return result -end - ---- Fetch all results from database ---- @param query string Query ---- @param params array Parameters -function database:fetchAll(query, params) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - local result, finished = 0, false - - exports['mysql-async']:mysql_fetch_all(query, self:safeParameters(params), function(results) - result = results - finished = true - end) - - repeat Citizen.Wait(0) until finished == true - - return result -end - ---- Fetch the first column of the first row ---- @param query string Query ---- @param params array Parameters -function database:fetchScalar(query, params) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - local result, finished = 0, false - - exports['mysql-async']:mysql_fetch_scalar(query, self:safeParameters(params), function(results) - result = results - finished = true - end) - - repeat Citizen.Wait(0) until finished == true - - return result -end - - ---- Execute a query and retrieve the last id insert ---- @param query string Query ---- @param params array Parameters -function database:insert(query, params) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - local result, finished = 0, false - - exports['mysql-async']:mysql_insert(query, self:safeParameters(params), function(results) - result = results - finished = true - end) - - repeat Citizen.Wait(0) until finished == true - - return result -end - ---- Stores a query for later execution ---- @param query string Query ---- @param params array Parameters -function database:store(query) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - local result, finished = 0, false - - exports['mysql-async']:mysql_store(query, function(results) - result = results - finished = true - end) - - repeat Citizen.Wait(0) until finished == true - - return result -end - ---- Execute a List of querys ---- @param query string Query ---- @param params array Parameters -function database:transaction(querys, params) - assert(type(params) == 'table', _(CR(), 'database', 'error_queries_type')) - - for _, query in pairs(querys or {}) do - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - end - - local result, finished = 0, false - - exports['mysql-async']:mysql_transaction(querys, self:safeParameters(params), function(results) - result = results - finished = true - end) - - repeat Citizen.Wait(0) until finished == true - - return result -end - ---- Execute query to database async ---- @param query string Query ---- @param params array Parameters ---- @param func function Callback function -function database:executeAsync(query, params, func) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - exports['mysql-async']:mysql_execute(query, self:safeParameters(params), func) -end - ---- Fetch all results from database ---- @param query string Query ---- @param params array Parameters ---- @param func function Callback function -function database:fetchAllAsync(query, params, func) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - exports['mysql-async']:mysql_fetch_all(query, self:safeParameters(params), func) -end - ---- Fetch the first column of the first row ---- @param query string Query ---- @param params array Parameters ---- @param func function Callback function -function database:fetchScalarAsync(query, params, func) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - exports['mysql-async']:mysql_fetch_scalar(query, self:safeParameters(params), func) -end - ---- Execute a query and retrieve the last id insert ---- @param query string Query ---- @param params array Parameters ---- @param func function Callback function -function database:insertAsync(query, params, func) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - exports['mysql-async']:mysql_insert(query, self:safeParameters(params), func) -end - ---- Stores a query for later execution ---- @param query string Query ---- @param params array Parameters ---- @param func function Callback function -function database:storeAsync(query, func) - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - - exports['mysql-async']:mysql_store(query, func) -end - ---- Stores a query for later execution ---- @param query string Query ---- @param params array Parameters ---- @param func function Callback function -function database:transactionAsync(querys, params, func) - assert(type(params) == 'table', _(CR(), 'database', 'error_queries_type')) - - for _, query in pairs(querys or {}) do - assert(type(query) == 'string' or type(query) == 'number', _(CR(), 'database', 'error_query_type')) - end - - exports['mysql-async']:mysql_transaction(querys, self:safeParameters(params), func) -end - ---- Trigger func when mysql-async is ready ---- @param func function Callback function -function database:ready(func) - Citizen.CreateThread(function() - repeat Citizen.Wait(0) until database.isReady == true - - func() - end) -end - ---- Apply migraiton to databse ---- @param resource string Resource Name ---- @param module string Module Name ---- @param name string Migration Name -function database:applyMigration(object, _migration) - local queryDone = false - - self:ready(function() - local content = getFrameworkFile(object.name, object.type, ('migrations/%s'):format(_migration)) - local objectType = object.type or nil - - if (objectType == nil or type(objectType) ~= 'string') then queryDone = true return end - if (content == nil) then queryDone = true return end - - local resourceName, resourceType = 'none', nil - - if (string.lower(objectType) == 'ir') then resourceType = 'resource' end - if (string.lower(objectType) == 'er') then resourceType = 'resource' end - if (string.lower(objectType) == 'im') then resourceType = 'module' end - if (string.lower(objectType) == 'em') then resourceType = 'module' end - - if (resourceType == nil) then queryDone = true return end - - if (string.lower(object.type) == string.lower(ResourceTypes.ExternalResource)) then - resourceName = object.name - end - - if (string.lower(object.type) == string.lower(ResourceTypes.InternalResource) or - string.lower(object.type) == string.lower(ResourceTypes.InternalModule)) then - resourceName = GetCurrentResourceName() - end - - local migrations = ((database.migrations[resourceName] or {})[resourceType] or {})[object.name] or {} - - for _, migration in pairs(migrations or {}) do - if (string.lower(migration.version) == string.lower(_migration)) then - queryDone = true - return - end - end - - database:execute(content, {}) - database:execute('INSERT INTO `migrations` (`resource`, `type`, `name`, `version`) VALUES (@resource, @type, @name, @version)', { - ['@resource'] = resourceName, - ['@type'] = resourceType, - ['@name'] = object.name, - ['@version'] = _migration - }) - - queryDone = true - end) - - repeat Citizen.Wait(0) until queryDone == true - - return queryDone -end - ---- Change ready state when database is ready -Citizen.CreateThread(function() - while GetResourceState('mysql-async') ~= 'started' do - Citizen.Wait(0) - end - - while not exports['mysql-async']:is_ready() do - Citizen.Wait(0) - end - - local count = database:fetchScalar("SELECT COUNT(*) AS `count` FROM `information_schema`.`tables` WHERE `TABLE_SCHEMA` = @databaseName AND `TABLE_NAME` = 'migrations'", { - ['@databaseName'] = DBNAME - }) - - if (not (count > 0)) then - local mainSql = getModuleFile('database', 'scripts/main.sql') - - if (mainSql ~= nil) then - database:execute(mainSql, {}) - end - end - - local migrationInDatabase = database:fetchAll('SELECT * FROM `migrations`', {}) - - for _, migration in pairs(migrationInDatabase or {}) do - if (database.migrations[migration.resource] == nil) then - database.migrations[migration.resource] = {} - end - - if (database.migrations[migration.resource][migration.type] == nil) then - database.migrations[migration.resource][migration.type] = {} - end - - if (database.migrations[migration.resource][migration.type][migration.name] == nil) then - database.migrations[migration.resource][migration.type][migration.name] = {} - end - - table.insert(database.migrations[migration.resource][migration.type][migration.name], migration) - end - - database.isReady = true -end) - ---- Trigger when player is connecting -on('playerConnecting', function(source, returnSuccess, returnError, deferrals) - local textUpdated = false - - while not database.isReady do - if (not textUpdated) then - deferrals.update(_(CR(), 'database', 'database_not_started')) - end - - Citizen.Wait(0) - end - - returnSuccess() -end) - -addModule('database', database) \ No newline at end of file diff --git a/modules/[framework]/identifiers/classes/identifier.lua b/modules/[framework]/identifiers/classes/identifier.lua deleted file mode 100644 index 21a358f..0000000 --- a/modules/[framework]/identifiers/classes/identifier.lua +++ /dev/null @@ -1,176 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- - ---- Create a identifier object ---- @param player int|string Player -function identifiers:createIdentifier(player) - local identifier = class('identifier') - - identifier:set { - source = -1, - identifier = 'none', - identifiers = {}, - name = 'unknown' - } - - --- Get a identifier by type - --- @param type string identifier type - function identifier:getByType(type, identifiers) - if (identifiers) then identifiers = identifiers else identifiers = (self.identifiers or {}) end - - for i, _identifier in pairs(identifiers) do - if (type == 'steam' and string.match(string.lower(_identifier), 'steam:')) then - return string.sub(_identifier, 7) - elseif (type == 'license' and string.match(string.lower(_identifier), 'license:')) then - return string.sub(_identifier, 9) - elseif (type == 'xbl' and string.match(string.lower(_identifier), 'xbl:')) then - return string.sub(_identifier, 5) - elseif (type == 'live' and string.match(string.lower(_identifier), 'live:')) then - return string.sub(_identifier, 6) - elseif (type == 'discord' and string.match(string.lower(_identifier), 'discord:')) then - return string.sub(_identifier, 9) - elseif (type == 'fivem' and string.match(string.lower(_identifier), 'fivem:')) then - return string.sub(_identifier, 7) - elseif (type == 'ip' and string.match(string.lower(_identifier), 'ip:')) then - return string.sub(_identifier, 4) - end - end - - return 'none' - end - - if (player ~= nil and type(player) == 'number') then - local identifiers = GetPlayerIdentifiers(player) - local primaryIdentifier = identifier:getByType(IDTYPE, identifiers) - - if (primaryIdentifier ~= 'none' and identifiers.players ~= nil and identifiers.players[primaryIdentifier] ~= nil) then - identifiers.players[primaryIdentifier].source = player - - return identifiers.players[primaryIdentifier] - end - elseif(player ~= nil and type(player) == 'string') then - if (player ~= 'none' and identifiers.players ~= nil and identifiers.players[player] ~= nil) then - return identifiers.players[player] - end - end - - if (player == nil or (type(player) == 'number' and player == 0) or (type(player) == 'string' and player == 'console')) then - identifier.source = 0 - identifier.name = 'Console' - identifier.identifiers = { - 'steam:console', - 'license:console', - 'xbl:console', - 'live:console', - 'discord:console', - 'fivem:console', - 'ip:console' - } - identifier.identifier = 'console' - elseif(player ~= nil and (type(player) == 'number' and player > 0)) then - identifier.source = player - identifier.name = GetPlayerName(player) - identifier.identifiers = GetPlayerIdentifiers(player) - identifier.identifier = identifier:getByType(IDTYPE, identifier.identifiers) - else - identifier.source = -1 - - local query = 'SELECT * FROM `identifiers` WHERE %s ORDER BY `id` DESC LIMIT 1' - - if (IDTYPE == 'steam') then - query = query:format('`steam` = @identifier') - elseif (IDTYPE == 'license') then - query = query:format('`license` = @identifier') - elseif (IDTYPE == 'xbl') then - query = query:format('`xbl` = @identifier') - elseif (IDTYPE == 'live') then - query = query:format('`live` = @identifier') - elseif (IDTYPE == 'discord') then - query = query:format('`discord` = @identifier') - elseif (IDTYPE == 'fivem') then - query = query:format('`fivem` = @identifier') - elseif (IDTYPE == 'ip') then - query = query:format('`ip` = @identifier') - end - - local database = m('database') - local rows = database:fetchAll(query, { - ['@identifier'] = ('%s:%s'):format(IDTYPE, player) - }) - - if (rows ~= nil and #rows > 0) then - local row = rows[1] - - identifier.source = -1 - identifier.identifiers = {} - - if (row.steam and row.steam ~= '') then - table.insert(identifier.identifiers, row.steam) - if(IDTYPE == 'steam') then identifier.identifier = string.sub(row.steam, 7) end - end - - if (row.license and row.license ~= '') then - table.insert(identifier.identifiers, row.license) - if(IDTYPE == 'license') then identifier.identifier = string.sub(row.license, 9) end - end - if (row.xbl and row.xbl ~= '') then - table.insert(identifier.identifiers, row.xbl) - if(IDTYPE == 'xbl') then identifier.identifier = string.sub(row.xbl, 5) end - end - if (row.live and row.live ~= '') - then table.insert(identifier.identifiers, row.live) - if(IDTYPE == 'live') then identifier.identifier = string.sub(row.live, 6) end - end - if (row.discord and row.discord ~= '') then - table.insert(identifier.identifiers, row.discord) - if(IDTYPE == 'discord') then identifier.identifier = string.sub(row.discord, 9) end - end - if (row.fivem and row.fivem ~= '') then - table.insert(identifier.identifiers, row.fivem) - if(IDTYPE == 'fivem') then identifier.identifier = string.sub(row.fivem, 7) end - end - if (row.ip and row.ip ~= '') then - table.insert(identifier.identifiers, row.ip) - if(IDTYPE == 'ip') then identifier.identifier = string.sub(row.ip, 4) end - end - if (row.name and row.name ~= '') then - identifier.name = row.name - end - - identifier.identifier = identifier.identifiers[IDTYPE] or player - else - identifier.source = -1 - identifier.name = 'Unknown' - identifier.identifier = player - identifier.identifiers = { - ('%s:%s'):format(IDTYPE, player) - } - end - end - - --- Returns current primary identifier - function identifier:getIdentifier() - return self.identifier or 'none' - end - - --- Returns current player identifiers - function identifier:getIdentifiers() - return self.identifiers or {} - end - - --- Store identifier in current module - identifiers.players[identifier.identifier] = identifier - - return identifier -end - ---- Create a default console identifier -identifiers.players['console'] = identifiers:createIdentifier('console') \ No newline at end of file diff --git a/modules/[framework]/identifiers/langs/nl.json b/modules/[framework]/identifiers/langs/nl.json deleted file mode 100644 index 3529411..0000000 --- a/modules/[framework]/identifiers/langs/nl.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "source_error": "[LOGS][🛑] Wij konden uw id niet vaststellen, probeer opnieuw te joinen of via `F8` en dan `connect play.dobberdamrp.nl`", - "identifier_error": "[LOGS][🛑] Wij konden uw identifier niet vaststellen, neem contact op met de server owners", - "steam_error": "U moet Steam open hebben staan om op deze FiveM server te kunnen spelen.", - "license_error": "Uw FiveM moet voorzien zijn van een geldige GTA5 licentie om op deze server te kunnen spelen.", - "xbl_error": "Uw account moet voorzien zijn van een geldige XBOX Live ID om op deze server te kunnen spelen.", - "live_error": "Uw account moet voorzien zijn van een geldige Microsoft account om op deze server te kunnen spelen.", - "discord_error": "Uw FiveM moet voorzien zijn van een Discord account, geef FiveM toegang tot Discord om op deze server te kunnen spelen.", - "fivem_error": "Uw FiveM moet verbonden zijn met uw FiveM Forum account om op deze server te kunnen spelen.", - "ip_error": "U kunt niet joinen aangezien wij uw IP niet hebben kunnen vaststellen, herstart FiveM en probeer het opnieuw.", - "none_error": "U kunt niet joinen aangezien een onbekende identifier ontbreekt, neem contact op met de server eigenaren." -} \ No newline at end of file diff --git a/modules/[framework]/identifiers/migrations/0.sql b/modules/[framework]/identifiers/migrations/0.sql deleted file mode 100644 index 81b12aa..0000000 --- a/modules/[framework]/identifiers/migrations/0.sql +++ /dev/null @@ -1,13 +0,0 @@ -CREATE TABLE `identifiers` ( - `id` INT NOT NULL AUTO_INCREMENT, - `name` VARCHAR(255) NOT NULL, - `steam` VARCHAR(255) NULL DEFAULT NULL, - `license` VARCHAR(255) NULL DEFAULT NULL, - `xbl` VARCHAR(255) NULL DEFAULT NULL, - `live` VARCHAR(255) NULL DEFAULT NULL, - `discord` VARCHAR(255) NULL DEFAULT NULL, - `fivem` VARCHAR(255) NULL DEFAULT NULL, - `ip` VARCHAR(255) NULL DEFAULT NULL, - `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, - PRIMARY KEY (`id`) -); \ No newline at end of file diff --git a/modules/[framework]/identifiers/module.json b/modules/[framework]/identifiers/module.json deleted file mode 100644 index 7b779bc..0000000 --- a/modules/[framework]/identifiers/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV identifier module", - "server_scripts": [ - "server/main.lua", - "classes/identifier.lua" - ], - "client_scripts": [ - - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "identifiers" -} \ No newline at end of file diff --git a/modules/[framework]/identifiers/server/main.lua b/modules/[framework]/identifiers/server/main.lua deleted file mode 100644 index e878a0f..0000000 --- a/modules/[framework]/identifiers/server/main.lua +++ /dev/null @@ -1,194 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local identifiers = class('identifiers') - ---- Default values -identifiers:set { - players = {}, - playerIdIdentifiers = {} -} - ---- Returns a player identifier by type ---- @param source int Player ID ---- @param type string Identifier Type -function identifiers:getPlayer(player) - if (type(player) == 'string') then - if (identifiers.players ~= nil and identifiers.players[player] ~= nil) then - return identifiers.players[player] - end - - return self:createIdentifier(player) - end - - if (type(player) == 'number') then - if (identifiers.players ~= nil) then - for _identifier, _identifiers in pairs(identifiers.players or {}) do - if (_identifiers.source == player) then - identifiers.players[_identifier].source = player - - return identifiers.players[_identifier] - end - end - end - - return self:createIdentifier(player) - end - - return nil -end - ---- Returns a player identifier by player id (not player source) ---- @param playerId number|string PlayerID -function identifiers:getIdentifierByPlayerId(playerId) - if (playerId == nil) then return nil end - if (type(playerId) ~= 'number') then playerId = tonumber(playerId) end - if (playerId <= 0) then return nil end - - local _identifier = 'none' - - if (self.playerIdIdentifiers ~= nil and self.playerIdIdentifiers[tostring(playerId)] ~= nil) then - _identifier = self.playerIdIdentifiers[tostring(playerId)] - - return self:getPlayer(_identifier) - end - - local database = m('database') - - _identifier = (database:fetchScalar("SELECT `identifier` FROM `players` WHERE `id` = @id LIMIT 1", { - ['@id'] = playerId - }) or 'none') - - if (_identifier == 'none') then return nil end - - self.playerIdIdentifiers[tostring(playerId)] = _identifier - - return self:getPlayer(_identifier) -end - ---- Returns a player identifier ---- @param source int Player ID -function identifiers:getIdentifier(source) - if (source <= 0) then - return 'console' - end - - local _identifiers = GetPlayerIdentifiers(source) - - for _, identifier in pairs(_identifiers) do - if (IDTYPE == 'steam' and string.match(string.lower(identifier), 'steam:')) then - return string.sub(identifier, 7) - elseif (IDTYPE == 'license' and string.match(string.lower(identifier), 'license:')) then - return string.sub(identifier, 9) - elseif (IDTYPE == 'xbl' and string.match(string.lower(identifier), 'xbl:')) then - return string.sub(identifier, 5) - elseif (IDTYPE == 'live' and string.match(string.lower(identifier), 'live:')) then - return string.sub(identifier, 6) - elseif (IDTYPE == 'discord' and string.match(string.lower(identifier), 'discord:')) then - return string.sub(identifier, 9) - elseif (IDTYPE == 'fivem' and string.match(string.lower(identifier), 'fivem:')) then - return string.sub(identifier, 7) - elseif (IDTYPE == 'ip' and string.match(string.lower(identifier), 'ip:')) then - return string.sub(identifier, 4) - end - end - - return 'none' -end - ---- Trigger when player is connecting -on('playerConnecting', function(source, returnSuccess, returnError) - if (source == nil or type(source) ~= 'number') then - returnError(_(CR(), 'identifiers', 'source_error')) - return - end - - local primaryIdentifier = 'none' - local playerIdentifiers = { - ['steam'] = nil, - ['license'] = nil, - ['xbl'] = nil, - ['live'] = nil, - ['discord'] = nil, - ['fivem'] = nil, - ['ip'] = nil - } - - for _, _identifier in pairs(GetPlayerIdentifiers(source)) do - if (string.match(string.lower(_identifier), 'steam:')) then - playerIdentifiers['steam'] = _identifier - primaryIdentifier = string.sub(_identifier, 7) - elseif (string.match(string.lower(_identifier), 'license:')) then - playerIdentifiers['license'] = _identifier - primaryIdentifier = string.sub(_identifier, 9) - elseif (string.match(string.lower(_identifier), 'xbl:')) then - playerIdentifiers['xbl'] = _identifier - primaryIdentifier = string.sub(_identifier, 5) - elseif (string.match(string.lower(_identifier), 'live:')) then - playerIdentifiers['live'] = _identifier - primaryIdentifier = string.sub(_identifier, 6) - elseif (string.match(string.lower(_identifier), 'discord:')) then - playerIdentifiers['discord'] = _identifier - primaryIdentifier = string.sub(_identifier, 9) - elseif (string.match(string.lower(_identifier), 'fivem:')) then - playerIdentifiers['fivem'] = _identifier - primaryIdentifier = string.sub(_identifier, 7) - elseif (string.match(string.lower(_identifier), 'ip:')) then - playerIdentifiers['ip'] = _identifier - primaryIdentifier = string.sub(_identifier, 4) - end - end - - local database = m('database') - - database:execute('INSERT INTO `identifiers` (`name`, `steam`, `license`, `xbl`, `live`, `discord`, `fivem`, `ip`) VALUES (@name, @steam, @license, @xbl, @live, @discord, @fivem, @ip)', { - ['@name'] = GetPlayerName(source), - ['@steam'] = playerIdentifiers['steam'] or nil, - ['@license'] = playerIdentifiers['license'] or nil, - ['@xbl'] = playerIdentifiers['xbl'] or nil, - ['@live'] = playerIdentifiers['live'] or nil, - ['@discord'] = playerIdentifiers['discord'] or nil, - ['@fivem'] = playerIdentifiers['fivem'] or nil, - ['@ip'] = playerIdentifiers['ip'] or nil - }) - - identifiers:createIdentifier(source) - - returnSuccess() -end) - ---- Trigger when player is fully connected -on('playerConnected', function(source, returnSuccess, returnError) - if (source == nil or type(source) ~= 'number') then - returnError(_(CR(), 'identifiers', 'source_error')) - return - end - - identifiers:createPlayerIdentifier(source) - - returnSuccess() -end) - ---- Trigger when player is disconnecting -on('playerDisconnect', function(source, returnSuccess, returnError) - if (source == nil or type(source) ~= 'number') then return end - - for _identifier, _identifiers in pairs(identifiers.players or {}) do - if (_identifiers.source == source) then - identifiers.players[_identifier].source = -1 - returnSuccess() - return - end - end - - returnSuccess() -end) - -addModule('identifiers', identifiers) \ No newline at end of file diff --git a/modules/[framework]/logs/classes/log.lua b/modules/[framework]/logs/classes/log.lua deleted file mode 100644 index 775cc28..0000000 --- a/modules/[framework]/logs/classes/log.lua +++ /dev/null @@ -1,205 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- - ---- Create a log object ---- @param player int|string Player -function logs:createLog(player) - local log, identifiers = class('log'), m('identifiers') - local source = -1 - local identifier = identifiers:getPlayer(player) - - if (identifier == nil) then - return nil - end - - if (logs.players ~= nil and logs.players[identifier.identifier] ~= nil) then - if (type(player) == 'number') then - logs.players[identifier.identifier].source = player - end - - return logs.players[identifier.identifier] - end - - log:set { - source = identifier.source, - identifier = identifier.identifier, - identifiers = identifier.identifiers, - name = identifier.name, - avatar = Config.DefaultAvatar or 'none', - identifierObject = identifier - } - - --- Load player's avatar - function log:loadAvatar() - local done = false - local steamIdentifier = self.identifierObject:getByType('steam') - - if (steamIdentifier ~= 'none' and steamIdentifier ~= 'console' and steamIdentifier ~= 'unknown' and type(steamIdentifier) == 'string') then - local steam64ID = tonumber(steamIdentifier, 16) - local steamKey = GetConvar('steam_webApiKey', 'none') or 'none' - - if (type(steamKey) == 'string' and steamKey ~= 'none' and steamKey ~= '') then - PerformHttpRequest(('http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s'):format(steamKey, steam64ID), - function(status, response, headers) - if (status == 200) then - local rawData = response or '{}' - local jsonData = json.decode(rawData) - - if (not (not jsonData)) then - local players = (jsonData.response or {}).players or {} - - if (players ~= nil and #players > 0) then - self.avatar = players[1].avatarfull - done = true - else - done = true - end - else - done = true - end - else - done = true - end - end, 'GET', '', { ['Content-Type'] = 'application/json' }) - else - done = true - end - else - done = true - end - - while not done do - Wait(0) - end - end - - --- Returns a player name - function log:getName() - return self.name or 'Unknown' - end - - --- Returns a player source - function log:getSource() - return self.source or -1 - end - - --- Returns a player avatar - function log:getAvatar() - return self.avatar or Config.DefaultAvatar or 'none' - end - - --- Replate placeholders by tekst - --- @param string string String to change - function log:replacePlaceholders(string) - if (string and type(string) == 'string') then - string = string:gsub('{playername}', self.name) - string = string:gsub('{identifier}', self.identifier) - end - - return string - end - - --- Log a event to database and/or discord - --- @param object array event information - --- @param fallback string webhook fallback - function log:log(object, fallback) - fallback = fallback or false - - local args = object.args or {} - local action = object.action or 'none' - local color = object.color or Colors.Grey - local footer = object.footer or (self.identifier .. ' | ' .. action .. ' | ' .. currentTimeString()) - local message = object.message or nil - local title = object.title or (self.name .. ' => ' .. action:gsub("^%l", string.upper)) - local username = '[Logs] ' .. self.name - local webhook = getWebhooks(action, fallback) - - username = self:replacePlaceholders(username) - title = self:replacePlaceholders(title) - message = self:replacePlaceholders(message) - footer = self:replacePlaceholders(footer) - - if (webhook ~= nil) then - self:logToDiscord(username, title, message, footer, webhook, color, args) - end - - self:logToDatabase(action, args) - end - - --- Log to discord - --- @param username string Username - --- @param title string Title - --- @param message string Message - --- @param footer string Footer - --- @param webhooks string|array Webhook(s) - --- @param color int Color - --- @param args array Arguments - function log:logToDiscord(username, title, message, footer, webhooks, color, args) - if (webhooks ~= nil and type(webhooks) == 'table') then - for _, webhook in pairs(webhooks or {}) do - self:logToDiscord(username, title, message, footer, webhook, color, args) - end - elseif (webhooks ~= nil and type(webhooks) == 'string') then - color = color or 98707270 - - local requestInfo = { - ['color'] = color, - ['type'] = 'rich' - } - - if (title ~= nil and type(title) == 'string') then - requestInfo['title'] = title - end - - if (message ~= nil and type(message) == 'string') then - requestInfo['description'] = message - end - - if (footer ~= nil and type(footer) == 'string') then - requestInfo['footer'] = { - ['text'] = footer - } - end - - PerformHttpRequest(webhooks, function(error, text, headers) end, 'POST', json.encode({ username = username, embeds = { requestInfo }, avatar_url = self:getAvatar() }), { ['Content-Type'] = 'application/json' }) - end - end - - --- Log to database - --- @param action string Action - --- @param args array Arguments - function log:logToDatabase(action, args) - args = args or {} - - if (type(args) ~= 'table') then - args = {} - end - - local database = m('database') - - database:executeAsync('INSERT INTO `logs` (`identifier`, `name`, `action`, `args`) VALUES (@identifier, @name, @action, @args)', { - ['@identifier'] = self.identifier, - ['@name'] = self.name, - ['@action'] = tostring(action), - ['@args'] = json.encode(args) - }, function() end) - end - - --- Initialize avartar - log:loadAvatar() - - logs.players[log.identifier] = log - - return log -end - ---- Create console logs -logs.players['console'] = logs:createLog(0) \ No newline at end of file diff --git a/modules/[framework]/logs/langs/nl.json b/modules/[framework]/logs/langs/nl.json deleted file mode 100644 index c0789d8..0000000 --- a/modules/[framework]/logs/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "error_connecting": "Wij konden belangrijke systemen niet activeren, probeer opnieuw te joinen", - "player_connecting": "Speler %s is DobberdamRP aan het joinen", - "player_connecting_title": "%s verbind met DobberdamRP", - "player_connected": "Speler %s is verbonden met DobberdamRP", - "player_connected_title": "%s is gejoined", - "player_disconnect": "Speler %s heeft DobberdamRP verlaten", - "player_disconnect_title": "%s heeft de stad verlaten" -} \ No newline at end of file diff --git a/modules/[framework]/logs/migrations/0.sql b/modules/[framework]/logs/migrations/0.sql deleted file mode 100644 index 505a584..0000000 --- a/modules/[framework]/logs/migrations/0.sql +++ /dev/null @@ -1,11 +0,0 @@ -CREATE TABLE `logs` ( - `id` INT(11) NOT NULL AUTO_INCREMENT, - `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, - `identifier` VARCHAR(100) NOT NULL, - `name` VARCHAR(100) NOT NULL, - `action` VARCHAR(100) NOT NULL DEFAULT 'none', - `args` LONGTEXT NOT NULL, - - PRIMARY KEY (`id`), - INDEX `logs_date` (`date`) -); \ No newline at end of file diff --git a/modules/[framework]/logs/module.json b/modules/[framework]/logs/module.json deleted file mode 100644 index 515c2b9..0000000 --- a/modules/[framework]/logs/module.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV logging module", - "server_scripts": [ - "server/main.lua", - "classes/log.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "logs" -} \ No newline at end of file diff --git a/modules/[framework]/logs/server/main.lua b/modules/[framework]/logs/server/main.lua deleted file mode 100644 index 2c81023..0000000 --- a/modules/[framework]/logs/server/main.lua +++ /dev/null @@ -1,91 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local logs = class('logs') - ---- Set default values -logs:set { - players = {} -} - ---- Get a log object by source ---- @param player int Player ID -function logs:get(player) - if (type(player) == 'number') then - for identifier, playerLog in pairs(logs.players or {}) do - if (playerLog.source == player) then - return playerLog - end - end - - return logs:createLog(player) - end - - if (type(player) == 'string') then - if (logs.players ~= nil and logs.players[player] ~= nil) then - return logs.players[player] - end - - return logs:createLog(player) - end - - return nil -end - ---- Trigger when player is connecting -on('playerConnecting', function(source, returnSuccess, returnError) - local playerLog = logs:createLog(source) - - playerLog:log({ - title = _(CR(), 'logs', 'player_connecting_title', playerLog:getName()), - action = 'connection.connecting', - color = Colors.Orange, - message = _(CR(), 'logs', 'player_connecting', playerLog:getName()) - }) - - returnSuccess() -end) - ---- Trigger when player is fully connected -on('playerConnected', function(source, returnSuccess, returnError) - local playerLog = logs:createLog(source) - - playerLog:log({ - title = _(CR(), 'logs', 'player_connected_title', playerLog:getName()), - action = 'connection.connected', - color = Colors.Green, - message = _(CR(), 'logs', 'player_connected', playerLog:getName()) - }) - - returnSuccess() -end) - ---- Trigger when player is disconnected -on('playerDisconnect', function(source, returnSuccess, returnError) - if (source == nil or type(source) ~= 'number') then return end - - local identifiers = m('identifiers') - local identifier = identifiers:getIdentifier(source) - - if (logs.players ~= nil and logs.players[identifier] ~= nil) then - logs.players[identifier].source = -1 - - logs.players[identifier]:log({ - title = _(CR(), 'logs', 'player_disconnect_title', logs.players[identifier]:getName()), - action = 'connection.disconnect', - color = Colors.Red, - message = _(CR(), 'logs', 'player_disconnect', logs.players[identifier]:getName()) - }) - end - - returnSuccess() -end) - -addModule('logs', logs) \ No newline at end of file diff --git a/modules/[framework]/menus/classes/menu.lua b/modules/[framework]/menus/classes/menu.lua deleted file mode 100644 index 8f05691..0000000 --- a/modules/[framework]/menus/classes/menu.lua +++ /dev/null @@ -1,264 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function menus:createAMenu(namespace, name, info) - local menu = class('menu') - - --- Default values - menu:set { - namespace = namespace, - name = name, - title = '', - subtitle = '', - image = 'default.png', - items = {}, - events = { - latest = '', - open = {}, - close = {}, - change = {}, - submit = {} - }, - isOpen = false - } - - --- Set default title - if (info.title == nil or type(info.title) ~= 'string') then - menu.title = name:gsub('^%l', string.upper) - else - menu.title = info.title - end - - --- Set category - if (info.subtitle ~= nil and type(info.subtitle) == 'string') then - menu.subtitle = info.subtitle - end - - --- Set image - if (info.image ~= nil and type(info.image) == 'string') then - if (not string.match(info.image, '%A.%A')) then - info.image = ('%s.png'):format(info.image) - end - - menu.image = info.image - end - - --- Register a callback and will be triggerd when event has been execute - --- @param name string Event name - --- @param cb function Callback function - function menu:registerEvent(name, cb) - if (name == nil or type(name) ~= 'string') then return end - if (cb == nil or type(cb) ~= 'function') then return end - - name = string.lower(name) - - if (name == 'open') then - table.insert(self.events.open, cb) - elseif (name == 'close') then - table.insert(self.events.close, cb) - elseif (name == 'change') then - table.insert(self.events.change, cb) - elseif (name == 'submit') then - table.insert(self.events.submit, cb) - end - end - - --- Trigger a callback function when event has been triggerd - --- @param name string Event name - --- @params ... any[] Parameters - function menu:triggerEvents(name, ...) - if (name == nil or type(name) ~= 'string') then return end - - name = string.lower(name) - - if (name == 'open' and self.events.latest ~= 'open') then - self.events.latest = 'open' - self:triggerOpenEvents(...) - elseif (name == 'close' and self.events.latest ~= 'close') then - self.events.latest = 'close' - self:triggerCloseEvents(...) - elseif (name == 'change') then - self.events.latest = 'change' - self:triggerChangeEvents(...) - elseif (name == 'submit') then - self.events.latest = 'submit' - self:triggerSubmitEvents(...) - end - end - - --- Trigger all open event callbacks - --- @param menu menu Menu that has been triggerd - --- @param data table Information about trigger - function menu:triggerOpenEvents(menu, data) - for _, event in pairs(self.events.open or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, data) - end, function(e) - error:print(e) - end) - end - end - end - - --- Trigger all change event callbacks - --- @param menu menu Menu that has been triggerd - --- @param data table Information about trigger - function menu:triggerCloseEvents(menu, data) - for _, event in pairs(self.events.close or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, data) - end, function(e) - error:print(e) - end) - end - end - end - - --- Trigger all change event callbacks - --- @param menu menu Menu that has been triggerd - --- @param data table Information about trigger - function menu:triggerChangeEvents(menu, data) - local oldIndex = data.oldIndex or 0 - local newIndex = data.newIndex or 0 - local oldItem = self.items[(oldIndex + 1)] or false - local newItem = self.items[(newIndex + 1)] or false - - for _, event in pairs(self.events.change or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, oldItem, newItem, data) - end, function(e) - error:print(e) - end) - end - end - end - - --- Trigger all submit callbacks - --- @param menu menu Menu that has been triggerd - --- @param data table Information about trigger - function menu:triggerSubmitEvents(menu, data) - local selectedIndex = data.index or 0 - local selectedItem = self.items[(selectedIndex + 1)] or false - - for _, event in pairs(self.events.submit or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, selectedItem, data) - end, function(e) - error:print(e) - end) - end - end - end - - --- Return current menu data as object - function menu:getData() - return { - title = self.title or 'Unknown', - subtitle = self.subtitle or 'unknown', - image = self.image or 'default.png', - items = self.items or {}, - __namespace = self.namespace or 'unknown', - __name = self.name or 'unknown' - } - end - - --- Close current menu - function menu:close(isFromMenus) - if (isFromMenus and isFromMenus == true) then - if (self.isOpen) then - self.isOpen = false - - SendNUIMessage({ - action = 'closeMenu', - __namespace = self.namespace, - __name = self.name, - __resource = GetCurrentResourceName(), - __module = 'menu' - }) - - if (menus.currentMenu ~= nil and menus.currentMenu.namespace == self.namespace and menus.currentMenu.name == self.name) then - menus.currentMenu = nil - end - end - else - menus:close(self.namespace, self.name) - end - end - - --- Close current menu - function menu:open(open) - if (self.isOpen) then - self.isOpen = true - elseif(open) then - self.isOpen = true - - menus.currentMenu = self - else - menus:open(self.namespace, self.name) - end - end - - --- Add a item to menu - --- @param item table Item Information - function menu:addItem(item) - if (item == nil or type(item) ~= 'table') then - return - end - - local data = {} - - if (item.prefix ~= nil and type(item.prefix) == 'string') then - data.prefix = item.prefix - end - - if (item.label ~= nil and type(item.label) == 'string') then - data.label = item.label - end - - if (item.description ~= nil and type(item.description) == 'string') then - data.description = item.description - end - - if (item.image ~= nil and type(item.image) == 'string') then - data.item_image = item.image - end - - if (item.addon ~= nil) then - data.addon = item.addon - else - data.addon = {} - end - - table.insert(self.items, data) - end - - --- Add a range of items - --- @param items table List of items - function menu:addItems(items) - if (items == nil or type(items) ~= 'table') then - return - end - - for _, value in pairs(items or {}) do - self:addItem(value) - end - end - - --- Clear all menu items - function menu:clearItems() - self.items = {} - end - - return menu -end \ No newline at end of file diff --git a/modules/[framework]/menus/client/main.lua b/modules/[framework]/menus/client/main.lua deleted file mode 100644 index 5c5610f..0000000 --- a/modules/[framework]/menus/client/main.lua +++ /dev/null @@ -1,225 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local menus = class('menus') - ---- Set default values -menus:set { - currentMenu = nil, - menus = {}, - timer = GetGameTimer(), - chunks = {} -} - ---- Open a menu object ---- @param namespace string Menu's namespace ---- @param name string Menu's name -function menus:open(namespace, name) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - - if (self.menus ~= nil and self.menus[namespace] ~= nil and self.menus[namespace][name] ~= nil) then - if (self.menus[namespace][name].isOpen) then - return - end - - local anyMenuOpen, currentOpenMenu = self:anyMenuOpen() - - if (anyMenuOpen) then - self.menus[currentOpenMenu.namespace][currentOpenMenu.name].isOpen = false - end - - self.menus[namespace][name]:open(true) - - SendNUIMessage({ - action = 'openMenu', - data = self.menus[namespace][name]:getData(), - __namespace = self.menus[namespace][name].namespace, - __name = self.menus[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'menu' - }) - - menus.currentMenu = self.menus[namespace][name] - end -end - ---- Close a menu object ---- @param namespace string Menu's namespace ---- @param name string Menu's name -function menus:close(namespace, name) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - - if (self.menus ~= nil and self.menus[namespace] ~= nil and self.menus[namespace][name] ~= nil) then - if (self.menus[namespace][name].isOpen) then - self.menus[namespace][name]:close(true) - - SendNUIMessage({ - action = 'closeMenu', - data = self.menus[namespace][name]:getData(), - __namespace = self.menus[namespace][name].namespace, - __name = self.menus[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'menu' - }) - - menus.currentMenu = nil - end - end -end - ---- Create a menu object ---- @param namespace string Menu's namespace ---- @param name string Menu's name ---- @param info table Information about menu -function menus:create(namespace, name, info) - if (namespace == nil or type(namespace) ~= 'string') then return false, false end - if (name == nil or type(name) ~= 'string') then return false, false end - if (info == nil or type(info) ~= 'table') then return false, false end - if (self.menus == nil) then self.menus = {} end - if (self.menus[namespace] == nil) then self.menus[namespace] = {} end - if (self.menus[namespace][name] ~= nil) then return self.menus[namespace][name], false end - - local menu = self:createAMenu(namespace, name, info) - - self.menus[namespace][name] = menu - - return self.menus[namespace][name], true -end - ---- Add a menu item to menu ---- @param namespace string Menu's namespace ---- @param name string Menu's name ---- @param item table Menu item -function menus:addItem(namespace, name, item) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - if (item == nil or type(item) ~= 'table') then return end - if (self.menus == nil) then return end - if (self.menus[namespace] == nil) then return end - if (self.menus[namespace][name] == nil) then return end - - self.menus[namespace][name]:addItem(item) -end - ---- Add a menu items to menu ---- @param namespace string Menu's namespace ---- @param name string Menu's name ---- @param items table Menu items -function menus:addItems(namespace, name, items) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - if (items == nil or type(items) ~= 'table') then return end - if (self.menus == nil) then return end - if (self.menus[namespace] == nil) then return end - if (self.menus[namespace][name] == nil) then return end - - self.menus[namespace][name]:addItems(items) -end - ---- Returns `true` if any menu is open -function menus:anyMenuOpen() - if (self.menus == nil) then return false, nil end - - for namespace, namespaceMenus in pairs(self.menus or {}) do - if (namespace ~= nil and namespaceMenus ~= nil and type(namespace) == 'string' and type(namespaceMenus) == 'table') then - for _, menu in pairs(self.menus[namespace] or {}) do - if (menu.isOpen) then - return true, menu - end - end - end - end - - return false, nil -end - ---- Register user input and communcate with frontend -Citizen.CreateThread(function() - while true do - Citizen.Wait(10) - - if (menus.currentMenu ~= nil and IsControlPressed(0, 18) and IsInputDisabled(0) and (GetGameTimer() - menus.timer) > 150) then - SendNUIMessage({ action = 'controlPressed', control = 'ENTER', __namespace = menus.currentMenu.namespace, __name = menus.currentMenu.name, __resource = GetCurrentResourceName(), __module = 'menu' }) - menus.timer = GetGameTimer() - end - - if (menus.currentMenu ~= nil and IsControlPressed(0, 177) and IsInputDisabled(0) and (GetGameTimer() - menus.timer) > 150) then - SendNUIMessage({ action = 'controlPressed', control = 'BACKSPACE', __namespace = menus.currentMenu.namespace, __name = menus.currentMenu.name, __resource = GetCurrentResourceName(), __module = 'menu' }) - menus.timer = GetGameTimer() - end - - if (menus.currentMenu ~= nil and IsControlPressed(0, 27) and IsInputDisabled(0) and (GetGameTimer() - menus.timer) > 150) then - SendNUIMessage({ action = 'controlPressed', control = 'TOP', __namespace = menus.currentMenu.namespace, __name = menus.currentMenu.name, __resource = GetCurrentResourceName(), __module = 'menu' }) - menus.timer = GetGameTimer() - end - - if (menus.currentMenu ~= nil and IsControlPressed(0, 173) and IsInputDisabled(0) and (GetGameTimer() - menus.timer) > 150) then - SendNUIMessage({ action = 'controlPressed', control = 'DOWN', __namespace = menus.currentMenu.namespace, __name = menus.currentMenu.name, __resource = GetCurrentResourceName(), __module = 'menu' }) - menus.timer = GetGameTimer() - end - - if (menus.currentMenu ~= nil and IsControlPressed(0, 174) and IsInputDisabled(0) and (GetGameTimer() - menus.timer) > 150) then - SendNUIMessage({ action = 'controlPressed', control = 'LEFT', __namespace = menus.currentMenu.namespace, __name = menus.currentMenu.name, __resource = GetCurrentResourceName(), __module = 'menu' }) - menus.timer = GetGameTimer() - end - - if (menus.currentMenu ~= nil and IsControlPressed(0, 175) and IsInputDisabled(0) and (GetGameTimer() - menus.timer) > 150) then - SendNUIMessage({ action = 'controlPressed', control = 'RIGHT', __namespace = menus.currentMenu.namespace, __name = menus.currentMenu.name, __resource = GetCurrentResourceName(), __module = 'menu' }) - menus.timer = GetGameTimer() - end - end -end) - ---- Add menus as module when available -Citizen.CreateThread(function() - while true do - if (addModule ~= nil and type(addModule) == 'function') then - addModule('menus', menus) - return - end - - Citizen.Wait(0) - end -end) - -RegisterNUICallback('__chunk', function(data, cb) - menus.chunks[data.id] = menus.chunks[data.id] or '' - menus.chunks[data.id] = menus.chunks[data.id] .. data.chunk - - if data['end'] then - local namespace = data.__namespace or 'unknown' - local name = data.__name or 'unknown' - - if (namespace == nil or type(namespace) ~= 'string') then cb('ok') return end - if (name == nil or type(name) ~= 'string') then cb('ok') return end - if (menus.menus == nil) then cb('ok') return end - if (menus.menus[namespace] == nil) then cb('ok') return end - if (menus.menus[namespace][name] == nil) then cb('ok') return end - - local menu = menus.menus[namespace][name] - local data = json.decode(menus.chunks[data.id]) - - if (data.__type ~= nil and data.__type == 'close') then - menus:close(namespace, name) - end - - if (data) then - menu:triggerEvents(data.__type, menu, data) - end - - if (data.id ~= nil and menus.chunks ~= nil and menus.chunks[data.id] ~= nil) then - menus.chunks[data.id] = nil - end - end - - cb('ok') -end) \ No newline at end of file diff --git a/modules/[framework]/menus/langs/nl.json b/modules/[framework]/menus/langs/nl.json deleted file mode 100644 index 7a73a41..0000000 --- a/modules/[framework]/menus/langs/nl.json +++ /dev/null @@ -1,2 +0,0 @@ -{ -} \ No newline at end of file diff --git a/modules/[framework]/menus/module.json b/modules/[framework]/menus/module.json deleted file mode 100644 index 1e5584a..0000000 --- a/modules/[framework]/menus/module.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV menus module", - "client_scripts": [ - "client/main.lua", - "classes/menu.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "menus" -} \ No newline at end of file diff --git a/modules/[framework]/nui/client/main.lua b/modules/[framework]/nui/client/main.lua deleted file mode 100644 index dbd61d6..0000000 --- a/modules/[framework]/nui/client/main.lua +++ /dev/null @@ -1,79 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local nui = class('nui') - ---- Set default values -nui:set { - enableFocus = false, - nuiFocusEnabled = false, - enableMouseInput = false, - mouseInputEnabled = false, - modules = {} -} - ---- Update NUI based on module ---- @param enableFocus number|boolean Enable NUI Focus ---- @param enableMouseInput number|boolean Enable NUI Mouse -function nui:setNuiFocus(enableFocus, enableMouseInput, moduleName) - moduleName = moduleName or getCurrentModule() or CurrentFrameworkModule or 'unknown' - - if (moduleName == nil) then moduleName = 'unknown' end - if (type(moduleName) ~= 'string') then moduleName = tostring(moduleName) end - if (enableFocus == nil or (type(enableFocus) ~= 'boolean' and type(enableFocus) ~= 'number')) then enableFocus = tonumber(enableFocus or '0') end - if (enableMouseInput == nil or (type(enableMouseInput) ~= 'boolean' and type(enableMouseInput) ~= 'number')) then enableMouseInput = tonumber(enableMouseInput or '0') end - if (type(enableFocus) == 'number') then enableFocus = enableFocus == 1 end - if (type(enableMouseInput) == 'number') then enableMouseInput = enableMouseInput == 1 end - if (self.modules == nil) then self.modules = {} end - if (self.modules[moduleName] == nil) then self.modules[moduleName] = { enableFocus = false, enableMouseInput = false } end - - self.modules[moduleName].enableFocus = enableFocus - self.modules[moduleName].enableMouseInput = enableMouseInput -end - ---- Update NUI focus and mouse input status -Citizen.CreateThread(function() - while true do - local anyFocusEnabled, anyMouseInputEnabled = false, false - - for _, moduleNUIFocus in pairs(nui.modules or {}) do - if (moduleNUIFocus.enableFocus) then anyFocusEnabled = true end - if (moduleNUIFocus.enableMouseInput) then anyMouseInputEnabled = true end - if (anyFocusEnabled and anyMouseInputEnabled) then break end - end - - nui.enableFocus = anyFocusEnabled - nui.enableMouseInput = anyMouseInputEnabled - - Citizen.Wait(250) - end -end) - ---- Enable/Disable NUI Focus and input -Citizen.CreateThread(function() - while true do - if ((nui.enableFocus ~= nui.nuiFocusEnabled) or (nui.enableMouseInput ~= nui.mouseInputEnabled)) then - SetNuiFocus(nui.enableFocus, nui.enableMouseInput) - SetNuiFocusKeepInput(nui.enableMouseInput) - - nui.nuiFocusEnabled = nui.enableFocus - nui.mouseInputEnabled = nui.enableMouseInput - end - - Citizen.Wait(0) - end -end) - ---- FiveM maniplulation -_ENV.nui = nui -_G.nui = nui - ---- Add NUI as module -addModule('nui', nui) \ No newline at end of file diff --git a/modules/[framework]/nui/module.json b/modules/[framework]/nui/module.json deleted file mode 100644 index ca00af4..0000000 --- a/modules/[framework]/nui/module.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV NUI module", - "client_scripts": [ - "client/main.lua" - ], - "module": "nui" -} \ No newline at end of file diff --git a/modules/[framework]/wheels/classes/wheel.lua b/modules/[framework]/wheels/classes/wheel.lua deleted file mode 100644 index a21623e..0000000 --- a/modules/[framework]/wheels/classes/wheel.lua +++ /dev/null @@ -1,220 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function wheels:createWheel(namespace, name) - local wheel = class('wheel') - - wheel:set { - namespace = namespace, - name = name, - items = {}, - addon = {}, - events = { - latest = '', - open = {}, - close = {}, - submit = {} - }, - isOpen = false - } - - --- Register a callback and will be triggerd when event has been execute - --- @param name string Event name - --- @param cb function Callback function - function wheel:registerEvent(name, cb) - if (name == nil or type(name) ~= 'string') then return end - if (cb == nil or type(cb) ~= 'function') then return end - - name = string.lower(name) - - if (name == 'open') then - table.insert(self.events.open, cb) - elseif (name == 'close') then - table.insert(self.events.close, cb) - elseif (name == 'submit') then - table.insert(self.events.submit, cb) - end - end - - --- Trigger a callback function when event has been triggerd - --- @param name string Event name - --- @params ... any[] Parameters - function wheel:triggerEvents(name, ...) - if (name == nil or type(name) ~= 'string') then return end - - name = string.lower(name) - - if (name == 'open' and self.events.latest ~= 'open') then - self.events.latest = 'open' - self:triggerOpenEvents(...) - elseif (name == 'close' and self.events.latest ~= 'close') then - self.events.latest = 'close' - self:triggerCloseEvents(...) - elseif (name == 'submit') then - self.events.latest = 'submit' - self:triggerSubmitEvents(...) - end - end - - --- Trigger all open event callbacks - --- @param wheel wheel Wheel that has been triggerd - --- @param data table Information about trigger - function wheel:triggerOpenEvents(wheel, data) - for _, event in pairs(self.events.open or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, data) - end, function(e) - error:print(e) - end) - end - end - end - - --- Trigger all change event callbacks - --- @param wheel wheel Wheel that has been triggerd - --- @param data table Information about trigger - function wheel:triggerCloseEvents(wheel, data) - for _, event in pairs(self.events.close or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, data) - end, function(e) - error:print(e) - end) - end - end - end - - --- Trigger all submit callbacks - --- @param wheel wheel Wheel that has been triggerd - --- @param data table Information about trigger - function wheel:triggerSubmitEvents(wheel, selectedItem) - for _, event in pairs(self.events.submit or {}) do - if (event ~= nil and type(event) == 'function') then - try(function() - event(self, selectedItem) - end, function(e) - error:print(e) - end) - end - end - end - - --- Return current wheel data as object - function wheel:getData() - return { - items = self.items or {}, - __namespace = self.namespace or 'unknown', - __name = self.name or 'unknown' - } - end - - --- Close current wheel - function wheel:close(isFromWheels) - if (isFromWheels and isFromWheels == true) then - if (self.isOpen) then - self.isOpen = false - - SendNUIMessage({ - action = 'CHANGE_STATE', - __namespace = self.namespace, - __name = self.name, - __resource = GetCurrentResourceName(), - __module = 'wheel', - shouldHide = true - }) - - if (wheels.currentWheel ~= nil and wheels.currentWheel.namespace == self.namespace and wheels.currentWheel.name == self.name) then - wheels.currentWheel = nil - end - end - else - wheels:close(self.namespace, self.name) - end - end - - --- Close current wheel - function wheel:open(open) - if (self.isOpen) then - self.isOpen = true - elseif(open) then - self.isOpen = true - - wheels.currentWheel = self - else - wheels:open(self.namespace, self.name) - end - end - - --- Add a item to wheel - --- @param item table Item Information - function wheel:addItem(item) - if (item == nil or type(item) ~= 'table') then - return - end - - local data = {} - - if (item.icon ~= nil and type(item.icon) == 'string') then - data.icon = item.icon - end - - if (item.lib ~= nil and type(item.lib) == 'string') then - data.lib = item.lib - end - - if (item.addon ~= nil) then - data.addon = item.addon - else - data.addon = {} - end - - data.id = #(self.items or {}) + 1 - - table.insert(self.items, data) - end - - --- Add a range of items - --- @param items table List of items - function wheel:addItems(items) - if (items == nil or type(items) ~= 'table') then - return - end - - for key, value in pairs(items or {}) do - self:addItem(value) - end - end - - --- Clear all wheel items - function wheel:clearItems() - self.items = {} - end - - --- Set custom addon on wheel instead of item - --- @param addon table Addon information - function wheel:setAddon(addon) - if (addon ~= nil and type(addon) == 'table') then - self.addon = addon or {} - end - end - - --- Returns addon of current wheel - function wheel:getAddon() - if (self.addon ~= nil and type(self.addon) == 'table') then - return self.addon or {} - end - - return {} - end - - return wheel -end \ No newline at end of file diff --git a/modules/[framework]/wheels/client/main.lua b/modules/[framework]/wheels/client/main.lua deleted file mode 100644 index 59a995f..0000000 --- a/modules/[framework]/wheels/client/main.lua +++ /dev/null @@ -1,266 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local wheels = class('wheels') - ---- Set default values -wheels:set { - currentWheel = nil, - wheels = {}, - timer = GetGameTimer(), - chunks = {}, - keybinds = m('keybinds'), - canSelect = false, - lastCanSelect = false -} - ---- Open a wheel object ---- @param namespace string Wheel's namespace ---- @param name string Wheel's name -function wheels:open(namespace, name, onCursor) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - if (onCursor == nil or type(onCursor) ~= 'boolean') then onCursor = false end - - if (self.wheels ~= nil and self.wheels[namespace] ~= nil and self.wheels[namespace][name] ~= nil) then - local anyWheelOpen, currentOpenWheel = self:anyWheelOpen() - - if (anyWheelOpen) then - self.wheels[currentOpenWheel.namespace][currentOpenWheel.name].isOpen = false - end - - self.wheels[namespace][name]:open(true) - - local wheelX, wheelY = 0, 0 - - if (onCursor) then - local mouseX, mouseY = GetNuiCursorPosition() - - wheelX, wheelY = round(mouseX or 0, 0), round(mouseY or 0, 0) - else - local screenX, screenY = GetActiveScreenResolution() - - wheelX, wheelY = round((screenX or 0) / 2, 0), round((screenY or 0) / 2, 0) - end - - SendNUIMessage({ - action = 'SET_NAMESPACE', - namespace = self.wheels[namespace][name].namespace, - name = self.wheels[namespace][name].name, - __namespace = self.wheels[namespace][name].namespace, - __name = self.wheels[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'wheel' - }) - - SendNUIMessage({ - action = 'ADD_ITEMS', - items = self.wheels[namespace][name].items, - removeAll = true, - __namespace = self.wheels[namespace][name].namespace, - __name = self.wheels[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'wheel' - }) - - SendNUIMessage({ - action = 'CHANGE_STATE', - shouldHide = false, - x = wheelX, - y = wheelY, - __namespace = self.wheels[namespace][name].namespace, - __name = self.wheels[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'wheel' - }) - - self.currentWheel = self.wheels[namespace][name] - end -end - - ---- Close a wheel object ---- @param namespace string Wheel's namespace ---- @param name string Wheel's name -function wheels:close(namespace, name) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - - if (self.wheels ~= nil and self.wheels[namespace] ~= nil and self.wheels[namespace][name] ~= nil) then - if (self.wheels[namespace][name].isOpen) then - self.wheels[namespace][name]:close(true) - - SendNUIMessage({ - action = 'CLEAR_ITEMS', - __namespace = self.wheels[namespace][name].namespace, - __name = self.wheels[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'wheel' - }) - - SendNUIMessage({ - action = 'CHANGE_STATE', - shouldHide = true, - x = 0, - y = 0, - __namespace = self.wheels[namespace][name].namespace, - __name = self.wheels[namespace][name].name, - __resource = GetCurrentResourceName(), - __module = 'wheel' - }) - - self.currentWheel = nil - end - end -end - ---- Create a wheel object ---- @param namespace string Wheel's namespace ---- @param name string Wheel's name -function wheels:create(namespace, name) - if (namespace == nil or type(namespace) ~= 'string') then return false, false end - if (name == nil or type(name) ~= 'string') then return false, false end - if (self.wheels == nil) then self.wheels = {} end - if (self.wheels[namespace] == nil) then self.wheels[namespace] = {} end - if (self.wheels[namespace][name] ~= nil) then return self.wheels[namespace][name], false end - - local wheel = self:createWheel(namespace, name) - - self.wheels[namespace][name] = wheel - - return self.wheels[namespace][name], true -end - ---- Add a wheel item to wheel ---- @param namespace string Wheel's namespace ---- @param name string Wheel's name ---- @param item table Wheel item -function wheels:addItem(namespace, name, item) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - if (item == nil or type(item) ~= 'table') then return end - if (self.wheels == nil) then return end - if (self.wheels[namespace] == nil) then return end - if (self.wheels[namespace][name] == nil) then return end - - self.wheels[namespace][name]:addItem(item) -end - ---- Add a wheel items to wheel ---- @param namespace string Wheel's namespace ---- @param name string Wheel's name ---- @param items table Wheel items -function wheels:addItems(namespace, name, items) - if (namespace == nil or type(namespace) ~= 'string') then return end - if (name == nil or type(name) ~= 'string') then return end - if (items == nil or type(items) ~= 'table') then return end - if (self.wheels == nil) then return end - if (self.wheels[namespace] == nil) then return end - if (self.wheels[namespace][name] == nil) then return end - - self.wheels[namespace][name]:addItems(items) -end - ---- Returns `true` if any wheel is open -function wheels:anyWheelOpen() - if (self.wheels == nil) then return false, nil end - - for namespace, namespaceWheels in pairs(self.wheels or {}) do - if (namespace ~= nil and namespaceWheels ~= nil and type(namespace) == 'string' and type(namespaceWheels) == 'table') then - for _, wheel in pairs(self.wheels[namespace] or {}) do - if (wheel.isOpen) then - return true, wheel - end - end - end - end - - return false, nil -end - -RegisterNUICallback('wheel_results', function(data, cb) - local namespace = data.__namespace or 'unknown' - local name = data.__name or 'unknown' - - if (namespace == nil or type(namespace) ~= 'string') then cb('ok') return end - if (name == nil or type(name) ~= 'string') then cb('ok') return end - - if (wheels.wheels == nil) then cb('ok') return end - if (wheels.wheels[namespace] == nil) then cb('ok') return end - if (wheels.wheels[namespace][name] == nil) then cb('ok') return end - - local wheel = wheels.wheels[namespace][name] - - if (wheel ~= nil) then - local currentSelected = data.selected or 0 - - if (type(currentSelected) == 'string') then currentSelected = tonumber(currentSelected) end - if (type(currentSelected) ~= 'number') then cb('ok') return end - - for _, item in pairs(wheel.items or {}) do - if (item.id == currentSelected) then - wheel:triggerEvents('submit', wheel, item) - cb('ok') - return - end - end - end - - cb('ok') -end) - -Citizen.CreateThread(function() - while true do - if (wheels.currentWheel ~= nil and wheels.currentWheel.isOpen) then - if (wheels.keybinds:isControlReleased('raycast_click')) then - wheels.canSelect = true - end - else - wheels.canSelect = false - end - - Citizen.Wait(0) - end -end) - -Citizen.CreateThread(function() - while true do - if (wheels.canSelect ~= wheels.lastCanSelect) then - wheels.lastCanSelect = wheels.canSelect or false - - --- Update NUI Focus state - nui:setNuiFocus(wheels.canSelect, wheels.canSelect, 'wheels') - - --- Update Controls state - controls:disableControlAction(0, 1, wheels.canSelect, 'wheels') - controls:disableControlAction(0, 2, wheels.canSelect, 'wheels') - controls:disableControlAction(0, 24, wheels.canSelect, 'wheels') - controls:disableControlAction(0, 25, wheels.canSelect, 'wheels') - controls:disableControlAction(0, 142, wheels.canSelect, 'wheels') -- MeleeAttackAlternate - controls:disableControlAction(0, 106, wheels.canSelect, 'wheels') -- VehicleMouseControlOverride - end - - if (wheels.canSelect and wheels.keybinds:isControlPressed('wheel_select')) then - if ((wheels.currentWheel or {}).isOpen) then - wheels.canSelect = false - - wheels:close((wheels.currentWheel or {}).namespace or 'unknown', (wheels.currentWheel or {}).name or 'unknown') - end - end - - Citizen.Wait(0) - end -end) - -addModule('wheels', wheels) - -onFrameworkStarted(function() - wheels.keybinds:registerKey('wheel_select', _(CR(), 'wheels', 'keybind_wheel_select'), 'mouse', 'mouse_left') -end) \ No newline at end of file diff --git a/modules/[framework]/wheels/langs/nl.json b/modules/[framework]/wheels/langs/nl.json deleted file mode 100644 index cf68a94..0000000 --- a/modules/[framework]/wheels/langs/nl.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "keybind_wheel_select": "Selecteren van item in wheel en bevestigen" -} \ No newline at end of file diff --git a/modules/[framework]/wheels/module.json b/modules/[framework]/wheels/module.json deleted file mode 100644 index 54d8b23..0000000 --- a/modules/[framework]/wheels/module.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV wheels module", - "client_scripts": [ - "client/main.lua", - "classes/wheel.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "wheels" -} \ No newline at end of file diff --git a/modules/[items]/items/classes/item.lua b/modules/[items]/items/classes/item.lua deleted file mode 100644 index f436dfc..0000000 --- a/modules/[items]/items/classes/item.lua +++ /dev/null @@ -1,68 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function items:createAItem(name, label, weight, itemType, giveable, dropable, isUnique) - local item = class('item') - local database = m('database') - - item:set { - id = 0, - name = name or 'unknown', - label = label or 'UNKNOWN ITEM', - weight = weight or 1.00, - type = itemType or 'unknown', - giveable = giveable or false, - dropable = dropable or false, - isUnique = isUnique or false - } - - item.id = (database:fetchScalar("SELECT `id` FROM `items` WHERE `name` = @name LIMIT 1", { - ['@name'] = item.name or 'unknown' - }) or 0) - - if (item.id > 0) then - database:execute('UPDATE `items` SET `weight` = @weight, `type` = @type, `giveable` = @giveable, `dropable` = @dropable, `isUnique` = @isUnique WHERE `id` = @id', { - ['@weight'] = round(item.weight, 2), - ['@type'] = item.type, - ['@giveable'] = item.giveable and 1 or 0, - ['@dropable'] = item.dropable and 1 or 0, - ['@isUnique'] = item.isUnique and 1 or 0, - ['@id'] = item.id - }) - else - local id = database:insert('INSERT INTO `items` (`name`, `weight`, `type`, `giveable`, `dropable`, `isUnique`) VALUES (@name, @weight, @type, @giveable, @dropable, @isUnique)', { - ['@name'] = item.name, - ['@weight'] = round(item.weight, 2), - ['@type'] = item.type, - ['@giveable'] = item.giveable and 1 or 0, - ['@dropable'] = item.dropable and 1 or 0, - ['@isUnique'] = item.isUnique and 1 or 0 - }) - - if (type(id) ~= 'number') then id = tonumber(id or '0') end - - if (id <= 0) then - error:print(_(CR(), 'items', 'cant_load_item', item.name)) - return nil - end - - item.id = id - end - - self.items[item.name] = item - - return self.items[item.name] -end - ---- Register some demo items for test purpose -items:addItem('bread', 'Brood', 0.25, 'default', true, true, false) -items:addItem('water_025', 'Flesje water 0.25L', 0.25, 'default', true, true, false) -items:addItem('water_050', 'Flesje water 0.50L', 0.50, 'default', true, true, false) -items:addItem('water_100', 'Flesje water 1.00L', 1.00, 'default', true, true, false) \ No newline at end of file diff --git a/modules/[items]/items/langs/nl.json b/modules/[items]/items/langs/nl.json deleted file mode 100644 index 930ba44..0000000 --- a/modules/[items]/items/langs/nl.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "cant_load_item": "Kan item '%s' niet laden, id is gelijk aan 0" -} \ No newline at end of file diff --git a/modules/[items]/items/migrations/0.sql b/modules/[items]/items/migrations/0.sql deleted file mode 100644 index 849940f..0000000 --- a/modules/[items]/items/migrations/0.sql +++ /dev/null @@ -1,12 +0,0 @@ -CREATE TABLE `items` ( - `id` INT AUTO_INCREMENT PRIMARY KEY, - `name` VARCHAR(50) NOT NULL, - `weight` DECIMAL(5,2) NOT NULL DEFAULT 0, - `type` VARCHAR(50) NOT NULL DEFAULT 'default', - `giveable` INT(1) NOT NULL DEFAULT 0, - `dropable` INT(1) NOT NULL DEFAULT 0, - `isUnique` INT(1) NOT NULL DEFAULT 0, - CONSTRAINT `unique_name` UNIQUE (`name`) -); - -INSERT INTO `items` (`name`, `weight`, `type`, `giveable`, `dropable`, `isUnique`) VALUES ('unknown', 0, 'unknown', 0, 0, 0); \ No newline at end of file diff --git a/modules/[items]/items/module.json b/modules/[items]/items/module.json deleted file mode 100644 index f6ac239..0000000 --- a/modules/[items]/items/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV items module", - "client_scripts": [ - "client/main.lua" - ], - "server_scripts": [ - "server/main.lua", - "classes/item.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "items" -} \ No newline at end of file diff --git a/modules/[items]/items/server/main.lua b/modules/[items]/items/server/main.lua deleted file mode 100644 index eda005b..0000000 --- a/modules/[items]/items/server/main.lua +++ /dev/null @@ -1,93 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local items = class('items') - ---- Set default values -items:set { - items = {}, - cachedItems = nil, - frameworkLoaded = false -} - ---- Add a item to framework ---- @param name string Item name ---- @param label string Label of item ---- @param weight number Weight of item ---- @param itemType string Type of item -function items:addItem(name, label, weight, itemType, giveable, dropable, isUnique) - if (name == nil or type(name) ~= 'string') then return nil, false end - if (label == nil or type(label) ~= 'string') then label = 'UNKNOWN ITEM' end - if (weight == nil or type(weight) ~= 'number') then weight = tonumber(weight or '1.00') end - if (itemType == nil or type(itemType) ~= 'string') then return nil, false end - if (giveable == nil or (type(giveable) ~= 'boolean' and type(giveable) ~= 'number')) then giveable = tonumber(giveable or '0') end - if (dropable == nil or (type(dropable) ~= 'boolean' and type(dropable) ~= 'number')) then dropable = tonumber(dropable or '0') end - if (isUnique == nil or (type(isUnique) ~= 'boolean' and type(isUnique) ~= 'number')) then isUnique = tonumber(isUnique or '0') end - if (type(giveable) == 'number') then giveable = giveable == 1 end - if (type(dropable) == 'number') then dropable = dropable == 1 end - if (type(isUnique) == 'number') then isUnique = isUnique == 1 end - - name = string.lower(name) - itemType = string.lower(itemType) - - if (self.items ~= nil and self.items[name] ~= nil) then return self.items[name], false end - - local item = self:createAItem(name, label, weight, itemType, giveable, dropable, isUnique) - - if (item ~= nil) then - return item, true - end - - return nil, false -end - ---- Returns all registerd items -function items:getAllItems() - if (self.cachedItems == nil) then - repeat Wait(0) until self.frameworkLoaded == true - - local _items = {} - - for _, item in pairs(self.items or {}) do - _items[item.name] = { - id = item.id, - name = item.name, - label = item.label, - weight = item.weight, - type = item.type, - giveable = item.giveable, - dropable = item.dropable, - isUnique = item.isUnique, - isUsable = anyEvent(('item:%s:use'):format(item.name)) - } - end - - self.cachedItems = _items - end - - return self.cachedItems or {} -end - ---- Will be triggerd by client end returns result in cb -registerCallback('corev:items:receive', function(source, cb) - repeat Wait(0) until items.frameworkLoaded == true - - local _items = items:getAllItems() - - cb(_items) -end) - ---- Tell resource that server has been started -onFrameworkStarted(function() - items.frameworkLoaded = true -end) - ---- Register items as module -addModule('items', items) \ No newline at end of file diff --git a/modules/[items]/weapons/classes/weapon.lua b/modules/[items]/weapons/classes/weapon.lua deleted file mode 100644 index 7332de0..0000000 --- a/modules/[items]/weapons/classes/weapon.lua +++ /dev/null @@ -1,76 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -function weapons:createAWeapon(id, player, job, name, bullets, location) - local weapon = class('weapon') - local identifiers, jobs = m('identifiers'), m('jobs') - - weapon:set { - id = id or 0, - playerId = player or 0, - jobId = job or 0, - name = name or 'unknown', - bullets = bullets or 120, - location = location or 'unknown', - ownerType = 'unknown', - identifier = nil, - job = nil, - weapon = Config.Weapons[string.lower(name or 'unknown')] or {} - } - - if (weapon.id <= 0 or (weapon.playerId <= 0 and weapon.jobId <= 0)) then - return nil - end - - if (weapon.playerId > 0) then weapon.ownerType = 'player' end - if (weapon.jobId > 0) then weapon.ownerType = 'job' end - - if (weapon.ownerType == 'player') then - weapon.identifier = identifiers:getIdentifierByPlayerId(weapon.playerId) - - if (weapon.identifier == nil) then return nil end - elseif (weapon.ownerType == 'job') then - weapon.job = jobs:getJob(weapon.jobId) - - if (weapon.job == nil) then return nil end - end - - --- Returns current primary identifier - function weapon:getIdentifier() - return (self.identifier or {}).identifier or 'none' - end - - --- Returns weapon job name - function weapon:getJobName() - return (self.job or {}).name or 'unknown' - end - - --- Returns weapon id - function weapon:getId() - return (self.weapon or {}).id or 'weapon_unknown' - end - - --- Returns weapon label - function weapon:getLabel() - return (self.weapon or {}).name or 'unknown' - end - - --- Returns weapon label - function weapon:getHash() - return (self.weapon or {}).hash or 0x0 - end - - --- Returns weapon category - function weapon:getCategory() - return (self.weapon or {}).category or 'unknown' - end - - return weapon -end \ No newline at end of file diff --git a/modules/[items]/weapons/langs/nl.json b/modules/[items]/weapons/langs/nl.json deleted file mode 100644 index e69de29..0000000 diff --git a/modules/[items]/weapons/migrations/0.sql b/modules/[items]/weapons/migrations/0.sql deleted file mode 100644 index e83a7be..0000000 --- a/modules/[items]/weapons/migrations/0.sql +++ /dev/null @@ -1,10 +0,0 @@ -CREATE TABLE `weapons` ( - `id` INT AUTO_INCREMENT PRIMARY KEY, - `player_id` INT DEFAULT NULL, - `job_id` INT DEFAULT NULL, - `name` VARCHAR(100) NOT NULL, - `bullets` INT NOT NULL DEFAULT 120, - `location` VARCHAR(50) NOT NULL DEFAULT 'safe', - CONSTRAINT `fk_weapons_player` FOREIGN KEY (`player_id`) REFERENCES `players`(`id`), - CONSTRAINT `fk_weapons_job` FOREIGN KEY (`job_id`) REFERENCES `jobs`(`id`) -); \ No newline at end of file diff --git a/modules/[items]/weapons/module.json b/modules/[items]/weapons/module.json deleted file mode 100644 index 2446a61..0000000 --- a/modules/[items]/weapons/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV weapons module", - "client_scripts": [ - "client/main.lua" - ], - "server_scripts": [ - "server/main.lua", - "classes/weapon.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "weapons" -} \ No newline at end of file diff --git a/modules/[items]/weapons/server/main.lua b/modules/[items]/weapons/server/main.lua deleted file mode 100644 index 4be3e3f..0000000 --- a/modules/[items]/weapons/server/main.lua +++ /dev/null @@ -1,125 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local weapons = class('weapons') - ---- Set default values -weapons:set { - players = {}, - jobs = {}, - weapons = {}, - loaded = false -} - ---- Returns a list of weapons for player based on there location ---- @param player number|string Player ID of Player Identifier ---- @param location string Location for weapons to be stored -function weapons:getPlayerWeapons(player, location) - if (location == nil or type(location) ~= 'string') then return {} end - - local identifier, identifiers = 'none', m('identifiers') - - if (player == nil or (type(player) == 'number' and player == 0) or (type(player) == 'string' and player == 'console')) then - identifier = 'console' - elseif(player ~= nil and (type(player) == 'number' and player > 0)) then - identifier = identifiers:getIdentifier(player) - else - identifier = player - end - - if (identifier ~= 'none' and weapons.players ~= nil and weapons.players[identifier] ~= nil and weapons.players[identifier][location] ~= nil) then - return weapons.players[identifier][location] - end - - return {} -end - ---- Returns a list of weapons for given job ---- @param source number|string Player ID of Player Identifier ---- @param job string Name of job ---- @param location string Location for weapons to be stored -function weapons:getJobWeapons(source, job, location) - if (job == nil or type(job) ~= 'string') then return {} end - if (location == nil or type(location) ~= 'string') then return {} end - - local player, players = nil, m('players') - - player = players:getPlayer(source) or nil - - if (player == nil or player.identifier == 'console' or player.identifier == 'none') then return {} end - - local playerAllowed = false - - if (string.lower((player.job or {}).name or 'unknown') == string.lower(job)) then playerAllowed = true end - if (string.lower((player.job2 or {}).name or 'unknown') == string.lower(job)) then playerAllowed = true end - if (type(source) == 'number' and IsPlayerAceAllowed(source, 'weapons.show')) then playerAllowed = true end - if (IsPrincipalAceAllowed(('identifier.%s:%s'):format(string.lower(Config.IdentifierType), player.identifier), 'weapons.show')) then playerAllowed = true end - - if (not playerAllowed) then return {} end - - if (job ~= '' and weapons.jobs ~= nil and weapons.jobs[job] ~= nil and weapons.jobs[job][location] ~= nil) then - return weapons.jobs[job][location] - end - - return {} -end - ---- Tell resource that server has been started -onFrameworkStarted(function() - local database = m('database') - - database:fetchAllAsync('SELECT * FROM `weapons`', {}, function(results) - if (results == nil or type(results) ~= 'table') then results = {} end - - if (#results <= 0) then - weapons.loaded = true - return - end - - for _, weapon in pairs(results) do - if (weapon == nil or type(weapon) ~= 'table') then weapon = {} end - - local weaponObject = weapons:createAWeapon( - weapon.id or 0, - weapon.player_id or 0, - weapon.job_id or 0, - weapon.name or 'unknown', - weapon.bullets or 120, - weapon.location or 'safe' - ) - - if (weaponObject ~= nil) then - if (weaponObject.ownerType == 'player') then - local weaponIdentifier = weaponObject:getIdentifier() - - if (weapons.players == nil) then weapons.players = {} end - if (weapons.players[weaponIdentifier] == nil) then weapons.players[weaponIdentifier] = {} end - if (weapons.players[weaponIdentifier][weaponObject.location] == nil) then weapons.players[weaponIdentifier][weaponObject.location] = {} end - - table.insert(weapons.players[weaponIdentifier][weaponObject.location], weaponObject) - - weapons.weapons[tostring(weaponObject.id)] = weaponObject - elseif (weaponObject.ownerType == 'job') then - local jobName = weaponObject:getJobName() - - if (weapons.jobs == nil) then weapons.jobs = {} end - if (weapons.jobs[jobName] == nil) then weapons.jobs[jobName] = {} end - if (weapons.jobs[jobName][weaponObject.location] == nil) then weapons.jobs[jobName][weaponObject.location] = {} end - - table.insert(weapons.jobs[jobName][weaponObject.location], weaponObject) - - weapons.weapons[tostring(weaponObject.id)] = weaponObject - end - end - end - - weapons.loaded = true - end) -end) \ No newline at end of file diff --git a/modules/[player]/jobs/langs/nl.json b/modules/[player]/jobs/langs/nl.json deleted file mode 100644 index 32fd0ac..0000000 --- a/modules/[player]/jobs/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "console_not_allowed": "Console is niet toegestaan om deze commando uit te voeren", - "help_setjob": "1ste baan van een speler veranderen", - "help_setjob2": "2de baan van een speler veranderen", - "help_playerId": "ID van speler die je wilt aanpassen", - "help_jobName": "Welke baan wil je speler geven?", - "help_jobGrade": "Welke rank wil je geven? (getal)", - "player_not_found_error": "Speler met ID: \"%s\" is niet gevonden" -} \ No newline at end of file diff --git a/modules/[player]/jobs/migrations/0.sql b/modules/[player]/jobs/migrations/0.sql deleted file mode 100644 index b3f0004..0000000 --- a/modules/[player]/jobs/migrations/0.sql +++ /dev/null @@ -1,18 +0,0 @@ -CREATE TABLE `jobs` ( - `id` INT AUTO_INCREMENT PRIMARY KEY, - `name` VARCHAR(20) NOT NULL, - `label` VARCHAR(50) NOT NULL DEFAULT '', - `whitelisted` INT(1) NOT NULL DEFAULT 0, - CONSTRAINT `unique_name` UNIQUE (`name`) -); - -CREATE TABLE `job_grades` ( - `job_id` INT, - `grade` INT(5) NOT NULL DEFAULT 0, - `name` VARCHAR(20) NOT NULL DEFAULT '', - `label` VARCHAR(50) NOT NULL DEFAULT '', - `salary` INT(3) NOT NULL DEFAULT 0, - PRIMARY KEY (`job_id`,`grade`), - CONSTRAINT `unique_job_name` UNIQUE (`job_id`, `name`), - CONSTRAINT `fk_jobs` FOREIGN KEY (`job_id`) REFERENCES `jobs`(`id`) -); \ No newline at end of file diff --git a/modules/[player]/jobs/migrations/1.sql b/modules/[player]/jobs/migrations/1.sql deleted file mode 100644 index be5f7d1..0000000 --- a/modules/[player]/jobs/migrations/1.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES ('unemployed', 'Werkloos', 1); -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 0 AS `grade`, 'unemployed' AS `name`, 'Werkloos' AS `label`, 100 AS `salary` FROM `jobs` WHERE `name` = 'unemployed' LIMIT 1; \ No newline at end of file diff --git a/modules/[player]/jobs/migrations/2.sql b/modules/[player]/jobs/migrations/2.sql deleted file mode 100644 index 7106c55..0000000 --- a/modules/[player]/jobs/migrations/2.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES ('staff', 'DobberdamRP', 1); -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 0 AS `grade`, 'staff' AS `name`, 'STAFF' AS `label`, 500 AS `salary` FROM `jobs` WHERE `name` = 'staff' LIMIT 1; \ No newline at end of file diff --git a/modules/[player]/jobs/module.json b/modules/[player]/jobs/module.json deleted file mode 100644 index f900b3e..0000000 --- a/modules/[player]/jobs/module.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV jobs module", - "server_scripts": [ - "server/main.lua", - "server/commands.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "jobs" -} \ No newline at end of file diff --git a/modules/[player]/jobs/server/commands.lua b/modules/[player]/jobs/server/commands.lua deleted file mode 100644 index 28259a7..0000000 --- a/modules/[player]/jobs/server/commands.lua +++ /dev/null @@ -1,71 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local commands = m('commands') - -commands:register({ 'setjob', 'sj', 'setprimaryjob' }, { 'superadmin' }, function(source, arguments, showError) - if (arguments.playerId == nil and type(arguments.playerId) ~= 'number') then return end - if (arguments.jobName == nil and type(arguments.jobName) ~= 'string') then return end - if (arguments.jobGrade == nil and type(arguments.jobGrade) ~= 'number') then return end - - local players = m('players') - local player = players:getPlayer(arguments.playerId) - - if (player == nil) then - showError(_(CR(), 'jobs', 'player_not_found_error', arguments.playerId)) - return - end - - player:setJob(arguments.jobName, arguments.jobGrade, function(done, message) - if (not done) then - showError(message) - else - TCE('corev:players:setJob', arguments.playerId, player.job, player.grade) - end - end) -end, true, { - help = _(CR(), 'jobs', 'help_setjob'), - validate = true, - arguments = { - { name = 'playerId', help = _(CR(), 'jobs', 'help_playerId'), type = 'number' }, - { name = 'jobName', help = _(CR(), 'jobs', 'help_jobName'), type = 'string' }, - { name = 'jobGrade', help = _(CR(), 'jobs', 'help_jobGrade'), type = 'number' } - } -}) - -commands:register({ 'setjob2', 'sj2', 'setsecondjob' }, { 'superadmin' }, function(source, arguments, showError) - if (arguments.playerId == nil and type(arguments.playerId) ~= 'number') then return end - if (arguments.jobName == nil and type(arguments.jobName) ~= 'string') then return end - if (arguments.jobGrade == nil and type(arguments.jobGrade) ~= 'number') then return end - - local players = m('players') - local player = players:getPlayer(arguments.playerId) - - if (player == nil) then - showError(_(CR(), 'jobs', 'player_not_found_error', arguments.playerId)) - return - end - - player:setJob2(arguments.jobName, arguments.jobGrade, function(done, message) - if (not done) then - showError(message) - else - TCE('corev:players:setJob2', arguments.playerId, player.job2, player.grade2) - end - end) -end, true, { - help = _(CR(), 'jobs', 'help_setjob2'), - validate = true, - arguments = { - { name = 'playerId', help = _(CR(), 'jobs', 'help_playerId'), type = 'number' }, - { name = 'jobName', help = _(CR(), 'jobs', 'help_jobName'), type = 'string' }, - { name = 'jobGrade', help = _(CR(), 'jobs', 'help_jobGrade'), type = 'number' } - } -}) \ No newline at end of file diff --git a/modules/[player]/jobs/server/main.lua b/modules/[player]/jobs/server/main.lua deleted file mode 100644 index 8dd09a5..0000000 --- a/modules/[player]/jobs/server/main.lua +++ /dev/null @@ -1,104 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local database = m('database') -local jobs = class('jobs') - ---- Set default values -jobs:set { - jobs = {} -} - ---- Load all jobs from database -function jobs:loadJobs() - local jobInfos = database:fetchAll('SELECT `j`.`id` AS `job_id`, `j`.`name` AS `job_name`, `j`.`label` AS `job_label`, `j`.`whitelisted` AS `job_whitelisted`, `jg`.`grade` AS `grade_grade`, `jg`.`name` AS `grade_name`, `jg`.`label` AS `grade_label`, `jg`.`salary` AS `grade_salary` FROM `job_grades` AS `jg` LEFT JOIN `jobs` AS `j` ON `j`.`id` = `jg`.`job_id` ORDER BY `j`.`name` ASC, `jg`.`grade` ASC', {}) - - if (jobInfos ~= nil and #jobInfos > 0) then - for _, jobInfo in pairs(jobInfos or {}) do - if (jobs.jobs ~= nil and jobs.jobs[string.lower(jobInfo.job_name)] == nil) then - local job = class('job') - - --- Set default values - job:set { - id = jobInfo.job_id, - name = jobInfo.job_name, - label = jobInfo.job_label, - whitelisted = jobInfo.job_whitelisted == 1, - grades = {} - } - - --- Get grade by number - --- @param grade int Grade - function job:getGrade(grade) - if (self.grades[tostring(grade)] ~= nil) then - return self.grades[tostring(grade)] - end - - return nil - end - - --- Get grade by name - --- @param gradeName string Grade Name - function job:getGradeByName(gradeName) - for _, grade in pairs(self.grades or {}) do - if (string.lower(grade.name) == string.lower(gradeName)) then - return grade - end - end - - return nil - end - - jobs.jobs[string.lower(jobInfo.job_name)] = job - end - - local jobGrade = class('job-grade') - - --- Set default values - jobGrade:set { - grade = jobInfo.grade_grade, - name = jobInfo.grade_name, - label = jobInfo.grade_label, - salary = jobInfo.grade_salary - } - - jobs.jobs[string.lower(jobInfo.job_name)].grades[tostring(jobGrade.grade)] = jobGrade - end - end -end - ---- Get job by id ---- @param id number Job ID -function jobs:getJob(id) - for _, job in pairs(self.jobs or {}) do - if (job.id == id) then - return job - end - end - - return nil -end - ---- Get job by name ---- @param jobName string Job Name -function jobs:getJobByName(jobName) - if (self.jobs[string.lower(jobName)] ~= nil) then - return self.jobs[string.lower(jobName)] - end - - return nil -end - ---- Trigger event when database is ready -database:ready(function() - jobs:loadJobs() -end) - -addModule('jobs', jobs) \ No newline at end of file diff --git a/modules/[player]/players/classes/player.lua b/modules/[player]/players/classes/player.lua deleted file mode 100644 index 96f5aff..0000000 --- a/modules/[player]/players/classes/player.lua +++ /dev/null @@ -1,250 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- - ---- Create a player object ---- @param int|string Player -function players:createPlayer(_player) - local player = class('player') - local identifiers, database, jobs = m('identifiers'), m('database'), m('jobs') - local identifier, playerName = 'none', 'Unknown' - - if (_player == nil or (type(_player) == 'number' and _player == 0) or (type(_player) == 'string' and _player == 'console')) then - identifier = 'console' - playerName = 'Console' - elseif(_player ~= nil and (type(_player) == 'number' and _player > 0)) then - identifier = identifiers:getIdentifier(_player) - playerName = GetPlayerName(_player) - else - identifier = _player - end - - if (identifier == 'none') then - return nil - end - - if (players.players ~= nil and players.players[identifier] ~= nil) then - return players.players[identifier] - end - - local playerCount = database:fetchScalar("SELECT COUNT(*) AS `count` FROM `players` WHERE `identifier` = @identifier", { - ['@identifier'] = identifier - }) - - if (playerCount <= 0) then - local unemployedJobs = jobs:getJobByName('unemployed') - local unemployedGrade = unemployedJobs:getGradeByName('unemployed') - - database:execute('INSERT INTO `players` (`identifier`, `accounts`, `job`, `grade`, `job2`, `grade2`) VALUES (@identifier, @accounts, @job, @grade, @job2, @grade2)', { - ['@identifier'] = playerIdentifier:getIdentifier(), - ['@name'] = playerName, - ['@job'] = unemployedJobs.id, - ['@grade'] = unemployedGrade.grade, - ['@job2'] = unemployedJobs.id, - ['@grade2'] = unemployedGrade.grade, - }) - - print(_(CR(), 'players', 'player_created', playerName)) - - return self:createPlayer(_player) - end - - local playerData = database:fetchAll('SELECT * FROM `players` WHERE `identifier` = @identifier LIMIT 1', { - ['@identifier'] = identifier - })[1] - - local job = jobs:getJob(playerData.job) - local grade = job:getGrade(playerData.grade) - local job2 = jobs:getJob(playerData.job2) - local grade2 = job2:getGrade(playerData.grade2) - - if (type(_player) ~= 'number') then - playerName = playerData.name - end - - player:set { - id = playerData.id, - identifier = identifier, - name = playerName, - job = job, - grade = grade, - job2 = job2, - grade2 = grade2, - wallets = {} - } - - local walletResults = {} - local wallets = m('wallets') - - for walletName, defaultBalance in pairs(Config.Wallets or {}) do - local wallet = wallets:getWallet(player.identifier, walletName) - - walletResults[wallet.name] = wallet - end - - player.wallets = walletResults - - function player:save() - local database = m('database') - - database:execute('UPDATE `players` SET `name` = @name, `job` = @job, `grade` = @grade, `job2` = @job2, `grade2` = @grade2 WHERE `identifier` = @identifier', { - ['@name'] = self.name, - ['@job'] = self.job.id, - ['@grade'] = self.grade.grade, - ['@job2'] = self.job2.id, - ['@grade2'] = self.grade2.grade, - ['@identifier'] = self.identifier - }) - end - - --- Set money for player wallet - --- @param name string wallet name - --- @param money number balace of wallet - function player:setWallet(name, money) - if (name == nil or type(name) ~= 'string') then name = 'unknown' end - if (money == nil or type(money) ~= 'number') then money = tonumber(money) or 0 end - - name = string.lower(name) - - if (self.wallets ~= nil and self.wallets[name] ~= nil) then - self.wallets[name]:setBalance(money) - end - end - - --- Remove money from player wallet - --- @param name string wallet name - --- @param money number amount of money to remove - function player:removeMoney(name, money) - if (name == nil or type(name) ~= 'string') then name = 'unknown' end - if (money == nil or type(money) ~= 'number') then money = tonumber(money) or 0 end - - name = string.lower(name) - - if (self.wallets ~= nil and self.wallets[name] ~= nil) then - self.wallets[name]:removeMoney(money) - end - end - - --- Add money to player wallet - --- @param name string wallet name - --- @param money number amount of money to add - function player:addMoney(name, money) - if (name == nil or type(name) ~= 'string') then name = 'unknown' end - if (money == nil or type(money) ~= 'number') then money = tonumber(money) or 0 end - - name = string.lower(name) - - if (self.wallets ~= nil and self.wallets[name] ~= nil) then - self.wallets[name]:addMoney(money) - end - end - - --- Change player's primary job - --- @param name string Job name - --- @param grade number Grade - function player:setJob(name, grade, cb) - if (name == nil or type(name) ~= 'string') then name = 'unknown' end - if (grade == nil or type(grade) ~= 'number') then grade = tonumber(grade) or 0 end - - local jobs = m('jobs') - local job = jobs:getJobByName(name) - - if (job == nil) then - if (cb ~= nil) then cb(false, _(CR(), 'players', 'job_empty_error')) end - return - end - - local jobGrade = job:getGrade(grade) - - if (jobGrade == nil) then - if (cb ~= nil) then cb(false, _(CR(), 'players', 'grade_empty_error')) end - return - end - - self.job = job - self.grade = jobGrade - - if (self.id ~= nil and self.id > 0) then - TCE('corev:players:setJob', self.id, self.job, self.grade) - end - - TSE('corev:players:setJob', self.identifier, self.job, self.grade) - - self:save() - - log(self.identifier, { - title = _(CR(), 'players', 'job_set_title', self.name), - color = Colors.Yellow, - message = _(CR(), 'players', 'job_set_message', self.name, self.job.name, self.grade.name, self.grade.grade), - args = { - job = self.job.name, - grade = self.grade.grade, - name = self.grade.name - }, - action = 'player.job.set' - }) - - if (cb ~= nil) then cb(true, '') end - end - - --- Change player's secondary job - --- @param name string Job name - --- @param grade number Grade - function player:setJob2(name, grade) - if (name == nil or type(name) ~= 'string') then name = 'unknown' end - if (grade == nil or type(grade) ~= 'number') then grade = tonumber(grade) or 0 end - - local jobs = m('jobs') - local job = jobs:getJobByName(name) - - if (job == nil) then - if (cb ~= nil) then cb(false, _(CR(), 'players', 'job_empty_error')) end - return - end - - local jobGrade = job:getGrade(grade) - - if (jobGrade == nil) then - if (cb ~= nil) then cb(false, _(CR(), 'players', 'grade_empty_error')) end - return - end - - self.job2 = job - self.grade2 = jobGrade - - if (self.id ~= nil and self.id > 0) then - TCE('corev:players:setJob2', self.id, self.job2, self.grade2) - end - - TSE('corev:players:setJob2', self.identifier, self.job2, self.grade2) - - self:save() - - log(self.identifier, { - title = _(CR(), 'players', 'job2_set_title', self.name), - color = Colors.Yellow, - message = _(CR(), 'players', 'job2_set_message', self.name, self.job2.name, self.grade2.name, self.grade2.grade), - args = { - job = self.job2.name, - grade = self.grade2.grade, - name = self.grade2.name - }, - action = 'player.job2.set' - }) - - if (cb ~= nil) then cb(true, '') end - end - - player:save() - - players.players[player.identifier] = player - - return player -end \ No newline at end of file diff --git a/modules/[player]/players/client/main.lua b/modules/[player]/players/client/main.lua deleted file mode 100644 index 0b2ed0e..0000000 --- a/modules/[player]/players/client/main.lua +++ /dev/null @@ -1,150 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local hud = class('hud') - -hud:set { - loaded = false, - status = { - health = 100, - thirst = 100, - hunger = 100, - armor = 100 - }, - oldStatus = { - health = 100, - thirst = 100, - hunger = 100, - armor = 100 - }, - hidden = false, - resourceName = GetCurrentResourceName() -} - -RegisterNUICallback('hud_loaded', function(data, cb) - TSE('corev:hud:init'); - - hud.loaded = true - - cb('ok') -end) - -onServerTrigger('corev:hud:updateJobs', function(job_name, job_grade, job2_name, job2_grade) - SendNUIMessage({ - action = 'UPDATE_JOB', - jobName = job_name, - jobGrade = job_grade, - __resource = hud.resourceName, - __module = 'hud' - }) - SendNUIMessage({ - action = 'UPDATE_JOB2', - jobName = job2_name, - jobGrade = job2_grade, - __resource = hud.resourceName, - __module = 'hud' - }) -end) - -onServerTrigger('corev:players:setJob', function(job, grade) - SendNUIMessage({ - action = 'UPDATE_JOB', - jobName = job.label, - jobGrade = grade.label, - __resource = hud.resourceName, - __module = 'hud' - }) -end) - -onServerTrigger('corev:players:setJob2', function(job, grade) - SendNUIMessage({ - action = 'UPDATE_JOB2', - jobName = job.label, - jobGrade = grade.label, - __resource = hud.resourceName, - __module = 'hud' - }) -end) - ---- Thread to manage game input -Citizen.CreateThread(function() - while true do - Citizen.Wait(100) - - if (hud.loaded) then - local shouldBeHidden = false - - if (IsScreenFadedOut() or IsPauseMenuActive()) then - shouldBeHidden = true - end - - if (hud.hidden ~= shouldBeHidden) then - hud.hidden = shouldBeHidden - - SendNUIMessage({ - action = 'CHANGE_STATE', - shouldHide = shouldBeHidden, - __resource = hud.resourceName, - __module = 'hud' - }) - end - - hud.oldStatus.health = hud.status.health + 0.0 - hud.oldStatus.thirst = hud.status.thirst + 0.0 - hud.oldStatus.hunger = hud.status.hunger + 0.0 - hud.oldStatus.armor = hud.status.armor + 0.0 - - hud.status.health = round((GetEntityHealth(PlayerPedId()) - 100), 0) + 0.0 - hud.status.thirst = 100 + 0.0 - hud.status.hunger = 100 + 0.0 - hud.status.armor = round(GetPedArmour(PlayerPedId())) + 0.0 - - if (hud.status.health ~= hud.oldStatus.health) then - SendNUIMessage({ - action = 'UPDATE_STATUS', - status = 'health', - value = hud.status.health, - __resource = hud.resourceName, - __module = 'hud' - }) - end - - if (hud.status.thirst ~= hud.oldStatus.thirst) then - SendNUIMessage({ - action = 'UPDATE_STATUS', - status = 'thirst', - value = hud.status.thirst, - __resource = hud.resourceName, - __module = 'hud' - }) - end - - if (hud.status.hunger ~= hud.oldStatus.hunger) then - SendNUIMessage({ - action = 'UPDATE_STATUS', - status = 'hunger', - value = hud.status.hunger, - __resource = hud.resourceName, - __module = 'hud' - }) - end - - if (hud.status.armor ~= hud.oldStatus.armor) then - SendNUIMessage({ - action = 'UPDATE_STATUS', - status = 'armor', - value = hud.status.armor, - __resource = hud.resourceName, - __module = 'hud' - }) - end - end - end -end) \ No newline at end of file diff --git a/modules/[player]/players/langs/nl.json b/modules/[player]/players/langs/nl.json deleted file mode 100644 index 61503f9..0000000 --- a/modules/[player]/players/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "player_created": "[CoreV][Players] Nieuwe spelers gejoined, account aangemaakt voor %s", - "job_empty_error": "U heeft een niet bestaande job opgegeven", - "grade_empty_error": "U heeft een niet bestaande grade opgegeven", - "job_set_title": "(1ste) Baan van %s is aangepast", - "job_set_message": "```SPELER: %s\n(1ste) BAAN: %s\nGRADE: %s(%s)```", - "job2_set_title": "(2de) Baan van %s is aangepast", - "job2_set_message": "```SPELER: %s\n(2de) BAAN: %s\nGRADE: %s(%s)```" -} \ No newline at end of file diff --git a/modules/[player]/players/migrations/0.sql b/modules/[player]/players/migrations/0.sql deleted file mode 100644 index a07ecf0..0000000 --- a/modules/[player]/players/migrations/0.sql +++ /dev/null @@ -1,11 +0,0 @@ -CREATE TABLE `players` ( - `id` INT AUTO_INCREMENT PRIMARY KEY, - `identifier` VARCHAR(50) NOT NULL, - `job` INT, - `grade` INT, - `job2` INT, - `grade2` INT, - CONSTRAINT `unique_identifier` UNIQUE (`identifier`), - CONSTRAINT `fk_job` FOREIGN KEY (`job`,`grade`) REFERENCES `job_grades`(`job_id`,`grade`), - CONSTRAINT `fk_job2` FOREIGN KEY (`job2`,`grade2`) REFERENCES `job_grades`(`job_id`,`grade`) -); \ No newline at end of file diff --git a/modules/[player]/players/migrations/1.sql b/modules/[player]/players/migrations/1.sql deleted file mode 100644 index bc7aca9..0000000 --- a/modules/[player]/players/migrations/1.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `players` ADD `name` VARCHAR(100) NOT NULL DEFAULT 'Unknown' AFTER `identifier`; \ No newline at end of file diff --git a/modules/[player]/players/module.json b/modules/[player]/players/module.json deleted file mode 100644 index 2d5fff0..0000000 --- a/modules/[player]/players/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV player module", - "server_scripts": [ - "server/main.lua", - "classes/player.lua" - ], - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "players" -} \ No newline at end of file diff --git a/modules/[player]/players/server/main.lua b/modules/[player]/players/server/main.lua deleted file mode 100644 index aca33ca..0000000 --- a/modules/[player]/players/server/main.lua +++ /dev/null @@ -1,71 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local players = class('players') - ---- Set default value -players:set { - players = {} -} - ---- Load a player ---- @param player int|string Player -function players:getPlayer(player) - local identifiers = m('identifiers') - local identifier = 'none' - - if (player == nil or (type(player) == 'number' and player == 0) or (type(player) == 'string' and player == 'console')) then - identifier = 'console' - elseif(player ~= nil and (type(player) == 'number' and player > 0)) then - identifier = identifiers:getIdentifier(player) - else - identifier = player - end - - if (identifier ~= 'none' and players.players ~= nil and players.players[identifier] ~= nil) then - return players.players[identifier] - end - - if (identifier == 'none') then - return nil - end - - return self:createPlayer(player) -end - ---- Trigger when player is connecting -on('playerConnecting', function(source, returnSuccess, returnError) - players:getPlayer(source) - - returnSuccess() -end) - ---- Trigger when player is connecting -on('playerConnected', function(source, returnSuccess, returnError) - local found, identifiers = false, m('identifiers') - local identifier = identifiers:getIdentifier(source) - - players:getPlayer(source) - - returnSuccess() -end) - -onClientTrigger('corev:hud:init', function() - local playerId = source - local player = players:getPlayer(playerId) - - TCE('corev:hud:updateJobs', playerId, - ((player.job or {}).label or 'Unknown'), - ((player.grade or {}).label or 'Unknown'), - ((player.job2 or {}).label or 'Unknown'), - ((player.grade2 or {}).label or 'Unknown')) -end) - -addModule('players', players) \ No newline at end of file diff --git a/modules/[player]/wallets/classes/wallet.lua b/modules/[player]/wallets/classes/wallet.lua deleted file mode 100644 index 7687f48..0000000 --- a/modules/[player]/wallets/classes/wallet.lua +++ /dev/null @@ -1,175 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- - ---- Returns if wallet exists and wallet default values ---- @param name string Wallet name -function wallets:getDefaultWallet(name) - if (name == nil or type(name) ~= 'string') then return false, 'unknown', 0 end - - for key, value in pairs(Config.Wallets or {}) do - if (key == string.lower(name)) then - return true, key, value - end - end - - return false, 'unknown', 0 -end - ---- Create a wallet object ---- @param source number Player ID ---- @param name string Wallet Name -function wallets:createWallet(identifier, name, balance) - --- Create a wallet object - local db = m('database') - local wallet = class('wallet') - local walletExists, walletName, walletDefaultBalance = self:getDefaultWallet(name) - - if (identifier == nil or not walletExists) then return nil end - if (identifier == 'none') then return nil end - - if (wallets.players ~= nil and wallets.players[identifier] ~= nil and wallets.players[identifier][walletName] ~= nil) then - return wallets.players[identifier][walletName] - end - - local playerId = db:fetchScalar('SELECT `id` FROM `players` WHERE `identifier` = @identifier LIMIT 1', { - ['@identifier'] = identifier - }) - - if (playerId == nil) then return nil end - - --- Set default wallet info - wallet:set { - identifier = identifier, - name = walletName, - balance = balance or walletDefaultBalance or 0, - playerId = playerId - } - - if (balance == nil) then - local walletBalance = db:fetchScalar('SELECT `balance` FROM `wallets` WHERE `name` = @name AND `player_id` = @player_id', { - ['@name'] = walletName, - ['@player_id'] = playerId - }) - - if (walletBalance == nil) then - db:execute('INSERT INTO `wallets` (`player_id`, `name`, `balance`) VALUES (@player_id, @name, @balance)', { - ['@player_id'] = playerId, - ['@name'] = walletName, - ['@balance'] = walletDefaultBalance - }) - - walletBalance = walletDefaultBalance - end - - wallet.balance = walletBalance - end - - --- Returns wallet balance - function wallet:getBalance() - return self.balance or 0 - end - - --- Add money to wallet balance - --- @param money number Amount of money - function wallet:addMoney(money) - if (money == nil) then money = 0 end - if (type(money) == 'string') then money = tonumber(money) end - if (type(money) ~= 'number') then money = 0 end - - money = round(money) - - if (money <= 0) then - return - end - - log(self.identifier, { - args = { - balance = self.balance, - amount = money, - name = self.name - }, - action = 'wallet.add' - }) - - self.balance = (self.balance + money) - self:save() - end - - --- Remove money from wallet balance - --- @param money number Amount of money - function wallet:removeMoney(money) - if (money == nil) then money = 0 end - if (type(money) == 'string') then money = tonumber(money) end - if (type(money) ~= 'number') then money = 0 end - - money = round(money) - - if (money <= 0) then - return - end - - log(self.identifier, { - args = { - balance = self.balance, - amount = money, - name = self.name - }, - action = 'wallet.remove' - }) - - self.balance = (self.balance - money) - self:save() - end - - --- Set wallet balance - --- @param money number Amount to set balance - function wallet:setBalance(money) - if (money == nil) then money = 0 end - if (type(money) == 'string') then money = tonumber(money) end - if (type(money) ~= 'number') then money = 0 end - - money = round(money) - - if (money <= 0) then - return - end - - log(self.identifier, { - args = { - balance = self.balance, - amount = money, - name = self.name - }, - action = 'wallet.set' - }) - - self.balance = money - self:save() - end - - --- Save wallet to database - function wallet:save() - local database = m('database') - - database:execute('UPDATE `wallets` SET `balance` = @balance WHERE `name` = @name AND `player_id` = @player_id', { - ['@balance'] = self.balance, - ['@name'] = self.name, - ['@player_id'] = self.playerId - }) - end - - if (wallets.players == nil) then wallets.players = {} end - if (wallets.players[identifier] == nil) then wallets.players[identifier] = {} end - - wallets.players[identifier][walletName] = wallet - - return wallet -end \ No newline at end of file diff --git a/modules/[player]/wallets/langs/nl.json b/modules/[player]/wallets/langs/nl.json deleted file mode 100644 index cf37047..0000000 --- a/modules/[player]/wallets/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "playerId": "ID van speler", - "wallet_name": "Naam van wallet", - "saldo": "Saldo op wallet", - "help_setwallet": "Zet een wallet van een speler op een bepaald saldo", - "help_addwallet": "Voeg geld toe aan een wallet van een speler", - "help_removewallet": "Haal geld van een wallet van een speler", - "invalid_playerId": "Speler id is niet geldig of speler is offline" -} \ No newline at end of file diff --git a/modules/[player]/wallets/migrations/0.sql b/modules/[player]/wallets/migrations/0.sql deleted file mode 100644 index aea0d99..0000000 --- a/modules/[player]/wallets/migrations/0.sql +++ /dev/null @@ -1,8 +0,0 @@ -CREATE TABLE `wallets` ( - `id` INT AUTO_INCREMENT PRIMARY KEY, - `player_id` INT, - `name` VARCHAR(50) NOT NULL, - `balance` INT NOT NULL DEFAULT 0, - CONSTRAINT `unique_player_wallet` UNIQUE (`player_id`,`name`), - CONSTRAINT `fk_player` FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) -); \ No newline at end of file diff --git a/modules/[player]/wallets/module.json b/modules/[player]/wallets/module.json deleted file mode 100644 index 11fd867..0000000 --- a/modules/[player]/wallets/module.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV wallets module", - "server_scripts": [ - "server/main.lua", - "classes/wallet.lua", - "server/commands.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "wallets" -} \ No newline at end of file diff --git a/modules/[player]/wallets/server/commands.lua b/modules/[player]/wallets/server/commands.lua deleted file mode 100644 index 21c67b8..0000000 --- a/modules/[player]/wallets/server/commands.lua +++ /dev/null @@ -1,92 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local commands = m('commands') - -commands:register('setwallet', { 'superadmin' }, function(source, arguments, showError) - local playerId = arguments.playerId or 0 - - if (playerId <= 0) then - showError(_(CR(), 'wallets', 'invalid_playerId')) - return - end - - local players = m('players') - local player = players:getPlayer(playerId) - - if (player == nil) then - showError(_(CR(), 'wallets', 'invalid_playerId')) - return - end - - player:setWallet(arguments.name, arguments.saldo) -end, true, { - help = _(CR(), 'wallets', 'help_setwallet'), - validate = true, - arguments = { - { name = 'playerId', help = _(CR(), 'wallets', 'playerId'), type = 'number' }, - { name = 'name', help = _(CR(), 'wallets', 'wallet_name'), type = 'string' }, - { name = 'saldo', help = _(CR(), 'wallets', 'saldo'), type = 'number' } - } -}) - -commands:register('addwallet', { 'superadmin' }, function(source, arguments, showError) - local playerId = arguments.playerId or 0 - - if (playerId <= 0) then - showError(_(CR(), 'wallets', 'invalid_playerId')) - return - end - - local players = m('players') - local player = players:getPlayer(playerId) - - if (player == nil) then - showError(_(CR(), 'wallets', 'invalid_playerId')) - return - end - - player:addMoney(arguments.name, arguments.saldo) -end, true, { - help = _(CR(), 'wallets', 'help_addwallet'), - validate = true, - arguments = { - { name = 'playerId', help = _(CR(), 'wallets', 'playerId'), type = 'number' }, - { name = 'name', help = _(CR(), 'wallets', 'wallet_name'), type = 'string' }, - { name = 'saldo', help = _(CR(), 'wallets', 'saldo'), type = 'number' } - } -}) - -commands:register('removewallet', { 'superadmin' }, function(source, arguments, showError) - local playerId = arguments.playerId or 0 - - if (playerId <= 0) then - showError(_(CR(), 'wallets', 'invalid_playerId')) - return - end - - local players = m('players') - local player = players:getPlayer(playerId) - - if (player == nil) then - showError(_(CR(), 'wallets', 'invalid_playerId')) - return - end - - player:removeMoney(arguments.name, arguments.saldo) -end, true, { - help = _(CR(), 'wallets', 'help_removewallet'), - validate = true, - arguments = { - { name = 'playerId', help = _(CR(), 'wallets', 'playerId'), type = 'number' }, - { name = 'name', help = _(CR(), 'wallets', 'wallet_name'), type = 'string' }, - { name = 'saldo', help = _(CR(), 'wallets', 'saldo'), type = 'number' } - } -}) \ No newline at end of file diff --git a/modules/[player]/wallets/server/main.lua b/modules/[player]/wallets/server/main.lua deleted file mode 100644 index 2801e11..0000000 --- a/modules/[player]/wallets/server/main.lua +++ /dev/null @@ -1,43 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local wallets = class('wallets') - ---- Set default value -wallets:set { - players = {} -} - ---- Load a player wallet ---- @param player int|string Player -function wallets:getWallet(player, name) - local identifiers = m('identifiers') - local identifier = 'none' - - if (player == nil or (type(player) == 'number' and player == 0) or (type(player) == 'string' and player == 'console')) then - identifier = 'console' - elseif(player ~= nil and (type(player) == 'number' and player > 0)) then - identifier = identifiers:getIdentifier(player) - else - identifier = player - end - - if (identifier ~= 'none' and wallets.players ~= nil and wallets.players[identifier] ~= nil and wallets.players[identifier][walletName] ~= nil) then - return wallets.players[identifier][walletName] - end - - if (identifier == 'none') then - return nil - end - - return self:createWallet(player, name) -end - -addModule('wallets', wallets) \ No newline at end of file diff --git a/resources/[jobs]/jobcenter/module.json b/resources/[jobs]/jobcenter/module.json deleted file mode 100644 index 95bf484..0000000 --- a/resources/[jobs]/jobcenter/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV jobcenter resource", - "client_scripts": [ - "client/main.lua" - ], - "server_scripts": [ - "config/server_config.lua", - "server/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "resource": "jobcenter" -} \ No newline at end of file diff --git a/resources/[jobs]/jobcenter/server/main.lua b/resources/[jobs]/jobcenter/server/main.lua deleted file mode 100644 index e69de29..0000000 diff --git a/resources/[jobs]/jobs/client/main.lua b/resources/[jobs]/jobs/client/main.lua deleted file mode 100644 index e69de29..0000000 diff --git a/resources/[jobs]/jobs/config/server_config.lua b/resources/[jobs]/jobs/config/server_config.lua deleted file mode 100644 index 2eb8f76..0000000 --- a/resources/[jobs]/jobs/config/server_config.lua +++ /dev/null @@ -1,23 +0,0 @@ -Config.Jobs = { - ['politie'] = { - ['WEAPON_SAFE'] = { - Allowed = { - 'surveillant', - 'agent', - 'hoofdagent', - 'brigadier', - 'inspecteur', - 'hoofdinspecteur', - 'commissaris', - 'hoofdcommissaris', - 'boss' - }, - Markers = { - vector3(451.53, -979.26, 29.7) -- police station blokkenpark - }, - Type = 1, - Size = vector3(1.5, 1.5, 0.5), - Color = '#00FF8B' - } - } -} \ No newline at end of file diff --git a/resources/[jobs]/jobs/migrations/0.sql b/resources/[jobs]/jobs/migrations/0.sql deleted file mode 100644 index 6057017..0000000 --- a/resources/[jobs]/jobs/migrations/0.sql +++ /dev/null @@ -1,11 +0,0 @@ -INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES ('politie', 'Politie', 1); -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 0 AS `grade`, 'aspirant' AS `name`, 'Aspirant' AS `label`, 500 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 1 AS `grade`, 'surveillant' AS `name`, 'Surveillant' AS `label`, 750 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 2 AS `grade`, 'agent' AS `name`, 'Agent' AS `label`, 1000 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 3 AS `grade`, 'hoofdagent' AS `name`, 'Hoofdagent' AS `label`, 1100 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 4 AS `grade`, 'brigadier' AS `name`, 'Brigadier' AS `label`, 1200 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 5 AS `grade`, 'inspecteur' AS `name`, 'Inspecteur' AS `label`, 1300 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 6 AS `grade`, 'hoofdinspecteur' AS `name`, 'Hoofdinspecteur' AS `label`, 1400 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 7 AS `grade`, 'commissaris' AS `name`, 'Commissaris' AS `label`, 1500 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 8 AS `grade`, 'hoofdcommissaris' AS `name`, 'Hoofdcommissaris' AS `label`, 1750 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; -INSERT INTO `job_grades` SELECT `id` AS `job_id`, 9 AS `grade`, 'boss' AS `name`, 'Eerste Hoofdcommissaris' AS `label`, 2000 AS `salary` FROM `jobs` WHERE `name` = 'politie' LIMIT 1; \ No newline at end of file diff --git a/resources/[jobs]/jobs/module.json b/resources/[jobs]/jobs/module.json deleted file mode 100644 index 047ef77..0000000 --- a/resources/[jobs]/jobs/module.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV jobs resource", - "client_scripts": [ - "client/main.lua" - ], - "server_scripts": [ - "config/server_config.lua", - "server/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "resource": "jobs" -} \ No newline at end of file diff --git a/resources/[jobs]/jobs/server/main.lua b/resources/[jobs]/jobs/server/main.lua deleted file mode 100644 index b3d3f58..0000000 --- a/resources/[jobs]/jobs/server/main.lua +++ /dev/null @@ -1,63 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local jobs = class('resource_jobs') - ---- Set defaults -jobs:set { - markers = m('markers') -} - -for jobName, job in pairs(Config.Jobs or {}) do - local name = 'unknown' - - if (jobName ~= nil and type(jobName) == 'string') then name = jobName end - - name = string.upper(name) - - for locationName, location in pairs(job or {}) do - local locName = 'unknown' - - if (locationName ~= nil and type(locationName) == 'string') then locName = locationName end - - locName = string.upper(locName) - - local markers = location.Markers or {} - - for _, marker in pairs(markers) do - local index = 0 - - if (_ ~= nil and type(_) == 'number') then index = _ end - - if (index >= 0 and index <= 9) then - index = ('0%s'):format(index) - elseif (index >= 10) then - index = ('%s'):format(index) - else - index = '00' - end - - jobs.markers:add(('%s_%s'):format(locName, index), - ('%s_%s'):format(name, locName), - { jobs = { - { name = name, grades = location.Allowed or {} } - }}, - location.Type or -1, - marker or vector3(0, 0, 0), - location.Size or vector3(1.5, 1.5, 0.5), - location.Color or '#FFFFFF', - { - location = marker or vector3(0, 0, 0), - index = tonumber(index), - name = locName - }) - end - end -end \ No newline at end of file diff --git a/resources/[shops]/shops/config/server_config.lua b/resources/[shops]/shops/config/server_config.lua deleted file mode 100644 index 520ff0c..0000000 --- a/resources/[shops]/shops/config/server_config.lua +++ /dev/null @@ -1,28 +0,0 @@ -Config.Shops = {} - -Config.ShopItems = { - { - name = 'bread', - label = _(CR(), 'shops', 'item_bread'), - weight = 0.05, - type = 'food' - }, - { - name = 'bottle_of_water_025', - label = _(CR(), 'shops', 'bottle_of_water_025'), - weight = 0.25, - type = 'drink' - }, - { - name = 'bottle_of_water_050', - label = _(CR(), 'shops', 'bottle_of_water_050'), - weight = 0.50, - type = 'drink' - }, - { - name = 'bottle_of_water_100', - label = _(CR(), 'shops', 'bottle_of_water_100'), - weight = 1.00, - type = 'drink' - } -} \ No newline at end of file diff --git a/resources/[shops]/shops/langs/nl.json b/resources/[shops]/shops/langs/nl.json deleted file mode 100644 index 9fc9ea9..0000000 --- a/resources/[shops]/shops/langs/nl.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "item_bread": "Brood", - "bottle_of_water_025": "Flesje water (0.25L)", - "bottle_of_water_050": "Flesje water (0.50L)", - "bottle_of_water_100": "Flesje water (1.00L)" -} \ No newline at end of file diff --git a/resources/[shops]/shops/module.json b/resources/[shops]/shops/module.json deleted file mode 100644 index e21d90e..0000000 --- a/resources/[shops]/shops/module.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV shops module", - "client_scripts": [ - ], - "server_scripts": [ - ], - "languages": { - "nl": "langs/nl.json" - }, - "module": "shops" -} \ No newline at end of file diff --git a/resources/parking/client/main.lua b/resources/parking/client/main.lua deleted file mode 100644 index e1ad670..0000000 --- a/resources/parking/client/main.lua +++ /dev/null @@ -1,107 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local resource_parking = class('resource_parking') - -resource_parking:set { - inMarker = false, - inMarkerEvent = nil, - currentMenu = nil, - currentEvent = nil, - currentMarker = nil, - currentSelectedVehicle = nil, - vehicles = {}, - keybinds = m('keybinds') -} - -on('marker:enter', 'parking:spawn:cars', function(marker) - local notifications = m('notifications') - - if (notifications ~= nil and resource_parking.currentEvent == nil) then - notifications:showHelpNotification(_(CR(), 'parking', 'press_e_to_spawn_vehicle')) - end - - resource_parking.inMarker = true - resource_parking.currentMarker = marker - resource_parking.inMarkerEvent = 'spawn:cars' -end) - -on('marker:leave', 'parking:spawn:cars', function() - resource_parking.inMarker = false - resource_parking.currentMarker = nil - resource_parking.inMarkerEvent = nil - - if (resource_parking.currentMenu ~= nil and resource_parking.currentMenu.isOpen) then - resource_parking.currentMenu:close() - end - - resource_parking.currentMenu = nil - resource_parking.currentEvent = nil -end) - ---- Loop to check if user pressed required key -Citizen.CreateThread(function() - while true do - Citizen.Wait(0) - - if (resource_parking.inMarker and resource_parking.currentEvent == nil) then - if (resource_parking.keybinds:isControlPressed('marker_trigger')) then - if (resource_parking.inMarkerEvent == 'spawn:cars') then - resource_parking:openParkingMenu() - end - - resource_parking.currentEvent = resource_parking.inMarkerEvent - end - elseif (not resource_parking.inMarker and resource_parking.currentMenu ~= nil) then - resource_parking.currentMenu:close() - resource_parking.currentMenu = nil - else - Citizen.Wait(250) - end - end -end) - ---- Spawn a vehicle on specified coords ---- @param code string|number Vehicle's spawn name or hash ---- @param vehicleInfo table Information about props etc. ---- @param coords vector3|table Information about cordinates ---- @param heading number direction to headidng vehicle -function resource_parking:spawnVehicle(code, vehicleInfo, coords, heading) - local done = false - local game = m('game') - local vehicleFound, closestVehicle = game:getClosestVehicle(coords, 5.0) - - if (vehicleFound and DoesEntityExist(closestVehicle)) then - local notifications = m('notifications') - - notifications:showNotification(_(CR(), 'parking', 'vehicle_blocking')) - return done - end - - game:spawnVehicle(code, coords, heading, function(vehicle) - local playerPed = PlayerPedId() - - SetVehicleEngineOn(vehicle, false, true, false) - TaskWarpPedIntoVehicle(playerPed, vehicle, -1) - - if (vehicleInfo ~= nil and type(vehicleInfo) == 'string') then vehicleInfo = json.decode(vehicleInfo) end - if (vehicleInfo == nil or type(vehicleInfo) ~= 'table' or not vehicleInfo) then vehicleInfo = {} end - - vehicleInfo.plate = resource_parking.currentSelectedVehicle.plate or vehicleInfo.plate or nil - - game:setVehicleProperties(vehicle, vehicleInfo, true) - - done = true - end) - - repeat Citizen.Wait(0) until done == true - - return done -end \ No newline at end of file diff --git a/resources/parking/client/menus/car.lua b/resources/parking/client/menus/car.lua deleted file mode 100644 index b91f7e9..0000000 --- a/resources/parking/client/menus/car.lua +++ /dev/null @@ -1,156 +0,0 @@ ---- Open car menu -function resource_parking:openParkingMenu() - local menus = m('menus') - - local menu, isNew = menus:create(('%s_parking'):format(CR()), 'spawn_cars', { - title = _(CR(), 'parking', 'parking'), - subtitle = _(CR(), 'parking', 'select_category') - }) - - if (menu) then - if (isNew) then - menu:registerEvent('open', function(_menu) - resource_parking.currentMenu = _menu - resource_parking.currentEvent = 'spawn:cars' - end) - - menu:registerEvent('close', function() - resource_parking.currentMenu = nil - resource_parking.currentEvent = nil - end) - - menu:registerEvent('submit', function(menu, selectedItem, menuInfo) - self:openParkingSpawnMenu(selectedItem, menu) - end) - end - - menu:clearItems() - - local vehicles = self:loadCars() - - repeat Wait(0) until vehicles ~= nil - - for brand, brandVehicles in pairs(vehicles or {}) do - local brandInfo = Config.Brands[brand] or {} - - menu:addItem({ prefix = #brandVehicles, label = brandInfo.label, description = _(CR(), 'parking', 'brand_description', #brandVehicles, brandInfo.label), image = brandInfo.logos.square_small, addon = brandInfo }) - end - - menu:open() - end -end - ---- Open submenu for parking when selected item ---- @param selectedItem table Selected item from previous menu ---- @param previousMenu menu Previous menu -function resource_parking:openParkingSpawnMenu(selectedItem, previousMenu) - if (selectedItem and resource_parking.currentMarker ~= nil) then - local menus = m('menus') - local selectedBrand = Config.Brands[selectedItem.addon.brand] or {} - local selectVehicleMenu, selectVehicleNew = menus:create(('%s_parking_select_%s'):format(CR(), selectedBrand.brand), 'select_spawn_cars', { - title = _(CR(), 'parking', 'parking'), - subtitle = _(CR(), 'parking', 'select_vehicle', selectedBrand.label) - }) - - if (selectVehicleMenu) then - if (selectVehicleNew) then - selectVehicleMenu:registerEvent('open', function(_menu) - resource_parking.currentMenu = _menu - resource_parking.currentEvent = 'spawn:cars' - end) - - selectVehicleMenu:registerEvent('close', function() - if (resource_parking.currentSelectedVehicle ~= nil) then - resource_parking.currentMenu = nil - resource_parking.currentEvent = nil - else - resource_parking.currentMenu = previousMenu - resource_parking.currentEvent = 'spawn:cars' - - previousMenu:open() - end - end) - - selectVehicleMenu:registerEvent('submit', function(menu, selectedItem, menuInfo) - if (selectedItem and resource_parking.currentMarker ~= nil) then - resource_parking.currentSelectedVehicle = selectedItem.addon - - menu:close() - - local spawn = ((self.currentMarker or {}).addon or {}).spawn - - if (spawn) then - local selectedVehicle = resource_parking.currentSelectedVehicle - local vehicleSpawned = self:spawnVehicle(selectedVehicle.code, selectedVehicle.vehicle, spawn, spawn.h) - - repeat Citizen.Wait(0) until vehicleSpawned == true or vehicleSpawned == false - - resource_parking.currentSelectedVehicle = nil - - if (not vehicleSpawned) then - menu:open() - end - else - local notifications = m('notifications') - - notifications:showNotification(_(CR(), 'parking', 'spawn_not_available')) - menu:open() - end - end - end) - end - - selectVehicleMenu:clearItems() - - local vehicles = self:loadCars() - - repeat Wait(0) until vehicles ~= nil - - local categoryVehicles = vehicles[selectedBrand.brand] - - for _, categoryVehicle in pairs(categoryVehicles or {}) do - local currentVehicle = Config.Vehicles[categoryVehicle.name] or {} - - selectVehicleMenu:addItem({ prefix = categoryVehicle.plate, label = currentVehicle.label, description = '', addon = categoryVehicle }) - end - - selectVehicleMenu:open() - end - end -end - ---- Load vehicles from cache or request all cars from databse -function resource_parking:loadCars() - if (self.vehicles ~= nil and self.vehicles['cars'] ~= nil) then - return self.vehicles['cars'] - end - - triggerServerCallback('corev:parking:loadCars', function(vehicles) - local cars = {} - - for _, vehicle in pairs(vehicles or {}) do - local vehicleInfo = Config.Vehicles[vehicle.name] or {} - - if (cars == nil) then cars = {} end - if (cars[vehicleInfo.brand] == nil) then cars[vehicleInfo.brand] = {} end - - table.insert(cars[vehicleInfo.brand], { - plate = vehicle.plate, - code = vehicle.name, - vehicle = vehicle.vehicle, - status = vehicle.status, - price = vehicle.price, - name = vehicle.name, - label = vehicle.label, - brand = Config.Brands[vehicleInfo.brand], - type = vehicleInfo.type - }) - end - - self.vehicles['cars'] = cars - end) - - repeat Citizen.Wait(0) until self.vehicles['cars'] ~= nil - - return self.vehicles['cars'] -end \ No newline at end of file diff --git a/resources/parking/config/server_config.lua b/resources/parking/config/server_config.lua deleted file mode 100644 index 055b5b8..0000000 --- a/resources/parking/config/server_config.lua +++ /dev/null @@ -1,45 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -Config.Markers = { - ['cars'] = { - ['spawn'] = { - type = 1, - color = '#00FF8B', - size = vector3(1.5, 1.5, 0.5) - }, - ['delete'] = { - type = 1, - color = '#FF3D33', - size = vector3(5.0, 5.0, 0.5) - } - } -} - -Config.Locations = { - ['BP_PARKING'] = { - type = 'cars', - location = vector3(215.93, -809.83, 29.74), - spawn = { x = 229.5, y = -798.46, z = 29.59, h = 162.5 }, - delete = vector3(227.02, -750.03, 29.82) - }, - ['PILLBOX_HILL_PARKING_01'] = { - type = 'cars', - location = vector3(-281.95, -890.83, 30.07), - spawn = { x = -282.32, y = -893.12, z = 30.07, h = 252.5 }, - delete = vector3(-278.88, -904.61, 30.07) - }, - ['PILLBOX_HILL_PARKING_02'] = { - type = 'cars', - location = vector3(-349.08, -877.07, 30.07), - spawn = { x = -348.79, y = -879.22, z = 30.07, h = 77.5 }, - delete = vector3(-360.52, -889.48, 30.07) - } -} \ No newline at end of file diff --git a/resources/parking/langs/nl.json b/resources/parking/langs/nl.json deleted file mode 100644 index e8c4063..0000000 --- a/resources/parking/langs/nl.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "select_category": "Selecteer voertuig merk", - "select_vehicle": "Selecteer een %s", - "parking": "Garage", - "brand_description": "Je hebt %s %s", - "press_e_to_spawn_vehicle": "Druk op ~INPUT_48D10012~ om een voertuig uit je garage te halen", - "vehicle_blocking": "U kunt uw voertuig niet pakken aangezien een auto de weg aan het blokkeren is", - "spawn_not_available": "U kunt deze locatie niet gebruiken om uw voertuig te pakken" -} \ No newline at end of file diff --git a/resources/parking/migrations/0.sql b/resources/parking/migrations/0.sql deleted file mode 100644 index b52ae5a..0000000 --- a/resources/parking/migrations/0.sql +++ /dev/null @@ -1,9 +0,0 @@ -CREATE TABLE `player_vehicles` ( - `id` INT AUTO_INCREMENT PRIMARY KEY, - `player_id` INT, - `plate` VARCHAR(10) NOT NULL, - `name` VARCHAR(100) NOT NULL, - `vehicle` LONGTEXT NOT NULL, - CONSTRAINT `unique_player_vehicles_place` UNIQUE (`plate`), - CONSTRAINT `fk_player_vehicles_player` FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) -); \ No newline at end of file diff --git a/resources/parking/migrations/1.sql b/resources/parking/migrations/1.sql deleted file mode 100644 index 34112d1..0000000 --- a/resources/parking/migrations/1.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `player_vehicles` ADD `brand` VARCHAR(100) NOT NULL DEFAULT 'unknown' AFTER `name`; \ No newline at end of file diff --git a/resources/parking/migrations/2.sql b/resources/parking/migrations/2.sql deleted file mode 100644 index 2ad454c..0000000 --- a/resources/parking/migrations/2.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `player_vehicles` ADD `type` VARCHAR(10) NOT NULL DEFAULT 'car' AFTER `name`; \ No newline at end of file diff --git a/resources/parking/module.json b/resources/parking/module.json deleted file mode 100644 index fa2e9fb..0000000 --- a/resources/parking/module.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV parking resource", - "client_scripts": [ - "client/main.lua", - "client/menus/car.lua" - ], - "server_scripts": [ - "config/server_config.lua", - "server/main.lua", - "server/callbacks.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "resource": "parking" -} \ No newline at end of file diff --git a/resources/parking/server/callbacks.lua b/resources/parking/server/callbacks.lua deleted file mode 100644 index f4807fa..0000000 --- a/resources/parking/server/callbacks.lua +++ /dev/null @@ -1,38 +0,0 @@ ---- Load player's cars -registerCallback('corev:parking:loadCars', function(source, cb, category) - while not resource.tasks.frameworkLoaded do - Citizen.Wait(0) - end - - local database = m('database') - local players = m('players') - - local player = players:getPlayer(source) - - if (player ~= nil) then - database:fetchAllAsync('SELECT * FROM `player_vehicles` WHERE `player_id` = @playerId AND `type` = @type ORDER BY `brand` ASC', { - ['@playerId'] = player.id, - ['@type'] = 'car' - }, function(results) - local vehicles = {} - - if (results == nil or type(results) ~= 'table' or #results <= 0) then - cb(vehicles) - return - end - - for _, vehicle in pairs(results or {}) do - table.insert(vehicles, { - plate = vehicle.plate, - name = vehicle.name, - vehicle = vehicle.vehicle, - status = 1 - }) - end - - cb(vehicles) - end) - else - cb({}) - end -end) \ No newline at end of file diff --git a/resources/parking/server/main.lua b/resources/parking/server/main.lua deleted file mode 100644 index cb72185..0000000 --- a/resources/parking/server/main.lua +++ /dev/null @@ -1,112 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local parking = class('parking') - ---- Set default values -parking:set { - locations = { - } -} - ---- Load all location -for parkingName, parkingInfo in pairs(Config.Locations or {}) do - if (parkingInfo.type == nil or type(parkingInfo.type) ~= 'string') then - parkingInfo.type = 'cars' - end - - --- Make sure that type = cars, planes or boats - if (string.lower(parkingInfo.type) == 'cars' or string.lower(parkingInfo.type) == 'car') then - parkingInfo.type = 'cars' - elseif (string.lower(parkingInfo.type) == 'planes' or string.lower(parkingInfo.type) == 'plane') then - parkingInfo.type = 'planes' - elseif (string.lower(parkingInfo.type) == 'boats' or string.lower(parkingInfo.type) == 'boat') then - parkingInfo.type = 'boats' - else - parkingInfo.type = 'cars' - end - - --- Make sure that location has a location - if (parkingInfo.location ~= nil and type(parkingInfo.location) == 'vector3') then - parkingInfo.location = parkingInfo.location - elseif (parkingInfo.location ~= nil and type(parkingInfo.location) == 'table') then - parkingInfo.location = vector3( - parkingInfo.location.x or 0.0, - parkingInfo.location.y or 0.0, - parkingInfo.location.z or 0.0 - ) - else - parkingInfo.location = vector3(0.0, 0.0, 0.0) - end - - --- Make sure that spawn has a location - if (parkingInfo.spawn ~= nil and type(parkingInfo.spawn) == 'vector3') then - parkingInfo.spawn = { - x = parkingInfo.location.x, - y = parkingInfo.location.y, - z = parkingInfo.location.z, - h = 0.0 } - elseif (parkingInfo.spawn ~= nil and type(parkingInfo.spawn) == 'table') then - parkingInfo.spawn = { - x = parkingInfo.spawn.x or 0.0, - y = parkingInfo.spawn.y or 0.0, - z = parkingInfo.spawn.z or 0.0, - h = parkingInfo.spawn.h or 0.0 - } - else - parkingInfo.spawn = { x = 0.0, y = 0.0, z = 0.0, h = 0.0 } - end - - --- Make sure that delete has a location - if (parkingInfo.delete ~= nil and type(parkingInfo.delete) == 'vector3') then - parkingInfo.delete = parkingInfo.delete - elseif (parkingInfo.delete ~= nil and type(parkingInfo.delete) == 'table') then - parkingInfo.delete = vector3( - parkingInfo.delete.x or 0.0, - parkingInfo.delete.y or 0.0, - parkingInfo.delete.z or 0.0 - ) - else - parkingInfo.delete = vector3(0.0, 0.0, 0.0) - end - - parkingInfo.addonInfo = { - name = parkingName or 'unknown', - spawn = parkingInfo.spawn or { x = 0.0, y = 0.0, z = 0.0, h = 0.0 }, - delete = parkingInfo.delete or { x = 0.0, y = 0.0, z = 0.0, h = 0.0 } - } - - parking.locations[parkingName] = parkingInfo -end - -local markers = m('markers') - ---- Create a marker for each location -for parkingName, parkingInfo in pairs(parking.locations or {}) do - --- Add spawn marker - markers:add(('parking.%s.%s'):format('spawn', parkingName), - ('parking:spawn:%s'):format(parkingInfo.type), - parking.permissions or { groups = { 'all' }, jobs = { 'all' } }, - Config.Markers[parkingInfo.type]['spawn'].type, - parkingInfo.location, - Config.Markers[parkingInfo.type]['spawn'].size, - Config.Markers[parkingInfo.type]['spawn'].color, - parkingInfo.addonInfo or {}) - - --- Add delete marker - markers:add(('parking.%s.%s'):format('delete', parkingName), - ('parking:delete:%s'):format(parkingInfo.type), - parking.permissions or { groups = { 'all' }, jobs = { 'all' } }, - Config.Markers[parkingInfo.type]['delete'].type, - parkingInfo.delete, - Config.Markers[parkingInfo.type]['delete'].size, - Config.Markers[parkingInfo.type]['delete'].color, - parkingInfo.addonInfo or {}) -end \ No newline at end of file diff --git a/resources/vehicleinteraction/client/main.lua b/resources/vehicleinteraction/client/main.lua deleted file mode 100644 index 5ddb940..0000000 --- a/resources/vehicleinteraction/client/main.lua +++ /dev/null @@ -1,36 +0,0 @@ -onFrameworkStarted(function() - local wheels, vehicleSelectionWheel, wheelCreated = m('wheels'), nil, false - - on('raycast:type', 'vehicle', function(entity, coords) - vehicleSelectionWheel, wheelCreated = wheels:create('interaction', 'vehicle') - - if (wheelCreated) then - vehicleSelectionWheel:addItem({ - icon = 'fa-lightbulb-on', - lib = 'far', - addon = { action = 'light_on' } - }) - - vehicleSelectionWheel:addItem({ - icon = 'fa-lightbulb-slash', - lib = 'far', - addon = { action = 'light_off' } - }) - - vehicleSelectionWheel:registerEvent('submit', function(wheel, selectedItem) - local addon = wheel:getAddon() - local itemAddon = selectedItem.addon or {} - - if (itemAddon.action == 'light_on') then - SetVehicleLights(addon.entity, 2) - elseif (itemAddon.action == 'light_off') then - SetVehicleLights(addon.entity, 1) - end - end) - end - - vehicleSelectionWheel:setAddon({ entity = entity }) - - wheels:open('interaction', 'vehicle', true) - end) -end) \ No newline at end of file diff --git a/resources/vehicleinteraction/module.json b/resources/vehicleinteraction/module.json deleted file mode 100644 index 11f4abb..0000000 --- a/resources/vehicleinteraction/module.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "fx_version": "adamant", - "game": [ "gta5" ], - "description": "CoreV vehicleinteraction resource", - "client_scripts": [ - "client/main.lua" - ], - "languages": { - "nl": "langs/nl.json" - }, - "resource": "vehicleinteraction" -} \ No newline at end of file diff --git a/server/functions.lua b/server/functions.lua deleted file mode 100644 index e4611c4..0000000 --- a/server/functions.lua +++ /dev/null @@ -1,67 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- - ---- Returns a webhook by action ---- @param action string Action ---- @param fallback string fallback webhook -local function getWebhooks(action, fallback) - action = string.lower(action or 'none') - - if (Config.Webhooks ~= nil and Config.Webhooks[action] ~= nil) then - return Config.Webhooks[action] - end - - local actionParts = split(action, '.') - - table.remove(actionParts, #actionParts) - - if (actionParts ~= nil and #actionParts > 0) then - local newAction = '' - - for i = 1, #actionParts, 1 do - if (i == 1) then - newAction = actionParts[i] - else - newAction = newAction .. '.' .. actionParts[i] - end - end - - return getWebhooks(newAction) - end - - if (fallback ~= nil and fallback) then - return Config.FallbackWebhook - end - - return nil -end - ---- Log a event with module `logs` ---- @param player int|string Player ---- @param object array Log info ---- @param fallback string|boolean Use fallback -local function log(player, object, fallback) - local logs = m('logs') - - if (logs == nil) then return end - - local playerLogObject = logs:get(player) - - if (playerLogObject == nil) then return end - - playerLogObject:log(object or {}, (fallback or false)) -end - --- FiveM maniplulation -_ENV.getWebhooks = getWebhooks -_G.getWebhooks = getWebhooks -_ENV.log = log -_G.log = log \ No newline at end of file diff --git a/server/libs/callbacks.lua b/server/libs/callbacks.lua deleted file mode 100644 index 5d6c856..0000000 --- a/server/libs/callbacks.lua +++ /dev/null @@ -1,55 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -local callbacks = class('callbacks') - ---- Set default value -callbacks:set { - callbacks = {} -} - ---- Register server callback ---- @name string Event name ---- @cb function callback function -function callbacks:registerCallback(name, cb) - self.callbacks[name] = cb -end - ---- Trigger server callback by name ---- @name string Event name ---- @source int PlayerID ---- @cb function callback function -function callbacks:triggerCallback(name, source, cb, ...) - if (self.callbacks ~= nil and self.callbacks[name] ~= nil) then - self.callbacks[name](source, cb, ...) - end -end - ---- When client trigger this event -onClientTrigger('corev:triggerServerCallback', function(name, requestId, ...) - local source = source or -1 - local params = table.pack(...) - - Citizen.CreateThread(function() - if (type(source) == 'string') then source = tostring(source) end - if (type(source) ~= 'number') then source = -1 end - - callbacks:triggerCallback(name, source, function(...) - TCE('corev:triggerCallback', source, requestId, ...) - end, table.unpack(params)) - end) -end) - ---- FiveM manipulation -_ENV.registerCallback = function(name, cb) callbacks:registerCallback(name, cb) end -_G.registerCallback = function(name, cb) callbacks:registerCallback(name, cb) end - ---- Regsiter callbacks as module -addModule('callbacks', callbacks) \ No newline at end of file diff --git a/server/libs/compiler.lua b/server/libs/compiler.lua deleted file mode 100644 index 739502c..0000000 --- a/server/libs/compiler.lua +++ /dev/null @@ -1,827 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -compiler = class('compiler') - ---- Default values -compiler:set { - externalResources = {}, - internalResources = {}, - internalModules = {} -} - ---- Returns a list of files of given path ---- @param path string Path -function compiler:getPathFiles(path) - local results = {} - - if ((string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') and path ~= nil) then - for _file in io.popen(('dir "%s" /b'):format(path)):lines() do - table.insert(results, _file) - end - elseif ((string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') and path ~= nil) then - local callit = os.tmpname() - - os.execute("ls ".. path .. " | grep -v / >"..callit) - - local f = io.open(callit,"r") - local rv = f:read("*a") - - f:close() - os.remove(callit) - - local from = 1 - local delim_from, delim_to = string.find( rv, "\n", from ) - - while delim_from do - table.insert( results, string.sub( rv, from , delim_from-1 ) ) - from = delim_to + 1 - delim_from, delim_to = string.find( rv, "\n", from ) - end - end - - return results -end - ---- Generates and load framework meta files -function compiler:loadCurrentResourceManifest() - local manifest = class('framework-manifest') - - --- Set default values - manifest:set { - name = GetCurrentResourceName(), - files = {}, - clients = {} - } - - --- Load all required client files - for i = 0, GetNumResourceMetadata(manifest.name, 'corevclient'), 1 do - local file = GetResourceMetadata(manifest.name, 'corevclient', i) - - if (file ~= nil) then - local _file = string.trim(file) - - _file = string.replace(_file, '\\', '/') - _file = string.replace(_file, '//', '/') - _file = string.replace(_file, '**', '.*') - _file = string.replace(_file, '/*.', '.*/*.') - - table.insert(manifest.clients, _file) - end - end - - --- Load all required files - for i = 0, GetNumResourceMetadata(manifest.name, 'corevfile'), 1 do - local file = GetResourceMetadata(manifest.name, 'corevfile', i) - - if (file ~= nil) then - local _file = string.trim(file) - - _file = string.replace(_file, '\\', '/') - _file = string.replace(_file, '//', '/') - _file = string.replace(_file, '**', '.*') - _file = string.replace(_file, '/*.', '.*/*.') - - table.insert(manifest.files, _file) - end - end - - return manifest -end - ---- Returns a list with all the files in current resource -function compiler:loadCurrentResourceFileStructure() - local internalPath = GetResourcePath(GetCurrentResourceName()) - internalPath = internalPath:gsub('//', '/') - - local manifest = class('framework-structure') - - --- Set default values - manifest:set { - name = GetCurrentResourceName(), - structures = {} - } - - local structures = {} - - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - for file in io.popen(('dir "%s" /b /S'):format(internalPath)):lines() do - local _file = string.trim(file) - - _file = _file:gsub('\\', '/') - _file = _file:gsub('//', '/') - _file = _file:sub(internalPath:len() + 2, _file:len()) - - table.insert(structures, _file) - end - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - local callit = os.tmpname() - - os.execute(('find %s -print > %s'):format(internalPath, callit)) - - local f = io.open(callit,"r") - local rv = f:read("*a") - - f:close() - os.remove(callit) - - local from = 1 - local delim_from, delim_to = string.find(rv, "\n", from) - - while delim_from do - local _file = string.trim(string.sub(rv, from , delim_from-1)) - - _file = _file:gsub('\\', '/') - _file = _file:gsub('//', '/') - _file = _file:sub(internalPath:len() + 2, _file:len()) - - table.insert(structures, _file) - - from = delim_to + 1 - delim_from, delim_to = string.find(rv, "\n", from) - end - end - - for _, structure in pairs(structures or {}) do - local ignoreFile = false - - if (string.startswith(string.trim(structure), '.')) then - ignoreFile = true - elseif (string.startswith(string.trim(structure), 'cache')) then - ignoreFile = true - end - - if (not ignoreFile) then - table.insert(manifest.structures, structure) - end - end - - return manifest -end - ---- Filter all filestructures files based on framework manifest ---- @param frameworkManifest framework-manifest Framework's Manifest ---- @param fileStructures framework-structure Framework's File Strcuture -function compiler:filterAllResourceFiles(frameworkManifest, fileStructures) - local allClientFiles = {} - - for _, structure in pairs(fileStructures.structures or {}) do - local _hasMatch = false - - for _, clientFile in pairs(frameworkManifest.clients or {}) do - local _match = string.find(structure, clientFile) - - if (_match ~= nil and _match == 1) then - _hasMatch = true - break - end - end - - if (_hasMatch) then - table.insert(allClientFiles, structure) - else - _hasMatch = false - - for _, clientFile in pairs(frameworkManifest.files or {}) do - local _match = string.find(structure, clientFile) - - if (_match ~= nil and _match == 1) then - _hasMatch = true - break - end - end - - if (_hasMatch) then - table.insert(allClientFiles, structure) - end - end - end - - return allClientFiles -end - ---- Returns a path type: directory or file ---- @param path string Path to check -function compiler:pathType(path) - path = string.replace(path, '\\', '/') - path = string.replace(path, '//', '/') - - local pathInfo = string.split(path, '/') or {} - - if (#pathInfo <= 0) then - return 'unknown' - end - - if (string.find(pathInfo[#pathInfo], '.', 1, true) and not string.startswith(pathInfo[#pathInfo], '.')) then - return 'file' - end - - return 'directory' -end - ---- Create a directory if not exists -function compiler:createDirectoryIfNotExists(path) - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - path = string.replace(path, '//', '/') - path = string.replace(path, '/', '\\') - path = string.replace(path, '\\\\', '\\') - - os.execute(('md "%s"'):format(path)) - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - path = string.replace(path, '\\\\', '\\') - path = string.replace(path, '\\', '/') - path = string.replace(path, '//', '/') - - os.execute(('mkdir -p %s'):format(path)) - end -end - ---- Generates and compiles a resource folder -function compiler:generateResource() - local done = false - - Citizen.CreateThread(function() - local clientResourceFound = false - local clientResourceName = ('%s_client'):format(GetCurrentResourceName()) - local internalPath = GetResourcePath(GetCurrentResourceName()) - - local internalPathParent = internalPath:gsub('%/' .. GetCurrentResourceName(), '/') - internalPathParent = internalPathParent:gsub('%\\' .. GetCurrentResourceName(), '\\') - - local clientResourcePath = internalPath:gsub('%/' .. GetCurrentResourceName(), ('/%s'):format(clientResourceName)) - clientResourcePath = clientResourcePath:gsub('%\\' .. GetCurrentResourceName(), ('\\%s'):format(clientResourceName)) - - for _, directory in pairs(self:getPathFiles(internalPathParent) or {}) do - if (directory ~= nil and string.lower(directory) == clientResourceName) then - clientResourceFound = true - break - end - end - - if (clientResourceFound) then - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_deleting_resource', clientResourceName)) - - if ((string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') and clientResourcePath ~= nil) then - os.execute(('rmdir /s /q "%s"'):format(clientResourcePath)) - elseif ((string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') and clientResourcePath ~= nil) then - os.execute(('rm --recursive %s'):format(clientResourcePath)) - end - end - - local frameworkManifest = self:loadCurrentResourceManifest() - local fileStructure = self:loadCurrentResourceFileStructure() - local publicFiles = self:filterAllResourceFiles(frameworkManifest, fileStructure) - local frameworkPath = internalPath - local frameworkClientPath = clientResourcePath - local pathsCreated = {} - - if (not string.endswith(frameworkPath, '/')) then frameworkPath = frameworkPath .. '/' end - if (not string.endswith(frameworkClientPath, '/')) then frameworkClientPath = frameworkClientPath .. '/' end - - local asyncTaskDone = false - local async = m('async') - - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_generate_folder_structure', clientResourceName)) - - --- Create all required directories - async:parallel(function(file, cb) - local currentFileLocation = frameworkPath .. file - local newFileLocation = frameworkClientPath .. file - - currentFileLocation = string.replace(currentFileLocation, '\\\\', '\\') - currentFileLocation = string.replace(currentFileLocation, '\\', '/') - currentFileLocation = string.replace(currentFileLocation, '//', '/') - newFileLocation = string.replace(newFileLocation, '\\\\', '\\') - newFileLocation = string.replace(newFileLocation, '\\', '/') - newFileLocation = string.replace(newFileLocation, '//', '/') - - local filePathInfo = string.split(file, '/') - local currentFilePath = nil - - compiler:createDirectoryIfNotExists(clientResourcePath) - - for _, pathInfo in pairs(filePathInfo or {}) do - if (currentFilePath == nil and string.find(pathInfo, '.', 1, true) == nil) then - currentFilePath = pathInfo - elseif (self:pathType(currentFilePath .. '/' .. pathInfo) == 'directory' and not (string.find(pathInfo, '.', 1, true) or false)) then - currentFilePath = currentFilePath .. '/' .. pathInfo - else - break - end - end - - if (pathsCreated[currentFilePath] == nil) then - pathsCreated[currentFilePath] = currentFilePath - - if (not (string.find(frameworkClientPath .. currentFilePath, '.', 1, true) or false)) then - compiler:createDirectoryIfNotExists(frameworkClientPath .. currentFilePath) - end - end - - cb() - end, publicFiles, function() - asyncTaskDone = true - end) - - repeat Citizen.Wait(0) until asyncTaskDone == true - - self:generateExecutables(frameworkPath, frameworkClientPath, publicFiles) - self:generateStreamFolder(frameworkPath, frameworkClientPath, fileStructure) - self:refreshClientResource() - - done = true - end) - - repeat Wait(0) until done == true - - resource.tasks.compileFramework = true -end - -function compiler:matchStreamFolder(streamFiles, prefix, name, streamFileStructure, fileStructures) - if (streamFileStructure ~= nil and #streamFileStructure > 0) then - local allStreamFiles = {} - - for _, structure in pairs(fileStructures.structures or {}) do - local _hasMatch = false - - for _, streamFile in pairs(streamFileStructure or {}) do - local file = ('**/%s/%s'):format(name, streamFile) - - file = string.replace(file, '\\', '/') - file = string.replace(file, '//', '/') - file = string.replace(file, '**', '.*') - file = string.replace(file, '/*.', '.*/*.') - - local _match = string.find(structure, file) - - if (_match ~= nil and _match == 1) then - _hasMatch = true - break - end - end - - if (_hasMatch) then - table.insert(allStreamFiles, structure) - end - end - - streamFiles[('%s_%s'):format(prefix, name)] = allStreamFiles - end - - return streamFiles or {} -end - -function compiler:generateStreamFolder(frameworkPath, clientPath, fileStructures) - self:createDirectoryIfNotExists(('%s/stream'):format(clientPath)) - - local streamFiles, taskDone, async = {}, false, m('async') - - for _, internalModule in pairs(resource.internalModules or {}) do - if (internalModule.enabled and internalModule.manifest ~= nil and type(internalModule.manifest) == 'manifest') then - local streamFileStructure = internalModule.manifest:getValue('streams') or {} - - streamFiles = self:matchStreamFolder(streamFiles, '01', internalModule.name, streamFileStructure, fileStructures) - end - end - - for _, internalResource in pairs(resource.internalResources or {}) do - if (internalResource.enabled and internalResource.manifest ~= nil and type(internalResource.manifest) == 'manifest') then - local streamFileStructure = internalResource.manifest:getValue('streams') or {} - - streamFiles = self:matchStreamFolder(streamFiles, '02', internalResource.name, streamFileStructure, fileStructures) - end - end - - for _, externalResource in pairs(resource.externalResources or {}) do - if (externalResource.enabled and externalResource.manifest ~= nil and type(externalResource.manifest) == 'manifest') then - local streamFileStructure = externalResource.manifest:getValue('streams') or {} - - streamFiles = self:matchStreamFolder(streamFiles, '03', externalResource.name, streamFileStructure, fileStructures) - end - end - - async:parallel(function(files, cb, folderName) - for _, file in pairs(files or {}) do - local frameworkFilePath = ('%s/%s'):format(frameworkPath, file) - - local filePath = string.split(file, '/') or {} - - if (#filePath <= 0) then cb() break; end - - local filename = filePath[#filePath] - local frameworkClientFilePath = ('%s/stream/%s/%s'):format(clientPath, folderName, filename) - local frameworkClientPath = ('%s/stream/%s'):format(clientPath, folderName) - - self:createDirectoryIfNotExists(frameworkClientPath) - - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkFilePath = string.replace(frameworkFilePath, '/', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '/', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - - os.execute(('echo Y|COPY /-y "%s" "%s"'):format(frameworkFilePath, frameworkClientFilePath)) - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\', '/') - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - - os.execute(('cp -r %s %s'):format(frameworkFilePath, frameworkClientFilePath)) - end - end - - cb() - end, streamFiles, function() - taskDone = true - end) - - repeat Wait(0) until taskDone == true -end - ---- Generate executables for corev_client ---- @param frameworkPath string Framework path ---- @param clientPath string CoreV client path ---- @param publicFiles table List of all public files -function compiler:generateExecutables(frameworkPath, clientPath, publicFiles) - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_copy_files', GetCurrentResourceName(), GetCurrentResourceName() .. '_client')) - - local enabledInternalModules = {} - local additionalClientFiles = {} - local addedModules = {} - local async = m('async') - local asyncDone = { - ['internalModule'] = false, - ['internalResource'] = false, - ['publicFile'] = false - } - - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevmodule'), 1 do - local _module = GetResourceMetadata(GetCurrentResourceName(), 'corevmodule', i) - - if (_module ~= nil and type(_module) == 'string') then - table.insert(enabledInternalModules, string.lower(_module)) - end - end - - for _, internalModuleName in pairs(enabledInternalModules or {}) do - addedModules[internalModuleName] = true - - table.insert(additionalClientFiles, ('client/%s_module_client.lua'):format(internalModuleName)) - end - - async:parallel(function(internalModule, cb) - local internalModuleName = internalModule.name - - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - local frameworkFilePath = ('%s/debug/internal_modules/client/%s_client.lua'):format(frameworkPath, internalModuleName) - local frameworkClientFilePath = ('%s/client/%s_module_client.lua'):format(clientPath, internalModuleName) - - if (addedModules[internalModuleName] == nil) then - table.insert(additionalClientFiles, ('client/%s_module_client.lua'):format(internalModuleName)) - end - - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkFilePath = string.replace(frameworkFilePath, '/', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '/', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - - os.execute(('echo Y|COPY /-y "%s" "%s"'):format(frameworkFilePath, frameworkClientFilePath)) - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - local frameworkFilePath = ('%s/debug/internal_modules/client/%s_client.lua'):format(frameworkPath, internalModuleName) - local frameworkClientFilePath = ('%s/client/%s_module_client.lua'):format(clientPath, internalModuleName) - - if (addedModules[internalModuleName] == nil) then - table.insert(additionalClientFiles, ('client/%s_module_client.lua'):format(internalModuleName)) - end - - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\', '/') - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - - os.execute(('cp -r %s %s'):format(frameworkFilePath, frameworkClientFilePath)) - end - - cb() - end, resource.internalModules, function() - asyncDone['internalModule'] = true - end) - - repeat Wait(0) until asyncDone['internalModule'] == true - - async:parallel(function(internalResource, cb) - local internalResourceName = internalResource.name - - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - local frameworkFilePath = ('%s/debug/internal_resources/client/%s_client.lua'):format(frameworkPath, internalResourceName) - local frameworkClientFilePath = ('%s/client/%s_resource_client.lua'):format(clientPath, internalResourceName) - - table.insert(additionalClientFiles, ('client/%s_resource_client.lua'):format(internalResourceName)) - - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkFilePath = string.replace(frameworkFilePath, '/', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '/', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - - os.execute(('echo Y|COPY /-y "%s" "%s"'):format(frameworkFilePath, frameworkClientFilePath)) - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - local frameworkFilePath = ('%s/debug/internal_resources/client/%s_client.lua'):format(frameworkPath, internalResourceName) - local frameworkClientFilePath = ('%s/client/%s_resource_client.lua'):format(clientPath, internalResourceName) - - table.insert(additionalClientFiles, ('client/%s_resource_client.lua'):format(internalResourceName)) - - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\', '/') - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - - os.execute(('cp -r %s %s'):format(frameworkFilePath, frameworkClientFilePath)) - end - - cb() - end, resource.internalResources, function() - asyncDone['internalResource'] = true - end) - - repeat Wait(0) until asyncDone['internalResource'] == true - - async:parallel(function(publicFile, cb) - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - local frameworkFilePath = ('%s/%s'):format(frameworkPath, publicFile) - local frameworkClientFilePath = ('%s/%s'):format(clientPath, publicFile) - - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkFilePath = string.replace(frameworkFilePath, '/', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '/', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - - os.execute(('echo Y|COPY /-y "%s" "%s"'):format(frameworkFilePath, frameworkClientFilePath)) - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - local frameworkFilePath = ('%s/%s'):format(frameworkPath, publicFile) - local frameworkClientFilePath = ('%s/%s'):format(clientPath, publicFile) - - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\', '/') - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - - os.execute(('cp -r %s %s'):format(frameworkFilePath, frameworkClientFilePath)) - end - - cb() - end, publicFiles, function() - asyncDone['publicFile'] = true - end) - - repeat Wait(0) until asyncDone['publicFile'] == true - - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_fxmanifest', GetCurrentResourceName() .. '_client')) - - --- - local fxManifestTemplate = [[ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -fx_version 'adamant' -game 'gta5' - -name 'CoreV' -version '1.0.0' -description 'Custom FiveM Framework' -author 'ThymonA' -contact 'contact@arens.io' -url 'https://git.arens.io/ThymonA/corev-framework/' - -ui_page '{{{ui}}}' -ui_page_preload 'yes' - -client_scripts { - {{{client_scripts}}} -} - -files { - {{{files}}} -} - -modules { - {{{modules}}} -} - -resources { - {{{resources}}} -} -]] - - local fx_client_scripts, fx_files, fx_ui, fx_modules, fx_resources = {}, {}, '', {}, {} - - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevclient'), 1 do - local _file = GetResourceMetadata(GetCurrentResourceName(), 'corevclient', i) - - if (_file ~= nil and type(_file) == 'string') then - table.insert(fx_client_scripts, string.lower(_file)) - end - end - - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevfile'), 1 do - local _file = GetResourceMetadata(GetCurrentResourceName(), 'corevfile', i) - - if (_file ~= nil and type(_file) == 'string') then - table.insert(fx_files, string.lower(_file)) - end - end - - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevuipage'), 1 do - local _file = GetResourceMetadata(GetCurrentResourceName(), 'corevuipage', i) - - if (_file ~= nil and type(_file) == 'string') then - fx_ui = _file - break - end - end - - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevmodule'), 1 do - local _file = GetResourceMetadata(GetCurrentResourceName(), 'corevmodule', i) - - if (_file ~= nil and type(_file) == 'string') then - table.insert(fx_modules, string.lower(_file)) - end - end - - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevresource'), 1 do - local _file = GetResourceMetadata(GetCurrentResourceName(), 'corevresource', i) - - if (_file ~= nil and type(_file) == 'string') then - table.insert(fx_resources, string.lower(_file)) - end - end - - for _, additionalClientFile in pairs(additionalClientFiles) do - if (additionalClientFile ~= nil and type(additionalClientFile) == 'string') then - table.insert(fx_client_scripts, additionalClientFile) - end - end - - local fxManifest = mustache:render(fxManifestTemplate, { - client_scripts = self:tableToString(fx_client_scripts), - files = self:tableToString(fx_files), - ui = fx_ui, - modules = self:tableToString(fx_modules), - resources = self:tableToString(fx_resources) - }) - - SaveResourceFile(GetCurrentResourceName(), 'debug/__fxmanifest.lua', fxManifest) - - if (string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') then - local frameworkFilePath = ('%s/debug/__fxmanifest.lua'):format(frameworkPath) - local frameworkClientFilePath = ('%s/fxmanifest.lua'):format(clientPath) - - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkFilePath = string.replace(frameworkFilePath, '/', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '/', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - - os.execute(('echo Y|COPY /-y "%s" "%s"'):format(frameworkFilePath, frameworkClientFilePath)) - elseif (string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') then - local frameworkFilePath = ('%s/debug/__fxmanifest.lua'):format(frameworkPath) - local frameworkClientFilePath = ('%s/fxmanifest.lua'):format(clientPath) - - frameworkFilePath = string.replace(frameworkFilePath, '\\\\', '\\') - frameworkFilePath = string.replace(frameworkFilePath, '\\', '/') - frameworkFilePath = string.replace(frameworkFilePath, '//', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\\\', '\\') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '\\', '/') - frameworkClientFilePath = string.replace(frameworkClientFilePath, '//', '/') - - os.execute(('cp -r %s %s'):format(frameworkFilePath, frameworkClientFilePath)) - end -end - -function compiler:refreshClientResource() - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_command_stop', GetCurrentResourceName() .. '_client')) - ExecuteCommand(('stop %s_client'):format(GetCurrentResourceName())) - - Wait(250) - - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_command_refresh')) - ExecuteCommand('refresh') - - Wait(250) - - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_command_start', GetCurrentResourceName() .. '_client')) - ExecuteCommand(('start %s_client'):format(GetCurrentResourceName())) -end - ---- Transform a table to string ---- @param table table Table to transform -function compiler:tableToString(table) - if (table == nil or type(table) ~= 'table') then - if (table == nil or type(table) == 'string') then - return table - end - - return '' - end - - local tempString = nil - - for i = 1, #table, 1 do - if (i < #table) then - if (tempString == nil) then tempString = ("'%s',"):format(table[i]) - else - tempString = ("%s\n '%s',"):format(tempString, table[i]) - end - else - if (tempString == nil) then tempString = ("'%s'"):format(table[i]) - else - tempString = ("%s\n '%s'"):format(tempString, table[i]) - end - end - end - - return tempString or '' -end - - ---- Reload all client files -function compiler:reloadClientFiles() - resource:regenerateFiles() - - local clientResourceName = ('%s_client'):format(GetCurrentResourceName()) - - local frameworkManifest = self:loadCurrentResourceManifest() - local fileStructure = self:loadCurrentResourceFileStructure() - local publicFiles = self:filterAllResourceFiles(frameworkManifest, fileStructure) - local internalPath = GetResourcePath(GetCurrentResourceName()) - local clientResourcePath = internalPath:gsub('%/' .. GetCurrentResourceName(), ('/%s'):format(clientResourceName)) - clientResourcePath = clientResourcePath:gsub('%\\' .. GetCurrentResourceName(), ('\\%s'):format(clientResourceName)) - - local frameworkPath, frameworkClientPath = internalPath, clientResourcePath - - if (not string.endswith(frameworkPath, '/')) then frameworkPath = frameworkPath .. '/' end - if (not string.endswith(frameworkClientPath, '/')) then frameworkClientPath = frameworkClientPath .. '/' end - - self:generateExecutables(frameworkPath, frameworkClientPath, publicFiles) - self:generateStreamFolder(frameworkPath, frameworkClientPath, fileStructure) - self:refreshClientResource() -end - ---- Register commands to CoreV framework ---- @param commands commands Commands Module -function compiler:registerCommands(commands) - commands:register('reloadclient', { 'superadmin' }, function(source, arguments, showError) - self:reloadClientFiles() - end, true, { - help = _(CR(), 'core', 'corev_help_reload_client'), - validate = true, - arguments = {} - }) -end - ---- Thread to register compiler commands -Citizen.CreateThread(function() - while true do - if (m ~= nil and type(m) == 'function') then - local commands = m('commands') - - if (commands ~= nil and type(commands) == 'commands') then - compiler:registerCommands(commands) - return - end - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/server/libs/resources.lua b/server/libs/resources.lua deleted file mode 100644 index 290998a..0000000 --- a/server/libs/resources.lua +++ /dev/null @@ -1,816 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -resource = class('resource') - ---- Set default values -resource:set { - externalResources = {}, - internalResources = {}, - internalModules = {}, - internalResourceStructure = {}, - internalModuleStructure = {}, - tasks = { - loadingInternalStructures = false, - loadingExecutables = false, - loadingFramework = false, - compileFramework = false, - frameworkLoaded = false - } -} - ---- Returns a list of files of given path ---- @path string Path -function resource:getPathFiles(path) - local results = {} - - path = string.replace(path, '//', '/') - path = string.replace(path, '\\\\', '\\') - - if ((string.lower(OperatingSystem) == 'win' or string.lower(OperatingSystem) == 'windows') and path ~= nil) then - for _file in io.popen(('dir "%s" /b'):format(path)):lines() do - table.insert(results, _file) - end - elseif ((string.lower(OperatingSystem) == 'lux' or string.lower(OperatingSystem) == 'linux') and path ~= nil) then - local callit = os.tmpname() - - os.execute("ls ".. path .. " | grep -v / >"..callit) - - local f = io.open(callit,"r") - local rv = f:read("*a") - - f:close() - os.remove(callit) - - local from = 1 - local delim_from, delim_to = string.find( rv, "\n", from ) - - while delim_from do - table.insert( results, string.sub( rv, from , delim_from-1 ) ) - from = delim_to + 1 - delim_from, delim_to = string.find( rv, "\n", from ) - end - end - - return results -end - ---- Load internal structures by path ---- @newPath string internal path -function resource:loadPathStructures(newPath) - newPath = newPath or '' - - local results = {} - local internalPath = GetResourcePath(GetCurrentResourceName()) - local directoryFiles = self:getPathFiles(('%s/%s/'):format(internalPath, newPath)) - - for i, directory in pairs(directoryFiles or {}) do - if (directory:startswith('[') and directory:endswith(']')) then - local files = resource:loadPathStructures(('%s/%s'):format(newPath, directory)) - - for i2, file in pairs(files or {}) do - results[file.name] = { - name = file.name, - path = file.path, - fullPath = file.fullPath - } - end - else - results[directory] = { - name = directory, - path = (('%s/%s'):format(newPath, directory)), - fullPath = (('%s/%s/%s'):format(internalPath, newPath, directory)) - } - end - end - - return results -end - ---- Load internal structures -function resource:loadStructures() - if (self.tasks.loadingInternalStructures) then return end - - local resources = self:loadPathStructures('resources') - local modules = self:loadPathStructures('modules') - - self.internalResourceStructure = resources - self.internalModuleStructure = modules - - self.tasks.loadingInternalStructures = true -end - ---- Returns `true` if resource/module exists ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:exists(name, _type) - if (name == nil or type(name) ~= 'string') then return false end - - name = string.lower(name) - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - return self.externalResources[name] ~= nil - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - return self.internalResources[name] ~= nil - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - return self.internalModules[name] ~= nil - end -end - ---- Returns `true` if resource is loaded ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:isLoaded(name, _type) - if (not self:exists(name, _type)) then return false end - - name = string.lower(name) - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - return self.externalResources[name].loaded == true - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - return self.internalResources[name].loaded == true - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - return self.internalModules[name].loaded == true - end - - return false -end - ---- Returns a path ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:getPath(name, _type) - local path = 'none' - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - path = GetResourcePath(name) - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalResourceStructure ~= nil and self.internalResourceStructure[name] ~= nil) then - path = self.internalResourceStructure[name].fullPath - end - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalModuleStructure ~= nil and self.internalModuleStructure[name] ~= nil) then - path = self.internalModuleStructure[name].fullPath - end - end - - return path -end - ---- Returns a list of files of module ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:getFiles(name, _type) - if (name == nil or type(name) ~= 'string') then return false end - - local path = self:getPath(name, _type) - - if (path ~= 'none') then - return self:getPathFiles(path) - end - - return {} -end - ---- Returns `true` if Resource/Module is a framework resource ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:isFrameworkExecutable(name, _type) - if (name == nil or type(name) ~= 'string') then return false end - - local content = self:getFilesByPath(name, _type, 'module.json') - - return content ~= nil -end - ---- Returns `true` if Resource/Module is a framework resource ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:hasFrameworkMigrations(name, _type) - if (name == nil or type(name) ~= 'string') then return false end - - local files = self:getFiles(name, _type) - - for i, file in pairs(files or {}) do - if (string.lower(file) == 'migrations') then - return true - end - end - - return false -end - ---- Returns `true` if Resource/Module is a framework resource ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:getFrameworkMigrations(name, _type) - if (not self:hasFrameworkMigrations(name, _type)) then return {} end - - local results = {} - local path = ('%s/migrations/'):format(self:getPath(name, _type)) - - if (path ~= 'none') then - local files = self:getPathFiles(path) - - for i, file in pairs(files or {}) do - if (file:endswith('.sql')) then - table.insert(results, file) - end - end - end - - return results -end - ---- Load translations for framework, not modules or resources -function resource:loadFrameworkTranslations() - local currentLanguage = string.lower(LANGUAGE) or 'en' - local resourceName = GetCurrentResourceName() - local content = LoadResourceFile(GetCurrentResourceName(), ('langs/%s.json'):format(currentLanguage)) - - if (content) then - local data = json.decode(content) - - if (data) then - if (CoreV.Translations[resourceName] == nil) then - CoreV.Translations[resourceName] = {} - end - - if (CoreV.Translations[resourceName]['core'] == nil) then - CoreV.Translations[resourceName]['core'] = {} - end - - for _key, _value in pairs(data or {}) do - CoreV.Translations[resourceName]['core'][_key] = _value - end - end - end -end - ---- Generates a framework manifest for Resource/Module ---- @name string Resource/Module name ---- @_type string Type of Resource/Module -function resource:generateFrameworkManifest(name, _type) - local resource = '' - local internalPath = '' - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - resource = name - internalPath = '/module.json' - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalResourceStructure ~= nil and self.internalResourceStructure[name] ~= nil) then - resource = GetCurrentResourceName() - internalPath = ('%s/module.json'):format(self.internalResourceStructure[name].path) - end - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - if (self.internalModuleStructure ~= nil and self.internalModuleStructure[name] ~= nil) then - resource = GetCurrentResourceName() - internalPath = ('%s/module.json'):format(self.internalModuleStructure[name].path) - end - end - - local manifest = class('manifest') - - --- set default values - manifest:set { - name = name, - type = _type, - data = {} - } - - --- Returns a value from data in manifest - --- @key string key to search for - function manifest:getValue(key) - if (key == nil or type(key) ~= 'string') then - return nil - end - - if (self.data ~= nil and self.data[key] ~= nil) then - return self.data[key] - end - - return nil - end - - if (resource == '' or internalPath == '') then - return manifest - end - - local content = LoadResourceFile(resource, internalPath) - - if (content) then - local data = json.decode(content) - - if (data) then - for key, value in pairs(data) do - if (key ~= nil) then - manifest.data[key] = value - end - end - end - end - - return manifest -end - ---- Load Resources/Modules -function resource:loadFrameworkExecutables() - local enabledInternalResources, enabledInternalModules = {}, {} - - self:loadStructures() - - repeat Citizen.Wait(0) until self.tasks.loadingInternalStructures == true - - --- Load all enabled resources - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevresource'), 1 do - table.insert(enabledInternalResources, GetResourceMetadata(GetCurrentResourceName(), 'corevresource', i)) - end - - --- Load all enabled modules - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevmodule'), 1 do - table.insert(enabledInternalModules, GetResourceMetadata(GetCurrentResourceName(), 'corevmodule', i)) - end - - --- Add all internal executable resources - for i, internalResource in pairs(self.internalResourceStructure or {}) do - local internalResourceEnabled = false - - for i2, internalResourceName in pairs(enabledInternalResources or {}) do - if (string.lower(internalResourceName) == string.lower(internalResource.name)) then - internalResourceEnabled = true - end - end - - if (self:isFrameworkExecutable(internalResource.name, ResourceTypes.InternalResource)) then - self.internalResources[internalResource.name] = { - name = internalResource.name, - path = internalResource.path, - fullPath = internalResource.fullPath, - enabled = internalResourceEnabled, - loaded = false, - error = { - status = false, - message = '' - }, - type = ResourceTypes.InternalResource, - hasMigrations = self:hasFrameworkMigrations(internalResource.name, ResourceTypes.InternalResource), - migrations = self:getFrameworkMigrations(internalResource.name, ResourceTypes.InternalResource), - manifest = self:generateFrameworkManifest(internalResource.name, ResourceTypes.InternalResource) - } - end - end - - --- Add all internal executable modules - for i, internalModule in pairs(self.internalModuleStructure or {}) do - local internalModuleEnabled = false - - for i2, internalModuleName in pairs(enabledInternalModules or {}) do - if (string.lower(internalModuleName) == string.lower(internalModule.name)) then - internalModuleEnabled = true - end - end - - if (self:isFrameworkExecutable(internalModule.name, ResourceTypes.InternalModule)) then - self.internalModules[internalModule.name] = { - name = internalModule.name, - path = internalModule.path, - fullPath = internalModule.fullPath, - enabled = internalModuleEnabled, - loaded = false, - error = { - status = false, - message = '' - }, - type = ResourceTypes.InternalModule, - hasMigrations = self:hasFrameworkMigrations(internalModule.name, ResourceTypes.InternalModule), - migrations = self:getFrameworkMigrations(internalModule.name, ResourceTypes.InternalModule), - manifest = self:generateFrameworkManifest(internalModule.name, ResourceTypes.InternalModule) - } - end - end - - self.tasks.loadingExecutables = true -end - ---- Load all translations for ---- @object Any Executable Resource/Module -function resource:loadTranslations(object) - if (object.enabled and object.manifest ~= nil and type(object.manifest) == 'manifest') then - local languages = object.manifest:getValue('languages') or {} - - for key, location in pairs(languages) do - if (string.lower(key) == LANGUAGE) then - local resourceName = '' - local content = nil - - if (string.lower(object.type) == string.lower(ResourceTypes.ExternalResource)) then - content = LoadResourceFile(object.name, location) - resourceName = object.name - end - - if (string.lower(object.type) == string.lower(ResourceTypes.InternalResource) or - string.lower(object.type) == string.lower(ResourceTypes.InternalModule)) then - content = LoadResourceFile(GetCurrentResourceName(), ('%s/%s'):format(object.path, location)) - resourceName = GetCurrentResourceName() - end - - if (content) then - local data = json.decode(content) - - if (data) then - if (CoreV.Translations[resourceName] == nil) then - CoreV.Translations[resourceName] = {} - end - - if (CoreV.Translations[resourceName][object.name] == nil) then - CoreV.Translations[resourceName][object.name] = {} - end - - for _key, _value in pairs(data or {}) do - CoreV.Translations[resourceName][object.name][_key] = _value - end - end - end - end - end - end -end - ---- Returns a list of files by path ---- @name string Resource/Module name ---- @_type string Type of Resource/Module ---- @internalPath string Internal path of Resource/Module -function resource:getFilesByPath(name, _type, internalPath) - local content = nil - - if (string.lower(_type) == string.lower(ResourceTypes.ExternalResource)) then - content = LoadResourceFile(name, internalPath) - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalResource)) then - if (self.internalResourceStructure ~= nil and self.internalResourceStructure[name] ~= nil) then - content = LoadResourceFile(GetCurrentResourceName(), ('%s/%s'):format(self.internalResourceStructure[name].path, internalPath)) - end - end - - if (string.lower(_type) == string.lower(ResourceTypes.InternalModule)) then - if (self.internalModuleStructure ~= nil and self.internalModuleStructure[name] ~= nil) then - content = LoadResourceFile(GetCurrentResourceName(), ('%s/%s'):format(self.internalModuleStructure[name].path, internalPath)) - end - end - - if (content) then - return content - end - - return nil -end - ---- Save and returns generated executable ---- @object Any Executable Resource/Module -function resource:saveExecutable(object, clientsOnly) - clientsOnly = clientsOnly or false - - if (clientsOnly == nil or type(clientsOnly) ~= 'boolean') then clientsOnly = false end - - local script = nil - local path = 'unknown' - - if (string.lower(object.type) == string.lower(ResourceTypes.ExternalResource)) then - path = 'external_resources' - elseif (string.lower(object.type) == string.lower(ResourceTypes.InternalResource)) then - path = 'internal_resources' - elseif (string.lower(object.type) == string.lower(ResourceTypes.InternalModule)) then - path = 'internal_modules' - end - - for i2, file in pairs(object.manifest:getValue('client_scripts') or {}) do - local code = self:getFilesByPath(object.name, object.type, file) - - if (code) then - if (script == nil) then - script = code - else - local ff, nl, cr, ht, vt, ws = ("\f\n\r\t\v "):byte(1,6) - - script = script .. utf8.char(nl) .. code - end - end - end - - if (script ~= nil) then - SaveResourceFile(GetCurrentResourceName(), ('debug/%s/client/%s_%s.lua'):format(path, object.name, 'client'), script) - end - - if (clientsOnly) then - return script - end - - script = nil - - for i2, file in pairs(object.manifest:getValue('server_scripts') or {}) do - local code = self:getFilesByPath(object.name, object.type, file) - - if (code) then - if (script == nil) then - script = code - else - local ff, nl, cr, ht, vt, ws = ("\f\n\r\t\v "):byte(1,6) - - script = script .. utf8.char(nl) .. code - end - end - end - - if (script ~= nil) then - SaveResourceFile(GetCurrentResourceName(), ('debug/%s/server/%s_%s.lua'):format(path, object.name, 'server'), script) - end - - return script -end - ---- Load all framework Resources/Modules -function resource:loadAll() - self:loadFrameworkExecutables() - - repeat Citizen.Wait(0) until self.tasks.loadingExecutables == true - - local enabledInternalModules = {} - - --- Load all enabled modules - for i = 0, GetNumResourceMetadata(GetCurrentResourceName(), 'corevmodule'), 1 do - local _module = GetResourceMetadata(GetCurrentResourceName(), 'corevmodule', i) - - if (_module ~= nil and type(_module) == 'string') then - table.insert(enabledInternalModules, string.lower(_module)) - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - --- Load and execute all internal modules - for i, internalModuleName in pairs(enabledInternalModules or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalModuleName - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalModuleName - - if (self.internalModules ~= nil and self.internalModules[internalModuleName] ~= nil) then - local internalModule = self.internalModules[internalModuleName] - - if (internalModule.enabled) then - self:loadTranslations(internalModule) - - if (internalModule.hasMigrations) then - local database = m('database') - - for i2, migration in pairs(internalModule.migrations) do - local migrationTaskDone = database:applyMigration(internalModule, migration) - - repeat Citizen.Wait(0) until migrationTaskDone == true - end - end - - local script = self:saveExecutable(internalModule) - - if (script ~= nil) then - local fn, _error = load(script, ('@%s:%s:server'):format(CurrentFrameworkResource, CurrentFrameworkModule), 't', _ENV) - - if (fn) then - xpcall(fn, function(err) - self.internalModules[internalModuleName].error.status = true - self.internalModules[internalModuleName].error.message = err - - error:print(err) - end) - end - - if (_error and _error ~= '') then - self.internalModules[internalModuleName].error.status = true - self.internalModules[internalModuleName].error.message = _error - - error:print(_error) - end - end - - self.internalModules[internalModuleName].loaded = true - end - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - --- Load and execute all internal modules - for i, internalModule in pairs(self.internalModules or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalModule.name - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalModule.name - - if (not internalModule.loaded) then - self:loadTranslations(internalModule) - - if (internalModule.hasMigrations) then - local database = m('database') - - for i2, migration in pairs(internalModule.migrations) do - local migrationTaskDone = database:applyMigration(internalModule, migration) - - repeat Citizen.Wait(0) until migrationTaskDone == true - end - end - - local script = self:saveExecutable(internalModule) - - if (script ~= nil) then - local fn, _error = load(script, ('@%s:%s:server'):format(CurrentFrameworkResource, CurrentFrameworkModule), 't', _ENV) - - if (fn) then - xpcall(fn, function(err) - self.internalModules[i].error.status = true - self.internalModules[i].error.message = err - - error:print(err) - end) - end - - if (_error and _error ~= '') then - self.internalModules[i].error.status = true - self.internalModules[i].error.message = _error - - error:print(_error) - end - end - - self.internalModules[i].loaded = true - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - --- Load and execute all internal resources - for i, internalResource in pairs(self.internalResources or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalResource.name - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalResource.name - - if (internalResource.enabled) then - self:loadTranslations(internalResource) - - if (internalResource.hasMigrations) then - local database = m('database') - - for i2, migration in pairs(internalResource.migrations) do - local migrationTaskDone = database:applyMigration(internalResource, migration) - - repeat Citizen.Wait(0) until migrationTaskDone == true - end - end - - local script = self:saveExecutable(internalResource) - - if (script ~= nil) then - local fn, _error = load(script, ('@%s:%s:server'):format(CurrentFrameworkResource, CurrentFrameworkModule), 't', _ENV) - - if (fn) then - xpcall(fn, function(err) - self.internalResources[i].error.status = true - self.internalResources[i].error.message = err - - error:print(err) - end) - end - - if (_error and _error ~= '') then - self.internalResources[i].error.status = true - self.internalResources[i].error.message = _error - - error:print(_error) - end - end - - self.internalResources[i].loaded = true - end - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil - - self.tasks.loadingFramework = true -end - ---- Returns how many executables are loaded -function resource:countAllLoaded() - local externalResources, internalResources, internalModules = 0, 0, 0 - - for i, externalResource in pairs(self.externalResources or {}) do - if (externalResource.enabled and externalResource.loaded) then - externalResources = externalResources + 1 - end - end - - for i, internalResource in pairs(self.internalResources or {}) do - if (internalResource.enabled and internalResource.loaded) then - internalResources = internalResources + 1 - end - end - - for i, internalModule in pairs(self.internalModules or {}) do - if (internalModule.loaded) then - internalModules = internalModules + 1 - end - end - - return externalResources, internalResources, internalModules -end - -function resource:regenerateFiles() - --- Load and execute all internal modules - for i, internalModule in pairs(self.internalModules or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalModule.name - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalModule.name - - local script = self:saveExecutable(internalModule, true) - end - - --- Load and execute all internal resources - for i, internalResource in pairs(self.internalResources or {}) do - _ENV.CurrentFrameworkResource = GetCurrentResourceName() - _ENV.CurrentFrameworkModule = internalResource.name - _G.CurrentFrameworkResource = GetCurrentResourceName() - _G.CurrentFrameworkModule = internalResource.name - - local script = self:saveExecutable(internalResource, true) - end - - _ENV.CurrentFrameworkModule = nil - _G.CurrentFrameworkModule = nil -end - ---- Sent internal structures to client -registerCallback('corev:resource:loadStructure', function(source, cb) - while not resource.tasks.loadingInternalStructures do - Citizen.Wait(0) - end - - local resourceStructures, moduleStructures = {}, {} - - for i, resourceStructure in pairs(resource.internalResourceStructure or {}) do - resourceStructures[i] = { - name = resourceStructure.name, - path = resourceStructure.path, - fullPath = resourceStructure.path - } - end - - for i, moduleStructure in pairs(resource.internalModuleStructure or {}) do - moduleStructures[i] = { - name = moduleStructure.name, - path = moduleStructure.path, - fullPath = moduleStructure.path - } - end - - cb(resourceStructures, moduleStructures) -end) - ---- FiveM maniplulation -_ENV.getFrameworkFile = function(name, _type, internalPath) return resource:getFilesByPath(name, _type, internalPath) end -_G.getFrameworkFile = function(name, _type, internalPath) return resource:getFilesByPath(name, _type, internalPath) end \ No newline at end of file diff --git a/server/main.lua b/server/main.lua deleted file mode 100644 index 2712983..0000000 --- a/server/main.lua +++ /dev/null @@ -1,134 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -Citizen.CreateThread(function() - resource:loadFrameworkTranslations() - - local resourceStarted = os:currentTimeInMilliseconds() - - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_loading')) - - resource:loadAll() - - local serverSideLoadedAfter = os:currentTimeInMilliseconds() - resourceStarted - - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - print('[^5Core^4V^7] ' .. _(CR(), 'core', 'corev_server_load', round(serverSideLoadedAfter / 1000, 2))) - - compiler:generateResource() - - while not resource.tasks.compileFramework do - Citizen.Wait(0) - end - - local frameworkLoadedAfter = os:currentTimeInMilliseconds() - resourceStarted - local numberOfResources, numberOfInternalResources, numberOfModules = resource:countAllLoaded() - - print('============= [ ^5Core^4V^7 ] =============\n' .. _(CR(), 'core', 'corev_loaded', numberOfResources, numberOfInternalResources, numberOfModules, round(frameworkLoadedAfter / 1000, 2)) .. '\n============= [ ^5Core^4V^7 ] =============') - - resource.tasks.frameworkLoaded = true -end) - -AddEventHandler('playerConnecting', function(name, setCallback, deferrals) - deferrals.defer() - - local _source, dots, times = source, '.', 100 - - while not resource.tasks.frameworkLoaded do - Citizen.Wait(0) - - if (times >= 100) then - dots = dots .. '.' - - if (string.len(dots) == 4) then - dots = '.' - end - - deferrals.update(_(CR(), 'core', 'corev_isloading', dots)) - - times = 1 - end - - times = times + 1 - end - - triggerPlayerConnecting(_source, deferrals) -end) - -AddEventHandler('playerDropped', function(reason) - local _source = source - - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - triggerPlayerDisconnect(_source, reason) -end) - -onClientTrigger('corev:core:playerLoaded', function() - local _source = source - - while not resource.tasks.loadingFramework do - Citizen.Wait(0) - end - - triggerPlayerConnected(_source) -end) - -AddEventHandler('core:chat:addError', function(msg) - print('[ERROR] ' .. msg) -end) - -AddEventHandler('corev:core:kickPlayer', function(playerId, message, cb) - if (source == nil) then source = 0 end - if (type(source) == 'string') then source = tonumber(source) end - if (type(source) ~= 'number') then source = 0 end - if (source > 0) then if (cb ~= nil) then cb(false, 'Unknown') end return end - - local getIds = GetPlayerIdentifiers(playerId) or {} - local anyId = #getIds > 0 - - if (anyId) then - local playerName = GetPlayerName(playerId) - - DropPlayer(playerId, message) - - if (cb ~= nil) then cb(true, playerName) end - else - if (cb ~= nil) then cb(false, 'Unknown') end - end -end) - -Citizen.CreateThread(function() - while true do - local _commands = m('commands') - - if (_commands ~= nil) then - _commands:register('reload', { 'superadmin' }, function(source, arguments, showError) - ExecuteCommand(('stop ddrp_%s'):format(arguments.script)) - ExecuteCommand('refresh') - ExecuteCommand(('start ddrp_%s'):format(arguments.script)) - end, true, { - help = 'Restart a CoreV resource', - validate = true, - arguments = { - { name = 'script', help = 'name of script', type = 'string' } - } - }) - - break; - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/tools/data/ammo.json b/tools/data/ammo.json deleted file mode 100644 index 09f277e..0000000 --- a/tools/data/ammo.json +++ /dev/null @@ -1,562 +0,0 @@ -[ - { - "nameHash": "AMMO_MOBILEOPS_CANNON", - "hash": 764589401, - "max": 20 - }, - { - "nameHash": "AMMO_APC_CANNON", - "hash": -767591211, - "max": 100 - }, - { - "nameHash": "AMMO_APC_MISSILE", - "hash": 119573070, - "max": 20 - }, - { - "nameHash": "AMMO_AVENGER_CANNON", - "hash": 1849772700, - "max": 20 - }, - { - "nameHash": "AMMO_BARRAGE_GL", - "hash": 1364454752, - "max": 20 - }, - { - "nameHash": "AMMO_VEHICLEBOMB", - "hash": -1615671818, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEBOMB_CLUSTER", - "hash": 1584038003, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEBOMB_GAS", - "hash": 314485403, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEBOMB_INCENDIARY", - "hash": -111286589, - "max": 1 - }, - { - "nameHash": "AMMO_CHERNO_MISSILE", - "hash": -1278325590, - "max": 10 - }, - { - "nameHash": "AMMO_DUNE_GRENADELAUNCHER", - "hash": 1742067183, - "max": 20 - }, - { - "nameHash": "AMMO_HACKER_MISSILE", - "hash": -2009808731, - "max": 20 - }, - { - "nameHash": "AMMO_HUNTER_MISSILE", - "hash": -119401255, - "max": 20 - }, - { - "nameHash": "AMMO_HUNTER_BARRAGE", - "hash": 935462248, - "max": 20 - }, - { - "nameHash": "AMMO_KHANJALI_GL", - "hash": -1630507076, - "max": 20 - }, - { - "nameHash": "AMMO_KHANJALI_CANNON_HEAVY", - "hash": 617011510, - "max": 100 - }, - { - "nameHash": "AMMO_VEHICLEMINE", - "hash": 612448028, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_KINETIC", - "hash": -1140465749, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_EMP", - "hash": 1653442244, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_SPIKE", - "hash": 1782795920, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_SLICK", - "hash": -418520852, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_TAR", - "hash": -1733963618, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_KINETIC_RC", - "hash": -338616823, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_EMP_RC", - "hash": -930619152, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_SPIKE_RC", - "hash": -1317227407, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_SLICK_RC", - "hash": -590129723, - "max": 1 - }, - { - "nameHash": "AMMO_VEHICLEMINE_TAR_RC", - "hash": -1955683003, - "max": 1 - }, - { - "nameHash": "AMMO_MONSTER3_KINETIC", - "hash": 2074953483, - "max": 10 - }, - { - "nameHash": "AMMO_MORTAR_EXPLOSIVE", - "hash": 814030577, - "max": 10 - }, - { - "nameHash": "AMMO_MORTAR_KINETIC", - "hash": 648487681, - "max": 10 - }, - { - "nameHash": "AMMO_MULE4_GL", - "hash": -206645419, - "max": 20 - }, - { - "nameHash": "AMMO_OPPRESSOR_MISSILE", - "hash": 570854289, - "max": 20 - }, - { - "nameHash": "AMMO_OPPRESSOR2_MISSILE", - "hash": 914231229, - "max": 20 - }, - { - "nameHash": "AMMO_POUNDER2_MISSILE", - "hash": 948447183, - "max": 20 - }, - { - "nameHash": "AMMO_POUNDER2_GL", - "hash": 1624456817, - "max": 20 - }, - { - "nameHash": "AMMO_ROGUE_MISSILE", - "hash": -1421421393, - "max": 20 - }, - { - "nameHash": "AMMO_SCRAMJET_MISSILE", - "hash": -1664293218, - "max": 20 - }, - { - "nameHash": "AMMO_STRIKEFORCE_BARRAGE", - "hash": 987449399, - "max": 20 - }, - { - "nameHash": "AMMO_STRIKEFORCE_MISSILE", - "hash": 770578418, - "max": 20 - }, - { - "nameHash": "AMMO_SUBCAR_MISSILE", - "hash": 456482729, - "max": 100 - }, - { - "nameHash": "AMMO_SUBCAR_TORPEDO", - "hash": -684945118, - "max": 100 - }, - { - "nameHash": "AMMO_TAMPA_MORTAR", - "hash": -405037695, - "max": 10 - }, - { - "nameHash": "AMMO_THRUSTER_MISSILE", - "hash": -379666311, - "max": 20 - }, - { - "nameHash": "AMMO_TRAILER_AA", - "hash": 881918194, - "max": 100 - }, - { - "nameHash": "AMMO_TRAILER_MISSILE", - "hash": -11173636, - "max": 10 - }, - { - "nameHash": "AMMO_VIGILANTE_MISSILE", - "hash": 1507289724, - "max": 20 - }, - { - "nameHash": "AMMO_VEHICLEBOMB_WIDE", - "hash": -117387562, - "max": 1 - }, - { - "nameHash": "AMMO_RCTANK_ROCKET", - "hash": -1585454291, - "max": 20 - }, - { - "nameHash": "AMMO_FIREWORK", - "hash": -1356599793, - "max": 20 - }, - { - "nameHash": "AMMO_FLAREGUN", - "hash": 1173416293, - "max": 20 - }, - { - "nameHash": "AMMO_HOMINGLAUNCHER", - "hash": -1726673363, - "max": 10 - }, - { - "nameHash": "AMMO_PIPEBOMB", - "hash": 357983224, - "max": 10 - }, - { - "nameHash": "AMMO_PROXMINE", - "hash": -1356724057, - "max": 5 - }, - { - "nameHash": "AMMO_RAILGUN", - "hash": 2034517757, - "max": 20 - }, - { - "nameHash": "AMMO_PISTOL", - "hash": 1950175060, - "max": 250 - }, - { - "nameHash": "AMMO_SMG", - "hash": 1820140472, - "max": 250 - }, - { - "nameHash": "AMMO_RIFLE", - "hash": 218444191, - "max": 250 - }, - { - "nameHash": "AMMO_MG", - "hash": 1788949567, - "max": 500 - }, - { - "nameHash": "AMMO_SHOTGUN", - "hash": -1878508229, - "max": 250 - }, - { - "nameHash": "AMMO_STUNGUN", - "hash": -1339118112, - "max": 250 - }, - { - "nameHash": "AMMO_SNIPER", - "hash": 1285032059, - "max": 250 - }, - { - "nameHash": "AMMO_SNIPER_REMOTE", - "hash": -19235536, - "max": 250 - }, - { - "nameHash": "AMMO_FIREEXTINGUISHER", - "hash": 1359393852, - "max": 2000 - }, - { - "nameHash": "AMMO_PETROLCAN", - "hash": -899475295, - "max": 4500 - }, - { - "nameHash": "AMMO_MINIGUN", - "hash": -1614428030, - "max": 250 - }, - { - "nameHash": "AMMO_GRENADELAUNCHER", - "hash": 1003267566, - "max": 20 - }, - { - "nameHash": "AMMO_GRENADELAUNCHER_SMOKE", - "hash": 826266432, - "max": 20 - }, - { - "nameHash": "AMMO_RPG", - "hash": 1742569970, - "max": 20 - }, - { - "nameHash": "AMMO_STINGER", - "hash": -1857257158, - "max": 20 - }, - { - "nameHash": "AMMO_GRENADE", - "hash": 1003688881, - "max": 25 - }, - { - "nameHash": "AMMO_BALL", - "hash": -6986138, - "max": 1 - }, - { - "nameHash": "AMMO_STICKYBOMB", - "hash": 1411692055, - "max": 25 - }, - { - "nameHash": "AMMO_SMOKEGRENADE", - "hash": -435287898, - "max": 25 - }, - { - "nameHash": "AMMO_BZGAS", - "hash": -1686864220, - "max": 25 - }, - { - "nameHash": "AMMO_FLARE", - "hash": 1808594799, - "max": 25 - }, - { - "nameHash": "AMMO_MOLOTOV", - "hash": 1446246869, - "max": 25 - }, - { - "nameHash": "AMMO_TANK", - "hash": -1474608608, - "max": 100 - }, - { - "nameHash": "AMMO_SPACE_ROCKET", - "hash": 527765612, - "max": 20 - }, - { - "nameHash": "AMMO_PLANE_ROCKET", - "hash": 1198741878, - "max": 20 - }, - { - "nameHash": "AMMO_PLAYER_LASER", - "hash": -165357558, - "max": 100 - }, - { - "nameHash": "AMMO_ENEMY_LASER", - "hash": -1372674932, - "max": 100 - }, - { - "nameHash": "AMMO_BIRD_CRAP", - "hash": 1117307028, - "max": 25 - }, - { - "nameHash": "AMMO_MG_ARMORPIERCING", - "hash": 784861712, - "max": 480 - }, - { - "nameHash": "AMMO_MG_FMJ", - "hash": 234717365, - "max": 480 - }, - { - "nameHash": "AMMO_MG_INCENDIARY", - "hash": 1461941360, - "max": 480 - }, - { - "nameHash": "AMMO_MG_TRACER", - "hash": 1226421483, - "max": 600 - }, - { - "nameHash": "AMMO_PISTOL_FMJ", - "hash": -1132792829, - "max": 240 - }, - { - "nameHash": "AMMO_PISTOL_HOLLOWPOINT", - "hash": -836519658, - "max": 240 - }, - { - "nameHash": "AMMO_PISTOL_INCENDIARY", - "hash": -1416716039, - "max": 240 - }, - { - "nameHash": "AMMO_PISTOL_TRACER", - "hash": -1193480661, - "max": 360 - }, - { - "nameHash": "AMMO_RIFLE_ARMORPIERCING", - "hash": 423744068, - "max": 240 - }, - { - "nameHash": "AMMO_RIFLE_FMJ", - "hash": 1586900444, - "max": 240 - }, - { - "nameHash": "AMMO_RIFLE_INCENDIARY", - "hash": -1829688883, - "max": 240 - }, - { - "nameHash": "AMMO_RIFLE_TRACER", - "hash": -1340502689, - "max": 360 - }, - { - "nameHash": "AMMO_SMG_FMJ", - "hash": 758230489, - "max": 240 - }, - { - "nameHash": "AMMO_SMG_HOLLOWPOINT", - "hash": 670318226, - "max": 240 - }, - { - "nameHash": "AMMO_SMG_INCENDIARY", - "hash": -332892697, - "max": 240 - }, - { - "nameHash": "AMMO_SMG_TRACER", - "hash": 1569785553, - "max": 360 - }, - { - "nameHash": "AMMO_SNIPER_ARMORPIERCING", - "hash": -1497580119, - "max": 80 - }, - { - "nameHash": "AMMO_SNIPER_EXPLOSIVE", - "hash": -1378784071, - "max": 40 - }, - { - "nameHash": "AMMO_SNIPER_FMJ", - "hash": -168704490, - "max": 80 - }, - { - "nameHash": "AMMO_SNIPER_INCENDIARY", - "hash": 796697766, - "max": 80 - }, - { - "nameHash": "AMMO_SNIPER_TRACER", - "hash": 1184011213, - "max": 320 - }, - { - "nameHash": "AMMO_SHOTGUN_ARMORPIERCING", - "hash": 1923327840, - "max": 160 - }, - { - "nameHash": "AMMO_SHOTGUN_EXPLOSIVE", - "hash": -309302955, - "max": 40 - }, - { - "nameHash": "AMMO_SHOTGUN_HOLLOWPOINT", - "hash": 2089185906, - "max": 160 - }, - { - "nameHash": "AMMO_SHOTGUN_INCENDIARY", - "hash": -609429612, - "max": 160 - }, - { - "nameHash": "AMMO_SNOWBALL", - "hash": -2112339603, - "max": 10 - }, - { - "nameHash": "AMMO_ARENA_HOMING_MISSILE", - "hash": 1669062227, - "max": 20 - }, - { - "nameHash": "AMMO_RAYPISTOL", - "hash": -1526023308, - "max": 20 - }, - { - "nameHash": "AMMO_HAZARDCAN", - "hash": 1618528319, - "max": 4500 - }, - { - "nameHash": "AMMO_TRANQUILIZER", - "hash": 1964004553, - "max": 250 - } -] \ No newline at end of file diff --git a/tools/data/weapon_components.json b/tools/data/weapon_components.json deleted file mode 100644 index d3cbc27..0000000 --- a/tools/data/weapon_components.json +++ /dev/null @@ -1,3408 +0,0 @@ -[ - { - "nameHash": "COMPONENT_AT_RAILCOVER_01", - "hash": 1967214384, - "type": "CWeaponComponentInfo", - "model": "w_at_railcover_01", - "gxtName": "WCT_RAIL", - "gxtDescription": "WCD_AT_RAIL" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "type": "CWeaponComponentInfo", - "model": "w_at_ar_afgrip", - "gxtName": "WCT_GRIP", - "gxtDescription": "WCD_GRIP" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "type": "CWeaponComponentFlashLightInfo", - "model": "w_at_pi_flsh", - "gxtName": "WCT_FLASH", - "gxtDescription": "WCD_FLASH" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "type": "CWeaponComponentFlashLightInfo", - "model": "w_at_ar_flsh", - "gxtName": "WCT_FLASH", - "gxtDescription": "WCD_FLASH" - }, - { - "nameHash": "POLICE_TORCH_FLASHLIGHT", - "hash": -979169299, - "type": "CWeaponComponentFlashLightInfo", - "model": "", - "gxtName": "WCT_FLASH", - "gxtDescription": "WCD_FLASH" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO", - "hash": -1657815255, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_macro", - "gxtName": "WCT_SCOPE_MAC", - "gxtDescription": "WCD_SCOPE_MAC" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_02", - "hash": 1019656791, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_macro_2", - "gxtName": "WCT_SCOPE_MAC", - "gxtDescription": "WCD_SCOPE_MAC" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL", - "hash": -1439939148, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_small", - "gxtName": "WCT_SCOPE_SML", - "gxtDescription": "WCD_SCOPE_SML" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_02", - "hash": 1006677997, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_small_2", - "gxtName": "WCT_SCOPE_SML", - "gxtDescription": "WCD_SCOPE_SML" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM", - "hash": -1596416958, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_medium", - "gxtName": "WCT_SCOPE_MED", - "gxtDescription": "WCD_SCOPE_MED" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE", - "hash": -767279652, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_large", - "gxtName": "WCT_SCOPE_LRG", - "gxtDescription": "WCD_SCOPE_LRG" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MAX", - "hash": -1135289737, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_max", - "gxtName": "WCT_SCOPE_MAX", - "gxtDescription": "WCD_SCOPE_MAX" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_pi_supp", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_PI_SUPP" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP_02", - "hash": 1709866683, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_pi_supp_2", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_PI_SUPP" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_ar_supp", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_AR_SUPP" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_ar_supp_02", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_AR_SUPP2" - }, - { - "nameHash": "COMPONENT_AT_SR_SUPP", - "hash": -435637410, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_sr_supp_2", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_SR_SUPP" - }, - { - "nameHash": "COMPONENT_PISTOL_CLIP_01", - "hash": -19858063, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistol_mag1", - "clipSize": 12, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_P_CLIP1" - }, - { - "nameHash": "COMPONENT_PISTOL_CLIP_02", - "hash": -316253668, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistol_mag2", - "clipSize": 16, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_P_CLIP2" - }, - { - "nameHash": "COMPONENT_COMBATPISTOL_CLIP_01", - "hash": 119648377, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_combatpistol_mag1", - "clipSize": 12, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CP_CLIP1" - }, - { - "nameHash": "COMPONENT_COMBATPISTOL_CLIP_02", - "hash": -696561875, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_combatpistol_mag2", - "clipSize": 16, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CP_CLIP2" - }, - { - "nameHash": "COMPONENT_APPISTOL_CLIP_01", - "hash": 834974250, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_appistol_mag1", - "clipSize": 18, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_AP_CLIP1" - }, - { - "nameHash": "COMPONENT_APPISTOL_CLIP_02", - "hash": 614078421, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_appistol_mag2", - "clipSize": 36, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_AP_CLIP2" - }, - { - "nameHash": "COMPONENT_MICROSMG_CLIP_01", - "hash": -884429072, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_microsmg_mag1", - "clipSize": 16, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCDMSMG_CLIP1" - }, - { - "nameHash": "COMPONENT_MICROSMG_CLIP_02", - "hash": 283556395, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_microsmg_mag2", - "clipSize": 30, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCDMSMG_CLIP2" - }, - { - "nameHash": "COMPONENT_SMG_CLIP_01", - "hash": 643254679, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smg_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_SMG_CLIP1" - }, - { - "nameHash": "COMPONENT_SMG_CLIP_02", - "hash": 889808635, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smg_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_SMG_CLIP2" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_CLIP_01", - "hash": -1101075946, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultrifle_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_AR_CLIP1" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_CLIP_02", - "hash": -1323216997, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultrifle_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_AR_CLIP2" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_CLIP_01", - "hash": -1614924820, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbinerifle_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CR_CLIP1" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_CLIP_02", - "hash": -1861183855, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbinerifle_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CR_CLIP2" - }, - { - "nameHash": "COMPONENT_ADVANCEDRIFLE_CLIP_01", - "hash": -91250417, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_advancedrifle_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_AR_CLIP1" - }, - { - "nameHash": "COMPONENT_ADVANCEDRIFLE_CLIP_02", - "hash": -1899902599, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_advancedrifle_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_AR_CLIP2" - }, - { - "nameHash": "COMPONENT_MG_CLIP_01", - "hash": -197857404, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_mg_mag1", - "clipSize": 54, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_MG_CLIP1" - }, - { - "nameHash": "COMPONENT_MG_CLIP_02", - "hash": -2112517305, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_mg_mag2", - "clipSize": 100, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_MG_CLIP2" - }, - { - "nameHash": "COMPONENT_COMBATMG_CLIP_01", - "hash": -503336118, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmg_mag1", - "clipSize": 100, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCDCMG_CLIP1" - }, - { - "nameHash": "COMPONENT_COMBATMG_CLIP_02", - "hash": -691692330, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmg_mag2", - "clipSize": 200, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCDCMG_CLIP2" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_CLIP_01", - "hash": -781249480, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 8, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SAWNOFFSHOTGUN_CLIP_01", - "hash": -942267867, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 8, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTSHOTGUN_CLIP_01", - "hash": -1796727865, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_assaultshotgun_mag1", - "clipSize": 8, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_AS_CLIP1" - }, - { - "nameHash": "COMPONENT_ASSAULTSHOTGUN_CLIP_02", - "hash": -2034401422, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_assaultshotgun_mag2", - "clipSize": 32, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_AS_CLIP2" - }, - { - "nameHash": "COMPONENT_SNIPERRIFLE_CLIP_01", - "hash": -1681506167, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_sniperrifle_mag1", - "clipSize": 10, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_SR_CLIP1" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_CLIP_01", - "hash": 1198478068, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysniper_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_HS_CLIP1" - }, - { - "nameHash": "COMPONENT_MINIGUN_CLIP_01", - "hash": -924946682, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 15000, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_RPG_CLIP_01", - "hash": 1319465907, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 1, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_GRENADELAUNCHER_CLIP_01", - "hash": 296639639, - "type": "CWeaponComponentClipInfo", - "model": "w_lr_40mm", - "clipSize": 10, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL50_CLIP_01", - "hash": 580369945, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_PISTOL50_Mag1", - "clipSize": 9, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_P50_CLIP1" - }, - { - "nameHash": "COMPONENT_PISTOL50_CLIP_02", - "hash": -640439150, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_PISTOL50_Mag2", - "clipSize": 12, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_P50_CLIP2" - }, - { - "nameHash": "COMPONENT_ASSAULTSMG_CLIP_01", - "hash": -1928132688, - "type": "CWeaponComponentClipInfo", - "model": "W_SB_ASSAULTSMG_Mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTSMG_CLIP_02", - "hash": -1152981993, - "type": "CWeaponComponentClipInfo", - "model": "W_SB_ASSAULTSMG_Mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPSHOTGUN_CLIP_01", - "hash": -917613298, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 14, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE", - "hash": 930927479, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_AR_AdvancedRifle_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_APPISTOL_VARMOD_LUXE", - "hash": -1686714580, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_PI_APPistol_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_VARMOD_LUXE", - "hash": 1319990579, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_AR_AssaultRifle_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_VARMOD_LUXE", - "hash": -660892072, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_AR_CarbineRifle_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_VARMOD_LUXE", - "hash": -684126074, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_PI_Pistol_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL50_VARMOD_LUXE", - "hash": 2008591151, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_PI_Pistol50_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MICROSMG_VARMOD_LUXE", - "hash": 1215999497, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_SB_MicroSMG_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE", - "hash": -2052698631, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_SG_Sawnoff_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_VARMOD_LUXE", - "hash": 663170192, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_SB_SMG_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNIPERRIFLE_VARMOD_LUXE", - "hash": 1077065191, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_SR_SniperRifle_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER", - "hash": 663517359, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_sb_assaultsmg_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_VARMOD_LOWRIDER", - "hash": -1828795171, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_mg_combatmg_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER", - "hash": -966439566, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_pi_combatpistol_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MG_VARMOD_LOWRIDER", - "hash": -690308418, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_mg_mg_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER", - "hash": -1562927653, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_sg_pumpshotgun_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_CLIP_03", - "hash": -604986051, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultrifle_boxmag", - "clipSize": 100, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_CLIP_03", - "hash": -1167922891, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbinerifle_boxmag", - "clipSize": 100, - "gxtName": "WCT_CLIP_BOX", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_COMBATPDW_CLIP_03", - "hash": 1857603803, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_pdw_boxmag", - "clipSize": 100, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_COMPACTRIFLE_CLIP_03", - "hash": -972590066, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultrifle_boxmag", - "clipSize": 100, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_HEAVYSHOTGUN_CLIP_03", - "hash": -2000168365, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_heavyshotgun_boxmag", - "clipSize": 30, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_MACHINEPISTOL_CLIP_03", - "hash": -1444295948, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_compactsmg_boxmag", - "clipSize": 30, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_SMG_CLIP_03", - "hash": 2043113590, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smg_boxmag", - "clipSize": 100, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_CLIP_03", - "hash": 1801039530, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbine_boxmag", - "clipSize": 100, - "gxtName": "WCT_CLIP_DRM", - "gxtDescription": "WCD_CLIP3" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "type": "CWeaponComponentInfo", - "model": "", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HOMINGLAUNCHER_CLIP_01", - "hash": -132960961, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 1, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO", - "hash": -1371515465, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_02", - "hash": -1190793877, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_03", - "hash": -1497085720, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_04", - "hash": -1803148180, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_05", - "hash": -1975971886, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_06", - "hash": 36929477, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_07", - "hash": -268444834, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_08", - "hash": -574769446, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_09", - "hash": -882699739, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_10", - "hash": -1468181474, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01", - "hash": -974541230, - "type": "CWeaponComponentInfo", - "model": "w_ar_bullpupriflemk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_01", - "hash": 25766362, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_bullpupriflemk2_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_02", - "hash": -273676760, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_bullpupriflemk2_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING", - "hash": -89655827, - "type": "CWeaponComponentClipInfo", - "model": "W_AR_BullpupRifleMK2_Mag_AP", - "clipSize": 20, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ", - "hash": 1130501904, - "type": "CWeaponComponentClipInfo", - "model": "W_AR_BullpupRifleMK2_Mag_FMJ", - "clipSize": 20, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY", - "hash": -1449330342, - "type": "CWeaponComponentClipInfo", - "model": "W_AR_BullpupRifleMK2_Mag_INC", - "clipSize": 20, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER", - "hash": -2111807319, - "type": "CWeaponComponentClipInfo", - "model": "W_AR_BullpupRifleMK2_Mag_TR", - "clipSize": 30, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_AT_BP_BARREL_01", - "hash": 1704640795, - "type": "CWeaponComponentInfo", - "model": "W_AR_BP_MK2_Barrel1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_BP_BARREL_02", - "hash": 1005743559, - "type": "CWeaponComponentInfo", - "model": "W_AR_BP_MK2_Barrel2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_DOUBLEACTION_CLIP_01", - "hash": 1328622785, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_wep1_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_REV_DA_CLIP" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO", - "hash": -1869284448, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_02", - "hash": 1931539634, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_03", - "hash": 1624199183, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_04", - "hash": -26834113, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_05", - "hash": -210406055, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_06", - "hash": 423313640, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_07", - "hash": 276639596, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_08", - "hash": -991356863, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_09", - "hash": -1682848301, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_10", - "hash": 996213771, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01", - "hash": -1214048550, - "type": "CWeaponComponentInfo", - "model": "w_sr_marksmanriflemk2_camo_ind", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_01", - "hash": -1797182002, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanriflemk2_mag1", - "clipSize": 8, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_02", - "hash": -422587990, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanriflemk2_mag2", - "clipSize": 16, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING", - "hash": -193998727, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanriflemk2_mag_ap", - "clipSize": 5, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ", - "hash": -515203373, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanriflemk2_mag_fmj", - "clipSize": 5, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY", - "hash": 1842849902, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanriflemk2_mag_inc", - "clipSize": 5, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER", - "hash": -679861550, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanriflemk2_mag_tr", - "clipSize": 8, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_AT_MRFL_BARREL_01", - "hash": 941317513, - "type": "CWeaponComponentInfo", - "model": "w_sr_mr_mk2_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_MRFL_BARREL_02", - "hash": 1748450780, - "type": "CWeaponComponentInfo", - "model": "w_sr_mr_mk2_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO", - "hash": -474112444, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_02", - "hash": 387223451, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_03", - "hash": 617753366, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_04", - "hash": -222378256, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_05", - "hash": 8741501, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_06", - "hash": -601286203, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_07", - "hash": -511433605, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_08", - "hash": -655387818, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_09", - "hash": -282476598, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_10", - "hash": 1739501925, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01", - "hash": 1178671645, - "type": "CWeaponComponentInfo", - "model": "w_sg_pumpshotgunmk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_01", - "hash": -845938367, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_pumpshotgunmk2_mag1", - "clipSize": 8, - "gxtName": "WCT_SHELL", - "gxtDescription": "WCD_SHELL" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING", - "hash": 1315288101, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_pumpshotgunmk2_mag_ap", - "clipSize": 8, - "gxtName": "WCT_SHELL_AP", - "gxtDescription": "WCD_SHELL_AP" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE", - "hash": 1004815965, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_pumpshotgunmk2_mag_exp", - "clipSize": 8, - "gxtName": "WCT_SHELL_EX", - "gxtDescription": "WCD_SHELL_EX" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT", - "hash": -380098265, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_pumpshotgunmk2_mag_hp", - "clipSize": 8, - "gxtName": "WCT_SHELL_HP", - "gxtDescription": "WCD_SHELL_HP" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY", - "hash": -1618338827, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_pumpshotgunmk2_mag_inc", - "clipSize": 8, - "gxtName": "WCT_SHELL_INC", - "gxtDescription": "WCD_SHELL_INC" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO", - "hash": -1069552225, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_02", - "hash": 11918884, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_03", - "hash": 176157112, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_04", - "hash": -220052855, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_05", - "hash": 288456487, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_06", - "hash": 398658626, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_07", - "hash": 628697006, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_08", - "hash": 925911836, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_09", - "hash": 1222307441, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_10", - "hash": 552442715, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_IND_01", - "hash": -648943513, - "type": "CWeaponComponentInfo", - "model": "w_pi_revolvermk2_camo_ind", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_01", - "hash": -1172055874, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_revolvermk2_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1_RV", - "gxtDescription": "WCD_CLIP1_RV" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_FMJ", - "hash": 231258687, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_revolvermk2_mag5", - "clipSize": 6, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ_RV" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT", - "hash": 284438159, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_revolvermk2_mag2", - "clipSize": 6, - "gxtName": "WCT_CLIP_HP", - "gxtDescription": "WCD_CLIP_HP_RV" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY", - "hash": 15712037, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_revolvermk2_mag3", - "clipSize": 6, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC_RV" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_TRACER", - "hash": -958864266, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_revolvermk2_mag4", - "clipSize": 6, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR_RV" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO", - "hash": 259780317, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE", - "hash": -403805974, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_02", - "hash": -1973342474, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE", - "hash": 691432737, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_03", - "hash": 1996130345, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE", - "hash": 987648331, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_04", - "hash": -1455657812, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE", - "hash": -431680535, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_05", - "hash": -1668263084, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE", - "hash": -847582310, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_06", - "hash": 1308243489, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE", - "hash": -92592218, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_07", - "hash": 1122574335, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE", - "hash": -494548326, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_08", - "hash": 1420313469, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE", - "hash": 730876697, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_09", - "hash": 109848390, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE", - "hash": 583159708, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_10", - "hash": 593945703, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_Camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE", - "hash": -1928503603, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMk2_SL_Camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_IND_01", - "hash": 1142457062, - "type": "CWeaponComponentInfo", - "model": "w_pi_sns_pistolmk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE", - "hash": 520557834, - "type": "CWeaponComponentInfo", - "model": "W_PI_SNS_PistolMK2_SL_Camo_Ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_01", - "hash": 21392614, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_sns_pistolmk2_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_02", - "hash": -829683854, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_sns_pistolmk2_mag2", - "clipSize": 12, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_FMJ", - "hash": -1055790298, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_SNS_PistolMK2_Mag_FMJ", - "clipSize": 6, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ_RV" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT", - "hash": -1928301566, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_SNS_PistolMK2_Mag_HP", - "clipSize": 6, - "gxtName": "WCT_CLIP_HP", - "gxtDescription": "WCD_CLIP_HP_RV" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY", - "hash": -424845447, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_SNS_PistolMK2_Mag_INC", - "clipSize": 6, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC_NS" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_TRACER", - "hash": -1876057490, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_SNS_PistolMK2_Mag_TR", - "clipSize": 6, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR_RV" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO", - "hash": -737430213, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_02", - "hash": 1125852043, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_03", - "hash": 886015732, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_04", - "hash": -1262287139, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_05", - "hash": -295208411, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_06", - "hash": -544154504, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_07", - "hash": 172765678, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_08", - "hash": -1982877449, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_09", - "hash": 2072122460, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_10", - "hash": -1986220171, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01", - "hash": 1377355801, - "type": "CWeaponComponentInfo", - "model": "w_ar_specialcarbinemk2_camo_ind", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_01", - "hash": 382112385, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbinemk2_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_02", - "hash": -568352468, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbinemk2_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING", - "hash": 1362433589, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbinemk2_mag_ap", - "clipSize": 20, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ", - "hash": 1346235024, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbinemk2_mag_fmj", - "clipSize": 20, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY", - "hash": -570355066, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbinemk2_mag_inc", - "clipSize": 20, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER", - "hash": -2023373174, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbinemk2_mag_tr", - "clipSize": 30, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_AT_SC_BARREL_01", - "hash": -415870039, - "type": "CWeaponComponentInfo", - "model": "w_ar_sc_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_SC_BARREL_02", - "hash": -109086661, - "type": "CWeaponComponentInfo", - "model": "w_ar_sc_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_AT_PI_COMP_02", - "hash": -1434287169, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_pi_comp_2", - "gxtName": "WCT_COMP", - "gxtDescription": "WCD_COMP" - }, - { - "nameHash": "COMPONENT_AT_PI_COMP_03", - "hash": 654802123, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_pi_comp_3", - "gxtName": "WCT_COMP", - "gxtDescription": "WCD_COMP" - }, - { - "nameHash": "COMPONENT_AT_PI_RAIL_02", - "hash": 1205768792, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_pi_rail_2", - "gxtName": "WCT_SCOPE_PI", - "gxtDescription": "WCD_SCOPE_PI" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH_03", - "hash": 1246324211, - "type": "CWeaponComponentFlashLightInfo", - "model": "w_at_pi_snsmk2_flsh_1", - "gxtName": "WCT_FLASH", - "gxtDescription": "WCD_FLASH" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2", - "hash": 1528590652, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_large", - "gxtName": "WCT_SCOPE_LRG2", - "gxtDescription": "WCD_SCOPE_LRF" - }, - { - "nameHash": "COMPONENT_RAYPISTOL_VARMOD_XMAS18", - "hash": -673450233, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_pi_raygun_ev", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_01", - "hash": -2045758401, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultriflemk2_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_02", - "hash": -785724817, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultriflemk2_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING", - "hash": -1478681000, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultriflemk2_mag_ap", - "clipSize": 20, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ", - "hash": 1675665560, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultriflemk2_mag_fmj", - "clipSize": 20, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY", - "hash": -76490669, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultriflemk2_mag_inc", - "clipSize": 20, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER", - "hash": -282298175, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultriflemk2_mag_tr", - "clipSize": 30, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_01", - "hash": 1283078430, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbineriflemk2_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_02", - "hash": 1574296533, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbineriflemk2_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING", - "hash": 626875735, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbineriflemk2_mag_ap", - "clipSize": 20, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ", - "hash": 1141059345, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbineriflemk2_mag_fmj", - "clipSize": 20, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY", - "hash": 1025884839, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbineriflemk2_mag_inc", - "clipSize": 20, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER", - "hash": 391640422, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_carbineriflemk2_mag_tr", - "clipSize": 30, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_01", - "hash": 1227564412, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmgmk2_mag1", - "clipSize": 100, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_02", - "hash": 400507625, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmgmk2_mag2", - "clipSize": 200, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING", - "hash": 696788003, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmgmk2_mag_ap", - "clipSize": 80, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_FMJ", - "hash": 1475288264, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmgmk2_mag_fmj", - "clipSize": 80, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY", - "hash": -1020871238, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmgmk2_mag_inc", - "clipSize": 80, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_TRACER", - "hash": -161179835, - "type": "CWeaponComponentClipInfo", - "model": "w_mg_combatmgmk2_mag_tr", - "clipSize": 100, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_01", - "hash": -98690520, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysnipermk2_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_02", - "hash": 752418717, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysnipermk2_mag2", - "clipSize": 8, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING", - "hash": -130689324, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysnipermk2_mag_ap", - "clipSize": 4, - "gxtName": "WCT_CLIP_AP", - "gxtDescription": "WCD_CLIP_AP" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE", - "hash": -1981031769, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysnipermk2_mag_ap2", - "clipSize": 4, - "gxtName": "WCT_CLIP_EX", - "gxtDescription": "WCD_CLIP_EX" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ", - "hash": 1005144310, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysnipermk2_mag_fmj", - "clipSize": 4, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY", - "hash": 247526935, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_heavysnipermk2_mag_inc", - "clipSize": 4, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_01", - "hash": -1795936926, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistolmk2_mag1", - "clipSize": 12, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_02", - "hash": 1591132456, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistolmk2_mag2", - "clipSize": 16, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_FMJ", - "hash": 1329061674, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistolmk2_mag_fmj", - "clipSize": 8, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT", - "hash": -2046910199, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistolmk2_mag_hp", - "clipSize": 8, - "gxtName": "WCT_CLIP_HP", - "gxtDescription": "WCD_CLIP_HP" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_INCENDIARY", - "hash": 733837882, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistolmk2_mag_inc", - "clipSize": 8, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_TRACER", - "hash": 634039983, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_pistolmk2_mag_tr", - "clipSize": 12, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_01", - "hash": 1277460590, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smgmk2_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CLIP1" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_02", - "hash": -1182573778, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smgmk2_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CLIP2" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_FMJ", - "hash": 190476639, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smgmk2_mag_fmj", - "clipSize": 20, - "gxtName": "WCT_CLIP_FMJ", - "gxtDescription": "WCD_CLIP_FMJ" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT", - "hash": 974903034, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smgmk2_mag_hp", - "clipSize": 20, - "gxtName": "WCT_CLIP_HP", - "gxtDescription": "WCD_CLIP_HP" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_INCENDIARY", - "hash": -644734235, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smgmk2_mag_inc", - "clipSize": 20, - "gxtName": "WCT_CLIP_INC", - "gxtDescription": "WCD_CLIP_INC" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_TRACER", - "hash": 2146055916, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_smgmk2_mag_tr", - "clipSize": 30, - "gxtName": "WCT_CLIP_TR", - "gxtDescription": "WCD_CLIP_TR" - }, - { - "nameHash": "COMPONENT_AT_AR_BARREL_01", - "hash": 1134861606, - "type": "CWeaponComponentInfo", - "model": "w_at_ar_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_AR_BARREL_02", - "hash": 1447477866, - "type": "CWeaponComponentInfo", - "model": "w_at_ar_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_AT_CR_BARREL_01", - "hash": -2093598721, - "type": "CWeaponComponentInfo", - "model": "w_at_cr_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_CR_BARREL_02", - "hash": -1958983669, - "type": "CWeaponComponentInfo", - "model": "w_at_cr_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_AT_MG_BARREL_01", - "hash": -1018236364, - "type": "CWeaponComponentInfo", - "model": "w_at_mg_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_MG_BARREL_02", - "hash": -1243457701, - "type": "CWeaponComponentInfo", - "model": "w_at_mg_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_AT_SB_BARREL_01", - "hash": -653246751, - "type": "CWeaponComponentInfo", - "model": "w_at_sb_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_SB_BARREL_02", - "hash": -1520117877, - "type": "CWeaponComponentInfo", - "model": "w_at_sb_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_AT_SR_BARREL_01", - "hash": -1869205321, - "type": "CWeaponComponentInfo", - "model": "w_at_sr_barrel_1", - "gxtName": "WCT_BARR", - "gxtDescription": "WCD_BARR" - }, - { - "nameHash": "COMPONENT_AT_SR_BARREL_02", - "hash": 277524638, - "type": "CWeaponComponentInfo", - "model": "w_at_sr_barrel_2", - "gxtName": "WCT_BARR2", - "gxtDescription": "WCD_BARR2" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO", - "hash": -1860492113, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_02", - "hash": 937772107, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_03", - "hash": 1401650071, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_04", - "hash": 628662130, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_05", - "hash": -985047251, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_06", - "hash": -812944463, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_07", - "hash": -1447352303, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_08", - "hash": -60338860, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_09", - "hash": 2088750491, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_10", - "hash": -1513913454, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01", - "hash": -1179558480, - "type": "CWeaponComponentInfo", - "model": "w_at_armk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO", - "hash": 1272803094, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_02", - "hash": 1080719624, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_03", - "hash": 792221348, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_04", - "hash": -452181427, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_05", - "hash": -746774737, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_06", - "hash": -2044296061, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_07", - "hash": -199171978, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_08", - "hash": -1428075016, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_09", - "hash": -1735153315, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_10", - "hash": 1796459838, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01", - "hash": -631911105, - "type": "CWeaponComponentInfo", - "model": "w_ar_carbineriflemk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO", - "hash": 1249283253, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_02", - "hash": -857707587, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_03", - "hash": -1097543898, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_04", - "hash": 1980349969, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_05", - "hash": 1219453777, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_06", - "hash": -1853459190, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_07", - "hash": -2074781016, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_08", - "hash": 457967755, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_09", - "hash": 235171324, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_10", - "hash": 42685294, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_IND_01", - "hash": -687617715, - "type": "CWeaponComponentInfo", - "model": "w_mg_combatmgmk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO", - "hash": -996700057, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_02", - "hash": 940943685, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_03", - "hash": 1263226800, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_04", - "hash": -328035840, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_05", - "hash": 1224100642, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_06", - "hash": 899228776, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_07", - "hash": 616006309, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_08", - "hash": -1561952511, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_09", - "hash": 572063080, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_10", - "hash": 1170588613, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_IND_01", - "hash": 966612367, - "type": "CWeaponComponentInfo", - "model": "w_at_smgmk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_SLIDE", - "hash": -1258515792, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO", - "hash": 1550611612, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_02_SLIDE", - "hash": 438243936, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo2", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_02", - "hash": 368550800, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_03_SLIDE", - "hash": -455079056, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo3", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_03", - "hash": -1769069349, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_04_SLIDE", - "hash": 740920107, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo4", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_04", - "hash": 24902297, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_05_SLIDE", - "hash": -541616347, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo5", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_05", - "hash": -228041614, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_06_SLIDE", - "hash": 1809261196, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo6", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_06", - "hash": -584961562, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_07_SLIDE", - "hash": -1646538868, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo7", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_07", - "hash": -1153175946, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_08_SLIDE", - "hash": -1290164948, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo8", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_08", - "hash": 1301287696, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_09_SLIDE", - "hash": -964465134, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo9", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_09", - "hash": 1597093459, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_10_SLIDE", - "hash": 1135718771, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Slide_Camo10", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_10", - "hash": 1769871776, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE", - "hash": 1253942266, - "type": "CWeaponComponentInfo", - "model": "W_PI_PistolMK2_Camo_Sl_Ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_IND_01", - "hash": -1827882671, - "type": "CWeaponComponentInfo", - "model": "w_pi_pistolmk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO", - "hash": -130843390, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo1", - "gxtName": "WCT_CAMO_1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_02", - "hash": -977347227, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo2", - "gxtName": "WCT_CAMO_2", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_03", - "hash": -378461067, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo3", - "gxtName": "WCT_CAMO_3", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_04", - "hash": 329939175, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo4", - "gxtName": "WCT_CAMO_4", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_05", - "hash": 643374672, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo5", - "gxtName": "WCT_CAMO_5", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_06", - "hash": 807875052, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo6", - "gxtName": "WCT_CAMO_6", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_07", - "hash": -1401804168, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo7", - "gxtName": "WCT_CAMO_7", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_08", - "hash": -1096495395, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo8", - "gxtName": "WCT_CAMO_8", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_09", - "hash": -847811454, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo9", - "gxtName": "WCT_CAMO_9", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_10", - "hash": -1413108537, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo10", - "gxtName": "WCT_CAMO_10", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01", - "hash": 1815270123, - "type": "CWeaponComponentInfo", - "model": "w_at_heavysnipermk2_camo_ind1", - "gxtName": "WCT_CAMO_IND", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH_02", - "hash": 1140676955, - "type": "CWeaponComponentFlashLightInfo", - "model": "w_at_pi_flsh_2", - "gxtName": "WCT_FLASH", - "gxtDescription": "WCD_FLASH" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "type": "CWeaponComponentInfo", - "model": "w_at_afgrip_2", - "gxtName": "WCT_GRIP", - "gxtDescription": "WCD_GRIP" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_1", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_2", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_3", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_4", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_5", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_6", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_7", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_08", - "hash": 1602080333, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_8", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ_SR" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_09", - "hash": 1764221345, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_muzzle_9", - "gxtName": "WCT_MUZZ", - "gxtDescription": "WCD_MUZZ_SR" - }, - { - "nameHash": "COMPONENT_AT_PI_COMP", - "hash": 568543123, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_pi_comp_1", - "gxtName": "WCT_COMP", - "gxtDescription": "WCD_COMP" - }, - { - "nameHash": "COMPONENT_AT_PI_RAIL", - "hash": -1898661008, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_pi_rail_1", - "gxtName": "WCT_SCOPE_PI", - "gxtDescription": "WCD_SCOPE_PI" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_MK2", - "hash": 77277509, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_macro", - "gxtName": "WCT_SCOPE_MAC2", - "gxtDescription": "WCD_SCOPE_MAC" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_02_MK2", - "hash": -944910075, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_macro_2", - "gxtName": "WCT_SCOPE_MAC2", - "gxtDescription": "WCD_SCOPE_MAC" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2", - "hash": -452809877, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_macro_2_mk2", - "gxtName": "WCT_SCOPE_MAC2", - "gxtDescription": "WCD_SCOPE_MAC" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_MK2", - "hash": 1060929921, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_small", - "gxtName": "WCT_SCOPE_SML2", - "gxtDescription": "WCD_SCOPE_SML" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_SMG_MK2", - "hash": 1038927834, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_small_mk2", - "gxtName": "WCT_SCOPE_SML2", - "gxtDescription": "WCD_SCOPE_SML" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM_MK2", - "hash": -966040254, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_medium_2", - "gxtName": "WCT_SCOPE_MED2", - "gxtDescription": "WCD_SCOPE_MED" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE_MK2", - "hash": -2101279869, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_large", - "gxtName": "WCT_SCOPE_LRG2", - "gxtDescription": "WCD_SCOPE_LRG" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_NV", - "hash": -1233121104, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_nv", - "gxtName": "WCT_SCOPE_NV", - "gxtDescription": "WCD_SCOPE_NV" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_THERMAL", - "hash": 776198721, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_nv", - "gxtName": "WCT_SCOPE_TH", - "gxtDescription": "WCD_SCOPE_TH" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_sights_1", - "gxtName": "WCT_HOLO", - "gxtDescription": "WCD_HOLO" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS_SMG", - "hash": -1613015470, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_sights_smg", - "gxtName": "WCT_HOLO", - "gxtDescription": "WCD_HOLO" - }, - { - "nameHash": "COMPONENT_AT_SR_SUPP_03", - "hash": -1404903567, - "type": "CWeaponComponentSuppressorInfo", - "model": "w_at_sr_supp3", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_SR_SUPP" - }, - { - "nameHash": "COMPONENT_FLASHLIGHT_LIGHT", - "hash": -575194865, - "type": "CWeaponComponentFlashLightInfo", - "model": "w_me_flashlight_flash", - "gxtName": "WCT_FLASH", - "gxtDescription": "WCD_FLASH" - }, - { - "nameHash": "COMPONENT_FLAREGUN_CLIP_01", - "hash": -1813398119, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_flaregun_mag1", - "clipSize": 1, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCT_INVALID" - }, - { - "nameHash": "COMPONENT_CERAMICPISTOL_CLIP_01", - "hash": 1423184737, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_Ceramic_Mag1", - "clipSize": 12, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_P_CLIP1" - }, - { - "nameHash": "COMPONENT_CERAMICPISTOL_CLIP_02", - "hash": -2122814295, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_sns_pistol_mag2", - "clipSize": 17, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_P_CLIP2" - }, - { - "nameHash": "COMPONENT_CERAMICPISTOL_SUPP", - "hash": -1828202758, - "type": "CWeaponComponentSuppressorInfo", - "model": "W_PI_Ceramic_Supp", - "gxtName": "WCT_SUPP", - "gxtDescription": "WCD_PI_SUPP" - }, - { - "nameHash": "COMPONENT_NAVYREVOLVER_CLIP_01", - "hash": -1738620313, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_wep2_gun_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_REV_NV_CLIP" - }, - { - "nameHash": "COMPONENT_MACHINEPISTOL_CLIP_01", - "hash": 1198425599, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_compactsmg_mag1", - "clipSize": 12, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_MCHP_CLIP1" - }, - { - "nameHash": "COMPONENT_MACHINEPISTOL_CLIP_02", - "hash": -1188271751, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_compactsmg_mag2", - "clipSize": 20, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_MCHP_CLIP2" - }, - { - "nameHash": "COMPONENT_COMPACTRIFLE_CLIP_01", - "hash": 1363085923, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultrifle_smg_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_CMPR_CLIP1" - }, - { - "nameHash": "COMPONENT_COMPACTRIFLE_CLIP_02", - "hash": 1509923832, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_assaultrifle_smg_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_CMPR_CLIP2" - }, - { - "nameHash": "COMPONENT_DBSHOTGUN_CLIP_01", - "hash": 703231006, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_doublebarrel_mag1", - "clipSize": 2, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_COMBATPDW_CLIP_01", - "hash": 1125642654, - "type": "CWeaponComponentClipInfo", - "model": "W_SB_PDW_Mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_PDW_CLIP1" - }, - { - "nameHash": "COMPONENT_COMBATPDW_CLIP_02", - "hash": 860508675, - "type": "CWeaponComponentClipInfo", - "model": "W_SB_PDW_Mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_PDW_CLIP2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_CLIP_01", - "hash": -125817127, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_sns_pistol_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_SNSP_CLIP1" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_CLIP_02", - "hash": 2063610803, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_sns_pistol_mag2", - "clipSize": 12, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_SNSP_CLIP2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_VARMOD_LOWRIDER", - "hash": -2144080721, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_pi_sns_pistol_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANPISTOL_CLIP_01", - "hash": -878820883, - "type": "CWeaponComponentClipInfo", - "model": "W_PI_SingleShot_Shell", - "clipSize": 1, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_BASE", - "hash": -213504205, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_PIMP", - "hash": -971770235, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_02", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_BALLAS", - "hash": -287703709, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_BG", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_DOLLAR", - "hash": 1351683121, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_DLR", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_DIAMOND", - "hash": -1755194916, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_DMD", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_HATE", - "hash": 2112683568, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_HT", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_LOVE", - "hash": 1062111910, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_LV", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_PLAYER", - "hash": 146278587, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_PC", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_KING", - "hash": -494162961, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_SLG", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_VAGOS", - "hash": 2062808965, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_ME_Knuckle_VG", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_HEAVYPISTOL_CLIP_01", - "hash": 222992026, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_heavypistol_mag1", - "clipSize": 18, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_HPST_CLIP1" - }, - { - "nameHash": "COMPONENT_HEAVYPISTOL_CLIP_02", - "hash": 1694090795, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_heavypistol_mag2", - "clipSize": 36, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_HPST_CLIP2" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_CLIP_01", - "hash": -959978111, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbine_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_SCRB_CLIP1" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_CLIP_02", - "hash": 2089537806, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_specialcarbine_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_SCRB_CLIP2" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_CLIP_01", - "hash": -979292288, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_bullpuprifle_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_BRIF_CLIP1" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_CLIP_02", - "hash": -1284994289, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_bullpuprifle_mag2", - "clipSize": 60, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_BRIF_CLIP2" - }, - { - "nameHash": "COMPONENT_VINTAGEPISTOL_CLIP_01", - "hash": 1168357051, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_vintage_pistol_mag1", - "clipSize": 7, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_VPST_CLIP1" - }, - { - "nameHash": "COMPONENT_VINTAGEPISTOL_CLIP_02", - "hash": 867832552, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_vintage_pistol_mag2", - "clipSize": 14, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_VPST_CLIP2" - }, - { - "nameHash": "COMPONENT_FIREWORK_CLIP_01", - "hash": -454770035, - "type": "CWeaponComponentClipInfo", - "model": "", - "clipSize": 1, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MUSKET_CLIP_01", - "hash": 1322387263, - "type": "CWeaponComponentClipInfo", - "model": "P_CS_Joint_02", - "clipSize": 1, - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM", - "hash": 471997210, - "type": "CWeaponComponentScopeInfo", - "model": "w_at_scope_large", - "gxtName": "WCT_SCOPE_LRG", - "gxtDescription": "WCD_SCOPE_LRF" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_CLIP_01", - "hash": -667205311, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanrifle_mag1", - "clipSize": 8, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_MKRF_CLIP1" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_CLIP_02", - "hash": -855823675, - "type": "CWeaponComponentClipInfo", - "model": "w_sr_marksmanrifle_mag2", - "clipSize": 16, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_MKRF_CLIP2" - }, - { - "nameHash": "COMPONENT_HEAVYSHOTGUN_CLIP_01", - "hash": 844049759, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_heavyshotgun_mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_HVSG_CLIP1" - }, - { - "nameHash": "COMPONENT_HEAVYSHOTGUN_CLIP_02", - "hash": -1759709443, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_heavyshotgun_mag2", - "clipSize": 12, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_HVSG_CLIP2" - }, - { - "nameHash": "COMPONENT_GUSENBERG_CLIP_01", - "hash": 484812453, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_gusenberg_mag1", - "clipSize": 30, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_GSNB_CLIP1" - }, - { - "nameHash": "COMPONENT_GUSENBERG_CLIP_02", - "hash": -355941776, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_gusenberg_mag2", - "clipSize": 50, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_GSNB_CLIP2" - }, - { - "nameHash": "COMPONENT_RAILGUN_CLIP_01", - "hash": 59044840, - "type": "CWeaponComponentClipInfo", - "model": "w_ar_railgun_mag1", - "clipSize": 1, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_RLGN_CLIP1" - }, - { - "nameHash": "COMPONENT_HEAVYPISTOL_VARMOD_LUXE", - "hash": 2053798779, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_PI_HeavyPistol_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER", - "hash": 1929467122, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_ar_specialcarbine_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_VARMOD_LOW", - "hash": -1470645128, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_ar_bullpuprifle_luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_VARMOD_LUXE", - "hash": 371102273, - "type": "CWeaponComponentVariantModelInfo", - "model": "W_SR_MarksmanRifle_Luxe", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_CLIP_01", - "hash": -377062173, - "type": "CWeaponComponentClipInfo", - "model": "w_pi_revolver_Mag1", - "clipSize": 6, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_REV_CLIP1" - }, - { - "nameHash": "COMPONENT_REVOLVER_VARMOD_BOSS", - "hash": 384708672, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_pi_revolver_b", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_REVOLVER_VARMOD_GOON", - "hash": -1802258419, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_pi_revolver_g", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SWITCHBLADE_VARMOD_BASE", - "hash": -1858624256, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_me_switchblade", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SWITCHBLADE_VARMOD_VAR1", - "hash": 1530822070, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_me_switchblade_b", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_SWITCHBLADE_VARMOD_VAR2", - "hash": -409758110, - "type": "CWeaponComponentVariantModelInfo", - "model": "w_me_switchblade_g", - "gxtName": "WCT_INVALID", - "gxtDescription": "WCD_INVALID" - }, - { - "nameHash": "COMPONENT_AUTOSHOTGUN_CLIP_01", - "hash": 169463950, - "type": "CWeaponComponentClipInfo", - "model": "w_sg_sweeper_mag1", - "clipSize": 10, - "gxtName": "WCT_CLIP1", - "gxtDescription": "" - }, - { - "nameHash": "COMPONENT_COMPACTLAUNCHER_CLIP_01", - "hash": 1235472140, - "type": "CWeaponComponentClipInfo", - "model": "w_lr_compactgl_mag1", - "clipSize": 1, - "gxtName": "WCT_CLIP1", - "gxtDescription": "" - }, - { - "nameHash": "COMPONENT_MINISMG_CLIP_01", - "hash": -2067221805, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_minismg_mag1", - "clipSize": 20, - "gxtName": "WCT_CLIP1", - "gxtDescription": "WCD_SCRP_CLIP1" - }, - { - "nameHash": "COMPONENT_MINISMG_CLIP_02", - "hash": -1820405577, - "type": "CWeaponComponentClipInfo", - "model": "w_sb_minismg_mag2", - "clipSize": 30, - "gxtName": "WCT_CLIP2", - "gxtDescription": "WCD_SCRP_CLIP2" - } -] \ No newline at end of file diff --git a/tools/data/weaponized_vehicles.json b/tools/data/weaponized_vehicles.json deleted file mode 100644 index f9b25ea..0000000 --- a/tools/data/weaponized_vehicles.json +++ /dev/null @@ -1,979 +0,0 @@ -[ - { - "nameHash": "firetruk", - "hash": 1938952078, - "weapons": [ - "VEHICLE_WEAPON_WATER_CANNON" - ] - }, - { - "nameHash": "LAZER", - "hash": -1281684762, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_LAZER", - "VEHICLE_WEAPON_PLANE_ROCKET" - ] - }, - { - "nameHash": "SPMED", - "hash": -779089335, - "weapons": [ - "VEHICLE_WEAPON_ENEMY_LASER" - ] - }, - { - "nameHash": "SPSMALL", - "hash": -1289793643, - "weapons": [ - "VEHICLE_WEAPON_ENEMY_LASER" - ] - }, - { - "nameHash": "BULLDOZE", - "hash": 1854557578, - "weapons": [] - }, - { - "nameHash": "RHINO", - "hash": 782665360, - "weapons": [ - "VEHICLE_WEAPON_TANK" - ] - }, - { - "nameHash": "DINGHY", - "hash": 1033245328, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "DINGHY2", - "hash": 276773164, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "predator", - "hash": -488123221, - "weapons": [ - "VEHICLE_WEAPON_RADAR" - ] - }, - { - "nameHash": "ANNIHL", - "hash": -1890589379, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_BUZZARD", - "VEHICLE_WEAPON_SPACE_ROCKET" - ] - }, - { - "nameHash": "BUZZARD", - "hash": 788747387, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_BUZZARD", - "VEHICLE_WEAPON_SPACE_ROCKET", - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "BUZZARD2", - "hash": 745926877, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "FROGGER", - "hash": 744705981, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "MAVERICK", - "hash": -1660661558, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "polmav", - "hash": 353883353, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "INSURGENT", - "hash": -1860900134, - "weapons": [ - "VEHICLE_WEAPON_TURRET_INSURGENT" - ] - }, - { - "nameHash": "INSURGENT2", - "hash": 2071877360, - "weapons": [ - "VEHICLE_WEAPON_TURRET_INSURGENT" - ] - }, - { - "nameHash": "BRUISER", - "hash": 668439077, - "weapons": [ - "VEHICLE_WEAPON_BRUISER_50CAL" - ] - }, - { - "nameHash": "BRUISER2", - "hash": -1694081890, - "weapons": [ - "VEHICLE_WEAPON_BRUISER_50CAL", - "VEHICLE_WEAPON_BRUISER2_50CAL_LASER" - ] - }, - { - "nameHash": "BRUTUS", - "hash": 2139203625, - "weapons": [ - "VEHICLE_WEAPON_BRUTUS_50CAL" - ] - }, - { - "nameHash": "BRUTUS2", - "hash": -1890996696, - "weapons": [ - "VEHICLE_WEAPON_BRUTUS_50CAL", - "VEHICLE_WEAPON_BRUTUS2_50CAL_LASER" - ] - }, - { - "nameHash": "CERBERUS", - "hash": -801550069, - "weapons": [ - "VEHICLE_WEAPON_FLAMETHROWER", - "VEHICLE_WEAPON_FLAMETHROWER" - ] - }, - { - "nameHash": "CERBERUS2", - "hash": 679453769, - "weapons": [ - "VEHICLE_WEAPON_FLAMETHROWER_SCIFI", - "VEHICLE_WEAPON_FLAMETHROWER_SCIFI" - ] - }, - { - "nameHash": "DEATHBIKE", - "hash": -27326686, - "weapons": [ - "VEHICLE_WEAPON_DEATHBIKE_DUALMINIGUN" - ] - }, - { - "nameHash": "DEATHBIKE2", - "hash": -1812949672, - "weapons": [ - "VEHICLE_WEAPON_DEATHBIKE2_MINIGUN_LASER" - ] - }, - { - "nameHash": "DOMINATOR4", - "hash": -688189648, - "weapons": [ - "VEHICLE_WEAPON_DOMINATOR4_50CAL" - ] - }, - { - "nameHash": "DOMINATOR5", - "hash": -1375060657, - "weapons": [ - "VEHICLE_WEAPON_DOMINATOR4_50CAL", - "VEHICLE_WEAPON_DOMINATOR5_50CAL_LASER" - ] - }, - { - "nameHash": "IMPALER2", - "hash": 1009171724, - "weapons": [ - "VEHICLE_WEAPON_IMPALER2_50CAL" - ] - }, - { - "nameHash": "IMPALER3", - "hash": -1924800695, - "weapons": [ - "VEHICLE_WEAPON_IMPALER2_50CAL", - "VEHICLE_WEAPON_IMPALER3_50CAL_LASER" - ] - }, - { - "nameHash": "IMPERATOR", - "hash": 444994115, - "weapons": [ - "VEHICLE_WEAPON_IMPERATOR_50CAL", - "VEHICLE_WEAPON_MORTAR_KINETIC" - ] - }, - { - "nameHash": "IMPERATOR2", - "hash": 1637620610, - "weapons": [ - "VEHICLE_WEAPON_IMPERATOR_50CAL", - "VEHICLE_WEAPON_MORTAR_KINETIC", - "VEHICLE_WEAPON_IMPERATOR2_50CAL_LASER" - ] - }, - { - "nameHash": "ISSI4", - "hash": 628003514, - "weapons": [ - "VEHICLE_WEAPON_ISSI4_50CAL", - "VEHICLE_WEAPON_MORTAR_KINETIC" - ] - }, - { - "nameHash": "ISSI5", - "hash": 1537277726, - "weapons": [ - "VEHICLE_WEAPON_ISSI4_50CAL", - "VEHICLE_WEAPON_ISSI5_50CAL_LASER", - "VEHICLE_WEAPON_MORTAR_KINETIC" - ] - }, - { - "nameHash": "MONSTER3", - "hash": 1721676810, - "weapons": [ - "VEHICLE_WEAPON_MONSTER3_GLKIN" - ] - }, - { - "nameHash": "SCARAB", - "hash": -1146969353, - "weapons": [ - "VEHICLE_WEAPON_SCARAB_50CAL" - ] - }, - { - "nameHash": "SCARAB2", - "hash": 1542143200, - "weapons": [ - "VEHICLE_WEAPON_SCARAB_50CAL", - "VEHICLE_WEAPON_SCARAB2_50CAL_LASER" - ] - }, - { - "nameHash": "SLAMVAN4", - "hash": -2061049099, - "weapons": [ - "VEHICLE_WEAPON_SLAMVAN4_50CAL" - ] - }, - { - "nameHash": "SLAMVAN5", - "hash": 373261600, - "weapons": [ - "VEHICLE_WEAPON_SLAMVAN4_50CAL", - "VEHICLE_WEAPON_SLAMVAN5_50CAL_LASER" - ] - }, - { - "nameHash": "ZR380", - "hash": 540101442, - "weapons": [ - "VEHICLE_WEAPON_ZR380_50CAL" - ] - }, - { - "nameHash": "ZR3802", - "hash": -1106120762, - "weapons": [ - "VEHICLE_WEAPON_ZR380_50CAL", - "VEHICLE_WEAPON_ZR3802_50CAL_LASER" - ] - }, - { - "nameHash": "VOLATUS", - "hash": -1845487887, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "DUNE3", - "hash": 1897744184, - "weapons": [ - "VEHICLE_WEAPON_DUNE_MG", - "VEHICLE_WEAPON_DUNE_GRENADELAUNCHER", - "VEHICLE_WEAPON_DUNE_MINIGUN" - ] - }, - { - "nameHash": "TAMPA3", - "hash": -1210451983, - "weapons": [ - "VEHICLE_WEAPON_TAMPA_MISSILE", - "VEHICLE_WEAPON_TAMPA_MORTAR", - "VEHICLE_WEAPON_TAMPA_FIXEDMINIGUN", - "VEHICLE_WEAPON_TAMPA_DUALMINIGUN" - ] - }, - { - "nameHash": "HALFTRACK", - "hash": -32236122, - "weapons": [ - "VEHICLE_WEAPON_HALFTRACK_DUALMG", - "VEHICLE_WEAPON_HALFTRACK_QUADMG" - ] - }, - { - "nameHash": "APC", - "hash": 562680400, - "weapons": [ - "VEHICLE_WEAPON_APC_CANNON", - "VEHICLE_WEAPON_APC_MISSILE", - "VEHICLE_WEAPON_APC_MG", - "VEHICLE_WEAPON_APC_MG" - ] - }, - { - "nameHash": "ARDENT", - "hash": 159274291, - "weapons": [ - "VEHICLE_WEAPON_ARDENT_MG" - ] - }, - { - "nameHash": "TECHNICAL3", - "hash": 1356124575, - "weapons": [ - "VEHICLE_WEAPON_TURRET_TECHNICAL", - "VEHICLE_WEAPON_TECHNICAL_MINIGUN" - ] - }, - { - "nameHash": "INSURGENT3", - "hash": -1924433270, - "weapons": [ - "VEHICLE_WEAPON_TURRET_INSURGENT", - "VEHICLE_WEAPON_INSURGENT_MINIGUN" - ] - }, - { - "nameHash": "TRAILERSMALL2", - "hash": -1881846085, - "weapons": [ - "VEHICLE_WEAPON_TRAILER_QUADMG", - "VEHICLE_WEAPON_TRAILER_MISSILE", - "VEHICLE_WEAPON_TRAILER_DUALAA" - ] - }, - { - "nameHash": "NIGHTSHARK", - "hash": 433954513, - "weapons": [ - "VEHICLE_WEAPON_NIGHTSHARK_MG" - ] - }, - { - "nameHash": "OPPRESSOR", - "hash": 884483972, - "weapons": [ - "VEHICLE_WEAPON_OPPRESSOR_MG", - "VEHICLE_WEAPON_OPPRESSOR_MISSILE" - ] - }, - { - "nameHash": "TRAILERLARGE", - "hash": 1502869817, - "weapons": [ - "VEHICLE_WEAPON_MOBILEOPS_CANNON", - "VEHICLE_WEAPON_MOBILEOPS_CANNON", - "VEHICLE_WEAPON_MOBILEOPS_CANNON" - ] - }, - { - "nameHash": "HYDRA", - "hash": 970385471, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_LAZER", - "VEHICLE_WEAPON_SPACE_ROCKET" - ] - }, - { - "nameHash": "INSURGENT", - "hash": -1860900134, - "weapons": [ - "VEHICLE_WEAPON_TURRET_INSURGENT" - ] - }, - { - "nameHash": "INSURGENT2", - "hash": 2071877360, - "weapons": [ - "VEHICLE_WEAPON_TURRET_INSURGENT" - ] - }, - { - "nameHash": "SAVAGE", - "hash": -82626025, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_SAVAGE", - "VEHICLE_WEAPON_SPACE_ROCKET" - ] - }, - { - "nameHash": "TECHNICAL", - "hash": -2096818938, - "weapons": [ - "VEHICLE_WEAPON_TURRET_TECHNICAL" - ] - }, - { - "nameHash": "VALKYR", - "hash": -324583184, - "weapons": [ - "VEHICLE_WEAPON_NOSE_TURRET_VALKYRIE", - "VEHICLE_WEAPON_TURRET_VALKYRIE", - "VEHICLE_WEAPON_TURRET_VALKYRIE" - ] - }, - { - "nameHash": "JB7002", - "hash": 394110044, - "weapons": [ - "VEHICLE_WEAPON_JB700_MG" - ] - }, - { - "nameHash": "MINITANK", - "hash": -1254331310, - "weapons": [ - "VEHICLE_WEAPON_RCTANK_GUN", - "VEHICLE_WEAPON_RCTANK_FLAME", - "VEHICLE_WEAPON_RCTANK_ROCKET", - "VEHICLE_WEAPON_RCTANK_LAZER" - ] - }, - { - "nameHash": "TECHNICAL2", - "hash": 1180875963, - "weapons": [ - "VEHICLE_WEAPON_TURRET_TECHNICAL" - ] - }, - { - "nameHash": "BLAZER5", - "hash": -1590337689, - "weapons": [ - "VEHICLE_WEAPON_CANNON_BLAZER" - ] - }, - { - "nameHash": "BOXVILLE5", - "hash": 682434785, - "weapons": [ - "VEHICLE_WEAPON_TURRET_BOXVILLE" - ] - }, - { - "nameHash": "RUINER2", - "hash": 941494461, - "weapons": [ - "VEHICLE_WEAPON_RUINER_BULLET", - "VEHICLE_WEAPON_RUINER_ROCKET" - ] - }, - { - "nameHash": "LIMO2", - "hash": -114627507, - "weapons": [ - "VEHICLE_WEAPON_TURRET_LIMO" - ] - }, - { - "nameHash": "SVOLITO", - "hash": -2011477158, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "VALKYR2", - "hash": 1929962148, - "weapons": [ - "VEHICLE_WEAPON_TURRET_VALKYRIE", - "VEHICLE_WEAPON_TURRET_VALKYRIE" - ] - }, - { - "nameHash": "SWIFT2", - "hash": 1075432268, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "HUNTER", - "hash": -42959138, - "weapons": [ - "VEHICLE_WEAPON_HUNTER_MG", - "VEHICLE_WEAPON_HUNTER_MISSILE", - "VEHICLE_WEAPON_HUNTER_CANNON", - "VEHICLE_WEAPON_HUNTER_BARRAGE" - ] - }, - { - "nameHash": "TULA", - "hash": 1043222410, - "weapons": [ - "VEHICLE_WEAPON_TULA_NOSEMG", - "VEHICLE_WEAPON_TULA_MG", - "VEHICLE_WEAPON_TULA_DUALMG", - "VEHICLE_WEAPON_TULA_MINIGUN" - ] - }, - { - "nameHash": "SEABREEZE", - "hash": -392675425, - "weapons": [ - "VEHICLE_WEAPON_SEABREEZE_MG" - ] - }, - { - "nameHash": "MICROLIGHT", - "hash": -1763555241, - "weapons": [ - "VEHICLE_WEAPON_MICROLIGHT_MG" - ] - }, - { - "nameHash": "PYRO", - "hash": -1386191424, - "weapons": [ - "VEHICLE_WEAPON_DOGFIGHTER_MG", - "VEHICLE_WEAPON_DOGFIGHTER_MISSILE" - ] - }, - { - "nameHash": "STARLING", - "hash": -1700874274, - "weapons": [ - "VEHICLE_WEAPON_DOGFIGHTER_MG", - "VEHICLE_WEAPON_DOGFIGHTER_MISSILE" - ] - }, - { - "nameHash": "MOGUL", - "hash": -749299473, - "weapons": [ - "VEHICLE_WEAPON_MOGUL_NOSE", - "VEHICLE_WEAPON_MOGUL_DUALNOSE", - "VEHICLE_WEAPON_MOGUL_TURRET", - "VEHICLE_WEAPON_MOGUL_DUALTURRET" - ] - }, - { - "nameHash": "ROGUE", - "hash": -975345305, - "weapons": [ - "VEHICLE_WEAPON_ROGUE_MG", - "VEHICLE_WEAPON_ROGUE_CANNON", - "VEHICLE_WEAPON_ROGUE_MISSILE" - ] - }, - { - "nameHash": "NOKOTA", - "hash": 1036591958, - "weapons": [ - "VEHICLE_WEAPON_DOGFIGHTER_MG", - "VEHICLE_WEAPON_DOGFIGHTER_MISSILE" - ] - }, - { - "nameHash": "BOMBUSHKA", - "hash": -32878452, - "weapons": [ - "VEHICLE_WEAPON_BOMBUSHKA_DUALMG", - "VEHICLE_WEAPON_BOMBUSHKA_CANNON", - "VEHICLE_WEAPON_BOMBUSHKA_CANNON", - "VEHICLE_WEAPON_BOMBUSHKA_DUALMG", - "VEHICLE_WEAPON_BOMBUSHKA_CANNON" - ] - }, - { - "nameHash": "MOLOTOK", - "hash": 1565978651, - "weapons": [ - "VEHICLE_WEAPON_DOGFIGHTER_MG", - "VEHICLE_WEAPON_DOGFIGHTER_MISSILE" - ] - }, - { - "nameHash": "HAVOK", - "hash": -1984275979, - "weapons": [ - "VEHICLE_WEAPON_HAVOK_MINIGUN" - ] - }, - { - "nameHash": "VIGILANTE", - "hash": -1242608589, - "weapons": [ - "VEHICLE_WEAPON_VIGILANTE_MG", - "VEHICLE_WEAPON_VIGILANTE_MISSILE" - ] - }, - { - "nameHash": "PARAGON2", - "hash": 1416466158, - "weapons": [ - "VEHICLE_WEAPON_PARAGON2_MG" - ] - }, - { - "nameHash": "SWIFT", - "hash": -339587598, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "LIMO2", - "hash": -114627507, - "weapons": [ - "VEHICLE_WEAPON_TURRET_LIMO" - ] - }, - { - "nameHash": "SVOLITO", - "hash": -2011477158, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "VALKYR2", - "hash": 1929962148, - "weapons": [ - "VEHICLE_WEAPON_TURRET_VALKYRIE", - "VEHICLE_WEAPON_TURRET_VALKYRIE" - ] - }, - { - "nameHash": "CARACARA", - "hash": 1254014755, - "weapons": [ - "VEHICLE_WEAPON_CARACARA_MG", - "VEHICLE_WEAPON_CARACARA_MINIGUN" - ] - }, - { - "nameHash": "SEASPARROW", - "hash": -726768679, - "weapons": [ - "VEHICLE_WEAPON_HAVOK_MINIGUN", - "VEHICLE_WEAPON_SPACE_ROCKET" - ] - }, - { - "nameHash": "MENACER", - "hash": 2044532910, - "weapons": [ - "VEHICLE_WEAPON_TURRET_INSURGENT", - "VEHICLE_WEAPON_INSURGENT_MINIGUN", - "VEHICLE_WEAPON_MENACER_MG" - ] - }, - { - "nameHash": "MULE4", - "hash": 1945374990, - "weapons": [ - "VEHICLE_WEAPON_MULE4_MG", - "VEHICLE_WEAPON_MULE4_MISSILE", - "VEHICLE_WEAPON_MULE4_TURRET_GL" - ] - }, - { - "nameHash": "OPPRESSOR2", - "hash": 2069146067, - "weapons": [ - "VEHICLE_WEAPON_OPPRESSOR2_MG", - "VEHICLE_WEAPON_OPPRESSOR2_CANNON", - "VEHICLE_WEAPON_OPPRESSOR2_MISSILE" - ] - }, - { - "nameHash": "POUNDER2", - "hash": 1653666139, - "weapons": [ - "VEHICLE_WEAPON_POUNDER2_MINI", - "VEHICLE_WEAPON_POUNDER2_MISSILE", - "VEHICLE_WEAPON_POUNDER2_BARRAGE", - "VEHICLE_WEAPON_POUNDER2_GL" - ] - }, - { - "nameHash": "SCRAMJET", - "hash": -638562243, - "weapons": [ - "VEHICLE_WEAPON_SCRAMJET_MG", - "VEHICLE_WEAPON_SCRAMJET_MISSILE" - ] - }, - { - "nameHash": "SPEEDO4", - "hash": 219613597, - "weapons": [ - "VEHICLE_WEAPON_SPEEDO4_MG", - "VEHICLE_WEAPON_SPEEDO4_TURRET_MG", - "VEHICLE_WEAPON_SPEEDO4_TURRET_MINI" - ] - }, - { - "nameHash": "STRIKEFORCE", - "hash": 1692272545, - "weapons": [ - "VEHICLE_WEAPON_STRIKEFORCE_CANNON", - "VEHICLE_WEAPON_STRIKEFORCE_MISSILE", - "VEHICLE_WEAPON_STRIKEFORCE_BARRAGE" - ] - }, - { - "nameHash": "TERRORBYTE", - "hash": -1973454289, - "weapons": [ - "VEHICLE_WEAPON_HACKER_MISSILE", - "VEHICLE_WEAPON_HACKER_MISSILE_HOMING" - ] - }, - { - "nameHash": "AKULA", - "hash": 1181327175, - "weapons": [ - "VEHICLE_WEAPON_AKULA_TURRET_SINGLE", - "VEHICLE_WEAPON_AKULA_MISSILE", - "VEHICLE_WEAPON_AKULA_TURRET_DUAL", - "VEHICLE_WEAPON_AKULA_MINIGUN", - "VEHICLE_WEAPON_AKULA_BARRAGE" - ] - }, - { - "nameHash": "AVENGER", - "hash": -2118308144, - "weapons": [ - "VEHICLE_WEAPON_AVENGER_CANNON", - "VEHICLE_WEAPON_AVENGER_CANNON", - "VEHICLE_WEAPON_AVENGER_CANNON" - ] - }, - { - "nameHash": "BARRAGE", - "hash": -212993243, - "weapons": [ - "VEHICLE_WEAPON_BARRAGE_TOP_MG", - "VEHICLE_WEAPON_BARRAGE_TOP_MINIGUN", - "VEHICLE_WEAPON_BARRAGE_REAR_MG", - "VEHICLE_WEAPON_BARRAGE_REAR_MINIGUN", - "VEHICLE_WEAPON_BARRAGE_REAR_GL" - ] - }, - { - "nameHash": "CHERNOBOG", - "hash": -692292317, - "weapons": [ - "VEHICLE_WEAPON_CHERNO_MISSILE" - ] - }, - { - "nameHash": "COMET4", - "hash": 1561920505, - "weapons": [ - "VEHICLE_WEAPON_COMET_MG" - ] - }, - { - "nameHash": "DELUXO", - "hash": 1483171323, - "weapons": [ - "VEHICLE_WEAPON_DELUXO_MG", - "VEHICLE_WEAPON_DELUXO_MISSILE" - ] - }, - { - "nameHash": "KHANJALI", - "hash": -1435527158, - "weapons": [ - "VEHICLE_WEAPON_KHANJALI_CANNON", - "VEHICLE_WEAPON_KHANJALI_CANNON_HEAVY", - "VEHICLE_WEAPON_KHANJALI_MG", - "VEHICLE_WEAPON_KHANJALI_GL", - "VEHICLE_WEAPON_KHANJALI_GL" - ] - }, - { - "nameHash": "REVOLTER", - "hash": -410205223, - "weapons": [ - "VEHICLE_WEAPON_REVOLTER_MG" - ] - }, - { - "nameHash": "RIOT2", - "hash": -1693015116, - "weapons": [ - "VEHICLE_WEAPON_WATER_CANNON", - "VEHICLE_WEAPON_WATER_CANNON" - ] - }, - { - "nameHash": "SAVESTRA", - "hash": 903794909, - "weapons": [ - "VEHICLE_WEAPON_SAVESTRA_MG" - ] - }, - { - "nameHash": "STROMBER", - "hash": -2107254279, - "weapons": [ - "VEHICLE_WEAPON_SUBCAR_MG", - "VEHICLE_WEAPON_SUBCAR_MISSILE", - "VEHICLE_WEAPON_SUBCAR_TORPEDO" - ] - }, - { - "nameHash": "THRUSTER", - "hash": 1489874736, - "weapons": [ - "VEHICLE_WEAPON_THRUSTER_MG", - "VEHICLE_WEAPON_THRUSTER_MISSILE" - ] - }, - { - "nameHash": "VISERIS", - "hash": -391595372, - "weapons": [ - "VEHICLE_WEAPON_VISERIS_MG" - ] - }, - { - "nameHash": "VOLATOL", - "hash": 447548909, - "weapons": [ - "VEHICLE_WEAPON_VOLATOL_DUALMG", - "VEHICLE_WEAPON_VOLATOL_DUALMG" - ] - }, - { - "nameHash": "firetruk", - "hash": 1938952078, - "weapons": [ - "VEHICLE_WEAPON_WATER_CANNON" - ] - }, - { - "nameHash": "LAZER", - "hash": -1281684762, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_LAZER", - "VEHICLE_WEAPON_PLANE_ROCKET" - ] - }, - { - "nameHash": "SPMED", - "hash": -779089335, - "weapons": [ - "VEHICLE_WEAPON_ENEMY_LASER" - ] - }, - { - "nameHash": "SPSMALL", - "hash": -1289793643, - "weapons": [ - "VEHICLE_WEAPON_ENEMY_LASER" - ] - }, - { - "nameHash": "BULLDOZE", - "hash": 1854557578, - "weapons": [] - }, - { - "nameHash": "RHINO", - "hash": 782665360, - "weapons": [ - "VEHICLE_WEAPON_TANK" - ] - }, - { - "nameHash": "DINGHY", - "hash": 1033245328, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "DINGHY2", - "hash": 276773164, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "predator", - "hash": -488123221, - "weapons": [ - "VEHICLE_WEAPON_RADAR" - ] - }, - { - "nameHash": "ANNIHL", - "hash": -1890589379, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_BUZZARD", - "VEHICLE_WEAPON_SPACE_ROCKET" - ] - }, - { - "nameHash": "BUZZARD", - "hash": 788747387, - "weapons": [ - "VEHICLE_WEAPON_PLAYER_BUZZARD", - "VEHICLE_WEAPON_SPACE_ROCKET", - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "BUZZARD2", - "hash": 745926877, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "FROGGER", - "hash": 744705981, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "MAVERICK", - "hash": -1660661558, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - }, - { - "nameHash": "polmav", - "hash": 353883353, - "weapons": [ - "VEHICLE_WEAPON_SEARCHLIGHT" - ] - } -] \ No newline at end of file diff --git a/tools/data/weapons.json b/tools/data/weapons.json deleted file mode 100644 index 142d15c..0000000 --- a/tools/data/weapons.json +++ /dev/null @@ -1,11003 +0,0 @@ -[ - { - "nameHash": "VEHICLE_WEAPON_ARDENT_MG", - "hash": -1001503935, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_AR_MG", - "gxtDescription": "WTD_V_AR_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_INSURGENT_MINIGUN", - "hash": -1433899528, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_INS_MINI", - "gxtDescription": "WTD_V_INS_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MOBILEOPS_CANNON", - "hash": -448894556, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_MOBILEOPS_CANNON", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_NIGHTSHARK_MG", - "hash": -1508194956, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_NS_MG", - "gxtDescription": "WTD_V_NS_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TECHNICAL_MINIGUN", - "hash": -611760632, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TEC_MINI", - "gxtDescription": "WTD_V_TEC_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_AKULA_TURRET_SINGLE", - "hash": -1246512723, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_AKU_TS", - "gxtDescription": "WTD_V_AKU_TS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_AKULA_TURRET_DUAL", - "hash": 476907586, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_AKU_TD", - "gxtDescription": "WTD_V_AKU_TD", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_AKULA_MINIGUN", - "hash": 431576697, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_AKU_MN", - "gxtDescription": "WTD_V_AKU_MN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_AKULA_MISSILE", - "hash": 2092838988, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_HUNTER_MISSILE", - "gxtName": "WT_V_AKU_MI", - "gxtDescription": "WTD_V_AKU_MI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_AKULA_BARRAGE", - "hash": -2012408590, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_HUNTER_BARRAGE", - "gxtName": "WT_V_AKU_BA", - "gxtDescription": "WTD_V_AKU_BA", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_APC_CANNON", - "hash": 328167896, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_APC_CANNON", - "gxtName": "WT_V_APC_C", - "gxtDescription": "WTD_V_APC_C", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_APC_MISSILE", - "hash": 1151689097, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_APC_MISSILE", - "gxtName": "WT_V_APC_M", - "gxtDescription": "WTD_V_APC_M", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_APC_MG", - "hash": 190244068, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_APC_S", - "gxtDescription": "WTD_V_APC_S", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_AVENGER_CANNON", - "hash": -1738072005, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_AVENGER_CANNON", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BARRAGE_TOP_MG", - "hash": -146175596, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_BAR_TMG", - "gxtDescription": "WTD_V_BAR_TMG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BARRAGE_TOP_MINIGUN", - "hash": 1000258817, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_BAR_TMI", - "gxtDescription": "WTD_V_BAR_TMI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BARRAGE_REAR_MG", - "hash": 1200179045, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_BAR_RMG", - "gxtDescription": "WTD_V_BAR_RMG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BARRAGE_REAR_MINIGUN", - "hash": 525623141, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_BAR_RMI", - "gxtDescription": "WTD_V_BAR_RMI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BARRAGE_REAR_GL", - "hash": -1538514291, - "clipSize": 10, - "group": "", - "model": "", - "ammo": "AMMO_BARRAGE_GL", - "gxtName": "WT_V_BAR_RGL", - "gxtDescription": "WTD_V_BAR_RGL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMB", - "hash": -1695500020, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_smug_bomb_01", - "ammo": "AMMO_VEHICLEBOMB", - "gxtName": "WT_VEHBOMB", - "gxtDescription": "WTD_VEHBOMB", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMB_CLUSTER", - "hash": 220773539, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_smug_bomb_02", - "ammo": "AMMO_VEHICLEBOMB_CLUSTER", - "gxtName": "WT_VEHBOMB_C", - "gxtDescription": "WTD_VEHBOMB_C", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMB_GAS", - "hash": 1430300958, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_smug_bomb_03", - "ammo": "AMMO_VEHICLEBOMB_GAS", - "gxtName": "WT_VEHBOMB_G", - "gxtDescription": "WTD_VEHBOMB_G", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMB_INCENDIARY", - "hash": 1794615063, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_smug_bomb_04", - "ammo": "AMMO_VEHICLEBOMB_INCENDIARY", - "gxtName": "WT_VEHBOMB_I", - "gxtDescription": "WTD_VEHBOMB_I", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMBUSHKA_CANNON", - "hash": -666617255, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_BSHK_CANN", - "gxtDescription": "WTD_V_BSHK_CANN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMBUSHKA_DUALMG", - "hash": 741027160, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_BSHK_DUAL", - "gxtDescription": "WTD_V_BSHK_DUAL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BRUISER_50CAL", - "hash": -683817471, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BRUISER2_50CAL_LASER", - "hash": 1030357398, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_CARACARA_MG", - "hash": 1817275304, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TURRET", - "gxtDescription": "WTD_V_TURRET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_CARACARA_MINIGUN", - "hash": 1338760315, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TEC_MINI", - "gxtDescription": "WTD_V_TEC_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_CHERNO_MISSILE", - "hash": -1572351938, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_CHERNO_MISSILE", - "gxtName": "WT_V_CHE_MI", - "gxtDescription": "WTD_V_CHE_MI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DEATHBIKE_DUALMINIGUN", - "hash": 490982948, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_DBK_MINI", - "gxtDescription": "WTD_V_DBK_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DEATHBIKE2_MINIGUN_LASER", - "hash": -385086487, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DELUXO_MG", - "hash": -1694538890, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_DEL_MG", - "gxtDescription": "WTD_V_DEL_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DELUXO_MISSILE", - "hash": -1258723020, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_OPPRESSOR_MISSILE", - "gxtName": "WT_V_DEL_MI", - "gxtDescription": "WTD_V_DEL_MI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DOGFIGHTER_MG", - "hash": 1595421922, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_DGF_MG", - "gxtDescription": "WTD_V_DGF_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DOGFIGHTER_MISSILE", - "hash": -901318531, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SPACE_ROCKET", - "gxtName": "WT_V_DGF_MISS", - "gxtDescription": "WTD_V_DGF_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DUNE_MG", - "hash": -787150897, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_DU_MG", - "gxtDescription": "WTD_V_DU_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DUNE_GRENADELAUNCHER", - "hash": -1594068723, - "clipSize": 10, - "group": "", - "model": "", - "ammo": "AMMO_DUNE_GRENADELAUNCHER", - "gxtName": "WT_V_DU_GL", - "gxtDescription": "WTD_V_DU_GL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DUNE_MINIGUN", - "hash": 1416047217, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_DU_MINI", - "gxtDescription": "WTD_V_DU_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_FLAMETHROWER", - "hash": -1291819974, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_FLAME", - "gxtDescription": "WTD_V_FLAME", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_FLAMETHROWER_SCIFI", - "hash": -2112637790, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_FLAME", - "gxtDescription": "WTD_V_FLAME", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HACKER_MISSILE", - "hash": 1987049393, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_HACKER_MISSILE", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HACKER_MISSILE_HOMING", - "hash": 2011877270, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_HACKER_MISSILE", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HALFTRACK_DUALMG", - "hash": 1331922171, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_HT_DUALMG", - "gxtDescription": "WTD_V_HT_DUALMG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HALFTRACK_QUADMG", - "hash": 1226518132, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_HT_QUADMG", - "gxtDescription": "WTD_V_HT_QUADMG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HAVOK_MINIGUN", - "hash": 855547631, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_HAV_MINI", - "gxtDescription": "WTD_V_HAV_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HUNTER_MG", - "hash": 1119518887, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_HUNT_MG", - "gxtDescription": "WTD_V_HUNT_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HUNTER_MISSILE", - "hash": 153396725, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_HUNTER_MISSILE", - "gxtName": "WT_V_HUNT_MISS", - "gxtDescription": "WTD_V_HUNT_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HUNTER_BARRAGE", - "hash": 785467445, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_HUNTER_BARRAGE", - "gxtName": "WT_V_HUNT_BARR", - "gxtDescription": "WTD_V_HUNT_BARR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_HUNTER_CANNON", - "hash": 704686874, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_HUNT_CANN", - "gxtDescription": "WTD_V_HUNT_CANN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ISSI4_50CAL", - "hash": 1984488269, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ISSI5_50CAL_LASER", - "hash": 1988061477, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_KHANJALI_CANNON", - "hash": 507170720, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_TANK", - "gxtName": "WT_V_KHA_CA", - "gxtDescription": "WTD_V_KHA_CA", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_KHANJALI_CANNON_HEAVY", - "hash": -2088013459, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_KHANJALI_CANNON_HEAVY", - "gxtName": "WT_V_KHA_HCA", - "gxtDescription": "WTD_V_KHA_HCA", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_KHANJALI_MG", - "hash": 711953949, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_KHA_MG", - "gxtDescription": "WTD_V_KHA_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_KHANJALI_GL", - "hash": 394659298, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_KHANJALI_GL", - "gxtName": "WT_V_KHA_GL", - "gxtDescription": "WTD_V_KHA_GL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MENACER_MG", - "hash": -540346204, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_NS_MG", - "gxtDescription": "WTD_V_NS_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MICROLIGHT_MG", - "hash": -991944340, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_MCRL_MG", - "gxtDescription": "WTD_V_MCRL_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE", - "hash": 1508567460, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_vehiclemine", - "ammo": "AMMO_VEHICLEMINE", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_KINETIC", - "hash": 1007245390, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_vehiclemine", - "ammo": "AMMO_VEHICLEMINE_KINETIC", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_EMP", - "hash": 1776356704, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_vehiclemine", - "ammo": "AMMO_VEHICLEMINE_EMP", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_SPIKE", - "hash": -647126932, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_vehiclemine", - "ammo": "AMMO_VEHICLEMINE_SPIKE", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_SLICK", - "hash": 1459276487, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_vehiclemine", - "ammo": "AMMO_VEHICLEMINE_SLICK", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_TAR", - "hash": -197031008, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_vehiclemine", - "ammo": "AMMO_VEHICLEMINE_TAR", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_KINETIC_RC", - "hash": 623572320, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_arena_landmine_01b", - "ammo": "AMMO_VEHICLEMINE_KINETIC_RC", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_EMP_RC", - "hash": 1414837446, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_arena_landmine_01b", - "ammo": "AMMO_VEHICLEMINE_EMP_RC", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_SPIKE_RC", - "hash": 2083192401, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_arena_landmine_01b", - "ammo": "AMMO_VEHICLEMINE_SPIKE_RC", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_SLICK_RC", - "hash": -2065138921, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_arena_landmine_01b", - "ammo": "AMMO_VEHICLEMINE_SLICK_RC", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MINE_TAR_RC", - "hash": 2100589782, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_arena_landmine_01b", - "ammo": "AMMO_VEHICLEMINE_TAR_RC", - "gxtName": "WT_VEHMINE", - "gxtDescription": "WTD_VEHMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MOGUL_NOSE", - "hash": -166158518, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MOG_NOSE", - "gxtDescription": "WTD_V_MOG_NOSE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MOGUL_DUALNOSE", - "hash": -437014993, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MOG_DNOSE", - "gxtDescription": "WTD_V_MOG_DNOSE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MOGUL_TURRET", - "hash": -486730914, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_MOG_TURR", - "gxtDescription": "WTD_V_MOG_TURR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MOGUL_DUALTURRET", - "hash": -1171817471, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_MOG_DTURR", - "gxtDescription": "WTD_V_MOG_DTURR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MONSTER3_GLKIN", - "hash": -441560099, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_MONSTER3_KINETIC", - "gxtName": "WT_V_GREN_KIN", - "gxtDescription": "WTD_V_GREN_KIN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MORTAR_EXPLOSIVE", - "hash": -1582773038, - "clipSize": 10, - "group": "", - "model": "", - "ammo": "AMMO_MORTAR_EXPLOSIVE", - "gxtName": "WT_V_TAM_MORT", - "gxtDescription": "WTD_V_TAM_MORT", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MORTAR_KINETIC", - "hash": 1663705853, - "clipSize": 10, - "group": "", - "model": "", - "ammo": "AMMO_MORTAR_KINETIC", - "gxtName": "WT_V_MORTAR_KIN", - "gxtDescription": "WTD_V_MORTAR_KIN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MULE4_MG", - "hash": -2074769625, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MULE4_MISSILE", - "hash": 1198717003, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SPACE_ROCKET", - "gxtName": "WT_V_TAM_MISS", - "gxtDescription": "WTD_V_TAM_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_MULE4_TURRET_GL", - "hash": -586003867, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_MULE4_GL", - "gxtName": "WT_V_KHA_GL", - "gxtDescription": "WTD_V_KHA_GL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_OPPRESSOR_MG", - "hash": -651022627, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_OP_MG", - "gxtDescription": "WTD_V_OP_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_OPPRESSOR_MISSILE", - "hash": -1950890434, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_OPPRESSOR_MISSILE", - "gxtName": "WT_V_OP_MISS", - "gxtDescription": "WTD_V_OP_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_OPPRESSOR2_MG", - "hash": -498786858, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_OP_MG", - "gxtDescription": "WTD_V_OP_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_OPPRESSOR2_CANNON", - "hash": -699583383, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_ROG_CANN", - "gxtDescription": "WTD_V_ROG_CANN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_OPPRESSOR2_MISSILE", - "hash": 1966766321, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_OPPRESSOR2_MISSILE", - "gxtName": "WT_V_OP_MISS", - "gxtDescription": "WTD_V_OP_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PARAGON2_MG", - "hash": 749486726, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_POUNDER2_MINI", - "hash": -2031683506, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_POUNDER2_MISSILE", - "hash": 162065050, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SPACE_ROCKET", - "gxtName": "WT_V_TAM_MISS", - "gxtDescription": "WTD_V_TAM_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_POUNDER2_BARRAGE", - "hash": -1838445340, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_POUNDER2_MISSILE", - "gxtName": "WT_V_POU_BA", - "gxtDescription": "WTD_V_POU_BA", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_POUNDER2_GL", - "hash": -1827078378, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_POUNDER2_GL", - "gxtName": "WT_V_KHA_GL", - "gxtDescription": "WTD_V_KHA_GL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ROGUE_MG", - "hash": 158495693, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_ROG_MG", - "gxtDescription": "WTD_V_ROG_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ROGUE_CANNON", - "hash": -416629822, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_ROG_CANN", - "gxtDescription": "WTD_V_ROG_CANN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ROGUE_MISSILE", - "hash": 1820910717, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_ROGUE_MISSILE", - "gxtName": "WT_V_ROG_MISS", - "gxtDescription": "WTD_V_ROG_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SCARAB_50CAL", - "hash": 562032424, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_1", - "gxtDescription": "WTD_V_MG50_1", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SCARAB2_50CAL_LASER", - "hash": -500306484, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_1L", - "gxtDescription": "WTD_V_MG50_1L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SCRAMJET_MG", - "hash": 231629074, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_VGL_MG", - "gxtDescription": "WTD_V_VGL_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SCRAMJET_MISSILE", - "hash": -1125578533, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SCRAMJET_MISSILE", - "gxtName": "WT_V_VGL_MISS", - "gxtDescription": "WTD_V_VGL_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SEABREEZE_MG", - "hash": 1371067624, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_SBZ_MG", - "gxtDescription": "WTD_V_SBZ_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SPEEDO4_MG", - "hash": -939722436, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SPEEDO4_TURRET_MG", - "hash": -699002559, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_SPD_TMG", - "gxtDescription": "WTD_V_SPD_TMG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SPEEDO4_TURRET_MINI", - "hash": -1627504966, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_SPD_TMI", - "gxtDescription": "WTD_V_SPD_TMI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_STRIKEFORCE_BARRAGE", - "hash": 968648323, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_STRIKEFORCE_BARRAGE", - "gxtName": "WT_V_HUNT_BARR", - "gxtDescription": "WTD_V_HUNT_BARR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_STRIKEFORCE_CANNON", - "hash": 955522731, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_ROG_CANN", - "gxtDescription": "WTD_V_ROG_CANN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_STRIKEFORCE_MISSILE", - "hash": 519052682, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_STRIKEFORCE_MISSILE", - "gxtName": "WT_V_HUNT_MISS", - "gxtDescription": "WTD_V_HUNT_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SUBCAR_MG", - "hash": 1176362416, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_SUB_MG", - "gxtDescription": "WTD_V_SUB_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SUBCAR_MISSILE", - "hash": -729187314, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SUBCAR_MISSILE", - "gxtName": "WT_V_SUB_MI", - "gxtDescription": "WTD_V_SUB_MI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SUBCAR_TORPEDO", - "hash": -410795078, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SUBCAR_TORPEDO", - "gxtName": "WT_V_SUB_TO", - "gxtDescription": "WTD_V_SUB_TO", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TAMPA_MISSILE", - "hash": -1638383454, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SPACE_ROCKET", - "gxtName": "WT_V_TAM_MISS", - "gxtDescription": "WTD_V_TAM_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TAMPA_MORTAR", - "hash": 1015268368, - "clipSize": 10, - "group": "", - "model": "", - "ammo": "AMMO_TAMPA_MORTAR", - "gxtName": "WT_V_TAM_MORT", - "gxtDescription": "WTD_V_TAM_MORT", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TAMPA_FIXEDMINIGUN", - "hash": -624592211, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TAM_FMINI", - "gxtDescription": "WTD_V_TAM_FMINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TAMPA_DUALMINIGUN", - "hash": 1744687076, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TAM_DMINI", - "gxtDescription": "WTD_V_TAM_DMINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_THRUSTER_MG", - "hash": 1697521053, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_THR_MG", - "gxtDescription": "WTD_V_THR_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_THRUSTER_MISSILE", - "hash": 1177935125, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_THRUSTER_MISSILE", - "gxtName": "WT_V_THR_MI", - "gxtDescription": "WTD_V_THR_MI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TRAILER_QUADMG", - "hash": 1192341548, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TR_QUADMG", - "gxtDescription": "WTD_V_TR_QUADMG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TRAILER_DUALAA", - "hash": -2138288820, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_TRAILER_AA", - "gxtName": "WT_V_TR_DUALAA", - "gxtDescription": "WTD_V_TR_DUALAA", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TRAILER_MISSILE", - "hash": 341154295, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_TRAILER_MISSILE", - "gxtName": "WT_V_TR_MISS", - "gxtDescription": "WTD_V_TR_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TULA_NOSEMG", - "hash": 1100844565, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TUL_NOSE", - "gxtDescription": "WTD_V_TUL_NOSE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TULA_MG", - "hash": 1217122433, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TUL_MG", - "gxtDescription": "WTD_V_TUL_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TULA_DUALMG", - "hash": -1328456693, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TUL_DUAL", - "gxtDescription": "WTD_V_TUL_DUAL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TULA_MINIGUN", - "hash": 376489128, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TUL_MINI", - "gxtDescription": "WTD_V_TUL_MINI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_VIGILANTE_MG", - "hash": -200835353, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_VGL_MG", - "gxtDescription": "WTD_V_VGL_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_VIGILANTE_MISSILE", - "hash": 1347266149, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_VIGILANTE_MISSILE", - "gxtName": "WT_V_VGL_MISS", - "gxtDescription": "WTD_V_VGL_MISS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BOMB_STANDARD_WIDE", - "hash": 1856325840, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_smug_bomb_01", - "ammo": "AMMO_VEHICLEBOMB_WIDE", - "gxtName": "WT_VEHBOMB", - "gxtDescription": "WTD_VEHBOMB", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_VOLATOL_DUALMG", - "hash": 1150790720, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_VOL_MG", - "gxtDescription": "WTD_V_VOL_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_COMET_MG", - "hash": -358074893, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_REVOLTER_MG", - "hash": -1117887894, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SAVESTRA_MG", - "hash": -348002226, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_VISERIS_MG", - "hash": -2019545594, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_IMPALER2_50CAL", - "hash": 1599495177, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_IMPALER3_50CAL_LASER", - "hash": -1933706104, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_IMPERATOR_50CAL", - "hash": -1235040645, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_IMPERATOR2_50CAL_LASER", - "hash": 2014823718, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DOMINATOR4_50CAL", - "hash": -133391601, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_DOMINATOR5_50CAL_LASER", - "hash": -1272681889, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SLAMVAN4_50CAL", - "hash": 984313451, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SLAMVAN5_50CAL_LASER", - "hash": 1368736686, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BRUTUS_50CAL", - "hash": -346137590, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_1", - "gxtDescription": "WTD_V_MG50_1", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_BRUTUS2_50CAL_LASER", - "hash": 1757914307, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_1L", - "gxtDescription": "WTD_V_MG50_1L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ZR380_50CAL", - "hash": 1790524546, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2", - "gxtDescription": "WTD_V_MG50_2", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ZR3802_50CAL_LASER", - "hash": 570463164, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_MG50_2L", - "gxtDescription": "WTD_V_MG50_2L", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_JB700_MG", - "hash": 926602556, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_COM_MG", - "gxtDescription": "WTD_V_COM_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RCTANK_GUN", - "hash": 1392289305, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_RCT_MG", - "gxtDescription": "WTD_V_RCT_MG", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RCTANK_FLAME", - "hash": -185710198, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_RCT_FL", - "gxtDescription": "WTD_V_RCT_FL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RCTANK_ROCKET", - "hash": 1995916491, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_RCTANK_ROCKET", - "gxtName": "WT_V_RCT_RK", - "gxtDescription": "WTD_V_RCT_RK", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RCTANK_LAZER", - "hash": 1475488848, - "clipSize": 15000, - "group": "GROUP_HEAVY", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_RCT_LZ", - "gxtDescription": "WTD_V_RCT_LZ", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_AIR_DEFENCE_GUN", - "hash": 738733437, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_AUTOSHOTGUN", - "hash": 317205821, - "clipSize": 10, - "group": "GROUP_SHOTGUN", - "model": "w_sg_sweeper", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_AUTOSHGN", - "gxtDescription": "WTD_AUTOSHGN", - "components": [ - { - "nameHash": "COMPONENT_AUTOSHOTGUN_CLIP_01", - "hash": 169463950, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BATTLEAXE", - "hash": -853065399, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_battleaxe", - "ammo": "NULL", - "gxtName": "WT_BATTLEAXE", - "gxtDescription": "WTD_BATTLEAXE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BOTTLE", - "hash": -102323637, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_bottle", - "ammo": "NULL", - "gxtName": "WT_BOTTLE", - "gxtDescription": "WTD_BOTTLE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BULLPUPRIFLE", - "hash": 2132975508, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_bullpuprifle", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_BULLRIFLE", - "gxtDescription": "WTD_BULLRIFLE", - "components": [ - { - "nameHash": "COMPONENT_BULLPUPRIFLE_CLIP_01", - "hash": -979292288, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_CLIP_02", - "hash": -1284994289, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL", - "hash": -1439939148, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_CANNON_BLAZER", - "hash": -335937730, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COMBATPDW", - "hash": 171789620, - "clipSize": 30, - "group": "GROUP_SMG", - "model": "W_SB_PDW", - "ammo": "AMMO_SMG", - "gxtName": "WT_COMBATPDW", - "gxtDescription": "WTD_COMBATPDW", - "components": [ - { - "nameHash": "COMPONENT_COMBATPDW_CLIP_01", - "hash": 1125642654, - "isDefault": true, - "attachBone": "WAPClip_2" - }, - { - "nameHash": "COMPONENT_COMBATPDW_CLIP_02", - "hash": 860508675, - "isDefault": false, - "attachBone": "WAPClip_2" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL", - "hash": -1439939148, - "isDefault": false, - "attachBone": "WAPScop_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COMPACTLAUNCHER", - "hash": 125959754, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_compactgl", - "ammo": "AMMO_GRENADELAUNCHER", - "gxtName": "WT_CMPGL", - "gxtDescription": "WTD_CMPGL", - "components": [ - { - "nameHash": "COMPONENT_COMPACTLAUNCHER_CLIP_01", - "hash": 1235472140, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COMPACTRIFLE", - "hash": 1649403952, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_assaultrifle_smg", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_CMPRIFLE", - "gxtDescription": "WTD_CMPRIFLE", - "components": [ - { - "nameHash": "COMPONENT_COMPACTRIFLE_CLIP_01", - "hash": 1363085923, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMPACTRIFLE_CLIP_02", - "hash": 1509923832, - "isDefault": false, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DAGGER", - "hash": -1834847097, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_dagger", - "ammo": "NULL", - "gxtName": "WT_DAGGER", - "gxtDescription": "WTD_DAGGER", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DBSHOTGUN", - "hash": -275439685, - "clipSize": 2, - "group": "GROUP_SHOTGUN", - "model": "w_sg_doublebarrel", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_DBSHGN", - "gxtDescription": "WTD_DBSHGN", - "components": [ - { - "nameHash": "COMPONENT_DBSHOTGUN_CLIP_01", - "hash": 703231006, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FIREWORK", - "hash": 2138347493, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_firework", - "ammo": "AMMO_FIREWORK", - "gxtName": "WT_FIREWRK", - "gxtDescription": "WTD_FIREWRK", - "components": [ - { - "nameHash": "COMPONENT_FIREWORK_CLIP_01", - "hash": -454770035, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FLAREGUN", - "hash": 1198879012, - "clipSize": 1, - "group": "GROUP_PISTOL", - "model": "w_pi_flaregun", - "ammo": "AMMO_FLAREGUN", - "gxtName": "WT_FLAREGUN", - "gxtDescription": "WTD_FLAREGUN", - "components": [ - { - "nameHash": "COMPONENT_FLAREGUN_CLIP_01", - "hash": -1813398119, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FLASHLIGHT", - "hash": -1951375401, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_flashlight", - "ammo": "NULL", - "gxtName": "WT_FLASHLIGHT", - "gxtDescription": "WTD_FLASHLIGHT", - "components": [ - { - "nameHash": "COMPONENT_FLASHLIGHT_LIGHT", - "hash": -575194865, - "isDefault": true, - "attachBone": "WAPFlsh" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_GARBAGEBAG", - "hash": -499989876, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "", - "ammo": "NULL", - "gxtName": "WT_KNIFE", - "gxtDescription": "WTD_KNIFE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_GUSENBERG", - "hash": 1627465347, - "clipSize": 30, - "group": "GROUP_MG", - "model": "w_sb_gusenberg", - "ammo": "AMMO_MG", - "gxtName": "WT_GUSNBRG", - "gxtDescription": "WTD_GUSNBRG", - "components": [ - { - "nameHash": "COMPONENT_GUSENBERG_CLIP_01", - "hash": 484812453, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_GUSENBERG_CLIP_02", - "hash": -355941776, - "isDefault": false, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HANDCUFFS", - "hash": -800287667, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "", - "ammo": "NULL", - "gxtName": "WT_KNIFE", - "gxtDescription": "WTD_KNIFE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HATCHET", - "hash": -102973651, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_hatchet", - "ammo": "NULL", - "gxtName": "WT_HATCHET", - "gxtDescription": "WTD_HATCHET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HEAVYPISTOL", - "hash": -771403250, - "clipSize": 18, - "group": "GROUP_PISTOL", - "model": "w_pi_heavypistol", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_HVYPISTOL", - "gxtDescription": "WTD_HVYPISTOL", - "components": [ - { - "nameHash": "COMPONENT_HEAVYPISTOL_CLIP_01", - "hash": 222992026, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYPISTOL_CLIP_02", - "hash": 1694090795, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HEAVYSHOTGUN", - "hash": 984333226, - "clipSize": 6, - "group": "GROUP_SHOTGUN", - "model": "w_sg_heavyshotgun", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_HVYSHGN", - "gxtDescription": "WTD_HVYSHGN", - "components": [ - { - "nameHash": "COMPONENT_HEAVYSHOTGUN_CLIP_01", - "hash": 844049759, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYSHOTGUN_CLIP_02", - "hash": -1759709443, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HOMINGLAUNCHER", - "hash": 1672152130, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_homing", - "ammo": "AMMO_HOMINGLAUNCHER", - "gxtName": "WT_HOMLNCH", - "gxtDescription": "WTD_HOMLNCH", - "components": [ - { - "nameHash": "COMPONENT_HOMINGLAUNCHER_CLIP_01", - "hash": -132960961, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_KNUCKLE", - "hash": -656458692, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "W_ME_Knuckle", - "ammo": "NULL", - "gxtName": "WT_KNUCKLE", - "gxtDescription": "WTD_KNUCKLE", - "components": [ - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_BASE", - "hash": -213504205, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_PIMP", - "hash": -971770235, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_BALLAS", - "hash": -287703709, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_DOLLAR", - "hash": 1351683121, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_DIAMOND", - "hash": -1755194916, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_HATE", - "hash": 2112683568, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_LOVE", - "hash": 1062111910, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_PLAYER", - "hash": 146278587, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_KING", - "hash": -494162961, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_KNUCKLE_VARMOD_VAGOS", - "hash": 2062808965, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MACHETE", - "hash": -581044007, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_machette_lr", - "ammo": "NULL", - "gxtName": "WT_MACHETE", - "gxtDescription": "WTD_MACHETE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MACHINEPISTOL", - "hash": -619010992, - "clipSize": 12, - "group": "GROUP_SMG", - "model": "w_sb_compactsmg", - "ammo": "AMMO_SMG", - "gxtName": "WT_MCHPIST", - "gxtDescription": "WTD_MCHPIST", - "components": [ - { - "nameHash": "COMPONENT_MACHINEPISTOL_CLIP_01", - "hash": 1198425599, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MACHINEPISTOL_CLIP_02", - "hash": -1188271751, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MARKSMANPISTOL", - "hash": -598887786, - "clipSize": 1, - "group": "GROUP_PISTOL", - "model": "W_PI_SingleShot", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_MKPISTOL", - "gxtDescription": "WTD_MKPISTOL", - "components": [ - { - "nameHash": "COMPONENT_MARKSMANPISTOL_CLIP_01", - "hash": -878820883, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MARKSMANRIFLE", - "hash": -952879014, - "clipSize": 8, - "group": "GROUP_SNIPER", - "model": "w_sr_marksmanrifle", - "ammo": "AMMO_SNIPER", - "gxtName": "WT_MKRIFLE", - "gxtDescription": "WTD_MKRIFLE", - "components": [ - { - "nameHash": "COMPONENT_MARKSMANRIFLE_CLIP_01", - "hash": -667205311, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_CLIP_02", - "hash": -855823675, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM", - "hash": 471997210, - "isDefault": true, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MINISMG", - "hash": -1121678507, - "clipSize": 20, - "group": "GROUP_SMG", - "model": "w_sb_minismg", - "ammo": "AMMO_SMG", - "gxtName": "WT_MINISMG", - "gxtDescription": "WTD_MINISMG", - "components": [ - { - "nameHash": "COMPONENT_MINISMG_CLIP_01", - "hash": -2067221805, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MINISMG_CLIP_02", - "hash": -1820405577, - "isDefault": false, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MUSKET", - "hash": -1466123874, - "clipSize": 1, - "group": "GROUP_SNIPER", - "model": "w_ar_musket", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_MUSKET", - "gxtDescription": "WTD_MUSKET", - "components": [ - { - "nameHash": "COMPONENT_MUSKET_CLIP_01", - "hash": 1322387263, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PIPEBOMB", - "hash": -1169823560, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_pipebomb", - "ammo": "AMMO_PIPEBOMB", - "gxtName": "WT_PIPEBOMB", - "gxtDescription": "WTD_PIPEBOMB", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_POOLCUE", - "hash": -1810795771, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_poolcue", - "ammo": "NULL", - "gxtName": "WT_POOLCUE", - "gxtDescription": "WTD_POOLCUE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PROXMINE", - "hash": -1420407917, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_apmine", - "ammo": "AMMO_PROXMINE", - "gxtName": "WT_PRXMINE", - "gxtDescription": "WTD_PRXMINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RAILGUN", - "hash": 1834241177, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_ar_railgun", - "ammo": "AMMO_RAILGUN", - "gxtName": "WT_RAILGUN", - "gxtDescription": "WTD_RAILGUN", - "components": [ - { - "nameHash": "COMPONENT_RAILGUN_CLIP_01", - "hash": 59044840, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_REVOLVER", - "hash": -1045183535, - "clipSize": 6, - "group": "GROUP_PISTOL", - "model": "w_pi_revolver", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_REVOLVER", - "gxtDescription": "WTD_REVOLVER", - "components": [ - { - "nameHash": "COMPONENT_REVOLVER_CLIP_01", - "hash": -377062173, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_REVOLVER_VARMOD_BOSS", - "hash": 384708672, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_VARMOD_GOON", - "hash": -1802258419, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_UNARMED", - "hash": -1569615261, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_UNARMED", - "gxtDescription": "WTD_UNARMED", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ANIMAL", - "hash": -100946242, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COUGAR", - "hash": 148160082, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_KNIFE", - "hash": -1716189206, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_knife_01", - "ammo": "NULL", - "gxtName": "WT_KNIFE", - "gxtDescription": "WTD_KNIFE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_NIGHTSTICK", - "hash": 1737195953, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_nightstick", - "ammo": "NULL", - "gxtName": "WT_NGTSTK", - "gxtDescription": "WTD_NGTSTK", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HAMMER", - "hash": 1317494643, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_hammer", - "ammo": "NULL", - "gxtName": "WT_HAMMER", - "gxtDescription": "WTD_HAMMER", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BAT", - "hash": -1786099057, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_bat", - "ammo": "NULL", - "gxtName": "WT_BAT", - "gxtDescription": "WTD_BAT", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_GOLFCLUB", - "hash": 1141786504, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_gclub", - "ammo": "NULL", - "gxtName": "WT_GOLFCLUB", - "gxtDescription": "WTD_GOLFCLUB", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_CROWBAR", - "hash": -2067956739, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_crowbar", - "ammo": "NULL", - "gxtName": "WT_CROWBAR", - "gxtDescription": "WTD_CROWBAR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PISTOL", - "hash": 453432689, - "clipSize": 12, - "group": "GROUP_PISTOL", - "model": "W_PI_PISTOL", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_PIST", - "gxtDescription": "WTD_PIST", - "components": [ - { - "nameHash": "COMPONENT_PISTOL_CLIP_01", - "hash": -19858063, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL_CLIP_02", - "hash": -316253668, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP_02", - "hash": 1709866683, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_PISTOL_VARMOD_LUXE", - "hash": -684126074, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COMBATPISTOL", - "hash": 1593441988, - "clipSize": 12, - "group": "GROUP_PISTOL", - "model": "W_PI_COMBATPISTOL", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_PIST_CBT", - "gxtDescription": "WTD_PIST_CBT", - "components": [ - { - "nameHash": "COMPONENT_COMBATPISTOL_CLIP_01", - "hash": 119648377, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATPISTOL_CLIP_02", - "hash": -696561875, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER", - "hash": -966439566, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_APPISTOL", - "hash": 584646201, - "clipSize": 18, - "group": "GROUP_PISTOL", - "model": "W_PI_APPISTOL", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_PIST_AP", - "gxtDescription": "WTD_PIST_AP", - "components": [ - { - "nameHash": "COMPONENT_APPISTOL_CLIP_01", - "hash": 834974250, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_APPISTOL_CLIP_02", - "hash": 614078421, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_APPISTOL_VARMOD_LUXE", - "hash": -1686714580, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PISTOL50", - "hash": -1716589765, - "clipSize": 9, - "group": "GROUP_PISTOL", - "model": "W_PI_PISTOL50", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_PIST_50", - "gxtDescription": "WTD_PIST_50", - "components": [ - { - "nameHash": "COMPONENT_PISTOL50_CLIP_01", - "hash": 580369945, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL50_CLIP_02", - "hash": -640439150, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_PISTOL50_VARMOD_LUXE", - "hash": 2008591151, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MICROSMG", - "hash": 324215364, - "clipSize": 16, - "group": "GROUP_SMG", - "model": "w_sb_microsmg", - "ammo": "AMMO_SMG", - "gxtName": "WT_SMG_MCR", - "gxtDescription": "WTD_SMG_MCR", - "components": [ - { - "nameHash": "COMPONENT_MICROSMG_CLIP_01", - "hash": -884429072, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MICROSMG_CLIP_02", - "hash": 283556395, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO", - "hash": -1657815255, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_MICROSMG_VARMOD_LUXE", - "hash": 1215999497, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SMG", - "hash": 736523883, - "clipSize": 30, - "group": "GROUP_SMG", - "model": "w_sb_smg", - "ammo": "AMMO_SMG", - "gxtName": "WT_SMG", - "gxtDescription": "WTD_SMG", - "components": [ - { - "nameHash": "COMPONENT_SMG_CLIP_01", - "hash": 643254679, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_CLIP_02", - "hash": 889808635, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_CLIP_03", - "hash": 2043113590, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_02", - "hash": 1019656791, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_SMG_VARMOD_LUXE", - "hash": 663170192, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ASSAULTSMG", - "hash": -270015777, - "clipSize": 30, - "group": "GROUP_SMG", - "model": "w_sb_assaultsmg", - "ammo": "AMMO_SMG", - "gxtName": "WT_SMG_ASL", - "gxtDescription": "WTD_SMG_ASL", - "components": [ - { - "nameHash": "COMPONENT_ASSAULTSMG_CLIP_01", - "hash": -1928132688, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTSMG_CLIP_02", - "hash": -1152981993, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO", - "hash": -1657815255, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER", - "hash": 663517359, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ASSAULTRIFLE", - "hash": -1074790547, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "W_AR_ASSAULTRIFLE", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_RIFLE_ASL", - "gxtDescription": "WTD_RIFLE_ASL", - "components": [ - { - "nameHash": "COMPONENT_ASSAULTRIFLE_CLIP_01", - "hash": -1101075946, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_CLIP_02", - "hash": -1323216997, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_CLIP_03", - "hash": -604986051, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO", - "hash": -1657815255, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_VARMOD_LUXE", - "hash": 1319990579, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_CARBINERIFLE", - "hash": -2084633992, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "W_AR_CARBINERIFLE", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_RIFLE_CBN", - "gxtDescription": "WTD_RIFLE_CBN", - "components": [ - { - "nameHash": "COMPONENT_CARBINERIFLE_CLIP_01", - "hash": -1614924820, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_CLIP_02", - "hash": -1861183855, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_CLIP_03", - "hash": -1167922891, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_RAILCOVER_01", - "hash": 1967214384, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM", - "hash": -1596416958, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_VARMOD_LUXE", - "hash": -660892072, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ADVANCEDRIFLE", - "hash": -1357824103, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "W_AR_ADVANCEDRIFLE", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_RIFLE_ADV", - "gxtDescription": "WTD_RIFLE_ADV", - "components": [ - { - "nameHash": "COMPONENT_ADVANCEDRIFLE_CLIP_01", - "hash": -91250417, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ADVANCEDRIFLE_CLIP_02", - "hash": -1899902599, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL", - "hash": -1439939148, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE", - "hash": 930927479, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MG", - "hash": -1660422300, - "clipSize": 54, - "group": "GROUP_MG", - "model": "w_mg_mg", - "ammo": "AMMO_MG", - "gxtName": "WT_MG", - "gxtDescription": "WTD_MG", - "components": [ - { - "nameHash": "COMPONENT_MG_CLIP_01", - "hash": -197857404, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MG_CLIP_02", - "hash": -2112517305, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_02", - "hash": 1006677997, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_MG_VARMOD_LOWRIDER", - "hash": -690308418, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COMBATMG", - "hash": 2144741730, - "clipSize": 100, - "group": "GROUP_MG", - "model": "w_mg_combatmg", - "ammo": "AMMO_MG", - "gxtName": "WT_MG_CBT", - "gxtDescription": "WTD_MG_CBT", - "components": [ - { - "nameHash": "COMPONENT_COMBATMG_CLIP_01", - "hash": -503336118, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATMG_CLIP_02", - "hash": -691692330, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM", - "hash": -1596416958, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_COMBATMG_VARMOD_LOWRIDER", - "hash": -1828795171, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PUMPSHOTGUN", - "hash": 487013001, - "clipSize": 8, - "group": "GROUP_SHOTGUN", - "model": "w_sg_pumpshotgun", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_SG_PMP", - "gxtDescription": "WTD_SG_PMP", - "components": [ - { - "nameHash": "COMPONENT_PUMPSHOTGUN_CLIP_01", - "hash": -781249480, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SR_SUPP", - "hash": -435637410, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER", - "hash": -1562927653, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SAWNOFFSHOTGUN", - "hash": 2017895192, - "clipSize": 8, - "group": "GROUP_SHOTGUN", - "model": "w_sg_sawnoff", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_SG_SOF", - "gxtDescription": "WTD_SG_SOF", - "components": [ - { - "nameHash": "COMPONENT_SAWNOFFSHOTGUN_CLIP_01", - "hash": -942267867, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE", - "hash": -2052698631, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ASSAULTSHOTGUN", - "hash": -494615257, - "clipSize": 8, - "group": "GROUP_SHOTGUN", - "model": "w_sg_assaultshotgun", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_SG_ASL", - "gxtDescription": "WTD_SG_ASL", - "components": [ - { - "nameHash": "COMPONENT_ASSAULTSHOTGUN_CLIP_01", - "hash": -1796727865, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTSHOTGUN_CLIP_02", - "hash": -2034401422, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BULLPUPSHOTGUN", - "hash": -1654528753, - "clipSize": 14, - "group": "GROUP_SHOTGUN", - "model": "w_sg_bullpupshotgun", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_SG_BLP", - "gxtDescription": "WTD_SG_BLP", - "components": [ - { - "nameHash": "COMPONENT_BULLPUPSHOTGUN_CLIP_01", - "hash": -917613298, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_STUNGUN", - "hash": 911657153, - "clipSize": 2104529083, - "group": "GROUP_STUNGUN", - "model": "w_pi_stungun", - "ammo": "AMMO_STUNGUN", - "gxtName": "WT_STUN", - "gxtDescription": "WTD_STUN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SNIPERRIFLE", - "hash": 100416529, - "clipSize": 10, - "group": "GROUP_SNIPER", - "model": "w_sr_sniperrifle", - "ammo": "AMMO_SNIPER", - "gxtName": "WT_SNIP_RIF", - "gxtDescription": "WTD_SNIP_RIF", - "components": [ - { - "nameHash": "COMPONENT_SNIPERRIFLE_CLIP_01", - "hash": -1681506167, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE", - "hash": -767279652, - "isDefault": true, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MAX", - "hash": -1135289737, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_SNIPERRIFLE_VARMOD_LUXE", - "hash": 1077065191, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HEAVYSNIPER", - "hash": 205991906, - "clipSize": 6, - "group": "GROUP_SNIPER", - "model": "w_sr_heavysniper", - "ammo": "AMMO_SNIPER", - "gxtName": "WT_SNIP_HVY", - "gxtDescription": "WTD_SNIP_HVY", - "components": [ - { - "nameHash": "COMPONENT_HEAVYSNIPER_CLIP_01", - "hash": 1198478068, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE", - "hash": -767279652, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MAX", - "hash": -1135289737, - "isDefault": true, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_GUNRUN_MK2_UPGRADE", - "hash": 1623028892, - "isDefault": false, - "attachBone": "gun_gripr" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_REMOTESNIPER", - "hash": 856002082, - "clipSize": 10, - "group": "", - "model": "", - "ammo": "AMMO_SNIPER_REMOTE", - "gxtName": "WT_SNIP_RMT", - "gxtDescription": "WTD_SNIP_RMT", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_GRENADELAUNCHER", - "hash": -1568386805, - "clipSize": 10, - "group": "GROUP_HEAVY", - "model": "w_lr_grenadelauncher", - "ammo": "AMMO_GRENADELAUNCHER", - "gxtName": "WT_GL", - "gxtDescription": "WTD_GL", - "components": [ - { - "nameHash": "COMPONENT_GRENADELAUNCHER_CLIP_01", - "hash": 296639639, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL", - "hash": -1439939148, - "isDefault": false, - "attachBone": "WAPScop_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_GRENADELAUNCHER_SMOKE", - "hash": 1305664598, - "clipSize": 10, - "group": "GROUP_HEAVY", - "model": "w_lr_grenadelauncher", - "ammo": "AMMO_GRENADELAUNCHER_SMOKE", - "gxtName": "WT_GL_SMOKE", - "gxtDescription": "WTD_GL_SMOKE", - "components": [ - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL", - "hash": -1439939148, - "isDefault": false, - "attachBone": "WAPScop" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RPG", - "hash": -1312131151, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_rpg", - "ammo": "AMMO_RPG", - "gxtName": "WT_RPG", - "gxtDescription": "WTD_RPG", - "components": [ - { - "nameHash": "COMPONENT_RPG_CLIP_01", - "hash": 1319465907, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PASSENGER_ROCKET", - "hash": 375527679, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_rpg", - "ammo": "AMMO_RPG", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [ - { - "nameHash": "COMPONENT_RPG_CLIP_01", - "hash": 1319465907, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_AIRSTRIKE_ROCKET", - "hash": 324506233, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_rpg", - "ammo": "AMMO_RPG", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [ - { - "nameHash": "COMPONENT_RPG_CLIP_01", - "hash": 1319465907, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_STINGER", - "hash": 1752584910, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_rpg", - "ammo": "AMMO_STINGER", - "gxtName": "WT_RPG", - "gxtDescription": "WTD_RPG", - "components": [ - { - "nameHash": "COMPONENT_RPG_CLIP_01", - "hash": 1319465907, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MINIGUN", - "hash": 1119849093, - "clipSize": 15000, - "group": "GROUP_HEAVY", - "model": "w_mg_minigun", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_MINIGUN", - "gxtDescription": "WTD_MINIGUN", - "components": [ - { - "nameHash": "COMPONENT_MINIGUN_CLIP_01", - "hash": -924946682, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_GRENADE", - "hash": -1813897027, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_grenadefrag", - "ammo": "AMMO_GRENADE", - "gxtName": "WT_GNADE", - "gxtDescription": "WTD_GNADE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_STICKYBOMB", - "hash": 741814745, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_pe", - "ammo": "AMMO_STICKYBOMB", - "gxtName": "WT_GNADE_STK", - "gxtDescription": "WTD_GNADE_STK", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SMOKEGRENADE", - "hash": -37975472, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_grenadesmoke", - "ammo": "AMMO_SMOKEGRENADE", - "gxtName": "WT_GNADE_SMK", - "gxtDescription": "WTD_GNADE_SMK", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BZGAS", - "hash": -1600701090, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_grenadesmoke", - "ammo": "AMMO_BZGAS", - "gxtName": "WT_BZGAS", - "gxtDescription": "WTD_BZGAS", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MOLOTOV", - "hash": 615608432, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_molotov", - "ammo": "AMMO_MOLOTOV", - "gxtName": "WT_MOLOTOV", - "gxtDescription": "WTD_MOLOTOV", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FIREEXTINGUISHER", - "hash": 101631238, - "clipSize": 2000, - "group": "GROUP_FIREEXTINGUISHER", - "model": "w_am_fire_exting", - "ammo": "AMMO_FIREEXTINGUISHER", - "gxtName": "WT_FIRE", - "gxtDescription": "WTD_FIRE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PETROLCAN", - "hash": 883325847, - "clipSize": 4500, - "group": "GROUP_PETROLCAN", - "model": "w_am_jerrycan", - "ammo": "AMMO_PETROLCAN", - "gxtName": "WT_PETROL", - "gxtDescription": "WTD_PETROL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DIGISCANNER", - "hash": -38085395, - "clipSize": 17, - "group": "GROUP_DIGISCANNER", - "model": "w_am_digiscanner", - "ammo": "NULL", - "gxtName": "WT_DIGI", - "gxtDescription": "WTD_DIGI", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "GADGET_NIGHTVISION", - "hash": -1491061156, - "clipSize": 0, - "group": "GROUP_NIGHTVISION", - "model": "", - "ammo": "NULL", - "gxtName": "WT_NV", - "gxtDescription": "WTD_NV", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "GADGET_PARACHUTE", - "hash": -72657034, - "clipSize": 0, - "group": "GROUP_PARACHUTE", - "model": "", - "ammo": "NULL", - "gxtName": "WT_PARA", - "gxtDescription": "WTD_PARA", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "OBJECT", - "hash": 966099553, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [ - { - "nameHash": "POLICE_TORCH_FLASHLIGHT", - "hash": -979169299, - "isDefault": false, - "attachBone": "Torch_Bulb" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BRIEFCASE", - "hash": -2000187721, - "clipSize": 0, - "group": "", - "model": "w_am_case", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BRIEFCASE_02", - "hash": 28811031, - "clipSize": 0, - "group": "", - "model": "w_am_brfcase", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BALL", - "hash": 600439132, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_am_baseball", - "ammo": "AMMO_BALL", - "gxtName": "WT_BALL", - "gxtDescription": "WTD_BALL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FLARE", - "hash": 1233104067, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_am_flare", - "ammo": "AMMO_FLARE", - "gxtName": "WT_FLARE", - "gxtDescription": "WTD_FLARE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TANK", - "hash": 1945616459, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_TANK", - "gxtName": "WT_V_TANK", - "gxtDescription": "WTD_V_TANK", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SPACE_ROCKET", - "hash": -123497569, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SPACE_ROCKET", - "gxtName": "WT_V_PLANEMSL", - "gxtDescription": "WTD_V_PLANEMSL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLANE_ROCKET", - "hash": -821520672, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_PLANE_ROCKET", - "gxtName": "WT_V_PLANEMSL", - "gxtDescription": "WTD_V_PLANEMSL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLAYER_LASER", - "hash": -268631733, - "clipSize": 100, - "group": "", - "model": "", - "ammo": "AMMO_PLAYER_LASER", - "gxtName": "WT_V_PLRLSR", - "gxtDescription": "WTD_V_PLRLSR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLAYER_BULLET", - "hash": 1259576109, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLAYER_BUZZARD", - "hash": 1186503822, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLAYER_HUNTER", - "hash": -1625648674, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLAYER_LAZER", - "hash": -494786007, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ENEMY_LASER", - "hash": 1566990507, - "clipSize": 100, - "group": "", - "model": "", - "ammo": "AMMO_ENEMY_LASER", - "gxtName": "WT_A_ENMYLSR", - "gxtDescription": "WTD_A_ENMYLSR", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_SEARCHLIGHT", - "hash": -844344963, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RADAR", - "hash": -764006018, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_VEHICLE_ROCKET", - "hash": -1090665087, - "clipSize": 1, - "group": "GROUP_HEAVY", - "model": "w_lr_rpg", - "ammo": "AMMO_RPG", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [ - { - "nameHash": "COMPONENT_RPG_CLIP_01", - "hash": 1319465907, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BARBED_WIRE", - "hash": 1223143800, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DROWNING", - "hash": -10959621, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DROWNING_IN_VEHICLE", - "hash": 1936677264, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BLEEDING", - "hash": -1955384325, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ELECTRIC_FENCE", - "hash": -1833087301, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_ELCFEN", - "gxtDescription": "WTD_ELCFEN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_EXPLOSION", - "hash": 539292904, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FALL", - "hash": -842959696, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_EXHAUSTION", - "hash": 910830060, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HIT_BY_WATER_CANNON", - "hash": -868994466, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RAMMED_BY_CAR", - "hash": 133987706, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RUN_OVER_BY_CAR", - "hash": -1553120962, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HELI_CRASH", - "hash": 341774354, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_ROTORS", - "hash": -1323279794, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_FIRE", - "hash": -544306709, - "clipSize": 0, - "group": "", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ANIMAL_RETRIEVER", - "hash": -440934790, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SMALL_DOG", - "hash": -1148198339, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_TIGER_SHARK", - "hash": 743550225, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HAMMERHEAD_SHARK", - "hash": -1263987253, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_KILLER_WHALE", - "hash": -96609051, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BOAR", - "hash": 861723357, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PIG", - "hash": 1205296881, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COYOTE", - "hash": 1161062353, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DEER", - "hash": -188319074, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HEN", - "hash": 955837630, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RABBIT", - "hash": -1501041657, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_CAT", - "hash": -495648874, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COW", - "hash": 94548753, - "clipSize": 0, - "group": "GROUP_UNARMED", - "model": "", - "ammo": "NULL", - "gxtName": "WT_INVALID", - "gxtDescription": "WTD_INVALID", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BIRD_CRAP", - "hash": 1834887169, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_birdshat", - "ammo": "AMMO_BIRD_CRAP", - "gxtName": "WT_GNADE", - "gxtDescription": "WTD_GNADE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SNOWBALL", - "hash": 126349499, - "clipSize": 1, - "group": "GROUP_THROWN", - "model": "w_ex_snowball", - "ammo": "AMMO_SNOWBALL", - "gxtName": "WT_SNWBALL", - "gxtDescription": "WTD_SNWBALL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SNSPISTOL", - "hash": -1076751822, - "clipSize": 6, - "group": "GROUP_PISTOL", - "model": "w_pi_sns_pistol", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_SNSPISTOL", - "gxtDescription": "WTD_SNSPISTOL", - "components": [ - { - "nameHash": "COMPONENT_SNSPISTOL_CLIP_01", - "hash": -125817127, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_CLIP_02", - "hash": 2063610803, - "isDefault": false, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SPECIALCARBINE", - "hash": -1063057011, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_specialcarbine", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_SPCARBINE", - "gxtDescription": "WTD_SPCARBINE", - "components": [ - { - "nameHash": "COMPONENT_SPECIALCARBINE_CLIP_01", - "hash": -959978111, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_CLIP_02", - "hash": 2089537806, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM", - "hash": -1596416958, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP", - "hash": 202788691, - "isDefault": false, - "attachBone": "WAPGrip" - } - ], - "equip": { - "visible": true, - "bone": 24818, - "offset": { - "x": 0.09, - "y": -0.15, - "z": 0.1 - }, - "rotation": { - "x": 10, - "y": 160, - "z": 10 - } - } - }, - { - "nameHash": "WEAPON_STONE_HATCHET", - "hash": 940833800, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_stonehatchet", - "ammo": "NULL", - "gxtName": "WT_SHATCHET", - "gxtDescription": "WTD_SHATCHET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SWITCHBLADE", - "hash": -538741184, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_switchblade", - "ammo": "NULL", - "gxtName": "WT_SWBLADE", - "gxtDescription": "WTD_SWBLADE", - "components": [ - { - "nameHash": "COMPONENT_SWITCHBLADE_VARMOD_BASE", - "hash": -1858624256, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SWITCHBLADE_VARMOD_VAR1", - "hash": 1530822070, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SWITCHBLADE_VARMOD_VAR2", - "hash": -409758110, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ARENA_MACHINE_GUN", - "hash": 889061222, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ARENA_HOMING_MISSILE", - "hash": 1686798800, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_ARENA_HOMING_MISSILE", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_ASSAULTRIFLE_MK2", - "hash": 961495388, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_assaultriflemk2", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_RIFLE_ASL2", - "gxtDescription": "WTD_RIFLE_ASL2", - "components": [ - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_01", - "hash": -2045758401, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_02", - "hash": -785724817, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING", - "hash": -1478681000, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ", - "hash": 1675665560, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY", - "hash": -76490669, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER", - "hash": -282298175, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr_2" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_MK2", - "hash": 77277509, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM_MK2", - "hash": -966040254, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_AT_AR_BARREL_01", - "hash": 1134861606, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_AR_BARREL_02", - "hash": 1447477866, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO", - "hash": -1860492113, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_02", - "hash": 937772107, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_03", - "hash": 1401650071, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_04", - "hash": 628662130, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_05", - "hash": -985047251, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_06", - "hash": -812944463, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_07", - "hash": -1447352303, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_08", - "hash": -60338860, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_09", - "hash": 2088750491, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_10", - "hash": -1513913454, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01", - "hash": -1179558480, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_BULLPUPRIFLE_MK2", - "hash": -2066285827, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_bullpupriflemk2", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_BULLRIFLE2", - "gxtDescription": "WTD_BULLRIFLE2", - "components": [ - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_01", - "hash": 25766362, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_02", - "hash": -273676760, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER", - "hash": -2111807319, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY", - "hash": -1449330342, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING", - "hash": -89655827, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ", - "hash": 1130501904, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_02_MK2", - "hash": -944910075, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_MK2", - "hash": 1060929921, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_BP_BARREL_01", - "hash": 1704640795, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_BP_BARREL_02", - "hash": 1005743559, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "isDefault": false, - "attachBone": "WAPGrip" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO", - "hash": -1371515465, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_02", - "hash": -1190793877, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_03", - "hash": -1497085720, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_04", - "hash": -1803148180, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_05", - "hash": -1975971886, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_06", - "hash": 36929477, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_07", - "hash": -268444834, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_08", - "hash": -574769446, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_09", - "hash": -882699739, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_10", - "hash": -1468181474, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01", - "hash": -974541230, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_CARBINERIFLE_MK2", - "hash": -86904375, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_carbineriflemk2", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_RIFLE_CBN2", - "gxtDescription": "WTD_RIFLE_CBN2", - "components": [ - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_01", - "hash": 1283078430, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_02", - "hash": 1574296533, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING", - "hash": 626875735, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ", - "hash": 1141059345, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY", - "hash": 1025884839, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER", - "hash": 391640422, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_MK2", - "hash": 77277509, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM_MK2", - "hash": -966040254, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "isDefault": false, - "attachBone": "WAPGrip_2" - }, - { - "nameHash": "COMPONENT_AT_CR_BARREL_01", - "hash": -2093598721, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_CR_BARREL_02", - "hash": -1958983669, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO", - "hash": 1272803094, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_02", - "hash": 1080719624, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_03", - "hash": 792221348, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_04", - "hash": -452181427, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_05", - "hash": -746774737, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_06", - "hash": -2044296061, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_07", - "hash": -199171978, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_08", - "hash": -1428075016, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_09", - "hash": -1735153315, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_10", - "hash": 1796459838, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01", - "hash": -631911105, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_COMBATMG_MK2", - "hash": -608341376, - "clipSize": 100, - "group": "GROUP_MG", - "model": "w_mg_combatmgmk2", - "ammo": "AMMO_MG", - "gxtName": "WT_MG_CBT2", - "gxtDescription": "WTD_MG_CBT2", - "components": [ - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_01", - "hash": 1227564412, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_02", - "hash": 400507625, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING", - "hash": 696788003, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_FMJ", - "hash": 1475288264, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY", - "hash": -1020871238, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CLIP_TRACER", - "hash": -161179835, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_MK2", - "hash": 1060929921, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM_MK2", - "hash": -966040254, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "isDefault": false, - "attachBone": "WAPGrip_2" - }, - { - "nameHash": "COMPONENT_AT_MG_BARREL_01", - "hash": -1018236364, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_MG_BARREL_02", - "hash": -1243457701, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO", - "hash": 1249283253, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_02", - "hash": -857707587, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_03", - "hash": -1097543898, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_04", - "hash": 1980349969, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_05", - "hash": 1219453777, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_06", - "hash": -1853459190, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_07", - "hash": -2074781016, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_08", - "hash": 457967755, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_09", - "hash": 235171324, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_10", - "hash": 42685294, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_COMBATMG_MK2_CAMO_IND_01", - "hash": -687617715, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_DOUBLEACTION", - "hash": -1746263880, - "clipSize": 6, - "group": "GROUP_PISTOL", - "model": "w_pi_wep1_gun", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_REV_DA", - "gxtDescription": "WTD_REV_DA", - "components": [ - { - "nameHash": "COMPONENT_DOUBLEACTION_CLIP_01", - "hash": 1328622785, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HEAVYSNIPER_MK2", - "hash": 177293209, - "clipSize": 6, - "group": "GROUP_SNIPER", - "model": "w_sr_heavysnipermk2", - "ammo": "AMMO_SNIPER", - "gxtName": "WT_SNIP_HVY2", - "gxtDescription": "WTD_SNIP_HVY2", - "components": [ - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_01", - "hash": -98690520, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_02", - "hash": 752418717, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING", - "hash": -130689324, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE", - "hash": -1981031769, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ", - "hash": 1005144310, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY", - "hash": 247526935, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE_MK2", - "hash": -2101279869, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MAX", - "hash": -1135289737, - "isDefault": true, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_NV", - "hash": -1233121104, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_THERMAL", - "hash": 776198721, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SR_SUPP_03", - "hash": -1404903567, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_08", - "hash": 1602080333, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_09", - "hash": 1764221345, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_SR_BARREL_01", - "hash": -1869205321, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_SR_BARREL_02", - "hash": 277524638, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO", - "hash": -130843390, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_02", - "hash": -977347227, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_03", - "hash": -378461067, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_04", - "hash": 329939175, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_05", - "hash": 643374672, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_06", - "hash": 807875052, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_07", - "hash": -1401804168, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_08", - "hash": -1096495395, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_09", - "hash": -847811454, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_10", - "hash": -1413108537, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01", - "hash": 1815270123, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_MARKSMANRIFLE_MK2", - "hash": 1785463520, - "clipSize": 8, - "group": "GROUP_SNIPER", - "model": "w_sr_marksmanriflemk2", - "ammo": "AMMO_SNIPER", - "gxtName": "WT_MKRIFLE2", - "gxtDescription": "WTD_MKRIFLE2", - "components": [ - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_01", - "hash": -1797182002, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_02", - "hash": -422587990, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING", - "hash": -193998727, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ", - "hash": -515203373, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY", - "hash": 1842849902, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER", - "hash": -679861550, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM_MK2", - "hash": -966040254, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2", - "hash": 1528590652, - "isDefault": true, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP", - "hash": -2089531990, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "isDefault": false, - "attachBone": "WAPGrip_2" - }, - { - "nameHash": "COMPONENT_AT_MRFL_BARREL_01", - "hash": 941317513, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_MRFL_BARREL_02", - "hash": 1748450780, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO", - "hash": -1869284448, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_02", - "hash": 1931539634, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_03", - "hash": 1624199183, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_04", - "hash": -26834113, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_05", - "hash": -210406055, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_06", - "hash": 423313640, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_07", - "hash": 276639596, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_08", - "hash": -991356863, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_09", - "hash": -1682848301, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_10", - "hash": 996213771, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01", - "hash": -1214048550, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PISTOL_MK2", - "hash": -1075685676, - "clipSize": 12, - "group": "GROUP_PISTOL", - "model": "w_pi_pistolmk2", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_PIST2", - "gxtDescription": "WTD_PIST2", - "components": [ - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_01", - "hash": -1795936926, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_02", - "hash": 1591132456, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_FMJ", - "hash": 1329061674, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT", - "hash": -2046910199, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_INCENDIARY", - "hash": 733837882, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CLIP_TRACER", - "hash": 634039983, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_RAIL", - "hash": -1898661008, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH_02", - "hash": 1140676955, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP_02", - "hash": 1709866683, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_PI_COMP", - "hash": 568543123, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_SLIDE", - "hash": -1258515792, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_02_SLIDE", - "hash": 438243936, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_03_SLIDE", - "hash": -455079056, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_04_SLIDE", - "hash": 740920107, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_05_SLIDE", - "hash": -541616347, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_06_SLIDE", - "hash": 1809261196, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_07_SLIDE", - "hash": -1646538868, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_08_SLIDE", - "hash": -1290164948, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_09_SLIDE", - "hash": -964465134, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_10_SLIDE", - "hash": 1135718771, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE", - "hash": 1253942266, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO", - "hash": 1550611612, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_02", - "hash": 368550800, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_03", - "hash": -1769069349, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_04", - "hash": 24902297, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_05", - "hash": -228041614, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_06", - "hash": -584961562, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_07", - "hash": -1153175946, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_08", - "hash": 1301287696, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_09", - "hash": 1597093459, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_10", - "hash": 1769871776, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PISTOL_MK2_CAMO_IND_01", - "hash": -1827882671, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_PUMPSHOTGUN_MK2", - "hash": 1432025498, - "clipSize": 8, - "group": "GROUP_SHOTGUN", - "model": "w_sg_pumpshotgunmk2", - "ammo": "AMMO_SHOTGUN", - "gxtName": "WT_SG_PMP2", - "gxtDescription": "WTD_SG_PMP2", - "components": [ - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_01", - "hash": -845938367, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING", - "hash": 1315288101, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE", - "hash": 1004815965, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT", - "hash": -380098265, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY", - "hash": -1618338827, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_MK2", - "hash": 77277509, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_MK2", - "hash": 1060929921, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr_2" - }, - { - "nameHash": "COMPONENT_AT_SR_SUPP_03", - "hash": -1404903567, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_08", - "hash": 1602080333, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO", - "hash": -474112444, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_02", - "hash": 387223451, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_03", - "hash": 617753366, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_04", - "hash": -222378256, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_05", - "hash": 8741501, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_06", - "hash": -601286203, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_07", - "hash": -511433605, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_08", - "hash": -655387818, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_09", - "hash": -282476598, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_10", - "hash": 1739501925, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01", - "hash": 1178671645, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_REVOLVER_MK2", - "hash": -879347409, - "clipSize": 6, - "group": "GROUP_PISTOL", - "model": "w_pi_revolvermk2", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_REVOLVER2", - "gxtDescription": "WTD_REVOLVER2", - "components": [ - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_01", - "hash": -1172055874, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_FMJ", - "hash": 231258687, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT", - "hash": 284438159, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY", - "hash": 15712037, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CLIP_TRACER", - "hash": -958864266, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_MK2", - "hash": 77277509, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH", - "hash": 899381934, - "isDefault": false, - "attachBone": "WAPFlshLasr" - }, - { - "nameHash": "COMPONENT_AT_PI_COMP_03", - "hash": 654802123, - "isDefault": false, - "attachBone": "WAPSupp" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO", - "hash": -1069552225, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_02", - "hash": 11918884, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_03", - "hash": 176157112, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_04", - "hash": -220052855, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_05", - "hash": 288456487, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_06", - "hash": 398658626, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_07", - "hash": 628697006, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_08", - "hash": 925911836, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_09", - "hash": 1222307441, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_10", - "hash": 552442715, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_REVOLVER_MK2_CAMO_IND_01", - "hash": -648943513, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SMG_MK2", - "hash": 2024373456, - "clipSize": 30, - "group": "GROUP_SMG", - "model": "w_sb_smgmk2", - "ammo": "AMMO_SMG", - "gxtName": "WT_SMG2", - "gxtDescription": "WTD_SMG2", - "components": [ - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_01", - "hash": 1277460590, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_02", - "hash": -1182573778, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_FMJ", - "hash": 190476639, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT", - "hash": 974903034, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_INCENDIARY", - "hash": -644734235, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CLIP_TRACER", - "hash": 2146055916, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr_2" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS_SMG", - "hash": -1613015470, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2", - "hash": -452809877, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_SMALL_SMG_MK2", - "hash": 1038927834, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_SB_BARREL_01", - "hash": -653246751, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_SB_BARREL_02", - "hash": -1520117877, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO", - "hash": -996700057, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_02", - "hash": 940943685, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_03", - "hash": 1263226800, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_04", - "hash": -328035840, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_05", - "hash": 1224100642, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_06", - "hash": 899228776, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_07", - "hash": 616006309, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_08", - "hash": -1561952511, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_09", - "hash": 572063080, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_10", - "hash": 1170588613, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SMG_MK2_CAMO_IND_01", - "hash": 966612367, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SNSPISTOL_MK2", - "hash": -2009644972, - "clipSize": 6, - "group": "GROUP_PISTOL", - "model": "w_pi_sns_pistolmk2", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_SNSPISTOL2", - "gxtDescription": "WTD_SNSPISTOL2", - "components": [ - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_01", - "hash": 21392614, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_02", - "hash": -829683854, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_TRACER", - "hash": -1876057490, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY", - "hash": -424845447, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT", - "hash": -1928301566, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CLIP_FMJ", - "hash": -1055790298, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_FLSH_03", - "hash": 1246324211, - "isDefault": false, - "attachBone": "WAPFlshLasr_2" - }, - { - "nameHash": "COMPONENT_AT_PI_RAIL_02", - "hash": 1205768792, - "isDefault": false, - "attachBone": "WAPScop" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP_02", - "hash": 1709866683, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_PI_COMP_02", - "hash": -1434287169, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE", - "hash": -403805974, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE", - "hash": 691432737, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE", - "hash": 987648331, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE", - "hash": -431680535, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE", - "hash": -847582310, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE", - "hash": -92592218, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE", - "hash": -494548326, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE", - "hash": 730876697, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE", - "hash": 583159708, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE", - "hash": -1928503603, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE", - "hash": 520557834, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO", - "hash": 259780317, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_02", - "hash": -1973342474, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_03", - "hash": 1996130345, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_04", - "hash": -1455657812, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_05", - "hash": -1668263084, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_06", - "hash": 1308243489, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_07", - "hash": 1122574335, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_08", - "hash": 1420313469, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_09", - "hash": 109848390, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_10", - "hash": 593945703, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SNSPISTOL_MK2_CAMO_IND_01", - "hash": 1142457062, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RAYPISTOL", - "hash": -1355376991, - "clipSize": 1, - "group": "GROUP_PISTOL", - "model": "w_pi_raygun", - "ammo": "AMMO_RAYPISTOL", - "gxtName": "WT_RAYPISTOL", - "gxtDescription": "WTD_RAYPISTOL", - "components": [ - { - "nameHash": "COMPONENT_RAYPISTOL_VARMOD_XMAS18", - "hash": -673450233, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RAYCARBINE", - "hash": 1198256469, - "clipSize": 9999, - "group": "GROUP_MG", - "model": "w_ar_srifle", - "ammo": "AMMO_MG", - "gxtName": "WT_RAYCARBINE", - "gxtDescription": "WTD_RAYCARBINE", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_RAYMINIGUN", - "hash": -1238556825, - "clipSize": 15000, - "group": "GROUP_HEAVY", - "model": "w_mg_sminigun", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_RAYMINIGUN", - "gxtDescription": "WTD_RAYMINIGUN", - "components": [ - { - "nameHash": "COMPONENT_MINIGUN_CLIP_01", - "hash": -924946682, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_SPECIALCARBINE_MK2", - "hash": -1768145561, - "clipSize": 30, - "group": "GROUP_RIFLE", - "model": "w_ar_specialcarbinemk2", - "ammo": "AMMO_RIFLE", - "gxtName": "WT_SPCARBINE2", - "gxtDescription": "WTD_SPCARBINE2", - "components": [ - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_01", - "hash": 382112385, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_02", - "hash": -568352468, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER", - "hash": -2023373174, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY", - "hash": -570355066, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING", - "hash": 1362433589, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ", - "hash": 1346235024, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_AR_FLSH", - "hash": 2076495324, - "isDefault": false, - "attachBone": "WAPFlshLasr_2" - }, - { - "nameHash": "COMPONENT_AT_SIGHTS", - "hash": 1108334355, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MACRO_MK2", - "hash": 77277509, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_SCOPE_MEDIUM_MK2", - "hash": -966040254, - "isDefault": false, - "attachBone": "WAPScop_2" - }, - { - "nameHash": "COMPONENT_AT_AR_SUPP_02", - "hash": -1489156508, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_01", - "hash": -1181482284, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_02", - "hash": -932732805, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_03", - "hash": -569259057, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_04", - "hash": -326080308, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_05", - "hash": 48731514, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_06", - "hash": 880736428, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_MUZZLE_07", - "hash": 1303784126, - "isDefault": false, - "attachBone": "WAPSupp_2" - }, - { - "nameHash": "COMPONENT_AT_AR_AFGRIP_02", - "hash": -1654288262, - "isDefault": false, - "attachBone": "WAPGrip_2" - }, - { - "nameHash": "COMPONENT_AT_SC_BARREL_01", - "hash": -415870039, - "isDefault": true, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_AT_SC_BARREL_02", - "hash": -109086661, - "isDefault": false, - "attachBone": "WAPBarrel" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO", - "hash": -737430213, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_02", - "hash": 1125852043, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_03", - "hash": 886015732, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_04", - "hash": -1262287139, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_05", - "hash": -295208411, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_06", - "hash": -544154504, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_07", - "hash": 172765678, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_08", - "hash": -1982877449, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_09", - "hash": 2072122460, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_10", - "hash": -1986220171, - "isDefault": false, - "attachBone": "gun_root" - }, - { - "nameHash": "COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01", - "hash": 1377355801, - "isDefault": false, - "attachBone": "gun_root" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TURRET_BOXVILLE", - "hash": -1253095144, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TURRET", - "gxtDescription": "WTD_V_TURRET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TURRET_INSURGENT", - "hash": 1155224728, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TURRET", - "gxtDescription": "WTD_V_TURRET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TURRET_LIMO", - "hash": 729375873, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TURRET", - "gxtDescription": "WTD_V_TURRET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TURRET_TECHNICAL", - "hash": 2144528907, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MG", - "gxtName": "WT_V_TURRET", - "gxtDescription": "WTD_V_TURRET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_NOSE_TURRET_VALKYRIE", - "hash": 1097917585, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_TURRET_VALKYRIE", - "hash": -1538179531, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_TURRET", - "gxtDescription": "WTD_V_TURRET", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RUINER_BULLET", - "hash": 50118905, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_PLRBUL", - "gxtDescription": "WTD_V_PLRBUL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_RUINER_ROCKET", - "hash": 84788907, - "clipSize": 1, - "group": "", - "model": "", - "ammo": "AMMO_SPACE_ROCKET", - "gxtName": "WT_V_PLANEMSL", - "gxtDescription": "WTD_V_PLANEMSL", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "VEHICLE_WEAPON_PLAYER_SAVAGE", - "hash": 1638077257, - "clipSize": 750, - "group": "", - "model": "", - "ammo": "AMMO_MINIGUN", - "gxtName": "WT_V_LZRCAN", - "gxtDescription": "WTD_V_LZRCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_VINTAGEPISTOL", - "hash": 137902532, - "clipSize": 7, - "group": "GROUP_PISTOL", - "model": "w_pi_vintage_pistol", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_VPISTOL", - "gxtDescription": "WTD_VPISTOL", - "components": [ - { - "nameHash": "COMPONENT_VINTAGEPISTOL_CLIP_01", - "hash": 1168357051, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_VINTAGEPISTOL_CLIP_02", - "hash": 867832552, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_AT_PI_SUPP", - "hash": -1023114086, - "isDefault": false, - "attachBone": "WAPSupp_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_WRENCH", - "hash": 419712736, - "clipSize": 0, - "group": "GROUP_MELEE", - "model": "w_me_wrench", - "ammo": "NULL", - "gxtName": "WT_WRENCH", - "gxtDescription": "WTD_WRENCH", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_CERAMICPISTOL", - "hash": 727643628, - "clipSize": 12, - "group": "GROUP_PISTOL", - "model": "w_pi_ceramic_pistol", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_CERPST", - "gxtDescription": "WTD_CERPST", - "components": [ - { - "nameHash": "COMPONENT_CERAMICPISTOL_CLIP_01", - "hash": 1423184737, - "isDefault": true, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CERAMICPISTOL_CLIP_02", - "hash": -2122814295, - "isDefault": false, - "attachBone": "WAPClip" - }, - { - "nameHash": "COMPONENT_CERAMICPISTOL_SUPP", - "hash": -1828202758, - "isDefault": false, - "attachBone": "WAPSupp_2" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_HAZARDCAN", - "hash": -1168940174, - "clipSize": 4500, - "group": "GROUP_PETROLCAN", - "model": "w_ch_jerrycan", - "ammo": "AMMO_HAZARDCAN", - "gxtName": "WT_HAZARDCAN", - "gxtDescription": "WTD_HAZARDCAN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_NAVYREVOLVER", - "hash": -1853920116, - "clipSize": 6, - "group": "GROUP_PISTOL", - "model": "w_pi_wep2_gun", - "ammo": "AMMO_PISTOL", - "gxtName": "WT_REV_NV", - "gxtDescription": "WTD_REV_NV", - "components": [ - { - "nameHash": "COMPONENT_NAVYREVOLVER_CLIP_01", - "hash": -1738620313, - "isDefault": true, - "attachBone": "WAPClip" - } - ], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - { - "nameHash": "WEAPON_TRANQUILIZER", - "hash": 849905853, - "clipSize": 2104529083, - "group": "GROUP_TRANQILIZER", - "model": "w_pi_stungun", - "ammo": "AMMO_TRANQUILIZER", - "gxtName": "WT_STUN", - "gxtDescription": "WTD_STUN", - "components": [], - "equip": { - "visible": false, - "bone": 24818, - "offset": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0 - } - } - } -] \ No newline at end of file diff --git a/tools/export/weapon_ammo_config.lua b/tools/export/weapon_ammo_config.lua deleted file mode 100644 index 90e68ae..0000000 --- a/tools/export/weapon_ammo_config.lua +++ /dev/null @@ -1,674 +0,0 @@ -Config.WeaponAmmos = { - ['AMMO_MOBILEOPS_CANNON'] = { - id = 'AMMO_MOBILEOPS_CANNON', - hash = 764589401, - max = 20, - name = _(CR(), 'core', 'ammo_mobileops_cannon') - }, - ['AMMO_APC_CANNON'] = { - id = 'AMMO_APC_CANNON', - hash = -767591211, - max = 100, - name = _(CR(), 'core', 'ammo_apc_cannon') - }, - ['AMMO_APC_MISSILE'] = { - id = 'AMMO_APC_MISSILE', - hash = 119573070, - max = 20, - name = _(CR(), 'core', 'ammo_apc_missile') - }, - ['AMMO_AVENGER_CANNON'] = { - id = 'AMMO_AVENGER_CANNON', - hash = 1849772700, - max = 20, - name = _(CR(), 'core', 'ammo_avenger_cannon') - }, - ['AMMO_BARRAGE_GL'] = { - id = 'AMMO_BARRAGE_GL', - hash = 1364454752, - max = 20, - name = _(CR(), 'core', 'ammo_barrage_gl') - }, - ['AMMO_VEHICLEBOMB'] = { - id = 'AMMO_VEHICLEBOMB', - hash = -1615671818, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb') - }, - ['AMMO_VEHICLEBOMB_CLUSTER'] = { - id = 'AMMO_VEHICLEBOMB_CLUSTER', - hash = 1584038003, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_cluster') - }, - ['AMMO_VEHICLEBOMB_GAS'] = { - id = 'AMMO_VEHICLEBOMB_GAS', - hash = 314485403, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_gas') - }, - ['AMMO_VEHICLEBOMB_INCENDIARY'] = { - id = 'AMMO_VEHICLEBOMB_INCENDIARY', - hash = -111286589, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_incendiary') - }, - ['AMMO_CHERNO_MISSILE'] = { - id = 'AMMO_CHERNO_MISSILE', - hash = -1278325590, - max = 10, - name = _(CR(), 'core', 'ammo_cherno_missile') - }, - ['AMMO_DUNE_GRENADELAUNCHER'] = { - id = 'AMMO_DUNE_GRENADELAUNCHER', - hash = 1742067183, - max = 20, - name = _(CR(), 'core', 'ammo_dune_grenadelauncher') - }, - ['AMMO_HACKER_MISSILE'] = { - id = 'AMMO_HACKER_MISSILE', - hash = -2009808731, - max = 20, - name = _(CR(), 'core', 'ammo_hacker_missile') - }, - ['AMMO_HUNTER_MISSILE'] = { - id = 'AMMO_HUNTER_MISSILE', - hash = -119401255, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_missile') - }, - ['AMMO_HUNTER_BARRAGE'] = { - id = 'AMMO_HUNTER_BARRAGE', - hash = 935462248, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_barrage') - }, - ['AMMO_KHANJALI_GL'] = { - id = 'AMMO_KHANJALI_GL', - hash = -1630507076, - max = 20, - name = _(CR(), 'core', 'ammo_khanjali_gl') - }, - ['AMMO_KHANJALI_CANNON_HEAVY'] = { - id = 'AMMO_KHANJALI_CANNON_HEAVY', - hash = 617011510, - max = 100, - name = _(CR(), 'core', 'ammo_khanjali_cannon_heavy') - }, - ['AMMO_VEHICLEMINE'] = { - id = 'AMMO_VEHICLEMINE', - hash = 612448028, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine') - }, - ['AMMO_VEHICLEMINE_KINETIC'] = { - id = 'AMMO_VEHICLEMINE_KINETIC', - hash = -1140465749, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic') - }, - ['AMMO_VEHICLEMINE_EMP'] = { - id = 'AMMO_VEHICLEMINE_EMP', - hash = 1653442244, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp') - }, - ['AMMO_VEHICLEMINE_SPIKE'] = { - id = 'AMMO_VEHICLEMINE_SPIKE', - hash = 1782795920, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike') - }, - ['AMMO_VEHICLEMINE_SLICK'] = { - id = 'AMMO_VEHICLEMINE_SLICK', - hash = -418520852, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick') - }, - ['AMMO_VEHICLEMINE_TAR'] = { - id = 'AMMO_VEHICLEMINE_TAR', - hash = -1733963618, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar') - }, - ['AMMO_VEHICLEMINE_KINETIC_RC'] = { - id = 'AMMO_VEHICLEMINE_KINETIC_RC', - hash = -338616823, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic_rc') - }, - ['AMMO_VEHICLEMINE_EMP_RC'] = { - id = 'AMMO_VEHICLEMINE_EMP_RC', - hash = -930619152, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp_rc') - }, - ['AMMO_VEHICLEMINE_SPIKE_RC'] = { - id = 'AMMO_VEHICLEMINE_SPIKE_RC', - hash = -1317227407, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike_rc') - }, - ['AMMO_VEHICLEMINE_SLICK_RC'] = { - id = 'AMMO_VEHICLEMINE_SLICK_RC', - hash = -590129723, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick_rc') - }, - ['AMMO_VEHICLEMINE_TAR_RC'] = { - id = 'AMMO_VEHICLEMINE_TAR_RC', - hash = -1955683003, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar_rc') - }, - ['AMMO_MONSTER3_KINETIC'] = { - id = 'AMMO_MONSTER3_KINETIC', - hash = 2074953483, - max = 10, - name = _(CR(), 'core', 'ammo_monster3_kinetic') - }, - ['AMMO_MORTAR_EXPLOSIVE'] = { - id = 'AMMO_MORTAR_EXPLOSIVE', - hash = 814030577, - max = 10, - name = _(CR(), 'core', 'ammo_mortar_explosive') - }, - ['AMMO_MORTAR_KINETIC'] = { - id = 'AMMO_MORTAR_KINETIC', - hash = 648487681, - max = 10, - name = _(CR(), 'core', 'ammo_mortar_kinetic') - }, - ['AMMO_MULE4_GL'] = { - id = 'AMMO_MULE4_GL', - hash = -206645419, - max = 20, - name = _(CR(), 'core', 'ammo_mule4_gl') - }, - ['AMMO_OPPRESSOR_MISSILE'] = { - id = 'AMMO_OPPRESSOR_MISSILE', - hash = 570854289, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor_missile') - }, - ['AMMO_OPPRESSOR2_MISSILE'] = { - id = 'AMMO_OPPRESSOR2_MISSILE', - hash = 914231229, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor2_missile') - }, - ['AMMO_POUNDER2_MISSILE'] = { - id = 'AMMO_POUNDER2_MISSILE', - hash = 948447183, - max = 20, - name = _(CR(), 'core', 'ammo_pounder2_missile') - }, - ['AMMO_POUNDER2_GL'] = { - id = 'AMMO_POUNDER2_GL', - hash = 1624456817, - max = 20, - name = _(CR(), 'core', 'ammo_pounder2_gl') - }, - ['AMMO_ROGUE_MISSILE'] = { - id = 'AMMO_ROGUE_MISSILE', - hash = -1421421393, - max = 20, - name = _(CR(), 'core', 'ammo_rogue_missile') - }, - ['AMMO_SCRAMJET_MISSILE'] = { - id = 'AMMO_SCRAMJET_MISSILE', - hash = -1664293218, - max = 20, - name = _(CR(), 'core', 'ammo_scramjet_missile') - }, - ['AMMO_STRIKEFORCE_BARRAGE'] = { - id = 'AMMO_STRIKEFORCE_BARRAGE', - hash = 987449399, - max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_barrage') - }, - ['AMMO_STRIKEFORCE_MISSILE'] = { - id = 'AMMO_STRIKEFORCE_MISSILE', - hash = 770578418, - max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_missile') - }, - ['AMMO_SUBCAR_MISSILE'] = { - id = 'AMMO_SUBCAR_MISSILE', - hash = 456482729, - max = 100, - name = _(CR(), 'core', 'ammo_subcar_missile') - }, - ['AMMO_SUBCAR_TORPEDO'] = { - id = 'AMMO_SUBCAR_TORPEDO', - hash = -684945118, - max = 100, - name = _(CR(), 'core', 'ammo_subcar_torpedo') - }, - ['AMMO_TAMPA_MORTAR'] = { - id = 'AMMO_TAMPA_MORTAR', - hash = -405037695, - max = 10, - name = _(CR(), 'core', 'ammo_tampa_mortar') - }, - ['AMMO_THRUSTER_MISSILE'] = { - id = 'AMMO_THRUSTER_MISSILE', - hash = -379666311, - max = 20, - name = _(CR(), 'core', 'ammo_thruster_missile') - }, - ['AMMO_TRAILER_AA'] = { - id = 'AMMO_TRAILER_AA', - hash = 881918194, - max = 100, - name = _(CR(), 'core', 'ammo_trailer_aa') - }, - ['AMMO_TRAILER_MISSILE'] = { - id = 'AMMO_TRAILER_MISSILE', - hash = -11173636, - max = 10, - name = _(CR(), 'core', 'ammo_trailer_missile') - }, - ['AMMO_VIGILANTE_MISSILE'] = { - id = 'AMMO_VIGILANTE_MISSILE', - hash = 1507289724, - max = 20, - name = _(CR(), 'core', 'ammo_vigilante_missile') - }, - ['AMMO_VEHICLEBOMB_WIDE'] = { - id = 'AMMO_VEHICLEBOMB_WIDE', - hash = -117387562, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_wide') - }, - ['AMMO_RCTANK_ROCKET'] = { - id = 'AMMO_RCTANK_ROCKET', - hash = -1585454291, - max = 20, - name = _(CR(), 'core', 'ammo_rctank_rocket') - }, - ['AMMO_FIREWORK'] = { - id = 'AMMO_FIREWORK', - hash = -1356599793, - max = 20, - name = _(CR(), 'core', 'ammo_firework') - }, - ['AMMO_FLAREGUN'] = { - id = 'AMMO_FLAREGUN', - hash = 1173416293, - max = 20, - name = _(CR(), 'core', 'ammo_flaregun') - }, - ['AMMO_HOMINGLAUNCHER'] = { - id = 'AMMO_HOMINGLAUNCHER', - hash = -1726673363, - max = 10, - name = _(CR(), 'core', 'ammo_hominglauncher') - }, - ['AMMO_PIPEBOMB'] = { - id = 'AMMO_PIPEBOMB', - hash = 357983224, - max = 10, - name = _(CR(), 'core', 'ammo_pipebomb') - }, - ['AMMO_PROXMINE'] = { - id = 'AMMO_PROXMINE', - hash = -1356724057, - max = 5, - name = _(CR(), 'core', 'ammo_proxmine') - }, - ['AMMO_RAILGUN'] = { - id = 'AMMO_RAILGUN', - hash = 2034517757, - max = 20, - name = _(CR(), 'core', 'ammo_railgun') - }, - ['AMMO_PISTOL'] = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - ['AMMO_SMG'] = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - ['AMMO_RIFLE'] = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - ['AMMO_MG'] = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - ['AMMO_SHOTGUN'] = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - ['AMMO_STUNGUN'] = { - id = 'AMMO_STUNGUN', - hash = -1339118112, - max = 250, - name = _(CR(), 'core', 'ammo_stungun') - }, - ['AMMO_SNIPER'] = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - ['AMMO_SNIPER_REMOTE'] = { - id = 'AMMO_SNIPER_REMOTE', - hash = -19235536, - max = 250, - name = _(CR(), 'core', 'ammo_sniper_remote') - }, - ['AMMO_FIREEXTINGUISHER'] = { - id = 'AMMO_FIREEXTINGUISHER', - hash = 1359393852, - max = 2000, - name = _(CR(), 'core', 'ammo_fireextinguisher') - }, - ['AMMO_PETROLCAN'] = { - id = 'AMMO_PETROLCAN', - hash = -899475295, - max = 4500, - name = _(CR(), 'core', 'ammo_petrolcan') - }, - ['AMMO_MINIGUN'] = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - ['AMMO_GRENADELAUNCHER'] = { - id = 'AMMO_GRENADELAUNCHER', - hash = 1003267566, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher') - }, - ['AMMO_GRENADELAUNCHER_SMOKE'] = { - id = 'AMMO_GRENADELAUNCHER_SMOKE', - hash = 826266432, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher_smoke') - }, - ['AMMO_RPG'] = { - id = 'AMMO_RPG', - hash = 1742569970, - max = 20, - name = _(CR(), 'core', 'ammo_rpg') - }, - ['AMMO_STINGER'] = { - id = 'AMMO_STINGER', - hash = -1857257158, - max = 20, - name = _(CR(), 'core', 'ammo_stinger') - }, - ['AMMO_GRENADE'] = { - id = 'AMMO_GRENADE', - hash = 1003688881, - max = 25, - name = _(CR(), 'core', 'ammo_grenade') - }, - ['AMMO_BALL'] = { - id = 'AMMO_BALL', - hash = -6986138, - max = 1, - name = _(CR(), 'core', 'ammo_ball') - }, - ['AMMO_STICKYBOMB'] = { - id = 'AMMO_STICKYBOMB', - hash = 1411692055, - max = 25, - name = _(CR(), 'core', 'ammo_stickybomb') - }, - ['AMMO_SMOKEGRENADE'] = { - id = 'AMMO_SMOKEGRENADE', - hash = -435287898, - max = 25, - name = _(CR(), 'core', 'ammo_smokegrenade') - }, - ['AMMO_BZGAS'] = { - id = 'AMMO_BZGAS', - hash = -1686864220, - max = 25, - name = _(CR(), 'core', 'ammo_bzgas') - }, - ['AMMO_FLARE'] = { - id = 'AMMO_FLARE', - hash = 1808594799, - max = 25, - name = _(CR(), 'core', 'ammo_flare') - }, - ['AMMO_MOLOTOV'] = { - id = 'AMMO_MOLOTOV', - hash = 1446246869, - max = 25, - name = _(CR(), 'core', 'ammo_molotov') - }, - ['AMMO_TANK'] = { - id = 'AMMO_TANK', - hash = -1474608608, - max = 100, - name = _(CR(), 'core', 'ammo_tank') - }, - ['AMMO_SPACE_ROCKET'] = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - ['AMMO_PLANE_ROCKET'] = { - id = 'AMMO_PLANE_ROCKET', - hash = 1198741878, - max = 20, - name = _(CR(), 'core', 'ammo_plane_rocket') - }, - ['AMMO_PLAYER_LASER'] = { - id = 'AMMO_PLAYER_LASER', - hash = -165357558, - max = 100, - name = _(CR(), 'core', 'ammo_player_laser') - }, - ['AMMO_ENEMY_LASER'] = { - id = 'AMMO_ENEMY_LASER', - hash = -1372674932, - max = 100, - name = _(CR(), 'core', 'ammo_enemy_laser') - }, - ['AMMO_BIRD_CRAP'] = { - id = 'AMMO_BIRD_CRAP', - hash = 1117307028, - max = 25, - name = _(CR(), 'core', 'ammo_bird_crap') - }, - ['AMMO_MG_ARMORPIERCING'] = { - id = 'AMMO_MG_ARMORPIERCING', - hash = 784861712, - max = 480, - name = _(CR(), 'core', 'ammo_mg_armorpiercing') - }, - ['AMMO_MG_FMJ'] = { - id = 'AMMO_MG_FMJ', - hash = 234717365, - max = 480, - name = _(CR(), 'core', 'ammo_mg_fmj') - }, - ['AMMO_MG_INCENDIARY'] = { - id = 'AMMO_MG_INCENDIARY', - hash = 1461941360, - max = 480, - name = _(CR(), 'core', 'ammo_mg_incendiary') - }, - ['AMMO_MG_TRACER'] = { - id = 'AMMO_MG_TRACER', - hash = 1226421483, - max = 600, - name = _(CR(), 'core', 'ammo_mg_tracer') - }, - ['AMMO_PISTOL_FMJ'] = { - id = 'AMMO_PISTOL_FMJ', - hash = -1132792829, - max = 240, - name = _(CR(), 'core', 'ammo_pistol_fmj') - }, - ['AMMO_PISTOL_HOLLOWPOINT'] = { - id = 'AMMO_PISTOL_HOLLOWPOINT', - hash = -836519658, - max = 240, - name = _(CR(), 'core', 'ammo_pistol_hollowpoint') - }, - ['AMMO_PISTOL_INCENDIARY'] = { - id = 'AMMO_PISTOL_INCENDIARY', - hash = -1416716039, - max = 240, - name = _(CR(), 'core', 'ammo_pistol_incendiary') - }, - ['AMMO_PISTOL_TRACER'] = { - id = 'AMMO_PISTOL_TRACER', - hash = -1193480661, - max = 360, - name = _(CR(), 'core', 'ammo_pistol_tracer') - }, - ['AMMO_RIFLE_ARMORPIERCING'] = { - id = 'AMMO_RIFLE_ARMORPIERCING', - hash = 423744068, - max = 240, - name = _(CR(), 'core', 'ammo_rifle_armorpiercing') - }, - ['AMMO_RIFLE_FMJ'] = { - id = 'AMMO_RIFLE_FMJ', - hash = 1586900444, - max = 240, - name = _(CR(), 'core', 'ammo_rifle_fmj') - }, - ['AMMO_RIFLE_INCENDIARY'] = { - id = 'AMMO_RIFLE_INCENDIARY', - hash = -1829688883, - max = 240, - name = _(CR(), 'core', 'ammo_rifle_incendiary') - }, - ['AMMO_RIFLE_TRACER'] = { - id = 'AMMO_RIFLE_TRACER', - hash = -1340502689, - max = 360, - name = _(CR(), 'core', 'ammo_rifle_tracer') - }, - ['AMMO_SMG_FMJ'] = { - id = 'AMMO_SMG_FMJ', - hash = 758230489, - max = 240, - name = _(CR(), 'core', 'ammo_smg_fmj') - }, - ['AMMO_SMG_HOLLOWPOINT'] = { - id = 'AMMO_SMG_HOLLOWPOINT', - hash = 670318226, - max = 240, - name = _(CR(), 'core', 'ammo_smg_hollowpoint') - }, - ['AMMO_SMG_INCENDIARY'] = { - id = 'AMMO_SMG_INCENDIARY', - hash = -332892697, - max = 240, - name = _(CR(), 'core', 'ammo_smg_incendiary') - }, - ['AMMO_SMG_TRACER'] = { - id = 'AMMO_SMG_TRACER', - hash = 1569785553, - max = 360, - name = _(CR(), 'core', 'ammo_smg_tracer') - }, - ['AMMO_SNIPER_ARMORPIERCING'] = { - id = 'AMMO_SNIPER_ARMORPIERCING', - hash = -1497580119, - max = 80, - name = _(CR(), 'core', 'ammo_sniper_armorpiercing') - }, - ['AMMO_SNIPER_EXPLOSIVE'] = { - id = 'AMMO_SNIPER_EXPLOSIVE', - hash = -1378784071, - max = 40, - name = _(CR(), 'core', 'ammo_sniper_explosive') - }, - ['AMMO_SNIPER_FMJ'] = { - id = 'AMMO_SNIPER_FMJ', - hash = -168704490, - max = 80, - name = _(CR(), 'core', 'ammo_sniper_fmj') - }, - ['AMMO_SNIPER_INCENDIARY'] = { - id = 'AMMO_SNIPER_INCENDIARY', - hash = 796697766, - max = 80, - name = _(CR(), 'core', 'ammo_sniper_incendiary') - }, - ['AMMO_SNIPER_TRACER'] = { - id = 'AMMO_SNIPER_TRACER', - hash = 1184011213, - max = 320, - name = _(CR(), 'core', 'ammo_sniper_tracer') - }, - ['AMMO_SHOTGUN_ARMORPIERCING'] = { - id = 'AMMO_SHOTGUN_ARMORPIERCING', - hash = 1923327840, - max = 160, - name = _(CR(), 'core', 'ammo_shotgun_armorpiercing') - }, - ['AMMO_SHOTGUN_EXPLOSIVE'] = { - id = 'AMMO_SHOTGUN_EXPLOSIVE', - hash = -309302955, - max = 40, - name = _(CR(), 'core', 'ammo_shotgun_explosive') - }, - ['AMMO_SHOTGUN_HOLLOWPOINT'] = { - id = 'AMMO_SHOTGUN_HOLLOWPOINT', - hash = 2089185906, - max = 160, - name = _(CR(), 'core', 'ammo_shotgun_hollowpoint') - }, - ['AMMO_SHOTGUN_INCENDIARY'] = { - id = 'AMMO_SHOTGUN_INCENDIARY', - hash = -609429612, - max = 160, - name = _(CR(), 'core', 'ammo_shotgun_incendiary') - }, - ['AMMO_SNOWBALL'] = { - id = 'AMMO_SNOWBALL', - hash = -2112339603, - max = 10, - name = _(CR(), 'core', 'ammo_snowball') - }, - ['AMMO_ARENA_HOMING_MISSILE'] = { - id = 'AMMO_ARENA_HOMING_MISSILE', - hash = 1669062227, - max = 20, - name = _(CR(), 'core', 'ammo_arena_homing_missile') - }, - ['AMMO_RAYPISTOL'] = { - id = 'AMMO_RAYPISTOL', - hash = -1526023308, - max = 20, - name = _(CR(), 'core', 'ammo_raypistol') - }, - ['AMMO_HAZARDCAN'] = { - id = 'AMMO_HAZARDCAN', - hash = 1618528319, - max = 4500, - name = _(CR(), 'core', 'ammo_hazardcan') - }, - ['AMMO_TRANQUILIZER'] = { - id = 'AMMO_TRANQUILIZER', - hash = 1964004553, - max = 250, - name = _(CR(), 'core', 'ammo_tranquilizer') - } -} diff --git a/tools/export/weapon_category_config.lua b/tools/export/weapon_category_config.lua deleted file mode 100644 index b9a3283..0000000 --- a/tools/export/weapon_category_config.lua +++ /dev/null @@ -1,241 +0,0 @@ -Config.WeaponCategories = { - ['Thrown'] = { - id = 'thrown', - weapons = { - 'VEHICLE_WEAPON_BOMB', - 'VEHICLE_WEAPON_BOMB_CLUSTER', - 'VEHICLE_WEAPON_BOMB_GAS', - 'VEHICLE_WEAPON_BOMB_INCENDIARY', - 'VEHICLE_WEAPON_MINE', - 'VEHICLE_WEAPON_MINE_KINETIC', - 'VEHICLE_WEAPON_MINE_EMP', - 'VEHICLE_WEAPON_MINE_SPIKE', - 'VEHICLE_WEAPON_MINE_SLICK', - 'VEHICLE_WEAPON_MINE_TAR', - 'VEHICLE_WEAPON_MINE_KINETIC_RC', - 'VEHICLE_WEAPON_MINE_EMP_RC', - 'VEHICLE_WEAPON_MINE_SPIKE_RC', - 'VEHICLE_WEAPON_MINE_SLICK_RC', - 'VEHICLE_WEAPON_MINE_TAR_RC', - 'VEHICLE_WEAPON_BOMB_STANDARD_WIDE', - 'WEAPON_PIPEBOMB', - 'WEAPON_PROXMINE', - 'WEAPON_GRENADE', - 'WEAPON_STICKYBOMB', - 'WEAPON_SMOKEGRENADE', - 'WEAPON_BZGAS', - 'WEAPON_MOLOTOV', - 'WEAPON_BALL', - 'WEAPON_FLARE', - 'WEAPON_BIRD_CRAP', - 'WEAPON_SNOWBALL' - }, - name = _(CR(), 'core', 'thrown') - }, - ['Heavy'] = { - id = 'heavy', - weapons = { - 'VEHICLE_WEAPON_RCTANK_LAZER', - 'WEAPON_COMPACTLAUNCHER', - 'WEAPON_FIREWORK', - 'WEAPON_HOMINGLAUNCHER', - 'WEAPON_RAILGUN', - 'WEAPON_GRENADELAUNCHER', - 'WEAPON_GRENADELAUNCHER_SMOKE', - 'WEAPON_RPG', - 'WEAPON_PASSENGER_ROCKET', - 'WEAPON_AIRSTRIKE_ROCKET', - 'WEAPON_STINGER', - 'WEAPON_MINIGUN', - 'WEAPON_VEHICLE_ROCKET', - 'WEAPON_RAYMINIGUN' - }, - name = _(CR(), 'core', 'heavy') - }, - ['Shotgun'] = { - id = 'shotgun', - weapons = { - 'WEAPON_AUTOSHOTGUN', - 'WEAPON_DBSHOTGUN', - 'WEAPON_HEAVYSHOTGUN', - 'WEAPON_PUMPSHOTGUN', - 'WEAPON_SAWNOFFSHOTGUN', - 'WEAPON_ASSAULTSHOTGUN', - 'WEAPON_BULLPUPSHOTGUN', - 'WEAPON_PUMPSHOTGUN_MK2' - }, - name = _(CR(), 'core', 'shotgun') - }, - ['Melee'] = { - id = 'melee', - weapons = { - 'WEAPON_BATTLEAXE', - 'WEAPON_BOTTLE', - 'WEAPON_DAGGER', - 'WEAPON_FLASHLIGHT', - 'WEAPON_GARBAGEBAG', - 'WEAPON_HANDCUFFS', - 'WEAPON_HATCHET', - 'WEAPON_MACHETE', - 'WEAPON_POOLCUE', - 'WEAPON_KNIFE', - 'WEAPON_NIGHTSTICK', - 'WEAPON_HAMMER', - 'WEAPON_BAT', - 'WEAPON_GOLFCLUB', - 'WEAPON_CROWBAR', - 'WEAPON_STONE_HATCHET', - 'WEAPON_SWITCHBLADE', - 'WEAPON_WRENCH' - }, - name = _(CR(), 'core', 'melee') - }, - ['Rifle'] = { - id = 'rifle', - weapons = { - 'WEAPON_BULLPUPRIFLE', - 'WEAPON_COMPACTRIFLE', - 'WEAPON_ASSAULTRIFLE', - 'WEAPON_CARBINERIFLE', - 'WEAPON_ADVANCEDRIFLE', - 'WEAPON_SPECIALCARBINE', - 'WEAPON_ASSAULTRIFLE_MK2', - 'WEAPON_BULLPUPRIFLE_MK2', - 'WEAPON_CARBINERIFLE_MK2', - 'WEAPON_SPECIALCARBINE_MK2' - }, - name = _(CR(), 'core', 'rifle') - }, - ['Smg'] = { - id = 'smg', - weapons = { - 'WEAPON_COMBATPDW', - 'WEAPON_MACHINEPISTOL', - 'WEAPON_MINISMG', - 'WEAPON_MICROSMG', - 'WEAPON_SMG', - 'WEAPON_ASSAULTSMG', - 'WEAPON_SMG_MK2' - }, - name = _(CR(), 'core', 'smg') - }, - ['Pistol'] = { - id = 'pistol', - weapons = { - 'WEAPON_FLAREGUN', - 'WEAPON_HEAVYPISTOL', - 'WEAPON_MARKSMANPISTOL', - 'WEAPON_REVOLVER', - 'WEAPON_PISTOL', - 'WEAPON_COMBATPISTOL', - 'WEAPON_APPISTOL', - 'WEAPON_PISTOL50', - 'WEAPON_SNSPISTOL', - 'WEAPON_DOUBLEACTION', - 'WEAPON_PISTOL_MK2', - 'WEAPON_REVOLVER_MK2', - 'WEAPON_SNSPISTOL_MK2', - 'WEAPON_RAYPISTOL', - 'WEAPON_VINTAGEPISTOL', - 'WEAPON_CERAMICPISTOL', - 'WEAPON_NAVYREVOLVER' - }, - name = _(CR(), 'core', 'pistol') - }, - ['Mg'] = { - id = 'mg', - weapons = { - 'WEAPON_GUSENBERG', - 'WEAPON_MG', - 'WEAPON_COMBATMG', - 'WEAPON_COMBATMG_MK2', - 'WEAPON_RAYCARBINE' - }, - name = _(CR(), 'core', 'mg') - }, - ['Unarmed'] = { - id = 'unarmed', - weapons = { - 'WEAPON_KNUCKLE', - 'WEAPON_UNARMED', - 'WEAPON_ANIMAL', - 'WEAPON_COUGAR', - 'WEAPON_ANIMAL_RETRIEVER', - 'WEAPON_SMALL_DOG', - 'WEAPON_TIGER_SHARK', - 'WEAPON_HAMMERHEAD_SHARK', - 'WEAPON_KILLER_WHALE', - 'WEAPON_BOAR', - 'WEAPON_PIG', - 'WEAPON_COYOTE', - 'WEAPON_DEER', - 'WEAPON_HEN', - 'WEAPON_RABBIT', - 'WEAPON_CAT', - 'WEAPON_COW' - }, - name = _(CR(), 'core', 'unarmed') - }, - ['Sniper'] = { - id = 'sniper', - weapons = { - 'WEAPON_MARKSMANRIFLE', - 'WEAPON_MUSKET', - 'WEAPON_SNIPERRIFLE', - 'WEAPON_HEAVYSNIPER', - 'WEAPON_HEAVYSNIPER_MK2', - 'WEAPON_MARKSMANRIFLE_MK2' - }, - name = _(CR(), 'core', 'sniper') - }, - ['Stungun'] = { - id = 'stungun', - weapons = { - 'WEAPON_STUNGUN' - }, - name = _(CR(), 'core', 'stungun') - }, - ['Fireextinguisher'] = { - id = 'fireextinguisher', - weapons = { - 'WEAPON_FIREEXTINGUISHER' - }, - name = _(CR(), 'core', 'fireextinguisher') - }, - ['Petrolcan'] = { - id = 'petrolcan', - weapons = { - 'WEAPON_PETROLCAN', - 'WEAPON_HAZARDCAN' - }, - name = _(CR(), 'core', 'petrolcan') - }, - ['Digiscanner'] = { - id = 'digiscanner', - weapons = { - 'WEAPON_DIGISCANNER' - }, - name = _(CR(), 'core', 'digiscanner') - }, - ['Nightvision'] = { - id = 'nightvision', - weapons = { - 'GADGET_NIGHTVISION' - }, - name = _(CR(), 'core', 'nightvision') - }, - ['Parachute'] = { - id = 'parachute', - weapons = { - 'GADGET_PARACHUTE' - }, - name = _(CR(), 'core', 'parachute') - }, - ['Tranqilizer'] = { - id = 'tranqilizer', - weapons = { - 'WEAPON_TRANQUILIZER' - }, - name = _(CR(), 'core', 'tranqilizer') - } -} diff --git a/tools/export/weapon_component_config.lua b/tools/export/weapon_component_config.lua deleted file mode 100644 index 8e7a2d3..0000000 --- a/tools/export/weapon_component_config.lua +++ /dev/null @@ -1,3815 +0,0 @@ -Config.WeaponComponents = { - ['COMPONENT_AT_RAILCOVER_01'] = { - id = 'COMPONENT_AT_RAILCOVER_01', - hash = 1967214384, - model = 'w_at_railcover_01', - gxtName = 'WCT_RAIL', - gxtDescription = 'WCD_AT_RAIL', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_AR_AFGRIP'] = { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_PI_FLSH'] = { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_AR_FLSH'] = { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['POLICE_TORCH_FLASHLIGHT'] = { - id = 'POLICE_TORCH_FLASHLIGHT', - hash = -979169299, - model = '', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_SCOPE_MACRO'] = { - id = 'COMPONENT_AT_SCOPE_MACRO', - hash = -1657815255, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_02'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_02', - hash = 1019656791, - model = 'w_at_scope_macro_2', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL'] = { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL_02'] = { - id = 'COMPONENT_AT_SCOPE_SMALL_02', - hash = 1006677997, - model = 'w_at_scope_small_2', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MEDIUM'] = { - id = 'COMPONENT_AT_SCOPE_MEDIUM', - hash = -1596416958, - model = 'w_at_scope_medium', - gxtName = 'WCT_SCOPE_MED', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_LARGE'] = { - id = 'COMPONENT_AT_SCOPE_LARGE', - hash = -767279652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MAX'] = { - id = 'COMPONENT_AT_SCOPE_MAX', - hash = -1135289737, - model = 'w_at_scope_max', - gxtName = 'WCT_SCOPE_MAX', - gxtDescription = 'WCD_SCOPE_MAX', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_PI_SUPP'] = { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_SUPP_02'] = { - id = 'COMPONENT_AT_PI_SUPP_02', - hash = 1709866683, - model = 'w_at_pi_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_AR_SUPP'] = { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_AR_SUPP_02'] = { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_SR_SUPP'] = { - id = 'COMPONENT_AT_SR_SUPP', - hash = -435637410, - model = 'w_at_sr_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_PISTOL_CLIP_01'] = { - id = 'COMPONENT_PISTOL_CLIP_01', - hash = -19858063, - model = 'w_pi_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_PISTOL_CLIP_02'] = { - id = 'COMPONENT_PISTOL_CLIP_02', - hash = -316253668, - model = 'w_pi_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_COMBATPISTOL_CLIP_01'] = { - id = 'COMPONENT_COMBATPISTOL_CLIP_01', - hash = 119648377, - model = 'w_pi_combatpistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_COMBATPISTOL_CLIP_02'] = { - id = 'COMPONENT_COMBATPISTOL_CLIP_02', - hash = -696561875, - model = 'w_pi_combatpistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_APPISTOL_CLIP_01'] = { - id = 'COMPONENT_APPISTOL_CLIP_01', - hash = 834974250, - model = 'w_pi_appistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 18 - }, - ['COMPONENT_APPISTOL_CLIP_02'] = { - id = 'COMPONENT_APPISTOL_CLIP_02', - hash = 614078421, - model = 'w_pi_appistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 36 - }, - ['COMPONENT_MICROSMG_CLIP_01'] = { - id = 'COMPONENT_MICROSMG_CLIP_01', - hash = -884429072, - model = 'w_sb_microsmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCDMSMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_MICROSMG_CLIP_02'] = { - id = 'COMPONENT_MICROSMG_CLIP_02', - hash = 283556395, - model = 'w_sb_microsmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCDMSMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_CLIP_01'] = { - id = 'COMPONENT_SMG_CLIP_01', - hash = 643254679, - model = 'w_sb_smg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_CLIP_02'] = { - id = 'COMPONENT_SMG_CLIP_02', - hash = 889808635, - model = 'w_sb_smg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_ASSAULTRIFLE_CLIP_01'] = { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_01', - hash = -1101075946, - model = 'w_ar_assaultrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ASSAULTRIFLE_CLIP_02'] = { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_02', - hash = -1323216997, - model = 'w_ar_assaultrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_CARBINERIFLE_CLIP_01'] = { - id = 'COMPONENT_CARBINERIFLE_CLIP_01', - hash = -1614924820, - model = 'w_ar_carbinerifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_CARBINERIFLE_CLIP_02'] = { - id = 'COMPONENT_CARBINERIFLE_CLIP_02', - hash = -1861183855, - model = 'w_ar_carbinerifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_ADVANCEDRIFLE_CLIP_01'] = { - id = 'COMPONENT_ADVANCEDRIFLE_CLIP_01', - hash = -91250417, - model = 'w_ar_advancedrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ADVANCEDRIFLE_CLIP_02'] = { - id = 'COMPONENT_ADVANCEDRIFLE_CLIP_02', - hash = -1899902599, - model = 'w_ar_advancedrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_MG_CLIP_01'] = { - id = 'COMPONENT_MG_CLIP_01', - hash = -197857404, - model = 'w_mg_mg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 54 - }, - ['COMPONENT_MG_CLIP_02'] = { - id = 'COMPONENT_MG_CLIP_02', - hash = -2112517305, - model = 'w_mg_mg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATMG_CLIP_01'] = { - id = 'COMPONENT_COMBATMG_CLIP_01', - hash = -503336118, - model = 'w_mg_combatmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCDCMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATMG_CLIP_02'] = { - id = 'COMPONENT_COMBATMG_CLIP_02', - hash = -691692330, - model = 'w_mg_combatmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCDCMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 200 - }, - ['COMPONENT_PUMPSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_PUMPSHOTGUN_CLIP_01', - hash = -781249480, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_SAWNOFFSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_SAWNOFFSHOTGUN_CLIP_01', - hash = -942267867, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_ASSAULTSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_01', - hash = -1796727865, - model = 'w_sg_assaultshotgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AS_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_ASSAULTSHOTGUN_CLIP_02'] = { - id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_02', - hash = -2034401422, - model = 'w_sg_assaultshotgun_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AS_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 32 - }, - ['COMPONENT_SNIPERRIFLE_CLIP_01'] = { - id = 'COMPONENT_SNIPERRIFLE_CLIP_01', - hash = -1681506167, - model = 'w_sr_sniperrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 10 - }, - ['COMPONENT_HEAVYSNIPER_CLIP_01'] = { - id = 'COMPONENT_HEAVYSNIPER_CLIP_01', - hash = 1198478068, - model = 'w_sr_heavysniper_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HS_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_MINIGUN_CLIP_01'] = { - id = 'COMPONENT_MINIGUN_CLIP_01', - hash = -924946682, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 15000 - }, - ['COMPONENT_RPG_CLIP_01'] = { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_GRENADELAUNCHER_CLIP_01'] = { - id = 'COMPONENT_GRENADELAUNCHER_CLIP_01', - hash = 296639639, - model = 'w_lr_40mm', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 10 - }, - ['COMPONENT_PISTOL50_CLIP_01'] = { - id = 'COMPONENT_PISTOL50_CLIP_01', - hash = 580369945, - model = 'W_PI_PISTOL50_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P50_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 9 - }, - ['COMPONENT_PISTOL50_CLIP_02'] = { - id = 'COMPONENT_PISTOL50_CLIP_02', - hash = -640439150, - model = 'W_PI_PISTOL50_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P50_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_ASSAULTSMG_CLIP_01'] = { - id = 'COMPONENT_ASSAULTSMG_CLIP_01', - hash = -1928132688, - model = 'W_SB_ASSAULTSMG_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ASSAULTSMG_CLIP_02'] = { - id = 'COMPONENT_ASSAULTSMG_CLIP_02', - hash = -1152981993, - model = 'W_SB_ASSAULTSMG_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_BULLPUPSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_BULLPUPSHOTGUN_CLIP_01', - hash = -917613298, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 14 - }, - ['COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE', - hash = 930927479, - model = 'W_AR_AdvancedRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_APPISTOL_VARMOD_LUXE'] = { - id = 'COMPONENT_APPISTOL_VARMOD_LUXE', - hash = -1686714580, - model = 'W_PI_APPistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_ASSAULTRIFLE_VARMOD_LUXE', - hash = 1319990579, - model = 'W_AR_AssaultRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_CARBINERIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_CARBINERIFLE_VARMOD_LUXE', - hash = -660892072, - model = 'W_AR_CarbineRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_PISTOL_VARMOD_LUXE'] = { - id = 'COMPONENT_PISTOL_VARMOD_LUXE', - hash = -684126074, - model = 'W_PI_Pistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_PISTOL50_VARMOD_LUXE'] = { - id = 'COMPONENT_PISTOL50_VARMOD_LUXE', - hash = 2008591151, - model = 'W_PI_Pistol50_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MICROSMG_VARMOD_LUXE'] = { - id = 'COMPONENT_MICROSMG_VARMOD_LUXE', - hash = 1215999497, - model = 'W_SB_MicroSMG_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE'] = { - id = 'COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE', - hash = -2052698631, - model = 'W_SG_Sawnoff_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SMG_VARMOD_LUXE'] = { - id = 'COMPONENT_SMG_VARMOD_LUXE', - hash = 663170192, - model = 'W_SB_SMG_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SNIPERRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_SNIPERRIFLE_VARMOD_LUXE', - hash = 1077065191, - model = 'W_SR_SniperRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER', - hash = 663517359, - model = 'w_sb_assaultsmg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_COMBATMG_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_COMBATMG_VARMOD_LOWRIDER', - hash = -1828795171, - model = 'w_mg_combatmg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER', - hash = -966439566, - model = 'w_pi_combatpistol_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MG_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_MG_VARMOD_LOWRIDER', - hash = -690308418, - model = 'w_mg_mg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER', - hash = -1562927653, - model = 'w_sg_pumpshotgun_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTRIFLE_CLIP_03'] = { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_03', - hash = -604986051, - model = 'w_ar_assaultrifle_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_CARBINERIFLE_CLIP_03'] = { - id = 'COMPONENT_CARBINERIFLE_CLIP_03', - hash = -1167922891, - model = 'w_ar_carbinerifle_boxmag', - gxtName = 'WCT_CLIP_BOX', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATPDW_CLIP_03'] = { - id = 'COMPONENT_COMBATPDW_CLIP_03', - hash = 1857603803, - model = 'w_sb_pdw_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMPACTRIFLE_CLIP_03'] = { - id = 'COMPONENT_COMPACTRIFLE_CLIP_03', - hash = -972590066, - model = 'w_ar_assaultrifle_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_HEAVYSHOTGUN_CLIP_03'] = { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_03', - hash = -2000168365, - model = 'w_sg_heavyshotgun_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_MACHINEPISTOL_CLIP_03'] = { - id = 'COMPONENT_MACHINEPISTOL_CLIP_03', - hash = -1444295948, - model = 'w_sb_compactsmg_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_CLIP_03'] = { - id = 'COMPONENT_SMG_CLIP_03', - hash = 2043113590, - model = 'w_sb_smg_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_SPECIALCARBINE_CLIP_03'] = { - id = 'COMPONENT_SPECIALCARBINE_CLIP_03', - hash = 1801039530, - model = 'w_ar_specialcarbine_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_GUNRUN_MK2_UPGRADE'] = { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HOMINGLAUNCHER_CLIP_01'] = { - id = 'COMPONENT_HOMINGLAUNCHER_CLIP_01', - hash = -132960961, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO', - hash = -1371515465, - model = 'w_ar_bullpupriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_02', - hash = -1190793877, - model = 'w_ar_bullpupriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_03', - hash = -1497085720, - model = 'w_ar_bullpupriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_04', - hash = -1803148180, - model = 'w_ar_bullpupriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_05', - hash = -1975971886, - model = 'w_ar_bullpupriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_06', - hash = 36929477, - model = 'w_ar_bullpupriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_07', - hash = -268444834, - model = 'w_ar_bullpupriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_08', - hash = -574769446, - model = 'w_ar_bullpupriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_09', - hash = -882699739, - model = 'w_ar_bullpupriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_10', - hash = -1468181474, - model = 'w_ar_bullpupriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01', - hash = -974541230, - model = 'w_ar_bullpupriflemk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_01', - hash = 25766362, - model = 'w_ar_bullpupriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_02', - hash = -273676760, - model = 'w_ar_bullpupriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -89655827, - model = 'W_AR_BullpupRifleMK2_Mag_AP', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ', - hash = 1130501904, - model = 'W_AR_BullpupRifleMK2_Mag_FMJ', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY', - hash = -1449330342, - model = 'W_AR_BullpupRifleMK2_Mag_INC', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER', - hash = -2111807319, - model = 'W_AR_BullpupRifleMK2_Mag_TR', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_AT_BP_BARREL_01'] = { - id = 'COMPONENT_AT_BP_BARREL_01', - hash = 1704640795, - model = 'W_AR_BP_MK2_Barrel1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_BP_BARREL_02'] = { - id = 'COMPONENT_AT_BP_BARREL_02', - hash = 1005743559, - model = 'W_AR_BP_MK2_Barrel2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_DOUBLEACTION_CLIP_01'] = { - id = 'COMPONENT_DOUBLEACTION_CLIP_01', - hash = 1328622785, - model = 'w_pi_wep1_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_DA_CLIP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO', - hash = -1869284448, - model = 'w_sr_marksmanriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_02', - hash = 1931539634, - model = 'w_sr_marksmanriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_03', - hash = 1624199183, - model = 'w_sr_marksmanriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_04', - hash = -26834113, - model = 'w_sr_marksmanriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_05', - hash = -210406055, - model = 'w_sr_marksmanriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_06', - hash = 423313640, - model = 'w_sr_marksmanriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_07', - hash = 276639596, - model = 'w_sr_marksmanriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_08', - hash = -991356863, - model = 'w_sr_marksmanriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_09', - hash = -1682848301, - model = 'w_sr_marksmanriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_10', - hash = 996213771, - model = 'w_sr_marksmanriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01', - hash = -1214048550, - model = 'w_sr_marksmanriflemk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_01', - hash = -1797182002, - model = 'w_sr_marksmanriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_02', - hash = -422587990, - model = 'w_sr_marksmanriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -193998727, - model = 'w_sr_marksmanriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 5 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ', - hash = -515203373, - model = 'w_sr_marksmanriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 5 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY', - hash = 1842849902, - model = 'w_sr_marksmanriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 5 - }, - ['COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER', - hash = -679861550, - model = 'w_sr_marksmanriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_AT_MRFL_BARREL_01'] = { - id = 'COMPONENT_AT_MRFL_BARREL_01', - hash = 941317513, - model = 'w_sr_mr_mk2_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MRFL_BARREL_02'] = { - id = 'COMPONENT_AT_MRFL_BARREL_02', - hash = 1748450780, - model = 'w_sr_mr_mk2_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO', - hash = -474112444, - model = 'w_sg_pumpshotgunmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_02'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_02', - hash = 387223451, - model = 'w_sg_pumpshotgunmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_03'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_03', - hash = 617753366, - model = 'w_sg_pumpshotgunmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_04'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_04', - hash = -222378256, - model = 'w_sg_pumpshotgunmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_05'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_05', - hash = 8741501, - model = 'w_sg_pumpshotgunmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_06'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_06', - hash = -601286203, - model = 'w_sg_pumpshotgunmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_07'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_07', - hash = -511433605, - model = 'w_sg_pumpshotgunmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_08'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_08', - hash = -655387818, - model = 'w_sg_pumpshotgunmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_09'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_09', - hash = -282476598, - model = 'w_sg_pumpshotgunmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_10'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_10', - hash = 1739501925, - model = 'w_sg_pumpshotgunmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01', - hash = 1178671645, - model = 'w_sg_pumpshotgunmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_01'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_01', - hash = -845938367, - model = 'w_sg_pumpshotgunmk2_mag1', - gxtName = 'WCT_SHELL', - gxtDescription = 'WCD_SHELL', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING', - hash = 1315288101, - model = 'w_sg_pumpshotgunmk2_mag_ap', - gxtName = 'WCT_SHELL_AP', - gxtDescription = 'WCD_SHELL_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE', - hash = 1004815965, - model = 'w_sg_pumpshotgunmk2_mag_exp', - gxtName = 'WCT_SHELL_EX', - gxtDescription = 'WCD_SHELL_EX', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT', - hash = -380098265, - model = 'w_sg_pumpshotgunmk2_mag_hp', - gxtName = 'WCT_SHELL_HP', - gxtDescription = 'WCD_SHELL_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY', - hash = -1618338827, - model = 'w_sg_pumpshotgunmk2_mag_inc', - gxtName = 'WCT_SHELL_INC', - gxtDescription = 'WCD_SHELL_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_REVOLVER_MK2_CAMO'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO', - hash = -1069552225, - model = 'w_pi_revolvermk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_02'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_02', - hash = 11918884, - model = 'w_pi_revolvermk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_03'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_03', - hash = 176157112, - model = 'w_pi_revolvermk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_04'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_04', - hash = -220052855, - model = 'w_pi_revolvermk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_05'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_05', - hash = 288456487, - model = 'w_pi_revolvermk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_06'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_06', - hash = 398658626, - model = 'w_pi_revolvermk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_07'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_07', - hash = 628697006, - model = 'w_pi_revolvermk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_08'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_08', - hash = 925911836, - model = 'w_pi_revolvermk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_09'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_09', - hash = 1222307441, - model = 'w_pi_revolvermk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_10'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_10', - hash = 552442715, - model = 'w_pi_revolvermk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_REVOLVER_MK2_CAMO_IND_01', - hash = -648943513, - model = 'w_pi_revolvermk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_REVOLVER_MK2_CLIP_01'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_01', - hash = -1172055874, - model = 'w_pi_revolvermk2_mag1', - gxtName = 'WCT_CLIP1_RV', - gxtDescription = 'WCD_CLIP1_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_FMJ', - hash = 231258687, - model = 'w_pi_revolvermk2_mag5', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT', - hash = 284438159, - model = 'w_pi_revolvermk2_mag2', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY', - hash = 15712037, - model = 'w_pi_revolvermk2_mag3', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_REVOLVER_MK2_CLIP_TRACER', - hash = -958864266, - model = 'w_pi_revolvermk2_mag4', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO', - hash = 259780317, - model = 'W_PI_SNS_PistolMk2_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE', - hash = -403805974, - model = 'W_PI_SNS_PistolMk2_SL_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_02'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02', - hash = -1973342474, - model = 'W_PI_SNS_PistolMk2_Camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE', - hash = 691432737, - model = 'W_PI_SNS_PistolMk2_SL_Camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_03'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03', - hash = 1996130345, - model = 'W_PI_SNS_PistolMk2_Camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE', - hash = 987648331, - model = 'W_PI_SNS_PistolMk2_SL_Camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_04'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04', - hash = -1455657812, - model = 'W_PI_SNS_PistolMk2_Camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE', - hash = -431680535, - model = 'W_PI_SNS_PistolMk2_SL_Camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_05'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05', - hash = -1668263084, - model = 'W_PI_SNS_PistolMk2_Camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE', - hash = -847582310, - model = 'W_PI_SNS_PistolMk2_SL_Camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_06'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06', - hash = 1308243489, - model = 'W_PI_SNS_PistolMk2_Camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE', - hash = -92592218, - model = 'W_PI_SNS_PistolMk2_SL_Camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_07'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07', - hash = 1122574335, - model = 'W_PI_SNS_PistolMk2_Camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE', - hash = -494548326, - model = 'W_PI_SNS_PistolMk2_SL_Camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_08'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08', - hash = 1420313469, - model = 'W_PI_SNS_PistolMk2_Camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE', - hash = 730876697, - model = 'W_PI_SNS_PistolMk2_SL_Camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_09'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09', - hash = 109848390, - model = 'W_PI_SNS_PistolMk2_Camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE', - hash = 583159708, - model = 'W_PI_SNS_PistolMk2_SL_Camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_10'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10', - hash = 593945703, - model = 'W_PI_SNS_PistolMk2_Camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE', - hash = -1928503603, - model = 'W_PI_SNS_PistolMk2_SL_Camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01', - hash = 1142457062, - model = 'w_pi_sns_pistolmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE', - hash = 520557834, - model = 'W_PI_SNS_PistolMK2_SL_Camo_Ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_01'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_01', - hash = 21392614, - model = 'w_pi_sns_pistolmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_02'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_02', - hash = -829683854, - model = 'w_pi_sns_pistolmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_FMJ', - hash = -1055790298, - model = 'W_PI_SNS_PistolMK2_Mag_FMJ', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT', - hash = -1928301566, - model = 'W_PI_SNS_PistolMK2_Mag_HP', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY', - hash = -424845447, - model = 'W_PI_SNS_PistolMK2_Mag_INC', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC_NS', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_TRACER', - hash = -1876057490, - model = 'W_PI_SNS_PistolMK2_Mag_TR', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO', - hash = -737430213, - model = 'w_ar_specialcarbinemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_02'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_02', - hash = 1125852043, - model = 'w_ar_specialcarbinemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_03'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_03', - hash = 886015732, - model = 'w_ar_specialcarbinemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_04'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_04', - hash = -1262287139, - model = 'w_ar_specialcarbinemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_05'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_05', - hash = -295208411, - model = 'w_ar_specialcarbinemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_06'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_06', - hash = -544154504, - model = 'w_ar_specialcarbinemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_07'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_07', - hash = 172765678, - model = 'w_ar_specialcarbinemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_08'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_08', - hash = -1982877449, - model = 'w_ar_specialcarbinemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_09'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_09', - hash = 2072122460, - model = 'w_ar_specialcarbinemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_10'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_10', - hash = -1986220171, - model = 'w_ar_specialcarbinemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01', - hash = 1377355801, - model = 'w_ar_specialcarbinemk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_01'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_01', - hash = 382112385, - model = 'w_ar_specialcarbinemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_02'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_02', - hash = -568352468, - model = 'w_ar_specialcarbinemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING', - hash = 1362433589, - model = 'w_ar_specialcarbinemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ', - hash = 1346235024, - model = 'w_ar_specialcarbinemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY', - hash = -570355066, - model = 'w_ar_specialcarbinemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER', - hash = -2023373174, - model = 'w_ar_specialcarbinemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_AT_SC_BARREL_01'] = { - id = 'COMPONENT_AT_SC_BARREL_01', - hash = -415870039, - model = 'w_ar_sc_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SC_BARREL_02'] = { - id = 'COMPONENT_AT_SC_BARREL_02', - hash = -109086661, - model = 'w_ar_sc_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_PI_COMP_02'] = { - id = 'COMPONENT_AT_PI_COMP_02', - hash = -1434287169, - model = 'w_at_pi_comp_2', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_COMP_03'] = { - id = 'COMPONENT_AT_PI_COMP_03', - hash = 654802123, - model = 'w_at_pi_comp_3', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_RAIL_02'] = { - id = 'COMPONENT_AT_PI_RAIL_02', - hash = 1205768792, - model = 'w_at_pi_rail_2', - gxtName = 'WCT_SCOPE_PI', - gxtDescription = 'WCD_SCOPE_PI', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_PI_FLSH_03'] = { - id = 'COMPONENT_AT_PI_FLSH_03', - hash = 1246324211, - model = 'w_at_pi_snsmk2_flsh_1', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2'] = { - id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2', - hash = 1528590652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG2', - gxtDescription = 'WCD_SCOPE_LRF', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_RAYPISTOL_VARMOD_XMAS18'] = { - id = 'COMPONENT_RAYPISTOL_VARMOD_XMAS18', - hash = -673450233, - model = 'w_pi_raygun_ev', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_01', - hash = -2045758401, - model = 'w_ar_assaultriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_02', - hash = -785724817, - model = 'w_ar_assaultriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -1478681000, - model = 'w_ar_assaultriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ', - hash = 1675665560, - model = 'w_ar_assaultriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY', - hash = -76490669, - model = 'w_ar_assaultriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER', - hash = -282298175, - model = 'w_ar_assaultriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_01'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_01', - hash = 1283078430, - model = 'w_ar_carbineriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_02'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_02', - hash = 1574296533, - model = 'w_ar_carbineriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING', - hash = 626875735, - model = 'w_ar_carbineriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ', - hash = 1141059345, - model = 'w_ar_carbineriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY', - hash = 1025884839, - model = 'w_ar_carbineriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER', - hash = 391640422, - model = 'w_ar_carbineriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_01'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_01', - hash = 1227564412, - model = 'w_mg_combatmgmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_02'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_02', - hash = 400507625, - model = 'w_mg_combatmgmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 200 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING', - hash = 696788003, - model = 'w_mg_combatmgmk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 80 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_FMJ', - hash = 1475288264, - model = 'w_mg_combatmgmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 80 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY', - hash = -1020871238, - model = 'w_mg_combatmgmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 80 - }, - ['COMPONENT_COMBATMG_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_COMBATMG_MK2_CLIP_TRACER', - hash = -161179835, - model = 'w_mg_combatmgmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 100 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_01'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_01', - hash = -98690520, - model = 'w_sr_heavysnipermk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_02'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_02', - hash = 752418717, - model = 'w_sr_heavysnipermk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING', - hash = -130689324, - model = 'w_sr_heavysnipermk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE', - hash = -1981031769, - model = 'w_sr_heavysnipermk2_mag_ap2', - gxtName = 'WCT_CLIP_EX', - gxtDescription = 'WCD_CLIP_EX', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ', - hash = 1005144310, - model = 'w_sr_heavysnipermk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY', - hash = 247526935, - model = 'w_sr_heavysnipermk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 4 - }, - ['COMPONENT_PISTOL_MK2_CLIP_01'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_01', - hash = -1795936926, - model = 'w_pi_pistolmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_PISTOL_MK2_CLIP_02'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_02', - hash = 1591132456, - model = 'w_pi_pistolmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_PISTOL_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_FMJ', - hash = 1329061674, - model = 'w_pi_pistolmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT', - hash = -2046910199, - model = 'w_pi_pistolmk2_mag_hp', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PISTOL_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_INCENDIARY', - hash = 733837882, - model = 'w_pi_pistolmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_PISTOL_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_PISTOL_MK2_CLIP_TRACER', - hash = 634039983, - model = 'w_pi_pistolmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_SMG_MK2_CLIP_01'] = { - id = 'COMPONENT_SMG_MK2_CLIP_01', - hash = 1277460590, - model = 'w_sb_smgmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SMG_MK2_CLIP_02'] = { - id = 'COMPONENT_SMG_MK2_CLIP_02', - hash = -1182573778, - model = 'w_sb_smgmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_SMG_MK2_CLIP_FMJ'] = { - id = 'COMPONENT_SMG_MK2_CLIP_FMJ', - hash = 190476639, - model = 'w_sb_smgmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT'] = { - id = 'COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT', - hash = 974903034, - model = 'w_sb_smgmk2_mag_hp', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SMG_MK2_CLIP_INCENDIARY'] = { - id = 'COMPONENT_SMG_MK2_CLIP_INCENDIARY', - hash = -644734235, - model = 'w_sb_smgmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_SMG_MK2_CLIP_TRACER'] = { - id = 'COMPONENT_SMG_MK2_CLIP_TRACER', - hash = 2146055916, - model = 'w_sb_smgmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_AT_AR_BARREL_01'] = { - id = 'COMPONENT_AT_AR_BARREL_01', - hash = 1134861606, - model = 'w_at_ar_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_AR_BARREL_02'] = { - id = 'COMPONENT_AT_AR_BARREL_02', - hash = 1447477866, - model = 'w_at_ar_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_CR_BARREL_01'] = { - id = 'COMPONENT_AT_CR_BARREL_01', - hash = -2093598721, - model = 'w_at_cr_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_CR_BARREL_02'] = { - id = 'COMPONENT_AT_CR_BARREL_02', - hash = -1958983669, - model = 'w_at_cr_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MG_BARREL_01'] = { - id = 'COMPONENT_AT_MG_BARREL_01', - hash = -1018236364, - model = 'w_at_mg_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MG_BARREL_02'] = { - id = 'COMPONENT_AT_MG_BARREL_02', - hash = -1243457701, - model = 'w_at_mg_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SB_BARREL_01'] = { - id = 'COMPONENT_AT_SB_BARREL_01', - hash = -653246751, - model = 'w_at_sb_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SB_BARREL_02'] = { - id = 'COMPONENT_AT_SB_BARREL_02', - hash = -1520117877, - model = 'w_at_sb_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SR_BARREL_01'] = { - id = 'COMPONENT_AT_SR_BARREL_01', - hash = -1869205321, - model = 'w_at_sr_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_SR_BARREL_02'] = { - id = 'COMPONENT_AT_SR_BARREL_02', - hash = 277524638, - model = 'w_at_sr_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO', - hash = -1860492113, - model = 'w_at_armk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_02', - hash = 937772107, - model = 'w_at_armk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_03', - hash = 1401650071, - model = 'w_at_armk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_04', - hash = 628662130, - model = 'w_at_armk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_05', - hash = -985047251, - model = 'w_at_armk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_06', - hash = -812944463, - model = 'w_at_armk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_07', - hash = -1447352303, - model = 'w_at_armk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_08', - hash = -60338860, - model = 'w_at_armk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_09', - hash = 2088750491, - model = 'w_at_armk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_10', - hash = -1513913454, - model = 'w_at_armk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01', - hash = -1179558480, - model = 'w_at_armk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO', - hash = 1272803094, - model = 'w_ar_carbineriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_02'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_02', - hash = 1080719624, - model = 'w_ar_carbineriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_03'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_03', - hash = 792221348, - model = 'w_ar_carbineriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_04'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_04', - hash = -452181427, - model = 'w_ar_carbineriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_05'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_05', - hash = -746774737, - model = 'w_ar_carbineriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_06'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_06', - hash = -2044296061, - model = 'w_ar_carbineriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_07'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_07', - hash = -199171978, - model = 'w_ar_carbineriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_08'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_08', - hash = -1428075016, - model = 'w_ar_carbineriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_09'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_09', - hash = -1735153315, - model = 'w_ar_carbineriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_10'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_10', - hash = 1796459838, - model = 'w_ar_carbineriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01', - hash = -631911105, - model = 'w_ar_carbineriflemk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO', - hash = 1249283253, - model = 'w_mg_combatmgmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_02'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_02', - hash = -857707587, - model = 'w_mg_combatmgmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_03'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_03', - hash = -1097543898, - model = 'w_mg_combatmgmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_04'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_04', - hash = 1980349969, - model = 'w_mg_combatmgmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_05'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_05', - hash = 1219453777, - model = 'w_mg_combatmgmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_06'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_06', - hash = -1853459190, - model = 'w_mg_combatmgmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_07'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_07', - hash = -2074781016, - model = 'w_mg_combatmgmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_08'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_08', - hash = 457967755, - model = 'w_mg_combatmgmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_09'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_09', - hash = 235171324, - model = 'w_mg_combatmgmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_10'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_10', - hash = 42685294, - model = 'w_mg_combatmgmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_COMBATMG_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_COMBATMG_MK2_CAMO_IND_01', - hash = -687617715, - model = 'w_mg_combatmgmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO'] = { - id = 'COMPONENT_SMG_MK2_CAMO', - hash = -996700057, - model = 'w_at_smgmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_02'] = { - id = 'COMPONENT_SMG_MK2_CAMO_02', - hash = 940943685, - model = 'w_at_smgmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_03'] = { - id = 'COMPONENT_SMG_MK2_CAMO_03', - hash = 1263226800, - model = 'w_at_smgmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_04'] = { - id = 'COMPONENT_SMG_MK2_CAMO_04', - hash = -328035840, - model = 'w_at_smgmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_05'] = { - id = 'COMPONENT_SMG_MK2_CAMO_05', - hash = 1224100642, - model = 'w_at_smgmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_06'] = { - id = 'COMPONENT_SMG_MK2_CAMO_06', - hash = 899228776, - model = 'w_at_smgmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_07'] = { - id = 'COMPONENT_SMG_MK2_CAMO_07', - hash = 616006309, - model = 'w_at_smgmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_08'] = { - id = 'COMPONENT_SMG_MK2_CAMO_08', - hash = -1561952511, - model = 'w_at_smgmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_09'] = { - id = 'COMPONENT_SMG_MK2_CAMO_09', - hash = 572063080, - model = 'w_at_smgmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_10'] = { - id = 'COMPONENT_SMG_MK2_CAMO_10', - hash = 1170588613, - model = 'w_at_smgmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_SMG_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_SMG_MK2_CAMO_IND_01', - hash = 966612367, - model = 'w_at_smgmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_SLIDE', - hash = -1258515792, - model = 'W_PI_PistolMK2_Slide_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO', - hash = 1550611612, - model = 'w_pi_pistolmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_02_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_02_SLIDE', - hash = 438243936, - model = 'W_PI_PistolMK2_Slide_Camo2', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_02'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_02', - hash = 368550800, - model = 'w_pi_pistolmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_03_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_03_SLIDE', - hash = -455079056, - model = 'W_PI_PistolMK2_Slide_Camo3', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_03'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_03', - hash = -1769069349, - model = 'w_pi_pistolmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_04_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_04_SLIDE', - hash = 740920107, - model = 'W_PI_PistolMK2_Slide_Camo4', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_04'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_04', - hash = 24902297, - model = 'w_pi_pistolmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_05_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_05_SLIDE', - hash = -541616347, - model = 'W_PI_PistolMK2_Slide_Camo5', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_05'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_05', - hash = -228041614, - model = 'w_pi_pistolmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_06_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_06_SLIDE', - hash = 1809261196, - model = 'W_PI_PistolMK2_Slide_Camo6', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_06'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_06', - hash = -584961562, - model = 'w_pi_pistolmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_07_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_07_SLIDE', - hash = -1646538868, - model = 'W_PI_PistolMK2_Slide_Camo7', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_07'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_07', - hash = -1153175946, - model = 'w_pi_pistolmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_08_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_08_SLIDE', - hash = -1290164948, - model = 'W_PI_PistolMK2_Slide_Camo8', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_08'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_08', - hash = 1301287696, - model = 'w_pi_pistolmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_09_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_09_SLIDE', - hash = -964465134, - model = 'W_PI_PistolMK2_Slide_Camo9', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_09'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_09', - hash = 1597093459, - model = 'w_pi_pistolmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_10_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_10_SLIDE', - hash = 1135718771, - model = 'W_PI_PistolMK2_Slide_Camo10', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_10'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_10', - hash = 1769871776, - model = 'w_pi_pistolmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE', - hash = 1253942266, - model = 'W_PI_PistolMK2_Camo_Sl_Ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_PISTOL_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01', - hash = -1827882671, - model = 'w_pi_pistolmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO', - hash = -130843390, - model = 'w_at_heavysnipermk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_02'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_02', - hash = -977347227, - model = 'w_at_heavysnipermk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_03'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_03', - hash = -378461067, - model = 'w_at_heavysnipermk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_04'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_04', - hash = 329939175, - model = 'w_at_heavysnipermk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_05'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_05', - hash = 643374672, - model = 'w_at_heavysnipermk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_06'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_06', - hash = 807875052, - model = 'w_at_heavysnipermk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_07'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_07', - hash = -1401804168, - model = 'w_at_heavysnipermk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_08'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_08', - hash = -1096495395, - model = 'w_at_heavysnipermk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_09'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_09', - hash = -847811454, - model = 'w_at_heavysnipermk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_10'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_10', - hash = -1413108537, - model = 'w_at_heavysnipermk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01'] = { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01', - hash = 1815270123, - model = 'w_at_heavysnipermk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_PI_FLSH_02'] = { - id = 'COMPONENT_AT_PI_FLSH_02', - hash = 1140676955, - model = 'w_at_pi_flsh_2', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_AT_AR_AFGRIP_02'] = { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default' - }, - ['COMPONENT_AT_MUZZLE_01'] = { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_02'] = { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_03'] = { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_04'] = { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_05'] = { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_06'] = { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_07'] = { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_08'] = { - id = 'COMPONENT_AT_MUZZLE_08', - hash = 1602080333, - model = 'w_at_muzzle_8', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_MUZZLE_09'] = { - id = 'COMPONENT_AT_MUZZLE_09', - hash = 1764221345, - model = 'w_at_muzzle_9', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_COMP'] = { - id = 'COMPONENT_AT_PI_COMP', - hash = 568543123, - model = 'w_at_pi_comp_1', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_AT_PI_RAIL'] = { - id = 'COMPONENT_AT_PI_RAIL', - hash = -1898661008, - model = 'w_at_pi_rail_1', - gxtName = 'WCT_SCOPE_PI', - gxtDescription = 'WCD_SCOPE_PI', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_02_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_02_MK2', - hash = -944910075, - model = 'w_at_scope_macro_2', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2', - hash = -452809877, - model = 'w_at_scope_macro_2_mk2', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL_MK2'] = { - id = 'COMPONENT_AT_SCOPE_SMALL_MK2', - hash = 1060929921, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_SMALL_SMG_MK2'] = { - id = 'COMPONENT_AT_SCOPE_SMALL_SMG_MK2', - hash = 1038927834, - model = 'w_at_scope_small_mk2', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_MEDIUM_MK2'] = { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_LARGE_MK2'] = { - id = 'COMPONENT_AT_SCOPE_LARGE_MK2', - hash = -2101279869, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG2', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_NV'] = { - id = 'COMPONENT_AT_SCOPE_NV', - hash = -1233121104, - model = 'w_at_scope_nv', - gxtName = 'WCT_SCOPE_NV', - gxtDescription = 'WCD_SCOPE_NV', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SCOPE_THERMAL'] = { - id = 'COMPONENT_AT_SCOPE_THERMAL', - hash = 776198721, - model = 'w_at_scope_nv', - gxtName = 'WCT_SCOPE_TH', - gxtDescription = 'WCD_SCOPE_TH', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SIGHTS'] = { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SIGHTS_SMG'] = { - id = 'COMPONENT_AT_SIGHTS_SMG', - hash = -1613015470, - model = 'w_at_sights_smg', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_AT_SR_SUPP_03'] = { - id = 'COMPONENT_AT_SR_SUPP_03', - hash = -1404903567, - model = 'w_at_sr_supp3', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_FLASHLIGHT_LIGHT'] = { - id = 'COMPONENT_FLASHLIGHT_LIGHT', - hash = -575194865, - model = 'w_me_flashlight_flash', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight' - }, - ['COMPONENT_FLAREGUN_CLIP_01'] = { - id = 'COMPONENT_FLAREGUN_CLIP_01', - hash = -1813398119, - model = 'w_pi_flaregun_mag1', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCT_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_CERAMICPISTOL_CLIP_01'] = { - id = 'COMPONENT_CERAMICPISTOL_CLIP_01', - hash = 1423184737, - model = 'W_PI_Ceramic_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_CERAMICPISTOL_CLIP_02'] = { - id = 'COMPONENT_CERAMICPISTOL_CLIP_02', - hash = -2122814295, - model = 'w_pi_sns_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 17 - }, - ['COMPONENT_CERAMICPISTOL_SUPP'] = { - id = 'COMPONENT_CERAMICPISTOL_SUPP', - hash = -1828202758, - model = 'W_PI_Ceramic_Supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor' - }, - ['COMPONENT_NAVYREVOLVER_CLIP_01'] = { - id = 'COMPONENT_NAVYREVOLVER_CLIP_01', - hash = -1738620313, - model = 'w_pi_wep2_gun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_NV_CLIP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_MACHINEPISTOL_CLIP_01'] = { - id = 'COMPONENT_MACHINEPISTOL_CLIP_01', - hash = 1198425599, - model = 'w_sb_compactsmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MCHP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_MACHINEPISTOL_CLIP_02'] = { - id = 'COMPONENT_MACHINEPISTOL_CLIP_02', - hash = -1188271751, - model = 'w_sb_compactsmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MCHP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_COMPACTRIFLE_CLIP_01'] = { - id = 'COMPONENT_COMPACTRIFLE_CLIP_01', - hash = 1363085923, - model = 'w_ar_assaultrifle_smg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CMPR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_COMPACTRIFLE_CLIP_02'] = { - id = 'COMPONENT_COMPACTRIFLE_CLIP_02', - hash = 1509923832, - model = 'w_ar_assaultrifle_smg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CMPR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_DBSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_DBSHOTGUN_CLIP_01', - hash = 703231006, - model = 'w_sg_doublebarrel_mag1', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 2 - }, - ['COMPONENT_COMBATPDW_CLIP_01'] = { - id = 'COMPONENT_COMBATPDW_CLIP_01', - hash = 1125642654, - model = 'W_SB_PDW_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_PDW_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_COMBATPDW_CLIP_02'] = { - id = 'COMPONENT_COMBATPDW_CLIP_02', - hash = 860508675, - model = 'W_SB_PDW_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_PDW_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_SNSPISTOL_CLIP_01'] = { - id = 'COMPONENT_SNSPISTOL_CLIP_01', - hash = -125817127, - model = 'w_pi_sns_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SNSP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_SNSPISTOL_CLIP_02'] = { - id = 'COMPONENT_SNSPISTOL_CLIP_02', - hash = 2063610803, - model = 'w_pi_sns_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SNSP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_SNSPISTOL_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_SNSPISTOL_VARMOD_LOWRIDER', - hash = -2144080721, - model = 'w_pi_sns_pistol_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MARKSMANPISTOL_CLIP_01'] = { - id = 'COMPONENT_MARKSMANPISTOL_CLIP_01', - hash = -878820883, - model = 'W_PI_SingleShot_Shell', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_KNUCKLE_VARMOD_BASE'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_BASE', - hash = -213504205, - model = 'W_ME_Knuckle', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_PIMP'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_PIMP', - hash = -971770235, - model = 'W_ME_Knuckle_02', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_BALLAS'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_BALLAS', - hash = -287703709, - model = 'W_ME_Knuckle_BG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_DOLLAR'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_DOLLAR', - hash = 1351683121, - model = 'W_ME_Knuckle_DLR', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_DIAMOND'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_DIAMOND', - hash = -1755194916, - model = 'W_ME_Knuckle_DMD', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_HATE'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_HATE', - hash = 2112683568, - model = 'W_ME_Knuckle_HT', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_LOVE'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_LOVE', - hash = 1062111910, - model = 'W_ME_Knuckle_LV', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_PLAYER'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_PLAYER', - hash = 146278587, - model = 'W_ME_Knuckle_PC', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_KING'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_KING', - hash = -494162961, - model = 'W_ME_Knuckle_SLG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_KNUCKLE_VARMOD_VAGOS'] = { - id = 'COMPONENT_KNUCKLE_VARMOD_VAGOS', - hash = 2062808965, - model = 'W_ME_Knuckle_VG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_HEAVYPISTOL_CLIP_01'] = { - id = 'COMPONENT_HEAVYPISTOL_CLIP_01', - hash = 222992026, - model = 'w_pi_heavypistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HPST_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 18 - }, - ['COMPONENT_HEAVYPISTOL_CLIP_02'] = { - id = 'COMPONENT_HEAVYPISTOL_CLIP_02', - hash = 1694090795, - model = 'w_pi_heavypistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_HPST_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 36 - }, - ['COMPONENT_SPECIALCARBINE_CLIP_01'] = { - id = 'COMPONENT_SPECIALCARBINE_CLIP_01', - hash = -959978111, - model = 'w_ar_specialcarbine_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SCRB_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_SPECIALCARBINE_CLIP_02'] = { - id = 'COMPONENT_SPECIALCARBINE_CLIP_02', - hash = 2089537806, - model = 'w_ar_specialcarbine_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SCRB_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_BULLPUPRIFLE_CLIP_01'] = { - id = 'COMPONENT_BULLPUPRIFLE_CLIP_01', - hash = -979292288, - model = 'w_ar_bullpuprifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_BRIF_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_BULLPUPRIFLE_CLIP_02'] = { - id = 'COMPONENT_BULLPUPRIFLE_CLIP_02', - hash = -1284994289, - model = 'w_ar_bullpuprifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_BRIF_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 60 - }, - ['COMPONENT_VINTAGEPISTOL_CLIP_01'] = { - id = 'COMPONENT_VINTAGEPISTOL_CLIP_01', - hash = 1168357051, - model = 'w_pi_vintage_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_VPST_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 7 - }, - ['COMPONENT_VINTAGEPISTOL_CLIP_02'] = { - id = 'COMPONENT_VINTAGEPISTOL_CLIP_02', - hash = 867832552, - model = 'w_pi_vintage_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_VPST_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 14 - }, - ['COMPONENT_FIREWORK_CLIP_01'] = { - id = 'COMPONENT_FIREWORK_CLIP_01', - hash = -454770035, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_MUSKET_CLIP_01'] = { - id = 'COMPONENT_MUSKET_CLIP_01', - hash = 1322387263, - model = 'P_CS_Joint_02', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM'] = { - id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM', - hash = 471997210, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRF', - __type = 'CWeaponComponentScopeInfo', - type = 'scope' - }, - ['COMPONENT_MARKSMANRIFLE_CLIP_01'] = { - id = 'COMPONENT_MARKSMANRIFLE_CLIP_01', - hash = -667205311, - model = 'w_sr_marksmanrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MKRF_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 8 - }, - ['COMPONENT_MARKSMANRIFLE_CLIP_02'] = { - id = 'COMPONENT_MARKSMANRIFLE_CLIP_02', - hash = -855823675, - model = 'w_sr_marksmanrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MKRF_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 16 - }, - ['COMPONENT_HEAVYSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_01', - hash = 844049759, - model = 'w_sg_heavyshotgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HVSG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_HEAVYSHOTGUN_CLIP_02'] = { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_02', - hash = -1759709443, - model = 'w_sg_heavyshotgun_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_HVSG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 12 - }, - ['COMPONENT_GUSENBERG_CLIP_01'] = { - id = 'COMPONENT_GUSENBERG_CLIP_01', - hash = 484812453, - model = 'w_sb_gusenberg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_GSNB_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - }, - ['COMPONENT_GUSENBERG_CLIP_02'] = { - id = 'COMPONENT_GUSENBERG_CLIP_02', - hash = -355941776, - model = 'w_sb_gusenberg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_GSNB_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 50 - }, - ['COMPONENT_RAILGUN_CLIP_01'] = { - id = 'COMPONENT_RAILGUN_CLIP_01', - hash = 59044840, - model = 'w_ar_railgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_RLGN_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_HEAVYPISTOL_VARMOD_LUXE'] = { - id = 'COMPONENT_HEAVYPISTOL_VARMOD_LUXE', - hash = 2053798779, - model = 'W_PI_HeavyPistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER'] = { - id = 'COMPONENT_SPECIALCARBINE_VARMOD_LOWRIDER', - hash = 1929467122, - model = 'w_ar_specialcarbine_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_BULLPUPRIFLE_VARMOD_LOW'] = { - id = 'COMPONENT_BULLPUPRIFLE_VARMOD_LOW', - hash = -1470645128, - model = 'w_ar_bullpuprifle_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_MARKSMANRIFLE_VARMOD_LUXE'] = { - id = 'COMPONENT_MARKSMANRIFLE_VARMOD_LUXE', - hash = 371102273, - model = 'W_SR_MarksmanRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_REVOLVER_CLIP_01'] = { - id = 'COMPONENT_REVOLVER_CLIP_01', - hash = -377062173, - model = 'w_pi_revolver_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 6 - }, - ['COMPONENT_REVOLVER_VARMOD_BOSS'] = { - id = 'COMPONENT_REVOLVER_VARMOD_BOSS', - hash = 384708672, - model = 'w_pi_revolver_b', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_REVOLVER_VARMOD_GOON'] = { - id = 'COMPONENT_REVOLVER_VARMOD_GOON', - hash = -1802258419, - model = 'w_pi_revolver_g', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SWITCHBLADE_VARMOD_BASE'] = { - id = 'COMPONENT_SWITCHBLADE_VARMOD_BASE', - hash = -1858624256, - model = 'w_me_switchblade', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SWITCHBLADE_VARMOD_VAR1'] = { - id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR1', - hash = 1530822070, - model = 'w_me_switchblade_b', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_SWITCHBLADE_VARMOD_VAR2'] = { - id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR2', - hash = -409758110, - model = 'w_me_switchblade_g', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant' - }, - ['COMPONENT_AUTOSHOTGUN_CLIP_01'] = { - id = 'COMPONENT_AUTOSHOTGUN_CLIP_01', - hash = 169463950, - model = 'w_sg_sweeper_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = '', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 10 - }, - ['COMPONENT_COMPACTLAUNCHER_CLIP_01'] = { - id = 'COMPONENT_COMPACTLAUNCHER_CLIP_01', - hash = 1235472140, - model = 'w_lr_compactgl_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = '', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 1 - }, - ['COMPONENT_MINISMG_CLIP_01'] = { - id = 'COMPONENT_MINISMG_CLIP_01', - hash = -2067221805, - model = 'w_sb_minismg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SCRP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 20 - }, - ['COMPONENT_MINISMG_CLIP_02'] = { - id = 'COMPONENT_MINISMG_CLIP_02', - hash = -1820405577, - model = 'w_sb_minismg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SCRP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - clipSize = 30 - } -} diff --git a/tools/export/weapon_config.lua b/tools/export/weapon_config.lua deleted file mode 100644 index 5d9b0b0..0000000 --- a/tools/export/weapon_config.lua +++ /dev/null @@ -1,11070 +0,0 @@ -Config.Weapons = { - ['ardent_mg'] = { - id = 'VEHICLE_WEAPON_ARDENT_MG', - hash = -1001503935, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_AR_MG', - gxtDescription = 'WTD_V_AR_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_ardent_mg') - }, - ['insurgent_minigun'] = { - id = 'VEHICLE_WEAPON_INSURGENT_MINIGUN', - hash = -1433899528, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_INS_MINI', - gxtDescription = 'WTD_V_INS_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_insurgent_minigun') - }, - ['mobileops_cannon'] = { - id = 'VEHICLE_WEAPON_MOBILEOPS_CANNON', - hash = -448894556, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MOBILEOPS_CANNON', - hash = 764589401, - max = 20, - name = _(CR(), 'core', 'ammo_mobileops_cannon') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mobileops_cannon') - }, - ['nightshark_mg'] = { - id = 'VEHICLE_WEAPON_NIGHTSHARK_MG', - hash = -1508194956, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_NS_MG', - gxtDescription = 'WTD_V_NS_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_nightshark_mg') - }, - ['technical_minigun'] = { - id = 'VEHICLE_WEAPON_TECHNICAL_MINIGUN', - hash = -611760632, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TEC_MINI', - gxtDescription = 'WTD_V_TEC_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_technical_minigun') - }, - ['akula_turret_single'] = { - id = 'VEHICLE_WEAPON_AKULA_TURRET_SINGLE', - hash = -1246512723, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_AKU_TS', - gxtDescription = 'WTD_V_AKU_TS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_turret_single') - }, - ['akula_turret_dual'] = { - id = 'VEHICLE_WEAPON_AKULA_TURRET_DUAL', - hash = 476907586, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_AKU_TD', - gxtDescription = 'WTD_V_AKU_TD', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_turret_dual') - }, - ['akula_minigun'] = { - id = 'VEHICLE_WEAPON_AKULA_MINIGUN', - hash = 431576697, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_AKU_MN', - gxtDescription = 'WTD_V_AKU_MN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_minigun') - }, - ['akula_missile'] = { - id = 'VEHICLE_WEAPON_AKULA_MISSILE', - hash = 2092838988, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_HUNTER_MISSILE', - hash = -119401255, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_missile') - }, - gxtName = 'WT_V_AKU_MI', - gxtDescription = 'WTD_V_AKU_MI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_missile') - }, - ['akula_barrage'] = { - id = 'VEHICLE_WEAPON_AKULA_BARRAGE', - hash = -2012408590, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_HUNTER_BARRAGE', - hash = 935462248, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_barrage') - }, - gxtName = 'WT_V_AKU_BA', - gxtDescription = 'WTD_V_AKU_BA', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_akula_barrage') - }, - ['apc_cannon'] = { - id = 'VEHICLE_WEAPON_APC_CANNON', - hash = 328167896, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_APC_CANNON', - hash = -767591211, - max = 100, - name = _(CR(), 'core', 'ammo_apc_cannon') - }, - gxtName = 'WT_V_APC_C', - gxtDescription = 'WTD_V_APC_C', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_apc_cannon') - }, - ['apc_missile'] = { - id = 'VEHICLE_WEAPON_APC_MISSILE', - hash = 1151689097, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_APC_MISSILE', - hash = 119573070, - max = 20, - name = _(CR(), 'core', 'ammo_apc_missile') - }, - gxtName = 'WT_V_APC_M', - gxtDescription = 'WTD_V_APC_M', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_apc_missile') - }, - ['apc_mg'] = { - id = 'VEHICLE_WEAPON_APC_MG', - hash = 190244068, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_APC_S', - gxtDescription = 'WTD_V_APC_S', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_apc_mg') - }, - ['avenger_cannon'] = { - id = 'VEHICLE_WEAPON_AVENGER_CANNON', - hash = -1738072005, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_AVENGER_CANNON', - hash = 1849772700, - max = 20, - name = _(CR(), 'core', 'ammo_avenger_cannon') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_avenger_cannon') - }, - ['barrage_top_mg'] = { - id = 'VEHICLE_WEAPON_BARRAGE_TOP_MG', - hash = -146175596, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_BAR_TMG', - gxtDescription = 'WTD_V_BAR_TMG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_top_mg') - }, - ['barrage_top_minigun'] = { - id = 'VEHICLE_WEAPON_BARRAGE_TOP_MINIGUN', - hash = 1000258817, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_BAR_TMI', - gxtDescription = 'WTD_V_BAR_TMI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_top_minigun') - }, - ['barrage_rear_mg'] = { - id = 'VEHICLE_WEAPON_BARRAGE_REAR_MG', - hash = 1200179045, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_BAR_RMG', - gxtDescription = 'WTD_V_BAR_RMG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_rear_mg') - }, - ['barrage_rear_minigun'] = { - id = 'VEHICLE_WEAPON_BARRAGE_REAR_MINIGUN', - hash = 525623141, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_BAR_RMI', - gxtDescription = 'WTD_V_BAR_RMI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_rear_minigun') - }, - ['barrage_rear_gl'] = { - id = 'VEHICLE_WEAPON_BARRAGE_REAR_GL', - hash = -1538514291, - clipSize = 10, - category = nil, - model = nil, - ammo = { - id = 'AMMO_BARRAGE_GL', - hash = 1364454752, - max = 20, - name = _(CR(), 'core', 'ammo_barrage_gl') - }, - gxtName = 'WT_V_BAR_RGL', - gxtDescription = 'WTD_V_BAR_RGL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_barrage_rear_gl') - }, - ['bomb'] = { - id = 'VEHICLE_WEAPON_BOMB', - hash = -1695500020, - clipSize = 1, - category = 'thrown', - model = 'w_smug_bomb_01', - ammo = { - id = 'AMMO_VEHICLEBOMB', - hash = -1615671818, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb') - }, - gxtName = 'WT_VEHBOMB', - gxtDescription = 'WTD_VEHBOMB', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb') - }, - ['bomb_cluster'] = { - id = 'VEHICLE_WEAPON_BOMB_CLUSTER', - hash = 220773539, - clipSize = 1, - category = 'thrown', - model = 'w_smug_bomb_02', - ammo = { - id = 'AMMO_VEHICLEBOMB_CLUSTER', - hash = 1584038003, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_cluster') - }, - gxtName = 'WT_VEHBOMB_C', - gxtDescription = 'WTD_VEHBOMB_C', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_cluster') - }, - ['bomb_gas'] = { - id = 'VEHICLE_WEAPON_BOMB_GAS', - hash = 1430300958, - clipSize = 1, - category = 'thrown', - model = 'w_smug_bomb_03', - ammo = { - id = 'AMMO_VEHICLEBOMB_GAS', - hash = 314485403, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_gas') - }, - gxtName = 'WT_VEHBOMB_G', - gxtDescription = 'WTD_VEHBOMB_G', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_gas') - }, - ['bomb_incendiary'] = { - id = 'VEHICLE_WEAPON_BOMB_INCENDIARY', - hash = 1794615063, - clipSize = 1, - category = 'thrown', - model = 'w_smug_bomb_04', - ammo = { - id = 'AMMO_VEHICLEBOMB_INCENDIARY', - hash = -111286589, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_incendiary') - }, - gxtName = 'WT_VEHBOMB_I', - gxtDescription = 'WTD_VEHBOMB_I', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_incendiary') - }, - ['bombushka_cannon'] = { - id = 'VEHICLE_WEAPON_BOMBUSHKA_CANNON', - hash = -666617255, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_BSHK_CANN', - gxtDescription = 'WTD_V_BSHK_CANN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bombushka_cannon') - }, - ['bombushka_dualmg'] = { - id = 'VEHICLE_WEAPON_BOMBUSHKA_DUALMG', - hash = 741027160, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_BSHK_DUAL', - gxtDescription = 'WTD_V_BSHK_DUAL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bombushka_dualmg') - }, - ['bruiser_50cal'] = { - id = 'VEHICLE_WEAPON_BRUISER_50CAL', - hash = -683817471, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bruiser_50cal') - }, - ['bruiser2_50cal_laser'] = { - id = 'VEHICLE_WEAPON_BRUISER2_50CAL_LASER', - hash = 1030357398, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bruiser2_50cal_laser') - }, - ['caracara_mg'] = { - id = 'VEHICLE_WEAPON_CARACARA_MG', - hash = 1817275304, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TURRET', - gxtDescription = 'WTD_V_TURRET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_caracara_mg') - }, - ['caracara_minigun'] = { - id = 'VEHICLE_WEAPON_CARACARA_MINIGUN', - hash = 1338760315, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TEC_MINI', - gxtDescription = 'WTD_V_TEC_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_caracara_minigun') - }, - ['cherno_missile'] = { - id = 'VEHICLE_WEAPON_CHERNO_MISSILE', - hash = -1572351938, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_CHERNO_MISSILE', - hash = -1278325590, - max = 10, - name = _(CR(), 'core', 'ammo_cherno_missile') - }, - gxtName = 'WT_V_CHE_MI', - gxtDescription = 'WTD_V_CHE_MI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_cherno_missile') - }, - ['deathbike_dualminigun'] = { - id = 'VEHICLE_WEAPON_DEATHBIKE_DUALMINIGUN', - hash = 490982948, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_DBK_MINI', - gxtDescription = 'WTD_V_DBK_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deathbike_dualminigun') - }, - ['deathbike2_minigun_laser'] = { - id = 'VEHICLE_WEAPON_DEATHBIKE2_MINIGUN_LASER', - hash = -385086487, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deathbike2_minigun_laser') - }, - ['deluxo_mg'] = { - id = 'VEHICLE_WEAPON_DELUXO_MG', - hash = -1694538890, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_DEL_MG', - gxtDescription = 'WTD_V_DEL_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deluxo_mg') - }, - ['deluxo_missile'] = { - id = 'VEHICLE_WEAPON_DELUXO_MISSILE', - hash = -1258723020, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_OPPRESSOR_MISSILE', - hash = 570854289, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor_missile') - }, - gxtName = 'WT_V_DEL_MI', - gxtDescription = 'WTD_V_DEL_MI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_deluxo_missile') - }, - ['dogfighter_mg'] = { - id = 'VEHICLE_WEAPON_DOGFIGHTER_MG', - hash = 1595421922, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_DGF_MG', - gxtDescription = 'WTD_V_DGF_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dogfighter_mg') - }, - ['dogfighter_missile'] = { - id = 'VEHICLE_WEAPON_DOGFIGHTER_MISSILE', - hash = -901318531, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - gxtName = 'WT_V_DGF_MISS', - gxtDescription = 'WTD_V_DGF_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dogfighter_missile') - }, - ['dune_mg'] = { - id = 'VEHICLE_WEAPON_DUNE_MG', - hash = -787150897, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_DU_MG', - gxtDescription = 'WTD_V_DU_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dune_mg') - }, - ['dune_grenadelauncher'] = { - id = 'VEHICLE_WEAPON_DUNE_GRENADELAUNCHER', - hash = -1594068723, - clipSize = 10, - category = nil, - model = nil, - ammo = { - id = 'AMMO_DUNE_GRENADELAUNCHER', - hash = 1742067183, - max = 20, - name = _(CR(), 'core', 'ammo_dune_grenadelauncher') - }, - gxtName = 'WT_V_DU_GL', - gxtDescription = 'WTD_V_DU_GL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dune_grenadelauncher') - }, - ['dune_minigun'] = { - id = 'VEHICLE_WEAPON_DUNE_MINIGUN', - hash = 1416047217, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_DU_MINI', - gxtDescription = 'WTD_V_DU_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dune_minigun') - }, - ['flamethrower'] = { - id = 'VEHICLE_WEAPON_FLAMETHROWER', - hash = -1291819974, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_FLAME', - gxtDescription = 'WTD_V_FLAME', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_flamethrower') - }, - ['flamethrower_scifi'] = { - id = 'VEHICLE_WEAPON_FLAMETHROWER_SCIFI', - hash = -2112637790, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_FLAME', - gxtDescription = 'WTD_V_FLAME', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_flamethrower_scifi') - }, - ['hacker_missile'] = { - id = 'VEHICLE_WEAPON_HACKER_MISSILE', - hash = 1987049393, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_HACKER_MISSILE', - hash = -2009808731, - max = 20, - name = _(CR(), 'core', 'ammo_hacker_missile') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hacker_missile') - }, - ['hacker_missile_homing'] = { - id = 'VEHICLE_WEAPON_HACKER_MISSILE_HOMING', - hash = 2011877270, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_HACKER_MISSILE', - hash = -2009808731, - max = 20, - name = _(CR(), 'core', 'ammo_hacker_missile') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hacker_missile_homing') - }, - ['halftrack_dualmg'] = { - id = 'VEHICLE_WEAPON_HALFTRACK_DUALMG', - hash = 1331922171, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_HT_DUALMG', - gxtDescription = 'WTD_V_HT_DUALMG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_halftrack_dualmg') - }, - ['halftrack_quadmg'] = { - id = 'VEHICLE_WEAPON_HALFTRACK_QUADMG', - hash = 1226518132, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_HT_QUADMG', - gxtDescription = 'WTD_V_HT_QUADMG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_halftrack_quadmg') - }, - ['havok_minigun'] = { - id = 'VEHICLE_WEAPON_HAVOK_MINIGUN', - hash = 855547631, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_HAV_MINI', - gxtDescription = 'WTD_V_HAV_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_havok_minigun') - }, - ['hunter_mg'] = { - id = 'VEHICLE_WEAPON_HUNTER_MG', - hash = 1119518887, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_HUNT_MG', - gxtDescription = 'WTD_V_HUNT_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_mg') - }, - ['hunter_missile'] = { - id = 'VEHICLE_WEAPON_HUNTER_MISSILE', - hash = 153396725, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_HUNTER_MISSILE', - hash = -119401255, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_missile') - }, - gxtName = 'WT_V_HUNT_MISS', - gxtDescription = 'WTD_V_HUNT_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_missile') - }, - ['hunter_barrage'] = { - id = 'VEHICLE_WEAPON_HUNTER_BARRAGE', - hash = 785467445, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_HUNTER_BARRAGE', - hash = 935462248, - max = 20, - name = _(CR(), 'core', 'ammo_hunter_barrage') - }, - gxtName = 'WT_V_HUNT_BARR', - gxtDescription = 'WTD_V_HUNT_BARR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_barrage') - }, - ['hunter_cannon'] = { - id = 'VEHICLE_WEAPON_HUNTER_CANNON', - hash = 704686874, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_HUNT_CANN', - gxtDescription = 'WTD_V_HUNT_CANN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_hunter_cannon') - }, - ['issi4_50cal'] = { - id = 'VEHICLE_WEAPON_ISSI4_50CAL', - hash = 1984488269, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_issi4_50cal') - }, - ['issi5_50cal_laser'] = { - id = 'VEHICLE_WEAPON_ISSI5_50CAL_LASER', - hash = 1988061477, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_issi5_50cal_laser') - }, - ['khanjali_cannon'] = { - id = 'VEHICLE_WEAPON_KHANJALI_CANNON', - hash = 507170720, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_TANK', - hash = -1474608608, - max = 100, - name = _(CR(), 'core', 'ammo_tank') - }, - gxtName = 'WT_V_KHA_CA', - gxtDescription = 'WTD_V_KHA_CA', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_cannon') - }, - ['khanjali_cannon_heavy'] = { - id = 'VEHICLE_WEAPON_KHANJALI_CANNON_HEAVY', - hash = -2088013459, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_KHANJALI_CANNON_HEAVY', - hash = 617011510, - max = 100, - name = _(CR(), 'core', 'ammo_khanjali_cannon_heavy') - }, - gxtName = 'WT_V_KHA_HCA', - gxtDescription = 'WTD_V_KHA_HCA', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_cannon_heavy') - }, - ['khanjali_mg'] = { - id = 'VEHICLE_WEAPON_KHANJALI_MG', - hash = 711953949, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_KHA_MG', - gxtDescription = 'WTD_V_KHA_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_mg') - }, - ['khanjali_gl'] = { - id = 'VEHICLE_WEAPON_KHANJALI_GL', - hash = 394659298, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_KHANJALI_GL', - hash = -1630507076, - max = 20, - name = _(CR(), 'core', 'ammo_khanjali_gl') - }, - gxtName = 'WT_V_KHA_GL', - gxtDescription = 'WTD_V_KHA_GL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_khanjali_gl') - }, - ['menacer_mg'] = { - id = 'VEHICLE_WEAPON_MENACER_MG', - hash = -540346204, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_NS_MG', - gxtDescription = 'WTD_V_NS_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_menacer_mg') - }, - ['microlight_mg'] = { - id = 'VEHICLE_WEAPON_MICROLIGHT_MG', - hash = -991944340, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_MCRL_MG', - gxtDescription = 'WTD_V_MCRL_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_microlight_mg') - }, - ['mine'] = { - id = 'VEHICLE_WEAPON_MINE', - hash = 1508567460, - clipSize = 1, - category = 'thrown', - model = 'w_ex_vehiclemine', - ammo = { - id = 'AMMO_VEHICLEMINE', - hash = 612448028, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine') - }, - ['mine_kinetic'] = { - id = 'VEHICLE_WEAPON_MINE_KINETIC', - hash = 1007245390, - clipSize = 1, - category = 'thrown', - model = 'w_ex_vehiclemine', - ammo = { - id = 'AMMO_VEHICLEMINE_KINETIC', - hash = -1140465749, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_kinetic') - }, - ['mine_emp'] = { - id = 'VEHICLE_WEAPON_MINE_EMP', - hash = 1776356704, - clipSize = 1, - category = 'thrown', - model = 'w_ex_vehiclemine', - ammo = { - id = 'AMMO_VEHICLEMINE_EMP', - hash = 1653442244, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_emp') - }, - ['mine_spike'] = { - id = 'VEHICLE_WEAPON_MINE_SPIKE', - hash = -647126932, - clipSize = 1, - category = 'thrown', - model = 'w_ex_vehiclemine', - ammo = { - id = 'AMMO_VEHICLEMINE_SPIKE', - hash = 1782795920, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_spike') - }, - ['mine_slick'] = { - id = 'VEHICLE_WEAPON_MINE_SLICK', - hash = 1459276487, - clipSize = 1, - category = 'thrown', - model = 'w_ex_vehiclemine', - ammo = { - id = 'AMMO_VEHICLEMINE_SLICK', - hash = -418520852, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_slick') - }, - ['mine_tar'] = { - id = 'VEHICLE_WEAPON_MINE_TAR', - hash = -197031008, - clipSize = 1, - category = 'thrown', - model = 'w_ex_vehiclemine', - ammo = { - id = 'AMMO_VEHICLEMINE_TAR', - hash = -1733963618, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_tar') - }, - ['mine_kinetic_rc'] = { - id = 'VEHICLE_WEAPON_MINE_KINETIC_RC', - hash = 623572320, - clipSize = 1, - category = 'thrown', - model = 'w_ex_arena_landmine_01b', - ammo = { - id = 'AMMO_VEHICLEMINE_KINETIC_RC', - hash = -338616823, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_kinetic_rc') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_kinetic_rc') - }, - ['mine_emp_rc'] = { - id = 'VEHICLE_WEAPON_MINE_EMP_RC', - hash = 1414837446, - clipSize = 1, - category = 'thrown', - model = 'w_ex_arena_landmine_01b', - ammo = { - id = 'AMMO_VEHICLEMINE_EMP_RC', - hash = -930619152, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_emp_rc') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_emp_rc') - }, - ['mine_spike_rc'] = { - id = 'VEHICLE_WEAPON_MINE_SPIKE_RC', - hash = 2083192401, - clipSize = 1, - category = 'thrown', - model = 'w_ex_arena_landmine_01b', - ammo = { - id = 'AMMO_VEHICLEMINE_SPIKE_RC', - hash = -1317227407, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_spike_rc') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_spike_rc') - }, - ['mine_slick_rc'] = { - id = 'VEHICLE_WEAPON_MINE_SLICK_RC', - hash = -2065138921, - clipSize = 1, - category = 'thrown', - model = 'w_ex_arena_landmine_01b', - ammo = { - id = 'AMMO_VEHICLEMINE_SLICK_RC', - hash = -590129723, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_slick_rc') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_slick_rc') - }, - ['mine_tar_rc'] = { - id = 'VEHICLE_WEAPON_MINE_TAR_RC', - hash = 2100589782, - clipSize = 1, - category = 'thrown', - model = 'w_ex_arena_landmine_01b', - ammo = { - id = 'AMMO_VEHICLEMINE_TAR_RC', - hash = -1955683003, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclemine_tar_rc') - }, - gxtName = 'WT_VEHMINE', - gxtDescription = 'WTD_VEHMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mine_tar_rc') - }, - ['mogul_nose'] = { - id = 'VEHICLE_WEAPON_MOGUL_NOSE', - hash = -166158518, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MOG_NOSE', - gxtDescription = 'WTD_V_MOG_NOSE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_nose') - }, - ['mogul_dualnose'] = { - id = 'VEHICLE_WEAPON_MOGUL_DUALNOSE', - hash = -437014993, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MOG_DNOSE', - gxtDescription = 'WTD_V_MOG_DNOSE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_dualnose') - }, - ['mogul_turret'] = { - id = 'VEHICLE_WEAPON_MOGUL_TURRET', - hash = -486730914, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_MOG_TURR', - gxtDescription = 'WTD_V_MOG_TURR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_turret') - }, - ['mogul_dualturret'] = { - id = 'VEHICLE_WEAPON_MOGUL_DUALTURRET', - hash = -1171817471, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_MOG_DTURR', - gxtDescription = 'WTD_V_MOG_DTURR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mogul_dualturret') - }, - ['monster3_glkin'] = { - id = 'VEHICLE_WEAPON_MONSTER3_GLKIN', - hash = -441560099, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MONSTER3_KINETIC', - hash = 2074953483, - max = 10, - name = _(CR(), 'core', 'ammo_monster3_kinetic') - }, - gxtName = 'WT_V_GREN_KIN', - gxtDescription = 'WTD_V_GREN_KIN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_monster3_glkin') - }, - ['mortar_explosive'] = { - id = 'VEHICLE_WEAPON_MORTAR_EXPLOSIVE', - hash = -1582773038, - clipSize = 10, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MORTAR_EXPLOSIVE', - hash = 814030577, - max = 10, - name = _(CR(), 'core', 'ammo_mortar_explosive') - }, - gxtName = 'WT_V_TAM_MORT', - gxtDescription = 'WTD_V_TAM_MORT', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mortar_explosive') - }, - ['mortar_kinetic'] = { - id = 'VEHICLE_WEAPON_MORTAR_KINETIC', - hash = 1663705853, - clipSize = 10, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MORTAR_KINETIC', - hash = 648487681, - max = 10, - name = _(CR(), 'core', 'ammo_mortar_kinetic') - }, - gxtName = 'WT_V_MORTAR_KIN', - gxtDescription = 'WTD_V_MORTAR_KIN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mortar_kinetic') - }, - ['mule4_mg'] = { - id = 'VEHICLE_WEAPON_MULE4_MG', - hash = -2074769625, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mule4_mg') - }, - ['mule4_missile'] = { - id = 'VEHICLE_WEAPON_MULE4_MISSILE', - hash = 1198717003, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - gxtName = 'WT_V_TAM_MISS', - gxtDescription = 'WTD_V_TAM_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mule4_missile') - }, - ['mule4_turret_gl'] = { - id = 'VEHICLE_WEAPON_MULE4_TURRET_GL', - hash = -586003867, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MULE4_GL', - hash = -206645419, - max = 20, - name = _(CR(), 'core', 'ammo_mule4_gl') - }, - gxtName = 'WT_V_KHA_GL', - gxtDescription = 'WTD_V_KHA_GL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_mule4_turret_gl') - }, - ['oppressor_mg'] = { - id = 'VEHICLE_WEAPON_OPPRESSOR_MG', - hash = -651022627, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_OP_MG', - gxtDescription = 'WTD_V_OP_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor_mg') - }, - ['oppressor_missile'] = { - id = 'VEHICLE_WEAPON_OPPRESSOR_MISSILE', - hash = -1950890434, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_OPPRESSOR_MISSILE', - hash = 570854289, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor_missile') - }, - gxtName = 'WT_V_OP_MISS', - gxtDescription = 'WTD_V_OP_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor_missile') - }, - ['oppressor2_mg'] = { - id = 'VEHICLE_WEAPON_OPPRESSOR2_MG', - hash = -498786858, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_OP_MG', - gxtDescription = 'WTD_V_OP_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor2_mg') - }, - ['oppressor2_cannon'] = { - id = 'VEHICLE_WEAPON_OPPRESSOR2_CANNON', - hash = -699583383, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_ROG_CANN', - gxtDescription = 'WTD_V_ROG_CANN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor2_cannon') - }, - ['oppressor2_missile'] = { - id = 'VEHICLE_WEAPON_OPPRESSOR2_MISSILE', - hash = 1966766321, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_OPPRESSOR2_MISSILE', - hash = 914231229, - max = 20, - name = _(CR(), 'core', 'ammo_oppressor2_missile') - }, - gxtName = 'WT_V_OP_MISS', - gxtDescription = 'WTD_V_OP_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_oppressor2_missile') - }, - ['paragon2_mg'] = { - id = 'VEHICLE_WEAPON_PARAGON2_MG', - hash = 749486726, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_paragon2_mg') - }, - ['pounder2_mini'] = { - id = 'VEHICLE_WEAPON_POUNDER2_MINI', - hash = -2031683506, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_mini') - }, - ['pounder2_missile'] = { - id = 'VEHICLE_WEAPON_POUNDER2_MISSILE', - hash = 162065050, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - gxtName = 'WT_V_TAM_MISS', - gxtDescription = 'WTD_V_TAM_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_missile') - }, - ['pounder2_barrage'] = { - id = 'VEHICLE_WEAPON_POUNDER2_BARRAGE', - hash = -1838445340, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_POUNDER2_MISSILE', - hash = 948447183, - max = 20, - name = _(CR(), 'core', 'ammo_pounder2_missile') - }, - gxtName = 'WT_V_POU_BA', - gxtDescription = 'WTD_V_POU_BA', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_barrage') - }, - ['pounder2_gl'] = { - id = 'VEHICLE_WEAPON_POUNDER2_GL', - hash = -1827078378, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_POUNDER2_GL', - hash = 1624456817, - max = 20, - name = _(CR(), 'core', 'ammo_pounder2_gl') - }, - gxtName = 'WT_V_KHA_GL', - gxtDescription = 'WTD_V_KHA_GL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_pounder2_gl') - }, - ['rogue_mg'] = { - id = 'VEHICLE_WEAPON_ROGUE_MG', - hash = 158495693, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_ROG_MG', - gxtDescription = 'WTD_V_ROG_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rogue_mg') - }, - ['rogue_cannon'] = { - id = 'VEHICLE_WEAPON_ROGUE_CANNON', - hash = -416629822, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_ROG_CANN', - gxtDescription = 'WTD_V_ROG_CANN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rogue_cannon') - }, - ['rogue_missile'] = { - id = 'VEHICLE_WEAPON_ROGUE_MISSILE', - hash = 1820910717, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_ROGUE_MISSILE', - hash = -1421421393, - max = 20, - name = _(CR(), 'core', 'ammo_rogue_missile') - }, - gxtName = 'WT_V_ROG_MISS', - gxtDescription = 'WTD_V_ROG_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rogue_missile') - }, - ['scarab_50cal'] = { - id = 'VEHICLE_WEAPON_SCARAB_50CAL', - hash = 562032424, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_1', - gxtDescription = 'WTD_V_MG50_1', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scarab_50cal') - }, - ['scarab2_50cal_laser'] = { - id = 'VEHICLE_WEAPON_SCARAB2_50CAL_LASER', - hash = -500306484, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_1L', - gxtDescription = 'WTD_V_MG50_1L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scarab2_50cal_laser') - }, - ['scramjet_mg'] = { - id = 'VEHICLE_WEAPON_SCRAMJET_MG', - hash = 231629074, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_VGL_MG', - gxtDescription = 'WTD_V_VGL_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scramjet_mg') - }, - ['scramjet_missile'] = { - id = 'VEHICLE_WEAPON_SCRAMJET_MISSILE', - hash = -1125578533, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SCRAMJET_MISSILE', - hash = -1664293218, - max = 20, - name = _(CR(), 'core', 'ammo_scramjet_missile') - }, - gxtName = 'WT_V_VGL_MISS', - gxtDescription = 'WTD_V_VGL_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_scramjet_missile') - }, - ['seabreeze_mg'] = { - id = 'VEHICLE_WEAPON_SEABREEZE_MG', - hash = 1371067624, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_SBZ_MG', - gxtDescription = 'WTD_V_SBZ_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_seabreeze_mg') - }, - ['speedo4_mg'] = { - id = 'VEHICLE_WEAPON_SPEEDO4_MG', - hash = -939722436, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_speedo4_mg') - }, - ['speedo4_turret_mg'] = { - id = 'VEHICLE_WEAPON_SPEEDO4_TURRET_MG', - hash = -699002559, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_SPD_TMG', - gxtDescription = 'WTD_V_SPD_TMG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_speedo4_turret_mg') - }, - ['speedo4_turret_mini'] = { - id = 'VEHICLE_WEAPON_SPEEDO4_TURRET_MINI', - hash = -1627504966, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_SPD_TMI', - gxtDescription = 'WTD_V_SPD_TMI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_speedo4_turret_mini') - }, - ['strikeforce_barrage'] = { - id = 'VEHICLE_WEAPON_STRIKEFORCE_BARRAGE', - hash = 968648323, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_STRIKEFORCE_BARRAGE', - hash = 987449399, - max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_barrage') - }, - gxtName = 'WT_V_HUNT_BARR', - gxtDescription = 'WTD_V_HUNT_BARR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_strikeforce_barrage') - }, - ['strikeforce_cannon'] = { - id = 'VEHICLE_WEAPON_STRIKEFORCE_CANNON', - hash = 955522731, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_ROG_CANN', - gxtDescription = 'WTD_V_ROG_CANN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_strikeforce_cannon') - }, - ['strikeforce_missile'] = { - id = 'VEHICLE_WEAPON_STRIKEFORCE_MISSILE', - hash = 519052682, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_STRIKEFORCE_MISSILE', - hash = 770578418, - max = 20, - name = _(CR(), 'core', 'ammo_strikeforce_missile') - }, - gxtName = 'WT_V_HUNT_MISS', - gxtDescription = 'WTD_V_HUNT_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_strikeforce_missile') - }, - ['subcar_mg'] = { - id = 'VEHICLE_WEAPON_SUBCAR_MG', - hash = 1176362416, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_SUB_MG', - gxtDescription = 'WTD_V_SUB_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_subcar_mg') - }, - ['subcar_missile'] = { - id = 'VEHICLE_WEAPON_SUBCAR_MISSILE', - hash = -729187314, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SUBCAR_MISSILE', - hash = 456482729, - max = 100, - name = _(CR(), 'core', 'ammo_subcar_missile') - }, - gxtName = 'WT_V_SUB_MI', - gxtDescription = 'WTD_V_SUB_MI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_subcar_missile') - }, - ['subcar_torpedo'] = { - id = 'VEHICLE_WEAPON_SUBCAR_TORPEDO', - hash = -410795078, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SUBCAR_TORPEDO', - hash = -684945118, - max = 100, - name = _(CR(), 'core', 'ammo_subcar_torpedo') - }, - gxtName = 'WT_V_SUB_TO', - gxtDescription = 'WTD_V_SUB_TO', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_subcar_torpedo') - }, - ['tampa_missile'] = { - id = 'VEHICLE_WEAPON_TAMPA_MISSILE', - hash = -1638383454, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - gxtName = 'WT_V_TAM_MISS', - gxtDescription = 'WTD_V_TAM_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_missile') - }, - ['tampa_mortar'] = { - id = 'VEHICLE_WEAPON_TAMPA_MORTAR', - hash = 1015268368, - clipSize = 10, - category = nil, - model = nil, - ammo = { - id = 'AMMO_TAMPA_MORTAR', - hash = -405037695, - max = 10, - name = _(CR(), 'core', 'ammo_tampa_mortar') - }, - gxtName = 'WT_V_TAM_MORT', - gxtDescription = 'WTD_V_TAM_MORT', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_mortar') - }, - ['tampa_fixedminigun'] = { - id = 'VEHICLE_WEAPON_TAMPA_FIXEDMINIGUN', - hash = -624592211, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TAM_FMINI', - gxtDescription = 'WTD_V_TAM_FMINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_fixedminigun') - }, - ['tampa_dualminigun'] = { - id = 'VEHICLE_WEAPON_TAMPA_DUALMINIGUN', - hash = 1744687076, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TAM_DMINI', - gxtDescription = 'WTD_V_TAM_DMINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tampa_dualminigun') - }, - ['thruster_mg'] = { - id = 'VEHICLE_WEAPON_THRUSTER_MG', - hash = 1697521053, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_THR_MG', - gxtDescription = 'WTD_V_THR_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_thruster_mg') - }, - ['thruster_missile'] = { - id = 'VEHICLE_WEAPON_THRUSTER_MISSILE', - hash = 1177935125, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_THRUSTER_MISSILE', - hash = -379666311, - max = 20, - name = _(CR(), 'core', 'ammo_thruster_missile') - }, - gxtName = 'WT_V_THR_MI', - gxtDescription = 'WTD_V_THR_MI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_thruster_missile') - }, - ['trailer_quadmg'] = { - id = 'VEHICLE_WEAPON_TRAILER_QUADMG', - hash = 1192341548, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TR_QUADMG', - gxtDescription = 'WTD_V_TR_QUADMG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_trailer_quadmg') - }, - ['trailer_dualaa'] = { - id = 'VEHICLE_WEAPON_TRAILER_DUALAA', - hash = -2138288820, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_TRAILER_AA', - hash = 881918194, - max = 100, - name = _(CR(), 'core', 'ammo_trailer_aa') - }, - gxtName = 'WT_V_TR_DUALAA', - gxtDescription = 'WTD_V_TR_DUALAA', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_trailer_dualaa') - }, - ['trailer_missile'] = { - id = 'VEHICLE_WEAPON_TRAILER_MISSILE', - hash = 341154295, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_TRAILER_MISSILE', - hash = -11173636, - max = 10, - name = _(CR(), 'core', 'ammo_trailer_missile') - }, - gxtName = 'WT_V_TR_MISS', - gxtDescription = 'WTD_V_TR_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_trailer_missile') - }, - ['tula_nosemg'] = { - id = 'VEHICLE_WEAPON_TULA_NOSEMG', - hash = 1100844565, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TUL_NOSE', - gxtDescription = 'WTD_V_TUL_NOSE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_nosemg') - }, - ['tula_mg'] = { - id = 'VEHICLE_WEAPON_TULA_MG', - hash = 1217122433, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TUL_MG', - gxtDescription = 'WTD_V_TUL_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_mg') - }, - ['tula_dualmg'] = { - id = 'VEHICLE_WEAPON_TULA_DUALMG', - hash = -1328456693, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TUL_DUAL', - gxtDescription = 'WTD_V_TUL_DUAL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_dualmg') - }, - ['tula_minigun'] = { - id = 'VEHICLE_WEAPON_TULA_MINIGUN', - hash = 376489128, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TUL_MINI', - gxtDescription = 'WTD_V_TUL_MINI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tula_minigun') - }, - ['vigilante_mg'] = { - id = 'VEHICLE_WEAPON_VIGILANTE_MG', - hash = -200835353, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_VGL_MG', - gxtDescription = 'WTD_V_VGL_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_vigilante_mg') - }, - ['vigilante_missile'] = { - id = 'VEHICLE_WEAPON_VIGILANTE_MISSILE', - hash = 1347266149, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_VIGILANTE_MISSILE', - hash = 1507289724, - max = 20, - name = _(CR(), 'core', 'ammo_vigilante_missile') - }, - gxtName = 'WT_V_VGL_MISS', - gxtDescription = 'WTD_V_VGL_MISS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_vigilante_missile') - }, - ['bomb_standard_wide'] = { - id = 'VEHICLE_WEAPON_BOMB_STANDARD_WIDE', - hash = 1856325840, - clipSize = 1, - category = 'thrown', - model = 'w_smug_bomb_01', - ammo = { - id = 'AMMO_VEHICLEBOMB_WIDE', - hash = -117387562, - max = 1, - name = _(CR(), 'core', 'ammo_vehiclebomb_wide') - }, - gxtName = 'WT_VEHBOMB', - gxtDescription = 'WTD_VEHBOMB', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_bomb_standard_wide') - }, - ['volatol_dualmg'] = { - id = 'VEHICLE_WEAPON_VOLATOL_DUALMG', - hash = 1150790720, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_VOL_MG', - gxtDescription = 'WTD_V_VOL_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_volatol_dualmg') - }, - ['comet_mg'] = { - id = 'VEHICLE_WEAPON_COMET_MG', - hash = -358074893, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_comet_mg') - }, - ['revolter_mg'] = { - id = 'VEHICLE_WEAPON_REVOLTER_MG', - hash = -1117887894, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_revolter_mg') - }, - ['savestra_mg'] = { - id = 'VEHICLE_WEAPON_SAVESTRA_MG', - hash = -348002226, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_savestra_mg') - }, - ['viseris_mg'] = { - id = 'VEHICLE_WEAPON_VISERIS_MG', - hash = -2019545594, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_viseris_mg') - }, - ['impaler2_50cal'] = { - id = 'VEHICLE_WEAPON_IMPALER2_50CAL', - hash = 1599495177, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_impaler2_50cal') - }, - ['impaler3_50cal_laser'] = { - id = 'VEHICLE_WEAPON_IMPALER3_50CAL_LASER', - hash = -1933706104, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_impaler3_50cal_laser') - }, - ['imperator_50cal'] = { - id = 'VEHICLE_WEAPON_IMPERATOR_50CAL', - hash = -1235040645, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_imperator_50cal') - }, - ['imperator2_50cal_laser'] = { - id = 'VEHICLE_WEAPON_IMPERATOR2_50CAL_LASER', - hash = 2014823718, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_imperator2_50cal_laser') - }, - ['dominator4_50cal'] = { - id = 'VEHICLE_WEAPON_DOMINATOR4_50CAL', - hash = -133391601, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dominator4_50cal') - }, - ['dominator5_50cal_laser'] = { - id = 'VEHICLE_WEAPON_DOMINATOR5_50CAL_LASER', - hash = -1272681889, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_dominator5_50cal_laser') - }, - ['slamvan4_50cal'] = { - id = 'VEHICLE_WEAPON_SLAMVAN4_50CAL', - hash = 984313451, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_slamvan4_50cal') - }, - ['slamvan5_50cal_laser'] = { - id = 'VEHICLE_WEAPON_SLAMVAN5_50CAL_LASER', - hash = 1368736686, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_slamvan5_50cal_laser') - }, - ['brutus_50cal'] = { - id = 'VEHICLE_WEAPON_BRUTUS_50CAL', - hash = -346137590, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_1', - gxtDescription = 'WTD_V_MG50_1', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_brutus_50cal') - }, - ['brutus2_50cal_laser'] = { - id = 'VEHICLE_WEAPON_BRUTUS2_50CAL_LASER', - hash = 1757914307, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_1L', - gxtDescription = 'WTD_V_MG50_1L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_brutus2_50cal_laser') - }, - ['zr380_50cal'] = { - id = 'VEHICLE_WEAPON_ZR380_50CAL', - hash = 1790524546, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2', - gxtDescription = 'WTD_V_MG50_2', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_zr380_50cal') - }, - ['zr3802_50cal_laser'] = { - id = 'VEHICLE_WEAPON_ZR3802_50CAL_LASER', - hash = 570463164, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_MG50_2L', - gxtDescription = 'WTD_V_MG50_2L', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_zr3802_50cal_laser') - }, - ['jb700_mg'] = { - id = 'VEHICLE_WEAPON_JB700_MG', - hash = 926602556, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_COM_MG', - gxtDescription = 'WTD_V_COM_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_jb700_mg') - }, - ['rctank_gun'] = { - id = 'VEHICLE_WEAPON_RCTANK_GUN', - hash = 1392289305, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_RCT_MG', - gxtDescription = 'WTD_V_RCT_MG', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_gun') - }, - ['rctank_flame'] = { - id = 'VEHICLE_WEAPON_RCTANK_FLAME', - hash = -185710198, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_RCT_FL', - gxtDescription = 'WTD_V_RCT_FL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_flame') - }, - ['rctank_rocket'] = { - id = 'VEHICLE_WEAPON_RCTANK_ROCKET', - hash = 1995916491, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_RCTANK_ROCKET', - hash = -1585454291, - max = 20, - name = _(CR(), 'core', 'ammo_rctank_rocket') - }, - gxtName = 'WT_V_RCT_RK', - gxtDescription = 'WTD_V_RCT_RK', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_rocket') - }, - ['rctank_lazer'] = { - id = 'VEHICLE_WEAPON_RCTANK_LAZER', - hash = 1475488848, - clipSize = 15000, - category = 'heavy', - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_RCT_LZ', - gxtDescription = 'WTD_V_RCT_LZ', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rctank_lazer') - }, - ['air_defence_gun'] = { - id = 'WEAPON_AIR_DEFENCE_GUN', - hash = 738733437, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_air_defence_gun') - }, - ['autoshotgun'] = { - id = 'WEAPON_AUTOSHOTGUN', - hash = 317205821, - clipSize = 10, - category = 'shotgun', - model = 'w_sg_sweeper', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_AUTOSHGN', - gxtDescription = 'WTD_AUTOSHGN', - components = { - { - id = 'COMPONENT_AUTOSHOTGUN_CLIP_01', - hash = 169463950, - model = 'w_sg_sweeper_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = '', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_autoshotgun') - }, - ['battleaxe'] = { - id = 'WEAPON_BATTLEAXE', - hash = -853065399, - clipSize = 0, - category = 'melee', - model = 'w_me_battleaxe', - ammo = nil, - gxtName = 'WT_BATTLEAXE', - gxtDescription = 'WTD_BATTLEAXE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_battleaxe') - }, - ['bottle'] = { - id = 'WEAPON_BOTTLE', - hash = -102323637, - clipSize = 0, - category = 'melee', - model = 'w_me_bottle', - ammo = nil, - gxtName = 'WT_BOTTLE', - gxtDescription = 'WTD_BOTTLE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bottle') - }, - ['bullpuprifle'] = { - id = 'WEAPON_BULLPUPRIFLE', - hash = 2132975508, - clipSize = 30, - category = 'rifle', - model = 'w_ar_bullpuprifle', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_BULLRIFLE', - gxtDescription = 'WTD_BULLRIFLE', - components = { - { - id = 'COMPONENT_BULLPUPRIFLE_CLIP_01', - hash = -979292288, - model = 'w_ar_bullpuprifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_BRIF_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_BULLPUPRIFLE_CLIP_02', - hash = -1284994289, - model = 'w_ar_bullpuprifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_BRIF_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_bullpuprifle') - }, - ['cannon_blazer'] = { - id = 'VEHICLE_WEAPON_CANNON_BLAZER', - hash = -335937730, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_cannon_blazer') - }, - ['combatpdw'] = { - id = 'WEAPON_COMBATPDW', - hash = 171789620, - clipSize = 30, - category = 'smg', - model = 'W_SB_PDW', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_COMBATPDW', - gxtDescription = 'WTD_COMBATPDW', - components = { - { - id = 'COMPONENT_COMBATPDW_CLIP_01', - hash = 1125642654, - model = 'W_SB_PDW_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_PDW_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_COMBATPDW_CLIP_02', - hash = 860508675, - model = 'W_SB_PDW_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_PDW_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_combatpdw') - }, - ['compactlauncher'] = { - id = 'WEAPON_COMPACTLAUNCHER', - hash = 125959754, - clipSize = 1, - category = 'heavy', - model = 'w_lr_compactgl', - ammo = { - id = 'AMMO_GRENADELAUNCHER', - hash = 1003267566, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher') - }, - gxtName = 'WT_CMPGL', - gxtDescription = 'WTD_CMPGL', - components = { - { - id = 'COMPONENT_COMPACTLAUNCHER_CLIP_01', - hash = 1235472140, - model = 'w_lr_compactgl_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = '', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_compactlauncher') - }, - ['compactrifle'] = { - id = 'WEAPON_COMPACTRIFLE', - hash = 1649403952, - clipSize = 30, - category = 'rifle', - model = 'w_ar_assaultrifle_smg', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_CMPRIFLE', - gxtDescription = 'WTD_CMPRIFLE', - components = { - { - id = 'COMPONENT_COMPACTRIFLE_CLIP_01', - hash = 1363085923, - model = 'w_ar_assaultrifle_smg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CMPR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_COMPACTRIFLE_CLIP_02', - hash = 1509923832, - model = 'w_ar_assaultrifle_smg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CMPR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_compactrifle') - }, - ['dagger'] = { - id = 'WEAPON_DAGGER', - hash = -1834847097, - clipSize = 0, - category = 'melee', - model = 'w_me_dagger', - ammo = nil, - gxtName = 'WT_DAGGER', - gxtDescription = 'WTD_DAGGER', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_dagger') - }, - ['dbshotgun'] = { - id = 'WEAPON_DBSHOTGUN', - hash = -275439685, - clipSize = 2, - category = 'shotgun', - model = 'w_sg_doublebarrel', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_DBSHGN', - gxtDescription = 'WTD_DBSHGN', - components = { - { - id = 'COMPONENT_DBSHOTGUN_CLIP_01', - hash = 703231006, - model = 'w_sg_doublebarrel_mag1', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_dbshotgun') - }, - ['firework'] = { - id = 'WEAPON_FIREWORK', - hash = 2138347493, - clipSize = 1, - category = 'heavy', - model = 'w_lr_firework', - ammo = { - id = 'AMMO_FIREWORK', - hash = -1356599793, - max = 20, - name = _(CR(), 'core', 'ammo_firework') - }, - gxtName = 'WT_FIREWRK', - gxtDescription = 'WTD_FIREWRK', - components = { - { - id = 'COMPONENT_FIREWORK_CLIP_01', - hash = -454770035, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_firework') - }, - ['flaregun'] = { - id = 'WEAPON_FLAREGUN', - hash = 1198879012, - clipSize = 1, - category = 'pistol', - model = 'w_pi_flaregun', - ammo = { - id = 'AMMO_FLAREGUN', - hash = 1173416293, - max = 20, - name = _(CR(), 'core', 'ammo_flaregun') - }, - gxtName = 'WT_FLAREGUN', - gxtDescription = 'WTD_FLAREGUN', - components = { - { - id = 'COMPONENT_FLAREGUN_CLIP_01', - hash = -1813398119, - model = 'w_pi_flaregun_mag1', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCT_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_flaregun') - }, - ['flashlight'] = { - id = 'WEAPON_FLASHLIGHT', - hash = -1951375401, - clipSize = 0, - category = 'melee', - model = 'w_me_flashlight', - ammo = nil, - gxtName = 'WT_FLASHLIGHT', - gxtDescription = 'WTD_FLASHLIGHT', - components = { - { - id = 'COMPONENT_FLASHLIGHT_LIGHT', - hash = -575194865, - model = 'w_me_flashlight_flash', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_flashlight') - }, - ['garbagebag'] = { - id = 'WEAPON_GARBAGEBAG', - hash = -499989876, - clipSize = 0, - category = 'melee', - model = nil, - ammo = nil, - gxtName = 'WT_KNIFE', - gxtDescription = 'WTD_KNIFE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_garbagebag') - }, - ['gusenberg'] = { - id = 'WEAPON_GUSENBERG', - hash = 1627465347, - clipSize = 30, - category = 'mg', - model = 'w_sb_gusenberg', - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_GUSNBRG', - gxtDescription = 'WTD_GUSNBRG', - components = { - { - id = 'COMPONENT_GUSENBERG_CLIP_01', - hash = 484812453, - model = 'w_sb_gusenberg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_GSNB_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_GUSENBERG_CLIP_02', - hash = -355941776, - model = 'w_sb_gusenberg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_GSNB_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_gusenberg') - }, - ['handcuffs'] = { - id = 'WEAPON_HANDCUFFS', - hash = -800287667, - clipSize = 0, - category = 'melee', - model = nil, - ammo = nil, - gxtName = 'WT_KNIFE', - gxtDescription = 'WTD_KNIFE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_handcuffs') - }, - ['hatchet'] = { - id = 'WEAPON_HATCHET', - hash = -102973651, - clipSize = 0, - category = 'melee', - model = 'w_me_hatchet', - ammo = nil, - gxtName = 'WT_HATCHET', - gxtDescription = 'WTD_HATCHET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hatchet') - }, - ['heavypistol'] = { - id = 'WEAPON_HEAVYPISTOL', - hash = -771403250, - clipSize = 18, - category = 'pistol', - model = 'w_pi_heavypistol', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_HVYPISTOL', - gxtDescription = 'WTD_HVYPISTOL', - components = { - { - id = 'COMPONENT_HEAVYPISTOL_CLIP_01', - hash = 222992026, - model = 'w_pi_heavypistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HPST_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_HEAVYPISTOL_CLIP_02', - hash = 1694090795, - model = 'w_pi_heavypistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_HPST_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_heavypistol') - }, - ['heavyshotgun'] = { - id = 'WEAPON_HEAVYSHOTGUN', - hash = 984333226, - clipSize = 6, - category = 'shotgun', - model = 'w_sg_heavyshotgun', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_HVYSHGN', - gxtDescription = 'WTD_HVYSHGN', - components = { - { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_01', - hash = 844049759, - model = 'w_sg_heavyshotgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HVSG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_HEAVYSHOTGUN_CLIP_02', - hash = -1759709443, - model = 'w_sg_heavyshotgun_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_HVSG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_heavyshotgun') - }, - ['hominglauncher'] = { - id = 'WEAPON_HOMINGLAUNCHER', - hash = 1672152130, - clipSize = 1, - category = 'heavy', - model = 'w_lr_homing', - ammo = { - id = 'AMMO_HOMINGLAUNCHER', - hash = -1726673363, - max = 10, - name = _(CR(), 'core', 'ammo_hominglauncher') - }, - gxtName = 'WT_HOMLNCH', - gxtDescription = 'WTD_HOMLNCH', - components = { - { - id = 'COMPONENT_HOMINGLAUNCHER_CLIP_01', - hash = -132960961, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_hominglauncher') - }, - ['knuckle'] = { - id = 'WEAPON_KNUCKLE', - hash = -656458692, - clipSize = 0, - category = 'unarmed', - model = 'W_ME_Knuckle', - ammo = nil, - gxtName = 'WT_KNUCKLE', - gxtDescription = 'WTD_KNUCKLE', - components = { - { - id = 'COMPONENT_KNUCKLE_VARMOD_BASE', - hash = -213504205, - model = 'W_ME_Knuckle', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_PIMP', - hash = -971770235, - model = 'W_ME_Knuckle_02', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_BALLAS', - hash = -287703709, - model = 'W_ME_Knuckle_BG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_DOLLAR', - hash = 1351683121, - model = 'W_ME_Knuckle_DLR', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_DIAMOND', - hash = -1755194916, - model = 'W_ME_Knuckle_DMD', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_HATE', - hash = 2112683568, - model = 'W_ME_Knuckle_HT', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_LOVE', - hash = 1062111910, - model = 'W_ME_Knuckle_LV', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_PLAYER', - hash = 146278587, - model = 'W_ME_Knuckle_PC', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_KING', - hash = -494162961, - model = 'W_ME_Knuckle_SLG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_KNUCKLE_VARMOD_VAGOS', - hash = 2062808965, - model = 'W_ME_Knuckle_VG', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 10, - name = _(CR(), 'core', 'weapon_knuckle') - }, - ['machete'] = { - id = 'WEAPON_MACHETE', - hash = -581044007, - clipSize = 0, - category = 'melee', - model = 'w_me_machette_lr', - ammo = nil, - gxtName = 'WT_MACHETE', - gxtDescription = 'WTD_MACHETE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_machete') - }, - ['machinepistol'] = { - id = 'WEAPON_MACHINEPISTOL', - hash = -619010992, - clipSize = 12, - category = 'smg', - model = 'w_sb_compactsmg', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_MCHPIST', - gxtDescription = 'WTD_MCHPIST', - components = { - { - id = 'COMPONENT_MACHINEPISTOL_CLIP_01', - hash = 1198425599, - model = 'w_sb_compactsmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MCHP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_MACHINEPISTOL_CLIP_02', - hash = -1188271751, - model = 'w_sb_compactsmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MCHP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_machinepistol') - }, - ['marksmanpistol'] = { - id = 'WEAPON_MARKSMANPISTOL', - hash = -598887786, - clipSize = 1, - category = 'pistol', - model = 'W_PI_SingleShot', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_MKPISTOL', - gxtDescription = 'WTD_MKPISTOL', - components = { - { - id = 'COMPONENT_MARKSMANPISTOL_CLIP_01', - hash = -878820883, - model = 'W_PI_SingleShot_Shell', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_marksmanpistol') - }, - ['marksmanrifle'] = { - id = 'WEAPON_MARKSMANRIFLE', - hash = -952879014, - clipSize = 8, - category = 'sniper', - model = 'w_sr_marksmanrifle', - ammo = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - gxtName = 'WT_MKRIFLE', - gxtDescription = 'WTD_MKRIFLE', - components = { - { - id = 'COMPONENT_MARKSMANRIFLE_CLIP_01', - hash = -667205311, - model = 'w_sr_marksmanrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MKRF_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_MARKSMANRIFLE_CLIP_02', - hash = -855823675, - model = 'w_sr_marksmanrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MKRF_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM', - hash = 471997210, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRF', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = true - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_marksmanrifle') - }, - ['minismg'] = { - id = 'WEAPON_MINISMG', - hash = -1121678507, - clipSize = 20, - category = 'smg', - model = 'w_sb_minismg', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_MINISMG', - gxtDescription = 'WTD_MINISMG', - components = { - { - id = 'COMPONENT_MINISMG_CLIP_01', - hash = -2067221805, - model = 'w_sb_minismg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SCRP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_MINISMG_CLIP_02', - hash = -1820405577, - model = 'w_sb_minismg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SCRP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_minismg') - }, - ['musket'] = { - id = 'WEAPON_MUSKET', - hash = -1466123874, - clipSize = 1, - category = 'sniper', - model = 'w_ar_musket', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_MUSKET', - gxtDescription = 'WTD_MUSKET', - components = { - { - id = 'COMPONENT_MUSKET_CLIP_01', - hash = 1322387263, - model = 'P_CS_Joint_02', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_musket') - }, - ['pipebomb'] = { - id = 'WEAPON_PIPEBOMB', - hash = -1169823560, - clipSize = 1, - category = 'thrown', - model = 'w_ex_pipebomb', - ammo = { - id = 'AMMO_PIPEBOMB', - hash = 357983224, - max = 10, - name = _(CR(), 'core', 'ammo_pipebomb') - }, - gxtName = 'WT_PIPEBOMB', - gxtDescription = 'WTD_PIPEBOMB', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_pipebomb') - }, - ['poolcue'] = { - id = 'WEAPON_POOLCUE', - hash = -1810795771, - clipSize = 0, - category = 'melee', - model = 'w_me_poolcue', - ammo = nil, - gxtName = 'WT_POOLCUE', - gxtDescription = 'WTD_POOLCUE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_poolcue') - }, - ['proxmine'] = { - id = 'WEAPON_PROXMINE', - hash = -1420407917, - clipSize = 1, - category = 'thrown', - model = 'w_ex_apmine', - ammo = { - id = 'AMMO_PROXMINE', - hash = -1356724057, - max = 5, - name = _(CR(), 'core', 'ammo_proxmine') - }, - gxtName = 'WT_PRXMINE', - gxtDescription = 'WTD_PRXMINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_proxmine') - }, - ['railgun'] = { - id = 'WEAPON_RAILGUN', - hash = 1834241177, - clipSize = 1, - category = 'heavy', - model = 'w_ar_railgun', - ammo = { - id = 'AMMO_RAILGUN', - hash = 2034517757, - max = 20, - name = _(CR(), 'core', 'ammo_railgun') - }, - gxtName = 'WT_RAILGUN', - gxtDescription = 'WTD_RAILGUN', - components = { - { - id = 'COMPONENT_RAILGUN_CLIP_01', - hash = 59044840, - model = 'w_ar_railgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_RLGN_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_railgun') - }, - ['revolver'] = { - id = 'WEAPON_REVOLVER', - hash = -1045183535, - clipSize = 6, - category = 'pistol', - model = 'w_pi_revolver', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_REVOLVER', - gxtDescription = 'WTD_REVOLVER', - components = { - { - id = 'COMPONENT_REVOLVER_CLIP_01', - hash = -377062173, - model = 'w_pi_revolver_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_REVOLVER_VARMOD_BOSS', - hash = 384708672, - model = 'w_pi_revolver_b', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_REVOLVER_VARMOD_GOON', - hash = -1802258419, - model = 'w_pi_revolver_g', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_revolver') - }, - ['unarmed'] = { - id = 'WEAPON_UNARMED', - hash = -1569615261, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_UNARMED', - gxtDescription = 'WTD_UNARMED', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_unarmed') - }, - ['animal'] = { - id = 'WEAPON_ANIMAL', - hash = -100946242, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_animal') - }, - ['cougar'] = { - id = 'WEAPON_COUGAR', - hash = 148160082, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_cougar') - }, - ['knife'] = { - id = 'WEAPON_KNIFE', - hash = -1716189206, - clipSize = 0, - category = 'melee', - model = 'w_me_knife_01', - ammo = nil, - gxtName = 'WT_KNIFE', - gxtDescription = 'WTD_KNIFE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_knife') - }, - ['nightstick'] = { - id = 'WEAPON_NIGHTSTICK', - hash = 1737195953, - clipSize = 0, - category = 'melee', - model = 'w_me_nightstick', - ammo = nil, - gxtName = 'WT_NGTSTK', - gxtDescription = 'WTD_NGTSTK', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_nightstick') - }, - ['hammer'] = { - id = 'WEAPON_HAMMER', - hash = 1317494643, - clipSize = 0, - category = 'melee', - model = 'w_me_hammer', - ammo = nil, - gxtName = 'WT_HAMMER', - gxtDescription = 'WTD_HAMMER', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hammer') - }, - ['bat'] = { - id = 'WEAPON_BAT', - hash = -1786099057, - clipSize = 0, - category = 'melee', - model = 'w_me_bat', - ammo = nil, - gxtName = 'WT_BAT', - gxtDescription = 'WTD_BAT', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bat') - }, - ['golfclub'] = { - id = 'WEAPON_GOLFCLUB', - hash = 1141786504, - clipSize = 0, - category = 'melee', - model = 'w_me_gclub', - ammo = nil, - gxtName = 'WT_GOLFCLUB', - gxtDescription = 'WTD_GOLFCLUB', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_golfclub') - }, - ['crowbar'] = { - id = 'WEAPON_CROWBAR', - hash = -2067956739, - clipSize = 0, - category = 'melee', - model = 'w_me_crowbar', - ammo = nil, - gxtName = 'WT_CROWBAR', - gxtDescription = 'WTD_CROWBAR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_crowbar') - }, - ['pistol'] = { - id = 'WEAPON_PISTOL', - hash = 453432689, - clipSize = 12, - category = 'pistol', - model = 'W_PI_PISTOL', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_PIST', - gxtDescription = 'WTD_PIST', - components = { - { - id = 'COMPONENT_PISTOL_CLIP_01', - hash = -19858063, - model = 'w_pi_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_PISTOL_CLIP_02', - hash = -316253668, - model = 'w_pi_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP_02', - hash = 1709866683, - model = 'w_at_pi_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_PISTOL_VARMOD_LUXE', - hash = -684126074, - model = 'W_PI_Pistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_pistol') - }, - ['combatpistol'] = { - id = 'WEAPON_COMBATPISTOL', - hash = 1593441988, - clipSize = 12, - category = 'pistol', - model = 'W_PI_COMBATPISTOL', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_PIST_CBT', - gxtDescription = 'WTD_PIST_CBT', - components = { - { - id = 'COMPONENT_COMBATPISTOL_CLIP_01', - hash = 119648377, - model = 'w_pi_combatpistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_COMBATPISTOL_CLIP_02', - hash = -696561875, - model = 'w_pi_combatpistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_COMBATPISTOL_VARMOD_LOWRIDER', - hash = -966439566, - model = 'w_pi_combatpistol_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_combatpistol') - }, - ['appistol'] = { - id = 'WEAPON_APPISTOL', - hash = 584646201, - clipSize = 18, - category = 'pistol', - model = 'W_PI_APPISTOL', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_PIST_AP', - gxtDescription = 'WTD_PIST_AP', - components = { - { - id = 'COMPONENT_APPISTOL_CLIP_01', - hash = 834974250, - model = 'w_pi_appistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_APPISTOL_CLIP_02', - hash = 614078421, - model = 'w_pi_appistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_APPISTOL_VARMOD_LUXE', - hash = -1686714580, - model = 'W_PI_APPistol_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_appistol') - }, - ['pistol50'] = { - id = 'WEAPON_PISTOL50', - hash = -1716589765, - clipSize = 9, - category = 'pistol', - model = 'W_PI_PISTOL50', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_PIST_50', - gxtDescription = 'WTD_PIST_50', - components = { - { - id = 'COMPONENT_PISTOL50_CLIP_01', - hash = 580369945, - model = 'W_PI_PISTOL50_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P50_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_PISTOL50_CLIP_02', - hash = -640439150, - model = 'W_PI_PISTOL50_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P50_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_PISTOL50_VARMOD_LUXE', - hash = 2008591151, - model = 'W_PI_Pistol50_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_pistol50') - }, - ['microsmg'] = { - id = 'WEAPON_MICROSMG', - hash = 324215364, - clipSize = 16, - category = 'smg', - model = 'w_sb_microsmg', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_SMG_MCR', - gxtDescription = 'WTD_SMG_MCR', - components = { - { - id = 'COMPONENT_MICROSMG_CLIP_01', - hash = -884429072, - model = 'w_sb_microsmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCDMSMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_MICROSMG_CLIP_02', - hash = 283556395, - model = 'w_sb_microsmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCDMSMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO', - hash = -1657815255, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_MICROSMG_VARMOD_LUXE', - hash = 1215999497, - model = 'W_SB_MicroSMG_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_microsmg') - }, - ['smg'] = { - id = 'WEAPON_SMG', - hash = 736523883, - clipSize = 30, - category = 'smg', - model = 'w_sb_smg', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_SMG', - gxtDescription = 'WTD_SMG', - components = { - { - id = 'COMPONENT_SMG_CLIP_01', - hash = 643254679, - model = 'w_sb_smg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SMG_CLIP_02', - hash = 889808635, - model = 'w_sb_smg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SMG_CLIP_03', - hash = 2043113590, - model = 'w_sb_smg_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_02', - hash = 1019656791, - model = 'w_at_scope_macro_2', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_SMG_VARMOD_LUXE', - hash = 663170192, - model = 'W_SB_SMG_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 8, - name = _(CR(), 'core', 'weapon_smg') - }, - ['assaultsmg'] = { - id = 'WEAPON_ASSAULTSMG', - hash = -270015777, - clipSize = 30, - category = 'smg', - model = 'w_sb_assaultsmg', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_SMG_ASL', - gxtDescription = 'WTD_SMG_ASL', - components = { - { - id = 'COMPONENT_ASSAULTSMG_CLIP_01', - hash = -1928132688, - model = 'W_SB_ASSAULTSMG_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_ASSAULTSMG_CLIP_02', - hash = -1152981993, - model = 'W_SB_ASSAULTSMG_Mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO', - hash = -1657815255, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_ASSAULTSMG_VARMOD_LOWRIDER', - hash = 663517359, - model = 'w_sb_assaultsmg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_assaultsmg') - }, - ['assaultrifle'] = { - id = 'WEAPON_ASSAULTRIFLE', - hash = -1074790547, - clipSize = 30, - category = 'rifle', - model = 'W_AR_ASSAULTRIFLE', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_RIFLE_ASL', - gxtDescription = 'WTD_RIFLE_ASL', - components = { - { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_01', - hash = -1101075946, - model = 'w_ar_assaultrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_02', - hash = -1323216997, - model = 'w_ar_assaultrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_CLIP_03', - hash = -604986051, - model = 'w_ar_assaultrifle_boxmag', - gxtName = 'WCT_CLIP_DRM', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO', - hash = -1657815255, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_VARMOD_LUXE', - hash = 1319990579, - model = 'W_AR_AssaultRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 9, - name = _(CR(), 'core', 'weapon_assaultrifle') - }, - ['carbinerifle'] = { - id = 'WEAPON_CARBINERIFLE', - hash = -2084633992, - clipSize = 30, - category = 'rifle', - model = 'W_AR_CARBINERIFLE', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_RIFLE_CBN', - gxtDescription = 'WTD_RIFLE_CBN', - components = { - { - id = 'COMPONENT_CARBINERIFLE_CLIP_01', - hash = -1614924820, - model = 'w_ar_carbinerifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_CARBINERIFLE_CLIP_02', - hash = -1861183855, - model = 'w_ar_carbinerifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_CLIP_03', - hash = -1167922891, - model = 'w_ar_carbinerifle_boxmag', - gxtName = 'WCT_CLIP_BOX', - gxtDescription = 'WCD_CLIP3', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_RAILCOVER_01', - hash = 1967214384, - model = 'w_at_railcover_01', - gxtName = 'WCT_RAIL', - gxtDescription = 'WCD_AT_RAIL', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM', - hash = -1596416958, - model = 'w_at_scope_medium', - gxtName = 'WCT_SCOPE_MED', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_VARMOD_LUXE', - hash = -660892072, - model = 'W_AR_CarbineRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 10, - name = _(CR(), 'core', 'weapon_carbinerifle') - }, - ['advancedrifle'] = { - id = 'WEAPON_ADVANCEDRIFLE', - hash = -1357824103, - clipSize = 30, - category = 'rifle', - model = 'W_AR_ADVANCEDRIFLE', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_RIFLE_ADV', - gxtDescription = 'WTD_RIFLE_ADV', - components = { - { - id = 'COMPONENT_ADVANCEDRIFLE_CLIP_01', - hash = -91250417, - model = 'w_ar_advancedrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_ADVANCEDRIFLE_CLIP_02', - hash = -1899902599, - model = 'w_ar_advancedrifle_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AR_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_ADVANCEDRIFLE_VARMOD_LUXE', - hash = 930927479, - model = 'W_AR_AdvancedRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_advancedrifle') - }, - ['mg'] = { - id = 'WEAPON_MG', - hash = -1660422300, - clipSize = 54, - category = 'mg', - model = 'w_mg_mg', - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_MG', - gxtDescription = 'WTD_MG', - components = { - { - id = 'COMPONENT_MG_CLIP_01', - hash = -197857404, - model = 'w_mg_mg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_MG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_MG_CLIP_02', - hash = -2112517305, - model = 'w_mg_mg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_MG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL_02', - hash = 1006677997, - model = 'w_at_scope_small_2', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_MG_VARMOD_LOWRIDER', - hash = -690308418, - model = 'w_mg_mg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_mg') - }, - ['combatmg'] = { - id = 'WEAPON_COMBATMG', - hash = 2144741730, - clipSize = 100, - category = 'mg', - model = 'w_mg_combatmg', - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_MG_CBT', - gxtDescription = 'WTD_MG_CBT', - components = { - { - id = 'COMPONENT_COMBATMG_CLIP_01', - hash = -503336118, - model = 'w_mg_combatmg_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCDCMG_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_COMBATMG_CLIP_02', - hash = -691692330, - model = 'w_mg_combatmg_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCDCMG_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM', - hash = -1596416958, - model = 'w_at_scope_medium', - gxtName = 'WCT_SCOPE_MED', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_VARMOD_LOWRIDER', - hash = -1828795171, - model = 'w_mg_combatmg_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_combatmg') - }, - ['pumpshotgun'] = { - id = 'WEAPON_PUMPSHOTGUN', - hash = 487013001, - clipSize = 8, - category = 'shotgun', - model = 'w_sg_pumpshotgun', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_SG_PMP', - gxtDescription = 'WTD_SG_PMP', - components = { - { - id = 'COMPONENT_PUMPSHOTGUN_CLIP_01', - hash = -781249480, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SR_SUPP', - hash = -435637410, - model = 'w_at_sr_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_VARMOD_LOWRIDER', - hash = -1562927653, - model = 'w_sg_pumpshotgun_luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_pumpshotgun') - }, - ['sawnoffshotgun'] = { - id = 'WEAPON_SAWNOFFSHOTGUN', - hash = 2017895192, - clipSize = 8, - category = 'shotgun', - model = 'w_sg_sawnoff', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_SG_SOF', - gxtDescription = 'WTD_SG_SOF', - components = { - { - id = 'COMPONENT_SAWNOFFSHOTGUN_CLIP_01', - hash = -942267867, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SAWNOFFSHOTGUN_VARMOD_LUXE', - hash = -2052698631, - model = 'W_SG_Sawnoff_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_sawnoffshotgun') - }, - ['assaultshotgun'] = { - id = 'WEAPON_ASSAULTSHOTGUN', - hash = -494615257, - clipSize = 8, - category = 'shotgun', - model = 'w_sg_assaultshotgun', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_SG_ASL', - gxtDescription = 'WTD_SG_ASL', - components = { - { - id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_01', - hash = -1796727865, - model = 'w_sg_assaultshotgun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_AS_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_ASSAULTSHOTGUN_CLIP_02', - hash = -2034401422, - model = 'w_sg_assaultshotgun_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_AS_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_assaultshotgun') - }, - ['bullpupshotgun'] = { - id = 'WEAPON_BULLPUPSHOTGUN', - hash = -1654528753, - clipSize = 14, - category = 'shotgun', - model = 'w_sg_bullpupshotgun', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_SG_BLP', - gxtDescription = 'WTD_SG_BLP', - components = { - { - id = 'COMPONENT_BULLPUPSHOTGUN_CLIP_01', - hash = -917613298, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_bullpupshotgun') - }, - ['stungun'] = { - id = 'WEAPON_STUNGUN', - hash = 911657153, - clipSize = 2104529083, - category = 'stungun', - model = 'w_pi_stungun', - ammo = { - id = 'AMMO_STUNGUN', - hash = -1339118112, - max = 250, - name = _(CR(), 'core', 'ammo_stungun') - }, - gxtName = 'WT_STUN', - gxtDescription = 'WTD_STUN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_stungun') - }, - ['sniperrifle'] = { - id = 'WEAPON_SNIPERRIFLE', - hash = 100416529, - clipSize = 10, - category = 'sniper', - model = 'w_sr_sniperrifle', - ammo = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - gxtName = 'WT_SNIP_RIF', - gxtDescription = 'WTD_SNIP_RIF', - components = { - { - id = 'COMPONENT_SNIPERRIFLE_CLIP_01', - hash = -1681506167, - model = 'w_sr_sniperrifle_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SR_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_LARGE', - hash = -767279652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = true - }, - { - id = 'COMPONENT_AT_SCOPE_MAX', - hash = -1135289737, - model = 'w_at_scope_max', - gxtName = 'WCT_SCOPE_MAX', - gxtDescription = 'WCD_SCOPE_MAX', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_SNIPERRIFLE_VARMOD_LUXE', - hash = 1077065191, - model = 'W_SR_SniperRifle_Luxe', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 5, - name = _(CR(), 'core', 'weapon_sniperrifle') - }, - ['heavysniper'] = { - id = 'WEAPON_HEAVYSNIPER', - hash = 205991906, - clipSize = 6, - category = 'sniper', - model = 'w_sr_heavysniper', - ammo = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - gxtName = 'WT_SNIP_HVY', - gxtDescription = 'WTD_SNIP_HVY', - components = { - { - id = 'COMPONENT_HEAVYSNIPER_CLIP_01', - hash = 1198478068, - model = 'w_sr_heavysniper_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_HS_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_AT_SCOPE_LARGE', - hash = -767279652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MAX', - hash = -1135289737, - model = 'w_at_scope_max', - gxtName = 'WCT_SCOPE_MAX', - gxtDescription = 'WCD_SCOPE_MAX', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = true - }, - { - id = 'COMPONENT_GUNRUN_MK2_UPGRADE', - hash = 1623028892, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_heavysniper') - }, - ['remotesniper'] = { - id = 'WEAPON_REMOTESNIPER', - hash = 856002082, - clipSize = 10, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SNIPER_REMOTE', - hash = -19235536, - max = 250, - name = _(CR(), 'core', 'ammo_sniper_remote') - }, - gxtName = 'WT_SNIP_RMT', - gxtDescription = 'WTD_SNIP_RMT', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_remotesniper') - }, - ['grenadelauncher'] = { - id = 'WEAPON_GRENADELAUNCHER', - hash = -1568386805, - clipSize = 10, - category = 'heavy', - model = 'w_lr_grenadelauncher', - ammo = { - id = 'AMMO_GRENADELAUNCHER', - hash = 1003267566, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher') - }, - gxtName = 'WT_GL', - gxtDescription = 'WTD_GL', - components = { - { - id = 'COMPONENT_GRENADELAUNCHER_CLIP_01', - hash = 296639639, - model = 'w_lr_40mm', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 4, - name = _(CR(), 'core', 'weapon_grenadelauncher') - }, - ['grenadelauncher_smoke'] = { - id = 'WEAPON_GRENADELAUNCHER_SMOKE', - hash = 1305664598, - clipSize = 10, - category = 'heavy', - model = 'w_lr_grenadelauncher', - ammo = { - id = 'AMMO_GRENADELAUNCHER_SMOKE', - hash = 826266432, - max = 20, - name = _(CR(), 'core', 'ammo_grenadelauncher_smoke') - }, - gxtName = 'WT_GL_SMOKE', - gxtDescription = 'WTD_GL_SMOKE', - components = { - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL', - hash = -1439939148, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_grenadelauncher_smoke') - }, - ['rpg'] = { - id = 'WEAPON_RPG', - hash = -1312131151, - clipSize = 1, - category = 'heavy', - model = 'w_lr_rpg', - ammo = { - id = 'AMMO_RPG', - hash = 1742569970, - max = 20, - name = _(CR(), 'core', 'ammo_rpg') - }, - gxtName = 'WT_RPG', - gxtDescription = 'WTD_RPG', - components = { - { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_rpg') - }, - ['passenger_rocket'] = { - id = 'WEAPON_PASSENGER_ROCKET', - hash = 375527679, - clipSize = 1, - category = 'heavy', - model = 'w_lr_rpg', - ammo = { - id = 'AMMO_RPG', - hash = 1742569970, - max = 20, - name = _(CR(), 'core', 'ammo_rpg') - }, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = { - { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_passenger_rocket') - }, - ['airstrike_rocket'] = { - id = 'WEAPON_AIRSTRIKE_ROCKET', - hash = 324506233, - clipSize = 1, - category = 'heavy', - model = 'w_lr_rpg', - ammo = { - id = 'AMMO_RPG', - hash = 1742569970, - max = 20, - name = _(CR(), 'core', 'ammo_rpg') - }, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = { - { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_airstrike_rocket') - }, - ['stinger'] = { - id = 'WEAPON_STINGER', - hash = 1752584910, - clipSize = 1, - category = 'heavy', - model = 'w_lr_rpg', - ammo = { - id = 'AMMO_STINGER', - hash = -1857257158, - max = 20, - name = _(CR(), 'core', 'ammo_stinger') - }, - gxtName = 'WT_RPG', - gxtDescription = 'WTD_RPG', - components = { - { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_stinger') - }, - ['minigun'] = { - id = 'WEAPON_MINIGUN', - hash = 1119849093, - clipSize = 15000, - category = 'heavy', - model = 'w_mg_minigun', - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_MINIGUN', - gxtDescription = 'WTD_MINIGUN', - components = { - { - id = 'COMPONENT_MINIGUN_CLIP_01', - hash = -924946682, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_minigun') - }, - ['grenade'] = { - id = 'WEAPON_GRENADE', - hash = -1813897027, - clipSize = 1, - category = 'thrown', - model = 'w_ex_grenadefrag', - ammo = { - id = 'AMMO_GRENADE', - hash = 1003688881, - max = 25, - name = _(CR(), 'core', 'ammo_grenade') - }, - gxtName = 'WT_GNADE', - gxtDescription = 'WTD_GNADE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_grenade') - }, - ['stickybomb'] = { - id = 'WEAPON_STICKYBOMB', - hash = 741814745, - clipSize = 1, - category = 'thrown', - model = 'w_ex_pe', - ammo = { - id = 'AMMO_STICKYBOMB', - hash = 1411692055, - max = 25, - name = _(CR(), 'core', 'ammo_stickybomb') - }, - gxtName = 'WT_GNADE_STK', - gxtDescription = 'WTD_GNADE_STK', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_stickybomb') - }, - ['smokegrenade'] = { - id = 'WEAPON_SMOKEGRENADE', - hash = -37975472, - clipSize = 1, - category = 'thrown', - model = 'w_ex_grenadesmoke', - ammo = { - id = 'AMMO_SMOKEGRENADE', - hash = -435287898, - max = 25, - name = _(CR(), 'core', 'ammo_smokegrenade') - }, - gxtName = 'WT_GNADE_SMK', - gxtDescription = 'WTD_GNADE_SMK', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_smokegrenade') - }, - ['bzgas'] = { - id = 'WEAPON_BZGAS', - hash = -1600701090, - clipSize = 1, - category = 'thrown', - model = 'w_ex_grenadesmoke', - ammo = { - id = 'AMMO_BZGAS', - hash = -1686864220, - max = 25, - name = _(CR(), 'core', 'ammo_bzgas') - }, - gxtName = 'WT_BZGAS', - gxtDescription = 'WTD_BZGAS', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bzgas') - }, - ['molotov'] = { - id = 'WEAPON_MOLOTOV', - hash = 615608432, - clipSize = 1, - category = 'thrown', - model = 'w_ex_molotov', - ammo = { - id = 'AMMO_MOLOTOV', - hash = 1446246869, - max = 25, - name = _(CR(), 'core', 'ammo_molotov') - }, - gxtName = 'WT_MOLOTOV', - gxtDescription = 'WTD_MOLOTOV', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_molotov') - }, - ['fireextinguisher'] = { - id = 'WEAPON_FIREEXTINGUISHER', - hash = 101631238, - clipSize = 2000, - category = 'fireextinguisher', - model = 'w_am_fire_exting', - ammo = { - id = 'AMMO_FIREEXTINGUISHER', - hash = 1359393852, - max = 2000, - name = _(CR(), 'core', 'ammo_fireextinguisher') - }, - gxtName = 'WT_FIRE', - gxtDescription = 'WTD_FIRE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_fireextinguisher') - }, - ['petrolcan'] = { - id = 'WEAPON_PETROLCAN', - hash = 883325847, - clipSize = 4500, - category = 'petrolcan', - model = 'w_am_jerrycan', - ammo = { - id = 'AMMO_PETROLCAN', - hash = -899475295, - max = 4500, - name = _(CR(), 'core', 'ammo_petrolcan') - }, - gxtName = 'WT_PETROL', - gxtDescription = 'WTD_PETROL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_petrolcan') - }, - ['digiscanner'] = { - id = 'WEAPON_DIGISCANNER', - hash = -38085395, - clipSize = 17, - category = 'digiscanner', - model = 'w_am_digiscanner', - ammo = nil, - gxtName = 'WT_DIGI', - gxtDescription = 'WTD_DIGI', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_digiscanner') - }, - ['nightvision'] = { - id = 'GADGET_NIGHTVISION', - hash = -1491061156, - clipSize = 0, - category = 'nightvision', - model = nil, - ammo = nil, - gxtName = 'WT_NV', - gxtDescription = 'WTD_NV', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'gadget_nightvision') - }, - ['parachute'] = { - id = 'GADGET_PARACHUTE', - hash = -72657034, - clipSize = 0, - category = 'parachute', - model = nil, - ammo = nil, - gxtName = 'WT_PARA', - gxtDescription = 'WTD_PARA', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'gadget_parachute') - }, - ['object'] = { - id = 'OBJECT', - hash = 966099553, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = { - { - id = 'POLICE_TORCH_FLASHLIGHT', - hash = -979169299, - model = '', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'object') - }, - ['briefcase'] = { - id = 'WEAPON_BRIEFCASE', - hash = -2000187721, - clipSize = 0, - category = nil, - model = 'w_am_case', - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_briefcase') - }, - ['briefcase_02'] = { - id = 'WEAPON_BRIEFCASE_02', - hash = 28811031, - clipSize = 0, - category = nil, - model = 'w_am_brfcase', - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_briefcase_02') - }, - ['ball'] = { - id = 'WEAPON_BALL', - hash = 600439132, - clipSize = 1, - category = 'thrown', - model = 'w_am_baseball', - ammo = { - id = 'AMMO_BALL', - hash = -6986138, - max = 1, - name = _(CR(), 'core', 'ammo_ball') - }, - gxtName = 'WT_BALL', - gxtDescription = 'WTD_BALL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_ball') - }, - ['flare'] = { - id = 'WEAPON_FLARE', - hash = 1233104067, - clipSize = 1, - category = 'thrown', - model = 'w_am_flare', - ammo = { - id = 'AMMO_FLARE', - hash = 1808594799, - max = 25, - name = _(CR(), 'core', 'ammo_flare') - }, - gxtName = 'WT_FLARE', - gxtDescription = 'WTD_FLARE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_flare') - }, - ['tank'] = { - id = 'VEHICLE_WEAPON_TANK', - hash = 1945616459, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_TANK', - hash = -1474608608, - max = 100, - name = _(CR(), 'core', 'ammo_tank') - }, - gxtName = 'WT_V_TANK', - gxtDescription = 'WTD_V_TANK', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_tank') - }, - ['space_rocket'] = { - id = 'VEHICLE_WEAPON_SPACE_ROCKET', - hash = -123497569, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - gxtName = 'WT_V_PLANEMSL', - gxtDescription = 'WTD_V_PLANEMSL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_space_rocket') - }, - ['plane_rocket'] = { - id = 'VEHICLE_WEAPON_PLANE_ROCKET', - hash = -821520672, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_PLANE_ROCKET', - hash = 1198741878, - max = 20, - name = _(CR(), 'core', 'ammo_plane_rocket') - }, - gxtName = 'WT_V_PLANEMSL', - gxtDescription = 'WTD_V_PLANEMSL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_plane_rocket') - }, - ['player_laser'] = { - id = 'VEHICLE_WEAPON_PLAYER_LASER', - hash = -268631733, - clipSize = 100, - category = nil, - model = nil, - ammo = { - id = 'AMMO_PLAYER_LASER', - hash = -165357558, - max = 100, - name = _(CR(), 'core', 'ammo_player_laser') - }, - gxtName = 'WT_V_PLRLSR', - gxtDescription = 'WTD_V_PLRLSR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_laser') - }, - ['player_bullet'] = { - id = 'VEHICLE_WEAPON_PLAYER_BULLET', - hash = 1259576109, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_bullet') - }, - ['player_buzzard'] = { - id = 'VEHICLE_WEAPON_PLAYER_BUZZARD', - hash = 1186503822, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_buzzard') - }, - ['player_hunter'] = { - id = 'VEHICLE_WEAPON_PLAYER_HUNTER', - hash = -1625648674, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_hunter') - }, - ['player_lazer'] = { - id = 'VEHICLE_WEAPON_PLAYER_LAZER', - hash = -494786007, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_lazer') - }, - ['enemy_laser'] = { - id = 'VEHICLE_WEAPON_ENEMY_LASER', - hash = 1566990507, - clipSize = 100, - category = nil, - model = nil, - ammo = { - id = 'AMMO_ENEMY_LASER', - hash = -1372674932, - max = 100, - name = _(CR(), 'core', 'ammo_enemy_laser') - }, - gxtName = 'WT_A_ENMYLSR', - gxtDescription = 'WTD_A_ENMYLSR', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_enemy_laser') - }, - ['searchlight'] = { - id = 'VEHICLE_WEAPON_SEARCHLIGHT', - hash = -844344963, - clipSize = 1, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_searchlight') - }, - ['radar'] = { - id = 'VEHICLE_WEAPON_RADAR', - hash = -764006018, - clipSize = 1, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_radar') - }, - ['rocket'] = { - id = 'WEAPON_VEHICLE_ROCKET', - hash = -1090665087, - clipSize = 1, - category = 'heavy', - model = 'w_lr_rpg', - ammo = { - id = 'AMMO_RPG', - hash = 1742569970, - max = 20, - name = _(CR(), 'core', 'ammo_rpg') - }, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = { - { - id = 'COMPONENT_RPG_CLIP_01', - hash = 1319465907, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_vehicle_rocket') - }, - ['barbed_wire'] = { - id = 'WEAPON_BARBED_WIRE', - hash = 1223143800, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_barbed_wire') - }, - ['drowning'] = { - id = 'WEAPON_DROWNING', - hash = -10959621, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_drowning') - }, - ['drowning_in_vehicle'] = { - id = 'WEAPON_DROWNING_IN_VEHICLE', - hash = 1936677264, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_drowning_in_vehicle') - }, - ['bleeding'] = { - id = 'WEAPON_BLEEDING', - hash = -1955384325, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bleeding') - }, - ['electric_fence'] = { - id = 'WEAPON_ELECTRIC_FENCE', - hash = -1833087301, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_ELCFEN', - gxtDescription = 'WTD_ELCFEN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_electric_fence') - }, - ['explosion'] = { - id = 'WEAPON_EXPLOSION', - hash = 539292904, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_explosion') - }, - ['fall'] = { - id = 'WEAPON_FALL', - hash = -842959696, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_fall') - }, - ['exhaustion'] = { - id = 'WEAPON_EXHAUSTION', - hash = 910830060, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_exhaustion') - }, - ['hit_by_water_cannon'] = { - id = 'WEAPON_HIT_BY_WATER_CANNON', - hash = -868994466, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hit_by_water_cannon') - }, - ['rammed_by_car'] = { - id = 'WEAPON_RAMMED_BY_CAR', - hash = 133987706, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_rammed_by_car') - }, - ['run_over_by_car'] = { - id = 'WEAPON_RUN_OVER_BY_CAR', - hash = -1553120962, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_run_over_by_car') - }, - ['heli_crash'] = { - id = 'WEAPON_HELI_CRASH', - hash = 341774354, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_heli_crash') - }, - ['rotors'] = { - id = 'VEHICLE_WEAPON_ROTORS', - hash = -1323279794, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_rotors') - }, - ['fire'] = { - id = 'WEAPON_FIRE', - hash = -544306709, - clipSize = 0, - category = nil, - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_fire') - }, - ['animal_retriever'] = { - id = 'WEAPON_ANIMAL_RETRIEVER', - hash = -440934790, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_animal_retriever') - }, - ['small_dog'] = { - id = 'WEAPON_SMALL_DOG', - hash = -1148198339, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_small_dog') - }, - ['tiger_shark'] = { - id = 'WEAPON_TIGER_SHARK', - hash = 743550225, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_tiger_shark') - }, - ['hammerhead_shark'] = { - id = 'WEAPON_HAMMERHEAD_SHARK', - hash = -1263987253, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hammerhead_shark') - }, - ['killer_whale'] = { - id = 'WEAPON_KILLER_WHALE', - hash = -96609051, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_killer_whale') - }, - ['boar'] = { - id = 'WEAPON_BOAR', - hash = 861723357, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_boar') - }, - ['pig'] = { - id = 'WEAPON_PIG', - hash = 1205296881, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_pig') - }, - ['coyote'] = { - id = 'WEAPON_COYOTE', - hash = 1161062353, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_coyote') - }, - ['deer'] = { - id = 'WEAPON_DEER', - hash = -188319074, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_deer') - }, - ['hen'] = { - id = 'WEAPON_HEN', - hash = 955837630, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hen') - }, - ['rabbit'] = { - id = 'WEAPON_RABBIT', - hash = -1501041657, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_rabbit') - }, - ['cat'] = { - id = 'WEAPON_CAT', - hash = -495648874, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_cat') - }, - ['cow'] = { - id = 'WEAPON_COW', - hash = 94548753, - clipSize = 0, - category = 'unarmed', - model = nil, - ammo = nil, - gxtName = 'WT_INVALID', - gxtDescription = 'WTD_INVALID', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_cow') - }, - ['bird_crap'] = { - id = 'WEAPON_BIRD_CRAP', - hash = 1834887169, - clipSize = 1, - category = 'thrown', - model = 'w_ex_birdshat', - ammo = { - id = 'AMMO_BIRD_CRAP', - hash = 1117307028, - max = 25, - name = _(CR(), 'core', 'ammo_bird_crap') - }, - gxtName = 'WT_GNADE', - gxtDescription = 'WTD_GNADE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_bird_crap') - }, - ['snowball'] = { - id = 'WEAPON_SNOWBALL', - hash = 126349499, - clipSize = 1, - category = 'thrown', - model = 'w_ex_snowball', - ammo = { - id = 'AMMO_SNOWBALL', - hash = -2112339603, - max = 10, - name = _(CR(), 'core', 'ammo_snowball') - }, - gxtName = 'WT_SNWBALL', - gxtDescription = 'WTD_SNWBALL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_snowball') - }, - ['snspistol'] = { - id = 'WEAPON_SNSPISTOL', - hash = -1076751822, - clipSize = 6, - category = 'pistol', - model = 'w_pi_sns_pistol', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_SNSPISTOL', - gxtDescription = 'WTD_SNSPISTOL', - components = { - { - id = 'COMPONENT_SNSPISTOL_CLIP_01', - hash = -125817127, - model = 'w_pi_sns_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SNSP_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SNSPISTOL_CLIP_02', - hash = 2063610803, - model = 'w_pi_sns_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SNSP_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 2, - name = _(CR(), 'core', 'weapon_snspistol') - }, - ['specialcarbine'] = { - id = 'WEAPON_SPECIALCARBINE', - hash = -1063057011, - clipSize = 30, - category = 'rifle', - model = 'w_ar_specialcarbine', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_SPCARBINE', - gxtDescription = 'WTD_SPCARBINE', - components = { - { - id = 'COMPONENT_SPECIALCARBINE_CLIP_01', - hash = -959978111, - model = 'w_ar_specialcarbine_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_SCRB_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SPECIALCARBINE_CLIP_02', - hash = 2089537806, - model = 'w_ar_specialcarbine_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_SCRB_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM', - hash = -1596416958, - model = 'w_at_scope_medium', - gxtName = 'WCT_SCOPE_MED', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP', - hash = 202788691, - model = 'w_at_ar_afgrip', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 6, - name = _(CR(), 'core', 'weapon_specialcarbine') - }, - ['stone_hatchet'] = { - id = 'WEAPON_STONE_HATCHET', - hash = 940833800, - clipSize = 0, - category = 'melee', - model = 'w_me_stonehatchet', - ammo = nil, - gxtName = 'WT_SHATCHET', - gxtDescription = 'WTD_SHATCHET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_stone_hatchet') - }, - ['switchblade'] = { - id = 'WEAPON_SWITCHBLADE', - hash = -538741184, - clipSize = 0, - category = 'melee', - model = 'w_me_switchblade', - ammo = nil, - gxtName = 'WT_SWBLADE', - gxtDescription = 'WTD_SWBLADE', - components = { - { - id = 'COMPONENT_SWITCHBLADE_VARMOD_BASE', - hash = -1858624256, - model = 'w_me_switchblade', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR1', - hash = 1530822070, - model = 'w_me_switchblade_b', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - }, - { - id = 'COMPONENT_SWITCHBLADE_VARMOD_VAR2', - hash = -409758110, - model = 'w_me_switchblade_g', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_switchblade') - }, - ['arena_machine_gun'] = { - id = 'WEAPON_ARENA_MACHINE_GUN', - hash = 889061222, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_arena_machine_gun') - }, - ['arena_homing_missile'] = { - id = 'WEAPON_ARENA_HOMING_MISSILE', - hash = 1686798800, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_ARENA_HOMING_MISSILE', - hash = 1669062227, - max = 20, - name = _(CR(), 'core', 'ammo_arena_homing_missile') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_arena_homing_missile') - }, - ['assaultrifle_mk2'] = { - id = 'WEAPON_ASSAULTRIFLE_MK2', - hash = 961495388, - clipSize = 30, - category = 'rifle', - model = 'w_ar_assaultriflemk2', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_RIFLE_ASL2', - gxtDescription = 'WTD_RIFLE_ASL2', - components = { - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_01', - hash = -2045758401, - model = 'w_ar_assaultriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_02', - hash = -785724817, - model = 'w_ar_assaultriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -1478681000, - model = 'w_ar_assaultriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_FMJ', - hash = 1675665560, - model = 'w_ar_assaultriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_INCENDIARY', - hash = -76490669, - model = 'w_ar_assaultriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CLIP_TRACER', - hash = -282298175, - model = 'w_ar_assaultriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_AR_BARREL_01', - hash = 1134861606, - model = 'w_at_ar_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_AR_BARREL_02', - hash = 1447477866, - model = 'w_at_ar_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO', - hash = -1860492113, - model = 'w_at_armk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_02', - hash = 937772107, - model = 'w_at_armk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_03', - hash = 1401650071, - model = 'w_at_armk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_04', - hash = 628662130, - model = 'w_at_armk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_05', - hash = -985047251, - model = 'w_at_armk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_06', - hash = -812944463, - model = 'w_at_armk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_07', - hash = -1447352303, - model = 'w_at_armk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_08', - hash = -60338860, - model = 'w_at_armk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_09', - hash = 2088750491, - model = 'w_at_armk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_10', - hash = -1513913454, - model = 'w_at_armk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_ASSAULTRIFLE_MK2_CAMO_IND_01', - hash = -1179558480, - model = 'w_at_armk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_assaultrifle_mk2') - }, - ['bullpuprifle_mk2'] = { - id = 'WEAPON_BULLPUPRIFLE_MK2', - hash = -2066285827, - clipSize = 30, - category = 'rifle', - model = 'w_ar_bullpupriflemk2', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_BULLRIFLE2', - gxtDescription = 'WTD_BULLRIFLE2', - components = { - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_01', - hash = 25766362, - model = 'w_ar_bullpupriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_02', - hash = -273676760, - model = 'w_ar_bullpupriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_TRACER', - hash = -2111807319, - model = 'W_AR_BullpupRifleMK2_Mag_TR', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_INCENDIARY', - hash = -1449330342, - model = 'W_AR_BullpupRifleMK2_Mag_INC', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -89655827, - model = 'W_AR_BullpupRifleMK2_Mag_AP', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CLIP_FMJ', - hash = 1130501904, - model = 'W_AR_BullpupRifleMK2_Mag_FMJ', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_02_MK2', - hash = -944910075, - model = 'w_at_scope_macro_2', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL_MK2', - hash = 1060929921, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_BP_BARREL_01', - hash = 1704640795, - model = 'W_AR_BP_MK2_Barrel1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_BP_BARREL_02', - hash = 1005743559, - model = 'W_AR_BP_MK2_Barrel2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO', - hash = -1371515465, - model = 'w_ar_bullpupriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_02', - hash = -1190793877, - model = 'w_ar_bullpupriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_03', - hash = -1497085720, - model = 'w_ar_bullpupriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_04', - hash = -1803148180, - model = 'w_ar_bullpupriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_05', - hash = -1975971886, - model = 'w_ar_bullpupriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_06', - hash = 36929477, - model = 'w_ar_bullpupriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_07', - hash = -268444834, - model = 'w_ar_bullpupriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_08', - hash = -574769446, - model = 'w_ar_bullpupriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_09', - hash = -882699739, - model = 'w_ar_bullpupriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_10', - hash = -1468181474, - model = 'w_ar_bullpupriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_BULLPUPRIFLE_MK2_CAMO_IND_01', - hash = -974541230, - model = 'w_ar_bullpupriflemk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_bullpuprifle_mk2') - }, - ['carbinerifle_mk2'] = { - id = 'WEAPON_CARBINERIFLE_MK2', - hash = -86904375, - clipSize = 30, - category = 'rifle', - model = 'w_ar_carbineriflemk2', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_RIFLE_CBN2', - gxtDescription = 'WTD_RIFLE_CBN2', - components = { - { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_01', - hash = 1283078430, - model = 'w_ar_carbineriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_02', - hash = 1574296533, - model = 'w_ar_carbineriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_ARMORPIERCING', - hash = 626875735, - model = 'w_ar_carbineriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_FMJ', - hash = 1141059345, - model = 'w_ar_carbineriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_INCENDIARY', - hash = 1025884839, - model = 'w_ar_carbineriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CLIP_TRACER', - hash = 391640422, - model = 'w_ar_carbineriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_CR_BARREL_01', - hash = -2093598721, - model = 'w_at_cr_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_CR_BARREL_02', - hash = -1958983669, - model = 'w_at_cr_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO', - hash = 1272803094, - model = 'w_ar_carbineriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_02', - hash = 1080719624, - model = 'w_ar_carbineriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_03', - hash = 792221348, - model = 'w_ar_carbineriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_04', - hash = -452181427, - model = 'w_ar_carbineriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_05', - hash = -746774737, - model = 'w_ar_carbineriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_06', - hash = -2044296061, - model = 'w_ar_carbineriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_07', - hash = -199171978, - model = 'w_ar_carbineriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_08', - hash = -1428075016, - model = 'w_ar_carbineriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_09', - hash = -1735153315, - model = 'w_ar_carbineriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_10', - hash = 1796459838, - model = 'w_ar_carbineriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_CARBINERIFLE_MK2_CAMO_IND_01', - hash = -631911105, - model = 'w_ar_carbineriflemk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_carbinerifle_mk2') - }, - ['combatmg_mk2'] = { - id = 'WEAPON_COMBATMG_MK2', - hash = -608341376, - clipSize = 100, - category = 'mg', - model = 'w_mg_combatmgmk2', - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_MG_CBT2', - gxtDescription = 'WTD_MG_CBT2', - components = { - { - id = 'COMPONENT_COMBATMG_MK2_CLIP_01', - hash = 1227564412, - model = 'w_mg_combatmgmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_COMBATMG_MK2_CLIP_02', - hash = 400507625, - model = 'w_mg_combatmgmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CLIP_ARMORPIERCING', - hash = 696788003, - model = 'w_mg_combatmgmk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CLIP_FMJ', - hash = 1475288264, - model = 'w_mg_combatmgmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CLIP_INCENDIARY', - hash = -1020871238, - model = 'w_mg_combatmgmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CLIP_TRACER', - hash = -161179835, - model = 'w_mg_combatmgmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL_MK2', - hash = 1060929921, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_MG_BARREL_01', - hash = -1018236364, - model = 'w_at_mg_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_MG_BARREL_02', - hash = -1243457701, - model = 'w_at_mg_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO', - hash = 1249283253, - model = 'w_mg_combatmgmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_02', - hash = -857707587, - model = 'w_mg_combatmgmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_03', - hash = -1097543898, - model = 'w_mg_combatmgmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_04', - hash = 1980349969, - model = 'w_mg_combatmgmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_05', - hash = 1219453777, - model = 'w_mg_combatmgmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_06', - hash = -1853459190, - model = 'w_mg_combatmgmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_07', - hash = -2074781016, - model = 'w_mg_combatmgmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_08', - hash = 457967755, - model = 'w_mg_combatmgmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_09', - hash = 235171324, - model = 'w_mg_combatmgmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_10', - hash = 42685294, - model = 'w_mg_combatmgmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_COMBATMG_MK2_CAMO_IND_01', - hash = -687617715, - model = 'w_mg_combatmgmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 30, - name = _(CR(), 'core', 'weapon_combatmg_mk2') - }, - ['doubleaction'] = { - id = 'WEAPON_DOUBLEACTION', - hash = -1746263880, - clipSize = 6, - category = 'pistol', - model = 'w_pi_wep1_gun', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_REV_DA', - gxtDescription = 'WTD_REV_DA', - components = { - { - id = 'COMPONENT_DOUBLEACTION_CLIP_01', - hash = 1328622785, - model = 'w_pi_wep1_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_DA_CLIP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_doubleaction') - }, - ['heavysniper_mk2'] = { - id = 'WEAPON_HEAVYSNIPER_MK2', - hash = 177293209, - clipSize = 6, - category = 'sniper', - model = 'w_sr_heavysnipermk2', - ammo = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - gxtName = 'WT_SNIP_HVY2', - gxtDescription = 'WTD_SNIP_HVY2', - components = { - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_01', - hash = -98690520, - model = 'w_sr_heavysnipermk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_02', - hash = 752418717, - model = 'w_sr_heavysnipermk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_ARMORPIERCING', - hash = -130689324, - model = 'w_sr_heavysnipermk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_EXPLOSIVE', - hash = -1981031769, - model = 'w_sr_heavysnipermk2_mag_ap2', - gxtName = 'WCT_CLIP_EX', - gxtDescription = 'WCD_CLIP_EX', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_FMJ', - hash = 1005144310, - model = 'w_sr_heavysnipermk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CLIP_INCENDIARY', - hash = 247526935, - model = 'w_sr_heavysnipermk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_LARGE_MK2', - hash = -2101279869, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG2', - gxtDescription = 'WCD_SCOPE_LRG', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MAX', - hash = -1135289737, - model = 'w_at_scope_max', - gxtName = 'WCT_SCOPE_MAX', - gxtDescription = 'WCD_SCOPE_MAX', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = true - }, - { - id = 'COMPONENT_AT_SCOPE_NV', - hash = -1233121104, - model = 'w_at_scope_nv', - gxtName = 'WCT_SCOPE_NV', - gxtDescription = 'WCD_SCOPE_NV', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_THERMAL', - hash = 776198721, - model = 'w_at_scope_nv', - gxtName = 'WCT_SCOPE_TH', - gxtDescription = 'WCD_SCOPE_TH', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SR_SUPP_03', - hash = -1404903567, - model = 'w_at_sr_supp3', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_08', - hash = 1602080333, - model = 'w_at_muzzle_8', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_09', - hash = 1764221345, - model = 'w_at_muzzle_9', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_SR_BARREL_01', - hash = -1869205321, - model = 'w_at_sr_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_SR_BARREL_02', - hash = 277524638, - model = 'w_at_sr_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO', - hash = -130843390, - model = 'w_at_heavysnipermk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_02', - hash = -977347227, - model = 'w_at_heavysnipermk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_03', - hash = -378461067, - model = 'w_at_heavysnipermk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_04', - hash = 329939175, - model = 'w_at_heavysnipermk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_05', - hash = 643374672, - model = 'w_at_heavysnipermk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_06', - hash = 807875052, - model = 'w_at_heavysnipermk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_07', - hash = -1401804168, - model = 'w_at_heavysnipermk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_08', - hash = -1096495395, - model = 'w_at_heavysnipermk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_09', - hash = -847811454, - model = 'w_at_heavysnipermk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_10', - hash = -1413108537, - model = 'w_at_heavysnipermk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_HEAVYSNIPER_MK2_CAMO_IND_01', - hash = 1815270123, - model = 'w_at_heavysnipermk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 26, - name = _(CR(), 'core', 'weapon_heavysniper_mk2') - }, - ['marksmanrifle_mk2'] = { - id = 'WEAPON_MARKSMANRIFLE_MK2', - hash = 1785463520, - clipSize = 8, - category = 'sniper', - model = 'w_sr_marksmanriflemk2', - ammo = { - id = 'AMMO_SNIPER', - hash = 1285032059, - max = 250, - name = _(CR(), 'core', 'ammo_sniper') - }, - gxtName = 'WT_MKRIFLE2', - gxtDescription = 'WTD_MKRIFLE2', - components = { - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_01', - hash = -1797182002, - model = 'w_sr_marksmanriflemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_02', - hash = -422587990, - model = 'w_sr_marksmanriflemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_ARMORPIERCING', - hash = -193998727, - model = 'w_sr_marksmanriflemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_FMJ', - hash = -515203373, - model = 'w_sr_marksmanriflemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_INCENDIARY', - hash = 1842849902, - model = 'w_sr_marksmanriflemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CLIP_TRACER', - hash = -679861550, - model = 'w_sr_marksmanriflemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_LARGE_FIXED_ZOOM_MK2', - hash = 1528590652, - model = 'w_at_scope_large', - gxtName = 'WCT_SCOPE_LRG2', - gxtDescription = 'WCD_SCOPE_LRF', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = true - }, - { - id = 'COMPONENT_AT_AR_SUPP', - hash = -2089531990, - model = 'w_at_ar_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_MRFL_BARREL_01', - hash = 941317513, - model = 'w_sr_mr_mk2_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_MRFL_BARREL_02', - hash = 1748450780, - model = 'w_sr_mr_mk2_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO', - hash = -1869284448, - model = 'w_sr_marksmanriflemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_02', - hash = 1931539634, - model = 'w_sr_marksmanriflemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_03', - hash = 1624199183, - model = 'w_sr_marksmanriflemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_04', - hash = -26834113, - model = 'w_sr_marksmanriflemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_05', - hash = -210406055, - model = 'w_sr_marksmanriflemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_06', - hash = 423313640, - model = 'w_sr_marksmanriflemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_07', - hash = 276639596, - model = 'w_sr_marksmanriflemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_08', - hash = -991356863, - model = 'w_sr_marksmanriflemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_09', - hash = -1682848301, - model = 'w_sr_marksmanriflemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_10', - hash = 996213771, - model = 'w_sr_marksmanriflemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_MARKSMANRIFLE_MK2_CAMO_IND_01', - hash = -1214048550, - model = 'w_sr_marksmanriflemk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_marksmanrifle_mk2') - }, - ['pistol_mk2'] = { - id = 'WEAPON_PISTOL_MK2', - hash = -1075685676, - clipSize = 12, - category = 'pistol', - model = 'w_pi_pistolmk2', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_PIST2', - gxtDescription = 'WTD_PIST2', - components = { - { - id = 'COMPONENT_PISTOL_MK2_CLIP_01', - hash = -1795936926, - model = 'w_pi_pistolmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_PISTOL_MK2_CLIP_02', - hash = 1591132456, - model = 'w_pi_pistolmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CLIP_FMJ', - hash = 1329061674, - model = 'w_pi_pistolmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CLIP_HOLLOWPOINT', - hash = -2046910199, - model = 'w_pi_pistolmk2_mag_hp', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CLIP_INCENDIARY', - hash = 733837882, - model = 'w_pi_pistolmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CLIP_TRACER', - hash = 634039983, - model = 'w_pi_pistolmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_RAIL', - hash = -1898661008, - model = 'w_at_pi_rail_1', - gxtName = 'WCT_SCOPE_PI', - gxtDescription = 'WCD_SCOPE_PI', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH_02', - hash = 1140676955, - model = 'w_at_pi_flsh_2', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP_02', - hash = 1709866683, - model = 'w_at_pi_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_PI_COMP', - hash = 568543123, - model = 'w_at_pi_comp_1', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_SLIDE', - hash = -1258515792, - model = 'W_PI_PistolMK2_Slide_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_02_SLIDE', - hash = 438243936, - model = 'W_PI_PistolMK2_Slide_Camo2', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_03_SLIDE', - hash = -455079056, - model = 'W_PI_PistolMK2_Slide_Camo3', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_04_SLIDE', - hash = 740920107, - model = 'W_PI_PistolMK2_Slide_Camo4', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_05_SLIDE', - hash = -541616347, - model = 'W_PI_PistolMK2_Slide_Camo5', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_06_SLIDE', - hash = 1809261196, - model = 'W_PI_PistolMK2_Slide_Camo6', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_07_SLIDE', - hash = -1646538868, - model = 'W_PI_PistolMK2_Slide_Camo7', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_08_SLIDE', - hash = -1290164948, - model = 'W_PI_PistolMK2_Slide_Camo8', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_09_SLIDE', - hash = -964465134, - model = 'W_PI_PistolMK2_Slide_Camo9', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_10_SLIDE', - hash = 1135718771, - model = 'W_PI_PistolMK2_Slide_Camo10', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01_SLIDE', - hash = 1253942266, - model = 'W_PI_PistolMK2_Camo_Sl_Ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO', - hash = 1550611612, - model = 'w_pi_pistolmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_02', - hash = 368550800, - model = 'w_pi_pistolmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_03', - hash = -1769069349, - model = 'w_pi_pistolmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_04', - hash = 24902297, - model = 'w_pi_pistolmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_05', - hash = -228041614, - model = 'w_pi_pistolmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_06', - hash = -584961562, - model = 'w_pi_pistolmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_07', - hash = -1153175946, - model = 'w_pi_pistolmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_08', - hash = 1301287696, - model = 'w_pi_pistolmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_09', - hash = 1597093459, - model = 'w_pi_pistolmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_10', - hash = 1769871776, - model = 'w_pi_pistolmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PISTOL_MK2_CAMO_IND_01', - hash = -1827882671, - model = 'w_pi_pistolmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_pistol_mk2') - }, - ['pumpshotgun_mk2'] = { - id = 'WEAPON_PUMPSHOTGUN_MK2', - hash = 1432025498, - clipSize = 8, - category = 'shotgun', - model = 'w_sg_pumpshotgunmk2', - ammo = { - id = 'AMMO_SHOTGUN', - hash = -1878508229, - max = 250, - name = _(CR(), 'core', 'ammo_shotgun') - }, - gxtName = 'WT_SG_PMP2', - gxtDescription = 'WTD_SG_PMP2', - components = { - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_01', - hash = -845938367, - model = 'w_sg_pumpshotgunmk2_mag1', - gxtName = 'WCT_SHELL', - gxtDescription = 'WCD_SHELL', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_ARMORPIERCING', - hash = 1315288101, - model = 'w_sg_pumpshotgunmk2_mag_ap', - gxtName = 'WCT_SHELL_AP', - gxtDescription = 'WCD_SHELL_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_EXPLOSIVE', - hash = 1004815965, - model = 'w_sg_pumpshotgunmk2_mag_exp', - gxtName = 'WCT_SHELL_EX', - gxtDescription = 'WCD_SHELL_EX', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_HOLLOWPOINT', - hash = -380098265, - model = 'w_sg_pumpshotgunmk2_mag_hp', - gxtName = 'WCT_SHELL_HP', - gxtDescription = 'WCD_SHELL_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CLIP_INCENDIARY', - hash = -1618338827, - model = 'w_sg_pumpshotgunmk2_mag_inc', - gxtName = 'WCT_SHELL_INC', - gxtDescription = 'WCD_SHELL_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL_MK2', - hash = 1060929921, - model = 'w_at_scope_small', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SR_SUPP_03', - hash = -1404903567, - model = 'w_at_sr_supp3', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_SR_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_08', - hash = 1602080333, - model = 'w_at_muzzle_8', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ_SR', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO', - hash = -474112444, - model = 'w_sg_pumpshotgunmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_02', - hash = 387223451, - model = 'w_sg_pumpshotgunmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_03', - hash = 617753366, - model = 'w_sg_pumpshotgunmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_04', - hash = -222378256, - model = 'w_sg_pumpshotgunmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_05', - hash = 8741501, - model = 'w_sg_pumpshotgunmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_06', - hash = -601286203, - model = 'w_sg_pumpshotgunmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_07', - hash = -511433605, - model = 'w_sg_pumpshotgunmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_08', - hash = -655387818, - model = 'w_sg_pumpshotgunmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_09', - hash = -282476598, - model = 'w_sg_pumpshotgunmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_10', - hash = 1739501925, - model = 'w_sg_pumpshotgunmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_PUMPSHOTGUN_MK2_CAMO_IND_01', - hash = 1178671645, - model = 'w_sg_pumpshotgunmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 22, - name = _(CR(), 'core', 'weapon_pumpshotgun_mk2') - }, - ['revolver_mk2'] = { - id = 'WEAPON_REVOLVER_MK2', - hash = -879347409, - clipSize = 6, - category = 'pistol', - model = 'w_pi_revolvermk2', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_REVOLVER2', - gxtDescription = 'WTD_REVOLVER2', - components = { - { - id = 'COMPONENT_REVOLVER_MK2_CLIP_01', - hash = -1172055874, - model = 'w_pi_revolvermk2_mag1', - gxtName = 'WCT_CLIP1_RV', - gxtDescription = 'WCD_CLIP1_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_REVOLVER_MK2_CLIP_FMJ', - hash = 231258687, - model = 'w_pi_revolvermk2_mag5', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CLIP_HOLLOWPOINT', - hash = 284438159, - model = 'w_pi_revolvermk2_mag2', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CLIP_INCENDIARY', - hash = 15712037, - model = 'w_pi_revolvermk2_mag3', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CLIP_TRACER', - hash = -958864266, - model = 'w_pi_revolvermk2_mag4', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH', - hash = 899381934, - model = 'w_at_pi_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_COMP_03', - hash = 654802123, - model = 'w_at_pi_comp_3', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO', - hash = -1069552225, - model = 'w_pi_revolvermk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_02', - hash = 11918884, - model = 'w_pi_revolvermk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_03', - hash = 176157112, - model = 'w_pi_revolvermk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_04', - hash = -220052855, - model = 'w_pi_revolvermk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_05', - hash = 288456487, - model = 'w_pi_revolvermk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_06', - hash = 398658626, - model = 'w_pi_revolvermk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_07', - hash = 628697006, - model = 'w_pi_revolvermk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_08', - hash = 925911836, - model = 'w_pi_revolvermk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_09', - hash = 1222307441, - model = 'w_pi_revolvermk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_10', - hash = 552442715, - model = 'w_pi_revolvermk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_REVOLVER_MK2_CAMO_IND_01', - hash = -648943513, - model = 'w_pi_revolvermk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 20, - name = _(CR(), 'core', 'weapon_revolver_mk2') - }, - ['smg_mk2'] = { - id = 'WEAPON_SMG_MK2', - hash = 2024373456, - clipSize = 30, - category = 'smg', - model = 'w_sb_smgmk2', - ammo = { - id = 'AMMO_SMG', - hash = 1820140472, - max = 250, - name = _(CR(), 'core', 'ammo_smg') - }, - gxtName = 'WT_SMG2', - gxtDescription = 'WTD_SMG2', - components = { - { - id = 'COMPONENT_SMG_MK2_CLIP_01', - hash = 1277460590, - model = 'w_sb_smgmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SMG_MK2_CLIP_02', - hash = -1182573778, - model = 'w_sb_smgmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CLIP_FMJ', - hash = 190476639, - model = 'w_sb_smgmk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CLIP_HOLLOWPOINT', - hash = 974903034, - model = 'w_sb_smgmk2_mag_hp', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CLIP_INCENDIARY', - hash = -644734235, - model = 'w_sb_smgmk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CLIP_TRACER', - hash = 2146055916, - model = 'w_sb_smgmk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS_SMG', - hash = -1613015470, - model = 'w_at_sights_smg', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_02_SMG_MK2', - hash = -452809877, - model = 'w_at_scope_macro_2_mk2', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_SMALL_SMG_MK2', - hash = 1038927834, - model = 'w_at_scope_small_mk2', - gxtName = 'WCT_SCOPE_SML2', - gxtDescription = 'WCD_SCOPE_SML', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_SB_BARREL_01', - hash = -653246751, - model = 'w_at_sb_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_SB_BARREL_02', - hash = -1520117877, - model = 'w_at_sb_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO', - hash = -996700057, - model = 'w_at_smgmk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_02', - hash = 940943685, - model = 'w_at_smgmk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_03', - hash = 1263226800, - model = 'w_at_smgmk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_04', - hash = -328035840, - model = 'w_at_smgmk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_05', - hash = 1224100642, - model = 'w_at_smgmk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_06', - hash = 899228776, - model = 'w_at_smgmk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_07', - hash = 616006309, - model = 'w_at_smgmk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_08', - hash = -1561952511, - model = 'w_at_smgmk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_09', - hash = 572063080, - model = 'w_at_smgmk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_10', - hash = 1170588613, - model = 'w_at_smgmk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SMG_MK2_CAMO_IND_01', - hash = 966612367, - model = 'w_at_smgmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 31, - name = _(CR(), 'core', 'weapon_smg_mk2') - }, - ['snspistol_mk2'] = { - id = 'WEAPON_SNSPISTOL_MK2', - hash = -2009644972, - clipSize = 6, - category = 'pistol', - model = 'w_pi_sns_pistolmk2', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_SNSPISTOL2', - gxtDescription = 'WTD_SNSPISTOL2', - components = { - { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_01', - hash = 21392614, - model = 'w_pi_sns_pistolmk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_02', - hash = -829683854, - model = 'w_pi_sns_pistolmk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_TRACER', - hash = -1876057490, - model = 'W_PI_SNS_PistolMK2_Mag_TR', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_INCENDIARY', - hash = -424845447, - model = 'W_PI_SNS_PistolMK2_Mag_INC', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC_NS', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_HOLLOWPOINT', - hash = -1928301566, - model = 'W_PI_SNS_PistolMK2_Mag_HP', - gxtName = 'WCT_CLIP_HP', - gxtDescription = 'WCD_CLIP_HP_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CLIP_FMJ', - hash = -1055790298, - model = 'W_PI_SNS_PistolMK2_Mag_FMJ', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ_RV', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_FLSH_03', - hash = 1246324211, - model = 'w_at_pi_snsmk2_flsh_1', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_PI_RAIL_02', - hash = 1205768792, - model = 'w_at_pi_rail_2', - gxtName = 'WCT_SCOPE_PI', - gxtDescription = 'WCD_SCOPE_PI', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP_02', - hash = 1709866683, - model = 'w_at_pi_supp_2', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_PI_COMP_02', - hash = -1434287169, - model = 'w_at_pi_comp_2', - gxtName = 'WCT_COMP', - gxtDescription = 'WCD_COMP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_SLIDE', - hash = -403805974, - model = 'W_PI_SNS_PistolMk2_SL_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02_SLIDE', - hash = 691432737, - model = 'W_PI_SNS_PistolMk2_SL_Camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03_SLIDE', - hash = 987648331, - model = 'W_PI_SNS_PistolMk2_SL_Camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04_SLIDE', - hash = -431680535, - model = 'W_PI_SNS_PistolMk2_SL_Camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05_SLIDE', - hash = -847582310, - model = 'W_PI_SNS_PistolMk2_SL_Camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06_SLIDE', - hash = -92592218, - model = 'W_PI_SNS_PistolMk2_SL_Camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07_SLIDE', - hash = -494548326, - model = 'W_PI_SNS_PistolMk2_SL_Camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08_SLIDE', - hash = 730876697, - model = 'W_PI_SNS_PistolMk2_SL_Camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09_SLIDE', - hash = 583159708, - model = 'W_PI_SNS_PistolMk2_SL_Camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10_SLIDE', - hash = -1928503603, - model = 'W_PI_SNS_PistolMk2_SL_Camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01_SLIDE', - hash = 520557834, - model = 'W_PI_SNS_PistolMK2_SL_Camo_Ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO', - hash = 259780317, - model = 'W_PI_SNS_PistolMk2_Camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_02', - hash = -1973342474, - model = 'W_PI_SNS_PistolMk2_Camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_03', - hash = 1996130345, - model = 'W_PI_SNS_PistolMk2_Camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_04', - hash = -1455657812, - model = 'W_PI_SNS_PistolMk2_Camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_05', - hash = -1668263084, - model = 'W_PI_SNS_PistolMk2_Camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_06', - hash = 1308243489, - model = 'W_PI_SNS_PistolMk2_Camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_07', - hash = 1122574335, - model = 'W_PI_SNS_PistolMk2_Camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_08', - hash = 1420313469, - model = 'W_PI_SNS_PistolMk2_Camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_09', - hash = 109848390, - model = 'W_PI_SNS_PistolMk2_Camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_10', - hash = 593945703, - model = 'W_PI_SNS_PistolMk2_Camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SNSPISTOL_MK2_CAMO_IND_01', - hash = 1142457062, - model = 'w_pi_sns_pistolmk2_camo_ind1', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_snspistol_mk2') - }, - ['raypistol'] = { - id = 'WEAPON_RAYPISTOL', - hash = -1355376991, - clipSize = 1, - category = 'pistol', - model = 'w_pi_raygun', - ammo = { - id = 'AMMO_RAYPISTOL', - hash = -1526023308, - max = 20, - name = _(CR(), 'core', 'ammo_raypistol') - }, - gxtName = 'WT_RAYPISTOL', - gxtDescription = 'WTD_RAYPISTOL', - components = { - { - id = 'COMPONENT_RAYPISTOL_VARMOD_XMAS18', - hash = -673450233, - model = 'w_pi_raygun_ev', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentVariantModelInfo', - type = 'variant', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_raypistol') - }, - ['raycarbine'] = { - id = 'WEAPON_RAYCARBINE', - hash = 1198256469, - clipSize = 9999, - category = 'mg', - model = 'w_ar_srifle', - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_RAYCARBINE', - gxtDescription = 'WTD_RAYCARBINE', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_raycarbine') - }, - ['rayminigun'] = { - id = 'WEAPON_RAYMINIGUN', - hash = -1238556825, - clipSize = 15000, - category = 'heavy', - model = 'w_mg_sminigun', - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_RAYMINIGUN', - gxtDescription = 'WTD_RAYMINIGUN', - components = { - { - id = 'COMPONENT_MINIGUN_CLIP_01', - hash = -924946682, - model = '', - gxtName = 'WCT_INVALID', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_rayminigun') - }, - ['specialcarbine_mk2'] = { - id = 'WEAPON_SPECIALCARBINE_MK2', - hash = -1768145561, - clipSize = 30, - category = 'rifle', - model = 'w_ar_specialcarbinemk2', - ammo = { - id = 'AMMO_RIFLE', - hash = 218444191, - max = 250, - name = _(CR(), 'core', 'ammo_rifle') - }, - gxtName = 'WT_SPCARBINE2', - gxtDescription = 'WTD_SPCARBINE2', - components = { - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_01', - hash = 382112385, - model = 'w_ar_specialcarbinemk2_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_02', - hash = -568352468, - model = 'w_ar_specialcarbinemk2_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_TRACER', - hash = -2023373174, - model = 'w_ar_specialcarbinemk2_mag_tr', - gxtName = 'WCT_CLIP_TR', - gxtDescription = 'WCD_CLIP_TR', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_INCENDIARY', - hash = -570355066, - model = 'w_ar_specialcarbinemk2_mag_inc', - gxtName = 'WCT_CLIP_INC', - gxtDescription = 'WCD_CLIP_INC', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_ARMORPIERCING', - hash = 1362433589, - model = 'w_ar_specialcarbinemk2_mag_ap', - gxtName = 'WCT_CLIP_AP', - gxtDescription = 'WCD_CLIP_AP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CLIP_FMJ', - hash = 1346235024, - model = 'w_ar_specialcarbinemk2_mag_fmj', - gxtName = 'WCT_CLIP_FMJ', - gxtDescription = 'WCD_CLIP_FMJ', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_AR_FLSH', - hash = 2076495324, - model = 'w_at_ar_flsh', - gxtName = 'WCT_FLASH', - gxtDescription = 'WCD_FLASH', - __type = 'CWeaponComponentFlashLightInfo', - type = 'flashlight', - default = false - }, - { - id = 'COMPONENT_AT_SIGHTS', - hash = 1108334355, - model = 'w_at_sights_1', - gxtName = 'WCT_HOLO', - gxtDescription = 'WCD_HOLO', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MACRO_MK2', - hash = 77277509, - model = 'w_at_scope_macro', - gxtName = 'WCT_SCOPE_MAC2', - gxtDescription = 'WCD_SCOPE_MAC', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_SCOPE_MEDIUM_MK2', - hash = -966040254, - model = 'w_at_scope_medium_2', - gxtName = 'WCT_SCOPE_MED2', - gxtDescription = 'WCD_SCOPE_MED', - __type = 'CWeaponComponentScopeInfo', - type = 'scope', - default = false - }, - { - id = 'COMPONENT_AT_AR_SUPP_02', - hash = -1489156508, - model = 'w_at_ar_supp_02', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_AR_SUPP2', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_01', - hash = -1181482284, - model = 'w_at_muzzle_1', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_02', - hash = -932732805, - model = 'w_at_muzzle_2', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_03', - hash = -569259057, - model = 'w_at_muzzle_3', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_04', - hash = -326080308, - model = 'w_at_muzzle_4', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_05', - hash = 48731514, - model = 'w_at_muzzle_5', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_06', - hash = 880736428, - model = 'w_at_muzzle_6', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_MUZZLE_07', - hash = 1303784126, - model = 'w_at_muzzle_7', - gxtName = 'WCT_MUZZ', - gxtDescription = 'WCD_MUZZ', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - }, - { - id = 'COMPONENT_AT_AR_AFGRIP_02', - hash = -1654288262, - model = 'w_at_afgrip_2', - gxtName = 'WCT_GRIP', - gxtDescription = 'WCD_GRIP', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_AT_SC_BARREL_01', - hash = -415870039, - model = 'w_ar_sc_barrel_1', - gxtName = 'WCT_BARR', - gxtDescription = 'WCD_BARR', - __type = 'CWeaponComponentInfo', - type = 'default', - default = true - }, - { - id = 'COMPONENT_AT_SC_BARREL_02', - hash = -109086661, - model = 'w_ar_sc_barrel_2', - gxtName = 'WCT_BARR2', - gxtDescription = 'WCD_BARR2', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO', - hash = -737430213, - model = 'w_ar_specialcarbinemk2_camo1', - gxtName = 'WCT_CAMO_1', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_02', - hash = 1125852043, - model = 'w_ar_specialcarbinemk2_camo2', - gxtName = 'WCT_CAMO_2', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_03', - hash = 886015732, - model = 'w_ar_specialcarbinemk2_camo3', - gxtName = 'WCT_CAMO_3', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_04', - hash = -1262287139, - model = 'w_ar_specialcarbinemk2_camo4', - gxtName = 'WCT_CAMO_4', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_05', - hash = -295208411, - model = 'w_ar_specialcarbinemk2_camo5', - gxtName = 'WCT_CAMO_5', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_06', - hash = -544154504, - model = 'w_ar_specialcarbinemk2_camo6', - gxtName = 'WCT_CAMO_6', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_07', - hash = 172765678, - model = 'w_ar_specialcarbinemk2_camo7', - gxtName = 'WCT_CAMO_7', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_08', - hash = -1982877449, - model = 'w_ar_specialcarbinemk2_camo8', - gxtName = 'WCT_CAMO_8', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_09', - hash = 2072122460, - model = 'w_ar_specialcarbinemk2_camo9', - gxtName = 'WCT_CAMO_9', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_10', - hash = -1986220171, - model = 'w_ar_specialcarbinemk2_camo10', - gxtName = 'WCT_CAMO_10', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - }, - { - id = 'COMPONENT_SPECIALCARBINE_MK2_CAMO_IND_01', - hash = 1377355801, - model = 'w_ar_specialcarbinemk2_camo_ind', - gxtName = 'WCT_CAMO_IND', - gxtDescription = 'WCD_INVALID', - __type = 'CWeaponComponentInfo', - type = 'default', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 32, - name = _(CR(), 'core', 'weapon_specialcarbine_mk2') - }, - ['turret_boxville'] = { - id = 'VEHICLE_WEAPON_TURRET_BOXVILLE', - hash = -1253095144, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TURRET', - gxtDescription = 'WTD_V_TURRET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_boxville') - }, - ['turret_insurgent'] = { - id = 'VEHICLE_WEAPON_TURRET_INSURGENT', - hash = 1155224728, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TURRET', - gxtDescription = 'WTD_V_TURRET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_insurgent') - }, - ['turret_limo'] = { - id = 'VEHICLE_WEAPON_TURRET_LIMO', - hash = 729375873, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TURRET', - gxtDescription = 'WTD_V_TURRET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_limo') - }, - ['turret_technical'] = { - id = 'VEHICLE_WEAPON_TURRET_TECHNICAL', - hash = 2144528907, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MG', - hash = 1788949567, - max = 500, - name = _(CR(), 'core', 'ammo_mg') - }, - gxtName = 'WT_V_TURRET', - gxtDescription = 'WTD_V_TURRET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_technical') - }, - ['nose_turret_valkyrie'] = { - id = 'VEHICLE_WEAPON_NOSE_TURRET_VALKYRIE', - hash = 1097917585, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_nose_turret_valkyrie') - }, - ['turret_valkyrie'] = { - id = 'VEHICLE_WEAPON_TURRET_VALKYRIE', - hash = -1538179531, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_TURRET', - gxtDescription = 'WTD_V_TURRET', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_turret_valkyrie') - }, - ['ruiner_bullet'] = { - id = 'VEHICLE_WEAPON_RUINER_BULLET', - hash = 50118905, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_PLRBUL', - gxtDescription = 'WTD_V_PLRBUL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_ruiner_bullet') - }, - ['ruiner_rocket'] = { - id = 'VEHICLE_WEAPON_RUINER_ROCKET', - hash = 84788907, - clipSize = 1, - category = nil, - model = nil, - ammo = { - id = 'AMMO_SPACE_ROCKET', - hash = 527765612, - max = 20, - name = _(CR(), 'core', 'ammo_space_rocket') - }, - gxtName = 'WT_V_PLANEMSL', - gxtDescription = 'WTD_V_PLANEMSL', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_ruiner_rocket') - }, - ['player_savage'] = { - id = 'VEHICLE_WEAPON_PLAYER_SAVAGE', - hash = 1638077257, - clipSize = 750, - category = nil, - model = nil, - ammo = { - id = 'AMMO_MINIGUN', - hash = -1614428030, - max = 250, - name = _(CR(), 'core', 'ammo_minigun') - }, - gxtName = 'WT_V_LZRCAN', - gxtDescription = 'WTD_V_LZRCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'vehicle_weapon_player_savage') - }, - ['vintagepistol'] = { - id = 'WEAPON_VINTAGEPISTOL', - hash = 137902532, - clipSize = 7, - category = 'pistol', - model = 'w_pi_vintage_pistol', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_VPISTOL', - gxtDescription = 'WTD_VPISTOL', - components = { - { - id = 'COMPONENT_VINTAGEPISTOL_CLIP_01', - hash = 1168357051, - model = 'w_pi_vintage_pistol_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_VPST_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_VINTAGEPISTOL_CLIP_02', - hash = 867832552, - model = 'w_pi_vintage_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_VPST_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_AT_PI_SUPP', - hash = -1023114086, - model = 'w_at_pi_supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_vintagepistol') - }, - ['wrench'] = { - id = 'WEAPON_WRENCH', - hash = 419712736, - clipSize = 0, - category = 'melee', - model = 'w_me_wrench', - ammo = nil, - gxtName = 'WT_WRENCH', - gxtDescription = 'WTD_WRENCH', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_wrench') - }, - ['ceramicpistol'] = { - id = 'WEAPON_CERAMICPISTOL', - hash = 727643628, - clipSize = 12, - category = 'pistol', - model = 'w_pi_ceramic_pistol', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_CERPST', - gxtDescription = 'WTD_CERPST', - components = { - { - id = 'COMPONENT_CERAMICPISTOL_CLIP_01', - hash = 1423184737, - model = 'W_PI_Ceramic_Mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_P_CLIP1', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - }, - { - id = 'COMPONENT_CERAMICPISTOL_CLIP_02', - hash = -2122814295, - model = 'w_pi_sns_pistol_mag2', - gxtName = 'WCT_CLIP2', - gxtDescription = 'WCD_P_CLIP2', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = false - }, - { - id = 'COMPONENT_CERAMICPISTOL_SUPP', - hash = -1828202758, - model = 'W_PI_Ceramic_Supp', - gxtName = 'WCT_SUPP', - gxtDescription = 'WCD_PI_SUPP', - __type = 'CWeaponComponentSuppressorInfo', - type = 'suppressor', - default = false - } - }, - hasAttachments = true, - numberOfAttachments = 3, - name = _(CR(), 'core', 'weapon_ceramicpistol') - }, - ['hazardcan'] = { - id = 'WEAPON_HAZARDCAN', - hash = -1168940174, - clipSize = 4500, - category = 'petrolcan', - model = 'w_ch_jerrycan', - ammo = { - id = 'AMMO_HAZARDCAN', - hash = 1618528319, - max = 4500, - name = _(CR(), 'core', 'ammo_hazardcan') - }, - gxtName = 'WT_HAZARDCAN', - gxtDescription = 'WTD_HAZARDCAN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_hazardcan') - }, - ['navyrevolver'] = { - id = 'WEAPON_NAVYREVOLVER', - hash = -1853920116, - clipSize = 6, - category = 'pistol', - model = 'w_pi_wep2_gun', - ammo = { - id = 'AMMO_PISTOL', - hash = 1950175060, - max = 250, - name = _(CR(), 'core', 'ammo_pistol') - }, - gxtName = 'WT_REV_NV', - gxtDescription = 'WTD_REV_NV', - components = { - { - id = 'COMPONENT_NAVYREVOLVER_CLIP_01', - hash = -1738620313, - model = 'w_pi_wep2_gun_mag1', - gxtName = 'WCT_CLIP1', - gxtDescription = 'WCD_REV_NV_CLIP', - __type = 'CWeaponComponentClipInfo', - type = 'clip', - default = true - } - }, - hasAttachments = true, - numberOfAttachments = 1, - name = _(CR(), 'core', 'weapon_navyrevolver') - }, - ['tranquilizer'] = { - id = 'WEAPON_TRANQUILIZER', - hash = 849905853, - clipSize = 2104529083, - category = 'tranqilizer', - model = 'w_pi_stungun', - ammo = { - id = 'AMMO_TRANQUILIZER', - hash = 1964004553, - max = 250, - name = _(CR(), 'core', 'ammo_tranquilizer') - }, - gxtName = 'WT_STUN', - gxtDescription = 'WTD_STUN', - components = {}, - hasAttachments = false, - numberOfAttachments = 0, - name = _(CR(), 'core', 'weapon_tranquilizer') - } -} diff --git a/tools/framework.js b/tools/framework.js deleted file mode 100644 index a81a303..0000000 --- a/tools/framework.js +++ /dev/null @@ -1,266 +0,0 @@ -// ----------------------- [ CoreV ] ----------------------- -// -- GitLab: https://git.arens.io/ThymonA/corev-framework/ -// -- GitHub: https://github.com/ThymonA/CoreV-Framework/ -// -- License: GNU General Public License v3.0 -// -- https://choosealicense.com/licenses/gpl-3.0/ -// -- Author: Thymon Arens -// -- Name: CoreV -// -- Version: 1.0.0 -// -- Description: Custom FiveM Framework -// ----------------------- [ CoreV ] ----------------------- - -const fs = require('fs'); -const json2lua = require('json2lua'); -const { formatText, WriteMode } = require('lua-fmt'); - -const rawWeapons = require('./data/weapons.json'); -const rawAmmos = require('./data/ammo.json'); -const rawWeaponComponents = require('./data/weapon_components.json'); - -// Fill those lists -const ammos = {}; -const components = {}; -const weapons = {}; -const groups = {}; - -// Fill list ammos with nameHash as primary -for(let i = 0; i < rawAmmos.length; i++) { - const rawAmmo = rawAmmos[i]; - - let __nameHash = 'unknown'; - let __hash = 0x0; - let __max = 0; - - if (typeof rawAmmo != 'undefined') { - if (typeof rawAmmo.nameHash != 'undefined' && rawAmmo.nameHash != null) { __nameHash = rawAmmo.nameHash; }; - if (typeof rawAmmo.hash != 'undefined' && rawAmmo.hash != null) { __hash = rawAmmo.hash; }; - if (typeof rawAmmo.max != 'undefined' && rawAmmo.max != null) { __max = rawAmmo.max; }; - - ammos[__nameHash] = { - id: __nameHash, - hash: __hash, - max: __max, - name: 'x_(CR(), \'core\', \'' + __nameHash.toLowerCase() + '\')x' - } - } -} - -// Transform object to lua -const ammoConfigFile = json2lua.fromObject(ammos); - -// Fill list components with nameHash as primary -for(let i = 0; i < rawWeaponComponents.length; i++) { - const rawComponent = rawWeaponComponents[i]; - - let __nameHash = 'unknown'; - let __hash = 0x0; - let __type = 'unknown'; - let __model = 'unknown'; - let __gxtName = 'unknown'; - let __gxtDescription = 'unknown'; - - if (typeof rawComponent != 'undefined') { - if (typeof rawComponent.nameHash != 'undefined' && rawComponent.nameHash != null) { __nameHash = rawComponent.nameHash; }; - if (typeof rawComponent.hash != 'undefined' && rawComponent.hash != null) { __hash = rawComponent.hash; }; - if (typeof rawComponent.type != 'undefined' && rawComponent.type != null) { __type = rawComponent.type; }; - if (typeof rawComponent.model != 'undefined' && rawComponent.model != null) { __model = rawComponent.model; }; - if (typeof rawComponent.gxtName != 'undefined' && rawComponent.gxtName != null) { __gxtName = rawComponent.gxtName; }; - if (typeof rawComponent.gxtDescription != 'undefined' && rawComponent.gxtDescription != null) { __gxtDescription = rawComponent.gxtDescription; }; - - components[__nameHash] = { - id: __nameHash, - hash: __hash, - model: __model, - gxtName: __gxtName, - gxtDescription: __gxtDescription, - __type: __type, - type: 'unknown' - } - - if (__type == 'CWeaponComponentClipInfo') { - components[__nameHash].type = 'clip'; - - let __clipSize = 0; - - if (typeof rawComponent.clipSize != 'undefined' && rawComponent.clipSize != null) { - __clipSize = rawComponent.clipSize - } - - components[__nameHash].clipSize = __clipSize; - } else if (__type == 'CWeaponComponentFlashLightInfo') { - components[__nameHash].type = 'flashlight'; - } else if (__type == 'CWeaponComponentInfo') { - components[__nameHash].type = 'default'; - } else if (__type == 'CWeaponComponentScopeInfo') { - components[__nameHash].type = 'scope'; - } else if (__type == 'CWeaponComponentSuppressorInfo') { - components[__nameHash].type = 'suppressor'; - } else if (__type == 'CWeaponComponentVariantModelInfo') { - components[__nameHash].type = 'variant'; - } else if (__type == 'CWeaponComponentVariantModelInfo') { - components[__nameHash].type = 'variant'; - } - } -} - -// Transform object to lua -const componentConfigFile = json2lua.fromObject(components); - -const capitalize = (s) => { - if (typeof s !== 'string') return '' - - return s.charAt(0).toUpperCase() + s.slice(1) -} - -// Fill list weapons with nameHash as primary -for(let i = 0; i < rawWeapons.length; i++) { - const rawWeapon = rawWeapons[i]; - - let __nameHash = 'unknown'; - let __hash = 0x0; - let __clipSize = 0; - let __group = 'unknown'; - let __model = 'unknown'; - let __ammo = 'unknown'; - let __gxtName = 'unknown'; - let __gxtDescription = 'unknown'; - let __components = []; - - if (typeof rawWeapon != 'undefined') { - if (typeof rawWeapon.nameHash != 'undefined' && rawWeapon.nameHash != null) { __nameHash = rawWeapon.nameHash; }; - if (typeof rawWeapon.hash != 'undefined' && rawWeapon.hash != null) { __hash = rawWeapon.hash; }; - if (typeof rawWeapon.clipSize != 'undefined' && rawWeapon.clipSize != null) { __clipSize = rawWeapon.clipSize; }; - if (typeof rawWeapon.group != 'undefined' && rawWeapon.group != null) { __group = rawWeapon.group; }; - if (typeof rawWeapon.model != 'undefined' && rawWeapon.model != null) { __model = rawWeapon.model; }; - if (typeof rawWeapon.ammo != 'undefined' && rawWeapon.ammo != null) { __ammo = rawWeapon.ammo; }; - if (typeof rawWeapon.gxtName != 'undefined' && rawWeapon.gxtName != null) { __gxtName = rawWeapon.gxtName; }; - if (typeof rawWeapon.gxtDescription != 'undefined' && rawWeapon.gxtDescription != null) { __gxtDescription = rawWeapon.gxtDescription; }; - - if (typeof rawWeapon.components != 'undefined' && rawWeapon.components != null) { - for(let i2 = 0; i2 < rawWeapon.components.length; i2++) { - let __components__nameHash = 'unknown'; - let __components__isDefault = false; - - if (typeof rawWeapon.components[i2] != 'undefined' && rawWeapon.components[i2] != null && typeof rawWeapon.components[i2].nameHash != 'undefined' && rawWeapon.components[i2].nameHash != null) { __components__nameHash = rawWeapon.components[i2].nameHash; }; - if (typeof rawWeapon.components[i2] != 'undefined' && rawWeapon.components[i2] != null && typeof rawWeapon.components[i2].isDefault != 'undefined' && rawWeapon.components[i2].isDefault != null) { __components__isDefault = rawWeapon.components[i2].isDefault; }; - - let __component = null; - - if (typeof components != 'undefined' && components != null && typeof components[__components__nameHash] != 'undefined' && components[__components__nameHash] != null) { __component = components[__components__nameHash]; }; - - if (__component != null) { - let __componentObject = { - id: __components__nameHash, - hash: __component.hash, - model: __component.model, - gxtName: __component.gxtName, - gxtDescription: __component.gxtDescription, - __type: __component.__type, - type: __component.type, - default: __components__isDefault - }; - - __components.push(__componentObject); - } - } - - let __ammoObject = null; - - if (typeof ammos != 'undefined' && ammos != null && typeof ammos[__ammo] != 'undefined' && ammos[__ammo] != null) { __ammoObject = ammos[__ammo]; }; - - let __name = __nameHash.toLowerCase(); - - __name = __name.replace('weapon_', ''); - __name = __name.replace('gadget_', ''); - __name = __name.replace('vehicle_', ''); - - if (__group == 'unknown' || __group == '' || __group == null || __group == 'NULL') { __group = null; }; - if (__model == 'unknown' || __model == '' || __model == null || __model == 'NULL') { __model = null; }; - - if (__group != null) { __group = __group.toLowerCase(); } - if (__group != null) { __group = __group.replace('group_', ''); } - - if (__group != null) { - const groupName = capitalize(__group) - - if (typeof groups[groupName] != 'undefined' && groups[groupName] != null) { - groups[groupName].weapons.push(__nameHash); - } else { - groups[groupName] = { id: __group, weapons: [ __nameHash ], name: 'x_(CR(), \'core\', \'' + __group.toLowerCase() + '\')x' }; - } - } - - weapons[__name] = { - id: __nameHash, - hash: __hash, - clipSize: __clipSize, - group: __group, - model: __model, - ammo: __ammoObject, - gxtName: __gxtName, - gxtDescription: __gxtDescription, - components: __components, - hasAttachments: __components != null && __components.length > 0, - numberOfAttachments: __components != null ? __components.length : 0, - name: 'x_(CR(), \'core\', \'' + __nameHash.toLowerCase() + '\')x' - }; - }; - } -} - -// Create export directory if not exsits -if (!fs.existsSync(__dirname + '/export')) { fs.mkdirSync(__dirname + '/export'); }; - -// Transform object to lua -const weaponConfigFile = json2lua.fromObject(weapons); -const groupConfigFile = json2lua.fromObject(groups); - -const options = { quotemark: 'single', useTabs: true, linebreakMultipleAssignments: true, lineWidth: 20 }; - -// Format strings to formatter / pretty lua files -let formattedWeaponConfigFile = formatText('Config.Weapons = ' + weaponConfigFile, options); -let formatteAmmoConfigFile = formatText('Config.WeaponAmmos = ' + ammoConfigFile, options); -let formatteComponentConfigFile = formatText('Config.WeaponComponents = ' + componentConfigFile, options); -let formatteGroupConfigFile = formatText('Config.WeaponCategories = ' + groupConfigFile, options); - -function fixFormatedLua(input) { - input = input.replace(/"x_\(/g, '_('); - input = input.replace(/\'x_\(/g, '_('); - input = input.replace(/\)x"/g, ')'); - input = input.replace(/\)x\'/g, ')'); - - input = input.replace(/\['id'\]/g, 'id'); - input = input.replace(/\['hash'\]/g, 'hash'); - input = input.replace(/\['model'\]/g, 'model'); - input = input.replace(/\['gxtName'\]/g, 'gxtName'); - input = input.replace(/\['gxtDescription'\]/g, 'gxtDescription'); - input = input.replace(/\['__type'\]/g, '__type'); - input = input.replace(/\['type'\]/g, 'type'); - input = input.replace(/\['default'\]/g, 'default'); - input = input.replace(/\['clipSize'\]/g, 'clipSize'); - input = input.replace(/\['group'\]/g, 'category'); - input = input.replace(/\['ammo'\]/g, 'ammo'); - input = input.replace(/\['components'\]/g, 'components'); - input = input.replace(/\['hasAttachments'\]/g, 'hasAttachments'); - input = input.replace(/\['numberOfAttachments'\]/g, 'numberOfAttachments'); - input = input.replace(/\['name'\]/g, 'name'); - input = input.replace(/\['max'\]/g, 'max'); - input = input.replace(/\['weapons'\]/g, 'weapons'); - - return input -} - -// Replace placeholders -formattedWeaponConfigFile = fixFormatedLua(formattedWeaponConfigFile); -formatteAmmoConfigFile = fixFormatedLua(formatteAmmoConfigFile); -formatteComponentConfigFile = fixFormatedLua(formatteComponentConfigFile); -formatteGroupConfigFile = fixFormatedLua(formatteGroupConfigFile); - -// Save generated lua files -fs.writeFileSync(__dirname + '/export/weapon_config.lua', formattedWeaponConfigFile); -fs.writeFileSync(__dirname + '/export/weapon_ammo_config.lua', formatteAmmoConfigFile); -fs.writeFileSync(__dirname + '/export/weapon_component_config.lua', formatteComponentConfigFile); -fs.writeFileSync(__dirname + '/export/weapon_category_config.lua', formatteGroupConfigFile); - -// Let user know that files has been generated -console.log('FILES GENERATED!!!'); \ No newline at end of file diff --git a/tools/package-lock.json b/tools/package-lock.json deleted file mode 100644 index 6072eda..0000000 --- a/tools/package-lock.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "name": "corev-framework", - "version": "1.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@appguru/luafmt": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/@appguru/luafmt/-/luafmt-1.4.3.tgz", - "integrity": "sha512-YeVANBwXzsOMxbVnaysuMbOwzecMZ5WqSM/qAb5AO9Y7Wla/hdRZDzwl8PiiKtkIDTQa9WdzqzbX/fQpltRtpA==", - "requires": { - "luaparse": "^0.3.0", - "luon": "^1.2.6", - "lustils": "^1.0.2" - } - }, - "@types/commander": { - "version": "2.12.2", - "resolved": "https://registry.npmjs.org/@types/commander/-/commander-2.12.2.tgz", - "integrity": "sha512-0QEFiR8ljcHp9bAbWxecjVRuAMr16ivPiGOw6KFQBVrVd0RQIcM3xKdRisH2EDWgVWujiYtHwhSkSUoAAGzH7Q==", - "requires": { - "commander": "*" - } - }, - "@types/diff": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/@types/diff/-/diff-3.5.3.tgz", - "integrity": "sha512-YrLagYnL+tfrgM7bQ5yW34pi5cg9pmh5Gbq2Lmuuh+zh0ZjmK2fU3896PtlpJT3IDG2rdkoG30biHJepgIsMnw==" - }, - "@types/get-stdin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/get-stdin/-/get-stdin-5.0.1.tgz", - "integrity": "sha1-Rq+8rwnpT+Alr6B66ZSsMWitvfM=", - "requires": { - "@types/node": "*" - } - }, - "@types/node": { - "version": "14.11.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.2.tgz", - "integrity": "sha512-jiE3QIxJ8JLNcb1Ps6rDbysDhN4xa8DJJvuC9prr6w+1tIh+QAbYyNF3tyiZNLDBIuBCf4KEcV2UvQm/V60xfA==" - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" - }, - "get-stdin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz", - "integrity": "sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=" - }, - "json2lua": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/json2lua/-/json2lua-0.3.3.tgz", - "integrity": "sha512-c8vrc7+lEDwoLMngnPXAzfa9SMUIySnvhdgR8rZ2/+QTNYBGGzT1zhorlBR67/LoBV8gsm8PIbDwyiaExQcaWA==", - "requires": { - "lodash": "^4.17.15" - } - }, - "lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", - "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" - }, - "lua-fmt": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/lua-fmt/-/lua-fmt-2.6.0.tgz", - "integrity": "sha1-75rAVz0dpzMNygnAIsOaM67TR6M=", - "requires": { - "@types/commander": "^2.3.31", - "@types/diff": "^3.2.0", - "@types/get-stdin": "^5.0.0", - "commander": "^2.9.0", - "diff": "^3.3.0", - "get-stdin": "^5.0.1", - "luaparse": "github:oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" - }, - "dependencies": { - "luaparse": { - "version": "github:oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802", - "from": "github:oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802" - } - } - }, - "lua-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lua-json/-/lua-json-1.0.0.tgz", - "integrity": "sha512-TrMvRPvrbOoPbEY79mIdZsMxwcEpzcUQ5iy9Vir6BmCOV9yOSkA3jHTFZklN1OUyx6F9o/dMLLS/Y6Urb063YQ==", - "requires": { - "lodash": "^4.17.11", - "luaparse": "^0.2.1" - }, - "dependencies": { - "luaparse": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/luaparse/-/luaparse-0.2.1.tgz", - "integrity": "sha1-qo9WEysN6X0388mRqd9C4OF/ZWw=" - } - } - }, - "luaparse": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/luaparse/-/luaparse-0.3.0.tgz", - "integrity": "sha512-hrRXc3QJfZ0BfgOGgNfFaKM01zCjSP2y000WOG4jwl3s06vKzODIfqJ3QKSm64mS52ROpnRnfi756jJbDr59fw==" - }, - "luon": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/luon/-/luon-1.2.6.tgz", - "integrity": "sha512-ATf51Ztg+XhOJHONphg+yh9ZMbGmRVWOggpiLXT0af010CIjJFAu+/wqKmKHuGwpjwSv04oo81HuKbDZ2c0JyA==", - "requires": { - "lustils": ">= 1.0.2" - } - }, - "lustils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lustils/-/lustils-1.0.2.tgz", - "integrity": "sha512-YnCXFRj6prZX2f7rVCfA3U/yw6z7D0YYoy0Os60jlGUhaAYTRHheH0T7X3squDGArJ9+WLtt/1b/wy5eAREBZg==" - } - } -} diff --git a/tools/package.json b/tools/package.json deleted file mode 100644 index 79d7832..0000000 --- a/tools/package.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "corev-framework", - "version": "1.0.0", - "description": "Custom FiveM Framework developed by ThymonA", - "main": "framework.js", - "scripts": { - "run": "node framework.js" - }, - "repository": { - "type": "git", - "url": "https://git.arens.io/ThymonA/corev-framework" - }, - "keywords": [ - "corv", - "framework", - "corev", - "framework", - "fivem", - "thymona", - "tigodevelopment", - "tools" - ], - "author": "ThymonA", - "license": "GPL-3.0-or-later", - "dependencies": { - "@appguru/luafmt": "^1.4.3", - "json2lua": "^0.3.3", - "lua-fmt": "^2.6.0", - "lua-json": "^1.0.0" - } -} diff --git a/vendors/async.lua b/vendors/async.lua deleted file mode 100644 index 9a69222..0000000 --- a/vendors/async.lua +++ /dev/null @@ -1,114 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitLab: https://git.arens.io/ThymonA/corev-framework/ --- GitHub: https://github.com/ThymonA/CoreV-Framework/ --- License: GNU General Public License v3.0 --- https://choosealicense.com/licenses/gpl-3.0/ --- Author: Thymon Arens --- Name: CoreV --- Version: 1.0.0 --- Description: Custom FiveM Framework ------------------------ [ CoreV ] ----------------------- -async = class('async') - ---- Set default values -async:set { - createThread = Citizen.CreateThread -} - ---- Run a function parallel from each other ---- @param func function Executable function ---- @param params table Parameters ---- @param cb function Callback function -function async:parallel(func, params, cb) - if (#params == 0 and params == {}) then - if (cb ~= nil) then cb({}) end - return - end - - local remaining, results = #params, {} - - if (remaining == 0) then - for _, __ in pairs(params or {}) do - remaining = remaining + 1 - end - end - - if (remaining == 0) then - if (cb ~= nil) then cb(results) end - else - for _, param in pairs(params or {}) do - self.createThread(function() - func(param, function(result) - table.insert(results, result) - - remaining = remaining - 1; - - if (remaining == 0) then - if (cb ~= nil) then cb(results) end - end - end, _) - end) - end - end -end - ---- Run a function parallel from each other with max number of threads ---- @param func function Executable function ---- @param params table Parameters ---- @param limit number Limiter max number of executing threads ---- @param cb function Callback function -function async:parallelLimit(func, params, limit, cb) - if (#params == 0) then - if (cb ~= nil) then cb({}) end - return - end - - local remaining, running, results = #params, 0, {} - - local function processQueue() - if (remaining <= 0) then - return - end - - while running < limit and remaining > 0 do - local paramIndex = (#params - remaining) + 1 - - running = running + 1 - - func(params[paramIndex], function(result) - table.insert(results, result) - - remaining = remaining - 1 - running = running - 1 - - if (remaining == 0) then - if (cb ~= nil) then cb(results) end - end - end) - end - - self.createThread(processQueue) - end - - self.createThread(processQueue) -end - ---- Run a function after each other in a series ---- @param func function Executable function ---- @param params table Parameters ---- @param cb function Callback function -function async:series(func, params, cb) - self:parallelLimit(func, params, 1, cb) -end - ---- Add async as module when available -Citizen.CreateThread(function() - while true do - if (addModule ~= nil and type(addModule) == 'function') then - addModule('async', async) - return - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/vendors/class.lua b/vendors/class.lua deleted file mode 100644 index 2b4cea2..0000000 --- a/vendors/class.lua +++ /dev/null @@ -1,244 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- ɢɪᴛʜᴜʙ: https://github.com/Yonaba/30log --- ʟɪᴄᴇɴꜱᴇ: MIT License --- ᴅᴇᴠᴇʟᴏᴘᴇʀ: Yonaba --- ᴘʀᴏᴊᴇᴄᴛ: 30log --- ᴠᴇʀꜱɪᴏɴ: 1.3.0 --- ᴅᴇꜱᴄʀɪᴘᴛɪᴏɴ: library for object orientation in Lua ------------------------ [ CoreV ] ----------------------- - -local assert = assert -local pairs = pairs -local type = type -local tostring = tostring -local setmetatable = setmetatable - -local _class -local baseMt = {} -local _instances = setmetatable({},{__mode = 'k'}) -local _classes = setmetatable({},{__mode = 'k'}) - -local function assert_call_from_class(class, method) - assert(_classes[class], ('Wrong method call. Expected class:%s.'):format(method)) -end - -local function assert_call_from_instance(instance, method) - assert(_instances[instance], ('Wrong method call. Expected instance:%s.'):format(method)) -end - -local function bind(f, v) - return function(...) return f(v, ...) end -end - -local default_filter = function() return true end - -local function deep_copy(t, dest, aType) - t = t or {} - local r = dest or {} - for k,v in pairs(t) do - if aType ~= nil and type(v) == aType then - r[k] = (type(v) == 'table') - and ((_classes[v] or _instances[v]) and v or deep_copy(v)) - or v - elseif aType == nil then - r[k] = (type(v) == 'table') - and k~= '__index' and ((_classes[v] or _instances[v]) and v or deep_copy(v)) - or v - end - end - return r -end - -local function instantiate(call_init, self, ...) - assert_call_from_class(self, 'new(...) or class(...)') - local instance = {class = self} - _instances[instance] = tostring(instance) - deep_copy(self, instance, 'table') - instance.__index = nil - instance.mixins = nil - instance.__subclasses = nil - instance.__instances = nil - setmetatable(instance,self) - if call_init and self.init then - if type(self.init) == 'table' then - deep_copy(self.init, instance) - else - self.init(instance, ...) - end - end - return instance -end - -local function extend(self, name, extra_params) - assert_call_from_class(self, 'extend(...)') - local heir = {} - _classes[heir] = tostring(heir) - self.__subclasses[heir] = true - deep_copy(extra_params, deep_copy(self, heir)) - heir.name = extra_params and extra_params.name or name - heir.__class = extra_params and extra_params.name or name - heir.__index = heir - heir.super = self - heir.mixins = {} - return setmetatable(heir,self) -end - -baseMt = { - __call = function (self,...) return self:new(...) end, - - __tostring = function(self,...) - if _instances[self] then - return ("instance of '%s' (%s)"):format(rawget(self.class,'name') - or '?', _instances[self]) - end - return _classes[self] - and ("class '%s' (%s)"):format(rawget(self,'name') - or '?', - _classes[self]) or self - end -} - -_classes[baseMt] = tostring(baseMt) -setmetatable(baseMt, {__tostring = baseMt.__tostring}) - -local class = { - isClass = function(t) return not not _classes[t] end, - isInstance = function(t) return not not _instances[t] end, -} - -_class = function(name, attr) - local c = deep_copy(attr) - _classes[c] = tostring(c) - c.name = name or c.name - c.__class = name or c.name - c.__tostring = baseMt.__tostring - c.__call = baseMt.__call - c.new = bind(instantiate, true) - c.create = bind(instantiate, false) - c.extend = extend - c.__index = c - - c.mixins = setmetatable({},{__mode = 'k'}) - c.__instances = setmetatable({},{__mode = 'k'}) - c.__subclasses = setmetatable({},{__mode = 'k'}) - - c.subclasses = function(self, filter, ...) - assert_call_from_class(self, 'subclasses(class)') - filter = filter or default_filter - local subclasses = {} - for class in pairs(_classes) do - if class ~= baseMt and class:subclassOf(self) and filter(class,...) then - subclasses[#subclasses + 1] = class - end - end - return subclasses - end - - c.instances = function(self, filter, ...) - assert_call_from_class(self, 'instances(class)') - filter = filter or default_filter - local instances = {} - for instance in pairs(_instances) do - if instance:instanceOf(self) and filter(instance, ...) then - instances[#instances + 1] = instance - end - end - return instances - end - - c.subclassOf = function(self, superclass) - assert_call_from_class(self, 'subclassOf(superclass)') - assert(class.isClass(superclass), 'Wrong argument given to method "subclassOf()". Expected a class.') - local super = self.super - while super do - if super == superclass then return true end - super = super.super - end - return false - end - - c.classOf = function(self, subclass) - assert_call_from_class(self, 'classOf(subclass)') - assert(class.isClass(subclass), 'Wrong argument given to method "classOf()". Expected a class.') - return subclass:subclassOf(self) - end - - c.instanceOf = function(self, fromclass) - assert_call_from_instance(self, 'instanceOf(class)') - assert(class.isClass(fromclass), 'Wrong argument given to method "instanceOf()". Expected a class.') - return ((self.class == fromclass) or (self.class:subclassOf(fromclass))) - end - - c.cast = function(self, toclass) - assert_call_from_instance(self, 'instanceOf(class)') - assert(class.isClass(toclass), 'Wrong argument given to method "cast()". Expected a class.') - setmetatable(self, toclass) - self.class = toclass - return self - end - - c.with = function(self,...) - assert_call_from_class(self, 'with(mixin)') - for _, mixin in ipairs({...}) do - assert(self.mixins[mixin] ~= true, ('Attempted to include a mixin which was already included in %s'):format(tostring(self))) - self.mixins[mixin] = true - deep_copy(mixin, self, 'function') - end - return self - end - - c.includes = function(self, mixin) - assert_call_from_class(self,'includes(mixin)') - return not not (self.mixins[mixin] or (self.super and self.super:includes(mixin))) - end - - c.without = function(self, ...) - assert_call_from_class(self, 'without(mixin)') - for _, mixin in ipairs({...}) do - assert(self.mixins[mixin] == true, ('Attempted to remove a mixin which is not included in %s'):format(tostring(self))) - local classes = self:subclasses() - classes[#classes + 1] = self - for _, class in ipairs(classes) do - for method_name, method in pairs(mixin) do - if type(method) == 'function' then - class[method_name] = nil - end - end - end - self.mixins[mixin] = nil - end - return self - end - - c.set = function(self, prop, value) - if not value and type(prop) == 'table' then - for k, v in pairs(prop) do - rawset(self, k, v) - end - else - rawset(self, prop, value) - end - end - - return setmetatable(c, baseMt) -end - -local function _type(value) - local rawType = type(value) - - if (rawType ~= 'table') then - return rawType - end - - if (value.__class) then - return value.__class - end - - return rawType -end - --- FiveM manipulation -_ENV.class = setmetatable(class,{__call = function(_,...) return _class(...) end }) -_G.class = setmetatable(class,{__call = function(_,...) return _class(...) end }) -_ENV.type = _type -_G.type = _type \ No newline at end of file diff --git a/vendors/entityiter.lua b/vendors/entityiter.lua deleted file mode 100644 index 05e8439..0000000 --- a/vendors/entityiter.lua +++ /dev/null @@ -1,114 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- ɢɪᴛʜᴜʙ: https://gist.github.com/IllidanS4/9865ed17f60576425369fc1da70259b2 --- ʟɪᴄᴇɴꜱᴇ: MIT License --- ᴅᴇᴠᴇʟᴏᴘᴇʀ: IllidanS4 --- ᴘʀᴏᴊᴇᴄᴛ: entityiter.lua --- ᴠᴇʀꜱɪᴏɴ: 14 Jul 2017 --- ᴅᴇꜱᴄʀɪᴘᴛɪᴏɴ: Enumerator for FiveM entities ------------------------ [ CoreV ] ----------------------- -local entityEnumerator = { - __gc = function(enum) - if enum.destructor and enum.handle then - enum.destructor(enum.handle) - end - enum.destructor = nil - enum.handle = nil - end -} - -local function EnumerateEntities(initFunc, moveFunc, disposeFunc) - return coroutine.wrap(function() - local iter, id = initFunc() - if not id or id == 0 then - disposeFunc(iter) - return - end - - local enum = {handle = iter, destructor = disposeFunc} - setmetatable(enum, entityEnumerator) - - local next = true - repeat - coroutine.yield(id) - next, id = moveFunc(iter) - until not next - - enum.destructor, enum.handle = nil, nil - disposeFunc(iter) - end) -end - -function EnumerateEntityWithinDistance(entity, coords, maxDistance, entityType) - if (entityType) then - if (entityType == 'self') then return true, GetEntityCoords(entity) end - - if coords then - coords = vector3(coords.x, coords.y, coords.z) - else - local playerPed = PlayerPedId() - coords = GetEntityCoords(playerPed) - end - - local entityCoords = GetEntityCoords(entity) - local distance = #(coords - entityCoords) - - if distance <= maxDistance then - return true, entityCoords - end - - return false, nil - else - if coords then - coords = vector3(coords.x, coords.y, coords.z) - else - local playerPed = PlayerPedId() - coords = GetEntityCoords(playerPed) - end - - local entityCoords = GetEntityCoords(entity) - local distance = #(coords - entityCoords) - - if distance <= maxDistance then - return true, entityCoords - end - - return false, nil - end -end - -function EnumerateEntitiesWithinDistance(entities, isPlayerEntities, coords, maxDistance) - local nearbyEntities = {} - - if coords then - coords = vector3(coords.x, coords.y, coords.z) - else - local playerPed = PlayerPedId() - coords = GetEntityCoords(playerPed) - end - - for k,entity in pairs(entities) do - local distance = #(coords - GetEntityCoords(entity)) - - if distance <= maxDistance then - table.insert(nearbyEntities, isPlayerEntities and k or entity) - end - end - - return nearbyEntities -end - -function EnumerateObjects() - return EnumerateEntities(FindFirstObject, FindNextObject, EndFindObject) -end - -function EnumeratePeds() - return EnumerateEntities(FindFirstPed, FindNextPed, EndFindPed) -end - -function EnumerateVehicles() - return EnumerateEntities(FindFirstVehicle, FindNextVehicle, EndFindVehicle) -end - -function EnumeratePickups() - return EnumerateEntities(FindFirstPickup, FindNextPickup, EndFindPickup) -end \ No newline at end of file diff --git a/vendors/hashlist.lua b/vendors/hashlist.lua deleted file mode 100644 index d934884..0000000 --- a/vendors/hashlist.lua +++ /dev/null @@ -1,53899 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- ɢɪᴛʜᴜʙ: https://github.com/VenomXNL/ObjectNameFromHash --- ʟɪᴄᴇɴꜱᴇ: None --- ᴅᴇᴠᴇʟᴏᴘᴇʀ: VenomXNL --- ᴘʀᴏᴊᴇᴄᴛ:ObjectNameFromHash --- ᴠᴇʀꜱɪᴏɴ: 21 Feb 2019 --- ᴅᴇꜱᴄʀɪᴘᴛɪᴏɴ: A simple solution to get the object name from hash for a whopping 53859 objects :) ------------------------ [ CoreV ] ----------------------- -hashList = class('hashList') - -hashList:set { - list = { - ['-1267889684'] = { Name = '02gate3_l' }, - ['-832573324'] = { Name = 'a_c_boar' }, - ['1462895032'] = { Name = 'a_c_cat_01' }, - ['-1430839454'] = { Name = 'a_c_chickenhawk' }, - ['-1469565163'] = { Name = 'a_c_chimp' }, - ['351016938'] = { Name = 'a_c_chop' }, - ['1457690978'] = { Name = 'a_c_cormorant' }, - ['-50684386'] = { Name = 'a_c_cow' }, - ['1682622302'] = { Name = 'a_c_coyote' }, - ['402729631'] = { Name = 'a_c_crow' }, - ['-664053099'] = { Name = 'a_c_deer' }, - ['-1950698411'] = { Name = 'a_c_dolphin' }, - ['802685111'] = { Name = 'a_c_fish' }, - ['1794449327'] = { Name = 'a_c_hen' }, - ['1193010354'] = { Name = 'a_c_humpback' }, - ['1318032802'] = { Name = 'a_c_husky' }, - ['-1920284487'] = { Name = 'a_c_killerwhale' }, - ['307287994'] = { Name = 'a_c_mtlion' }, - ['-1323586730'] = { Name = 'a_c_pig' }, - ['111281960'] = { Name = 'a_c_pigeon' }, - ['1125994524'] = { Name = 'a_c_poodle' }, - ['1832265812'] = { Name = 'a_c_pug' }, - ['-541762431'] = { Name = 'a_c_rabbit_01' }, - ['-1011537562'] = { Name = 'a_c_rat' }, - ['882848737'] = { Name = 'a_c_retriever' }, - ['-1026527405'] = { Name = 'a_c_rhesus' }, - ['-1788665315'] = { Name = 'a_c_rottweiler' }, - ['-745300483'] = { Name = 'a_c_seagull' }, - ['1015224100'] = { Name = 'a_c_sharkhammer' }, - ['113504370'] = { Name = 'a_c_sharktiger' }, - ['1126154828'] = { Name = 'a_c_shepherd' }, - ['-1589092019'] = { Name = 'a_c_stingray' }, - ['-1384627013'] = { Name = 'a_c_westy' }, - ['808859815'] = { Name = 'a_f_m_beach_01' }, - ['-1106743555'] = { Name = 'a_f_m_bevhills_01' }, - ['-1606864033'] = { Name = 'a_f_m_bevhills_02' }, - ['1004114196'] = { Name = 'a_f_m_bodybuild_01' }, - ['532905404'] = { Name = 'a_f_m_business_02' }, - ['1699403886'] = { Name = 'a_f_m_downtown_01' }, - ['-1656894598'] = { Name = 'a_f_m_eastsa_01' }, - ['1674107025'] = { Name = 'a_f_m_eastsa_02' }, - ['-88831029'] = { Name = 'a_f_m_fatbla_01' }, - ['-1244692252'] = { Name = 'a_f_m_fatcult_01' }, - ['951767867'] = { Name = 'a_f_m_fatwhite_01' }, - ['1388848350'] = { Name = 'a_f_m_ktown_01' }, - ['1090617681'] = { Name = 'a_f_m_ktown_02' }, - ['379310561'] = { Name = 'a_f_m_prolhost_01' }, - ['-569505431'] = { Name = 'a_f_m_salton_01' }, - ['-1332260293'] = { Name = 'a_f_m_skidrow_01' }, - ['1951946145'] = { Name = 'a_f_m_soucent_01' }, - ['-215821512'] = { Name = 'a_f_m_soucent_02' }, - ['-840346158'] = { Name = 'a_f_m_soucentmc_01' }, - ['1347814329'] = { Name = 'a_f_m_tourist_01' }, - ['1224306523'] = { Name = 'a_f_m_tramp_01' }, - ['-1935621530'] = { Name = 'a_f_m_trampbeac_01' }, - ['1640504453'] = { Name = 'a_f_o_genstreet_01' }, - ['-1160266880'] = { Name = 'a_f_o_indian_01' }, - ['1204772502'] = { Name = 'a_f_o_ktown_01' }, - ['-855671414'] = { Name = 'a_f_o_salton_01' }, - ['1039800368'] = { Name = 'a_f_o_soucent_01' }, - ['-1519524074'] = { Name = 'a_f_o_soucent_02' }, - ['-945854168'] = { Name = 'a_f_y_beach_01' }, - ['1146800212'] = { Name = 'a_f_y_bevhills_01' }, - ['1546450936'] = { Name = 'a_f_y_bevhills_02' }, - ['549978415'] = { Name = 'a_f_y_bevhills_03' }, - ['920595805'] = { Name = 'a_f_y_bevhills_04' }, - ['664399832'] = { Name = 'a_f_y_business_01' }, - ['826475330'] = { Name = 'a_f_y_business_02' }, - ['-1366884940'] = { Name = 'a_f_y_business_03' }, - ['-1211756494'] = { Name = 'a_f_y_business_04' }, - ['-173013091'] = { Name = 'a_f_y_eastsa_01' }, - ['70821038'] = { Name = 'a_f_y_eastsa_02' }, - ['1371553700'] = { Name = 'a_f_y_eastsa_03' }, - ['1755064960'] = { Name = 'a_f_y_epsilon_01' }, - ['1348537411'] = { Name = 'a_f_y_femaleagent' }, - ['1165780219'] = { Name = 'a_f_y_fitness_01' }, - ['331645324'] = { Name = 'a_f_y_fitness_02' }, - ['793439294'] = { Name = 'a_f_y_genhot_01' }, - ['2111372120'] = { Name = 'a_f_y_golfer_01' }, - ['813893651'] = { Name = 'a_f_y_hiker_01' }, - ['343259175'] = { Name = 'a_f_y_hippie_01' }, - ['-2109222095'] = { Name = 'a_f_y_hipster_01' }, - ['-1745486195'] = { Name = 'a_f_y_hipster_02' }, - ['-1514497514'] = { Name = 'a_f_y_hipster_03' }, - ['429425116'] = { Name = 'a_f_y_hipster_04' }, - ['153984193'] = { Name = 'a_f_y_indian_01' }, - ['-619494093'] = { Name = 'a_f_y_juggalo_01' }, - ['-951490775'] = { Name = 'a_f_y_runner_01' }, - ['1064866854'] = { Name = 'a_f_y_rurmeth_01' }, - ['-614546432'] = { Name = 'a_f_y_scdressy_01' }, - ['1767892582'] = { Name = 'a_f_y_skater_01' }, - ['744758650'] = { Name = 'a_f_y_soucent_01' }, - ['1519319503'] = { Name = 'a_f_y_soucent_02' }, - ['-2018356203'] = { Name = 'a_f_y_soucent_03' }, - ['1426880966'] = { Name = 'a_f_y_tennis_01' }, - ['-1661836925'] = { Name = 'a_f_y_topless_01' }, - ['1446741360'] = { Name = 'a_f_y_tourist_01' }, - ['-1859912896'] = { Name = 'a_f_y_tourist_02' }, - ['435429221'] = { Name = 'a_f_y_vinewood_01' }, - ['-625565461'] = { Name = 'a_f_y_vinewood_02' }, - ['933092024'] = { Name = 'a_f_y_vinewood_03' }, - ['-85696186'] = { Name = 'a_f_y_vinewood_04' }, - ['-1004861906'] = { Name = 'a_f_y_yoga_01' }, - ['1413662315'] = { Name = 'a_m_m_acult_01' }, - ['-781039234'] = { Name = 'a_m_m_afriamer_01' }, - ['1077785853'] = { Name = 'a_m_m_beach_01' }, - ['2021631368'] = { Name = 'a_m_m_beach_02' }, - ['1423699487'] = { Name = 'a_m_m_bevhills_01' }, - ['1068876755'] = { Name = 'a_m_m_bevhills_02' }, - ['2120901815'] = { Name = 'a_m_m_business_01' }, - ['-106498753'] = { Name = 'a_m_m_eastsa_01' }, - ['131961260'] = { Name = 'a_m_m_eastsa_02' }, - ['-1806291497'] = { Name = 'a_m_m_farmer_01' }, - ['1641152947'] = { Name = 'a_m_m_fatlatin_01' }, - ['115168927'] = { Name = 'a_m_m_genfat_01' }, - ['330231874'] = { Name = 'a_m_m_genfat_02' }, - ['-1444213182'] = { Name = 'a_m_m_golfer_01' }, - ['1809430156'] = { Name = 'a_m_m_hasjew_01' }, - ['1822107721'] = { Name = 'a_m_m_hillbilly_01' }, - ['2064532783'] = { Name = 'a_m_m_hillbilly_02' }, - ['-573920724'] = { Name = 'a_m_m_indian_01' }, - ['-782401935'] = { Name = 'a_m_m_ktown_01' }, - ['803106487'] = { Name = 'a_m_m_malibu_01' }, - ['-578715987'] = { Name = 'a_m_m_mexcntry_01' }, - ['-1302522190'] = { Name = 'a_m_m_mexlabor_01' }, - ['1746653202'] = { Name = 'a_m_m_og_boss_01' }, - ['-322270187'] = { Name = 'a_m_m_paparazzi_01' }, - ['-1445349730'] = { Name = 'a_m_m_polynesian_01' }, - ['-1760377969'] = { Name = 'a_m_m_prolhost_01' }, - ['1001210244'] = { Name = 'a_m_m_rurmeth_01' }, - ['1328415626'] = { Name = 'a_m_m_salton_01' }, - ['1626646295'] = { Name = 'a_m_m_salton_02' }, - ['-1299428795'] = { Name = 'a_m_m_salton_03' }, - ['-1773858377'] = { Name = 'a_m_m_salton_04' }, - ['-640198516'] = { Name = 'a_m_m_skater_01' }, - ['32417469'] = { Name = 'a_m_m_skidrow_01' }, - ['193817059'] = { Name = 'a_m_m_socenlat_01' }, - ['1750583735'] = { Name = 'a_m_m_soucent_01' }, - ['-1620232223'] = { Name = 'a_m_m_soucent_02' }, - ['-1948675910'] = { Name = 'a_m_m_soucent_03' }, - ['-1023672578'] = { Name = 'a_m_m_soucent_04' }, - ['-1029146878'] = { Name = 'a_m_m_stlat_02' }, - ['1416254276'] = { Name = 'a_m_m_tennis_01' }, - ['-929103484'] = { Name = 'a_m_m_tourist_01' }, - ['516505552'] = { Name = 'a_m_m_tramp_01' }, - ['1404403376'] = { Name = 'a_m_m_trampbeac_01' }, - ['-521758348'] = { Name = 'a_m_m_tranvest_01' }, - ['-150026812'] = { Name = 'a_m_m_tranvest_02' }, - ['1430544400'] = { Name = 'a_m_o_acult_01' }, - ['1268862154'] = { Name = 'a_m_o_acult_02' }, - ['-2077764712'] = { Name = 'a_m_o_beach_01' }, - ['-1386944600'] = { Name = 'a_m_o_genstreet_01' }, - ['355916122'] = { Name = 'a_m_o_ktown_01' }, - ['539004493'] = { Name = 'a_m_o_salton_01' }, - ['718836251'] = { Name = 'a_m_o_soucent_01' }, - ['1082572151'] = { Name = 'a_m_o_soucent_02' }, - ['238213328'] = { Name = 'a_m_o_soucent_03' }, - ['390939205'] = { Name = 'a_m_o_tramp_01' }, - ['-1251702741'] = { Name = 'a_m_y_acult_01' }, - ['-2132435154'] = { Name = 'a_m_y_acult_02' }, - ['-771835772'] = { Name = 'a_m_y_beach_01' }, - ['600300561'] = { Name = 'a_m_y_beach_02' }, - ['-408329255'] = { Name = 'a_m_y_beach_03' }, - ['2114544056'] = { Name = 'a_m_y_beachvesp_01' }, - ['-900269486'] = { Name = 'a_m_y_beachvesp_02' }, - ['1982350912'] = { Name = 'a_m_y_bevhills_01' }, - ['1720428295'] = { Name = 'a_m_y_bevhills_02' }, - ['933205398'] = { Name = 'a_m_y_breakdance_01' }, - ['-1697435671'] = { Name = 'a_m_y_busicas_01' }, - ['-912318012'] = { Name = 'a_m_y_business_01' }, - ['-1280051738'] = { Name = 'a_m_y_business_02' }, - ['-1589423867'] = { Name = 'a_m_y_business_03' }, - ['-37334073'] = { Name = 'a_m_y_cyclist_01' }, - ['-12678997'] = { Name = 'a_m_y_dhill_01' }, - ['766375082'] = { Name = 'a_m_y_downtown_01' }, - ['-1538846349'] = { Name = 'a_m_y_eastsa_01' }, - ['377976310'] = { Name = 'a_m_y_eastsa_02' }, - ['2010389054'] = { Name = 'a_m_y_epsilon_01' }, - ['-1434255461'] = { Name = 'a_m_y_epsilon_02' }, - ['-775102410'] = { Name = 'a_m_y_gay_01' }, - ['-1519253631'] = { Name = 'a_m_y_gay_02' }, - ['-1736970383'] = { Name = 'a_m_y_genstreet_01' }, - ['891398354'] = { Name = 'a_m_y_genstreet_02' }, - ['-685776591'] = { Name = 'a_m_y_golfer_01' }, - ['-512913663'] = { Name = 'a_m_y_hasjew_01' }, - ['1358380044'] = { Name = 'a_m_y_hiker_01' }, - ['2097407511'] = { Name = 'a_m_y_hippy_01' }, - ['587703123'] = { Name = 'a_m_y_hipster_01' }, - ['349505262'] = { Name = 'a_m_y_hipster_02' }, - ['1312913862'] = { Name = 'a_m_y_hipster_03' }, - ['706935758'] = { Name = 'a_m_y_indian_01' }, - ['767028979'] = { Name = 'a_m_y_jetski_01' }, - ['-1849016788'] = { Name = 'a_m_y_juggalo_01' }, - ['452351020'] = { Name = 'a_m_y_ktown_01' }, - ['696250687'] = { Name = 'a_m_y_ktown_02' }, - ['321657486'] = { Name = 'a_m_y_latino_01' }, - ['1768677545'] = { Name = 'a_m_y_methhead_01' }, - ['810804565'] = { Name = 'a_m_y_mexthug_01' }, - ['1694362237'] = { Name = 'a_m_y_motox_01' }, - ['2007797722'] = { Name = 'a_m_y_motox_02' }, - ['1264920838'] = { Name = 'a_m_y_musclbeac_01' }, - ['-920443780'] = { Name = 'a_m_y_musclbeac_02' }, - ['-2088436577'] = { Name = 'a_m_y_polynesian_01' }, - ['-178150202'] = { Name = 'a_m_y_roadcyc_01' }, - ['623927022'] = { Name = 'a_m_y_runner_01' }, - ['-2076336881'] = { Name = 'a_m_y_runner_02' }, - ['-681546704'] = { Name = 'a_m_y_salton_01' }, - ['-1044093321'] = { Name = 'a_m_y_skater_01' }, - ['-1342520604'] = { Name = 'a_m_y_skater_02' }, - ['-417940021'] = { Name = 'a_m_y_soucent_01' }, - ['-1398552374'] = { Name = 'a_m_y_soucent_02' }, - ['-1007618204'] = { Name = 'a_m_y_soucent_03' }, - ['-1976105999'] = { Name = 'a_m_y_soucent_04' }, - ['-812470807'] = { Name = 'a_m_y_stbla_01' }, - ['-1731772337'] = { Name = 'a_m_y_stbla_02' }, - ['-2039163396'] = { Name = 'a_m_y_stlat_01' }, - ['605602864'] = { Name = 'a_m_y_stwhi_01' }, - ['919005580'] = { Name = 'a_m_y_stwhi_02' }, - ['-1222037748'] = { Name = 'a_m_y_sunbathe_01' }, - ['-356333586'] = { Name = 'a_m_y_surfer_01' }, - ['-1047300121'] = { Name = 'a_m_y_vindouche_01' }, - ['1264851357'] = { Name = 'a_m_y_vinewood_01' }, - ['1561705728'] = { Name = 'a_m_y_vinewood_02' }, - ['534725268'] = { Name = 'a_m_y_vinewood_03' }, - ['835315305'] = { Name = 'a_m_y_vinewood_04' }, - ['-1425378987'] = { Name = 'a_m_y_yoga_01' }, - ['-1216765807'] = { Name = 'adder' }, - ['1283517198'] = { Name = 'airbus' }, - ['1560980623'] = { Name = 'airtug' }, - ['1672195559'] = { Name = 'akuma' }, - ['767087018'] = { Name = 'alpha' }, - ['1171614426'] = { Name = 'ambulance' }, - ['837858166'] = { Name = 'annihilator' }, - ['63938961'] = { Name = 'ap1_01_a_aeriala' }, - ['-199425492'] = { Name = 'ap1_01_a_aerialb' }, - ['2086703506'] = { Name = 'ap1_01_a_ap_cargo_hanr' }, - ['2017046934'] = { Name = 'ap1_01_a_ap1_01_rails_00' }, - ['-423850342'] = { Name = 'ap1_01_a_ap1_01_rails_01' }, - ['-728831425'] = { Name = 'ap1_01_a_ap1_01_rails_02' }, - ['-1046887339'] = { Name = 'ap1_01_a_ap1_01_rails_03' }, - ['-1320213568'] = { Name = 'ap1_01_a_ap1_01_rails_04' }, - ['915222090'] = { Name = 'ap1_01_a_ap1_01_rails_05' }, - ['616794807'] = { Name = 'ap1_01_a_ap1_01_rails_06' }, - ['325478381'] = { Name = 'ap1_01_a_ap1_01_rails_07' }, - ['115101554'] = { Name = 'ap1_01_a_ap1_01_roofbar' }, - ['-743675684'] = { Name = 'ap1_01_a_ap1_01a_dec00' }, - ['-916499390'] = { Name = 'ap1_01_a_ap1_01a_dec01' }, - ['-274980677'] = { Name = 'ap1_01_a_ap1_01a_dec02' }, - ['-433451561'] = { Name = 'ap1_01_a_ap1_01a_dec03' }, - ['780017278'] = { Name = 'ap1_01_a_ap1_01a_dec04' }, - ['481589995'] = { Name = 'ap1_01_a_ap1_01a_dec05' }, - ['-1587837877'] = { Name = 'ap1_01_a_ap1_01a_dec06' }, - ['-269909075'] = { Name = 'ap1_01_a_ap1_01a_glue_02' }, - ['-195274111'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_002' }, - ['-433144282'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_003' }, - ['286200810'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_004' }, - ['47740793'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_005' }, - ['-1952806657'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_006' }, - ['2110844264'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_007' }, - ['-1481817820'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_008' }, - ['1809462809'] = { Name = 'ap1_01_a_ap1_01a_ladder_hd_01' }, - ['1146432631'] = { Name = 'ap1_01_a_ap1_01a_weed_01' }, - ['379179265'] = { Name = 'ap1_01_a_ap1_01a_weed_02' }, - ['701003614'] = { Name = 'ap1_01_a_ap1_01a_weed_03' }, - ['-90826502'] = { Name = 'ap1_01_a_ap1_01a_weed_04' }, - ['-806108234'] = { Name = 'ap1_01_a_ap1_01a_weed_05' }, - ['633750261'] = { Name = 'ap1_01_a_ap1_gm_grnd00' }, - ['922805610'] = { Name = 'ap1_01_a_ap1_gm_grnd01' }, - ['135140741'] = { Name = 'ap1_01_a_ap1_gm_grnd012' }, - ['1409854841'] = { Name = 'ap1_01_a_ap1_gm_grnd013' }, - ['1853707362'] = { Name = 'ap1_01_a_ap1_gm_grnd03' }, - ['145590464'] = { Name = 'ap1_01_a_ap1_gm_grnd04' }, - ['743100410'] = { Name = 'ap1_01_a_ap1_gm_grnd06' }, - ['-1518943660'] = { Name = 'ap1_01_a_ap1_gm_grnd07' }, - ['1358600541'] = { Name = 'ap1_01_a_ap1_gm_grnd09' }, - ['-1767463468'] = { Name = 'ap1_01_a_ap1_gm_grnd11' }, - ['-1968564048'] = { Name = 'ap1_01_a_aprds01' }, - ['2021913700'] = { Name = 'ap1_01_a_aprds02' }, - ['536953696'] = { Name = 'ap1_01_a_aprds04' }, - ['315304120'] = { Name = 'ap1_01_a_aprds07' }, - ['-844489097'] = { Name = 'ap1_01_a_aprds08' }, - ['-281386601'] = { Name = 'ap1_01_a_aprds09' }, - ['-241166262'] = { Name = 'ap1_01_a_arrowline' }, - ['-1355871399'] = { Name = 'ap1_01_a_arrows_003' }, - ['-1116330009'] = { Name = 'ap1_01_a_arrows_004' }, - ['56308604'] = { Name = 'ap1_01_a_arrows_005' }, - ['-1601131610'] = { Name = 'ap1_01_a_arrows_01' }, - ['96368132'] = { Name = 'ap1_01_a_arrows_02' }, - ['-76686228'] = { Name = 'ap1_01_a_beachs00' }, - ['-1439450631'] = { Name = 'ap1_01_a_beachs01' }, - ['-671935113'] = { Name = 'ap1_01_a_beachs02' }, - ['-2077289645'] = { Name = 'ap1_01_a_centreline_004' }, - ['-1826508488'] = { Name = 'ap1_01_a_centreline_005' }, - ['-447556195'] = { Name = 'ap1_01_a_centreline_006' }, - ['-119669581'] = { Name = 'ap1_01_a_centreline_007' }, - ['-1157201659'] = { Name = 'ap1_01_a_centreline_008' }, - ['-833149018'] = { Name = 'ap1_01_a_centreline_009' }, - ['-671822330'] = { Name = 'ap1_01_a_centreline_01' }, - ['2035576706'] = { Name = 'ap1_01_a_centreline_010' }, - ['-432575861'] = { Name = 'ap1_01_a_centreline_02' }, - ['-1183903493'] = { Name = 'ap1_01_a_centreline_03' }, - ['-2024351444'] = { Name = 'ap1_01_a_firedecal' }, - ['-354660070'] = { Name = 'ap1_01_a_foam01' }, - ['-58985383'] = { Name = 'ap1_01_a_foam02' }, - ['-684938821'] = { Name = 'ap1_01_a_foam03' }, - ['-2060941868'] = { Name = 'ap1_01_a_foam04' }, - ['-1359357578'] = { Name = 'ap1_01_a_foam05' }, - ['-371404997'] = { Name = 'ap1_01_a_foam06' }, - ['-600095932'] = { Name = 'ap1_01_a_glue_01d' }, - ['1663822809'] = { Name = 'ap1_01_a_glue_01d2' }, - ['977843617'] = { Name = 'ap1_01_a_glue_01d2bv' }, - ['1706264838'] = { Name = 'ap1_01_a_glue_01d2cv' }, - ['-772133182'] = { Name = 'ap1_01_a_glue_01e' }, - ['-819268007'] = { Name = 'ap1_01_a_gm_grnd014' }, - ['968393305'] = { Name = 'ap1_01_a_grnlite_b_018' }, - ['-1338610776'] = { Name = 'ap1_01_a_grnlite_b_1' }, - ['1544405491'] = { Name = 'ap1_01_a_grnlite_b_10' }, - ['157686945'] = { Name = 'ap1_01_a_grnlite_b_11' }, - ['445955838'] = { Name = 'ap1_01_a_grnlite_b_12' }, - ['675502683'] = { Name = 'ap1_01_a_grnlite_b_13' }, - ['883585833'] = { Name = 'ap1_01_a_grnlite_b_14' }, - ['-1052996529'] = { Name = 'ap1_01_a_grnlite_b_15' }, - ['-803919360'] = { Name = 'ap1_01_a_grnlite_b_16' }, - ['-564181356'] = { Name = 'ap1_01_a_grnlite_b_17' }, - ['-1983472288'] = { Name = 'ap1_01_a_grnlite_b_18' }, - ['-1744487971'] = { Name = 'ap1_01_a_grnlite_b_19' }, - ['2112947998'] = { Name = 'ap1_01_a_grnlite_b_2' }, - ['854945439'] = { Name = 'ap1_01_a_grnlite_b_20' }, - ['-1128299979'] = { Name = 'ap1_01_a_grnlite_b_21' }, - ['-830921304'] = { Name = 'ap1_01_a_grnlite_b_22' }, - ['-399812340'] = { Name = 'ap1_01_a_grnlite_b_23' }, - ['-98697999'] = { Name = 'ap1_01_a_grnlite_b_24' }, - ['-2082992029'] = { Name = 'ap1_01_a_grnlite_b_25' }, - ['-1583395855'] = { Name = 'ap1_01_a_grnlite_b_26' }, - ['-1288311010'] = { Name = 'ap1_01_a_grnlite_b_27' }, - ['532433733'] = { Name = 'ap1_01_a_grnlite_b_28' }, - ['837087126'] = { Name = 'ap1_01_a_grnlite_b_29' }, - ['-1316131238'] = { Name = 'ap1_01_a_grnlite_b_3' }, - ['-941278824'] = { Name = 'ap1_01_a_grnlite_b_30' }, - ['-1164730635'] = { Name = 'ap1_01_a_grnlite_b_31' }, - ['-387712107'] = { Name = 'ap1_01_a_grnlite_b_32' }, - ['-626172120'] = { Name = 'ap1_01_a_grnlite_b_33' }, - ['-252310599'] = { Name = 'ap1_01_a_grnlite_b_34' }, - ['1655074588'] = { Name = 'ap1_01_a_grnlite_b_35' }, - ['208454310'] = { Name = 'ap1_01_a_grnlite_b_36' }, - ['-29153709'] = { Name = 'ap1_01_a_grnlite_b_37' }, - ['940546543'] = { Name = 'ap1_01_a_grnlite_b_38' }, - ['2138606129'] = { Name = 'ap1_01_a_grnlite_b_4' }, - ['1128206779'] = { Name = 'ap1_01_a_grnlite_b_5' }, - ['-1596601109'] = { Name = 'ap1_01_a_grnlite_b_6' }, - ['1757535424'] = { Name = 'ap1_01_a_grnlite_b_7' }, - ['1989638251'] = { Name = 'ap1_01_a_grnlite_b_8' }, - ['-30963827'] = { Name = 'ap1_01_a_grnlite_b_9' }, - ['121350140'] = { Name = 'ap1_01_a_grnlites007' }, - ['812972654'] = { Name = 'ap1_01_a_grnlites008' }, - ['1671651538'] = { Name = 'ap1_01_a_grnlites009' }, - ['755238251'] = { Name = 'ap1_01_a_grnlites01' }, - ['1251814062'] = { Name = 'ap1_01_a_grnlites010' }, - ['984976099'] = { Name = 'ap1_01_a_grnlites011' }, - ['-1378225878'] = { Name = 'ap1_01_a_grnlites013' }, - ['-2087543652'] = { Name = 'ap1_01_a_grnlites014' }, - ['1569121904'] = { Name = 'ap1_01_a_grnlites02' }, - ['-1823419889'] = { Name = 'ap1_01_a_grnlites03' }, - ['-1084378676'] = { Name = 'ap1_01_a_grnlites0gg' }, - ['-1578284045'] = { Name = 'ap1_01_a_keepclear' }, - ['-1397019196'] = { Name = 'ap1_01_a_lad00' }, - ['1976385501'] = { Name = 'ap1_01_a_lad01' }, - ['-935795521'] = { Name = 'ap1_01_a_lad02' }, - ['-15281554'] = { Name = 'ap1_01_a_lad03' }, - ['349240802'] = { Name = 'ap1_01_a_lad04' }, - ['-625842327'] = { Name = 'ap1_01_a_ladrdr' }, - ['532491217'] = { Name = 'ap1_01_a_nufb' }, - ['1559208681'] = { Name = 'ap1_01_a_nufb003' }, - ['1073394364'] = { Name = 'ap1_01_a_nufbbbb' }, - ['-1292794967'] = { Name = 'ap1_01_a_overlay01' }, - ['146353975'] = { Name = 'ap1_01_a_overlay02' }, - ['1072619329'] = { Name = 'ap1_01_a_overlay1' }, - ['-635265980'] = { Name = 'ap1_01_a_radaar' }, - ['544960257'] = { Name = 'ap1_01_a_radar_base' }, - ['-396006399'] = { Name = 'ap1_01_a_radar_baseb' }, - ['511980267'] = { Name = 'ap1_01_a_runw02' }, - ['1073182161'] = { Name = 'ap1_01_a_runw04' }, - ['-1673679856'] = { Name = 'ap1_01_a_runw23' }, - ['-1211496281'] = { Name = 'ap1_01_a_runwhite_01' }, - ['293288968'] = { Name = 'ap1_01_a_runwhite_02' }, - ['340607404'] = { Name = 'ap1_01_a_runwhite_03' }, - ['754097496'] = { Name = 'ap1_01_a_sechut_gary' }, - ['1305992242'] = { Name = 'ap1_01_a_skidz1' }, - ['738096498'] = { Name = 'ap1_01_a_skidz69' }, - ['1625256048'] = { Name = 'ap1_01_a_skidz69b' }, - ['-1980228255'] = { Name = 'ap1_01_a_skidz69fff' }, - ['-1008670195'] = { Name = 'ap1_01_a_thingy' }, - ['-963940317'] = { Name = 'ap1_01_a_towerrail' }, - ['-1764607603'] = { Name = 'ap1_01_a_towerwire' }, - ['-548074401'] = { Name = 'ap1_01_a_towerwirea' }, - ['-1104840832'] = { Name = 'ap1_01_a_unit2eevens001' }, - ['-1133112324'] = { Name = 'ap1_01_a_wettest' }, - ['-587939829'] = { Name = 'ap1_01_aolayy00' }, - ['409319148'] = { Name = 'ap1_01_aolayy01' }, - ['873754185'] = { Name = 'ap1_01_aolayy03' }, - ['642405045'] = { Name = 'ap1_01_aolayy04' }, - ['1631963311'] = { Name = 'ap1_01_aolayy05' }, - ['1418473276'] = { Name = 'ap1_01_aolayy06' }, - ['1877075431'] = { Name = 'ap1_01_aolayy08' }, - ['950990430'] = { Name = 'ap1_01_aolayy14' }, - ['152708144'] = { Name = 'ap1_01_b_ap1_01b_glue_01' }, - ['451266503'] = { Name = 'ap1_01_b_ap1_01b_glue_02' }, - ['-1225261079'] = { Name = 'ap1_01_b_ap1_01b_glue_03' }, - ['-1000826198'] = { Name = 'ap1_01_b_ap1_01b_glue_04' }, - ['-770263514'] = { Name = 'ap1_01_b_ap1_01b_glue_05' }, - ['-540257903'] = { Name = 'ap1_01_b_ap1_01b_glue_06' }, - ['2133135424'] = { Name = 'ap1_01_b_ap1_01b_glue_07' }, - ['-1927992288'] = { Name = 'ap1_01_b_ap1_01b_glue_08' }, - ['-1689270123'] = { Name = 'ap1_01_b_ap1_01b_glue_09' }, - ['-333810386'] = { Name = 'ap1_01_b_ap1_01b_weed_01' }, - ['2097190656'] = { Name = 'ap1_01_b_ap1_01b_weed_03' }, - ['-1359283468'] = { Name = 'ap1_01_b_ap1_01b_weed_04' }, - ['-166594151'] = { Name = 'ap1_01_b_ap1_gm_grnd02' }, - ['261570443'] = { Name = 'ap1_01_b_ap1_gm_grnd10' }, - ['198981629'] = { Name = 'ap1_01_b_ap1_gm_grnd13' }, - ['422236826'] = { Name = 'ap1_01_b_ap1_gm_grnd14' }, - ['779156774'] = { Name = 'ap1_01_b_ap1_gm_grnd15' }, - ['931973390'] = { Name = 'ap1_01_b_aprds05' }, - ['-1660775428'] = { Name = 'ap1_01_b_aprds06' }, - ['-236593223'] = { Name = 'ap1_01_b_barrier1' }, - ['-773495382'] = { Name = 'ap1_01_b_barrier1bb' }, - ['-993622661'] = { Name = 'ap1_01_b_barrier2' }, - ['-385921520'] = { Name = 'ap1_01_b_barrier5' }, - ['-574091616'] = { Name = 'ap1_01_b_bitofgrass' }, - ['1071507734'] = { Name = 'ap1_01_b_cablemesh1050743_thvy' }, - ['377224362'] = { Name = 'ap1_01_b_cablemesh1050744_thvy' }, - ['-1718844371'] = { Name = 'ap1_01_b_cablemesh1050745_thvy' }, - ['2030200176'] = { Name = 'ap1_01_b_cablemesh1050783_thvy' }, - ['-886469149'] = { Name = 'ap1_01_b_cablemesh1050784_thvy' }, - ['-1199202342'] = { Name = 'ap1_01_b_cablemesh1050785_thvy' }, - ['1164098344'] = { Name = 'ap1_01_b_cablemesh1050786_thvy' }, - ['-1960102530'] = { Name = 'ap1_01_b_cablemesh1050787_thvy' }, - ['-1459509694'] = { Name = 'ap1_01_b_cablemesh1050788_thvy' }, - ['393522195'] = { Name = 'ap1_01_b_cablemesh1050789_thvy' }, - ['-1820405012'] = { Name = 'ap1_01_b_cablemesh1050790_thvy' }, - ['-1114356002'] = { Name = 'ap1_01_b_cablemesh1050791_thvy' }, - ['-1187764228'] = { Name = 'ap1_01_b_cablemesh1050792_thvy' }, - ['-1580397730'] = { Name = 'ap1_01_b_cablemesh1050793_thvy' }, - ['1407291089'] = { Name = 'ap1_01_b_cablemesh1053527_thvy' }, - ['1942030602'] = { Name = 'ap1_01_b_cablemesh1053528_thvy' }, - ['1500062028'] = { Name = 'ap1_01_b_cablemesh1053529_thvy' }, - ['-548692727'] = { Name = 'ap1_01_b_cablemesh1053530_thvy' }, - ['164169428'] = { Name = 'ap1_01_b_cablemesh1053531_thvy' }, - ['1643778837'] = { Name = 'ap1_01_b_cablemesh1053532_thvy' }, - ['-1963596258'] = { Name = 'ap1_01_b_cablemesh1053533_thvy' }, - ['-1410410382'] = { Name = 'ap1_01_b_cablemesh1053534_thvy' }, - ['-1065699323'] = { Name = 'ap1_01_b_cablemesh1053535_thvy' }, - ['1488063181'] = { Name = 'ap1_01_b_cablemesh1053536_thvy' }, - ['1012116861'] = { Name = 'ap1_01_b_cablemesh1053537_thvy' }, - ['-2087117601'] = { Name = 'ap1_01_b_cablemesh1053538_thvy' }, - ['643725179'] = { Name = 'ap1_01_b_cablemesh1053539_thvy' }, - ['-2113130678'] = { Name = 'ap1_01_b_cablemesh1053540_thvy' }, - ['-1241596929'] = { Name = 'ap1_01_b_cablemesh1053541_thvy' }, - ['-1116056162'] = { Name = 'ap1_01_b_cablemesh1053542_thvy' }, - ['561566550'] = { Name = 'ap1_01_b_cablemesh1053543_thvy' }, - ['-1255694812'] = { Name = 'ap1_01_b_cablemesh1053544_thvy' }, - ['1500825353'] = { Name = 'ap1_01_b_cablemesh1053545_thvy' }, - ['722745785'] = { Name = 'ap1_01_b_cablemesh1053546_thvy' }, - ['-814243637'] = { Name = 'ap1_01_b_cablemesh1053547_thvy' }, - ['1085593944'] = { Name = 'ap1_01_b_cablemesh1053548_thvy' }, - ['1182629430'] = { Name = 'ap1_01_b_cablemesh1053647_thvy' }, - ['2116784985'] = { Name = 'ap1_01_b_cablemesh1053648_thvy' }, - ['263164250'] = { Name = 'ap1_01_b_cablemesh1053649_thvy' }, - ['2051660358'] = { Name = 'ap1_01_b_cablemesh1053650_thvy' }, - ['326013957'] = { Name = 'ap1_01_b_cablemesh1053651_thvy' }, - ['-312948035'] = { Name = 'ap1_01_b_cablemesh1053652_thvy' }, - ['-1863258069'] = { Name = 'ap1_01_b_cablemesh783716_thvy' }, - ['-361944479'] = { Name = 'ap1_01_b_cablemesh783941_thvy' }, - ['216142463'] = { Name = 'ap1_01_b_cablemesh783942_thvy' }, - ['1956293845'] = { Name = 'ap1_01_b_cablemesh783943_thvy' }, - ['978352379'] = { Name = 'ap1_01_b_cablemesh783944_thvy' }, - ['747911725'] = { Name = 'ap1_01_b_cablemesh783945_thvy' }, - ['-762213962'] = { Name = 'ap1_01_b_cablemesh783946_thvy' }, - ['-1114036754'] = { Name = 'ap1_01_b_cablemesh783947_thvy' }, - ['862872915'] = { Name = 'ap1_01_b_fizzy_hd_123' }, - ['2042786298'] = { Name = 'ap1_01_b_fizzy_hd_124' }, - ['1875926550'] = { Name = 'ap1_01_b_fizzy_hd_125' }, - ['-1776211273'] = { Name = 'ap1_01_b_fizzy_hd_126' }, - ['1435993460'] = { Name = 'ap1_01_b_fizzy_hd_ent_01' }, - ['-726924385'] = { Name = 'ap1_01_b_fizzy_hd_ent_02' }, - ['1195286407'] = { Name = 'ap1_01_b_frovely00' }, - ['1229890471'] = { Name = 'ap1_01_b_frovely01' }, - ['777690078'] = { Name = 'ap1_01_b_frovely011' }, - ['578868752'] = { Name = 'ap1_01_b_frovely02' }, - ['888142574'] = { Name = 'ap1_01_b_frovely03' }, - ['-1169115600'] = { Name = 'ap1_01_b_frovely03b' }, - ['-791934216'] = { Name = 'ap1_01_b_gm_grnd017b' }, - ['518104866'] = { Name = 'ap1_01_b_gm_grnd017c' }, - ['756827031'] = { Name = 'ap1_01_b_gm_grnd017d' }, - ['1572874375'] = { Name = 'ap1_01_b_gm_grnd017ds' }, - ['1526079398'] = { Name = 'ap1_01_b_gm_grnd017e' }, - ['-1223534652'] = { Name = 'ap1_01_b_gm_grnd017e002' }, - ['-1343680182'] = { Name = 'ap1_01_b_gm_grnd017e4' }, - ['-936019421'] = { Name = 'ap1_01_b_gm_grnd017f' }, - ['606627867'] = { Name = 'ap1_01_b_grnnu' }, - ['-1044312602'] = { Name = 'ap1_01_b_hangera_03' }, - ['-2100505616'] = { Name = 'ap1_01_b_hangera_03b' }, - ['795192611'] = { Name = 'ap1_01_b_hangera_03f' }, - ['658882799'] = { Name = 'ap1_01_b_hangeradet1' }, - ['1700609305'] = { Name = 'ap1_01_b_hangeradet2' }, - ['1205033307'] = { Name = 'ap1_01_b_hangerpipe' }, - ['684773309'] = { Name = 'ap1_01_b_hej00' }, - ['913992464'] = { Name = 'ap1_01_b_hej01' }, - ['1144882838'] = { Name = 'ap1_01_b_hej02' }, - ['1590733915'] = { Name = 'ap1_01_b_hejtop00' }, - ['1838303710'] = { Name = 'ap1_01_b_hejtop01' }, - ['-1823304354'] = { Name = 'ap1_01_b_hejtop02' }, - ['1515319512'] = { Name = 'ap1_01_b_helopad' }, - ['-1218260757'] = { Name = 'ap1_01_b_idfafads017' }, - ['-1062127786'] = { Name = 'ap1_01_b_idfafads8' }, - ['22233097'] = { Name = 'ap1_01_b_ivy00_noshad' }, - ['1815790348'] = { Name = 'ap1_01_b_ivy00_noshadb' }, - ['1867619058'] = { Name = 'ap1_01_b_ivy01' }, - ['-1175965666'] = { Name = 'ap1_01_b_ivy02' }, - ['-1878860716'] = { Name = 'ap1_01_b_ivy03' }, - ['-670110613'] = { Name = 'ap1_01_b_ivy04' }, - ['-1507391332'] = { Name = 'ap1_01_b_ivy05' }, - ['50838666'] = { Name = 'ap1_01_b_ivy06_noshad' }, - ['1171045676'] = { Name = 'ap1_01_b_ivy06_noshadb' }, - ['-2147335046'] = { Name = 'ap1_01_b_ivy07_noshad' }, - ['341415000'] = { Name = 'ap1_01_b_ivy08_noshad' }, - ['-800421071'] = { Name = 'ap1_01_b_ivy08_noshadb' }, - ['404749172'] = { Name = 'ap1_01_b_ivy09_noshad' }, - ['1580494178'] = { Name = 'ap1_01_b_ivy09_noshadb' }, - ['-1305501831'] = { Name = 'ap1_01_b_ivy10' }, - ['-1283680332'] = { Name = 'ap1_01_b_ivy11_noshad' }, - ['290058340'] = { Name = 'ap1_01_b_ivy11_noshadb' }, - ['230479506'] = { Name = 'ap1_01_b_ivy12' }, - ['-1319961123'] = { Name = 'ap1_01_b_ivy13_noshad' }, - ['1266112074'] = { Name = 'ap1_01_b_ivy14_noshad' }, - ['-2021419101'] = { Name = 'ap1_01_b_ivy14_noshadb' }, - ['375121876'] = { Name = 'ap1_01_b_ivy15' }, - ['-1181638893'] = { Name = 'ap1_01_b_line_01' }, - ['-405570666'] = { Name = 'ap1_01_b_line_02' }, - ['437772318'] = { Name = 'ap1_01_b_line_03' }, - ['-934396788'] = { Name = 'ap1_01_b_line_04' }, - ['1005797311'] = { Name = 'ap1_01_b_lsiaterm_bits' }, - ['230541877'] = { Name = 'ap1_01_b_lsiaterm_reflect' }, - ['-2034081885'] = { Name = 'ap1_01_b_lsiaterm_shell' }, - ['1368245520'] = { Name = 'ap1_01_b_nurod00' }, - ['1112024709'] = { Name = 'ap1_01_b_nurod01' }, - ['-1426327581'] = { Name = 'ap1_01_b_nurod04' }, - ['-1665016977'] = { Name = 'ap1_01_b_nurod05' }, - ['1869185215'] = { Name = 'ap1_01_b_nurod06' }, - ['1642784202'] = { Name = 'ap1_01_b_nurod07' }, - ['-518691819'] = { Name = 'ap1_01_b_nurod08' }, - ['-740865639'] = { Name = 'ap1_01_b_nurod09' }, - ['580118013'] = { Name = 'ap1_01_b_nurod11' }, - ['-1508053755'] = { Name = 'ap1_01_b_nurod12' }, - ['-1961969943'] = { Name = 'ap1_01_b_nurod13' }, - ['2101123909'] = { Name = 'ap1_01_b_nurod14' }, - ['1857486402'] = { Name = 'ap1_01_b_nurod15' }, - ['-304055157'] = { Name = 'ap1_01_b_nurod16' }, - ['-786152685'] = { Name = 'ap1_01_b_nurod17' }, - ['-1034574474'] = { Name = 'ap1_01_b_nurod18' }, - ['-1266775608'] = { Name = 'ap1_01_b_nurod19' }, - ['1524452511'] = { Name = 'ap1_01_b_nurod20' }, - ['-56913891'] = { Name = 'ap1_01_b_nurod21' }, - ['667966262'] = { Name = 'ap1_01_b_nurod21b' }, - ['-637190243'] = { Name = 'ap1_01_b_nurod21c' }, - ['2053079123'] = { Name = 'ap1_01_b_nurod21d' }, - ['-1398774572'] = { Name = 'ap1_01_b_nurod21e' }, - ['1228384596'] = { Name = 'ap1_01_b_nurod23' }, - ['1485522947'] = { Name = 'ap1_01_b_nurod24' }, - ['1187128433'] = { Name = 'ap1_01_b_nurod27' }, - ['-1272676552'] = { Name = 'ap1_01_b_nurod29' }, - ['316390285'] = { Name = 'ap1_01_b_nurod35' }, - ['1054741393'] = { Name = 'ap1_01_b_nurod36' }, - ['1890121510'] = { Name = 'ap1_01_b_nurod37' }, - ['-1755265895'] = { Name = 'ap1_01_b_nurod38' }, - ['1240410547'] = { Name = 'ap1_01_b_nurod39' }, - ['-381605381'] = { Name = 'ap1_01_b_nurod39bb' }, - ['1365463498'] = { Name = 'ap1_01_b_nurod39bbv' }, - ['-941177489'] = { Name = 'ap1_01_b_nurod39bbv2' }, - ['1073648830'] = { Name = 'ap1_01_b_nurod40' }, - ['1882503091'] = { Name = 'ap1_01_b_pills' }, - ['-1266340899'] = { Name = 'ap1_01_b_pudal00' }, - ['-280649419'] = { Name = 'ap1_01_b_pudal01' }, - ['-990098269'] = { Name = 'ap1_01_b_pudal02' }, - ['-340548365'] = { Name = 'ap1_01_b_refl_18' }, - ['-1957878262'] = { Name = 'ap1_01_b_roadshadow' }, - ['811748476'] = { Name = 'ap1_01_b_runw52' }, - ['-1799482066'] = { Name = 'ap1_01_b_runw53' }, - ['134151086'] = { Name = 'ap1_01_b_runw56' }, - ['2056415291'] = { Name = 'ap1_01_b_runw62' }, - ['-1302178098'] = { Name = 'ap1_01_b_runw75' }, - ['1717992428'] = { Name = 'ap1_01_b_shad_ducttape' }, - ['-1100328386'] = { Name = 'ap1_01_b_shadmesh00' }, - ['2069089302'] = { Name = 'ap1_01_b_shadmesh01' }, - ['-1985582917'] = { Name = 'ap1_01_b_shadmesh02' }, - ['-1319225306'] = { Name = 'ap1_01_b_shadmesh03' }, - ['-132397664'] = { Name = 'ap1_01_b_shadmesh04' }, - ['-840306371'] = { Name = 'ap1_01_b_shadmesh05' }, - ['-735215246'] = { Name = 'ap1_01_b_shadowonly' }, - ['-1433353926'] = { Name = 'ap1_01_b_sidebit005' }, - ['-23697354'] = { Name = 'ap1_01_b_sidebit1' }, - ['903910967'] = { Name = 'ap1_01_b_sidebit1b001' }, - ['-2087404543'] = { Name = 'ap1_01_b_sidebit1b001bb' }, - ['1660423971'] = { Name = 'ap1_01_b_sidebit1f' }, - ['-2114138126'] = { Name = 'ap1_01_b_sidebit1f2' }, - ['494995076'] = { Name = 'ap1_01_b_sidebit1fx' }, - ['1639699039'] = { Name = 'ap1_01_b_sidebit1spl' }, - ['-1985662238'] = { Name = 'ap1_01_b_sidebit1spl2' }, - ['1983921902'] = { Name = 'ap1_01_b_sidebit1vv' }, - ['-230764665'] = { Name = 'ap1_01_b_sidebit4' }, - ['341906174'] = { Name = 'ap1_01_b_sidebit4b' }, - ['1081805986'] = { Name = 'ap1_01_b_sidebit4b001' }, - ['-1248792841'] = { Name = 'ap1_01_b_sidebit4b001b' }, - ['-1896299454'] = { Name = 'ap1_01_b_sidepipe1' }, - ['-509908594'] = { Name = 'ap1_01_b_sidepipe2' }, - ['1774008716'] = { Name = 'ap1_01_b_sign_airp_01a' }, - ['2035381613'] = { Name = 'ap1_01_b_sign_airp_01a02' }, - ['-590757906'] = { Name = 'ap1_01_b_sign_fizza_01' }, - ['1440017301'] = { Name = 'ap1_01_b_sign2_fizzb' }, - ['-219657516'] = { Name = 'ap1_01_b_subway' }, - ['1608381895'] = { Name = 'ap1_01_b_swallgh_ladder' }, - ['-781854505'] = { Name = 'ap1_01_b_swallgh' }, - ['785062579'] = { Name = 'ap1_01_b_swallgh001' }, - ['-133878488'] = { Name = 'ap1_01_b_swallgh004' }, - ['-1281416951'] = { Name = 'ap1_01_b_swallgh013' }, - ['-699144582'] = { Name = 'ap1_01_b_swallgh016' }, - ['-1465002613'] = { Name = 'ap1_01_b_sweed_a' }, - ['616680881'] = { Name = 'ap1_01_b_sweed_b' }, - ['-1415500393'] = { Name = 'ap1_01_b_tr4_wlbtys' }, - ['-1569355450'] = { Name = 'ap1_01_b_unit2d002' }, - ['-150952966'] = { Name = 'ap1_01_b_unit2ee001' }, - ['-807651606'] = { Name = 'ap1_01_b_unit2ee001v' }, - ['-2142637987'] = { Name = 'ap1_01_b_unit2ee001vx' }, - ['864132351'] = { Name = 'ap1_01_b_unit2ee003' }, - ['1346518644'] = { Name = 'ap1_01_b_unit2ee003b' }, - ['-1531195828'] = { Name = 'ap1_01_b_unit2eevens001' }, - ['1415982586'] = { Name = 'ap1_01_b_unit2eevens002' }, - ['1332936831'] = { Name = 'ap1_01_b_unit2groovea' }, - ['1638704370'] = { Name = 'ap1_01_b_unit2grooveb' }, - ['592814580'] = { Name = 'ap1_01_b_wedys00' }, - ['328204905'] = { Name = 'ap1_01_b_wedys01' }, - ['-19277571'] = { Name = 'ap1_01_b_wedys02' }, - ['-1525144197'] = { Name = 'ap1_01_b_wedys03' }, - ['-602008698'] = { Name = 'ap1_01_b_wedys04' }, - ['275020818'] = { Name = 'ap1_01_b_wedys05' }, - ['1853263729'] = { Name = 'ap1_01_b_weedlies' }, - ['-559915664'] = { Name = 'ap1_01_b_weeds11' }, - ['1215675225'] = { Name = 'ap1_01_bwyweed104' }, - ['-369366369'] = { Name = 'ap1_01_c__ladder_003' }, - ['-617788158'] = { Name = 'ap1_01_c__ladder_004' }, - ['-981589596'] = { Name = 'ap1_01_c__ladder_005' }, - ['-1223129895'] = { Name = 'ap1_01_c__ladder_006' }, - ['-390993885'] = { Name = 'ap1_01_c__ladder_007' }, - ['-621327186'] = { Name = 'ap1_01_c__ladder_008' }, - ['-870535431'] = { Name = 'ap1_01_c__ladder_009' }, - ['-812095510'] = { Name = 'ap1_01_c__ladder_01' }, - ['-2065815539'] = { Name = 'ap1_01_c__ladder_010' }, - ['1557452875'] = { Name = 'ap1_01_c__ladder_011' }, - ['1671620071'] = { Name = 'ap1_01_c__ladder_012' }, - ['1079484241'] = { Name = 'ap1_01_c__ladder_013' }, - ['1313618746'] = { Name = 'ap1_01_c__ladder_014' }, - ['-1779545475'] = { Name = 'ap1_01_c__ladder_015' }, - ['-1130194963'] = { Name = 'ap1_01_c__ladder_016' }, - ['1902281062'] = { Name = 'ap1_01_c__ladder_017' }, - ['-2016301500'] = { Name = 'ap1_01_c__ladder_018' }, - ['507772926'] = { Name = 'ap1_01_c_ap1_01_d_plinth_010' }, - ['-739841211'] = { Name = 'ap1_01_c_ap1_01_d_plinth_011' }, - ['-124308315'] = { Name = 'ap1_01_c_ap1_01_d_plinth_012' }, - ['509739066'] = { Name = 'ap1_01_c_ap1_01_d_plinth_013' }, - ['1417505904'] = { Name = 'ap1_01_c_ap1_01_d_plinth_014' }, - ['228875967'] = { Name = 'ap1_01_c_ap1_01_d_plinth_015' }, - ['818586891'] = { Name = 'ap1_01_c_ap1_01_d_plinth_016' }, - ['-1712720056'] = { Name = 'ap1_01_c_ap1_01_d_plinth_017' }, - ['-2025369085'] = { Name = 'ap1_01_c_ap1_01_d_plinth_018' }, - ['1150930089'] = { Name = 'ap1_01_c_ap1_01_d_plinth_019' }, - ['-643866943'] = { Name = 'ap1_01_c_ap1_01_daolayy06' }, - ['-2014083062'] = { Name = 'ap1_01_c_ap1_01_daolayy06b' }, - ['-691679382'] = { Name = 'ap1_01_c_ap1_01cstwal018' }, - ['-804110117'] = { Name = 'ap1_01_c_ap1_01cstwal041' }, - ['2115808397'] = { Name = 'ap1_01_c_ap1_01cstwal066' }, - ['1744928855'] = { Name = 'ap1_01_c_ap1_01cstwal067' }, - ['1437723138'] = { Name = 'ap1_01_c_aprds004' }, - ['-1626184285'] = { Name = 'ap1_01_c_aprds004bb' }, - ['-1948765969'] = { Name = 'ap1_01_c_aprds004cc' }, - ['-1662955039'] = { Name = 'ap1_01_c_aprds004dd' }, - ['49838717'] = { Name = 'ap1_01_c_arrow_01' }, - ['-384088381'] = { Name = 'ap1_01_c_arrow_02' }, - ['608350716'] = { Name = 'ap1_01_c_bch2_00' }, - ['-7869922'] = { Name = 'ap1_01_c_bitch00' }, - ['-230076511'] = { Name = 'ap1_01_c_bitch01' }, - ['-386155258'] = { Name = 'ap1_01_c_bitch02' }, - ['1066034873'] = { Name = 'ap1_01_c_bitch03_' }, - ['-840464674'] = { Name = 'ap1_01_c_bitch03' }, - ['1184856136'] = { Name = 'ap1_01_c_bitch04' }, - ['957799735'] = { Name = 'ap1_01_c_bitch05' }, - ['1593364268'] = { Name = 'ap1_01_c_bld4_det01' }, - ['-283823934'] = { Name = 'ap1_01_c_bld4_det01a' }, - ['-520973187'] = { Name = 'ap1_01_c_bld4_det01b' }, - ['-51131265'] = { Name = 'ap1_01_c_bld4_det01c' }, - ['1200824417'] = { Name = 'ap1_01_c_bld4_det02' }, - ['1156193039'] = { Name = 'ap1_01_c_bld4_det03' }, - ['-1029695883'] = { Name = 'ap1_01_c_bld4_det04' }, - ['-1329237312'] = { Name = 'ap1_01_c_bld4_det05' }, - ['733629051'] = { Name = 'ap1_01_c_crackweed00' }, - ['1585065982'] = { Name = 'ap1_01_c_crackweed01' }, - ['-829747170'] = { Name = 'ap1_01_c_crackweed02' }, - ['-1664213594'] = { Name = 'ap1_01_c_foam01' }, - ['1721151800'] = { Name = 'ap1_01_c_foam02' }, - ['-1186343267'] = { Name = 'ap1_01_c_foam03' }, - ['530654030'] = { Name = 'ap1_01_c_foam06' }, - ['-597585030'] = { Name = 'ap1_01_c_gapfiller' }, - ['261646468'] = { Name = 'ap1_01_c_gm_grnd017' }, - ['2004678443'] = { Name = 'ap1_01_c_grass_02' }, - ['1044543423'] = { Name = 'ap1_01_c_grass_02bb' }, - ['791406182'] = { Name = 'ap1_01_c_grass_03' }, - ['-549202529'] = { Name = 'ap1_01_c_grass_03bb' }, - ['451591652'] = { Name = 'ap1_01_c_grass_04' }, - ['-1112337321'] = { Name = 'ap1_01_c_grass_0422' }, - ['35288214'] = { Name = 'ap1_01_c_hd_overlays00' }, - ['268046421'] = { Name = 'ap1_01_c_hd_overlays01' }, - ['-574313493'] = { Name = 'ap1_01_c_hd_overlays02' }, - ['-209791137'] = { Name = 'ap1_01_c_hd_overlays03' }, - ['-1947006963'] = { Name = 'ap1_01_c_hd_overlays04' }, - ['2047861831'] = { Name = 'ap1_01_c_hd_overlays05' }, - ['-1279207512'] = { Name = 'ap1_01_c_hd_overlays06' }, - ['-715351325'] = { Name = 'ap1_01_c_hd_overlays08' }, - ['-1020955023'] = { Name = 'ap1_01_c_hd_overlays09' }, - ['1077081118'] = { Name = 'ap1_01_c_hd_overlays10' }, - ['250679707'] = { Name = 'ap1_01_c_hd_overlays11' }, - ['622083553'] = { Name = 'ap1_01_c_hd_overlays12' }, - ['-220374668'] = { Name = 'ap1_01_c_hd_overlays13' }, - ['2036754056'] = { Name = 'ap1_01_c_hd_overlays14' }, - ['-237613016'] = { Name = 'ap1_01_c_ld_overlays00' }, - ['1094577910'] = { Name = 'ap1_01_c_ld_overlays01' }, - ['242551141'] = { Name = 'ap1_01_c_ld_overlays02' }, - ['1571923929'] = { Name = 'ap1_01_c_ld_overlays03' }, - ['730973086'] = { Name = 'ap1_01_c_ld_overlays04' }, - ['1373081645'] = { Name = 'ap1_01_c_ld_overlays05' }, - ['-2079034202'] = { Name = 'ap1_01_c_ld_overlays06' }, - ['928242442'] = { Name = 'ap1_01_c_ld_overlays07' }, - ['-1951726637'] = { Name = 'ap1_01_c_ld_overlays09' }, - ['1682747775'] = { Name = 'ap1_01_c_ld_overlays11' }, - ['1450579410'] = { Name = 'ap1_01_c_ld_overlays12' }, - ['-945424336'] = { Name = 'ap1_01_c_ld_overlays13' }, - ['-1176740707'] = { Name = 'ap1_01_c_ld_overlays14' }, - ['1995712432'] = { Name = 'ap1_01_c_line_00' }, - ['1748175406'] = { Name = 'ap1_01_c_line_01' }, - ['-629510469'] = { Name = 'ap1_01_c_line_02' }, - ['1515843244'] = { Name = 'ap1_01_c_line_03' }, - ['1285346098'] = { Name = 'ap1_01_c_line_04' }, - ['1054750645'] = { Name = 'ap1_01_c_line_05' }, - ['791156809'] = { Name = 'ap1_01_c_line_06' }, - ['-336948841'] = { Name = 'ap1_01_c_line_07' }, - ['-2125203381'] = { Name = 'ap1_01_c_nu_blnd' }, - ['-140909889'] = { Name = 'ap1_01_c_nu_blnd2' }, - ['-842035413'] = { Name = 'ap1_01_c_nu_blnd3' }, - ['-530860989'] = { Name = 'ap1_01_c_nu_blnd4' }, - ['-1867150490'] = { Name = 'ap1_01_c_nuruns03' }, - ['43446051'] = { Name = 'ap1_01_c_nuruns04' }, - ['-1407237575'] = { Name = 'ap1_01_c_nuruns05' }, - ['-170143082'] = { Name = 'ap1_01_c_puds_00' }, - ['-1666146239'] = { Name = 'ap1_01_c_puds_01' }, - ['-1705206887'] = { Name = 'ap1_01_c_puds_02' }, - ['-787248894'] = { Name = 'ap1_01_c_puds_03' }, - ['1054172292'] = { Name = 'ap1_01_c_puds_04' }, - ['101872383'] = { Name = 'ap1_01_c_puds_05' }, - ['-479973981'] = { Name = 'ap1_01_c_puds_06' }, - ['-376737143'] = { Name = 'ap1_01_c_runolay11' }, - ['-1977463565'] = { Name = 'ap1_01_c_runw122' }, - ['-81679784'] = { Name = 'ap1_01_c_runw133' }, - ['1324044782'] = { Name = 'ap1_01_c_runw134' }, - ['815666516'] = { Name = 'ap1_01_c_runw136' }, - ['880003954'] = { Name = 'ap1_01_c_runw65' }, - ['-646113062'] = { Name = 'ap1_01_c_runw78' }, - ['983920965'] = { Name = 'ap1_01_c_stairs03457' }, - ['1229027850'] = { Name = 'ap1_01_c_stairs054' }, - ['1888590874'] = { Name = 'ap1_01_c_stairs07' }, - ['707252279'] = { Name = 'ap1_01_c_stairs345' }, - ['-1349014547'] = { Name = 'ap1_01_c_sthbld1' }, - ['-694374604'] = { Name = 'ap1_01_c_sthbld3_int' }, - ['899135009'] = { Name = 'ap1_01_c_sthbld3_intc' }, - ['-1894782304'] = { Name = 'ap1_01_c_sthbld3_lines' }, - ['-1881641877'] = { Name = 'ap1_01_c_sthbld3' }, - ['-1228033225'] = { Name = 'ap1_01_c_sthbld3bbb' }, - ['809691381'] = { Name = 'ap1_01_c_sthbld4_deta' }, - ['-2120364042'] = { Name = 'ap1_01_c_sthbld4' }, - ['1170018649'] = { Name = 'ap1_01_c_sweeda' }, - ['-658552426'] = { Name = 'ap1_01_c_sweeda001' }, - ['-964942576'] = { Name = 'ap1_01_c_sweeda002' }, - ['1399073959'] = { Name = 'ap1_01_c_sweedb' }, - ['-1564521636'] = { Name = 'ap1_01_c_sweedc' }, - ['295032342'] = { Name = 'ap1_01_c_sweedc001' }, - ['-1356241872'] = { Name = 'ap1_01_c_sweedd' }, - ['366994563'] = { Name = 'ap1_01_c_sweedextra' }, - ['-1757861835'] = { Name = 'ap1_01_c_wallsupport' }, - ['868355920'] = { Name = 'ap1_01_c_weed_01' }, - ['2105582284'] = { Name = 'ap1_01_c_weed_02' }, - ['-1892137413'] = { Name = 'ap1_01_c_weed_03' }, - ['-686074368'] = { Name = 'ap1_01_c_weed_04' }, - ['-669176059'] = { Name = 'ap1_01_d__ladder_019' }, - ['866542346'] = { Name = 'ap1_01_d__ladder_020' }, - ['-554911336'] = { Name = 'ap1_01_d__ladder_021' }, - ['-793895653'] = { Name = 'ap1_01_d__ladder_022' }, - ['1350737090'] = { Name = 'ap1_01_d__ladder_023' }, - ['2051272772'] = { Name = 'ap1_01_d__ladder_024' }, - ['1846433753'] = { Name = 'ap1_01_d__ladder_025' }, - ['398830409'] = { Name = 'ap1_01_d__ladder_026' }, - ['1592739332'] = { Name = 'ap1_01_d_5_det' }, - ['1415136300'] = { Name = 'ap1_01_d_5_det2' }, - ['990979511'] = { Name = 'ap1_01_d_5_rail1' }, - ['1944590184'] = { Name = 'ap1_01_d_5_rail2' }, - ['-348506405'] = { Name = 'ap1_01_d_5' }, - ['-1458804786'] = { Name = 'ap1_01_d_ap1_01_c_overlay007bb' }, - ['-2090631144'] = { Name = 'ap1_01_d_ap1_01_stairs03457' }, - ['-362065112'] = { Name = 'ap1_01_d_ap1_01_stairs054' }, - ['-1436824517'] = { Name = 'ap1_01_d_ap1_01_stairs07' }, - ['1782689772'] = { Name = 'ap1_01_d_ap1_01_stairs345' }, - ['-1824260344'] = { Name = 'ap1_01_d_ap1_01d_fizzystair_hd' }, - ['-435977744'] = { Name = 'ap1_01_d_ap1_01d_ladder_01' }, - ['-1592021791'] = { Name = 'ap1_01_d_ap1overlay007bb' }, - ['289813942'] = { Name = 'ap1_01_d_aprds00' }, - ['847247401'] = { Name = 'ap1_01_d_aprds02' }, - ['1421065133'] = { Name = 'ap1_01_d_arrows_007' }, - ['-429575007'] = { Name = 'ap1_01_d_arrows_01' }, - ['-1616959718'] = { Name = 'ap1_01_d_arrows_02' }, - ['-1318565204'] = { Name = 'ap1_01_d_arrows_03' }, - ['1210759986'] = { Name = 'ap1_01_d_bch2_01' }, - ['1651208115'] = { Name = 'ap1_01_d_bch2_02' }, - ['569290137'] = { Name = 'ap1_01_d_bjjbld' }, - ['-96883717'] = { Name = 'ap1_01_d_bjjbldbbb' }, - ['-1847295823'] = { Name = 'ap1_01_d_bjjbldbbbbb' }, - ['-1866273280'] = { Name = 'ap1_01_d_blncst2' }, - ['-1027202250'] = { Name = 'ap1_01_d_blncst2a' }, - ['381701503'] = { Name = 'ap1_01_d_blockos1' }, - ['-1920814413'] = { Name = 'ap1_01_d_box_01' }, - ['1089345935'] = { Name = 'ap1_01_d_box_02' }, - ['-1290961464'] = { Name = 'ap1_01_d_box_03' }, - ['1478072657'] = { Name = 'ap1_01_d_bpipe1' }, - ['-968657501'] = { Name = 'ap1_01_d_bpipe2' }, - ['571190554'] = { Name = 'ap1_01_d_bpipe4' }, - ['-1546457161'] = { Name = 'ap1_01_d_coasta' }, - ['826788325'] = { Name = 'ap1_01_d_coasta2' }, - ['1113385999'] = { Name = 'ap1_01_d_coasta3' }, - ['1707880752'] = { Name = 'ap1_01_d_crackweed00' }, - ['-1201711531'] = { Name = 'ap1_01_d_crackweed01' }, - ['1647356413'] = { Name = 'ap1_01_d_crackweed02' }, - ['-1286157240'] = { Name = 'ap1_01_d_crackweed03' }, - ['-2043383292'] = { Name = 'ap1_01_d_crackweed04' }, - ['1474467169'] = { Name = 'ap1_01_d_crackweed05' }, - ['1683288312'] = { Name = 'ap1_01_d_dyndor00' }, - ['-99214212'] = { Name = 'ap1_01_d_dyndor01' }, - ['1186645273'] = { Name = 'ap1_01_d_ffu_pipe1' }, - ['863280781'] = { Name = 'ap1_01_d_ffu_pipe2' }, - ['-1657048551'] = { Name = 'ap1_01_d_ffu_pipe3' }, - ['775103637'] = { Name = 'ap1_01_d_ffuuuuff' }, - ['1992946661'] = { Name = 'ap1_01_d_ffuuuuffg' }, - ['512624835'] = { Name = 'ap1_01_d_foam_01' }, - ['-417916458'] = { Name = 'ap1_01_d_foam_02' }, - ['1012319316'] = { Name = 'ap1_01_d_foam_03' }, - ['158490252'] = { Name = 'ap1_01_d_foam_04' }, - ['415563057'] = { Name = 'ap1_01_d_foam_05' }, - ['523908199'] = { Name = 'ap1_01_d_grass_00' }, - ['1087927868'] = { Name = 'ap1_01_d_grass_00bb' }, - ['-314866225'] = { Name = 'ap1_01_d_grass_00bbd' }, - ['1664531551'] = { Name = 'ap1_01_d_grass_01' }, - ['-1371065731'] = { Name = 'ap1_01_d_grass_01bb' }, - ['-1669845279'] = { Name = 'ap1_01_d_grass_05' }, - ['-368096750'] = { Name = 'ap1_01_d_grass_06' }, - ['-1075448388'] = { Name = 'ap1_01_d_grass_07' }, - ['-407843731'] = { Name = 'ap1_01_d_grass_07ola' }, - ['-1918561989'] = { Name = 'ap1_01_d_grass_08' }, - ['-1729559445'] = { Name = 'ap1_01_d_grass_z' }, - ['1011299089'] = { Name = 'ap1_01_d_ladder_002' }, - ['2104046936'] = { Name = 'ap1_01_d_ladder_003' }, - ['-886746929'] = { Name = 'ap1_01_d_ladder_004' }, - ['-910310150'] = { Name = 'ap1_01_d_line_01' }, - ['-1015039874'] = { Name = 'ap1_01_d_line_02' }, - ['1381553706'] = { Name = 'ap1_01_d_line_03' }, - ['773492142'] = { Name = 'ap1_01_d_line_04' }, - ['1994694469'] = { Name = 'ap1_01_d_line_05' }, - ['1623028467'] = { Name = 'ap1_01_d_line_06' }, - ['-808417993'] = { Name = 'ap1_01_d_nublnd' }, - ['1839613160'] = { Name = 'ap1_01_d_nublnd2' }, - ['-689321394'] = { Name = 'ap1_01_d_nuruns00' }, - ['629893008'] = { Name = 'ap1_01_d_nuruns01' }, - ['-1646791240'] = { Name = 'ap1_01_d_plinth_00' }, - ['2130038039'] = { Name = 'ap1_01_d_plinth_005' }, - ['1640796869'] = { Name = 'ap1_01_d_plinth_006' }, - ['1401353782'] = { Name = 'ap1_01_d_plinth_007' }, - ['-1272432729'] = { Name = 'ap1_01_d_plinth_008' }, - ['-1503060951'] = { Name = 'ap1_01_d_plinth_009' }, - ['-1883186806'] = { Name = 'ap1_01_d_plinth_01' }, - ['2061643725'] = { Name = 'ap1_01_d_plinth_02' }, - ['1798574193'] = { Name = 'ap1_01_d_plinth_03' }, - ['-712547002'] = { Name = 'ap1_01_d_plinth_04' }, - ['-979284436'] = { Name = 'ap1_01_d_runlight_b_' }, - ['477365748'] = { Name = 'ap1_01_d_runlight_g_' }, - ['-57028672'] = { Name = 'ap1_01_d_runlight_r_' }, - ['-1504658386'] = { Name = 'ap1_01_d_runlight_y_' }, - ['-707991213'] = { Name = 'ap1_01_d_runw115' }, - ['-1300259007'] = { Name = 'ap1_01_d_runw127' }, - ['1099021959'] = { Name = 'ap1_01_d_runw131' }, - ['718967097'] = { Name = 'ap1_01_d_runw132' }, - ['1119024034'] = { Name = 'ap1_01_d_runw29' }, - ['1271044300'] = { Name = 'ap1_01_d_runw29b' }, - ['-1260429979'] = { Name = 'ap1_01_d_runw39' }, - ['-79842613'] = { Name = 'ap1_01_d_runw39b' }, - ['-1777164868'] = { Name = 'ap1_01_d_runw51' }, - ['-944235161'] = { Name = 'ap1_01_d_skidzcc007' }, - ['629778824'] = { Name = 'ap1_01_d_skidzcc05' }, - ['1848271595'] = { Name = 'ap1_01_d_smaltermcc' }, - ['-2039128817'] = { Name = 'ap1_01_d_smaltermint' }, - ['224990040'] = { Name = 'ap1_01_d_splots00' }, - ['530560965'] = { Name = 'ap1_01_d_splots01' }, - ['386386444'] = { Name = 'ap1_01_d_sthbld005' }, - ['-1206202371'] = { Name = 'ap1_01_d_sthbld3_int001' }, - ['1717014988'] = { Name = 'ap1_01_d_sthbld3_lines001' }, - ['-1903904858'] = { Name = 'ap1_01_d_sthbld3bbb001' }, - ['-984594871'] = { Name = 'ap1_01_d_sthbld4ffr' }, - ['-1790627328'] = { Name = 'ap1_01_d_sthbld4sss' }, - ['1276421298'] = { Name = 'ap1_01_d_wall_cap' }, - ['-782110585'] = { Name = 'ap1_01_d_weed_01' }, - ['-1535826617'] = { Name = 'ap1_01_d_wet00' }, - ['1454213561'] = { Name = 'ap1_01_d_wet01' }, - ['-2015925236'] = { Name = 'ap1_01_d_wet02' }, - ['-1696755180'] = { Name = 'ap1_01_d_wet03' }, - ['-844335183'] = { Name = 'ap1_01_d_wet04' }, - ['338073261'] = { Name = 'ap1_01_dcstwal025' }, - ['1066593669'] = { Name = 'ap1_01_dcstwal026' }, - ['984917676'] = { Name = 'ap1_01_dcstwal05' }, - ['-1852058399'] = { Name = 'ap1_01_dcstwal07' }, - ['219472273'] = { Name = 'ap1_02_airbridge1' }, - ['-983903698'] = { Name = 'ap1_02_airbridge2' }, - ['-1140736132'] = { Name = 'ap1_02_airbridge3' }, - ['-525498173'] = { Name = 'ap1_02_airbridge4' }, - ['1480196090'] = { Name = 'ap1_02_b16_f' }, - ['1840549866'] = { Name = 'ap1_02_b19lad' }, - ['904671736'] = { Name = 'ap1_02_bboard006' }, - ['-1728415725'] = { Name = 'ap1_02_bboard008' }, - ['-690130876'] = { Name = 'ap1_02_bboard010' }, - ['-2128591669'] = { Name = 'ap1_02_bboard011' }, - ['-478563442'] = { Name = 'ap1_02_bboard1' }, - ['-701851408'] = { Name = 'ap1_02_bboard2' }, - ['-1000049308'] = { Name = 'ap1_02_bboard3' }, - ['-1304047321'] = { Name = 'ap1_02_bboard4' }, - ['587986297'] = { Name = 'ap1_02_bld01' }, - ['288903634'] = { Name = 'ap1_02_bld02' }, - ['-1923374449'] = { Name = 'ap1_02_bld025' }, - ['-1361517175'] = { Name = 'ap1_02_bld027' }, - ['1441018785'] = { Name = 'ap1_02_bld029' }, - ['1457665417'] = { Name = 'ap1_02_bld02a' }, - ['1334562424'] = { Name = 'ap1_02_bld03' }, - ['-2126344795'] = { Name = 'ap1_02_bld030' }, - ['-1738589222'] = { Name = 'ap1_02_bld031' }, - ['2057109590'] = { Name = 'ap1_02_bld032' }, - ['-384574138'] = { Name = 'ap1_02_bld03b' }, - ['2067452028'] = { Name = 'ap1_02_bld04_bar' }, - ['627579981'] = { Name = 'ap1_02_bld04_lad00' }, - ['860928030'] = { Name = 'ap1_02_bld04_lad01' }, - ['-86161608'] = { Name = 'ap1_02_bld04_lad02' }, - ['151839639'] = { Name = 'ap1_02_bld04_lad03' }, - ['-446587839'] = { Name = 'ap1_02_bld04_lad04' }, - ['-206161686'] = { Name = 'ap1_02_bld04_lad05' }, - ['1033841311'] = { Name = 'ap1_02_bld04' }, - ['-457026689'] = { Name = 'ap1_02_bld041' }, - ['1860356487'] = { Name = 'ap1_02_bld07_anx005e' }, - ['1872446848'] = { Name = 'ap1_02_bld07_anx006' }, - ['775459196'] = { Name = 'ap1_02_bld07_anx1' }, - ['-1825974857'] = { Name = 'ap1_02_bld07' }, - ['-1465440965'] = { Name = 'ap1_02_bld07df' }, - ['-543980821'] = { Name = 'ap1_02_bld10_noshad' }, - ['1775302330'] = { Name = 'ap1_02_bld10' }, - ['1848743108'] = { Name = 'ap1_02_bld10glass' }, - ['594635260'] = { Name = 'ap1_02_bld13' }, - ['1633824385'] = { Name = 'ap1_02_bld13xx' }, - ['717548551'] = { Name = 'ap1_02_bld13xxbot' }, - ['2068212880'] = { Name = 'ap1_02_bld13xxv' }, - ['-2139085796'] = { Name = 'ap1_02_bld14' }, - ['-1064396063'] = { Name = 'ap1_02_bld14vd001' }, - ['1580949339'] = { Name = 'ap1_02_bld15' }, - ['389934331'] = { Name = 'ap1_02_bld15ff' }, - ['-286480961'] = { Name = 'ap1_02_bld15ff2' }, - ['1628988693'] = { Name = 'ap1_02_bld16' }, - ['852560007'] = { Name = 'ap1_02_bld17' }, - ['-1785115058'] = { Name = 'ap1_02_bld19' }, - ['641160945'] = { Name = 'ap1_02_bussin00' }, - ['-1593118731'] = { Name = 'ap1_02_bussin003' }, - ['1805157649'] = { Name = 'ap1_02_bussin004' }, - ['2038898926'] = { Name = 'ap1_02_bussin005' }, - ['1777566147'] = { Name = 'ap1_02_bussin006' }, - ['1481858687'] = { Name = 'ap1_02_bussin007' }, - ['1718942402'] = { Name = 'ap1_02_bussin008' }, - ['884315972'] = { Name = 'ap1_02_bussin009' }, - ['-566611162'] = { Name = 'ap1_02_door_l' }, - ['381090232'] = { Name = 'ap1_02_door_l001' }, - ['-551602996'] = { Name = 'ap1_02_door_r' }, - ['2147327434'] = { Name = 'ap1_02_door_r001' }, - ['-1959463130'] = { Name = 'ap1_02_dyndor00' }, - ['228129219'] = { Name = 'ap1_02_dyndor002' }, - ['7233390'] = { Name = 'ap1_02_dyndor003' }, - ['-368889192'] = { Name = 'ap1_02_dyndor004' }, - ['-1055530934'] = { Name = 'ap1_02_dyndor005' }, - ['-278381330'] = { Name = 'ap1_02_dyndor006' }, - ['-29959541'] = { Name = 'ap1_02_dyndor007' }, - ['2053920149'] = { Name = 'ap1_02_dyndor01' }, - ['-1039601870'] = { Name = 'ap1_02_escal_master' }, - ['-730024810'] = { Name = 'ap1_02_fizza_01' }, - ['573689859'] = { Name = 'ap1_02_fizza_02' }, - ['-238325965'] = { Name = 'ap1_02_fizza_03' }, - ['-1281669720'] = { Name = 'ap1_02_frame01a' }, - ['53796806'] = { Name = 'ap1_02_frame02a' }, - ['1043742258'] = { Name = 'ap1_02_gatnums1' }, - ['300213648'] = { Name = 'ap1_02_gatnums2' }, - ['-1847761537'] = { Name = 'ap1_02_gatnums3' }, - ['-286628922'] = { Name = 'ap1_02_glue_01' }, - ['-571817525'] = { Name = 'ap1_02_glue_02' }, - ['-881812265'] = { Name = 'ap1_02_glue_03' }, - ['-633718166'] = { Name = 'ap1_02_glue_04' }, - ['671340028'] = { Name = 'ap1_02_glue_05' }, - ['915829537'] = { Name = 'ap1_02_glue_06' }, - ['-650962057'] = { Name = 'ap1_02_ground' }, - ['-163794127'] = { Name = 'ap1_02_hangings02' }, - ['-393078820'] = { Name = 'ap1_02_hangings03' }, - ['1231772045'] = { Name = 'ap1_02_hangings04' }, - ['993049880'] = { Name = 'ap1_02_hangings05' }, - ['618631286'] = { Name = 'ap1_02_hangings06' }, - ['-1767967757'] = { Name = 'ap1_02_hangings07' }, - ['-2007935144'] = { Name = 'ap1_02_hangings08' }, - ['-1375672479'] = { Name = 'ap1_02_ladda00' }, - ['793176495'] = { Name = 'ap1_02_ladda01' }, - ['553143570'] = { Name = 'ap1_02_ladda02' }, - ['-990800574'] = { Name = 'ap1_02_ladda03' }, - ['-214142505'] = { Name = 'ap1_02_ladda04' }, - ['1990752369'] = { Name = 'ap1_02_ladda05' }, - ['690455091'] = { Name = 'ap1_02_lightframea' }, - ['400252823'] = { Name = 'ap1_02_lightframeb' }, - ['1302612780'] = { Name = 'ap1_02_lightframec' }, - ['1183572294'] = { Name = 'ap1_02_mainframe' }, - ['-209751199'] = { Name = 'ap1_02_overlay00' }, - ['-441133108'] = { Name = 'ap1_02_overlay01' }, - ['-1974591232'] = { Name = 'ap1_02_overlay03' }, - ['2088207699'] = { Name = 'ap1_02_overlay04' }, - ['-1495344607'] = { Name = 'ap1_02_overlay05' }, - ['-652624234'] = { Name = 'ap1_02_overlay06' }, - ['1017173682'] = { Name = 'ap1_02_planes00' }, - ['-1644019292'] = { Name = 'ap1_02_planes003' }, - ['-1720928135'] = { Name = 'ap1_02_planes005' }, - ['607829453'] = { Name = 'ap1_02_planes005bb' }, - ['-667503092'] = { Name = 'ap1_02_planes009' }, - ['1636087658'] = { Name = 'ap1_02_sigs100' }, - ['1345590473'] = { Name = 'ap1_02_sigs101' }, - ['2045208623'] = { Name = 'ap1_02_sigs102' }, - ['-619999813'] = { Name = 'ap1_02_staircases' }, - ['-2089052984'] = { Name = 'ap1_02_staircases2' }, - ['1641642043'] = { Name = 'ap1_02_text1' }, - ['-200643358'] = { Name = 'ap1_02_texts00' }, - ['-1160938903'] = { Name = 'ap1_02_texts01' }, - ['-2006051413'] = { Name = 'ap1_02_texts02' }, - ['1330258788'] = { Name = 'ap1_02_texts03' }, - ['-1391403280'] = { Name = 'ap1_02_texts04' }, - ['1877435550'] = { Name = 'ap1_02_texts05' }, - ['1098549189'] = { Name = 'ap1_02_texts06' }, - ['316942969'] = { Name = 'ap1_02_texts07' }, - ['1645693182'] = { Name = 'ap1_02_texts08' }, - ['642371908'] = { Name = 'ap1_02_texts09' }, - ['-1136001412'] = { Name = 'ap1_02_texts09b' }, - ['233987776'] = { Name = 'ap1_02_walkway' }, - ['-1109674967'] = { Name = 'ap1_02_walkway2' }, - ['-856927670'] = { Name = 'ap1_02_walkway3' }, - ['-215276672'] = { Name = 'ap1_02_weed_01' }, - ['-989509835'] = { Name = 'ap1_02_weed_02' }, - ['-745544630'] = { Name = 'ap1_02_weed_03' }, - ['-1211574368'] = { Name = 'ap1_02_weesters00' }, - ['-916522292'] = { Name = 'ap1_02_weesters01' }, - ['1531813547'] = { Name = 'ap1_02_weesters02' }, - ['1767586502'] = { Name = 'ap1_02_weesters03' }, - ['2134435457'] = { Name = 'ap1_02_weesters04' }, - ['294390565'] = { Name = 'ap1_02_weesters05' }, - ['600747946'] = { Name = 'ap1_02_weesters06' }, - ['875024476'] = { Name = 'ap1_02_weesters07' }, - ['1183151383'] = { Name = 'ap1_02_weesters08' }, - ['-658335341'] = { Name = 'ap1_02_weesters09' }, - ['-433279383'] = { Name = 'ap1_02_westf1' }, - ['-676032135'] = { Name = 'ap1_02_westf2' }, - ['2005750056'] = { Name = 'ap1_02_westf3' }, - ['-116936747'] = { Name = 'ap1_02' }, - ['-283045863'] = { Name = 'ap1_03__ladder_002' }, - ['-759092483'] = { Name = 'ap1_03__ladder_01' }, - ['393249829'] = { Name = 'ap1_03_ap1_01_d_jumptest' }, - ['2030512498'] = { Name = 'ap1_03_bbrdgraf_slod' }, - ['125198954'] = { Name = 'ap1_03_bbrdgraf' }, - ['-1548360425'] = { Name = 'ap1_03_bbrds00' }, - ['1123787680'] = { Name = 'ap1_03_bbrds01' }, - ['716392370'] = { Name = 'ap1_03_bbrds01b' }, - ['198969860'] = { Name = 'ap1_03_bbrds01e' }, - ['944344636'] = { Name = 'ap1_03_bbrds02' }, - ['335691981'] = { Name = 'ap1_03_bld021' }, - ['889062088'] = { Name = 'ap1_03_bld024' }, - ['1058909289'] = { Name = 'ap1_03_bug1397658' }, - ['-941189307'] = { Name = 'ap1_03_cp_signs' }, - ['554433317'] = { Name = 'ap1_03_cp_signs001' }, - ['-1186360251'] = { Name = 'ap1_03_cppark00' }, - ['473978239'] = { Name = 'ap1_03_cppark008' }, - ['805666053'] = { Name = 'ap1_03_cppark009' }, - ['-1484328768'] = { Name = 'ap1_03_cppark01' }, - ['-2035111110'] = { Name = 'ap1_03_cppark010' }, - ['1532318844'] = { Name = 'ap1_03_cppark011' }, - ['-1921074994'] = { Name = 'ap1_03_cppark012' }, - ['771386728'] = { Name = 'ap1_03_cppark02bar_02' }, - ['764551158'] = { Name = 'ap1_03_cppark02bar' }, - ['-2086097503'] = { Name = 'ap1_03_cppark02bar001' }, - ['651194197'] = { Name = 'ap1_03_cppark07' }, - ['1023006309'] = { Name = 'ap1_03_cppark07pipes' }, - ['-2114618223'] = { Name = 'ap1_03_esc_cprk' }, - ['-1829835090'] = { Name = 'ap1_03_glue_01' }, - ['1949675836'] = { Name = 'ap1_03_glue_02' }, - ['1737562099'] = { Name = 'ap1_03_glue_03' }, - ['-657327497'] = { Name = 'ap1_03_glue_04' }, - ['93039491'] = { Name = 'ap1_03_hedge_cut_00' }, - ['-153547234'] = { Name = 'ap1_03_hedge_cut_01' }, - ['-1636639397'] = { Name = 'ap1_03_hedge_cut_02' }, - ['-1994607953'] = { Name = 'ap1_03_hedge_cut_03' }, - ['-1041193898'] = { Name = 'ap1_03_hedge_cut_04' }, - ['-1397786156'] = { Name = 'ap1_03_hedge_cut_05' }, - ['1471631333'] = { Name = 'ap1_03_hedge_cut_06' }, - ['1089806945'] = { Name = 'ap1_03_hedge_cut_07' }, - ['2013991052'] = { Name = 'ap1_03_hedge_cut_08' }, - ['1700916026'] = { Name = 'ap1_03_hedge_cut_09' }, - ['-1342734592'] = { Name = 'ap1_03_hedge_cut_10' }, - ['-1127540569'] = { Name = 'ap1_03_hedge_cut_11' }, - ['-629189625'] = { Name = 'ap1_03_hedge_cut_12' }, - ['-332531868'] = { Name = 'ap1_03_hedge_cut_13' }, - ['-1089233616'] = { Name = 'ap1_03_hedge_cut_14' }, - ['1506274513'] = { Name = 'ap1_03_jetsonsign002' }, - ['-14665853'] = { Name = 'ap1_03_jetsonsign003' }, - ['-474089049'] = { Name = 'ap1_03_jetsonsign1' }, - ['-347159795'] = { Name = 'ap1_03_jumptest2' }, - ['430705327'] = { Name = 'ap1_03_ladder_01_lod001' }, - ['-1291923538'] = { Name = 'ap1_03_lsiasubway_rprox' }, - ['-1522582990'] = { Name = 'ap1_03_lsiasubwayintshell' }, - ['615470915'] = { Name = 'ap1_03_metcan' }, - ['1976961125'] = { Name = 'ap1_03_metrostepsb' }, - ['-223747318'] = { Name = 'ap1_03_noose' }, - ['-1326024363'] = { Name = 'ap1_03_noose001' }, - ['130213965'] = { Name = 'ap1_03_nuhedges00' }, - ['-114865386'] = { Name = 'ap1_03_nuhedges01' }, - ['-1825656233'] = { Name = 'ap1_03_nuhedges016' }, - ['-418044174'] = { Name = 'ap1_03_nuhedges02' }, - ['-668858100'] = { Name = 'ap1_03_nuhedges03' }, - ['1251569145'] = { Name = 'ap1_03_nuhedges04' }, - ['771470526'] = { Name = 'ap1_03_nuhedges05' }, - ['531470370'] = { Name = 'ap1_03_nuhedges06' }, - ['-1838678635'] = { Name = 'ap1_03_nuhedges07' }, - ['1964163819'] = { Name = 'ap1_03_nuhedges08' }, - ['1724982888'] = { Name = 'ap1_03_nuhedges09' }, - ['-916886289'] = { Name = 'ap1_03_nuhedges10' }, - ['-1759606662'] = { Name = 'ap1_03_nuhedges11' }, - ['15457291'] = { Name = 'ap1_03_nuhedges12' }, - ['262240630'] = { Name = 'ap1_03_nuhedges13' }, - ['-578022068'] = { Name = 'ap1_03_nuhedges14' }, - ['326485352'] = { Name = 'ap1_03_oilspl00' }, - ['-129646991'] = { Name = 'ap1_03_oilspl002' }, - ['-331221247'] = { Name = 'ap1_03_oilspl01' }, - ['-1173872511'] = { Name = 'ap1_03_oilspl01bbb' }, - ['1043541022'] = { Name = 'ap1_03_rndb03' }, - ['-1019595222'] = { Name = 'ap1_03_rndb06' }, - ['-455806565'] = { Name = 'ap1_03_rndb14' }, - ['463265578'] = { Name = 'ap1_03_rndb18' }, - ['2066325358'] = { Name = 'ap1_03_rndb20' }, - ['785548993'] = { Name = 'ap1_03_rndb24' }, - ['475750863'] = { Name = 'ap1_03_rndb26' }, - ['654309120'] = { Name = 'ap1_03_rndb29' }, - ['-630300914'] = { Name = 'ap1_03_rndb32' }, - ['905975352'] = { Name = 'ap1_03_rndb39' }, - ['1215421175'] = { Name = 'ap1_03_rox00' }, - ['-99041726'] = { Name = 'ap1_03_rox01' }, - ['1835575419'] = { Name = 'ap1_03_sculpt' }, - ['-117209361'] = { Name = 'ap1_03_stair_break1' }, - ['-1211345944'] = { Name = 'ap1_03_stercase' }, - ['-849911059'] = { Name = 'ap1_03_stop_deleting005' }, - ['-648005611'] = { Name = 'ap1_03_stuff_2' }, - ['1295705907'] = { Name = 'ap1_03_stuff00' }, - ['-1086418408'] = { Name = 'ap1_03_stuff009' }, - ['1617169797'] = { Name = 'ap1_03_stuff01' }, - ['1746397508'] = { Name = 'ap1_03_stuff011' }, - ['1458357998'] = { Name = 'ap1_03_stuff012' }, - ['1687249459'] = { Name = 'ap1_03_stuff013' }, - ['192799670'] = { Name = 'ap1_03_stuff03' }, - ['-609483757'] = { Name = 'ap1_03_stuff04' }, - ['-1082296725'] = { Name = 'ap1_03_stuff04th' }, - ['784312893'] = { Name = 'ap1_03_stuff05' }, - ['20369192'] = { Name = 'ap1_03_stuff06' }, - ['-1563127195'] = { Name = 'ap1_03_stuff08' }, - ['1107341855'] = { Name = 'ap1_03_td_cpark' }, - ['2012347155'] = { Name = 'ap1_03_td_cpark2' }, - ['1915968531'] = { Name = 'ap1_03_thing00v' }, - ['-654236099'] = { Name = 'ap1_03_thing01t' }, - ['-1624624496'] = { Name = 'ap1_03_thing01u' }, - ['1200656219'] = { Name = 'ap1_03_thing03' }, - ['-629135377'] = { Name = 'ap1_03_thing05p' }, - ['346532234'] = { Name = 'ap1_03_thing06' }, - ['1482337260'] = { Name = 'ap1_03_thing06int' }, - ['-1664276234'] = { Name = 'ap1_03_thing06x' }, - ['-2147022394'] = { Name = 'ap1_03_towr013' }, - ['-1847480965'] = { Name = 'ap1_03_towr014' }, - ['-1687240547'] = { Name = 'ap1_03_towr015' }, - ['88386740'] = { Name = 'ap1_03_towr06' }, - ['1371685102'] = { Name = 'ap1_03_towr07_rl' }, - ['-756365311'] = { Name = 'ap1_03_towr07' }, - ['-2091034642'] = { Name = 'ap1_03_towr07aaz' }, - ['915571079'] = { Name = 'ap1_03_towr07b' }, - ['252818054'] = { Name = 'ap1_03_towr07f' }, - ['1133855224'] = { Name = 'ap1_03_towr69' }, - ['1394685156'] = { Name = 'ap1_03_tubeolay_' }, - ['-836629677'] = { Name = 'ap1_03_tubeolay_001' }, - ['-1845128421'] = { Name = 'ap1_03_tubeolay_002' }, - ['-1362834279'] = { Name = 'ap1_03_tubeolay_003' }, - ['1956894804'] = { Name = 'ap1_03_tubeolay_004' }, - ['-2090469928'] = { Name = 'ap1_03_tubeolay_005' }, - ['1388385423'] = { Name = 'ap1_03_tubeolay_006' }, - ['-311268548'] = { Name = 'ap1_03_tubething' }, - ['-439154150'] = { Name = 'ap1_03_tubething001' }, - ['-1071104315'] = { Name = 'ap1_03_tubething002' }, - ['-912305741'] = { Name = 'ap1_03_tubething003' }, - ['318530668'] = { Name = 'ap1_03_tubething004' }, - ['-229694702'] = { Name = 'ap1_03_tubething006' }, - ['864383779'] = { Name = 'ap1_03_weed_01' }, - ['543378655'] = { Name = 'ap1_03_weed_02' }, - ['385858072'] = { Name = 'ap1_03_weed_03' }, - ['-1590762863'] = { Name = 'ap1_03cpkng01' }, - ['2048562281'] = { Name = 'ap1_03cpkng03' }, - ['-2010238828'] = { Name = 'ap1_03cpkng04' }, - ['2006978424'] = { Name = 'ap1_03cpkng05' }, - ['-587269823'] = { Name = 'ap1_03grun05bxk' }, - ['448066732'] = { Name = 'ap1_03grun05bxo' }, - ['1865555365'] = { Name = 'ap1_03grun05bxs' }, - ['-945598826'] = { Name = 'ap1_03grun05bxt' }, - ['384178007'] = { Name = 'ap1_03grun05bxxx' }, - ['-284451482'] = { Name = 'ap1_03grun05bxz' }, - ['1080565679'] = { Name = 'ap1_04__decal002' }, - ['1683189945'] = { Name = 'ap1_04__ladder_01' }, - ['-2085170827'] = { Name = 'ap1_04_2ee_str' }, - ['502746031'] = { Name = 'ap1_04_2ee_str2' }, - ['1797011122'] = { Name = 'ap1_04_alley_01_o' }, - ['-2064164542'] = { Name = 'ap1_04_alley_01' }, - ['-1743918879'] = { Name = 'ap1_04_alley_01b' }, - ['127228159'] = { Name = 'ap1_04_alley_01blend1' }, - ['-1688014691'] = { Name = 'ap1_04_alley_01blend1b' }, - ['-1868244191'] = { Name = 'ap1_04_alley_01blend1c' }, - ['1622937808'] = { Name = 'ap1_04_alley_02' }, - ['-881929294'] = { Name = 'ap1_04_alley_02a' }, - ['1938558829'] = { Name = 'ap1_04_alley_barr1' }, - ['267282737'] = { Name = 'ap1_04_api_04_tempo010' }, - ['576200718'] = { Name = 'ap1_04_b_pills_lod' }, - ['-946009723'] = { Name = 'ap1_04_bannerbld' }, - ['1598220589'] = { Name = 'ap1_04_bannerpipe' }, - ['-908852863'] = { Name = 'ap1_04_billssss00' }, - ['532720989'] = { Name = 'ap1_04_billssss01' }, - ['-317274106'] = { Name = 'ap1_04_billssss02' }, - ['1155954600'] = { Name = 'ap1_04_billssss03' }, - ['-1308490438'] = { Name = 'ap1_04_bits4801c' }, - ['-1142499677'] = { Name = 'ap1_04_bits4811' }, - ['-1758950105'] = { Name = 'ap1_04_bits4812' }, - ['1943125951'] = { Name = 'ap1_04_bits48120' }, - ['-1440863165'] = { Name = 'ap1_04_bits48126' }, - ['612589266'] = { Name = 'ap1_04_bits48gls' }, - ['-1973692662'] = { Name = 'ap1_04_bits48in' }, - ['-629477083'] = { Name = 'ap1_04_bridge_cablehd' }, - ['-175160361'] = { Name = 'ap1_04_bridge_cables' }, - ['50871870'] = { Name = 'ap1_04_bridge_rail_1' }, - ['373384364'] = { Name = 'ap1_04_bridge_rail_2' }, - ['126011183'] = { Name = 'ap1_04_bridge_rail_3' }, - ['-1164432037'] = { Name = 'ap1_04_bridge_rail_4' }, - ['-1476622300'] = { Name = 'ap1_04_bridge_rail_5' }, - ['-551815582'] = { Name = 'ap1_04_bridge_rail_6' }, - ['-762178336'] = { Name = 'ap1_04_bridge01' }, - ['-531124117'] = { Name = 'ap1_04_bridge02' }, - ['2115802345'] = { Name = 'ap1_04_bridgedet' }, - ['-1889299074'] = { Name = 'ap1_04_brigge_decal002' }, - ['-724487497'] = { Name = 'ap1_04_brigge_decal002a' }, - ['-1363024982'] = { Name = 'ap1_04_brigge_decal2' }, - ['2097590207'] = { Name = 'ap1_04_brigge_decal2a' }, - ['-913368720'] = { Name = 'ap1_04_brigge_decal6' }, - ['-706334178'] = { Name = 'ap1_04_brigge_decal7' }, - ['-660339764'] = { Name = 'ap1_04_cablemesh_thvy' }, - ['-1013806967'] = { Name = 'ap1_04_chopshop003' }, - ['-1396357897'] = { Name = 'ap1_04_chopshop1_o' }, - ['-2068405674'] = { Name = 'ap1_04_chopshop2_gls' }, - ['1790886961'] = { Name = 'ap1_04_chopshop2_o' }, - ['-705918315'] = { Name = 'ap1_04_chopshop3_o' }, - ['621422668'] = { Name = 'ap1_04_chopshopwires' }, - ['1850476691'] = { Name = 'ap1_04_cp376' }, - ['-1491094721'] = { Name = 'ap1_04_crmdgrn_o' }, - ['-111674828'] = { Name = 'ap1_04_crmdgrn' }, - ['-1202768473'] = { Name = 'ap1_04_dirty00' }, - ['206757405'] = { Name = 'ap1_04_dirty01' }, - ['-88890644'] = { Name = 'ap1_04_extrabob_fizz' }, - ['317144031'] = { Name = 'ap1_04_extrabob009' }, - ['540424306'] = { Name = 'ap1_04_extrabob01' }, - ['729312825'] = { Name = 'ap1_04_extrabob011' }, - ['856677925'] = { Name = 'ap1_04_extrabob02' }, - ['641056464'] = { Name = 'ap1_04_extrabob04_fizz' }, - ['1726989800'] = { Name = 'ap1_04_extrabob04' }, - ['524924573'] = { Name = 'ap1_04_extrabob07' }, - ['1949540343'] = { Name = 'ap1_04_grun2' }, - ['-2134694763'] = { Name = 'ap1_04_grun2b' }, - ['1176334521'] = { Name = 'ap1_04_grun2bxx' }, - ['-1079056545'] = { Name = 'ap1_04_hdrails' }, - ['-943374825'] = { Name = 'ap1_04_hdrailsb' }, - ['-1207353802'] = { Name = 'ap1_04_hedge01' }, - ['-1236087985'] = { Name = 'ap1_04_hedge01top001' }, - ['1811785244'] = { Name = 'ap1_04_hedge02' }, - ['83022621'] = { Name = 'ap1_04_hedge02top' }, - ['2050966175'] = { Name = 'ap1_04_hedge03' }, - ['1871862228'] = { Name = 'ap1_04_hedgetop' }, - ['1351213305'] = { Name = 'ap1_04_ladder_fizz_hd' }, - ['1424849476'] = { Name = 'ap1_04_ladder003' }, - ['117271896'] = { Name = 'ap1_04_ladder1' }, - ['169522370'] = { Name = 'ap1_04_light_master' }, - ['2046292941'] = { Name = 'ap1_04_lsia_' }, - ['1225951793'] = { Name = 'ap1_04_mesh5' }, - ['1259981033'] = { Name = 'ap1_04_nusps00' }, - ['824677637'] = { Name = 'ap1_04_nusps01' }, - ['-161172683'] = { Name = 'ap1_04_object004' }, - ['-1918070289'] = { Name = 'ap1_04_object374' }, - ['1129761504'] = { Name = 'ap1_04_opium_emissive_lod' }, - ['1814728438'] = { Name = 'ap1_04_opium_emissive' }, - ['1027047908'] = { Name = 'ap1_04_overlay005' }, - ['2140966536'] = { Name = 'ap1_04_pipes' }, - ['906265113'] = { Name = 'ap1_04_pipes01' }, - ['-1930743835'] = { Name = 'ap1_04_pipes02' }, - ['-1700672686'] = { Name = 'ap1_04_pipes03' }, - ['149102704'] = { Name = 'ap1_04_planefizz' }, - ['-1120036457'] = { Name = 'ap1_04_refl_04' }, - ['-1752252376'] = { Name = 'ap1_04_roads00' }, - ['-1482661813'] = { Name = 'ap1_04_roads01' }, - ['-1180957634'] = { Name = 'ap1_04_roads02' }, - ['-865261088'] = { Name = 'ap1_04_roads03' }, - ['-567292571'] = { Name = 'ap1_04_roads04' }, - ['-490219879'] = { Name = 'ap1_04_roads05' }, - ['-184157419'] = { Name = 'ap1_04_roads06' }, - ['166307036'] = { Name = 'ap1_04_roads08' }, - ['467355839'] = { Name = 'ap1_04_roads09' }, - ['1409455650'] = { Name = 'ap1_04_roads09olay' }, - ['73343083'] = { Name = 'ap1_04_roads10' }, - ['357089854'] = { Name = 'ap1_04_roads11' }, - ['687991216'] = { Name = 'ap1_04_roads12' }, - ['235269178'] = { Name = 'ap1_04_sherlites00' }, - ['1132456465'] = { Name = 'ap1_04_sherlites002' }, - ['-647359001'] = { Name = 'ap1_04_sherlites003' }, - ['-46904681'] = { Name = 'ap1_04_sherlites01' }, - ['-1871999266'] = { Name = 'ap1_04_sheryplan00' }, - ['-1186340710'] = { Name = 'ap1_04_sheryplan01' }, - ['-1394784319'] = { Name = 'ap1_04_sheryplan02' }, - ['-1004913775'] = { Name = 'ap1_04_simu' }, - ['1184398674'] = { Name = 'ap1_04_standstrut00' }, - ['887544303'] = { Name = 'ap1_04_standstrut01' }, - ['571716681'] = { Name = 'ap1_04_standstrut02' }, - ['274272468'] = { Name = 'ap1_04_standstrut03' }, - ['-1930556928'] = { Name = 'ap1_04_standstrut04' }, - ['1103989145'] = { Name = 'ap1_04_tank' }, - ['1884978968'] = { Name = 'ap1_04_test_wire' }, - ['1359713323'] = { Name = 'ap1_04_test_wire01' }, - ['377280163'] = { Name = 'ap1_04_test_wireb' }, - ['1066279089'] = { Name = 'ap1_04_thing01u001' }, - ['-683993487'] = { Name = 'ap1_04_uni2grunn' }, - ['-789706096'] = { Name = 'ap1_04_uni2grunnb' }, - ['437984489'] = { Name = 'ap1_04_uni2grunnc' }, - ['831726390'] = { Name = 'ap1_04_unit003' }, - ['-982267159'] = { Name = 'ap1_04_unit005' }, - ['1198455097'] = { Name = 'ap1_04_unit005d' }, - ['574169306'] = { Name = 'ap1_04_unit081' }, - ['1037346009'] = { Name = 'ap1_04_unit081b' }, - ['-82897150'] = { Name = 'ap1_04_unit081bg' }, - ['1461849606'] = { Name = 'ap1_04_unit081bg001' }, - ['-1768521803'] = { Name = 'ap1_04_unit081bg1a' }, - ['24255651'] = { Name = 'ap1_04_unit081bgvens' }, - ['1584875492'] = { Name = 'ap1_04_unit081bits' }, - ['-1896063543'] = { Name = 'ap1_04_unit081bits1a' }, - ['-1389243247'] = { Name = 'ap1_04_unit081bits2' }, - ['-2146516654'] = { Name = 'ap1_04_unit081bits69' }, - ['-67407365'] = { Name = 'ap1_04_unit081bitsa' }, - ['1319638357'] = { Name = 'ap1_04_unit081bitsdets' }, - ['1141745886'] = { Name = 'ap1_04_unit081bt' }, - ['-550838494'] = { Name = 'ap1_04_unit081bv' }, - ['-338461521'] = { Name = 'ap1_04_unit08det_a' }, - ['351227630'] = { Name = 'ap1_04_unit08det_b' }, - ['440826189'] = { Name = 'ap1_04_unit1b' }, - ['1225676812'] = { Name = 'ap1_04_unit2d' }, - ['-1574532561'] = { Name = 'ap1_04_unit2e' }, - ['85319361'] = { Name = 'ap1_04_unit2ee' }, - ['1241908996'] = { Name = 'ap1_04_unit2eedec3' }, - ['-1115770266'] = { Name = 'ap1_04_unit2eevens' }, - ['-339510507'] = { Name = 'ap1_04_unit2eff' }, - ['749645254'] = { Name = 'ap1_04_unit2em' }, - ['-1961915295'] = { Name = 'ap1_04_unitdet' }, - ['-971096351'] = { Name = 'ap1_04_xerostair00' }, - ['-69653926'] = { Name = 'ap1_04_xerostair01' }, - ['-881047139'] = { Name = 'ap1_04_xerostair02' }, - ['-2016034235'] = { Name = 'ap1_04_xerostair03' }, - ['-239523512'] = { Name = 'ap1_04hotel' }, - ['-711822279'] = { Name = 'ap1_04hotel001' }, - ['1328494252'] = { Name = 'ap1_04hotelbxx' }, - ['-200330871'] = { Name = 'ap1_04hoteldd' }, - ['-903616733'] = { Name = 'ap1_04hoteldd002' }, - ['55374813'] = { Name = 'ap1_04hotelpipe00' }, - ['1093889961'] = { Name = 'ap1_04hotelpipe01' }, - ['250907436'] = { Name = 'ap1_04hotelpipe02' }, - ['-662528411'] = { Name = 'ap1_04hotelpipe03' }, - ['1368538828'] = { Name = 'ap1_04sculpt' }, - ['1441353732'] = { Name = 'ap1_emissive_ap1_01a_ema' }, - ['1773402009'] = { Name = 'ap1_emissive_ap1_01a_emb' }, - ['-456979565'] = { Name = 'ap1_emissive_ap1_01b_ema' }, - ['1729957961'] = { Name = 'ap1_emissive_ap1_01b_emb' }, - ['-1734216878'] = { Name = 'ap1_emissive_ap1_01b_emc' }, - ['-519882390'] = { Name = 'ap1_emissive_ap1_01b_emd_lod' }, - ['-1954031330'] = { Name = 'ap1_emissive_ap1_01b_emd' }, - ['-1256121631'] = { Name = 'ap1_emissive_ap1_02' }, - ['1463138332'] = { Name = 'ap1_emissive_ap1_04_ema' }, - ['-1376361056'] = { Name = 'ap1_emissive_ap1_04_emb' }, - ['1958572843'] = { Name = 'ap1_emissive_ap1_04_emc' }, - ['663494042'] = { Name = 'ap1_emissive_smterm_ew' }, - ['-1072832652'] = { Name = 'ap1_emissive_towr07_em' }, - ['2083865423'] = { Name = 'ap1_lod_emi_a_slod3' }, - ['1078516728'] = { Name = 'ap1_lod_emi_b_slod3' }, - ['1851460340'] = { Name = 'ap1_lod_emissive' }, - ['-1008818392'] = { Name = 'ap1_lod_slod4' }, - ['-1207431159'] = { Name = 'armytanker' }, - ['-1476447243'] = { Name = 'armytrailer' }, - ['-1637149482'] = { Name = 'armytrailer2' }, - ['-1809822327'] = { Name = 'asea' }, - ['-1807623979'] = { Name = 'asea2' }, - ['-1903012613'] = { Name = 'asterope' }, - ['-2115793025'] = { Name = 'avarus' }, - ['-2140431165'] = { Name = 'bagger' }, - ['-399841706'] = { Name = 'baletrailer' }, - ['-808831384'] = { Name = 'baller' }, - ['142944341'] = { Name = 'baller2' }, - ['1878062887'] = { Name = 'baller3' }, - ['634118882'] = { Name = 'baller4' }, - ['470404958'] = { Name = 'baller5' }, - ['666166960'] = { Name = 'baller6' }, - ['-1041692462'] = { Name = 'banshee' }, - ['633712403'] = { Name = 'banshee2' }, - ['-823509173'] = { Name = 'barracks' }, - ['1074326203'] = { Name = 'barracks2' }, - ['630371791'] = { Name = 'barracks3' }, - ['-114291515'] = { Name = 'bati' }, - ['-891462355'] = { Name = 'bati2' }, - ['-1574447115'] = { Name = 'beerrow_local' }, - ['-715967502'] = { Name = 'beerrow_world' }, - ['2053223216'] = { Name = 'benson' }, - ['1824333165'] = { Name = 'besra' }, - ['1274868363'] = { Name = 'bestiagts' }, - ['86520421'] = { Name = 'bf400' }, - ['1126868326'] = { Name = 'bfinjection' }, - ['-1288359593'] = { Name = 'bh1_01_ammuwin_noshadows' }, - ['284768930'] = { Name = 'bh1_01_bh150b' }, - ['35560685'] = { Name = 'bh1_01_bh150c' }, - ['-144075714'] = { Name = 'bh1_01_build_base' }, - ['852283882'] = { Name = 'bh1_01_detail' }, - ['-84774192'] = { Name = 'bh1_01_emissivesigns' }, - ['-590689250'] = { Name = 'bh1_01_ground_pool' }, - ['2132095547'] = { Name = 'bh1_01_ground' }, - ['-1033595146'] = { Name = 'bh1_01_mall_detail' }, - ['1199251829'] = { Name = 'bh1_01_mall002_signs' }, - ['-1178255810'] = { Name = 'bh1_01_mall002' }, - ['-2050661774'] = { Name = 'bh1_01_malladder1' }, - ['567298342'] = { Name = 'bh1_01_poolladder' }, - ['-2010533777'] = { Name = 'bh1_01_railings' }, - ['813889502'] = { Name = 'bh1_01_shadow' }, - ['1167365005'] = { Name = 'bh1_02_bh1_2_accessladder' }, - ['1692391332'] = { Name = 'bh1_02_bigframe_fizz_lod001' }, - ['1522588539'] = { Name = 'bh1_02_bigframe_fizz' }, - ['-587754124'] = { Name = 'bh1_02_bigframe_fizz001' }, - ['698915883'] = { Name = 'bh1_02_foodrainroof_01' }, - ['918926949'] = { Name = 'bh1_02_foodrainroof_02' }, - ['1924868465'] = { Name = 'bh1_02_fs1_d01' }, - ['-1760890340'] = { Name = 'bh1_02_fs1_d02' }, - ['-2069050016'] = { Name = 'bh1_02_fs1_d03' }, - ['845588693'] = { Name = 'bh1_02_fs1_d04' }, - ['541295759'] = { Name = 'bh1_02_fs1_d05' }, - ['1307762669'] = { Name = 'bh1_02_fs1_d06' }, - ['5817514'] = { Name = 'bh1_02_fs1_d07' }, - ['-545338153'] = { Name = 'bh1_02_fs1_dtl01' }, - ['-315791308'] = { Name = 'bh1_02_fs1_dtl02' }, - ['-1141701184'] = { Name = 'bh1_02_fs1_dtl03' }, - ['-1746725677'] = { Name = 'bh1_02_fs1_dtl2' }, - ['687314612'] = { Name = 'bh1_02_fs1_shutters' }, - ['1067316503'] = { Name = 'bh1_02_fs1' }, - ['231936386'] = { Name = 'bh1_02_fs2' }, - ['781323563'] = { Name = 'bh1_02_fsgrnd' }, - ['1116637692'] = { Name = 'bh1_02_fsscaff' }, - ['1188058729'] = { Name = 'bh1_02_fsscaffold_bar1' }, - ['958610191'] = { Name = 'bh1_02_fsscaffold_bar2' }, - ['729063346'] = { Name = 'bh1_02_fsscaffold_bar3' }, - ['2115585278'] = { Name = 'bh1_02_fsscaffold_bar4' }, - ['-1949048717'] = { Name = 'bh1_02_fsscaffold_bar5' }, - ['333945782'] = { Name = 'bh1_02_gangwayrail' }, - ['2094697726'] = { Name = 'bh1_02_girdera' }, - ['-2030722764'] = { Name = 'bh1_02_girderb' }, - ['1496565169'] = { Name = 'bh1_02_girderc' }, - ['-555331304'] = { Name = 'bh1_02_girderd' }, - ['928156559'] = { Name = 'bh1_02_grd_1' }, - ['2039877653'] = { Name = 'bh1_02_grd_2' }, - ['639276393'] = { Name = 'bh1_02_office1_d' }, - ['-1004178851'] = { Name = 'bh1_02_office1_det' }, - ['-683104618'] = { Name = 'bh1_02_office1_railing01_fizz' }, - ['1911898762'] = { Name = 'bh1_02_office1_railing02_fizz' }, - ['356362657'] = { Name = 'bh1_02_office1_railing03_fizz' }, - ['2068173522'] = { Name = 'bh1_02_office1_st02_fizz' }, - ['-1664513820'] = { Name = 'bh1_02_office1_stair_fizz' }, - ['2075675266'] = { Name = 'bh1_02_office1' }, - ['-669122403'] = { Name = 'bh1_02_officescaff' }, - ['1582408027'] = { Name = 'bh1_02_pool_detail' }, - ['1567709474'] = { Name = 'bh1_02_scaff_ir2_bakeproxy' }, - ['1200610752'] = { Name = 'bh1_02_sec_fence_01' }, - ['-77313926'] = { Name = 'bh1_02_securityrailing01' }, - ['225569941'] = { Name = 'bh1_02_securityrailing02' }, - ['-1920308020'] = { Name = 'bh1_02_securityrailing03' }, - ['-688062910'] = { Name = 'bh1_02_ss_01_d' }, - ['679037611'] = { Name = 'bh1_02_ss_01_d01' }, - ['-699947447'] = { Name = 'bh1_02_ss_01_d02' }, - ['200354863'] = { Name = 'bh1_02_ss_01_rail01_fizz' }, - ['-780031607'] = { Name = 'bh1_02_ss_01_rail02_fizz' }, - ['2101504757'] = { Name = 'bh1_02_ss_01_railingtop' }, - ['-614316647'] = { Name = 'bh1_02_ss_01_x01_fizz' }, - ['527278189'] = { Name = 'bh1_02_ss_01_x02_fizz' }, - ['-104758259'] = { Name = 'bh1_02_ss_01_x03_fizz' }, - ['-1994805065'] = { Name = 'bh1_02_ss_01_x04_fizz' }, - ['35605697'] = { Name = 'bh1_02_ss_01' }, - ['-1402706424'] = { Name = 'bh1_02_ss_04_d01' }, - ['-707708703'] = { Name = 'bh1_02_ss_04_d03' }, - ['-341586127'] = { Name = 'bh1_02_ss_04_rail01_fizz' }, - ['-1387429708'] = { Name = 'bh1_02_ss_04_rail02_fizz' }, - ['-856168028'] = { Name = 'bh1_02_ss_04_rail03_fizz' }, - ['-1804912702'] = { Name = 'bh1_02_ss_04_rail04_fizz' }, - ['1633932595'] = { Name = 'bh1_02_ss_04_rail05_fizz' }, - ['-131417751'] = { Name = 'bh1_02_ss_04_rail06_fizz' }, - ['-1189594444'] = { Name = 'bh1_02_ss_04' }, - ['-1477714926'] = { Name = 'bh1_02_stepsfizz' }, - ['1348636033'] = { Name = 'bh1_03_bld27_d' }, - ['811563879'] = { Name = 'bh1_03_bld27_dtl' }, - ['-136112545'] = { Name = 'bh1_03_bld27' }, - ['-1820555747'] = { Name = 'bh1_03_bld29_d' }, - ['1048421275'] = { Name = 'bh1_03_bld29' }, - ['-878050612'] = { Name = 'bh1_03_brig01_d' }, - ['561635'] = { Name = 'bh1_03_brig01' }, - ['1678119375'] = { Name = 'bh1_03_brigrail_lod' }, - ['-1412119595'] = { Name = 'bh1_03_brigrail' }, - ['1891070752'] = { Name = 'bh1_03_cable_ramp' }, - ['-485047332'] = { Name = 'bh1_03_cable_ramp2' }, - ['509311795'] = { Name = 'bh1_03_floaty_windows' }, - ['1681408880'] = { Name = 'bh1_03_gangwayrail' }, - ['-353442574'] = { Name = 'bh1_03_gate' }, - ['20706687'] = { Name = 'bh1_03_grnd1' }, - ['-209331693'] = { Name = 'bh1_03_grnd2' }, - ['276522069'] = { Name = 'bh1_03_laddergang' }, - ['2092479837'] = { Name = 'bh1_03_rail01' }, - ['1801818807'] = { Name = 'bh1_03_rail02' }, - ['-504070189'] = { Name = 'bh1_03_rail03' }, - ['1223871923'] = { Name = 'bh1_03_rain_proxy01' }, - ['305094701'] = { Name = 'bh1_03_rain_proxy02' }, - ['-462125896'] = { Name = 'bh1_03_rain_proxy03' }, - ['665412286'] = { Name = 'bh1_03_roofladder_01' }, - ['-782873989'] = { Name = 'bh1_03_s1_006_d01' }, - ['-403210447'] = { Name = 'bh1_03_s1_006' }, - ['1152948144'] = { Name = 'bh1_03_s1_railings' }, - ['-1155151140'] = { Name = 'bh1_03_s1_rework_dtl' }, - ['-920216587'] = { Name = 'bh1_03_s1_rework_frame' }, - ['-9669451'] = { Name = 'bh1_03_s1_rework' }, - ['1211631067'] = { Name = 'bh1_03_satdish' }, - ['-1411996509'] = { Name = 'bh1_03_satdish01_l1' }, - ['1627881248'] = { Name = 'bh1_03_satdish01' }, - ['1844559325'] = { Name = 'bh1_03_satdish02_l1' }, - ['1314773453'] = { Name = 'bh1_03_satdish02' }, - ['-1695269540'] = { Name = 'bh1_03_satdish03_l1' }, - ['2091726443'] = { Name = 'bh1_03_satdish03' }, - ['1924853348'] = { Name = 'bh1_03_securityrail01' }, - ['-32504560'] = { Name = 'bh1_03_securityrail02' }, - ['1125642066'] = { Name = 'bh1_03_ss_02_d' }, - ['554410404'] = { Name = 'bh1_03_ss_02_dtl' }, - ['-904729199'] = { Name = 'bh1_03_ss_02' }, - ['-258453607'] = { Name = 'bh1_03_ss02_frame01' }, - ['-103390699'] = { Name = 'bh1_03_ss02_frame02' }, - ['-752118592'] = { Name = 'bh1_03_ss02_frame03' }, - ['-2031975776'] = { Name = 'bh1_03_towerfizz' }, - ['1799908842'] = { Name = 'bh1_03_vent01' }, - ['1488308425'] = { Name = 'bh1_03_vent02' }, - ['-1478578556'] = { Name = 'bh1_03_ventrailing' }, - ['-709377107'] = { Name = 'bh1_03_wall01' }, - ['-1023893969'] = { Name = 'bh1_03_wall02' }, - ['1024830347'] = { Name = 'bh1_03_winbar01' }, - ['1650456095'] = { Name = 'bh1_03_winbar02' }, - ['413393572'] = { Name = 'bh1_03_winbar03' }, - ['742459874'] = { Name = 'bh1_03_winbar04' }, - ['1727911140'] = { Name = 'bh1_04_aptrail01' }, - ['1431056769'] = { Name = 'bh1_04_aptrail02' }, - ['190619043'] = { Name = 'bh1_04_aptrail03' }, - ['2033121606'] = { Name = 'bh1_04_aptrail04' }, - ['536364762'] = { Name = 'bh1_04_aptrail05' }, - ['229810767'] = { Name = 'bh1_04_aptrail06' }, - ['1853657102'] = { Name = 'bh1_04_bld2a02' }, - ['-1743707105'] = { Name = 'bh1_04_build004_fizz' }, - ['-1309403343'] = { Name = 'bh1_04_build004_ledge' }, - ['642235009'] = { Name = 'bh1_04_build004_ledge001' }, - ['607716542'] = { Name = 'bh1_04_build004' }, - ['-463832007'] = { Name = 'bh1_04_build04_emm_glow' }, - ['-1991942930'] = { Name = 'bh1_04_build04_emm' }, - ['1578946836'] = { Name = 'bh1_04_build1dr_lod' }, - ['847387975'] = { Name = 'bh1_04_build2_railing' }, - ['-408663889'] = { Name = 'bh1_04_build2_trelace' }, - ['-1277332065'] = { Name = 'bh1_04_build3' }, - ['-1899574182'] = { Name = 'bh1_04_details1' }, - ['-1146885069'] = { Name = 'bh1_04_details2_railing' }, - ['589288806'] = { Name = 'bh1_04_details2_railing02' }, - ['-355056232'] = { Name = 'bh1_04_details2a' }, - ['-1219836952'] = { Name = 'bh1_04_details2a02' }, - ['1161624164'] = { Name = 'bh1_04_details2b' }, - ['1461558817'] = { Name = 'bh1_04_details2c' }, - ['-474532902'] = { Name = 'bh1_04_details3a' }, - ['-1207837588'] = { Name = 'bh1_04_details3b' }, - ['1684675576'] = { Name = 'bh1_04_dets_orn_gates' }, - ['-1708213219'] = { Name = 'bh1_04_dets_orn_gates02' }, - ['445189006'] = { Name = 'bh1_04_dont_delete' }, - ['-123231140'] = { Name = 'bh1_04_ema' }, - ['-362739761'] = { Name = 'bh1_04_emb' }, - ['472345435'] = { Name = 'bh1_04_emc' }, - ['846630014'] = { Name = 'bh1_04_g01' }, - ['-1421363226'] = { Name = 'bh1_04_g01a' }, - ['-2063176860'] = { Name = 'bh1_04_g01b' }, - ['1085286641'] = { Name = 'bh1_04_g02' }, - ['-1732309171'] = { Name = 'bh1_04_g02a' }, - ['-896175367'] = { Name = 'bh1_04_g02b' }, - ['267748605'] = { Name = 'bh1_04_ground1' }, - ['1972293678'] = { Name = 'bh1_04_ground2' }, - ['-1441906114'] = { Name = 'bh1_04_railing_fizz01' }, - ['-395833487'] = { Name = 'bh1_04_wtr' }, - ['1500551655'] = { Name = 'bh1_05_bucketseat' }, - ['-101984667'] = { Name = 'bh1_05_build1_emm' }, - ['426649662'] = { Name = 'bh1_05_build1' }, - ['636844841'] = { Name = 'bh1_05_details' }, - ['1012689026'] = { Name = 'bh1_05_details01' }, - ['-1123096087'] = { Name = 'bh1_05_details02' }, - ['1823288419'] = { Name = 'bh1_05_ground1' }, - ['-1428438233'] = { Name = 'bh1_05_hedge_dtl' }, - ['-463964775'] = { Name = 'bh1_05_railinge' }, - ['1823049281'] = { Name = 'bh1_05_railings' }, - ['869930135'] = { Name = 'bh1_05_railingw' }, - ['-1055861091'] = { Name = 'bh1_05_shadowmesh' }, - ['1792759856'] = { Name = 'bh1_05_walkway_railing01' }, - ['2100362459'] = { Name = 'bh1_05_walkway_railing02' }, - ['-1102915091'] = { Name = 'bh1_05_walkway' }, - ['359969983'] = { Name = 'bh1_05_wtr' }, - ['-551095741'] = { Name = 'bh1_05_wtr02' }, - ['-907764419'] = { Name = 'bh1_06_building_wins' }, - ['865034338'] = { Name = 'bh1_06_building' }, - ['2032548067'] = { Name = 'bh1_06_details' }, - ['-1517553296'] = { Name = 'bh1_06_ivydecal' }, - ['-91708484'] = { Name = 'bh1_06_lifeinvadersign' }, - ['-1023113751'] = { Name = 'bh1_06_lobby_fake_lod' }, - ['748223339'] = { Name = 'bh1_06_lobby_fake' }, - ['-1800053097'] = { Name = 'bh1_06_railing' }, - ['-1301581721'] = { Name = 'bh1_06_v_int_lod' }, - ['-1046905586'] = { Name = 'bh1_07_bank' }, - ['2146248619'] = { Name = 'bh1_07_build1' }, - ['1807053000'] = { Name = 'bh1_07_build2_details' }, - ['923309627'] = { Name = 'bh1_07_build2' }, - ['1936994544'] = { Name = 'bh1_07_decal01' }, - ['-1029648568'] = { Name = 'bh1_07_decal02' }, - ['-1729627177'] = { Name = 'bh1_07_decal03' }, - ['1714198113'] = { Name = 'bh1_07_decal04' }, - ['639774357'] = { Name = 'bh1_07_decals05' }, - ['1236137388'] = { Name = 'bh1_07_decals07' }, - ['670466200'] = { Name = 'bh1_07_flagpoles' }, - ['-1916682324'] = { Name = 'bh1_07_fountainwater' }, - ['-219734764'] = { Name = 'bh1_07_ground' }, - ['-952859393'] = { Name = 'bh1_08_bld2' }, - ['825822488'] = { Name = 'bh1_08_building01' }, - ['248533003'] = { Name = 'bh1_08_cablemesh31596_tstd' }, - ['1976150613'] = { Name = 'bh1_08_cablemesh31597_tstd' }, - ['1922297239'] = { Name = 'bh1_08_cablemesh8486_hvstd' }, - ['55174722'] = { Name = 'bh1_08_carparkcanopy' }, - ['-2038994718'] = { Name = 'bh1_08_cp_fizz' }, - ['-1206553917'] = { Name = 'bh1_08_details1' }, - ['-1445276082'] = { Name = 'bh1_08_details2' }, - ['-1668170820'] = { Name = 'bh1_08_details3' }, - ['-1907613903'] = { Name = 'bh1_08_details4' }, - ['1155209589'] = { Name = 'bh1_08_em_a' }, - ['-603554352'] = { Name = 'bh1_08_em' }, - ['198009442'] = { Name = 'bh1_08_fixedseating' }, - ['1347285254'] = { Name = 'bh1_08_furhedge01' }, - ['1728978546'] = { Name = 'bh1_08_furhedge02' }, - ['-441541687'] = { Name = 'bh1_08_furhedge03' }, - ['-101727157'] = { Name = 'bh1_08_furhedge04' }, - ['754693549'] = { Name = 'bh1_08_glue' }, - ['1493372499'] = { Name = 'bh1_08_glue2' }, - ['-271615357'] = { Name = 'bh1_08_grnd' }, - ['2008959775'] = { Name = 'bh1_08_hedge_sqr' }, - ['-2061180958'] = { Name = 'bh1_08_parkingdoor' }, - ['-593537274'] = { Name = 'bh1_08_parkingdoor002' }, - ['1713395415'] = { Name = 'bh1_08_propertyfudger' }, - ['708399690'] = { Name = 'bh1_08_railing' }, - ['1489770422'] = { Name = 'bh1_08_shadow_proxy' }, - ['-910187827'] = { Name = 'bh1_08_shadowmesh_slod' }, - ['2110457052'] = { Name = 'bh1_08_shadowmesh' }, - ['1336119588'] = { Name = 'bh1_09_bld_01_canopy' }, - ['1359069635'] = { Name = 'bh1_09_bld_01' }, - ['1812818898'] = { Name = 'bh1_09_bld_02_details' }, - ['322338655'] = { Name = 'bh1_09_bld_02_wind1_iref003' }, - ['-473129780'] = { Name = 'bh1_09_bld_02_wind1' }, - ['-1839542077'] = { Name = 'bh1_09_bld_02_wind2_iref001' }, - ['-418929854'] = { Name = 'bh1_09_bld_02_wind2' }, - ['-185267805'] = { Name = 'bh1_09_bld_02' }, - ['-644776607'] = { Name = 'bh1_09_bld_03_adlegs' }, - ['-1224604071'] = { Name = 'bh1_09_bld_03_fuzz01' }, - ['1438964380'] = { Name = 'bh1_09_bld_03_leo_sign' }, - ['-1370100572'] = { Name = 'bh1_09_bld_03_rail01' }, - ['-1048374526'] = { Name = 'bh1_09_bld_03_rail02' }, - ['-423793356'] = { Name = 'bh1_09_bld_03' }, - ['-1600591944'] = { Name = 'bh1_09_bld_decals' }, - ['-1309598738'] = { Name = 'bh1_09_bld_sml' }, - ['1311592879'] = { Name = 'bh1_09_canopybars' }, - ['-369334011'] = { Name = 'bh1_09_details1' }, - ['-653441241'] = { Name = 'bh1_09_details2' }, - ['-471546616'] = { Name = 'bh1_09_details2b' }, - ['-620597331'] = { Name = 'bh1_09_fizzy_rails_01' }, - ['218429569'] = { Name = 'bh1_09_fizzy_rails' }, - ['1720566708'] = { Name = 'bh1_09_fizzy_steps' }, - ['1455084130'] = { Name = 'bh1_09_grnd_01' }, - ['-403538651'] = { Name = 'bh1_09_grnd_03_details' }, - ['-798460479'] = { Name = 'bh1_09_grnd_03_structures' }, - ['822284434'] = { Name = 'bh1_09_long_rail_fizzz' }, - ['1455044551'] = { Name = 'bh1_09_no_shadow' }, - ['879580416'] = { Name = 'bh1_09_pillars_01' }, - ['1613171453'] = { Name = 'bh1_09_props_lightsupport001' }, - ['-1621611924'] = { Name = 'bh1_09_proxy' }, - ['1760105586'] = { Name = 'bh1_09_shitaz' }, - ['-1232967420'] = { Name = 'bh1_11__build03' }, - ['1381191739'] = { Name = 'bh1_11_build01' }, - ['1869056615'] = { Name = 'bh1_11_build02' }, - ['-580237681'] = { Name = 'bh1_11_fizzy_strutts' }, - ['-990088518'] = { Name = 'bh1_11_glue_1' }, - ['-1694294328'] = { Name = 'bh1_11_glue_2' }, - ['1476737062'] = { Name = 'bh1_11_glue' }, - ['-1015035763'] = { Name = 'bh1_11_glue1' }, - ['-1189891147'] = { Name = 'bh1_11_glue2' }, - ['-1363304695'] = { Name = 'bh1_11_glue3' }, - ['2131953521'] = { Name = 'bh1_11_ground' }, - ['695314763'] = { Name = 'bh1_11_int' }, - ['1000288188'] = { Name = 'bh1_11_logos' }, - ['12160631'] = { Name = 'bh1_11fizzibars_01' }, - ['-497921627'] = { Name = 'bh1_11fizzibars_02' }, - ['1311691311'] = { Name = 'bh1_13_alground' }, - ['-410473439'] = { Name = 'bh1_13_alleygrdec1' }, - ['-764029784'] = { Name = 'bh1_13_bh13_carshowch003' }, - ['1601594286'] = { Name = 'bh1_13_build1' }, - ['1362085665'] = { Name = 'bh1_13_build2' }, - ['71380293'] = { Name = 'bh1_13_build3' }, - ['1483736679'] = { Name = 'bh1_13_build4_emis1' }, - ['-190476786'] = { Name = 'bh1_13_build4' }, - ['587546567'] = { Name = 'bh1_13_carpark_gate' }, - ['2120965285'] = { Name = 'bh1_13_carpark01' }, - ['-503654922'] = { Name = 'bh1_13_glue' }, - ['663565805'] = { Name = 'bh1_13_ivy001' }, - ['-769658143'] = { Name = 'bh1_13_park_bars' }, - ['662319953'] = { Name = 'bh1_13_shadowproxy' }, - ['-376154091'] = { Name = 'bh1_13_walldec1' }, - ['-1682686890'] = { Name = 'bh1_13_walldec2' }, - ['-922839318'] = { Name = 'bh1_13_walldec3' }, - ['-130517667'] = { Name = 'bh1_13_walldec4' }, - ['2052159893'] = { Name = 'bh1_13_walldec5' }, - ['-1485018428'] = { Name = 'bh1_13_weed' }, - ['-1959132136'] = { Name = 'bh1_14_bld1_rl' }, - ['-402767186'] = { Name = 'bh1_14_build1' }, - ['-29855966'] = { Name = 'bh1_14_build2' }, - ['-940637552'] = { Name = 'bh1_14_build3' }, - ['-566939876'] = { Name = 'bh1_14_build4' }, - ['2038536976'] = { Name = 'bh1_14_detail_1' }, - ['-2100941427'] = { Name = 'bh1_14_detail_2' }, - ['1300410682'] = { Name = 'bh1_14_detail' }, - ['1111306782'] = { Name = 'bh1_14_fizzi_frame' }, - ['567964496'] = { Name = 'bh1_14_grnd' }, - ['-675945239'] = { Name = 'bh1_14_ivy01' }, - ['-1392996497'] = { Name = 'bh1_14_ivy02' }, - ['1423073602'] = { Name = 'bh1_15_alleygr_dec' }, - ['-1515753748'] = { Name = 'bh1_15_alleygr' }, - ['2023660193'] = { Name = 'bh1_15_bench_posh' }, - ['903702989'] = { Name = 'bh1_15_bld1' }, - ['-1214190254'] = { Name = 'bh1_15_bld2' }, - ['-1453993796'] = { Name = 'bh1_15_bld3' }, - ['-1693633493'] = { Name = 'bh1_15_bld4' }, - ['-2052734052'] = { Name = 'bh1_15_decals_01' }, - ['-1524923765'] = { Name = 'bh1_15_decals_02' }, - ['-1151226089'] = { Name = 'bh1_15_decals_03' }, - ['1823239905'] = { Name = 'bh1_15_decals' }, - ['-838902557'] = { Name = 'bh1_15_details' }, - ['-1814999854'] = { Name = 'bh1_15_emis_1' }, - ['998999324'] = { Name = 'bh1_15_emis_lod' }, - ['-398408169'] = { Name = 'bh1_15_fizzladder' }, - ['1556020831'] = { Name = 'bh1_15_hedge_tops' }, - ['531175976'] = { Name = 'bh1_15_lastmin_cols' }, - ['-834914240'] = { Name = 'bh1_15_lastmin_cols2' }, - ['-1019949860'] = { Name = 'bh1_15_ponsonby_glass' }, - ['-175009530'] = { Name = 'bh1_15_trim_detail' }, - ['-708059352'] = { Name = 'bh1_15_usher_nonfizz' }, - ['-620810183'] = { Name = 'bh1_16_3_locked_doors' }, - ['1276306648'] = { Name = 'bh1_16_bld_rails' }, - ['-1355799115'] = { Name = 'bh1_16_bld_rails2' }, - ['1463729611'] = { Name = 'bh1_16_bld01_det_01' }, - ['-1118297249'] = { Name = 'bh1_16_bld01_det_ns' }, - ['-65147102'] = { Name = 'bh1_16_bld01_det' }, - ['873104861'] = { Name = 'bh1_16_bld01' }, - ['1102848320'] = { Name = 'bh1_16_bld02' }, - ['251679191'] = { Name = 'bh1_16_bld03_det' }, - ['1325513779'] = { Name = 'bh1_16_bld03' }, - ['710596297'] = { Name = 'bh1_16_bld03b' }, - ['-1223149155'] = { Name = 'bh1_16_bld04_det' }, - ['1840746485'] = { Name = 'bh1_16_bld04_signol' }, - ['1563646102'] = { Name = 'bh1_16_bld04' }, - ['764939228'] = { Name = 'bh1_16_dec_01' }, - ['1040034983'] = { Name = 'bh1_16_dec_02' }, - ['1211875619'] = { Name = 'bh1_16_dec_03' }, - ['1481138492'] = { Name = 'bh1_16_dec_04' }, - ['-1795521776'] = { Name = 'bh1_16_fakeint' }, - ['-1136434737'] = { Name = 'bh1_16_fountain' }, - ['2067444438'] = { Name = 'bh1_16_fountwater_dynamic' }, - ['-959687626'] = { Name = 'bh1_16_grd_01' }, - ['437219855'] = { Name = 'bh1_16_grdb_01' }, - ['933783555'] = { Name = 'bh1_16_jewel2_fake_lod' }, - ['-877317073'] = { Name = 'bh1_16_jewel2_fake' }, - ['892244804'] = { Name = 'bh1_16_ladder_mission_fizz' }, - ['-960256113'] = { Name = 'bh1_16_post_heist_boards' }, - ['-285677174'] = { Name = 'bh1_16_preflec_proxylod' }, - ['-901984656'] = { Name = 'bh1_16_rail_03' }, - ['1262119790'] = { Name = 'bh1_16_refl_proxy_dumhd' }, - ['-49226685'] = { Name = 'bh1_16_scaff' }, - ['-446402197'] = { Name = 'bh1_16_swallow_disp_m' }, - ['376257781'] = { Name = 'bh1_16_temprefitmilo_lod' }, - ['-1295566325'] = { Name = 'bh1_16_v_jewel_milo_lod' }, - ['-994517155'] = { Name = 'bh1_17_bld_d' }, - ['-444352941'] = { Name = 'bh1_17_bld' }, - ['1406682134'] = { Name = 'bh1_17_vapid_e_dummy' }, - ['-789061585'] = { Name = 'bh1_17_vapid' }, - ['1770757352'] = { Name = 'bh1_18_bh1_small_rail' }, - ['-1418550949'] = { Name = 'bh1_18_bigivy' }, - ['115802712'] = { Name = 'bh1_18_bld01_arch' }, - ['-814666429'] = { Name = 'bh1_18_bld01_d1' }, - ['-1112110642'] = { Name = 'bh1_18_bld01_d2' }, - ['-1312394770'] = { Name = 'bh1_18_bld01_d3' }, - ['50994830'] = { Name = 'bh1_18_bld01_glue' }, - ['-768594598'] = { Name = 'bh1_18_bld01_grime' }, - ['-352357525'] = { Name = 'bh1_18_bld1_rfsig_lod' }, - ['-1094601675'] = { Name = 'bh1_18_bld1_rfsig' }, - ['552286716'] = { Name = 'bh1_18_bld1a' }, - ['-1773581475'] = { Name = 'bh1_18_em' }, - ['-504324858'] = { Name = 'bh1_18_fireescapes_ref' }, - ['-1063807625'] = { Name = 'bh1_18_fringe_flap' }, - ['-1478141548'] = { Name = 'bh1_18_fringe_flap2' }, - ['-1746683503'] = { Name = 'bh1_18_fringe_flap3' }, - ['-1984815826'] = { Name = 'bh1_18_fringe_flap4' }, - ['1105576219'] = { Name = 'bh1_18_gate' }, - ['447638003'] = { Name = 'bh1_18_glass' }, - ['-1255123174'] = { Name = 'bh1_18_rd01' }, - ['-654755003'] = { Name = 'bh1_20_arch' }, - ['-769705522'] = { Name = 'bh1_20_copshop_int' }, - ['-1339395275'] = { Name = 'bh1_20_em' }, - ['-600986733'] = { Name = 'bh1_20_furhedge00' }, - ['927883731'] = { Name = 'bh1_20_furhedge01' }, - ['693945840'] = { Name = 'bh1_20_furhedge02' }, - ['596621910'] = { Name = 'bh1_20_furhedge03' }, - ['366550761'] = { Name = 'bh1_20_furhedge04' }, - ['1537223286'] = { Name = 'bh1_20_furhedge05' }, - ['-630825938'] = { Name = 'bh1_20_ground_d1' }, - ['-956680870'] = { Name = 'bh1_20_ground_d2' }, - ['-515216902'] = { Name = 'bh1_20_ground_d3' }, - ['1901857311'] = { Name = 'bh1_20_ground_d4' }, - ['-2088587668'] = { Name = 'bh1_20_ground_d5' }, - ['-1887386008'] = { Name = 'bh1_20_ground_d6' }, - ['1537193924'] = { Name = 'bh1_20_ground' }, - ['334634808'] = { Name = 'bh1_20_in_bld_dtl' }, - ['-613149915'] = { Name = 'bh1_20_in_bld' }, - ['1699634493'] = { Name = 'bh1_20_lad1' }, - ['-1639783745'] = { Name = 'bh1_20_lad11' }, - ['-1868937362'] = { Name = 'bh1_20_lad14' }, - ['1205019207'] = { Name = 'bh1_20_lad6' }, - ['746941356'] = { Name = 'bh1_20_lad8' }, - ['1626540331'] = { Name = 'bh1_20_out_bld' }, - ['-732827072'] = { Name = 'bh1_20_out_blde' }, - ['617612637'] = { Name = 'bh1_20b_em' }, - ['1811296566'] = { Name = 'bh1_21_bld_decals' }, - ['1143804937'] = { Name = 'bh1_21_bld_decals01' }, - ['1383772324'] = { Name = 'bh1_21_bld_decals02' }, - ['-226820450'] = { Name = 'bh1_21_bld_main' }, - ['758673898'] = { Name = 'bh1_21_bld_wing003' }, - ['1384095576'] = { Name = 'bh1_21_bld_wing01' }, - ['993466710'] = { Name = 'bh1_21_deta' }, - ['734239870'] = { Name = 'bh1_21_details_01' }, - ['544400326'] = { Name = 'bh1_21_detb' }, - ['2112046757'] = { Name = 'bh1_21_grnd_d_2' }, - ['-1874826401'] = { Name = 'bh1_21_grnd_d_3' }, - ['1970545984'] = { Name = 'bh1_21_grnd_d' }, - ['-1123247171'] = { Name = 'bh1_21_grnd02_1' }, - ['1427227004'] = { Name = 'bh1_21_hedges' }, - ['-1084971674'] = { Name = 'bh1_21_hedgesb' }, - ['-924318798'] = { Name = 'bh1_21_ladder1' }, - ['-1160026187'] = { Name = 'bh1_21_ladder2' }, - ['1268880945'] = { Name = 'bh1_21_props_combo_slod' }, - ['1806845677'] = { Name = 'bh1_21_proxy' }, - ['1795825847'] = { Name = 'bh1_21_railscastshadow' }, - ['-648403614'] = { Name = 'bh1_21_roof' }, - ['1652013414'] = { Name = 'bh1_21_steps' }, - ['231815844'] = { Name = 'bh1_21_wall' }, - ['2032698431'] = { Name = 'bh1_21_waterfall_new' }, - ['-285059056'] = { Name = 'bh1_21_wing_d' }, - ['-59471862'] = { Name = 'bh1_21_wing3_d' }, - ['-1089094528'] = { Name = 'bh1_22_base' }, - ['-328365584'] = { Name = 'bh1_22_basee' }, - ['342087424'] = { Name = 'bh1_22_door_det' }, - ['1296206439'] = { Name = 'bh1_22_doorfizz_1' }, - ['-2134445713'] = { Name = 'bh1_22_doorfizz_2' }, - ['1861209537'] = { Name = 'bh1_22_doorfizz_3' }, - ['995458348'] = { Name = 'bh1_22_emissive_22' }, - ['2088201762'] = { Name = 'bh1_22_emissive_22b' }, - ['499290304'] = { Name = 'bh1_22_emissivesign' }, - ['-1778893031'] = { Name = 'bh1_22_fakeint' }, - ['-1918801716'] = { Name = 'bh1_22_glue_02' }, - ['1604302422'] = { Name = 'bh1_22_overlays_01' }, - ['1375378188'] = { Name = 'bh1_22_overlays_02' }, - ['181374135'] = { Name = 'bh1_22_overlays_03' }, - ['1820348439'] = { Name = 'bh1_22_overlays_04' }, - ['-428066519'] = { Name = 'bh1_22_overlays' }, - ['1774230317'] = { Name = 'bh1_22_towere' }, - ['-328995477'] = { Name = 'bh1_22_towerw_dtl' }, - ['-179981755'] = { Name = 'bh1_22_towerw' }, - ['-2823709'] = { Name = 'bh1_29_buildings' }, - ['-1382396826'] = { Name = 'bh1_29_dcl_01' }, - ['697648222'] = { Name = 'bh1_29_dcl_02' }, - ['437527900'] = { Name = 'bh1_29_dcl_03' }, - ['147751633'] = { Name = 'bh1_29_dcl_04' }, - ['110263893'] = { Name = 'bh1_29_dcl_05' }, - ['-637061723'] = { Name = 'bh1_29_dfizz_01' }, - ['-1083387932'] = { Name = 'bh1_29_dfizz_01b' }, - ['1560390578'] = { Name = 'bh1_29_fence' }, - ['-1165151113'] = { Name = 'bh1_29_fnc' }, - ['1902234873'] = { Name = 'bh1_29_racetrack_01' }, - ['-1339221501'] = { Name = 'bh1_29_sportequip' }, - ['-1832314118'] = { Name = 'bh1_29_stands' }, - ['-908498968'] = { Name = 'bh1_30_bhs_gate_l001' }, - ['-1651929043'] = { Name = 'bh1_30_bhs_gate_r001' }, - ['-1462167155'] = { Name = 'bh1_30_carpark' }, - ['1281750392'] = { Name = 'bh1_30_dcl_01' }, - ['655272650'] = { Name = 'bh1_30_dcl_02' }, - ['-119943583'] = { Name = 'bh1_30_dcl_03' }, - ['133131404'] = { Name = 'bh1_30_dcl_04' }, - ['-767164102'] = { Name = 'bh1_30_dcl_05' }, - ['-275563564'] = { Name = 'bh1_30_dcl_06' }, - ['-1109108617'] = { Name = 'bh1_30_dcl_07' }, - ['-1397475821'] = { Name = 'bh1_30_dcl_08' }, - ['-2031883661'] = { Name = 'bh1_30_dcl_09' }, - ['1424485288'] = { Name = 'bh1_30_dcl_10' }, - ['1177439797'] = { Name = 'bh1_30_dcl_11' }, - ['-957755494'] = { Name = 'bh1_30_dcl_12' }, - ['-1215123220'] = { Name = 'bh1_30_dcl_13' }, - ['-1454500765'] = { Name = 'bh1_30_dcl_14' }, - ['-1676674585'] = { Name = 'bh1_30_dcl_15' }, - ['469072304'] = { Name = 'bh1_30_dcl_16' }, - ['230415677'] = { Name = 'bh1_30_dcl_17' }, - ['-699348407'] = { Name = 'bh1_30_flowers_00' }, - ['1440762210'] = { Name = 'bh1_30_flowers_01' }, - ['2057507559'] = { Name = 'bh1_30_flowers_03' }, - ['-1344176797'] = { Name = 'bh1_30_flowers_04' }, - ['-503881398'] = { Name = 'bh1_30_flowers_05' }, - ['-1195831602'] = { Name = 'bh1_30_flowers_06' }, - ['-1787676123'] = { Name = 'bh1_30_hdg_01' }, - ['-1474306176'] = { Name = 'bh1_30_hdg_02' }, - ['1777558312'] = { Name = 'bh1_30_hdg_03' }, - ['2058224797'] = { Name = 'bh1_30_hdg_04' }, - ['1281927187'] = { Name = 'bh1_30_hdg_05' }, - ['1595559286'] = { Name = 'bh1_30_hdg_06' }, - ['747858053'] = { Name = 'bh1_30_hdg_07' }, - ['1036978912'] = { Name = 'bh1_30_hdg_08' }, - ['136126361'] = { Name = 'bh1_30_hdg_09' }, - ['1614434006'] = { Name = 'bh1_30_hdg_10' }, - ['914717577'] = { Name = 'bh1_30_hdg_11' }, - ['1210064546'] = { Name = 'bh1_30_hdg_12' }, - ['-115048248'] = { Name = 'bh1_30_hdg_13' }, - ['182723655'] = { Name = 'bh1_30_hdg_14' }, - ['-577648221'] = { Name = 'bh1_30_hdg_15' }, - ['-365632791'] = { Name = 'bh1_30_hdg_16' }, - ['-1006692738'] = { Name = 'bh1_30_hdg_17' }, - ['-826725390'] = { Name = 'bh1_30_hdg_18' }, - ['-1392809869'] = { Name = 'bh1_30_hdg_19' }, - ['-1897416504'] = { Name = 'bh1_30_hdg_20' }, - ['-1464770408'] = { Name = 'bh1_30_irsref_pot_iref017' }, - ['-704627915'] = { Name = 'bh1_30_irsref_pot_iref019' }, - ['-1217560423'] = { Name = 'bh1_30_irsref_pot' }, - ['-1050234753'] = { Name = 'bh1_30_ladderpool_d' }, - ['-1744559680'] = { Name = 'bh1_30_m4_bal1' }, - ['-1924527028'] = { Name = 'bh1_30_m4_bal2' }, - ['-2111048180'] = { Name = 'bh1_30_m4_bal3' }, - ['1885753985'] = { Name = 'bh1_30_m4_bal4' }, - ['-155033797'] = { Name = 'bh1_30_m4_bal5' }, - ['-452740162'] = { Name = 'bh1_30_m4_bal6' }, - ['-1188207598'] = { Name = 'bh1_30_m4_bal7' }, - ['-1461992593'] = { Name = 'bh1_30_m4_bal8' }, - ['-1750711532'] = { Name = 'bh1_30_m4_bal9_l1' }, - ['1089427794'] = { Name = 'bh1_30_m4' }, - ['-881977345'] = { Name = 'bh1_30_m4ground' }, - ['-1541431385'] = { Name = 'bh1_30_m5ground' }, - ['772135915'] = { Name = 'bh1_30_ma_pipes_stonerails' }, - ['-1327220406'] = { Name = 'bh1_30_ma' }, - ['-1185466065'] = { Name = 'bh1_30_mid_balus1' }, - ['-1416585822'] = { Name = 'bh1_30_mid_balus2' }, - ['1799462157'] = { Name = 'bh1_30_mid_balus3' }, - ['256447755'] = { Name = 'bh1_30_mid2_balus1' }, - ['-1335830728'] = { Name = 'bh1_30_mid2_balus2' }, - ['-1172313418'] = { Name = 'bh1_30_mid2_balus3' }, - ['1284673437'] = { Name = 'bh1_30_mid2_balus4' }, - ['-1483694462'] = { Name = 'bh1_30_middleplot01_blg03' }, - ['-1091732862'] = { Name = 'bh1_30_plot3_gnd' }, - ['-433962992'] = { Name = 'bh1_30_plot4' }, - ['-934598192'] = { Name = 'bh1_30_treebase' }, - ['1086381957'] = { Name = 'bh1_31_dcl_01' }, - ['-239943366'] = { Name = 'bh1_31_dcl_02' }, - ['590980159'] = { Name = 'bh1_31_dcl_03' }, - ['-264815037'] = { Name = 'bh1_31_dcl_04' }, - ['41837265'] = { Name = 'bh1_31_dcl_05' }, - ['1016092396'] = { Name = 'bh1_31_dcl_06' }, - ['1849604680'] = { Name = 'bh1_31_dcl_07' }, - ['930733592'] = { Name = 'bh1_31_detail3' }, - ['-423706993'] = { Name = 'bh1_31_details' }, - ['506234133'] = { Name = 'bh1_31_fizziposts' }, - ['1890666391'] = { Name = 'bh1_31_flowers_1' }, - ['1643063827'] = { Name = 'bh1_31_flowers_2' }, - ['1412140684'] = { Name = 'bh1_31_flowers_3' }, - ['-2053371020'] = { Name = 'bh1_31_gate' }, - ['869128399'] = { Name = 'bh1_31_ground1' }, - ['1508049039'] = { Name = 'bh1_31_hdg_00' }, - ['-1951275988'] = { Name = 'bh1_31_hdg_01' }, - ['2142489648'] = { Name = 'bh1_31_hdg_02' }, - ['-1570106976'] = { Name = 'bh1_31_hdg_03' }, - ['-754650411'] = { Name = 'bh1_31_hdg_04' }, - ['-990554442'] = { Name = 'bh1_31_hdg_05' }, - ['-294999648'] = { Name = 'bh1_31_hdg_06' }, - ['-552989985'] = { Name = 'bh1_31_hdg_07' }, - ['281538138'] = { Name = 'bh1_31_hdg_08' }, - ['863515582'] = { Name = 'bh1_31_hdg_09' }, - ['787195777'] = { Name = 'bh1_31_hdg_10' }, - ['1479866899'] = { Name = 'bh1_31_hdg_11' }, - ['-1955372913'] = { Name = 'bh1_31_hdg_12' }, - ['482345770'] = { Name = 'bh1_31_hdg_13' }, - ['1877322100'] = { Name = 'bh1_31_hdg_14' }, - ['-2112074271'] = { Name = 'bh1_31_hdg_15' }, - ['-730139999'] = { Name = 'bh1_31_hdg_16' }, - ['1706398996'] = { Name = 'bh1_31_hdg_17' }, - ['-1192805510'] = { Name = 'bh1_31_hdg_18' }, - ['51552368'] = { Name = 'bh1_31_m1' }, - ['-492871754'] = { Name = 'bh1_31_m2' }, - ['-1446226154'] = { Name = 'bh1_31_m2g' }, - ['-1897383871'] = { Name = 'bh1_31_m3' }, - ['-931847440'] = { Name = 'bh1_31_plot03_gnd' }, - ['786261260'] = { Name = 'bh1_32_blg01' }, - ['655392251'] = { Name = 'bh1_32_main_d2' }, - ['1126350796'] = { Name = 'bh1_32_main_d2b' }, - ['-244018488'] = { Name = 'bh1_32_main_da' }, - ['993033516'] = { Name = 'bh1_32_stores' }, - ['-143661634'] = { Name = 'bh1_33__billboard_bulid02' }, - ['-98384603'] = { Name = 'bh1_33_blg01_details' }, - ['48564284'] = { Name = 'bh1_33_blg01_neon_slod' }, - ['-1907931469'] = { Name = 'bh1_33_blg01_neon' }, - ['1548884782'] = { Name = 'bh1_33_blg01' }, - ['-1310575716'] = { Name = 'bh1_33_build02_dtds' }, - ['631684080'] = { Name = 'bh1_33_build02_dtdsa' }, - ['-1560099365'] = { Name = 'bh1_33_bulid02' }, - ['-2079218321'] = { Name = 'bh1_33_detailly' }, - ['-431334131'] = { Name = 'bh1_33_gas_neon_lod' }, - ['368827330'] = { Name = 'bh1_33_gas_neon' }, - ['-1162844625'] = { Name = 'bh1_34_blgs01_billboard' }, - ['-1705108084'] = { Name = 'bh1_34_blgs01_details' }, - ['-993087739'] = { Name = 'bh1_34_blgs01' }, - ['2142361405'] = { Name = 'bh1_34_blgs02_details' }, - ['1257310729'] = { Name = 'bh1_34_blgs03_billboard' }, - ['-179531776'] = { Name = 'bh1_34_blgs03' }, - ['45662378'] = { Name = 'bh1_34_fizz_det' }, - ['1331953957'] = { Name = 'bh1_34_ground' }, - ['1688079802'] = { Name = 'bh1_34_shadow01' }, - ['-2134476192'] = { Name = 'bh1_34_tower_billboard' }, - ['1278373611'] = { Name = 'bh1_34_tower_ivydecal' }, - ['325880767'] = { Name = 'bh1_34_tower' }, - ['1673949760'] = { Name = 'bh1_34_towersign_emm' }, - ['-2128950861'] = { Name = 'bh1_35_beamsa' }, - ['532842244'] = { Name = 'bh1_35_beamsc' }, - ['-490290836'] = { Name = 'bh1_35_bldcl_01' }, - ['-1390225883'] = { Name = 'bh1_35_bldcl_02' }, - ['-1083901271'] = { Name = 'bh1_35_bldcl_03' }, - ['1001059119'] = { Name = 'bh1_35_bldcl_04' }, - ['-110372012'] = { Name = 'bh1_35_campusbuild_01a' }, - ['-1886737475'] = { Name = 'bh1_35_campusgnd' }, - ['289885126'] = { Name = 'bh1_35_campusgnd2' }, - ['-527543087'] = { Name = 'bh1_35_dcl_01' }, - ['172468295'] = { Name = 'bh1_35_dcl_02' }, - ['-994009802'] = { Name = 'bh1_35_dcl_03' }, - ['-135756920'] = { Name = 'bh1_35_flowers_1' }, - ['-709083344'] = { Name = 'bh1_35_flowers_2' }, - ['-719884528'] = { Name = 'bh1_35_glass' }, - ['-1044593111'] = { Name = 'bh1_35_library_main' }, - ['1007351311'] = { Name = 'bh1_35_pav_roof' }, - ['-47887822'] = { Name = 'bh1_35_pavballust1' }, - ['265547663'] = { Name = 'bh1_35_pavballust2' }, - ['-1673693940'] = { Name = 'bh1_35_pavc' }, - ['351210621'] = { Name = 'bh1_35_pavillion' }, - ['-2145403691'] = { Name = 'bh1_35_pavs' }, - ['1681800969'] = { Name = 'bh1_35_pillar' }, - ['512126908'] = { Name = 'bh1_35_strlg_e' }, - ['2121576339'] = { Name = 'bh1_35_strlg_n' }, - ['-1254089431'] = { Name = 'bh1_35_strlg_s' }, - ['509865843'] = { Name = 'bh1_35_strlg_w' }, - ['72054168'] = { Name = 'bh1_35_tenfen' }, - ['-410596731'] = { Name = 'bh1_35_water' }, - ['-1325663282'] = { Name = 'bh1_35_win1' }, - ['-453549116'] = { Name = 'bh1_35_win2' }, - ['-1860256748'] = { Name = 'bh1_35_win3' }, - ['-948655937'] = { Name = 'bh1_35_win4' }, - ['907215782'] = { Name = 'bh1_36_ballus01' }, - ['-1421808128'] = { Name = 'bh1_36_ballus02' }, - ['-1719186803'] = { Name = 'bh1_36_ballus03' }, - ['2129466713'] = { Name = 'bh1_36_ballus04' }, - ['-1287946787'] = { Name = 'bh1_36_ballus05' }, - ['-1751300447'] = { Name = 'bh1_36_ballus06' }, - ['-2057395676'] = { Name = 'bh1_36_ballus07' }, - ['-420838598'] = { Name = 'bh1_36_ballus08_l1' }, - ['-649048395'] = { Name = 'bh1_36_ballus09_l1' }, - ['-1734884630'] = { Name = 'bh1_36_ballus10' }, - ['-1003873782'] = { Name = 'bh1_36_ballus11' }, - ['-697778553'] = { Name = 'bh1_36_ballus12' }, - ['-518007819'] = { Name = 'bh1_36_ballus13' }, - ['-278826888'] = { Name = 'bh1_36_ballus14' }, - ['-77363076'] = { Name = 'bh1_36_ballus15' }, - ['228470001'] = { Name = 'bh1_36_ballus16' }, - ['400769403'] = { Name = 'bh1_36_ballus17' }, - ['705226182'] = { Name = 'bh1_36_ballus18' }, - ['1444888054'] = { Name = 'bh1_36_ballus19' }, - ['-138934911'] = { Name = 'bh1_36_ballus20' }, - ['1100681368'] = { Name = 'bh1_36_bld_details' }, - ['168772571'] = { Name = 'bh1_36_bld_details2' }, - ['-207055094'] = { Name = 'bh1_36_bld_details3' }, - ['31929223'] = { Name = 'bh1_36_bld_details4' }, - ['-1451600495'] = { Name = 'bh1_36_blgmain' }, - ['1197674198'] = { Name = 'bh1_36_decal_01' }, - ['1545910329'] = { Name = 'bh1_36_decal_03' }, - ['1853250780'] = { Name = 'bh1_36_decal_04' }, - ['-1834211993'] = { Name = 'bh1_36_decal_05' }, - ['-2141355830'] = { Name = 'bh1_36_decal_06' }, - ['1869307622'] = { Name = 'bh1_36_decal_07' }, - ['1562491475'] = { Name = 'bh1_36_decal_08' }, - ['-640306247'] = { Name = 'bh1_36_decal_09' }, - ['1286642769'] = { Name = 'bh1_36_decal_10' }, - ['2062710996'] = { Name = 'bh1_36_decal_11' }, - ['-2115138997'] = { Name = 'bh1_36_decal_11b' }, - ['1765627242'] = { Name = 'bh1_36_decal_12' }, - ['1321149143'] = { Name = 'bh1_36_decal_12b' }, - ['154604891'] = { Name = 'bh1_36_decal_13' }, - ['929952200'] = { Name = 'bh1_36_decal_14' }, - ['1403464250'] = { Name = 'bh1_36_decal_15' }, - ['-2055495985'] = { Name = 'bh1_36_decal_15b' }, - ['1110181700'] = { Name = 'bh1_36_decal_16' }, - ['-1038121171'] = { Name = 'bh1_36_decal_17' }, - ['-405853282'] = { Name = 'bh1_36_decal_grotto' }, - ['2130418367'] = { Name = 'bh1_36_flowers01' }, - ['-1316388902'] = { Name = 'bh1_36_flowers02' }, - ['-1859471240'] = { Name = 'bh1_36_gate_iref' }, - ['1934640108'] = { Name = 'bh1_36_gatefrm_iref' }, - ['1996641440'] = { Name = 'bh1_36_grnd_01' }, - ['525411639'] = { Name = 'bh1_36_grnd_02' }, - ['421206219'] = { Name = 'bh1_36_grnd_03' }, - ['-251959696'] = { Name = 'bh1_36_grnd_03b' }, - ['1137438252'] = { Name = 'bh1_36_grnd_04' }, - ['764461494'] = { Name = 'bh1_36_grnd_05' }, - ['-707423675'] = { Name = 'bh1_36_grnd_06' }, - ['1210382050'] = { Name = 'bh1_36_grnd_07' }, - ['-794349044'] = { Name = 'bh1_36_hedged_01' }, - ['-487729511'] = { Name = 'bh1_36_hedged_02' }, - ['-1438587612'] = { Name = 'bh1_36_hedged_03' }, - ['-950919326'] = { Name = 'bh1_36_hedged_04' }, - ['511790527'] = { Name = 'bh1_36_hedged_05' }, - ['666591283'] = { Name = 'bh1_36_hedged_06' }, - ['-220301702'] = { Name = 'bh1_36_hedged_07' }, - ['219523816'] = { Name = 'bh1_36_hedged_08' }, - ['1733615465'] = { Name = 'bh1_36_hedged_09' }, - ['-1768997707'] = { Name = 'bh1_36_hedged_10' }, - ['-905796705'] = { Name = 'bh1_36_hedged_11' }, - ['-1144191180'] = { Name = 'bh1_36_hedged_12' }, - ['1671943911'] = { Name = 'bh1_36_hedged_13' }, - ['1305848643'] = { Name = 'bh1_36_hedged_14' }, - ['-2135224051'] = { Name = 'bh1_36_hedged_15' }, - ['1903129206'] = { Name = 'bh1_36_hedged_16' }, - ['445269161'] = { Name = 'bh1_36_hedged_17' }, - ['86120921'] = { Name = 'bh1_36_hedged_18' }, - ['1073024898'] = { Name = 'bh1_36_hedged_19' }, - ['-2111565157'] = { Name = 'bh1_36_hedged_20' }, - ['-1813465564'] = { Name = 'bh1_36_hedged_21' }, - ['328086893'] = { Name = 'bh1_36_hedged_22' }, - ['490358981'] = { Name = 'bh1_36_hedged_23' }, - ['788786264'] = { Name = 'bh1_36_hedged_24' }, - ['983368590'] = { Name = 'bh1_36_hedged_25' }, - ['-1134393577'] = { Name = 'bh1_36_hedged_26' }, - ['-435103117'] = { Name = 'bh1_36_hedged_27' }, - ['-171017746'] = { Name = 'bh1_36_hedged_28' }, - ['1282130934'] = { Name = 'bh1_36_irsref_pot' }, - ['-1000168448'] = { Name = 'bh1_36_lightstringlights' }, - ['436851026'] = { Name = 'bh1_36_ponddecal' }, - ['1491702691'] = { Name = 'bh1_36_pool_water' }, - ['-708771243'] = { Name = 'bh1_36_pool_water2' }, - ['-624161813'] = { Name = 'bh1_36_pool_waters' }, - ['-1232093905'] = { Name = 'bh1_36_torch_iref' }, - ['687548975'] = { Name = 'bh1_36_water_proxy' }, - ['222197524'] = { Name = 'bh1_36_wtrproxy_hd' }, - ['806128262'] = { Name = 'bh1_37_decals_graf' }, - ['-1631270633'] = { Name = 'bh1_37_decals' }, - ['2084335056'] = { Name = 'bh1_37_railings' }, - ['897688721'] = { Name = 'bh1_37_restaurant' }, - ['-548310164'] = { Name = 'bh1_38_fox_d' }, - ['-608894476'] = { Name = 'bh1_38_grnd_1_d01' }, - ['-267965800'] = { Name = 'bh1_38_grnd_1_d02' }, - ['-974858624'] = { Name = 'bh1_38_grnd_1_d03' }, - ['-2092578764'] = { Name = 'bh1_38_grnd_1' }, - ['-1474690987'] = { Name = 'bh1_38_railing_lod' }, - ['1651553088'] = { Name = 'bh1_38_railing' }, - ['1370705463'] = { Name = 'bh1_38_tclub_1_fnc' }, - ['-532908831'] = { Name = 'bh1_38_tclub_1_fncb' }, - ['-1756174877'] = { Name = 'bh1_38_tclub_2_fnc' }, - ['3372446'] = { Name = 'bh1_38_tclub_2_fncb' }, - ['-1735977071'] = { Name = 'bh1_38_tclub_2' }, - ['530033473'] = { Name = 'bh1_38_tclub' }, - ['-820684359'] = { Name = 'bh1_38_tennis_rail' }, - ['408068635'] = { Name = 'bh1_38_theatre' }, - ['1899401219'] = { Name = 'bh1_39_billboardrailing' }, - ['-1969500746'] = { Name = 'bh1_39_crpk01_decals' }, - ['-911038919'] = { Name = 'bh1_39_crpk02_decals' }, - ['2122544668'] = { Name = 'bh1_39_crpk02_signs' }, - ['-915855930'] = { Name = 'bh1_39_crprk01_emsign_lod' }, - ['-1306173239'] = { Name = 'bh1_39_crprk01_emsign' }, - ['746642406'] = { Name = 'bh1_39_crprk01' }, - ['-1126891179'] = { Name = 'bh1_39_fake_em_glow' }, - ['438592022'] = { Name = 'bh1_39_fruiitbb_ipl' }, - ['-1118967386'] = { Name = 'bh1_39_fruitbb_ipl_lod' }, - ['-859381146'] = { Name = 'bh1_39_grnd' }, - ['975416903'] = { Name = 'bh1_39_pipe' }, - ['334947675'] = { Name = 'bh1_39_shelv' }, - ['1863911442'] = { Name = 'bh1_39_shop1_details01' }, - ['-244937557'] = { Name = 'bh1_39_shop1_details02' }, - ['-1545158286'] = { Name = 'bh1_39_shop1_ladders' }, - ['237367582'] = { Name = 'bh1_39_shop3_details01' }, - ['-320033108'] = { Name = 'bh1_39_shop3_details02' }, - ['1827528698'] = { Name = 'bh1_39_shop3_ladders' }, - ['-1131405392'] = { Name = 'bh1_39_shops01_billboard' }, - ['1959454579'] = { Name = 'bh1_39_shops01_railing' }, - ['-591191033'] = { Name = 'bh1_39_shops01' }, - ['219042955'] = { Name = 'bh1_39_shops02_billboard' }, - ['-1192698793'] = { Name = 'bh1_39_shops02' }, - ['1782824722'] = { Name = 'bh1_39_shops03' }, - ['60891829'] = { Name = 'bh1_39_stairrailing' }, - ['838894886'] = { Name = 'bh1_40_basicplants' }, - ['-911619807'] = { Name = 'bh1_40_blg01' }, - ['-2050884287'] = { Name = 'bh1_40_blg02_details' }, - ['-672602721'] = { Name = 'bh1_40_blg02' }, - ['-746417900'] = { Name = 'bh1_40_canopy' }, - ['324857854'] = { Name = 'bh1_40_gnd_details' }, - ['738603988'] = { Name = 'bh1_40_gnd_details02' }, - ['79730233'] = { Name = 'bh1_40_gnd02' }, - ['366999773'] = { Name = 'bh1_40_gndmain' }, - ['-1532126903'] = { Name = 'bh1_40_grndmain_wtr' }, - ['1896442156'] = { Name = 'bh1_40_outblg' }, - ['900883308'] = { Name = 'bh1_40_pipes' }, - ['-758146521'] = { Name = 'bh1_40_pool_water' }, - ['-1247022288'] = { Name = 'bh1_40_pool' }, - ['763514225'] = { Name = 'bh1_40_props_flower00' }, - ['881914566'] = { Name = 'bh1_40_props_flower007' }, - ['428090741'] = { Name = 'bh1_40_props_flower01' }, - ['128877002'] = { Name = 'bh1_40_props_flower02' }, - ['72022787'] = { Name = 'bh1_40_props_flower04' }, - ['1920030574'] = { Name = 'bh1_40_props_flower05' }, - ['450459634'] = { Name = 'bh1_40_props_prop_flowers07' }, - ['-992437552'] = { Name = 'bh1_40_rearrailing_01' }, - ['-1290635452'] = { Name = 'bh1_40_rearrailing_02' }, - ['2129085253'] = { Name = 'bh1_40_triblg_details01' }, - ['1532951605'] = { Name = 'bh1_40_triblg_details02' }, - ['698620096'] = { Name = 'bh1_40_triblg_details03' }, - ['302858223'] = { Name = 'bh1_40_triblg_int' }, - ['1272036709'] = { Name = 'bh1_40_triblg' }, - ['-1176713795'] = { Name = 'bh1_40_voncsign' }, - ['429868150'] = { Name = 'bh1_42_bld_02_water' }, - ['-675008343'] = { Name = 'bh1_42_bld_02' }, - ['1852346177'] = { Name = 'bh1_42_bld01_blcny_ref' }, - ['-854648119'] = { Name = 'bh1_42_bld01_dtl' }, - ['-442499136'] = { Name = 'bh1_42_bld01_hedge_dtl01' }, - ['1713569992'] = { Name = 'bh1_42_bld01_hedge_dtl04' }, - ['-330333575'] = { Name = 'bh1_42_bld01_ovl' }, - ['894049433'] = { Name = 'bh1_42_bld01_water' }, - ['1411576204'] = { Name = 'bh1_42_bld01' }, - ['760165372'] = { Name = 'bh1_42_bld02_dtl' }, - ['-1997582799'] = { Name = 'bh1_42_bld02_ovl' }, - ['1483967426'] = { Name = 'bh1_42_build_beam1' }, - ['826522979'] = { Name = 'bh1_42_build_beam2' }, - ['1930248437'] = { Name = 'bh1_42_build_beam3' }, - ['1817469941'] = { Name = 'bh1_42_conbuild_d' }, - ['1672039505'] = { Name = 'bh1_42_conbuild' }, - ['-1646869672'] = { Name = 'bh1_42_conground_o' }, - ['501891598'] = { Name = 'bh1_42_conground' }, - ['1391068867'] = { Name = 'bh1_42_east_rail' }, - ['-581808034'] = { Name = 'bh1_42_east_rail2' }, - ['-1825915884'] = { Name = 'bh1_42_east_rail3' }, - ['-2120410887'] = { Name = 'bh1_42_east_rail4' }, - ['-75330350'] = { Name = 'bh1_42_east_railb' }, - ['-750468341'] = { Name = 'bh1_42_eastplot_building' }, - ['778151854'] = { Name = 'bh1_42_eastplot_decal' }, - ['-138861137'] = { Name = 'bh1_42_eastplot_hedge' }, - ['254760463'] = { Name = 'bh1_42_eastplot_water' }, - ['1072136522'] = { Name = 'bh1_42_park_ovl' }, - ['1883252135'] = { Name = 'bh1_42_park' }, - ['1768406028'] = { Name = 'bh1_42_wall_01' }, - ['1831781274'] = { Name = 'bh1_42_wall_02' }, - ['2128373493'] = { Name = 'bh1_42_wall_03' }, - ['-1264889286'] = { Name = 'bh1_42_wall_04' }, - ['-957942063'] = { Name = 'bh1_42_wall_05' }, - ['966052599'] = { Name = 'bh1_42_wood1' }, - ['668575617'] = { Name = 'bh1_42_wood2' }, - ['-1897419923'] = { Name = 'bh1_42b_lightemissive' }, - ['582782471'] = { Name = 'bh1_42b_m006' }, - ['469424264'] = { Name = 'bh1_42b_m4_d' }, - ['-82864374'] = { Name = 'bh1_42b_m4_e' }, - ['1382242024'] = { Name = 'bh1_42b_m4_fizzers' }, - ['640937298'] = { Name = 'bh1_42b_m4_g' }, - ['-23892466'] = { Name = 'bh1_42b_m4_water' }, - ['-1854558756'] = { Name = 'bh1_42b_m4' }, - ['655280274'] = { Name = 'bh1_42b_m5_d' }, - ['953052177'] = { Name = 'bh1_42b_m5_e' }, - ['1285690300'] = { Name = 'bh1_42b_m5_g' }, - ['2081039061'] = { Name = 'bh1_42b_m5_water' }, - ['-571254910'] = { Name = 'bh1_42b_office' }, - ['-1344609326'] = { Name = 'bh1_42b_park_d' }, - ['1406975955'] = { Name = 'bh1_42b_park_detail_a' }, - ['1045075119'] = { Name = 'bh1_42b_park_detail_b' }, - ['-264186227'] = { Name = 'bh1_42b_park' }, - ['-1708983894'] = { Name = 'bh1_43_b4_d' }, - ['-751189037'] = { Name = 'bh1_43_bexp' }, - ['-1661119409'] = { Name = 'bh1_43_bexpdecals' }, - ['724108853'] = { Name = 'bh1_43_bh43_tee_01' }, - ['989046218'] = { Name = 'bh1_43_bh43_tee_02' }, - ['785354118'] = { Name = 'bh1_43_bh43_tee_03' }, - ['1081848030'] = { Name = 'bh1_43_bh43_tee_04' }, - ['1379554395'] = { Name = 'bh1_43_bh43_tee_05' }, - ['1711242213'] = { Name = 'bh1_43_bh43_tee_06' }, - ['2044371863'] = { Name = 'bh1_43_bh43_tee_07' }, - ['-2008432523'] = { Name = 'bh1_43_bh43_tee_08' }, - ['-1705810808'] = { Name = 'bh1_43_bh43_tee_09' }, - ['-547027261'] = { Name = 'bh1_43_blckfnc00' }, - ['-240112807'] = { Name = 'bh1_43_blckfnc01' }, - ['2099102274'] = { Name = 'bh1_43_blckfnc02' }, - ['-901444793'] = { Name = 'bh1_43_bridge' }, - ['1535853363'] = { Name = 'bh1_43_build_balus_1' }, - ['1823532414'] = { Name = 'bh1_43_build_balus_2' }, - ['1059293796'] = { Name = 'bh1_43_build_balus_3' }, - ['1347300537'] = { Name = 'bh1_43_build_balus_4' }, - ['578277645'] = { Name = 'bh1_43_build_balus_5' }, - ['2100056117'] = { Name = 'bh1_43_club_sup_iref' }, - ['1939213683'] = { Name = 'bh1_43_decallot' }, - ['-1477966650'] = { Name = 'bh1_43_decals_clubhouse' }, - ['1178222041'] = { Name = 'bh1_43_fencea_1' }, - ['1753186919'] = { Name = 'bh1_43_fencea_2' }, - ['1523312380'] = { Name = 'bh1_43_fencea_3' }, - ['-1891348496'] = { Name = 'bh1_43_fencea_4' }, - ['2039948438'] = { Name = 'bh1_43_fencea_5' }, - ['-1411806950'] = { Name = 'bh1_43_fencea_6' }, - ['-1936180882'] = { Name = 'bh1_43_fenceb02' }, - ['-1159359408'] = { Name = 'bh1_43_fenceb04' }, - ['-860604435'] = { Name = 'bh1_43_fenceb05' }, - ['-327625078'] = { Name = 'bh1_43_fencec_1' }, - ['453539587'] = { Name = 'bh1_43_fenced_00' }, - ['-514292828'] = { Name = 'bh1_43_fenced_01' }, - ['-22757828'] = { Name = 'bh1_43_fenced_02' }, - ['-1163678894'] = { Name = 'bh1_43_fencee_00' }, - ['-1405940111'] = { Name = 'bh1_43_fencee_01' }, - ['789124123'] = { Name = 'bh1_43_fencee_02' }, - ['-1582761635'] = { Name = 'bh1_43_fencee_03' }, - ['-1803395312'] = { Name = 'bh1_43_fencee_04' }, - ['1474201104'] = { Name = 'bh1_43_fencef_02' }, - ['-1838941414'] = { Name = 'bh1_43_fencef_04' }, - ['1730847912'] = { Name = 'bh1_43_fencef_05' }, - ['1518304280'] = { Name = 'bh1_43_flower_1' }, - ['1075529552'] = { Name = 'bh1_43_flower_2' }, - ['-1918560616'] = { Name = 'bh1_43_fountain_water' }, - ['-1287283996'] = { Name = 'bh1_43_fountain2_water' }, - ['748211025'] = { Name = 'bh1_43_fw_01' }, - ['1632318641'] = { Name = 'bh1_43_fw_02' }, - ['788811812'] = { Name = 'bh1_43_fw_03' }, - ['-1829829416'] = { Name = 'bh1_43_golf_1a_o' }, - ['-821485481'] = { Name = 'bh1_43_golf_1a' }, - ['730936864'] = { Name = 'bh1_43_golf_1b_o' }, - ['-992867351'] = { Name = 'bh1_43_golf_1b' }, - ['1843092135'] = { Name = 'bh1_43_golf_1c_o' }, - ['-211556084'] = { Name = 'bh1_43_golf_1c' }, - ['1442384101'] = { Name = 'bh1_43_golf_2a_o' }, - ['-890070070'] = { Name = 'bh1_43_golf_2a' }, - ['-1074248953'] = { Name = 'bh1_43_golf_2b_o' }, - ['-684149674'] = { Name = 'bh1_43_golf_2b' }, - ['-1802734974'] = { Name = 'bh1_43_golf_3a_o' }, - ['-1671545534'] = { Name = 'bh1_43_golf_3a' }, - ['620445638'] = { Name = 'bh1_43_golf_3b_o' }, - ['-440283128'] = { Name = 'bh1_43_golf_3b' }, - ['-608062762'] = { Name = 'bh1_43_golf_4a_o' }, - ['1600273919'] = { Name = 'bh1_43_golf_4a' }, - ['28859155'] = { Name = 'bh1_43_golf_4b_o' }, - ['1850792924'] = { Name = 'bh1_43_golf_4b' }, - ['-956109552'] = { Name = 'bh1_43_golf_5a_o' }, - ['-1203542660'] = { Name = 'bh1_43_golf_5a' }, - ['775195005'] = { Name = 'bh1_43_golf_5b_o' }, - ['-1416279008'] = { Name = 'bh1_43_golf_5b' }, - ['-1135160415'] = { Name = 'bh1_43_golf_6a_o' }, - ['694995741'] = { Name = 'bh1_43_golf_6a' }, - ['1179613049'] = { Name = 'bh1_43_golf_6b_o' }, - ['2047863906'] = { Name = 'bh1_43_golf_6b' }, - ['-1303171253'] = { Name = 'bh1_43_golf_7a_o' }, - ['1592636670'] = { Name = 'bh1_43_golf_7a' }, - ['-851605886'] = { Name = 'bh1_43_golf_fence1a' }, - ['-123347630'] = { Name = 'bh1_43_golf_fence1b' }, - ['651344295'] = { Name = 'bh1_43_golf_fence1c' }, - ['900716445'] = { Name = 'bh1_43_golf_fence1d' }, - ['-856551089'] = { Name = 'bh1_43_golf_fence3a' }, - ['-547047884'] = { Name = 'bh1_43_golf_fence3b' }, - ['-99226730'] = { Name = 'bh1_43_golf_fence3c' }, - ['1593978161'] = { Name = 'bh1_43_golf_fence4a' }, - ['819646695'] = { Name = 'bh1_43_golf_fence4b' }, - ['-940867602'] = { Name = 'bh1_43_golf_fence5a' }, - ['-691462743'] = { Name = 'bh1_43_golf_fence5b' }, - ['-403030005'] = { Name = 'bh1_43_golf_fence5c' }, - ['-1641982465'] = { Name = 'bh1_43_golf_fencehed' }, - ['976456940'] = { Name = 'bh1_43_ground1_o' }, - ['2053087704'] = { Name = 'bh1_43_ground2' }, - ['-152372548'] = { Name = 'bh1_43_ivy' }, - ['1956064369'] = { Name = 'bh1_43_lot_a' }, - ['-2098083522'] = { Name = 'bh1_43_lot_h' }, - ['-1464134436'] = { Name = 'bh1_43_lot_w' }, - ['-80457608'] = { Name = 'bh1_43_park_1' }, - ['-1328956516'] = { Name = 'bh1_43_park_2' }, - ['1197011741'] = { Name = 'bh1_43_park_flowera' }, - ['2143806454'] = { Name = 'bh1_43_park_flowerb' }, - ['-1527621305'] = { Name = 'bh1_43_park_flowerb1' }, - ['1874773176'] = { Name = 'bh1_43_pergola' }, - ['382037456'] = { Name = 'bh1_43_perim_dec_01' }, - ['-2211838'] = { Name = 'bh1_43_perim_dec_02' }, - ['978859253'] = { Name = 'bh1_43_perim_dec_03' }, - ['627182345'] = { Name = 'bh1_43_perim_dec_04' }, - ['1607794670'] = { Name = 'bh1_43_perim_dec_05' }, - ['1228395188'] = { Name = 'bh1_43_perim_dec_06' }, - ['-2137669265'] = { Name = 'bh1_43_perim_dec_07' }, - ['1925850584'] = { Name = 'bh1_43_perim_dec_08' }, - ['-1601109659'] = { Name = 'bh1_43_perim_dec_09' }, - ['770685553'] = { Name = 'bh1_43_perim_dec_10' }, - ['865846729'] = { Name = 'bh1_43_perim_dec_11' }, - ['1096376644'] = { Name = 'bh1_43_perim_dec_12' }, - ['1618976640'] = { Name = 'bh1_43_perim_dec_13' }, - ['1850096397'] = { Name = 'bh1_43_perim_dec_14' }, - ['1933460733'] = { Name = 'bh1_43_perim_dec_15' }, - ['-2131238800'] = { Name = 'bh1_43_perim_dec_16' }, - ['126086538'] = { Name = 'bh1_43_perim_dec_17' }, - ['358517055'] = { Name = 'bh1_43_perim_dec_18' }, - ['637872780'] = { Name = 'bh1_43_perim_dec_19' }, - ['1599316176'] = { Name = 'bh1_43_perim_dec_20' }, - ['-1092395018'] = { Name = 'bh1_43_perim_dec_21' }, - ['-864748775'] = { Name = 'bh1_43_perim_dec_22' }, - ['-1705077011'] = { Name = 'bh1_43_perim_dec_23' }, - ['-1471728962'] = { Name = 'bh1_43_perim_dec_24' }, - ['-1099342054'] = { Name = 'bh1_43_perim_dec_25' }, - ['-859898971'] = { Name = 'bh1_43_perim_dec_26' }, - ['-1712548351'] = { Name = 'bh1_43_perim_dec_27' }, - ['-1470549286'] = { Name = 'bh1_43_perim_dec_28' }, - ['662090003'] = { Name = 'bh1_43_perim_dec_29' }, - ['970346602'] = { Name = 'bh1_43_perim_dec_30' }, - ['1276376293'] = { Name = 'bh1_43_perim_dec_31' }, - ['643606903'] = { Name = 'bh1_43_perim_dec_32' }, - ['-1567186463'] = { Name = 'bh1_43_perim_dec_33' }, - ['1953219988'] = { Name = 'bh1_43_perim_dec_34' }, - ['-2069404149'] = { Name = 'bh1_43_perim_dec_35' }, - ['1592269453'] = { Name = 'bh1_43_perim_dec_36' }, - ['-1178939447'] = { Name = 'bh1_43_perim_dec_37' }, - ['-477813923'] = { Name = 'bh1_43_perim_dec_38' }, - ['238909645'] = { Name = 'bh1_43_perim_dec_39' }, - ['-1267283767'] = { Name = 'bh1_43_perim_dec_40' }, - ['270663782'] = { Name = 'bh1_43_perim_dec_41' }, - ['573940877'] = { Name = 'bh1_43_perim_dec_42' }, - ['880527641'] = { Name = 'bh1_43_perim_dec_43' }, - ['1189768694'] = { Name = 'bh1_43_perim_dec_44' }, - ['-958009873'] = { Name = 'bh1_43_perim_dec_45' }, - ['-652602793'] = { Name = 'bh1_43_perim_dec_46' }, - ['-346310950'] = { Name = 'bh1_43_perim_dec_47' }, - ['-39527572'] = { Name = 'bh1_43_perim_dec_48' }, - ['-956928564'] = { Name = 'bh1_43_perim_dec_49' }, - ['-815138581'] = { Name = 'bh1_43_perim_dec_50' }, - ['-63090031'] = { Name = 'bh1_43_perim_dec_51' }, - ['-1375848940'] = { Name = 'bh1_43_perim_dec_52' }, - ['-2055576315'] = { Name = 'bh1_43_perim_dec_53' }, - ['2020887289'] = { Name = 'bh1_43_perim_dec_54' }, - ['-1056285652'] = { Name = 'bh1_43_perim_dec_55' }, - ['1402372414'] = { Name = 'bh1_43_perim_dec_56' }, - ['1265955067'] = { Name = 'bh1_43_perim_dec_57' }, - ['1025659990'] = { Name = 'bh1_43_perim_dec_58' }, - ['717893542'] = { Name = 'bh1_43_perim_dec_59' }, - ['1673766196'] = { Name = 'bh1_43_perim_dec_60' }, - ['91941028'] = { Name = 'bh1_43_perim_dec_61' }, - ['-684061661'] = { Name = 'bh1_43_perim_dec_62' }, - ['810499660'] = { Name = 'bh1_43_perim_dec_63' }, - ['2005126391'] = { Name = 'bh1_43_perimeterdecal_05' }, - ['1614035449'] = { Name = 'bh1_43_perimeterfence01' }, - ['-1242176133'] = { Name = 'bh1_43_perimeterfence02' }, - ['-319958166'] = { Name = 'bh1_43_perimeterfence03' }, - ['-508576530'] = { Name = 'bh1_43_perimeterfence04' }, - ['-2004251997'] = { Name = 'bh1_43_perimeterfence05' }, - ['437366193'] = { Name = 'bh1_43_perimeterfence07' }, - ['131533116'] = { Name = 'bh1_43_perimeterfence08' }, - ['900621546'] = { Name = 'bh1_43_perimeterfence09' }, - ['-7537596'] = { Name = 'bh1_43_perimeterfence10' }, - ['1071437035'] = { Name = 'bh1_43_prewtrproxy_01' }, - ['-719595478'] = { Name = 'bh1_43_prewtrproxy_2' }, - ['121093229'] = { Name = 'bh1_43_prewtrproxy_3' }, - ['-1141043754'] = { Name = 'bh1_43_rivdetail_test' }, - ['-326280480'] = { Name = 'bh1_43_rivertest002' }, - ['151196619'] = { Name = 'bh1_43_rivertest004' }, - ['-1023596665'] = { Name = 'bh1_43_smallfnc00' }, - ['-1799697661'] = { Name = 'bh1_43_smallfnc01' }, - ['-1551931252'] = { Name = 'bh1_43_smallfnc02' }, - ['48607163'] = { Name = 'bh1_43_smallfnc03_lod' }, - ['-424728782'] = { Name = 'bh1_43_smallfnc04_lod' }, - ['1565263688'] = { Name = 'bh1_43_smallfnc05_lod' }, - ['-1926222613'] = { Name = 'bh1_43_smallfncb_02' }, - ['1078006542'] = { Name = 'bh1_43_smallfncb_04' }, - ['1448099628'] = { Name = 'bh1_43_smallfncb_05' }, - ['-579280274'] = { Name = 'bh1_43_tophedge' }, - ['-424267620'] = { Name = 'bh1_43_water004' }, - ['189135291'] = { Name = 'bh1_43_water006' }, - ['1881740666'] = { Name = 'bh1_43_water03' }, - ['343391847'] = { Name = 'bh1_43_wtrproxyhd_01' }, - ['907084185'] = { Name = 'bh1_43_wtrproxyhd_02' }, - ['1741284618'] = { Name = 'bh1_43_wtrproxyhd_03' }, - ['1164414291'] = { Name = 'bh1_44_bld_01a' }, - ['-1812186533'] = { Name = 'bh1_44_bld_01aa' }, - ['1111004885'] = { Name = 'bh1_44_bld_01ab' }, - ['1399728480'] = { Name = 'bh1_44_bld_01b' }, - ['2109542165'] = { Name = 'bh1_44_bld_01b2' }, - ['-1460279926'] = { Name = 'bh1_44_bld_01ba' }, - ['1523271990'] = { Name = 'bh1_44_bld_01bb' }, - ['-1954993519'] = { Name = 'bh1_44_bld_01bc' }, - ['1032407599'] = { Name = 'bh1_44_bld_02' }, - ['1462383096'] = { Name = 'bh1_44_bld_02b' }, - ['1772702681'] = { Name = 'bh1_44_bld_flag_poles' }, - ['717890998'] = { Name = 'bh1_44_builddec_01' }, - ['-183256498'] = { Name = 'bh1_44_builddec_02' }, - ['126508859'] = { Name = 'bh1_44_builddec_03' }, - ['-1463836245'] = { Name = 'bh1_44_builddec_04' }, - ['-1165408962'] = { Name = 'bh1_44_builddec_05' }, - ['-2060526970'] = { Name = 'bh1_44_builddec_06' }, - ['-1760985541'] = { Name = 'bh1_44_builddec_07' }, - ['-248991108'] = { Name = 'bh1_44_builddec_08' }, - ['57104121'] = { Name = 'bh1_44_builddec_09' }, - ['1131730931'] = { Name = 'bh1_44_builddec_10' }, - ['1420425821'] = { Name = 'bh1_44_builddec_11' }, - ['-1255130260'] = { Name = 'bh1_44_builddec_12' }, - ['-949887025'] = { Name = 'bh1_44_builddec_13' }, - ['-1868729789'] = { Name = 'bh1_44_builddec_14' }, - ['-1610346220'] = { Name = 'bh1_44_builddec_15' }, - ['-335042278'] = { Name = 'bh1_44_builddec_16' }, - ['563627509'] = { Name = 'bh1_44_door_left002' }, - ['-1157025758'] = { Name = 'bh1_44_door_left01' }, - ['1071703347'] = { Name = 'bh1_44_door_right002' }, - ['477202441'] = { Name = 'bh1_44_door_right01' }, - ['93513485'] = { Name = 'bh1_44_flowers_01' }, - ['537009131'] = { Name = 'bh1_44_flowers_02' }, - ['826195556'] = { Name = 'bh1_44_flowers_03' }, - ['998560496'] = { Name = 'bh1_44_flowers_04' }, - ['1256780216'] = { Name = 'bh1_44_flowers_05' }, - ['548838748'] = { Name = 'bh1_44_flowers_06' }, - ['1922515228'] = { Name = 'bh1_44_flowers_07' }, - ['1059838534'] = { Name = 'bh1_44_flowers_08' }, - ['1366785757'] = { Name = 'bh1_44_flowers_09' }, - ['-686978333'] = { Name = 'bh1_44_flowers_10' }, - ['148336246'] = { Name = 'bh1_44_flowers_11' }, - ['-1285176436'] = { Name = 'bh1_44_flowers_12' }, - ['-450844919'] = { Name = 'bh1_44_flowers_13' }, - ['1340701849'] = { Name = 'bh1_44_flowers_14' }, - ['832585735'] = { Name = 'bh1_44_flowers_15' }, - ['754693822'] = { Name = 'bh1_44_flowers_16' }, - ['506829106'] = { Name = 'bh1_44_flowers_17' }, - ['1354504534'] = { Name = 'bh1_44_hdg_01' }, - ['1869174424'] = { Name = 'bh1_44_hdg_02' }, - ['-2135983836'] = { Name = 'bh1_44_hdg_03' }, - ['1272811393'] = { Name = 'bh1_44_hdg_04' }, - ['1563210271'] = { Name = 'bh1_44_hdg_05' }, - ['944007243'] = { Name = 'bh1_44_hdg_06' }, - ['-910882002'] = { Name = 'bh1_44_hdg_07' }, - ['2078516210'] = { Name = 'bh1_44_hdg_frnt01' }, - ['1278067847'] = { Name = 'bh1_44_hdg_frnt02' }, - ['1583933693'] = { Name = 'bh1_44_hdg_frnt03' }, - ['817237400'] = { Name = 'bh1_44_hdg_frnt04' }, - ['-1410989086'] = { Name = 'bh1_44_hdg_frnt05' }, - ['-1113807025'] = { Name = 'bh1_44_hdg_frnt06' }, - ['-1773741896'] = { Name = 'bh1_44_hdg_frnt07' }, - ['-1476559835'] = { Name = 'bh1_44_hdg_frnt08' }, - ['668231166'] = { Name = 'bh1_44_ov011a' }, - ['379962273'] = { Name = 'bh1_44_ov011b' }, - ['198684165'] = { Name = 'bh1_44_ov011c' }, - ['-59502786'] = { Name = 'bh1_44_ov011d' }, - ['1788570507'] = { Name = 'bh1_44_ov011e' }, - ['642295369'] = { Name = 'bh1_44_ov02' }, - ['-345984910'] = { Name = 'bh1_44_ov03' }, - ['-923973430'] = { Name = 'bh1_44_ov03b' }, - ['2057981707'] = { Name = 'bh1_44_ov05' }, - ['1837380799'] = { Name = 'bh1_44_ov06' }, - ['853652740'] = { Name = 'bh1_44_ov07_lod' }, - ['431428458'] = { Name = 'bh1_44_poolwater' }, - ['145115554'] = { Name = 'bh1_44_prewtrproxy' }, - ['-53127842'] = { Name = 'bh1_44_t1_x1' }, - ['191165053'] = { Name = 'bh1_44_t1_x2' }, - ['-1724969445'] = { Name = 'bh1_44_t1_x3' }, - ['-1476678732'] = { Name = 'bh1_44_t1_x4' }, - ['1061585163'] = { Name = 'bh1_44_tennis_fence1' }, - ['134255232'] = { Name = 'bh1_44_tennis_fence2' }, - ['1051983846'] = { Name = 'bh1_44_tennis_fence3' }, - ['-462107799'] = { Name = 'bh1_44_tennis_fence4' }, - ['-1532204338'] = { Name = 'bh1_44_terrain01' }, - ['1155294130'] = { Name = 'bh1_44_terrain01dcs' }, - ['-907365046'] = { Name = 'bh1_44_terrain02' }, - ['317696906'] = { Name = 'bh1_44_terrain02dcs' }, - ['-53594866'] = { Name = 'bh1_44_white_1' }, - ['-948188566'] = { Name = 'bh1_44_white_2' }, - ['-645239161'] = { Name = 'bh1_44_white_3' }, - ['-1543437451'] = { Name = 'bh1_44_white_4' }, - ['1468896392'] = { Name = 'bh1_44_wtrproxyhd' }, - ['1733046983'] = { Name = 'bh1_45_flowers_1' }, - ['-1652646101'] = { Name = 'bh1_45_flowers_2' }, - ['-879658160'] = { Name = 'bh1_45_flowers_3' }, - ['-7412918'] = { Name = 'bh1_45_flowers_4' }, - ['-1405207382'] = { Name = 'bh1_45_flowers_5' }, - ['-503175119'] = { Name = 'bh1_45_flowers_6' }, - ['509579701'] = { Name = 'bh1_45_gate1' }, - ['2073971761'] = { Name = 'bh1_45_gate2' }, - ['441643702'] = { Name = 'bh1_45_plot_4_water' }, - ['-1314083530'] = { Name = 'bh1_45_plot1_d' }, - ['1189479339'] = { Name = 'bh1_45_plot1_d5' }, - ['436447719'] = { Name = 'bh1_45_plot1_d6' }, - ['1783155312'] = { Name = 'bh1_45_plot1_d7' }, - ['-483562205'] = { Name = 'bh1_45_plot1_ivy' }, - ['1623567935'] = { Name = 'bh1_45_plot1_ter' }, - ['-1235705016'] = { Name = 'bh1_45_plot1_water' }, - ['-1721250419'] = { Name = 'bh1_45_plot2_building' }, - ['-480214075'] = { Name = 'bh1_45_plot2_d_1' }, - ['-216390856'] = { Name = 'bh1_45_plot2_d_2' }, - ['-988592341'] = { Name = 'bh1_45_plot2_d_3' }, - ['-690394441'] = { Name = 'bh1_45_plot2_d_4' }, - ['-1469739568'] = { Name = 'bh1_45_plot2_d_5' }, - ['-1412131670'] = { Name = 'bh1_45_plot2_d_6' }, - ['-250686999'] = { Name = 'bh1_45_plot2_d2' }, - ['-847902024'] = { Name = 'bh1_45_plot2_d8' }, - ['1593111900'] = { Name = 'bh1_45_plot2_terrb' }, - ['-455504738'] = { Name = 'bh1_45_plot3_d' }, - ['860918908'] = { Name = 'bh1_45_plot3_d2' }, - ['1091448823'] = { Name = 'bh1_45_plot3_d3' }, - ['1455610720'] = { Name = 'bh1_45_plot3_d4' }, - ['1274081035'] = { Name = 'bh1_45_plot3_detailfence' }, - ['-1965460498'] = { Name = 'bh1_45_plot3_tea_dcl' }, - ['-205912000'] = { Name = 'bh1_45_plot3_tea_dcl2' }, - ['-1845341053'] = { Name = 'bh1_45_plot3_tera' }, - ['2101390080'] = { Name = 'bh1_45_plot3_terb' }, - ['1323597332'] = { Name = 'bh1_45_plot3_water' }, - ['-835259213'] = { Name = 'bh1_45_plot3b_d' }, - ['53551416'] = { Name = 'bh1_45_plot3b_d2_1' }, - ['1433224623'] = { Name = 'bh1_45_plot3b_d2_2' }, - ['-1252948610'] = { Name = 'bh1_45_plot3b_d2_3' }, - ['541220395'] = { Name = 'bh1_45_plot3b_hdg_01' }, - ['1383645847'] = { Name = 'bh1_45_plot3b_hdg_02' }, - ['1679975914'] = { Name = 'bh1_45_plot3b_hdg_03' }, - ['2016120316'] = { Name = 'bh1_45_plot3b_hdg_04' }, - ['-2124570528'] = { Name = 'bh1_45_plot3b_hdg_05' }, - ['-1693297719'] = { Name = 'bh1_45_plot3b_hdg_06' }, - ['-1394608284'] = { Name = 'bh1_45_plot3b_hdg_07' }, - ['-1603477894'] = { Name = 'bh1_45_plot3b_hdg_08' }, - ['-994168842'] = { Name = 'bh1_45_plot4a_d_4' }, - ['-1303409895'] = { Name = 'bh1_45_plot4a_d_5' }, - ['-1446802710'] = { Name = 'bh1_45_plot4a_d' }, - ['358735603'] = { Name = 'bh1_45_plot4a_d2_1' }, - ['-995836554'] = { Name = 'bh1_45_plot4a_d2_2' }, - ['-2000534106'] = { Name = 'bh1_45_plot4a_d2_3' }, - ['-1734057949'] = { Name = 'bh1_45_plot4a_ter_dcs' }, - ['-700387201'] = { Name = 'bh1_45_plot4b_d_1' }, - ['-1001730925'] = { Name = 'bh1_45_plot4b_d_2' }, - ['-198592799'] = { Name = 'bh1_45_plot4b_d' }, - ['-500411330'] = { Name = 'bh1_45_plot4b_ter' }, - ['2131866720'] = { Name = 'bh1_46_c_build_d1' }, - ['-1921560277'] = { Name = 'bh1_46_c_build_d2' }, - ['-461111481'] = { Name = 'bh1_46_c_build_d3' }, - ['1901697264'] = { Name = 'bh1_46_c_build_d4' }, - ['-899953933'] = { Name = 'bh1_46_c_build_d5' }, - ['-671160775'] = { Name = 'bh1_46_c_build_d6' }, - ['285562949'] = { Name = 'bh1_46_c_build_d9' }, - ['791549765'] = { Name = 'bh1_46_c_build_water' }, - ['910483629'] = { Name = 'bh1_46_c_build_wtr2' }, - ['1902818600'] = { Name = 'bh1_46_c_build' }, - ['1963774490'] = { Name = 'bh1_46_c_buildyanky_detail_1' }, - ['-2022017291'] = { Name = 'bh1_46_c_buildyanky_detail_2' }, - ['1317045506'] = { Name = 'bh1_46_c_buildyanky_detail_3' }, - ['1626581480'] = { Name = 'bh1_46_c_buildyanky_detail_4' }, - ['810252008'] = { Name = 'bh1_46_c_grnd' }, - ['-1263483880'] = { Name = 'bh1_46_em_a' }, - ['-1024499563'] = { Name = 'bh1_46_em_b' }, - ['875354838'] = { Name = 'bh1_46_fountainwater1' }, - ['1668331873'] = { Name = 'bh1_46_fountainwater2' }, - ['-2143220928'] = { Name = 'bh1_46_furgrass_south01' }, - ['-1430560716'] = { Name = 'bh1_46_furgrass_south02' }, - ['-186092403'] = { Name = 'bh1_46_furgrass_south03' }, - ['-1893160689'] = { Name = 'bh1_46_furgrass_south04' }, - ['1227463950'] = { Name = 'bh1_46_furgrass_south05' }, - ['-802337274'] = { Name = 'bh1_46_furhedge00' }, - ['-628661574'] = { Name = 'bh1_46_furhedge01' }, - ['-187558065'] = { Name = 'bh1_46_furhedge02' }, - ['1172629932'] = { Name = 'bh1_46_ground01' }, - ['-1820431165'] = { Name = 'bh1_46_ground01a' }, - ['-1832457567'] = { Name = 'bh1_46_hdg_01' }, - ['-1782452069'] = { Name = 'bh1_46_hdg_02' }, - ['1734349784'] = { Name = 'bh1_46_hdg_03' }, - ['2050374020'] = { Name = 'bh1_46_hdg_04' }, - ['-872522477'] = { Name = 'bh1_46_hdg_05' }, - ['-825531731'] = { Name = 'bh1_46_hdg_06' }, - ['1920538727'] = { Name = 'bh1_46_mansion01_d_iv' }, - ['1503301272'] = { Name = 'bh1_46_mansion01_d1' }, - ['484906290'] = { Name = 'bh1_46_mansion01_d2' }, - ['1998571938'] = { Name = 'bh1_46_mansion01_d3' }, - ['-797574067'] = { Name = 'bh1_46_mansion01_d4' }, - ['-1699311409'] = { Name = 'bh1_46_mansion01_d5' }, - ['-1181191078'] = { Name = 'bh1_46_mansion01_detail_2' }, - ['-1763758360'] = { Name = 'bh1_46_mansion01_detail_3' }, - ['-2069067133'] = { Name = 'bh1_46_mansion01_detail_4' }, - ['84478778'] = { Name = 'bh1_46_mansion01_detail_5' }, - ['-226367956'] = { Name = 'bh1_46_mansion01_detail_6' }, - ['2132222347'] = { Name = 'bh1_46_mansion01' }, - ['1554104833'] = { Name = 'bh1_46_pl1' }, - ['-553367864'] = { Name = 'bh1_46_pl2' }, - ['-637799143'] = { Name = 'bh1_46_plants1' }, - ['-935767660'] = { Name = 'bh1_46_plants2' }, - ['1866702762'] = { Name = 'bh1_46_plants3' }, - ['1560673071'] = { Name = 'bh1_46_plants4' }, - ['-1574991483'] = { Name = 'bh1_46b_a_build_d_1' }, - ['604114252'] = { Name = 'bh1_46b_a_build_d_2' }, - ['842377651'] = { Name = 'bh1_46b_a_build_d_3' }, - ['1832704616'] = { Name = 'bh1_46b_a_build_o' }, - ['-1933941009'] = { Name = 'bh1_46b_a_build_o2' }, - ['-2030806173'] = { Name = 'bh1_46b_a_build_o3' }, - ['-1899042020'] = { Name = 'bh1_46b_a_build_o4' }, - ['1942905857'] = { Name = 'bh1_46b_a_build' }, - ['-687289398'] = { Name = 'bh1_46b_a_buildb' }, - ['-847462761'] = { Name = 'bh1_46b_b_balust_1' }, - ['-1209560211'] = { Name = 'bh1_46b_b_balust_2' }, - ['-367691832'] = { Name = 'bh1_46b_b_balust_3' }, - ['1682467888'] = { Name = 'bh1_46b_b_balust_4' }, - ['1339966300'] = { Name = 'bh1_46b_b_balust_5' }, - ['-2128337433'] = { Name = 'bh1_46b_b_balust_6' }, - ['-1438943211'] = { Name = 'bh1_46b_b_balust_7' }, - ['1191817639'] = { Name = 'bh1_46b_b_balust_8' }, - ['-280865979'] = { Name = 'bh1_46b_b_build' }, - ['-702360621'] = { Name = 'bh1_46b_em_1' }, - ['-337576113'] = { Name = 'bh1_46b_em_2' }, - ['1540636799'] = { Name = 'bh1_46b_fence_1' }, - ['819462836'] = { Name = 'bh1_46b_flowergroup_a' }, - ['-1330085261'] = { Name = 'bh1_46b_flowergroup_b' }, - ['-1691255147'] = { Name = 'bh1_46b_flowergroup_c1' }, - ['1682903249'] = { Name = 'bh1_46b_flowergroup_c2' }, - ['1992144302'] = { Name = 'bh1_46b_flowergroup_c3' }, - ['-354964539'] = { Name = 'bh1_46b_furgrass01' }, - ['-593359014'] = { Name = 'bh1_46b_furgrass02' }, - ['-1381080217'] = { Name = 'bh1_46b_furhedge00' }, - ['-1661156856'] = { Name = 'bh1_46b_furhedge01' }, - ['-1363974795'] = { Name = 'bh1_46b_furhedge02' }, - ['1080527071'] = { Name = 'bh1_46b_furhedge03' }, - ['1377905746'] = { Name = 'bh1_46b_furhedge04' }, - ['1190356752'] = { Name = 'bh1_46b_ground_dcs' }, - ['1683986739'] = { Name = 'bh1_46b_ground' }, - ['1107631626'] = { Name = 'bh1_46b_groundb_dcs' }, - ['-1719954317'] = { Name = 'bh1_46b_groundb' }, - ['-1553315544'] = { Name = 'bh1_46b_hedge_02' }, - ['-1857280788'] = { Name = 'bh1_46b_hedge_03' }, - ['2131853431'] = { Name = 'bh1_46b_hedge_04' }, - ['-26247391'] = { Name = 'bh1_46b_hedge_05' }, - ['-334636450'] = { Name = 'bh1_46b_hedge_06' }, - ['1827387825'] = { Name = 'bh1_46b_plants' }, - ['-310715319'] = { Name = 'bh1_46b_water' }, - ['823389161'] = { Name = 'bh1_47_base_01' }, - ['1005249067'] = { Name = 'bh1_47_bld02_bal1' }, - ['-258094186'] = { Name = 'bh1_47_bld02_bal2' }, - ['-1982222489'] = { Name = 'bh1_47_bld02_dec_01' }, - ['1328593422'] = { Name = 'bh1_47_bld02_dec_02' }, - ['-1520146820'] = { Name = 'bh1_47_bld02_dec_03' }, - ['-575449323'] = { Name = 'bh1_47_bld02_dec_04' }, - ['-260735847'] = { Name = 'bh1_47_bld02_dec_05' }, - ['1983252508'] = { Name = 'bh1_47_bld02_dec_06' }, - ['-1930349166'] = { Name = 'bh1_47_bld02_dec_07' }, - ['-1876543657'] = { Name = 'bh1_47_bld02_dtl01' }, - ['-279126603'] = { Name = 'bh1_47_bld02_terrain' }, - ['1709010950'] = { Name = 'bh1_47_bld02' }, - ['-1340443001'] = { Name = 'bh1_47_bld03_dtl' }, - ['623827067'] = { Name = 'bh1_47_bld03_garage_ovl' }, - ['-291890860'] = { Name = 'bh1_47_bld03_ovl' }, - ['726272860'] = { Name = 'bh1_47_bld03_pergola' }, - ['-1542260580'] = { Name = 'bh1_47_bld03_terrain1' }, - ['-398789441'] = { Name = 'bh1_47_bld03' }, - ['-1793534980'] = { Name = 'bh1_47_burnt_decal_01' }, - ['-1157743797'] = { Name = 'bh1_47_burnt_details' }, - ['603828004'] = { Name = 'bh1_47_burnt_house' }, - ['1899142671'] = { Name = 'bh1_47_burnt_pool_decal_01' }, - ['-2040933200'] = { Name = 'bh1_47_burnt_slod' }, - ['771477986'] = { Name = 'bh1_47_decal_03' }, - ['-1268830485'] = { Name = 'bh1_47_detailsbase_01' }, - ['-998270886'] = { Name = 'bh1_47_flowers_01' }, - ['1930237257'] = { Name = 'bh1_47_gate_1' }, - ['-2139443164'] = { Name = 'bh1_47_gate_2' }, - ['-423316851'] = { Name = 'bh1_47_hedged1_01' }, - ['1356138156'] = { Name = 'bh1_47_hedged1_02' }, - ['2115756345'] = { Name = 'bh1_47_hedged1_03' }, - ['2086264245'] = { Name = 'bh1_47_hedged1_04' }, - ['697743408'] = { Name = 'bh1_47_hedged1_05' }, - ['-1479625570'] = { Name = 'bh1_47_hedged1_06' }, - ['-1727981821'] = { Name = 'bh1_47_hedged1_07' }, - ['-951979132'] = { Name = 'bh1_47_hedged1_08' }, - ['1689398886'] = { Name = 'bh1_47_hedged1_09' }, - ['570141302'] = { Name = 'bh1_47_hedged1_10' }, - ['884559857'] = { Name = 'bh1_47_hedged1_11' }, - ['-1732807038'] = { Name = 'bh1_47_hedged2_01' }, - ['-2029661409'] = { Name = 'bh1_47_hedged2_02' }, - ['2101526425'] = { Name = 'bh1_47_hedged2_03' }, - ['1804082212'] = { Name = 'bh1_47_hedged2_04' }, - ['-1776193186'] = { Name = 'bh1_47_hedged2_05' }, - ['884453004'] = { Name = 'bh1_47_hedged2_06' }, - ['2057615973'] = { Name = 'bh1_47_hedged2_07' }, - ['1765185417'] = { Name = 'bh1_47_hedged2_08' }, - ['1058521932'] = { Name = 'bh1_47_hedged2_09' }, - ['-1049534710'] = { Name = 'bh1_47_hedged2_10' }, - ['1109876852'] = { Name = 'bh1_47_hedged2_11' }, - ['333874163'] = { Name = 'bh1_47_hedged2_12' }, - ['-1194068010'] = { Name = 'bh1_47_joshhse_firevfx' }, - ['-1753964904'] = { Name = 'bh1_47_joshhse_firevfx001' }, - ['-1521075621'] = { Name = 'bh1_47_joshhse_firevfx002' }, - ['-822440545'] = { Name = 'bh1_47_joshhse_firevfx004' }, - ['-592172782'] = { Name = 'bh1_47_joshhse_firevfx005' }, - ['-225684286'] = { Name = 'bh1_47_joshhse_firevfx006' }, - ['110263502'] = { Name = 'bh1_47_joshhse_firevfx007' }, - ['402661289'] = { Name = 'bh1_47_joshhse_firevfx008' }, - ['633191204'] = { Name = 'bh1_47_joshhse_firevfx009' }, - ['541340557'] = { Name = 'bh1_47_joshhse_firevfx010' }, - ['-320090907'] = { Name = 'bh1_47_joshhse_firevfx011' }, - ['255136119'] = { Name = 'bh1_47_joshhse_firevfx012' }, - ['1818204024'] = { Name = 'bh1_47_pool02' }, - ['-1154061131'] = { Name = 'bh1_47_terrain_1' }, - ['282919677'] = { Name = 'bh1_47_terrain_hedge' }, - ['1619214278'] = { Name = 'bh1_47_unburnt_decal' }, - ['-704158548'] = { Name = 'bh1_47_unburnt_details' }, - ['1508262081'] = { Name = 'bh1_47_unburnt_emis_slod' }, - ['-1136613807'] = { Name = 'bh1_47_unburnt_emis' }, - ['-1055384942'] = { Name = 'bh1_47_unburnt_house' }, - ['1427638297'] = { Name = 'bh1_47_unburnt_pool_decal' }, - ['155841957'] = { Name = 'bh1_47_unburnt_slod' }, - ['1879871808'] = { Name = 'bh1_48_b_builda' }, - ['-1504248364'] = { Name = 'bh1_48_b_buildb' }, - ['1851341544'] = { Name = 'bh1_48_b_decal_a' }, - ['2091145086'] = { Name = 'bh1_48_b_decal_b' }, - ['-1964051437'] = { Name = 'bh1_48_b_decal_c' }, - ['-305612347'] = { Name = 'bh1_48_b_decal_d' }, - ['-67709407'] = { Name = 'bh1_48_b_decal_e' }, - ['-292769785'] = { Name = 'bh1_48_b_detailsa' }, - ['-1069558942'] = { Name = 'bh1_48_b_detailsb' }, - ['-769165519'] = { Name = 'bh1_48_b_detailsc' }, - ['1413905273'] = { Name = 'bh1_48_b_detailsd' }, - ['-2080372624'] = { Name = 'bh1_48_b_gate1' }, - ['-1980453285'] = { Name = 'bh1_48_b_ground' }, - ['-1148178078'] = { Name = 'bh1_48_b_wall' }, - ['-1945644990'] = { Name = 'bh1_48_balustrada' }, - ['2105160487'] = { Name = 'bh1_48_balustradb' }, - ['597229410'] = { Name = 'bh1_48_balustradc' }, - ['277063902'] = { Name = 'bh1_48_em_a' }, - ['588205557'] = { Name = 'bh1_48_em_b' }, - ['1502329577'] = { Name = 'bh1_48_em_t' }, - ['1558978619'] = { Name = 'bh1_48_flowers2' }, - ['1007476365'] = { Name = 'bh1_48_flowers3' }, - ['717437946'] = { Name = 'bh1_48_flowers4' }, - ['1129536043'] = { Name = 'bh1_48_fur_01' }, - ['436012927'] = { Name = 'bh1_48_fur_02' }, - ['1587417284'] = { Name = 'bh1_48_fur_03' }, - ['1954102394'] = { Name = 'bh1_48_fur_04' }, - ['208268377'] = { Name = 'bh1_48_fur_05' }, - ['-632944622'] = { Name = 'bh1_48_fur_06' }, - ['688694686'] = { Name = 'bh1_48_fur_07' }, - ['-155074295'] = { Name = 'bh1_48_fur_08' }, - ['-709460217'] = { Name = 'bh1_48_fur_09' }, - ['821704369'] = { Name = 'bh1_48_fur_10' }, - ['-588411239'] = { Name = 'bh1_48_fur_11' }, - ['179268124'] = { Name = 'bh1_48_fur_12' }, - ['965396434'] = { Name = 'bh1_48_fur_13' }, - ['-414932153'] = { Name = 'bh1_48_fur_14' }, - ['-833883830'] = { Name = 'bh1_48_fur_15' }, - ['-998122058'] = { Name = 'bh1_48_fur_16' }, - ['1900583117'] = { Name = 'bh1_48_grnd_hdg' }, - ['-1744860020'] = { Name = 'bh1_48_grnd' }, - ['-1391260454'] = { Name = 'bh1_48_grnd2_clth' }, - ['-926619243'] = { Name = 'bh1_48_grnd2_clthb' }, - ['-214455419'] = { Name = 'bh1_48_grnd2' }, - ['-57738194'] = { Name = 'bh1_48_mans_decal_1' }, - ['-889841411'] = { Name = 'bh1_48_mans_decal_2' }, - ['-653249231'] = { Name = 'bh1_48_mans_decal_3' }, - ['-869194181'] = { Name = 'bh1_48_mans_decal_4ay' }, - ['1240951900'] = { Name = 'bh1_48_mans_decal_em2' }, - ['1587966903'] = { Name = 'bh1_48_mans_decal_emiss' }, - ['-1426400673'] = { Name = 'bh1_48_mans_decal_pool' }, - ['689431352'] = { Name = 'bh1_48_mans_ivy1' }, - ['994609053'] = { Name = 'bh1_48_mans_ivy2' }, - ['1524356907'] = { Name = 'bh1_48_michael_decla' }, - ['-549724171'] = { Name = 'bh1_48_michael_declb' }, - ['-318932104'] = { Name = 'bh1_48_michael_declc' }, - ['-71231233'] = { Name = 'bh1_48_michael_decld' }, - ['-887672284'] = { Name = 'bh1_48_michael_deta' }, - ['-1193669206'] = { Name = 'bh1_48_michael_detb' }, - ['723317294'] = { Name = 'bh1_48_michael_detc' }, - ['416664992'] = { Name = 'bh1_48_michael_detd' }, - ['113299972'] = { Name = 'bh1_48_michaels' }, - ['1854260036'] = { Name = 'bh1_48_planter_ref' }, - ['1827097148'] = { Name = 'bh1_48_props_watrelfproxy' }, - ['645202402'] = { Name = 'bh1_48_tennis_detail' }, - ['217437483'] = { Name = 'bh1_48_water_fount' }, - ['1115311664'] = { Name = 'bh1_49_bld_11_em_lod' }, - ['10758786'] = { Name = 'bh1_49_bld_11_em' }, - ['-259793739'] = { Name = 'bh1_49_bld_11' }, - ['292807669'] = { Name = 'bh1_49_bld_chrch' }, - ['-327094411'] = { Name = 'bh1_49_bld_decal' }, - ['-322154375'] = { Name = 'bh1_49_bld_decal2' }, - ['-864809015'] = { Name = 'bh1_49_bld_decal3' }, - ['1121526061'] = { Name = 'bh1_49_bushdec_01' }, - ['1966671512'] = { Name = 'bh1_49_bushdec_02' }, - ['-1545346067'] = { Name = 'bh1_49_bushdec_03' }, - ['-802407299'] = { Name = 'bh1_49_bushdec_04' }, - ['-1101162272'] = { Name = 'bh1_49_bushdec_05' }, - ['-294422261'] = { Name = 'bh1_49_bushdec_06' }, - ['-599698265'] = { Name = 'bh1_49_bushdec_07' }, - ['149663235'] = { Name = 'bh1_49_bushdec_08' }, - ['-123662994'] = { Name = 'bh1_49_bushdec_09' }, - ['-1600595125'] = { Name = 'bh1_49_bushdec_10' }, - ['1390460892'] = { Name = 'bh1_49_bushdec_11' }, - ['1579734632'] = { Name = 'bh1_49_bushdec_12' }, - ['1051137569'] = { Name = 'bh1_49_chrch_em_lod' }, - ['-1904787447'] = { Name = 'bh1_49_chrch_em' }, - ['-848986919'] = { Name = 'bh1_49_cloister_d' }, - ['-13038663'] = { Name = 'bh1_49_cloister028_em_lod' }, - ['278960799'] = { Name = 'bh1_49_cloister028_em' }, - ['-736652603'] = { Name = 'bh1_49_cloister028' }, - ['-1277031083'] = { Name = 'bh1_49_decals' }, - ['-795569752'] = { Name = 'bh1_49_decalsb' }, - ['-1036061674'] = { Name = 'bh1_49_decalsb2' }, - ['815442589'] = { Name = 'bh1_49_flower1' }, - ['1068583114'] = { Name = 'bh1_49_flower2' }, - ['-435579528'] = { Name = 'bh1_49_flower3' }, - ['1133089429'] = { Name = 'bh1_49_grd_decal1' }, - ['1513930747'] = { Name = 'bh1_49_grd_decal2' }, - ['-1476469890'] = { Name = 'bh1_49_grd_decal3' }, - ['2139687571'] = { Name = 'bh1_49_grd_decal4' }, - ['-113029518'] = { Name = 'bh1_49_grnd' }, - ['-46224274'] = { Name = 'bh1_49_shadowcaster' }, - ['-51067641'] = { Name = 'bh1_49_water' }, - ['742609507'] = { Name = 'bh1_49_waterd' }, - ['96940378'] = { Name = 'bh1_49b_flower' }, - ['-2137944101'] = { Name = 'bh1_49b_park_fur' }, - ['750588006'] = { Name = 'bh1_49b_park_fur2' }, - ['-1941123196'] = { Name = 'bh1_49b_park_fur3' }, - ['2065575207'] = { Name = 'bh1_49b_park_fur4' }, - ['-249433166'] = { Name = 'bh1_49b_park_grd_d' }, - ['-737921557'] = { Name = 'bh1_49b_park_grd' }, - ['2075954223'] = { Name = 'bh1_49b_park_waterd' }, - ['-1803893806'] = { Name = 'bh1_emissive_b_bh1_31' }, - ['1101424217'] = { Name = 'bh1_emissive_bh1_01_a' }, - ['-641263972'] = { Name = 'bh1_emissive_bh1_01_b' }, - ['838028652'] = { Name = 'bh1_emissive_bh1_02_set' }, - ['-1365885473'] = { Name = 'bh1_emissive_bh1_02' }, - ['-750064110'] = { Name = 'bh1_emissive_bh1_03_ema' }, - ['1580794864'] = { Name = 'bh1_emissive_bh1_03_emb' }, - ['-272763863'] = { Name = 'bh1_emissive_bh1_04_ema' }, - ['-555003260'] = { Name = 'bh1_emissive_bh1_04_emb' }, - ['-451073336'] = { Name = 'bh1_emissive_bh1_05' }, - ['-734295803'] = { Name = 'bh1_emissive_bh1_06' }, - ['169080062'] = { Name = 'bh1_emissive_bh1_07_a' }, - ['399609977'] = { Name = 'bh1_emissive_bh1_07_b' }, - ['935186440'] = { Name = 'bh1_emissive_bh1_08' }, - ['-1111750453'] = { Name = 'bh1_emissive_bh1_09_ema' }, - ['1309157761'] = { Name = 'bh1_emissive_bh1_09_emb' }, - ['-2091651161'] = { Name = 'bh1_emissive_bh1_11' }, - ['-1937473016'] = { Name = 'bh1_emissive_bh1_13' }, - ['-1684135877'] = { Name = 'bh1_emissive_bh1_14' }, - ['-998659842'] = { Name = 'bh1_emissive_bh1_15_a' }, - ['-1171301027'] = { Name = 'bh1_emissive_bh1_15' }, - ['1227455307'] = { Name = 'bh1_emissive_bh1_17' }, - ['-690514263'] = { Name = 'bh1_emissive_bh1_18' }, - ['1549207829'] = { Name = 'bh1_emissive_bh1_20' }, - ['-1292630005'] = { Name = 'bh1_emissive_bh1_20b' }, - ['1310682278'] = { Name = 'bh1_emissive_bh1_21' }, - ['-2119117880'] = { Name = 'bh1_emissive_bh1_22' }, - ['-325059166'] = { Name = 'bh1_emissive_bh1_22b' }, - ['844542373'] = { Name = 'bh1_emissive_bh1_30' }, - ['1442937082'] = { Name = 'bh1_emissive_bh1_32' }, - ['39223217'] = { Name = 'bh1_emissive_bh1_33_semp' }, - ['592647070'] = { Name = 'bh1_emissive_bh1_33' }, - ['2022489616'] = { Name = 'bh1_emissive_bh1_34' }, - ['-848097816'] = { Name = 'bh1_emissive_bh1_35a' }, - ['1187971234'] = { Name = 'bh1_emissive_bh1_35b' }, - ['1701592540'] = { Name = 'bh1_emissive_bh1_35c' }, - ['877091727'] = { Name = 'bh1_emissive_bh1_35d' }, - ['-462481953'] = { Name = 'bh1_emissive_bh1_36' }, - ['305983866'] = { Name = 'bh1_emissive_bh1_37' }, - ['-1300785683'] = { Name = 'bh1_emissive_bh1_39_bda' }, - ['912104891'] = { Name = 'bh1_emissive_bh1_39_bdb' }, - ['396386365'] = { Name = 'bh1_emissive_bh1_39_bdc' }, - ['1024884199'] = { Name = 'bh1_emissive_bh1_39_s03e' }, - ['1134261378'] = { Name = 'bh1_emissive_bh1_40' }, - ['-1063253189'] = { Name = 'bh1_emissive_bh1_40b' }, - ['1139506671'] = { Name = 'bh1_emissive_bh1_42_plota' }, - ['-354726960'] = { Name = 'bh1_emissive_bh1_42_plotb' }, - ['674676153'] = { Name = 'bh1_emissive_bh1_42' }, - ['-1221191516'] = { Name = 'bh1_emissive_bh1_42b_ter' }, - ['-942143005'] = { Name = 'bh1_emissive_bh1_42b' }, - ['364829048'] = { Name = 'bh1_emissive_bh1_44_ema' }, - ['1952947826'] = { Name = 'bh1_emissive_bh1_44_ema1' }, - ['2125312766'] = { Name = 'bh1_emissive_bh1_44_ema2' }, - ['902406455'] = { Name = 'bh1_emissive_bh1_44_ema3' }, - ['1192147971'] = { Name = 'bh1_emissive_bh1_44_emb' }, - ['1435788356'] = { Name = 'bh1_emissive_bh1_44_emb1' }, - ['-384660670'] = { Name = 'bh1_emissive_bh1_44_emb2' }, - ['-1783054353'] = { Name = 'bh1_emissive_bh1_45_a' }, - ['-873223068'] = { Name = 'bh1_emissive_bh1_45_b' }, - ['-1236893430'] = { Name = 'bh1_emissive_bh1_45_c' }, - ['814151053'] = { Name = 'bh1_emissive_bh1_45_d' }, - ['447662557'] = { Name = 'bh1_emissive_bh1_45_e' }, - ['354238138'] = { Name = 'bh1_emissive_bh1_45_f' }, - ['881630230'] = { Name = 'bh1_emissive_bh1_46_a' }, - ['947233768'] = { Name = 'bh1_emissive_bh1_46_b' }, - ['403278773'] = { Name = 'bh1_emissive_bh1_47_a' }, - ['2109462296'] = { Name = 'bh1_emissive_bh1_47_c' }, - ['-364915213'] = { Name = 'bh1_emissive_bh1_48_a' }, - ['-965308831'] = { Name = 'bh1_emissive_bh1_48_b' }, - ['1650476586'] = { Name = 'bh1_emissive_bh1_48_t' }, - ['-224204959'] = { Name = 'bh1_emissive_bh1_a_31' }, - ['-1887484302'] = { Name = 'bh1_emissive_bh1_c_31' }, - ['316291187'] = { Name = 'bh1_emissive_em' }, - ['1014135834'] = { Name = 'bh1_emissive_hgemad' }, - ['-166393464'] = { Name = 'bh1_emissive_hgemad02' }, - ['1438235569'] = { Name = 'bh1_emissive_office' }, - ['630273975'] = { Name = 'bh1_emissive_theatresign' }, - ['1318988087'] = { Name = 'bh1_emissive1_46b' }, - ['-62463627'] = { Name = 'bh1_emissive2_46b' }, - ['2052273332'] = { Name = 'bh1_lod_emissive_6_20_slod3' }, - ['1060762563'] = { Name = 'bh1_lod_emissive_6_21_slod3' }, - ['-1859040638'] = { Name = 'bh1_lod_emissive' }, - ['-692530331'] = { Name = 'bh1_lod_slod3' }, - ['-1058670740'] = { Name = 'bh1_props_comboac_lod' }, - ['616222599'] = { Name = 'bh1_rd_furgrass_00' }, - ['401126883'] = { Name = 'bh1_rd_furgrass_01' }, - ['155621535'] = { Name = 'bh1_rd_furgrass_02' }, - ['1888446255'] = { Name = 'bh1_rd_furgrass_03' }, - ['1657883571'] = { Name = 'bh1_rd_furgrass_04' }, - ['1426272279'] = { Name = 'bh1_rd_furgrass_05' }, - ['1196201130'] = { Name = 'bh1_rd_furgrass_06' }, - ['-1223625679'] = { Name = 'bh1_rd_furgrass_07' }, - ['-1446585955'] = { Name = 'bh1_rd_furgrass_08' }, - ['-1667416246'] = { Name = 'bh1_rd_furgrass_09' }, - ['-374258595'] = { Name = 'bh1_rd_furgrass_10' }, - ['-601151159'] = { Name = 'bh1_rd_furgrass_11' }, - ['-845575130'] = { Name = 'bh1_rd_furgrass_12' }, - ['-137371502'] = { Name = 'bh1_rd_furgrass_13' }, - ['-350009543'] = { Name = 'bh1_rd_furgrass_14' }, - ['628407263'] = { Name = 'bh1_rd_furgrass_15' }, - ['381492848'] = { Name = 'bh1_rd_furgrass_16' }, - ['1086812804'] = { Name = 'bh1_rd_furgrass_17' }, - ['808505687'] = { Name = 'bh1_rd_furgrass_18' }, - ['1786496492'] = { Name = 'bh1_rd_furgrass_19' }, - ['-1116608473'] = { Name = 'bh1_rd_furgrass_20' }, - ['-1522550845'] = { Name = 'bh1_rd_furgrass_21' }, - ['1930613606'] = { Name = 'bh1_rd_furgrass_22' }, - ['-2002518392'] = { Name = 'bh1_rd_furgrass_23' }, - ['1451104829'] = { Name = 'bh1_rd_furgrass_24' }, - ['1710143774'] = { Name = 'bh1_rd_furgrass_25' }, - ['733168808'] = { Name = 'bh1_rd_furgrass_26' }, - ['964354103'] = { Name = 'bh1_rd_furgrass_27' }, - ['285773651'] = { Name = 'bh1_rd_furgrass_28' }, - ['519252776'] = { Name = 'bh1_rd_furgrass_29' }, - ['-2131654945'] = { Name = 'bh1_rd_furgrass_30' }, - ['-98600647'] = { Name = 'bh1_rd_furgrass_31' }, - ['-330572398'] = { Name = 'bh1_rd_furgrass_32' }, - ['-710561722'] = { Name = 'bh1_rd_furgrass_33' }, - ['-940108567'] = { Name = 'bh1_rd_furgrass_34' }, - ['-87197091'] = { Name = 'bh1_rd_furgrass_35' }, - ['-324674034'] = { Name = 'bh1_rd_furgrass_36' }, - ['-678186006'] = { Name = 'bh1_rd_furgrass_37' }, - ['-920053995'] = { Name = 'bh1_rd_furgrass_38' }, - ['-3799986'] = { Name = 'bh1_rd_furgrass_39' }, - ['571723453'] = { Name = 'bh1_rd_furgrass_40' }, - ['-151062384'] = { Name = 'bh1_rd_furgrass_41' }, - ['-1127119818'] = { Name = 'bh1_rd_furgrass_42' }, - ['-1805536425'] = { Name = 'bh1_rd_furgrass_43' }, - ['-372220365'] = { Name = 'bh1_rd_furgrass_44' }, - ['-1595192214'] = { Name = 'bh1_rd_furgrass_45' }, - ['-1355683593'] = { Name = 'bh1_rd_furgrass_46' }, - ['1029309765'] = { Name = 'bh1_rd_furgrass_47' }, - ['1270063608'] = { Name = 'bh1_rd_furgrass_48' }, - ['1775623740'] = { Name = 'bh1_rd_furgrass_49' }, - ['519324910'] = { Name = 'bh1_rd_furgrass_50' }, - ['1727550709'] = { Name = 'bh1_rd_furgrass_51' }, - ['1963127050'] = { Name = 'bh1_rd_furgrass_52' }, - ['1262787982'] = { Name = 'bh1_rd_furgrass_53' }, - ['1495021885'] = { Name = 'bh1_rd_furgrass_54' }, - ['-1614035301'] = { Name = 'bh1_rd_furgrass_55' }, - ['-1382522316'] = { Name = 'bh1_rd_furgrass_56' }, - ['-2076307584'] = { Name = 'bh1_rd_furgrass_57' }, - ['-1842107541'] = { Name = 'bh1_rd_furgrass_58' }, - ['-1617312193'] = { Name = 'bh1_rd_furgrass_59' }, - ['-216208912'] = { Name = 'bh1_rd_furgrass_60' }, - ['-1381474552'] = { Name = 'bh1_rd_furgrass_61' }, - ['-681921940'] = { Name = 'bh1_rd_furgrass_62' }, - ['995392094'] = { Name = 'bh1_rd_furgrass_63' }, - ['763813571'] = { Name = 'bh1_rd_furgrass_64' }, - ['-456929986'] = { Name = 'bh1_rd_furgrass_65' }, - ['251797946'] = { Name = 'bh1_rd_furgrass_66' }, - ['-74188086'] = { Name = 'bh1_rd_furgrass_67' }, - ['-774199464'] = { Name = 'bh1_rd_furgrass_68' }, - ['475872348'] = { Name = 'bh1_rd_furgrass_69' }, - ['1530871190'] = { Name = 'bh1_rd_furgrass_70' }, - ['1266261515'] = { Name = 'bh1_rd_furgrass_71' }, - ['-1354340957'] = { Name = 'bh1_rd_furgrass_72' }, - ['-1593030353'] = { Name = 'bh1_rd_furgrass_73' }, - ['-1529982793'] = { Name = 'bh1_rd_furgrass_74' }, - ['-1744062670'] = { Name = 'bh1_rd_furgrass_75' }, - ['-1986618808'] = { Name = 'bh1_rd_furgrass_76' }, - ['-68026627'] = { Name = 'bh1_rd_furgrass_77' }, - ['-339452254'] = { Name = 'bh1_rd_furgrass_78' }, - ['-821746396'] = { Name = 'bh1_rd_furgrass_79' }, - ['845605574'] = { Name = 'bh1_rd_furgrass_80' }, - ['-7109344'] = { Name = 'bh1_rd_furgrass_81' }, - ['250749917'] = { Name = 'bh1_rd_furgrass_82' }, - ['2087255753'] = { Name = 'bh1_rd_furgrass_83' }, - ['1259478044'] = { Name = 'bh1_rd_furgrass_84' }, - ['1490892722'] = { Name = 'bh1_rd_furgrass_85' }, - ['-1483713257'] = { Name = 'bh1_rd_furgrass_86' }, - ['-1252593500'] = { Name = 'bh1_rd_furgrass_87' }, - ['384995061'] = { Name = 'bh1_rd_props_busroof002' }, - ['67365136'] = { Name = 'bh1_rd_props_busroof003' }, - ['-1158981920'] = { Name = 'bh1_rd_props_busroof004' }, - ['-1466060219'] = { Name = 'bh1_rd_props_busroof005' }, - ['1222712670'] = { Name = 'bh1_rd_props_busroof01' }, - ['1736313339'] = { Name = 'bh1_rd2_alleyweeds' }, - ['-1945474736'] = { Name = 'bh1_rd2_bh1_metro_link_01' }, - ['2050925148'] = { Name = 'bh1_rd2_carpark1' }, - ['1132770537'] = { Name = 'bh1_rd2_carpark2' }, - ['1186775938'] = { Name = 'bh1_rd2_cp1_fizzys' }, - ['-1759097832'] = { Name = 'bh1_rd2_cp1_rail' }, - ['20075322'] = { Name = 'bh1_rd2_cp1_sgn_lod' }, - ['-226807181'] = { Name = 'bh1_rd2_cp1_sgn' }, - ['1558411635'] = { Name = 'bh1_rd2_cp1_stairs_lod' }, - ['-890838246'] = { Name = 'bh1_rd2_cp1_stairs_main' }, - ['-964280405'] = { Name = 'bh1_rd2_cp1bdecals' }, - ['952080100'] = { Name = 'bh1_rd2_cp1decals' }, - ['1728750731'] = { Name = 'bh1_rd2_cp1details' }, - ['1553698780'] = { Name = 'bh1_rd2_cp2_sgn' }, - ['1564953971'] = { Name = 'bh1_rd2_cp2decals' }, - ['-1264215694'] = { Name = 'bh1_rd2_cp2details' }, - ['-114999207'] = { Name = 'bh1_rd2_fur01' }, - ['663526683'] = { Name = 'bh1_rd2_fur02' }, - ['-1544382987'] = { Name = 'bh1_rd2_fur03' }, - ['-1314115224'] = { Name = 'bh1_rd2_fur04' }, - ['-1032858897'] = { Name = 'bh1_rd2_fur05' }, - ['-792662127'] = { Name = 'bh1_rd2_fur06' }, - ['-1936627929'] = { Name = 'bh1_rd2_fur07' }, - ['-1698364526'] = { Name = 'bh1_rd2_fur08' }, - ['-956474366'] = { Name = 'bh1_rd2_fur09' }, - ['1394504470'] = { Name = 'bh1_rd2_fur10' }, - ['1155585691'] = { Name = 'bh1_rd2_fur11' }, - ['2017967464'] = { Name = 'bh1_rd2_fur12' }, - ['-358276495'] = { Name = 'bh1_rd2_fur13' }, - ['-396681763'] = { Name = 'bh1_rd2_fur14' }, - ['370211144'] = { Name = 'bh1_rd2_fur15' }, - ['62772386'] = { Name = 'bh1_rd2_fur16' }, - ['-1355928700'] = { Name = 'bh1_rd2_fur17' }, - ['-1662974230'] = { Name = 'bh1_rd2_fur18' }, - ['-894705025'] = { Name = 'bh1_rd2_fur19' }, - ['-529265481'] = { Name = 'bh1_rd2_fur20' }, - ['-207867129'] = { Name = 'bh1_rd2_fur21' }, - ['1146115170'] = { Name = 'bh1_rd2_fur22' }, - ['-985868727'] = { Name = 'bh1_rd2_fur23' }, - ['-669844491'] = { Name = 'bh1_rd2_fur24' }, - ['-1431264975'] = { Name = 'bh1_rd2_fur25' }, - ['-76365132'] = { Name = 'bh1_rd2_fur26' }, - ['-1038921746'] = { Name = 'bh1_rd2_fur27' }, - ['-765169520'] = { Name = 'bh1_rd2_fur28' }, - ['-1519282517'] = { Name = 'bh1_rd2_fur29' }, - ['651845179'] = { Name = 'bh1_rd2_fur30' }, - ['-303141788'] = { Name = 'bh1_rd2_fur31' }, - ['-123895358'] = { Name = 'bh1_rd2_fur32' }, - ['1400747901'] = { Name = 'bh1_rd2_fur33' }, - ['1826089521'] = { Name = 'bh1_rd2_fur34' }, - ['902429722'] = { Name = 'bh1_rd2_fur35' }, - ['1077219564'] = { Name = 'bh1_rd2_fur36' }, - ['496749550'] = { Name = 'bh1_rd2_fur37' }, - ['28939306'] = { Name = 'bh1_rd2_fur38' }, - ['954696321'] = { Name = 'bh1_rd2_fur39' }, - ['-973333016'] = { Name = 'bh1_rd2_fur40' }, - ['-253267010'] = { Name = 'bh1_rd2_fur41' }, - ['-495855917'] = { Name = 'bh1_rd2_fur42' }, - ['250490827'] = { Name = 'bh1_rd2_fur43' }, - ['-43807562'] = { Name = 'bh1_rd2_fur44' }, - ['663806224'] = { Name = 'bh1_rd2_fur45' }, - ['433014157'] = { Name = 'bh1_rd2_fur46' }, - ['147563310'] = { Name = 'bh1_rd2_fur47' }, - ['-25325934'] = { Name = 'bh1_rd2_fur48' }, - ['1144822283'] = { Name = 'bh1_rd2_fur49' }, - ['782266375'] = { Name = 'bh1_rd2_fur50' }, - ['-442900997'] = { Name = 'bh1_rd2_fur51' }, - ['1744069290'] = { Name = 'bh1_rd2_fur53' }, - ['1705664022'] = { Name = 'bh1_rd2_fur54' }, - ['-478661688'] = { Name = 'bh1_rd2_hedge_shadow' }, - ['-6983143'] = { Name = 'bh1_rd2_islanddecal' }, - ['-1141899104'] = { Name = 'bh1_rd2_lowhedge' }, - ['767127050'] = { Name = 'bh1_rd2_metro_shadow' }, - ['772960247'] = { Name = 'bh1_rd2_metrolink_tunnel_lod' }, - ['-5816020'] = { Name = 'bh1_rd2_metrolink_tunnel' }, - ['1419636801'] = { Name = 'bh1_rd2_portola_shadbox' }, - ['1633083285'] = { Name = 'bh1_rd2_portola_subwaybits' }, - ['1076531216'] = { Name = 'bh1_rd2_portola_subwayshell' }, - ['578883653'] = { Name = 'bh1_rd2_road_sect' }, - ['517886668'] = { Name = 'bh1_rd2sect_01_r10_01_ovly' }, - ['-659827385'] = { Name = 'bh1_rd2sect_01_r10_01' }, - ['155428494'] = { Name = 'bh1_rd2sect_01_r10_02_ovly' }, - ['-1850095780'] = { Name = 'bh1_rd2sect_01_r10_02' }, - ['-491818530'] = { Name = 'bh1_rd2sect_01_r11_01' }, - ['-414979116'] = { Name = 'bh1_rd2sect_01_r12_01_ovly' }, - ['-1148236897'] = { Name = 'bh1_rd2sect_01_r13_01' }, - ['-1020619147'] = { Name = 'bh1_rd2sect_01_r2_03_ovly' }, - ['-360507592'] = { Name = 'bh1_rd2sect_01_r2_03' }, - ['1045406481'] = { Name = 'bh1_rd2sect_01_r4_ovly' }, - ['1675501022'] = { Name = 'bh1_rd2sect_01_r4' }, - ['392318112'] = { Name = 'bh1_rd2sect_01_r5_ovly' }, - ['1919924993'] = { Name = 'bh1_rd2sect_01_r5' }, - ['-628913021'] = { Name = 'bh1_rd2sect_01_r6_ovly' }, - ['2133972101'] = { Name = 'bh1_rd2sect_01_r6' }, - ['2086265124'] = { Name = 'bh1_rd2sect_01_r7_02_ovly' }, - ['-353296408'] = { Name = 'bh1_rd2sect_01_r7_04_ovly' }, - ['1034793965'] = { Name = 'bh1_rd2sect_01_r7_05_ovly' }, - ['-1941060203'] = { Name = 'bh1_rd2sect_01_r7_05a' }, - ['37700113'] = { Name = 'bh1_rd2sect_01_r8_01_ovly' }, - ['-646664713'] = { Name = 'bh1_rd2sect_01_r8_01' }, - ['-1792349919'] = { Name = 'bh1_rd2sect_01_r8_02_ovly' }, - ['-1624852132'] = { Name = 'bh1_rd2sect_01_r8_02' }, - ['-141572023'] = { Name = 'bh1_rd2sect_01_r9_ovly' }, - ['735325647'] = { Name = 'bh1_rd2sect_01_r9' }, - ['-1256752102'] = { Name = 'bh1_rd2sect_02_r10_01_ovly' }, - ['-1295858346'] = { Name = 'bh1_rd2sect_02_r10_01' }, - ['-214511227'] = { Name = 'bh1_rd2sect_02_r10_02_ovly' }, - ['-1593761325'] = { Name = 'bh1_rd2sect_02_r10_02' }, - ['-1381059175'] = { Name = 'bh1_rd2sect_02_r12_01' }, - ['1130092257'] = { Name = 'bh1_rd2sect_02_r2_004' }, - ['-1850867802'] = { Name = 'bh1_rd2sect_02_r2_03_ovly' }, - ['1563624922'] = { Name = 'bh1_rd2sect_02_r2_03' }, - ['-1231865414'] = { Name = 'bh1_rd2sect_02_r2_03a' }, - ['757528049'] = { Name = 'bh1_rd2sect_02_r4_ovly' }, - ['-1091164162'] = { Name = 'bh1_rd2sect_02_r4' }, - ['-1020978744'] = { Name = 'bh1_rd2sect_02_r5_ovly' }, - ['-1359542272'] = { Name = 'bh1_rd2sect_02_r5' }, - ['1847192645'] = { Name = 'bh1_rd2sect_02_r6_ovly' }, - ['-1054364563'] = { Name = 'bh1_rd2sect_02_r6' }, - ['510614445'] = { Name = 'bh1_rd2sect_02_r7_02_ovly' }, - ['1004487425'] = { Name = 'bh1_rd2sect_02_r7_02' }, - ['-543880594'] = { Name = 'bh1_rd2sect_02_r7_04' }, - ['-629403997'] = { Name = 'bh1_rd2sect_02_r7_05_ovly' }, - ['251390267'] = { Name = 'bh1_rd2sect_02_r7_05' }, - ['2119615695'] = { Name = 'bh1_rd2sect_02_r8_01_ovly' }, - ['2034441431'] = { Name = 'bh1_rd2sect_02_r8_01' }, - ['-1430612115'] = { Name = 'bh1_rd2sect_02_r8_02_ovly' }, - ['-2088947381'] = { Name = 'bh1_rd2sect_02_r8_02' }, - ['1692241617'] = { Name = 'bh1_rd2sect_02_r9_ovly' }, - ['-698034457'] = { Name = 'bh1_rd2sect_02_r9' }, - ['-990090196'] = { Name = 'bh1_rd2sect_03_r10_003' }, - ['-1749630133'] = { Name = 'bh1_rd2sect_03_r10_01_ovly' }, - ['-527097143'] = { Name = 'bh1_rd2sect_03_r10_02_ovly' }, - ['1805065876'] = { Name = 'bh1_rd2sect_03_r2_03' }, - ['-1615486617'] = { Name = 'bh1_rd2sect_03_r4_ovly' }, - ['-1399765909'] = { Name = 'bh1_rd2sect_03_r6_ovly' }, - ['-1911793322'] = { Name = 'bh1_rd2sect_03_r6' }, - ['1620013124'] = { Name = 'bh1_rd2sect_03_r7_02_ovly' }, - ['886652950'] = { Name = 'bh1_rd2sect_03_r7_02a' }, - ['631939517'] = { Name = 'bh1_rd2sect_03_r7_02b' }, - ['-1754146782'] = { Name = 'bh1_rd2sect_03_r7_05_ovly' }, - ['-10415888'] = { Name = 'bh1_rd2sect_03_r7_05' }, - ['-1166824577'] = { Name = 'bh1_rd2sect_03_r9_ovly' }, - ['-2130080035'] = { Name = 'bh1_rd2sect_04_r10_01_ovly' }, - ['-2075849416'] = { Name = 'bh1_rd2sect_04_r10_02_ovly' }, - ['-881153590'] = { Name = 'bh1_rd2sect_04_r10_02' }, - ['-1963785136'] = { Name = 'bh1_rd2sect_04_r6_ovly' }, - ['260926168'] = { Name = 'bh1_rd2sect_04_r6' }, - ['690465503'] = { Name = 'bh1_rd2sect_04_r7_05_ovly' }, - ['223890098'] = { Name = 'bh1_rd2sect_04_r9_ovly' }, - ['1413601574'] = { Name = 'bh1_rd2sect_05_r10_02_ovly' }, - ['984667381'] = { Name = 'bh1_rd2sect_05_r6_ovly' }, - ['1685494175'] = { Name = 'bh1_rd2sect_06_r6_ovly' }, - ['1467277791'] = { Name = 'bh1_rda_furgrass_00' }, - ['1898616138'] = { Name = 'bh1_rda_furgrass_01' }, - ['-2097104650'] = { Name = 'bh1_rda_furgrass_02' }, - ['1247299502'] = { Name = 'bh1_rda_furgrass_03' }, - ['1536322082'] = { Name = 'bh1_rda_furgrass_04' }, - ['1976901287'] = { Name = 'bh1_rda_furgrass_05' }, - ['225579196'] = { Name = 'bh1_rdsect_01_r1_01_ovly' }, - ['1973788490'] = { Name = 'bh1_rdsect_01_r1_01' }, - ['-2028144440'] = { Name = 'bh1_rdsect_01_r1_02_ovly' }, - ['-1545634883'] = { Name = 'bh1_rdsect_01_r1_02' }, - ['-1658054736'] = { Name = 'bh1_rdsect_01_r12_01' }, - ['774977132'] = { Name = 'bh1_rdsect_01_r14_01_ovly' }, - ['1938336545'] = { Name = 'bh1_rdsect_01_r14_01' }, - ['2125422635'] = { Name = 'bh1_rdsect_01_r2_01_ovly' }, - ['-1293777761'] = { Name = 'bh1_rdsect_01_r2_01' }, - ['1529159220'] = { Name = 'bh1_rdsect_01_r2_02_ovly' }, - ['-60385370'] = { Name = 'bh1_rdsect_01_r2_02' }, - ['132432827'] = { Name = 'bh1_rdsect_01_r3_01_ovly' }, - ['-1390942014'] = { Name = 'bh1_rdsect_01_r3_01' }, - ['247556134'] = { Name = 'bh1_rdsect_01_r3_02_ovly' }, - ['-763481198'] = { Name = 'bh1_rdsect_01_r3_02' }, - ['1745765840'] = { Name = 'bh1_rdsect_01_r7_01_ovly' }, - ['2096392569'] = { Name = 'bh1_rdsect_01_r7_01' }, - ['-1820420463'] = { Name = 'bh1_rdsect_01_r7_02' }, - ['-539139296'] = { Name = 'bh1_rdsect_01_r7_03_ovly' }, - ['-1589366244'] = { Name = 'bh1_rdsect_01_r7_03' }, - ['948908070'] = { Name = 'bh1_rdsect_01_r7_034' }, - ['-1209311382'] = { Name = 'bh1_rdsect_01_r7_04' }, - ['1249629473'] = { Name = 'bh1_rdsect_02_r1_02_ovly' }, - ['1342828724'] = { Name = 'bh1_rdsect_02_r1_02' }, - ['-1649981264'] = { Name = 'bh1_rdsect_02_r12_01_ovly' }, - ['161521590'] = { Name = 'bh1_rdsect_02_r2_01_ovly' }, - ['-1708204376'] = { Name = 'bh1_rdsect_02_r2_01' }, - ['523843518'] = { Name = 'bh1_rdsect_02_r2_02_ovly' }, - ['-1536363740'] = { Name = 'bh1_rdsect_02_r2_02' }, - ['2012243315'] = { Name = 'bh1_rdsect_02_r3_0' }, - ['1007894452'] = { Name = 'bh1_rdsect_02_r3_01_ovly' }, - ['-1584364502'] = { Name = 'bh1_rdsect_02_r3_01' }, - ['-1085452682'] = { Name = 'bh1_rdsect_02_r3_02_ovly' }, - ['-1769690966'] = { Name = 'bh1_rdsect_02_r7_01_ovly' }, - ['-1250619900'] = { Name = 'bh1_rdsect_02_r7_01' }, - ['40666087'] = { Name = 'bh1_rdsect_02_r7_03_ovly' }, - ['341739741'] = { Name = 'bh1_rdsect_02_r7_03a' }, - ['-1771270925'] = { Name = 'bh1_rdsect_02_r7_03b' }, - ['248014758'] = { Name = 'bh1_rdsect_02_r7_04_ovly' }, - ['1502056534'] = { Name = 'bh1_rdsect_03_r1_01_ovly' }, - ['-804976807'] = { Name = 'bh1_rdsect_03_r1_01' }, - ['-1212515124'] = { Name = 'bh1_rdsect_03_r1_02_ovly' }, - ['462003805'] = { Name = 'bh1_rdsect_03_r1_02' }, - ['-1566004954'] = { Name = 'bh1_rdsect_03_r3_02_ovly' }, - ['494899267'] = { Name = 'bh1_rdsect_03_r7_01_ovly' }, - ['1158217053'] = { Name = 'bh1_rdsect_03_r7_01' }, - ['926674594'] = { Name = 'bh1_rdsect_03_r7_03_ovly' }, - ['629079439'] = { Name = 'bh1_rdsect_03_r7_034' }, - ['1130856219'] = { Name = 'bh1_rdsect_03_r7_04_ovly' }, - ['1375444210'] = { Name = 'bh1_rdsect_03_r7_30' }, - ['-1211969696'] = { Name = 'bh1_rdsect_04_r1_01_ovly' }, - ['-713013421'] = { Name = 'bh1_rdsect_04_r1_01' }, - ['-1678295311'] = { Name = 'bh1_rdsect_04_r1_02_ovly' }, - ['-24700576'] = { Name = 'bh1_rdsect_04_r1_02' }, - ['209373880'] = { Name = 'bh1_rdsect_04_r7_02_ovly' }, - ['1776773494'] = { Name = 'bh1_rdsect_04_r7_03_ovly' }, - ['378148821'] = { Name = 'bh1_rdsect_05_r1_01_ovly' }, - ['-700898980'] = { Name = 'bh1_rdsect_05_r1_01' }, - ['1427825420'] = { Name = 'bh1_rdsect_06_r1_01' }, - ['850991848'] = { Name = 'biff' }, - ['-349601129'] = { Name = 'bifta' }, - ['1384719738'] = { Name = 'bike_test' }, - ['-2123114957'] = { Name = 'bink_3a_00' }, - ['1537903265'] = { Name = 'bink_3a_01' }, - ['907657084'] = { Name = 'bink_3a_02' }, - ['4674520'] = { Name = 'bink_3a_03' }, - ['1219257505'] = { Name = 'bink_3a_04' }, - ['586619191'] = { Name = 'bink_3a_05' }, - ['-916593142'] = { Name = 'bink_3a_07' }, - ['-607974704'] = { Name = 'bink_3a_08' }, - ['-298209347'] = { Name = 'bink_3a_09' }, - ['-1713975'] = { Name = 'bink_3a_10' }, - ['-612783674'] = { Name = 'bink_3a_100' }, - ['-1165832700'] = { Name = 'bink_3a_11' }, - ['1154179731'] = { Name = 'bink_3a_13' }, - ['916506174'] = { Name = 'bink_3a_14' }, - ['-230408826'] = { Name = 'bink_3a_15' }, - ['-736296648'] = { Name = 'bink_3a_16' }, - ['2080559353'] = { Name = 'bink_3a_17' }, - ['1849439596'] = { Name = 'bink_3a_18' }, - ['695839728'] = { Name = 'bink_3a_19' }, - ['292683009'] = { Name = 'bink_3a_20' }, - ['-923931654'] = { Name = 'bink_3a_21' }, - ['-1775991192'] = { Name = 'bink_3a_22' }, - ['1022841867'] = { Name = 'bink_3a_23' }, - ['1252880247'] = { Name = 'bink_3a_24' }, - ['-511632096'] = { Name = 'bink_3a_25' }, - ['-272451165'] = { Name = 'bink_3a_26' }, - ['921716709'] = { Name = 'bink_3a_27' }, - ['1152574314'] = { Name = 'bink_3a_28' }, - ['-612134643'] = { Name = 'bink_3a_29' }, - ['-214680330'] = { Name = 'bink_3a_30' }, - ['-1771338918'] = { Name = 'bink_3a_31' }, - ['139519791'] = { Name = 'bink_3a_32' }, - ['-795609174'] = { Name = 'bink_3a_33' }, - ['-1446335976'] = { Name = 'bink_3a_34' }, - ['1835938144'] = { Name = 'bink_3a_35' }, - ['1606194685'] = { Name = 'bink_3a_36' }, - ['-1825702689'] = { Name = 'bink_3a_37' }, - ['2119160611'] = { Name = 'bink_3a_38' }, - ['681224118'] = { Name = 'bink_3a_39' }, - ['-406018233'] = { Name = 'bink_3a_40' }, - ['-1714681029'] = { Name = 'bink_3a_41' }, - ['138897468'] = { Name = 'bink_3a_42' }, - ['-1131425598'] = { Name = 'bink_3a_43' }, - ['-1370278839'] = { Name = 'bink_3a_44' }, - ['-757596846'] = { Name = 'bink_3a_46' }, - ['-375018735'] = { Name = 'bink_3a_47' }, - ['-93959022'] = { Name = 'bink_3a_48' }, - ['1143791646'] = { Name = 'bink_3a_49' }, - ['1921934940'] = { Name = 'bink_3a_50' }, - ['1541191929'] = { Name = 'bink_3a_52' }, - ['-637356733'] = { Name = 'bink_3a_53' }, - ['-934800946'] = { Name = 'bink_3a_54' }, - ['-1503277558'] = { Name = 'bink_3a_55' }, - ['-1800918385'] = { Name = 'bink_3a_56' }, - ['-144347156'] = { Name = 'bink_3a_57' }, - ['-450901151'] = { Name = 'bink_3a_58' }, - ['-1502621898'] = { Name = 'bink_3a_60' }, - ['-2116745727'] = { Name = 'bink_3a_62' }, - ['459094287'] = { Name = 'bink_3a_63' }, - ['-305570328'] = { Name = 'bink_3a_64' }, - ['-151556028'] = { Name = 'bink_3a_65' }, - ['702993958'] = { Name = 'bink_3a_67' }, - ['882961306'] = { Name = 'bink_3a_68' }, - ['64162303'] = { Name = 'bink_3a_69' }, - ['592818960'] = { Name = 'bink_3a_72' }, - ['-1645172660'] = { Name = 'bink_3a_73' }, - ['-1167695561'] = { Name = 'bink_3a_75' }, - ['1246658821'] = { Name = 'bink_3a_77' }, - ['2091148720'] = { Name = 'bink_3a_78' }, - ['-1496532480'] = { Name = 'bink_3a_79' }, - ['-456472153'] = { Name = 'bink_3a_80' }, - ['-763845373'] = { Name = 'bink_3a_81' }, - ['-1068171076'] = { Name = 'bink_3a_82' }, - ['1039989770'] = { Name = 'bink_3a_83' }, - ['767581073'] = { Name = 'bink_3a_84' }, - ['460470005'] = { Name = 'bink_3a_85' }, - ['154964618'] = { Name = 'bink_3a_86' }, - ['1667417817'] = { Name = 'bink_3a_87' }, - ['1430399640'] = { Name = 'bink_3a_88' }, - ['1131939588'] = { Name = 'bink_3a_89' }, - ['226566219'] = { Name = 'bink_3a_90' }, - ['1677774153'] = { Name = 'bink_3a_91' }, - ['1916692932'] = { Name = 'bink_3a_92' }, - ['-927787344'] = { Name = 'bink_3a_93' }, - ['-696667587'] = { Name = 'bink_3a_94' }, - ['757555095'] = { Name = 'bink_3a_95' }, - ['794846217'] = { Name = 'bink_3a_96' }, - ['1977938289'] = { Name = 'bink_3a_97' }, - ['1714573836'] = { Name = 'bink_3a_98' }, - ['485146494'] = { Name = 'bink_3a_99' }, - ['2043516651'] = { Name = 'bink_3a_door' }, - ['1992775731'] = { Name = 'bink_3b_00' }, - ['2089640895'] = { Name = 'bink_3b_01' }, - ['1380126507'] = { Name = 'bink_3b_02' }, - ['1120202811'] = { Name = 'bink_3b_03' }, - ['424582479'] = { Name = 'bink_3b_04' }, - ['503883459'] = { Name = 'bink_3b_05' }, - ['1808450118'] = { Name = 'bink_3b_06' }, - ['2088395685'] = { Name = 'bink_3b_07' }, - ['1369968129'] = { Name = 'bink_3b_08' }, - ['1591126110'] = { Name = 'bink_3b_09' }, - ['2077188323'] = { Name = 'bink_3b_10' }, - ['1847379326'] = { Name = 'bink_3b_11' }, - ['1749727706'] = { Name = 'bink_3b_12' }, - ['1603020897'] = { Name = 'bink_3b_13' }, - ['1377865098'] = { Name = 'bink_3b_14' }, - ['-1141808850'] = { Name = 'bink_3b_15' }, - ['-1397046591'] = { Name = 'bink_3b_16' }, - ['-1462387977'] = { Name = 'bink_3b_17' }, - ['-1712808675'] = { Name = 'bink_3b_18' }, - ['69169545'] = { Name = 'bink_3b_19' }, - ['-334611533'] = { Name = 'bink_3b_20' }, - ['-1056184913'] = { Name = 'bink_3b_21' }, - ['-1899953894'] = { Name = 'bink_3b_22' }, - ['1521129698'] = { Name = 'bink_3b_23' }, - ['-1913290889'] = { Name = 'bink_3b_24' }, - ['1060037099'] = { Name = 'bink_3b_25' }, - ['813974678'] = { Name = 'bink_3b_26' }, - ['631320272'] = { Name = 'bink_3b_27' }, - ['350195021'] = { Name = 'bink_3b_28' }, - ['157513301'] = { Name = 'bink_3b_29' }, - ['-535682341'] = { Name = 'bink_3b_30' }, - ['-1258566481'] = { Name = 'bink_3b_31' }, - ['-999658612'] = { Name = 'bink_3b_32' }, - ['-1045666284'] = { Name = 'bink_3b_33' }, - ['-1854175821'] = { Name = 'bink_3b_34' }, - ['-1507217649'] = { Name = 'bink_3b_35' }, - ['1953745820'] = { Name = 'bink_3b_36' }, - ['-2096731967'] = { Name = 'bink_3b_37' }, - ['1781937953'] = { Name = 'bink_3b_38' }, - ['931615172'] = { Name = 'bink_3b_39' }, - ['-155167617'] = { Name = 'bink_3b_40' }, - ['-453725976'] = { Name = 'bink_3b_41' }, - ['1128164730'] = { Name = 'bink_3b_42' }, - ['1434751442'] = { Name = 'bink_3b_43' }, - ['-1298117616'] = { Name = 'bink_3b_44' }, - ['-16948145'] = { Name = 'bison' }, - ['2072156101'] = { Name = 'bison2' }, - ['1739845664'] = { Name = 'bison3' }, - ['850565707'] = { Name = 'bjxl' }, - ['-1205801634'] = { Name = 'blade' }, - ['-2128233223'] = { Name = 'blazer' }, - ['-48031959'] = { Name = 'blazer2' }, - ['-1269889662'] = { Name = 'blazer3' }, - ['-440768424'] = { Name = 'blazer4' }, - ['-1590337689'] = { Name = 'blazer5' }, - ['-150975354'] = { Name = 'blimp' }, - ['-613725916'] = { Name = 'blimp2' }, - ['-344943009'] = { Name = 'blista' }, - ['1039032026'] = { Name = 'blista2' }, - ['-591651781'] = { Name = 'blista3' }, - ['1131912276'] = { Name = 'bmx' }, - ['524108981'] = { Name = 'boattrailer' }, - ['1069929536'] = { Name = 'bobcatxl' }, - ['-1435919434'] = { Name = 'bodhi2' }, - ['865552436'] = { Name = 'bot_01b_bit_01' }, - ['592258976'] = { Name = 'bot_01b_bit_02' }, - ['268730639'] = { Name = 'bot_01b_bit_03' }, - ['-1987130134'] = { Name = 'boxville' }, - ['-233098306'] = { Name = 'boxville2' }, - ['121658888'] = { Name = 'boxville3' }, - ['444171386'] = { Name = 'boxville4' }, - ['682434785'] = { Name = 'boxville5' }, - ['-1479664699'] = { Name = 'brawler' }, - ['-305727417'] = { Name = 'brickade' }, - ['1549126457'] = { Name = 'brioso' }, - ['1518498504'] = { Name = 'bt1_01_alleydts01' }, - ['-696161596'] = { Name = 'bt1_01_alleydts02' }, - ['561139103'] = { Name = 'bt1_01_alleystuff01' }, - ['-882990727'] = { Name = 'bt1_01_alleystuff02' }, - ['417619979'] = { Name = 'bt1_01_build7_ovl' }, - ['-79469195'] = { Name = 'bt1_01_build7' }, - ['860237875'] = { Name = 'bt1_01_build91_dety' }, - ['-533287020'] = { Name = 'bt1_01_build91_ovl' }, - ['1522033535'] = { Name = 'bt1_01_build91' }, - ['-1186202789'] = { Name = 'bt1_01_cablemesh57166_tstd' }, - ['-342702441'] = { Name = 'bt1_01_crnrb2_ovl' }, - ['1646328675'] = { Name = 'bt1_01_crnrb2' }, - ['1121275494'] = { Name = 'bt1_01_fence01' }, - ['805396804'] = { Name = 'bt1_01_grddtdshad' }, - ['733438063'] = { Name = 'bt1_01_grdnoshad' }, - ['1322173685'] = { Name = 'bt1_01_ivy' }, - ['-1047727237'] = { Name = 'bt1_01_ladders01' }, - ['-674816017'] = { Name = 'bt1_01_ladders02' }, - ['1420335536'] = { Name = 'bt1_01_ladders03' }, - ['1785316658'] = { Name = 'bt1_01_ladders04' }, - ['2068276973'] = { Name = 'bt1_01_ladders05' }, - ['-989193539'] = { Name = 'bt1_01_railing01' }, - ['-223316471'] = { Name = 'bt1_01_railing02' }, - ['1520883623'] = { Name = 'bt1_01_terrainovl' }, - ['157259099'] = { Name = 'bt1_02_bldfront01' }, - ['533341979'] = { Name = 'bt1_02_block_01_ovl' }, - ['2114599291'] = { Name = 'bt1_02_building01_ovl_2' }, - ['-1305876366'] = { Name = 'bt1_02_building01_ovl' }, - ['-312945501'] = { Name = 'bt1_02_building01' }, - ['1965716513'] = { Name = 'bt1_02_building01dtd' }, - ['1828079541'] = { Name = 'bt1_02_building01noshad' }, - ['589086762'] = { Name = 'bt1_02_building02' }, - ['-362139206'] = { Name = 'bt1_02_chimney_iref' }, - ['1628022640'] = { Name = 'bt1_02_clth' }, - ['-510950955'] = { Name = 'bt1_02_cp_ovl01' }, - ['1727603692'] = { Name = 'bt1_02_curvebal_iref' }, - ['1170356994'] = { Name = 'bt1_02_emissive_b' }, - ['-995313459'] = { Name = 'bt1_02_emissive_c' }, - ['938599247'] = { Name = 'bt1_02_emissive_wind_hd_proxy' }, - ['-1736775706'] = { Name = 'bt1_02_emissive' }, - ['2146788247'] = { Name = 'bt1_02_frntrail01' }, - ['1444941805'] = { Name = 'bt1_02_frntrail02' }, - ['1667345008'] = { Name = 'bt1_02_frntrail03' }, - ['-641750058'] = { Name = 'bt1_02_ground_emm' }, - ['-1740411840'] = { Name = 'bt1_02_ground' }, - ['-251053783'] = { Name = 'bt1_02_ladder002' }, - ['-340278951'] = { Name = 'bt1_02_ladder01' }, - ['-819197886'] = { Name = 'bt1_02_ladder03' }, - ['-592829634'] = { Name = 'bt1_02_ladder04' }, - ['-1035145592'] = { Name = 'bt1_02_ladder05' }, - ['1864567754'] = { Name = 'bt1_02_ladderpool01' }, - ['-2131120265'] = { Name = 'bt1_02_ladderpool02' }, - ['-1031325234'] = { Name = 'bt1_02_loadingbay_ovl' }, - ['-1881961158'] = { Name = 'bt1_02_loadingbay_ovl02' }, - ['-386799080'] = { Name = 'bt1_02_maildtd00' }, - ['-696597206'] = { Name = 'bt1_02_maildtd01' }, - ['-975887393'] = { Name = 'bt1_02_maildtd02' }, - ['-898978349'] = { Name = 'bt1_02_mailrailing01' }, - ['255211369'] = { Name = 'bt1_02_mailrailing02' }, - ['502977778'] = { Name = 'bt1_02_mailrailing03' }, - ['192029156'] = { Name = 'bt1_02_mall_ov_2' }, - ['-268875355'] = { Name = 'bt1_02_mall_ov' }, - ['-771226176'] = { Name = 'bt1_02_mallblock' }, - ['-1737877333'] = { Name = 'bt1_02_shadowproxy01' }, - ['2010703545'] = { Name = 'bt1_02_signem_slod1' }, - ['-1949463995'] = { Name = 'bt1_02_stairs01' }, - ['1878668534'] = { Name = 'bt1_02_steps01' }, - ['-673345303'] = { Name = 'bt1_02_winfrane_iref' }, - ['-1397303042'] = { Name = 'bt1_03_building' }, - ['1359185397'] = { Name = 'bt1_03_detail' }, - ['162170489'] = { Name = 'bt1_03_detail2' }, - ['-759223770'] = { Name = 'bt1_03_dtd01' }, - ['-725282187'] = { Name = 'bt1_03_emissive' }, - ['154294878'] = { Name = 'bt1_03_frame01' }, - ['-1046590665'] = { Name = 'bt1_03_frame02' }, - ['-978214413'] = { Name = 'bt1_03_grd_noshad' }, - ['-81064519'] = { Name = 'bt1_03_interior01' }, - ['1963786647'] = { Name = 'bt1_03_interior02' }, - ['-1219518044'] = { Name = 'bt1_03_logo01' }, - ['929440207'] = { Name = 'bt1_03_logo02' }, - ['685212850'] = { Name = 'bt1_03_logo03' }, - ['205410314'] = { Name = 'bt1_03_railing01' }, - ['1544875958'] = { Name = 'bt1_03_railing02' }, - ['-2068047980'] = { Name = 'bt1_04_block_dtl01' }, - ['-230016166'] = { Name = 'bt1_04_block_dtl01b' }, - ['-1750069446'] = { Name = 'bt1_04_block_dtl01int' }, - ['-1837190375'] = { Name = 'bt1_04_block_dtl02' }, - ['1752391423'] = { Name = 'bt1_04_block_dtl03' }, - ['89049497'] = { Name = 'bt1_04_burton_subwaybits' }, - ['1162648331'] = { Name = 'bt1_04_burton_subwayshell' }, - ['42793518'] = { Name = 'bt1_04_carparkbitsint2' }, - ['-257173908'] = { Name = 'bt1_04_carparkbitsint3' }, - ['-931934115'] = { Name = 'bt1_04_carparkint_reflect' }, - ['1017193224'] = { Name = 'bt1_04_carparkint1' }, - ['-111708157'] = { Name = 'bt1_04_carparkint1bits' }, - ['-1837904212'] = { Name = 'bt1_04_carparkint2' }, - ['394742867'] = { Name = 'bt1_04_carparkint2bits' }, - ['1287844003'] = { Name = 'bt1_04_carparkintwallbit' }, - ['-1339101434'] = { Name = 'bt1_04_de04' }, - ['-44024583'] = { Name = 'bt1_04_de1' }, - ['262234491'] = { Name = 'bt1_04_de2' }, - ['191255509'] = { Name = 'bt1_04_eastglass01' }, - ['1856663360'] = { Name = 'bt1_04_fence01' }, - ['1612075544'] = { Name = 'bt1_04_fence02' }, - ['-745775903'] = { Name = 'bt1_04_glassframe01' }, - ['-2066399372'] = { Name = 'bt1_04_glassframe02' }, - ['-1006374354'] = { Name = 'bt1_04_glue_01' }, - ['-1285599003'] = { Name = 'bt1_04_glue_02' }, - ['1755102049'] = { Name = 'bt1_04_glue_03' }, - ['-117418837'] = { Name = 'bt1_04_glue_int' }, - ['-304645104'] = { Name = 'bt1_04_glue2_int' }, - ['1718629960'] = { Name = 'bt1_04_hedgetops01' }, - ['-1053168678'] = { Name = 'bt1_04_hedgetops02' }, - ['806504841'] = { Name = 'bt1_04_hedgetops03' }, - ['-716008437'] = { Name = 'bt1_04_hedgetops04' }, - ['-847728878'] = { Name = 'bt1_04_intcarparkbits2int' }, - ['564500460'] = { Name = 'bt1_04_intcarparkbitsint' }, - ['1543405043'] = { Name = 'bt1_04_lad1' }, - ['-120255406'] = { Name = 'bt1_04_mall_emit_slod' }, - ['2034754878'] = { Name = 'bt1_04_mall_emit01' }, - ['-1846897017'] = { Name = 'bt1_04_mall_emit02' }, - ['1074779481'] = { Name = 'bt1_04_mall01_dt01' }, - ['-403319234'] = { Name = 'bt1_04_mall01' }, - ['-1953893014'] = { Name = 'bt1_04_mall01int' }, - ['-246945566'] = { Name = 'bt1_04_mall02' }, - ['-1601638373'] = { Name = 'bt1_04_mall03_dt01' }, - ['2122384214'] = { Name = 'bt1_04_mall03' }, - ['247843095'] = { Name = 'bt1_04_malldoorsint' }, - ['1867760399'] = { Name = 'bt1_04_northglass01' }, - ['-1170635066'] = { Name = 'bt1_04_roof_dtl01' }, - ['-361175228'] = { Name = 'bt1_04_roof_dtl02' }, - ['-658816055'] = { Name = 'bt1_04_roof_dtl03' }, - ['-1195773836'] = { Name = 'bt1_04_roofsteps01' }, - ['-1374889190'] = { Name = 'bt1_04_roofsteps02' }, - ['-409416111'] = { Name = 'bt1_04_roofsteps03' }, - ['-913403331'] = { Name = 'bt1_04_roofsteps04' }, - ['100928295'] = { Name = 'bt1_04_roofsteps05' }, - ['-156210048'] = { Name = 'bt1_04_roofsteps06' }, - ['545177628'] = { Name = 'bt1_04_roofsteps07' }, - ['-1752427146'] = { Name = 'bt1_04_shop_dcal' }, - ['-1621819717'] = { Name = 'bt1_04_shop2' }, - ['-720377296'] = { Name = 'bt1_04_shop3' }, - ['-161144795'] = { Name = 'bt1_04_shopframe01' }, - ['-1349509210'] = { Name = 'bt1_04_shw_pxy' }, - ['1075575058'] = { Name = 'bt1_04_terrain02' }, - ['331872972'] = { Name = 'bt1_04_vine_emissive_slod' }, - ['1733341753'] = { Name = 'bt1_04_vine_emissive' }, - ['1027688016'] = { Name = 'bt1_04_weed_001' }, - ['-2042055990'] = { Name = 'bt1_04_weed_01' }, - ['805668421'] = { Name = 'bt1_04_weed_02' }, - ['423641443'] = { Name = 'bt1_04burtonsubways_reflect' }, - ['233891262'] = { Name = 'bt1_04burtonsubways_shadowb' }, - ['-480612982'] = { Name = 'bt1_05_ballarge_iref' }, - ['-1876066435'] = { Name = 'bt1_05_balsmall_iref' }, - ['-1021066582'] = { Name = 'bt1_05_buildmed_detail' }, - ['-1733351955'] = { Name = 'bt1_05_buildmed' }, - ['1321214132'] = { Name = 'bt1_05_details03' }, - ['814926301'] = { Name = 'bt1_05_fireescape_iref' }, - ['-4737979'] = { Name = 'bt1_05_flynt_dtl01' }, - ['1016868365'] = { Name = 'bt1_05_flynt_dtl02' }, - ['1599959951'] = { Name = 'bt1_05_flynt_dtl03' }, - ['-580462050'] = { Name = 'bt1_05_flyntbuilding' }, - ['-1921699752'] = { Name = 'bt1_05_flyntgrnd_01' }, - ['1341499664'] = { Name = 'bt1_05_flyntrail01' }, - ['1653558851'] = { Name = 'bt1_05_flyntrail02' }, - ['-259659154'] = { Name = 'bt1_05_flyntrail03' }, - ['-491303215'] = { Name = 'bt1_05_flyntrail04' }, - ['-1546399477'] = { Name = 'bt1_05_flyntrail05' }, - ['-1779550912'] = { Name = 'bt1_05_flyntrail06' }, - ['1361423394'] = { Name = 'bt1_05_ladderframe' }, - ['-1101158735'] = { Name = 'bt1_05_other_dtl01' }, - ['1853359867'] = { Name = 'bt1_05_other_dtl02' }, - ['-1669186836'] = { Name = 'bt1_05_othr2_dtl01' }, - ['1878122956'] = { Name = 'bt1_05_othr2_dtl02' }, - ['-285053189'] = { Name = 'bt1_05_paving_bt' }, - ['-1094416795'] = { Name = 'bt1_05_paving_btnoshad' }, - ['-1908026648'] = { Name = 'bt1_05_roof_vents' }, - ['563337726'] = { Name = 'bt1_05_roofrailing001' }, - ['1937037038'] = { Name = 'bt1_05_shadowproxy01' }, - ['1207150570'] = { Name = 'bt1_05_theatr_01' }, - ['-1884122038'] = { Name = 'bt1_05_theatr_signd' }, - ['1921264340'] = { Name = 'bt1_05_theatre_dtl01' }, - ['-1509971461'] = { Name = 'bt1_05_theatre_dtl01b' }, - ['1682935403'] = { Name = 'bt1_05_theatre_dtl02' }, - ['117401876'] = { Name = 'btype' }, - ['-831834716'] = { Name = 'btype2' }, - ['-602287871'] = { Name = 'btype3' }, - ['-682211828'] = { Name = 'buccaneer' }, - ['-1013450936'] = { Name = 'buccaneer2' }, - ['-304802106'] = { Name = 'buffalo' }, - ['736902334'] = { Name = 'buffalo2' }, - ['237764926'] = { Name = 'buffalo3' }, - ['1886712733'] = { Name = 'bulldozer' }, - ['-1696146015'] = { Name = 'bullet' }, - ['-1346687836'] = { Name = 'burrito' }, - ['-907477130'] = { Name = 'burrito2' }, - ['-1743316013'] = { Name = 'burrito3' }, - ['893081117'] = { Name = 'burrito4' }, - ['1132262048'] = { Name = 'burrito5' }, - ['-713569950'] = { Name = 'bus' }, - ['788747387'] = { Name = 'buzzard' }, - ['745926877'] = { Name = 'buzzard2' }, - ['883937721'] = { Name = 'cable1_root' }, - ['923275822'] = { Name = 'cable2_root' }, - ['969577574'] = { Name = 'cable3_root' }, - ['-960289747'] = { Name = 'cablecar' }, - ['775520107'] = { Name = 'cablemesh1915867_hvstd' }, - ['-1637531279'] = { Name = 'cablemesh1915883_hvstd' }, - ['67517509'] = { Name = 'cablemesh1915898_hvstd' }, - ['1863395505'] = { Name = 'cablemesh1915913_hvstd' }, - ['2018793771'] = { Name = 'cablemesh1915928_hvstd' }, - ['-433286638'] = { Name = 'cablemesh1915943_hvstd' }, - ['397397253'] = { Name = 'cablemesh1915958_hvstd' }, - ['1648142215'] = { Name = 'cablemesh1915973_hvstd' }, - ['909675378'] = { Name = 'cablemesh1915988_hvstd' }, - ['636244595'] = { Name = 'cablemesh1916003_hvstd' }, - ['425042490'] = { Name = 'cablemesh1916020_hvstd' }, - ['-895978535'] = { Name = 'cablemesh1916020_hvstd002' }, - ['-1134176396'] = { Name = 'cablemesh1916020_hvstd003' }, - ['-299681034'] = { Name = 'cablemesh1916020_hvstd004' }, - ['-539648421'] = { Name = 'cablemesh1916020_hvstd005' }, - ['1937819051'] = { Name = 'cablemesh1916020_hvstd006' }, - ['1829877965'] = { Name = 'cablemesh1916020_hvstd007' }, - ['-1763079044'] = { Name = 'cablemesh1916020_hvstd008' }, - ['-743955348'] = { Name = 'cablemesh1916036_hvstd' }, - ['1316672895'] = { Name = 'cablemesh1916051_hvstd' }, - ['673204472'] = { Name = 'cablemesh1916066_hvstd' }, - ['824053513'] = { Name = 'cablemesh1916083_hvstd' }, - ['-1122592972'] = { Name = 'cablemesh1916098_hvstd' }, - ['229460387'] = { Name = 'cablemesh1916113_hvstd' }, - ['1430310064'] = { Name = 'cablemesh1916128_hvstd' }, - ['651540825'] = { Name = 'cablemesh1916159_hvstd' }, - ['1950347684'] = { Name = 'cablemesh1916160_hvstd' }, - ['-833481113'] = { Name = 'cablemesh1916189_hvstd' }, - ['-1656449766'] = { Name = 'cablemesh1916190_hvstd' }, - ['-599958689'] = { Name = 'cablemesh1916221_hvstd' }, - ['-376397930'] = { Name = 'cablemesh1916222_hvstd' }, - ['-676828859'] = { Name = 'cablemesh1916251_hvstd' }, - ['-2113017764'] = { Name = 'cablemesh1916254_hvstd' }, - ['947823449'] = { Name = 'cablemesh1916467_hvstd' }, - ['-964677165'] = { Name = 'cablemesh1916482_hvstd' }, - ['909495086'] = { Name = 'cablemesh1916497_hvstd' }, - ['-779144547'] = { Name = 'cablemesh1916512_hvstd' }, - ['-1591976080'] = { Name = 'cablemesh1916527_hvstd' }, - ['1681868109'] = { Name = 'cablemesh1916548_hvstd' }, - ['-1072014021'] = { Name = 'cablemesh1916591_hvstd' }, - ['-1029172980'] = { Name = 'cablemesh1916592_hvstd' }, - ['83369041'] = { Name = 'cablemesh1916593_hvstd' }, - ['589780624'] = { Name = 'cablemesh1916636_hvstd' }, - ['412581959'] = { Name = 'cablemesh1916637_hvstd' }, - ['-852074057'] = { Name = 'cablemesh1916638_hvstd' }, - ['119315529'] = { Name = 'cablemesh1916653_hvstd' }, - ['-1468336621'] = { Name = 'cablemesh1916672_hvstd' }, - ['613572786'] = { Name = 'cablemesh1916690_hvstd' }, - ['731682509'] = { Name = 'cablemesh1916705_hvstd' }, - ['1651479162'] = { Name = 'cablemesh1916720_hvstd' }, - ['836305091'] = { Name = 'cablemesh1916736_hvstd' }, - ['-1936332671'] = { Name = 'cablemesh1916753_hvstd' }, - ['453510880'] = { Name = 'cablemesh1916768_hvstd' }, - ['604058190'] = { Name = 'cablemesh1916784_hvstd' }, - ['-281483521'] = { Name = 'cablemesh1916799_hvstd' }, - ['1501648742'] = { Name = 'cablemesh1916814_hvstd' }, - ['-2129252625'] = { Name = 'cablemesh1916829_hvstd' }, - ['1946785085'] = { Name = 'cablemesh1916844_hvstd' }, - ['-286563195'] = { Name = 'cablemesh1916860_hvstd' }, - ['1579744140'] = { Name = 'cablemesh1916875_hvstd' }, - ['-1699901969'] = { Name = 'cablemesh1916875_hvstd001' }, - ['-1536188045'] = { Name = 'cablemesh1916875_hvstd002' }, - ['547235474'] = { Name = 'cablemesh1916890_hvstd' }, - ['-532284526'] = { Name = 'cablemesh1916890_hvstd001' }, - ['-1399417804'] = { Name = 'cablemesh1916890_hvstd002' }, - ['126770573'] = { Name = 'cablemesh1923588_hvstd' }, - ['-1627031373'] = { Name = 'cablemesh1923588_hvstd001' }, - ['-939685362'] = { Name = 'cablemesh1923589_hvstd' }, - ['872064885'] = { Name = 'cablemesh1923589_hvstd001' }, - ['181341922'] = { Name = 'cablemesh1923596_hvstd' }, - ['-809917902'] = { Name = 'cablemesh1923596_hvstd001' }, - ['984764024'] = { Name = 'cablemesh1923597_hvstd' }, - ['1608038357'] = { Name = 'cablemesh1923597_hvstd001' }, - ['1691587609'] = { Name = 'cablemesh1923601_hvstd' }, - ['-211653334'] = { Name = 'cablemesh1923601_hvstd001' }, - ['-564061992'] = { Name = 'cablemesh1923603_hvstd' }, - ['-1465356392'] = { Name = 'cablemesh1923603_hvstd001' }, - ['2095861055'] = { Name = 'cablemesh1923689_hvstd' }, - ['997078677'] = { Name = 'cablemesh1923690_hvstd' }, - ['214434223'] = { Name = 'cablemesh1923691_hvstd' }, - ['-1840042005'] = { Name = 'cablemesh1923692_hvstd' }, - ['1656576773'] = { Name = 'cablemesh1923693_hvstd' }, - ['-1749584113'] = { Name = 'cablemesh1923694_hvstd' }, - ['1268736143'] = { Name = 'cablemesh1923788_hvstd' }, - ['-1324526594'] = { Name = 'cablemesh1923789_hvstd' }, - ['735327310'] = { Name = 'cablemesh1923790_hvstd' }, - ['88785949'] = { Name = 'cablemesh1923791_hvstd' }, - ['-844119398'] = { Name = 'cablemesh1923792_hvstd' }, - ['-936926038'] = { Name = 'cablemesh1923793_hvstd' }, - ['1906903021'] = { Name = 'cablemesh1923879_hvstd' }, - ['-64498837'] = { Name = 'cablemesh1923880_hvstd' }, - ['-563497837'] = { Name = 'cablemesh1923881_hvstd' }, - ['-1511674896'] = { Name = 'cablemesh1923882_hvstd' }, - ['-1194696196'] = { Name = 'cablemesh1923883_hvstd' }, - ['141592264'] = { Name = 'cablemesh1923884_hvstd' }, - ['1361916704'] = { Name = 'cablemesh1923970_hvstd' }, - ['-1279715216'] = { Name = 'cablemesh1923971_hvstd' }, - ['-528112458'] = { Name = 'cablemesh1923972_hvstd' }, - ['-566992989'] = { Name = 'cablemesh1923973_hvstd' }, - ['-2139349668'] = { Name = 'cablemesh1923974_hvstd' }, - ['-427007713'] = { Name = 'cablemesh1923975_hvstd' }, - ['-1039988033'] = { Name = 'cablemesh1924069_hvstd' }, - ['-1177239377'] = { Name = 'cablemesh1924071_hvstd' }, - ['788679081'] = { Name = 'cablemesh1924073_hvstd' }, - ['-698595883'] = { Name = 'cablemesh1924074_hvstd' }, - ['1020162131'] = { Name = 'cablemesh1924076_hvstd' }, - ['-1659470999'] = { Name = 'cablemesh1924077_hvstd' }, - ['-2121460621'] = { Name = 'cablemesh1924134_hvstd' }, - ['-58817525'] = { Name = 'cablemesh1924135_hvstd' }, - ['-93951397'] = { Name = 'cablemesh1924136_hvstd' }, - ['-444076527'] = { Name = 'cablemesh1924137_hvstd' }, - ['1606480294'] = { Name = 'cablemesh1924194_hvstd' }, - ['962590878'] = { Name = 'cablemesh1924195_hvstd' }, - ['-281901608'] = { Name = 'cablemesh1924196_hvstd' }, - ['805444646'] = { Name = 'cablemesh1924197_hvstd' }, - ['-774564416'] = { Name = 'cablemesh1924254_hvstd' }, - ['-1415296590'] = { Name = 'cablemesh1924255_hvstd' }, - ['-543292693'] = { Name = 'cablemesh1924256_hvstd' }, - ['258423744'] = { Name = 'cablemesh1924257_hvstd' }, - ['-396862484'] = { Name = 'cablemesh1924328_hvstd' }, - ['-1931346338'] = { Name = 'cablemesh1924329_hvstd' }, - ['26108003'] = { Name = 'cablemesh1924330_hvstd' }, - ['161267888'] = { Name = 'cablemesh1924331_hvstd' }, - ['1590696013'] = { Name = 'cablemesh1924388_hvstd' }, - ['-1481484221'] = { Name = 'cablemesh1924389_hvstd' }, - ['-1181627511'] = { Name = 'cablemesh1924390_hvstd' }, - ['-55952115'] = { Name = 'cablemesh1924391_hvstd' }, - ['-1561035791'] = { Name = 'cablemesh1924420_hvstd' }, - ['133188235'] = { Name = 'cablemesh1924421_hvstd' }, - ['1052574943'] = { Name = 'cablemesh1924478_hvstd' }, - ['2045485592'] = { Name = 'cablemesh1924479_hvstd' }, - ['-187308082'] = { Name = 'cablemesh1924480_hvstd' }, - ['711508080'] = { Name = 'cablemesh1924541_hvstd' }, - ['-1972392662'] = { Name = 'cablemesh1924542_hvstd' }, - ['-1357497593'] = { Name = 'cablemesh1924543_hvstd' }, - ['-554327468'] = { Name = 'cablemesh1924544_hvstd' }, - ['893317972'] = { Name = 'cablemesh1924601_hvstd' }, - ['-1194851786'] = { Name = 'cablemesh1924602_hvstd' }, - ['-148876030'] = { Name = 'cablemesh1924603_hvstd' }, - ['924336802'] = { Name = 'cablemesh1924604_hvstd' }, - ['-1492880611'] = { Name = 'cablemesh1924633_hvstd' }, - ['1370501060'] = { Name = 'cablemesh1924634_hvstd' }, - ['1811077252'] = { Name = 'cablemesh1924663_hvstd' }, - ['2000843208'] = { Name = 'cablemesh1924664_hvstd' }, - ['124805598'] = { Name = 'cablemesh1924693_hvstd' }, - ['-1886781861'] = { Name = 'cablemesh1924694_hvstd' }, - ['-980867375'] = { Name = 'cablemesh1929772_hvstd' }, - ['-3995611'] = { Name = 'cablemesh2161146_hvstd' }, - ['1681405852'] = { Name = 'cablemesh2161147_hvstd' }, - ['285860031'] = { Name = 'cablemesh2161148_hvstd' }, - ['272578892'] = { Name = 'cablemesh2161150_hvstd' }, - ['1985308043'] = { Name = 'cablemesh2161151_hvstd' }, - ['-1632514362'] = { Name = 'cablemesh2161152_hvstd' }, - ['458306332'] = { Name = 'cablemesh2161153_hvstd' }, - ['-655938419'] = { Name = 'cablemesh2161154_hvstd' }, - ['-950840561'] = { Name = 'cablemesh2161155_hvstd' }, - ['1773447216'] = { Name = 'cablemesh2161156_hvstd' }, - ['-977331169'] = { Name = 'cablemesh2161157_hvstd' }, - ['1264917626'] = { Name = 'cablemesh2161158_hvstd' }, - ['481122767'] = { Name = 'cablemesh2161159_hvstd' }, - ['-416017083'] = { Name = 'cablemesh2161160_hvstd' }, - ['524816499'] = { Name = 'cablemesh2161161_hvstd' }, - ['481021780'] = { Name = 'cablemesh2161162_hvstd' }, - ['430586840'] = { Name = 'cablemesh2161164_hvstd' }, - ['267464723'] = { Name = 'cablemesh2161165_hvstd' }, - ['-854632264'] = { Name = 'cablemesh2161195_hvstd' }, - ['466100371'] = { Name = 'cablemesh2161211_thvy' }, - ['-1535027789'] = { Name = 'cablemesh2271186_hvstd' }, - ['-233797594'] = { Name = 'cablemesh2271201_hvstd' }, - ['365648388'] = { Name = 'cablemesh2916020_hvstd001' }, - ['-641900067'] = { Name = 'cablemesh2916020_hvstd003' }, - ['-999568245'] = { Name = 'cablemesh2916051_hvstd001' }, - ['1147287684'] = { Name = 'caddy' }, - ['-537896628'] = { Name = 'caddy2' }, - ['1876516712'] = { Name = 'camper' }, - ['2072687711'] = { Name = 'carbonizzare' }, - ['11251904'] = { Name = 'carbonrs' }, - ['-50547061'] = { Name = 'cargobob' }, - ['1621617168'] = { Name = 'cargobob2' }, - ['1394036463'] = { Name = 'cargobob3' }, - ['2025593404'] = { Name = 'cargobob4' }, - ['368211810'] = { Name = 'cargoplane' }, - ['941800958'] = { Name = 'casco' }, - ['2006918058'] = { Name = 'cavalcade' }, - ['-789894171'] = { Name = 'cavalcade2' }, - ['2088441666'] = { Name = 'ce_xr_ctr2' }, - ['338949371'] = { Name = 'ch1_01__decal001' }, - ['-298079989'] = { Name = 'ch1_01__decal002' }, - ['266324268'] = { Name = 'ch1_01_bank' }, - ['-683699338'] = { Name = 'ch1_01_bankdtls' }, - ['795755219'] = { Name = 'ch1_01_barrier01' }, - ['1879099489'] = { Name = 'ch1_01_barrier01a' }, - ['1653747076'] = { Name = 'ch1_01_barrier01b' }, - ['92320566'] = { Name = 'ch1_01_basewalls00' }, - ['1176421181'] = { Name = 'ch1_01_beach008' }, - ['1490610353'] = { Name = 'ch1_01_beach009' }, - ['89957090'] = { Name = 'ch1_01_beach010' }, - ['1936162558'] = { Name = 'ch1_01_beach011' }, - ['646833476'] = { Name = 'ch1_01_beach012' }, - ['350831099'] = { Name = 'ch1_01_beach013' }, - ['501094474'] = { Name = 'ch1_01_beachdec_00' }, - ['1152869884'] = { Name = 'ch1_01_beachdec_01' }, - ['-1380534287'] = { Name = 'ch1_01_beachdec_02' }, - ['-1686367364'] = { Name = 'ch1_01_beachdec_03' }, - ['1472433172'] = { Name = 'ch1_01_beachdec_04' }, - ['-2046662511'] = { Name = 'ch1_01_beachdec_05' }, - ['-943231970'] = { Name = 'ch1_01_beachdec_06' }, - ['-1241397101'] = { Name = 'ch1_01_beachdec_07' }, - ['-680530873'] = { Name = 'ch1_01_beachrck_a' }, - ['-307455808'] = { Name = 'ch1_01_beachrck_b' }, - ['-17548465'] = { Name = 'ch1_01_beachrck_c' }, - ['-358870349'] = { Name = 'ch1_01_beachrck_d' }, - ['6241849'] = { Name = 'ch1_01_beachrck_e' }, - ['923544466'] = { Name = 'ch1_01_beachrck_f' }, - ['483653410'] = { Name = 'ch1_01_beachrck_g' }, - ['1471638760'] = { Name = 'ch1_01_beachrck_h' }, - ['641501683'] = { Name = 'ch1_01_beachrck_i' }, - ['1945838959'] = { Name = 'ch1_01_beachrck_j' }, - ['1525421551'] = { Name = 'ch1_01_beachtrax_003' }, - ['-912240062'] = { Name = 'ch1_01_beachtrax_01' }, - ['-1143884123'] = { Name = 'ch1_01_beachtrax_02' }, - ['-1951751934'] = { Name = 'ch1_01_bridge_lod' }, - ['-291753084'] = { Name = 'ch1_01_bridge' }, - ['-949394949'] = { Name = 'ch1_01_charthssign' }, - ['1068639719'] = { Name = 'ch1_01_chumash_sg_slod' }, - ['-492035864'] = { Name = 'ch1_01_chumash_sign' }, - ['-1885639488'] = { Name = 'ch1_01_church' }, - ['656967517'] = { Name = 'ch1_01_courtlines' }, - ['-1656081367'] = { Name = 'ch1_01_dec_06' }, - ['-1522790080'] = { Name = 'ch1_01_decalgrime_01' }, - ['-2025911544'] = { Name = 'ch1_01_decl03' }, - ['-1851839212'] = { Name = 'ch1_01_decl03b' }, - ['-1230837297'] = { Name = 'ch1_01_decl04' }, - ['-605932467'] = { Name = 'ch1_01_decl05' }, - ['-788586873'] = { Name = 'ch1_01_decl06' }, - ['-21693966'] = { Name = 'ch1_01_decl07' }, - ['-442841154'] = { Name = 'ch1_01_decl08' }, - ['321495771'] = { Name = 'ch1_01_decl09' }, - ['-427373778'] = { Name = 'ch1_01_decl10' }, - ['-922021833'] = { Name = 'ch1_01_decl12' }, - ['-1151240988'] = { Name = 'ch1_01_decl13' }, - ['-1119763027'] = { Name = 'ch1_01_dummyhd' }, - ['1554665320'] = { Name = 'ch1_01_flagpole_01_lod' }, - ['-1573366618'] = { Name = 'ch1_01_flagpole_01' }, - ['-134602726'] = { Name = 'ch1_01_foam_01_lod' }, - ['-1559154583'] = { Name = 'ch1_01_foam_01' }, - ['-205227139'] = { Name = 'ch1_01_foam_02_lod' }, - ['-1820356282'] = { Name = 'ch1_01_foam_02' }, - ['1637818877'] = { Name = 'ch1_01_foam_03_lod' }, - ['-1007259085'] = { Name = 'ch1_01_foam_03' }, - ['233879812'] = { Name = 'ch1_01_foam_04_lod' }, - ['-1173791143'] = { Name = 'ch1_01_foam_04' }, - ['-131331229'] = { Name = 'ch1_01_foam_05_lod' }, - ['1758084060'] = { Name = 'ch1_01_foam_05' }, - ['-1827077244'] = { Name = 'ch1_01_foam_06_lod' }, - ['2088395580'] = { Name = 'ch1_01_foam_06' }, - ['567193894'] = { Name = 'ch1_01_gvy_dtl01' }, - ['395877562'] = { Name = 'ch1_01_gvy_dtl02' }, - ['1869466727'] = { Name = 'ch1_01_gvy_dtl03' }, - ['-1624003598'] = { Name = 'ch1_01_gvy_dtl04' }, - ['2012638181'] = { Name = 'ch1_01_gvyard_a' }, - ['-1403398997'] = { Name = 'ch1_01_gvyard_b' }, - ['1515171992'] = { Name = 'ch1_01_gvyard_c' }, - ['-1862394380'] = { Name = 'ch1_01_gvyard_d' }, - ['1562784043'] = { Name = 'ch1_01_gvyard_stairs' }, - ['1473668449'] = { Name = 'ch1_01_hedgedtl_01' }, - ['-1632603368'] = { Name = 'ch1_01_hedgedtl_02' }, - ['-1823056796'] = { Name = 'ch1_01_hedgedtl_03' }, - ['-1705186707'] = { Name = 'ch1_01_hedgedtl_04' }, - ['-1860184077'] = { Name = 'ch1_01_hedgedtl_05' }, - ['2076290359'] = { Name = 'ch1_01_hedgedtl_06' }, - ['1818955402'] = { Name = 'ch1_01_hedgedtl_07' }, - ['-678501168'] = { Name = 'ch1_01_hedgedtl_08' }, - ['-984268707'] = { Name = 'ch1_01_hedgedtl_09' }, - ['-1951117760'] = { Name = 'ch1_01_hedgedtl_10' }, - ['771723988'] = { Name = 'ch1_01_hedgedtl_11' }, - ['-1973335146'] = { Name = 'ch1_01_hedgedtl_12' }, - ['-1682772423'] = { Name = 'ch1_01_hedgedtl_13' }, - ['1930239214'] = { Name = 'ch1_01_hedgedtl_14' }, - ['2015176462'] = { Name = 'ch1_01_hedgedtl_15' }, - ['-791488392'] = { Name = 'ch1_01_hedgedtl_16' }, - ['-488997753'] = { Name = 'ch1_01_hedgedtl_17' }, - ['1092941051'] = { Name = 'ch1_01_hedgetopc' }, - ['-128297903'] = { Name = 'ch1_01_korizhut' }, - ['-137057721'] = { Name = 'ch1_01_korizwall_lod' }, - ['821890269'] = { Name = 'ch1_01_korizwall' }, - ['-1392804315'] = { Name = 'ch1_01_ladder' }, - ['11139288'] = { Name = 'ch1_01_land_00a' }, - ['-1762515606'] = { Name = 'ch1_01_land_00b' }, - ['145289054'] = { Name = 'ch1_01_land_01' }, - ['-98512306'] = { Name = 'ch1_01_land_02' }, - ['2119293606'] = { Name = 'ch1_01_land_03' }, - ['1881620049'] = { Name = 'ch1_01_land_04' }, - ['1105191363'] = { Name = 'ch1_01_land_05' }, - ['866796888'] = { Name = 'ch1_01_land_06' }, - ['-1212723856'] = { Name = 'ch1_01_land_07' }, - ['-486041740'] = { Name = 'ch1_01_land_10' }, - ['-1128314140'] = { Name = 'ch1_01_land_11' }, - ['1270130018'] = { Name = 'ch1_01_land06' }, - ['-1965451776'] = { Name = 'ch1_01_laybyfloor' }, - ['2066509898'] = { Name = 'ch1_01_liquorsign01' }, - ['1893817268'] = { Name = 'ch1_01_liquorsign02' }, - ['-1548662161'] = { Name = 'ch1_01_liquorstr_wire' }, - ['1896489202'] = { Name = 'ch1_01_liquorstr' }, - ['725917975'] = { Name = 'ch1_01_liquorstrdtls' }, - ['2075499324'] = { Name = 'ch1_01_museentrncdcal' }, - ['1413502017'] = { Name = 'ch1_01_ndec_00' }, - ['1730574861'] = { Name = 'ch1_01_ndec_01' }, - ['-180338418'] = { Name = 'ch1_01_newhedgesa' }, - ['184118400'] = { Name = 'ch1_01_newhedgesb' }, - ['-1345341918'] = { Name = 'ch1_01_newhedgesc' }, - ['39541105'] = { Name = 'ch1_01_overpass_barsa' }, - ['462293922'] = { Name = 'ch1_01_overpass_barsb' }, - ['675566201'] = { Name = 'ch1_01_overpass' }, - ['-362718399'] = { Name = 'ch1_01_parkinglines_01' }, - ['-59637918'] = { Name = 'ch1_01_parkinglines_02' }, - ['-2034560010'] = { Name = 'ch1_01_parkinglines_03' }, - ['-1232472969'] = { Name = 'ch1_01_pierrck_a' }, - ['510514096'] = { Name = 'ch1_01_poolwtr' }, - ['-1326799299'] = { Name = 'ch1_01_props_towelsday' }, - ['-1521687466'] = { Name = 'ch1_01_props_towelsevening' }, - ['323184897'] = { Name = 'ch1_01_props_towelsmorn' }, - ['503064999'] = { Name = 'ch1_01_rd_lnd_dcl_01' }, - ['1339525731'] = { Name = 'ch1_01_rlswall01_glue001' }, - ['950635029'] = { Name = 'ch1_01_rlswall01' }, - ['-330041870'] = { Name = 'ch1_01_road007' }, - ['321924741'] = { Name = 'ch1_01_road06' }, - ['-1388814481'] = { Name = 'ch1_01_rsidedec_03' }, - ['-1221539348'] = { Name = 'ch1_01_rsidedec_03b' }, - ['1237433499'] = { Name = 'ch1_01_scch_beam' }, - ['-1102434854'] = { Name = 'ch1_01_scch_blgdecals01' }, - ['1274042181'] = { Name = 'ch1_01_scch_blgmain' }, - ['2063237548'] = { Name = 'ch1_01_scch_crprkdecals' }, - ['2135906409'] = { Name = 'ch1_01_scch_crprksurface' }, - ['1869065700'] = { Name = 'ch1_01_scch_stilts_lod' }, - ['-1849587480'] = { Name = 'ch1_01_scch_stilts' }, - ['-562569724'] = { Name = 'ch1_01_sea_alga002' }, - ['1755584735'] = { Name = 'ch1_01_sea_alga01' }, - ['1431466556'] = { Name = 'ch1_01_sea_alga03' }, - ['1093421552'] = { Name = 'ch1_01_sea_alga04' }, - ['738825361'] = { Name = 'ch1_01_sea_ch1_01_uw_01' }, - ['1530655477'] = { Name = 'ch1_01_sea_ch1_01_uw_02' }, - ['351790702'] = { Name = 'ch1_01_sea_ch1_01_uw_03' }, - ['1062746926'] = { Name = 'ch1_01_sea_ch1_01_uw_04' }, - ['-132436811'] = { Name = 'ch1_01_sea_ch1_01_uw_05' }, - ['-499646225'] = { Name = 'ch1_01_sea_ch1_01_uw_06' }, - ['-594774632'] = { Name = 'ch1_01_sea_ch1_01_uw_07' }, - ['-967685852'] = { Name = 'ch1_01_sea_ch1_01_uw_08' }, - ['-1155452222'] = { Name = 'ch1_01_sea_ch1_01_uw_09' }, - ['1653343433'] = { Name = 'ch1_01_sea_ch1_01_uw_10' }, - ['1306778489'] = { Name = 'ch1_01_sea_ch1_01_uw_11' }, - ['1074610124'] = { Name = 'ch1_01_sea_ch1_01_uw_12' }, - ['426537611'] = { Name = 'ch1_01_sea_ch1_01_uw_14' }, - ['1307465795'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_00' }, - ['630196103'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_01' }, - ['861512474'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_02' }, - ['55755533'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_03' }, - ['419753585'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_04' }, - ['-420935110'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_05' }, - ['-89771596'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_06' }, - ['-356281877'] = { Name = 'ch1_01_sea_ch1_01_uw_dec_07' }, - ['-2029719434'] = { Name = 'ch1_01_sea_ch1_01_uw_decb_00' }, - ['-1694754708'] = { Name = 'ch1_01_sea_ch1_01_uw_decb_01' }, - ['-528800919'] = { Name = 'ch1_01_sea_ch1_01_uw_decb_03' }, - ['276741382'] = { Name = 'ch1_01_sea_ch1_01_uw_decc_00' }, - ['-1558753739'] = { Name = 'ch1_01_sea_ch1_01_uwb_00' }, - ['1258855961'] = { Name = 'ch1_01_sea_ch1_01_uwb_06' }, - ['791758157'] = { Name = 'ch1_01_sea_coral_2' }, - ['1950283968'] = { Name = 'ch1_01_sea_l' }, - ['1077001967'] = { Name = 'ch1_01_sea_uwb_01_lod' }, - ['1345442365'] = { Name = 'ch1_01_sea_uwb_01' }, - ['-1473371669'] = { Name = 'ch1_01_sea_uwb_02_lod' }, - ['-1733500110'] = { Name = 'ch1_01_sea_uwb_02' }, - ['-734758372'] = { Name = 'ch1_01_sea_uwb_03_lod' }, - ['-1484357399'] = { Name = 'ch1_01_sea_uwb_03' }, - ['2133744557'] = { Name = 'ch1_01_sea_uwb_04_lod' }, - ['2108566837'] = { Name = 'ch1_01_sea_uwb_04' }, - ['1552801955'] = { Name = 'ch1_01_sea_uwb_05_lod' }, - ['-1948989054'] = { Name = 'ch1_01_sea_uwb_05' }, - ['-1312238887'] = { Name = 'ch1_01_sea_uwb_07_lod' }, - ['-39932648'] = { Name = 'ch1_01_sea_uwb_07' }, - ['534951662'] = { Name = 'ch1_01_sea_wreck_2' }, - ['302750528'] = { Name = 'ch1_01_sea_wreck_3' }, - ['83245915'] = { Name = 'ch1_01_sea_wreck' }, - ['-543002800'] = { Name = 'ch1_01_seaground_01' }, - ['-259682026'] = { Name = 'ch1_01_seaground_02' }, - ['39400637'] = { Name = 'ch1_01_seaground_03' }, - ['-2100447836'] = { Name = 'ch1_01_seaground_04' }, - ['-1803757310'] = { Name = 'ch1_01_seaground_05' }, - ['995632826'] = { Name = 'ch1_01_seaground_08' }, - ['2012206562'] = { Name = 'ch1_01_seawall002_lod' }, - ['1652354686'] = { Name = 'ch1_01_seawall002' }, - ['1017243346'] = { Name = 'ch1_01_seawall003_lod' }, - ['-324861236'] = { Name = 'ch1_01_seawall003' }, - ['402326602'] = { Name = 'ch1_01_seawall004_lod' }, - ['-18503855'] = { Name = 'ch1_01_seawall004' }, - ['-1973410781'] = { Name = 'ch1_01_seawall005_lod' }, - ['691403761'] = { Name = 'ch1_01_seawall005' }, - ['-2075435231'] = { Name = 'ch1_01_seaweeds_00' }, - ['1691310050'] = { Name = 'ch1_01_seawrka_lod' }, - ['949250813'] = { Name = 'ch1_01_seawrkb_lod' }, - ['308214521'] = { Name = 'ch1_01_seawrkc_lod' }, - ['786496676'] = { Name = 'ch1_01_shop02' }, - ['782314739'] = { Name = 'ch1_01_shop02dtls' }, - ['905829423'] = { Name = 'ch1_01_shopbase' }, - ['-1847750154'] = { Name = 'ch1_01_shpbsdtls' }, - ['1685575099'] = { Name = 'ch1_01_sign_01_lod' }, - ['1945640894'] = { Name = 'ch1_01_sign_01' }, - ['1187892487'] = { Name = 'ch1_01_surfshack_rack' }, - ['-431763373'] = { Name = 'ch1_01_surfshack' }, - ['-776624825'] = { Name = 'ch1_01_surfshkdtls' }, - ['-1629482019'] = { Name = 'ch1_01_tccourts_raila' }, - ['279213928'] = { Name = 'ch1_01_tccourts_railb' }, - ['1264676053'] = { Name = 'ch1_01_tccourts_railc' }, - ['-1492069993'] = { Name = 'ch1_01_tccourts' }, - ['130567957'] = { Name = 'ch1_01_tccourtsdtls' }, - ['478774588'] = { Name = 'ch1_01_tcgate01' }, - ['776382646'] = { Name = 'ch1_01_tcgate02' }, - ['-30095213'] = { Name = 'ch1_01_tcgate03' }, - ['268004380'] = { Name = 'ch1_01_tcgate04' }, - ['-2062639675'] = { Name = 'ch1_01_tchuts_rail' }, - ['533338455'] = { Name = 'ch1_01_tchuts' }, - ['-378461214'] = { Name = 'ch1_01_tchutsdtls_bars' }, - ['-1868089794'] = { Name = 'ch1_01_tchutsdtls' }, - ['-1729833099'] = { Name = 'ch1_01_tcmain_raila' }, - ['1193128944'] = { Name = 'ch1_01_tcmain_railb' }, - ['1023844290'] = { Name = 'ch1_01_tcmain_railc' }, - ['-2008521507'] = { Name = 'ch1_01_tcmain' }, - ['-1078622053'] = { Name = 'ch1_01_tcmain02' }, - ['195829895'] = { Name = 'ch1_01_tcmain03' }, - ['-975340603'] = { Name = 'ch1_01_tcmaindtls_a' }, - ['-1910797246'] = { Name = 'ch1_01_tcmaindtls_b' }, - ['-261665583'] = { Name = 'ch1_01_tcpool_raila' }, - ['1469055564'] = { Name = 'ch1_01_tcpool_raillb' }, - ['-388166026'] = { Name = 'ch1_01_tcpool' }, - ['1217119484'] = { Name = 'ch1_01_tcpooldtls' }, - ['-1426270012'] = { Name = 'ch1_01_tnscrtfence01' }, - ['213195831'] = { Name = 'ch1_01_tnscrtfence02' }, - ['306587481'] = { Name = 'ch1_01_tnscrtfence03' }, - ['-466171077'] = { Name = 'ch1_01_tnscrtfence04' }, - ['-171676074'] = { Name = 'ch1_01_tnscrtfence05' }, - ['1198199202'] = { Name = 'ch1_01_tnscrtfence06' }, - ['1495381263'] = { Name = 'ch1_01_tnscrtfence07' }, - ['721180869'] = { Name = 'ch1_01_tnscrtfence08' }, - ['1019608152'] = { Name = 'ch1_01_tnscrtfence09' }, - ['-1384588140'] = { Name = 'ch1_01_tnscrtfence10' }, - ['-1591486225'] = { Name = 'ch1_01_trail1' }, - ['-1815527878'] = { Name = 'ch1_01_trail2' }, - ['-2083734669'] = { Name = 'ch1_01_treereflectioproxy' }, - ['793004209'] = { Name = 'ch1_01_uw_decb_02' }, - ['1725446108'] = { Name = 'ch1_01_uw_decb_04' }, - ['1487018864'] = { Name = 'ch1_01_uw_decb_05' }, - ['-1980236261'] = { Name = 'ch1_01_uw_decb_06' }, - ['-341851803'] = { Name = 'ch1_01_uw_decb_07' }, - ['-537275904'] = { Name = 'ch1_01_water_01' }, - ['1144180335'] = { Name = 'ch1_02_armco_left001_lod' }, - ['-1113692887'] = { Name = 'ch1_02_armco_left001' }, - ['-2009563969'] = { Name = 'ch1_02_armco_left001b_lod' }, - ['49790872'] = { Name = 'ch1_02_armco_left001b' }, - ['1733609426'] = { Name = 'ch1_02_beach_01_dec' }, - ['-22100091'] = { Name = 'ch1_02_beach_01' }, - ['2022095667'] = { Name = 'ch1_02_beach_02' }, - ['-1378345778'] = { Name = 'ch1_02_bigweed_01' }, - ['-1255893178'] = { Name = 'ch1_02_blends_00100' }, - ['1853884926'] = { Name = 'ch1_02_blends_00101' }, - ['-1598624149'] = { Name = 'ch1_02_blends_00102' }, - ['-1543405268'] = { Name = 'ch1_02_build_02_planks' }, - ['1605836612'] = { Name = 'ch1_02_build_02_rails' }, - ['-1769625092'] = { Name = 'ch1_02_build_02_stepsa' }, - ['1691567768'] = { Name = 'ch1_02_build_02_stepsb' }, - ['-1160747194'] = { Name = 'ch1_02_build_02' }, - ['-771986381'] = { Name = 'ch1_02_buildl_79_rails' }, - ['2009342682'] = { Name = 'ch1_02_buildl_79' }, - ['555046688'] = { Name = 'ch1_02_ch1_road01' }, - ['-1508585684'] = { Name = 'ch1_02_coastrok_01' }, - ['-1270322285'] = { Name = 'ch1_02_coastrok_02' }, - ['-76318232'] = { Name = 'ch1_02_coastrok_03' }, - ['-735748984'] = { Name = 'ch1_02_coastrok_03a' }, - ['-927198086'] = { Name = 'ch1_02_coastrok_04' }, - ['-2132081407'] = { Name = 'ch1_02_coastrok_05' }, - ['-1293522697'] = { Name = 'ch1_02_coastrok_06' }, - ['-680676859'] = { Name = 'ch1_02_coastrok_07' }, - ['1566139549'] = { Name = 'ch1_02_dcl_01' }, - ['-335609366'] = { Name = 'ch1_02_dcl_02' }, - ['-56253641'] = { Name = 'ch1_02_dcl_03' }, - ['695467219'] = { Name = 'ch1_02_dcl_04' }, - ['-1204381098'] = { Name = 'ch1_02_dcl_05' }, - ['-955795464'] = { Name = 'ch1_02_dcl_06' }, - ['-744337107'] = { Name = 'ch1_02_dcl_07' }, - ['-468520434'] = { Name = 'ch1_02_dcl_08' }, - ['1879509496'] = { Name = 'ch1_02_dcl_09' }, - ['-332854782'] = { Name = 'ch1_02_dcl_10' }, - ['-43209591'] = { Name = 'ch1_02_dcl_11' }, - ['146195229'] = { Name = 'ch1_02_dcl_12' }, - ['437347794'] = { Name = 'ch1_02_dcl_13' }, - ['-857540512'] = { Name = 'ch1_02_foam_01' }, - ['-745142842'] = { Name = 'ch1_02_foam_02' }, - ['817602759'] = { Name = 'ch1_02_gnd_02_rails' }, - ['695708120'] = { Name = 'ch1_02_gnd_02_railsb_lod' }, - ['1354206936'] = { Name = 'ch1_02_gnd_02_railsb' }, - ['-503598417'] = { Name = 'ch1_02_gnd_02' }, - ['2142609614'] = { Name = 'ch1_02_h05_skylight' }, - ['547198799'] = { Name = 'ch1_02_h05' }, - ['-423978672'] = { Name = 'ch1_02_h07_015' }, - ['1076813847'] = { Name = 'ch1_02_h07_015wood' }, - ['-982923554'] = { Name = 'ch1_02_h07_main_rails' }, - ['550315547'] = { Name = 'ch1_02_h07_main_railsb' }, - ['-1893820521'] = { Name = 'ch1_02_h07_main' }, - ['-98947468'] = { Name = 'ch1_02_h07_maindtls' }, - ['493292358'] = { Name = 'ch1_02_house_001_raila' }, - ['2080786551'] = { Name = 'ch1_02_house_001_railb' }, - ['-766421119'] = { Name = 'ch1_02_house_001' }, - ['1807478187'] = { Name = 'ch1_02_house03ih_rails_b' }, - ['513672777'] = { Name = 'ch1_02_house03ih_railsa' }, - ['2083111267'] = { Name = 'ch1_02_house03ih_railsc' }, - ['-131611065'] = { Name = 'ch1_02_house03ih_skylight' }, - ['-716819284'] = { Name = 'ch1_02_house03ih' }, - ['1204685340'] = { Name = 'ch1_02_housewood_rails' }, - ['-483948859'] = { Name = 'ch1_02_housewoodfnt' }, - ['871757121'] = { Name = 'ch1_02_hsewoodfntfence' }, - ['-451795908'] = { Name = 'ch1_02_ian19_planks' }, - ['-1259518179'] = { Name = 'ch1_02_ian19_rails1' }, - ['-306399045'] = { Name = 'ch1_02_ian19_rails2' }, - ['-543744912'] = { Name = 'ch1_02_ian19_rails3' }, - ['713147570'] = { Name = 'ch1_02_ian19' }, - ['801125058'] = { Name = 'ch1_02_ih06_58_rails' }, - ['-1464254561'] = { Name = 'ch1_02_ih06_58_railsb' }, - ['1762604786'] = { Name = 'ch1_02_ih06_58' }, - ['475645244'] = { Name = 'ch1_02_ih07_01_rails' }, - ['1737330872'] = { Name = 'ch1_02_ih07_01' }, - ['-1191309053'] = { Name = 'ch1_02_ihwhouse_07_rail' }, - ['-1695462135'] = { Name = 'ch1_02_ihwhouse_07' }, - ['1860533773'] = { Name = 'ch1_02_ihwhouse_07dtls' }, - ['-1444021947'] = { Name = 'ch1_02_int_closed' }, - ['-1788961424'] = { Name = 'ch1_02_int_open' }, - ['1842996250'] = { Name = 'ch1_02_kerb02' }, - ['1772530236'] = { Name = 'ch1_02_land_01' }, - ['1482196896'] = { Name = 'ch1_02_land_02' }, - ['-392602943'] = { Name = 'ch1_02_land_dcl' }, - ['108805658'] = { Name = 'ch1_02_plot3stairs_lod' }, - ['253628142'] = { Name = 'ch1_02_plot3stairs' }, - ['-4697596'] = { Name = 'ch1_02_props_combo06_18_lod' }, - ['-1206735244'] = { Name = 'ch1_02_props_l_005' }, - ['-181870890'] = { Name = 'ch1_02_props_s_006' }, - ['-23924310'] = { Name = 'ch1_02_props_s_007' }, - ['-1985312805'] = { Name = 'ch1_02_props_s_008' }, - ['910077489'] = { Name = 'ch1_02_retwall1a' }, - ['1166494914'] = { Name = 'ch1_02_retwall1b' }, - ['233407443'] = { Name = 'ch1_02_retwall2' }, - ['253431857'] = { Name = 'ch1_02_road_02' }, - ['1057187893'] = { Name = 'ch1_02_rockfall' }, - ['-1294942871'] = { Name = 'ch1_02_rockfall2' }, - ['-1208408122'] = { Name = 'ch1_02_sc02_blg_rail01' }, - ['-900772750'] = { Name = 'ch1_02_sc02_blg_rail02' }, - ['-573082750'] = { Name = 'ch1_02_sc02_blg_rail03' }, - ['1874007863'] = { Name = 'ch1_02_sc02_blg_rail04' }, - ['-225005758'] = { Name = 'ch1_02_sc02_blg_raila' }, - ['-215515003'] = { Name = 'ch1_02_sc02_blg' }, - ['-2012361712'] = { Name = 'ch1_02_sc04_blgmain_raila' }, - ['-1680084052'] = { Name = 'ch1_02_sc04_blgmain_railb' }, - ['136518822'] = { Name = 'ch1_02_sc04_blgmain' }, - ['1909481576'] = { Name = 'ch1_02_sc04_blgmainstairs' }, - ['-143576950'] = { Name = 'ch1_02_sc04_blgmainsupp' }, - ['512925819'] = { Name = 'ch1_02_sc05_blgmain_rails1' }, - ['347638983'] = { Name = 'ch1_02_sc05_blgmain_rails2' }, - ['970381059'] = { Name = 'ch1_02_sc05_blgmain_rails3' }, - ['1746449286'] = { Name = 'ch1_02_sc05_blgmain_rails4' }, - ['-399821907'] = { Name = 'ch1_02_sc05_blgmain_rails5' }, - ['-574808367'] = { Name = 'ch1_02_sc05_blgmain_rails6' }, - ['175011891'] = { Name = 'ch1_02_sc05_blgmain_rails7' }, - ['-1062829251'] = { Name = 'ch1_02_sc05_blgmain' }, - ['-518564779'] = { Name = 'ch1_02_sea_ch1_02_uw1_00' }, - ['-629029074'] = { Name = 'ch1_02_sea_ch1_02_uw1_01' }, - ['152806493'] = { Name = 'ch1_02_sea_ch1_02_uw1_02' }, - ['-78804799'] = { Name = 'ch1_02_sea_ch1_02_uw1_03' }, - ['764439878'] = { Name = 'ch1_02_sea_ch1_02_uw1_04' }, - ['533287352'] = { Name = 'ch1_02_sea_ch1_02_uw1_05' }, - ['1377252947'] = { Name = 'ch1_02_sea_ch1_02_uw1_06' }, - ['1153244063'] = { Name = 'ch1_02_sea_ch1_02_uw1_07' }, - ['131934431'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_00' }, - ['-164756095'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_01' }, - ['1684300276'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_02' }, - ['1647893917'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_03' }, - ['1342060840'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_04' }, - ['1035801766'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_05' }, - ['-1417908189'] = { Name = 'ch1_02_sea_ch1_02_uw1_dec_06' }, - ['577450743'] = { Name = 'ch1_02_sea_ch1_02_uw2_01_lod' }, - ['-1568584208'] = { Name = 'ch1_02_sea_ch1_02_uw2_01' }, - ['-1432319552'] = { Name = 'ch1_02_sea_ch1_02_uw2_02_lod' }, - ['-1346901923'] = { Name = 'ch1_02_sea_ch1_02_uw2_02' }, - ['14660227'] = { Name = 'ch1_02_snd_dcl' }, - ['1329820840'] = { Name = 'ch1_03_armco00' }, - ['-2051645043'] = { Name = 'ch1_03_armco01' }, - ['872857135'] = { Name = 'ch1_03_armco02' }, - ['1750804183'] = { Name = 'ch1_03_armco03' }, - ['1989198658'] = { Name = 'ch1_03_armco04' }, - ['-1364890403'] = { Name = 'ch1_03_bridge_ov' }, - ['1828542008'] = { Name = 'ch1_03_bridge001_supports' }, - ['-303945667'] = { Name = 'ch1_03_bridge001' }, - ['-1077376968'] = { Name = 'ch1_03_cstrckedge_003' }, - ['-769774365'] = { Name = 'ch1_03_cstrckedge_004' }, - ['-328572541'] = { Name = 'ch1_03_cstrckedge_005' }, - ['-1915245627'] = { Name = 'ch1_03_dcl_lyb02' }, - ['-354120227'] = { Name = 'ch1_03_dcl_lyby00' }, - ['1531047574'] = { Name = 'ch1_03_dcl_lyby01' }, - ['699952384'] = { Name = 'ch1_03_decal_004_lod' }, - ['1957512629'] = { Name = 'ch1_03_decal_004' }, - ['1264813400'] = { Name = 'ch1_03_decal02' }, - ['-1035883491'] = { Name = 'ch1_03_foamwet_01' }, - ['-1392213597'] = { Name = 'ch1_03_foamwet_02' }, - ['1923353819'] = { Name = 'ch1_03_foamwet_03' }, - ['-590094023'] = { Name = 'ch1_03_foamwet_04' }, - ['1514599272'] = { Name = 'ch1_03_land_001_decal' }, - ['1301385023'] = { Name = 'ch1_03_land_001' }, - ['1606595489'] = { Name = 'ch1_03_land_002' }, - ['1778567201'] = { Name = 'ch1_03_land_003' }, - ['2074110812'] = { Name = 'ch1_03_land_004' }, - ['-1035722506'] = { Name = 'ch1_03_land_dc05_lod' }, - ['2129970183'] = { Name = 'ch1_03_land_dcl05' }, - ['-1376131756'] = { Name = 'ch1_03_land_dcl05b_lod' }, - ['-827454113'] = { Name = 'ch1_03_land_dcl05b' }, - ['-1506874643'] = { Name = 'ch1_03_lnd_dcl1_lod' }, - ['403598249'] = { Name = 'ch1_03_lnd_dcl1' }, - ['1445634661'] = { Name = 'ch1_03_lnd_dcl2_lod' }, - ['52183493'] = { Name = 'ch1_03_lnd_dcl2' }, - ['1538980321'] = { Name = 'ch1_03_sea_ch1_03_uw_00' }, - ['-491459741'] = { Name = 'ch1_03_sea_ch1_03_uw_01_lod' }, - ['759962884'] = { Name = 'ch1_03_sea_ch1_03_uw_01' }, - ['1044889339'] = { Name = 'ch1_03_sea_ch1_03_uw_02' }, - ['-1209748941'] = { Name = 'ch1_03_sea_ch1_03_uw_03' }, - ['-2056598208'] = { Name = 'ch1_03_sea_ch1_03_uw_04' }, - ['-1883708964'] = { Name = 'ch1_03_sea_ch1_03_uw_05' }, - ['868044784'] = { Name = 'ch1_03_sea_ch1_03_uw_06_lod' }, - ['1626866779'] = { Name = 'ch1_03_sea_ch1_03_uw_06' }, - ['872392739'] = { Name = 'ch1_03_sea_ch1_03_uw_07_lod' }, - ['-557023230'] = { Name = 'ch1_03_sea_ch1_03_uw_07' }, - ['-248503095'] = { Name = 'ch1_03_sea_ch1_03_uw_08' }, - ['46978107'] = { Name = 'ch1_03_sea_ch1_03_uw_09_lod' }, - ['-596575413'] = { Name = 'ch1_03_sea_ch1_03_uw_09' }, - ['1449403816'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_00' }, - ['1679737117'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_01' }, - ['-1175163705'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_02' }, - ['1202784322'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_03' }, - ['-1868686821'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_04' }, - ['-1622919321'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_05' }, - ['-467648226'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_06' }, - ['47808144'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_07' }, - ['-395982451'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_08' }, - ['-174070783'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_09' }, - ['-19794023'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_10' }, - ['-1935043766'] = { Name = 'ch1_03_sea_ch1_03_uw_dec_11' }, - ['1834135174'] = { Name = 'ch1_04_armco_endsmalll001' }, - ['-293287060'] = { Name = 'ch1_04_armco_left_10' }, - ['584202551'] = { Name = 'ch1_04_armco_rght_10' }, - ['-1940283353'] = { Name = 'ch1_04_culvert01_s' }, - ['-600745613'] = { Name = 'ch1_04_culvert01' }, - ['-294191618'] = { Name = 'ch1_04_culvert02' }, - ['-2131518812'] = { Name = 'ch1_04_dcl_04_lod' }, - ['450170323'] = { Name = 'ch1_04_dcl_04' }, - ['-1991611708'] = { Name = 'ch1_04_dcl_05' }, - ['-509721025'] = { Name = 'ch1_04_dcl_08c_lod' }, - ['-1063419413'] = { Name = 'ch1_04_dcl_08c' }, - ['338705029'] = { Name = 'ch1_04_dcl_11_lod' }, - ['-1184226737'] = { Name = 'ch1_04_dcl_11' }, - ['-449840678'] = { Name = 'ch1_04_dcl_13' }, - ['-1065835483'] = { Name = 'ch1_04_dcl_13b_lod' }, - ['1673261881'] = { Name = 'ch1_04_dcl_13b' }, - ['-1916844178'] = { Name = 'ch1_04_dcl_14_lod' }, - ['340744164'] = { Name = 'ch1_04_dcl_14' }, - ['33928017'] = { Name = 'ch1_04_dcl_15' }, - ['264720136'] = { Name = 'ch1_04_dcl_17' }, - ['726992419'] = { Name = 'ch1_04_dcl_19' }, - ['-866876887'] = { Name = 'ch1_04_dcl_20_lod' }, - ['-827143296'] = { Name = 'ch1_04_dcl_20' }, - ['-1726097431'] = { Name = 'ch1_04_dcl_21_lod' }, - ['-595335390'] = { Name = 'ch1_04_dcl_21' }, - ['-114157674'] = { Name = 'ch1_04_dcl_21b' }, - ['-1285745451'] = { Name = 'ch1_04_dcl_22' }, - ['-987000185'] = { Name = 'ch1_04_dcl_23a_lod' }, - ['-2114278599'] = { Name = 'ch1_04_dcl_23a' }, - ['-325747467'] = { Name = 'ch1_04_dcl_26r' }, - ['398751053'] = { Name = 'ch1_04_decal_bridge' }, - ['-1602685052'] = { Name = 'ch1_04_decalsfloor' }, - ['-1380684055'] = { Name = 'ch1_04_decalsflooredge' }, - ['-798957422'] = { Name = 'ch1_04_decalsfloorpark' }, - ['313513025'] = { Name = 'ch1_04_gasnew' }, - ['-742940955'] = { Name = 'ch1_04_gasnewroof' }, - ['-1601205788'] = { Name = 'ch1_04_gassign01' }, - ['1991980604'] = { Name = 'ch1_04_gassign02' }, - ['-2064526679'] = { Name = 'ch1_04_gassign03' }, - ['180050437'] = { Name = 'ch1_04_grills' }, - ['1006687760'] = { Name = 'ch1_04_hexdecals' }, - ['923329994'] = { Name = 'ch1_04_land002' }, - ['1628816419'] = { Name = 'ch1_04_land01' }, - ['1391339476'] = { Name = 'ch1_04_land02' }, - ['-1300502782'] = { Name = 'ch1_04_land03' }, - ['-2141551936'] = { Name = 'ch1_04_land04' }, - ['1660562037'] = { Name = 'ch1_04_refprox023_ch' }, - ['664017020'] = { Name = 'ch1_04_refprox024_ch' }, - ['1671870307'] = { Name = 'ch1_04_refprox025_ch' }, - ['1489283597'] = { Name = 'ch1_04_refprox027_ch' }, - ['-970411175'] = { Name = 'ch1_04_refprox028_ch' }, - ['1131940427'] = { Name = 'ch1_04_refprox029_ch' }, - ['-669836836'] = { Name = 'ch1_04_refprox030_ch' }, - ['1529750140'] = { Name = 'ch1_04_refprox031_ch' }, - ['-1635586171'] = { Name = 'ch1_04_refprox032_ch' }, - ['992703513'] = { Name = 'ch1_04_refprox033_ch' }, - ['-792727366'] = { Name = 'ch1_04_refprox034_ch' }, - ['-1999503628'] = { Name = 'ch1_04_rockgroup_1' }, - ['-1897559265'] = { Name = 'ch1_04_rockgroup_3' }, - ['578557404'] = { Name = 'ch1_04_sea_ch1_04_uw_01_lod' }, - ['1275047988'] = { Name = 'ch1_04_sea_ch1_04_uw_01' }, - ['1580618913'] = { Name = 'ch1_04_sea_ch1_04_uw_02' }, - ['1580684662'] = { Name = 'ch1_04_sea_ch1_04_uw_dec_01' }, - ['-6351017'] = { Name = 'ch1_04_sea_ch1_04_uw_dec_02' }, - ['-300080000'] = { Name = 'ch1_04_signglue' }, - ['57831255'] = { Name = 'ch1_04_ssbigsign_d008' }, - ['1859705599'] = { Name = 'ch1_04_stones_decal' }, - ['1142298580'] = { Name = 'ch1_04_truckmarkings' }, - ['1572274500'] = { Name = 'ch1_04_wetlands_01' }, - ['726408295'] = { Name = 'ch1_04_wetlands_02' }, - ['966113530'] = { Name = 'ch1_04_wetlands_03' }, - ['-2016455316'] = { Name = 'ch1_04_wetlands_04' }, - ['-1780354671'] = { Name = 'ch1_04_wetlands_05' }, - ['-1430917773'] = { Name = 'ch1_04_woodenstruc' }, - ['2003984740'] = { Name = 'ch1_04_woodenstruc2' }, - ['1211859703'] = { Name = 'ch1_04_woodenstruc3' }, - ['-2035462136'] = { Name = 'ch1_04b_ammo_decal' }, - ['146986237'] = { Name = 'ch1_04b_ammosign_lod' }, - ['1573004296'] = { Name = 'ch1_04b_ammosign' }, - ['-1596821588'] = { Name = 'ch1_04b_bdec_07g' }, - ['-390130824'] = { Name = 'ch1_04b_cardecals' }, - ['-580163850'] = { Name = 'ch1_04b_cardetails_lod' }, - ['-1840327864'] = { Name = 'ch1_04b_cardetails' }, - ['1663382220'] = { Name = 'ch1_04b_cliff_07' }, - ['-1680988031'] = { Name = 'ch1_04b_cliff_dcl_01_lod' }, - ['479419282'] = { Name = 'ch1_04b_cliff_dcl_01' }, - ['-2032619493'] = { Name = 'ch1_04b_cliff_dcl_05' }, - ['1496962270'] = { Name = 'ch1_04b_cliff_dcl_06' }, - ['2106957205'] = { Name = 'ch1_04b_cliff_dcl_08' }, - ['-1296300063'] = { Name = 'ch1_04b_cliff_dcl_09' }, - ['-929582516'] = { Name = 'ch1_04b_cliff_dcl_10' }, - ['-23191984'] = { Name = 'ch1_04b_cliff_dcl_11' }, - ['-396201503'] = { Name = 'ch1_04b_cliff_dcl_12' }, - ['192624650'] = { Name = 'ch1_04b_cliff_dcl_14' }, - ['900271205'] = { Name = 'ch1_04b_cliff_dcl_15' }, - ['337226287'] = { Name = 'ch1_04b_clothes_decal' }, - ['-1690095993'] = { Name = 'ch1_04b_clothese_emiss_lod' }, - ['1561121555'] = { Name = 'ch1_04b_clothese_emissiv' }, - ['341003969'] = { Name = 'ch1_04b_crk_dcl_05' }, - ['-668414286'] = { Name = 'ch1_04b_culv_shadw' }, - ['-1334476730'] = { Name = 'ch1_04b_culvert_shdw' }, - ['990490525'] = { Name = 'ch1_04b_culvert006' }, - ['1748310538'] = { Name = 'ch1_04b_culvert01_sb' }, - ['-1248175503'] = { Name = 'ch1_04b_culvert01' }, - ['2029364866'] = { Name = 'ch1_04b_dcl_01' }, - ['-769828636'] = { Name = 'ch1_04b_dcl_02' }, - ['-967128866'] = { Name = 'ch1_04b_dcl_02b' }, - ['1369332179'] = { Name = 'ch1_04b_dcl_09c' }, - ['1459250315'] = { Name = 'ch1_04b_dcl_09d' }, - ['-1907920610'] = { Name = 'ch1_04b_decalbuild006' }, - ['684107290'] = { Name = 'ch1_04b_decalbuild008' }, - ['-2088199119'] = { Name = 'ch1_04b_emissiv' }, - ['1840110615'] = { Name = 'ch1_04b_land_e' }, - ['900133182'] = { Name = 'ch1_04b_landa' }, - ['2047474211'] = { Name = 'ch1_04b_landb' }, - ['818680725'] = { Name = 'ch1_04b_landdcl_01' }, - ['-1539061236'] = { Name = 'ch1_04b_landdecal_lod' }, - ['659672721'] = { Name = 'ch1_04b_landdecal' }, - ['-1304150549'] = { Name = 'ch1_04b_landdecal01' }, - ['-610528332'] = { Name = 'ch1_04b_refproc_ch' }, - ['44953858'] = { Name = 'ch1_04b_refproc' }, - ['1683510404'] = { Name = 'ch1_04b_refprox026_ch' }, - ['-1219049270'] = { Name = 'ch1_04b_refprox036_ch' }, - ['1406750216'] = { Name = 'ch1_04b_refprox037_ch' }, - ['857475009'] = { Name = 'ch1_04b_refprox038_ch' }, - ['-1798191903'] = { Name = 'ch1_04b_refprox039_ch' }, - ['2041392255'] = { Name = 'ch1_04b_rock1' }, - ['1181548787'] = { Name = 'ch1_04b_rocklrg01' }, - ['2000085638'] = { Name = 'ch1_04b_rocklrg02' }, - ['636370934'] = { Name = 'ch1_04b_rocklrg03' }, - ['828790498'] = { Name = 'ch1_04b_rocklrg04' }, - ['79089145'] = { Name = 'ch1_04b_rocksml02' }, - ['-960867839'] = { Name = 'ch1_04b_rocksml03' }, - ['-653789540'] = { Name = 'ch1_04b_rocksml04' }, - ['-1441490658'] = { Name = 'ch1_04b_rocksml05' }, - ['-1210665822'] = { Name = 'ch1_04b_rocksml06' }, - ['1480458114'] = { Name = 'ch1_04b_shop_02axtra' }, - ['1324364699'] = { Name = 'ch1_04b_shop_jgs1' }, - ['1153244981'] = { Name = 'ch1_04b_shop_jgs2' }, - ['1921186496'] = { Name = 'ch1_04b_shop_jgs3' }, - ['-707621490'] = { Name = 'ch1_04b_shop_jgsxtr' }, - ['188637696'] = { Name = 'ch1_04b_shop_jgsxtr02' }, - ['-489402741'] = { Name = 'ch1_04b_shopdet' }, - ['1973243990'] = { Name = 'ch1_04b_shopdet02' }, - ['131094024'] = { Name = 'ch1_04b_vinegrapes__01' }, - ['-158157939'] = { Name = 'ch1_04b_vinegrapes__02' }, - ['-803871188'] = { Name = 'ch1_04b_vinegrapes__03' }, - ['1591444409'] = { Name = 'ch1_04b_vinegrapes__04' }, - ['-1263980717'] = { Name = 'ch1_04b_vinegrapes__05' }, - ['-1083489065'] = { Name = 'ch1_04b_vinegrapes__06' }, - ['393573626'] = { Name = 'ch1_04b_vinegrapes__07' }, - ['-1513680497'] = { Name = 'ch1_04b_vinegrapes__08' }, - ['-69288499'] = { Name = 'ch1_04b_vinegrapes__09' }, - ['-1622932575'] = { Name = 'ch1_04b_vinegrapes__10' }, - ['1186321010'] = { Name = 'ch1_04b_vinegrapes__11' }, - ['1492875005'] = { Name = 'ch1_04b_vinegrapes__12' }, - ['305654135'] = { Name = 'ch1_04b_vinegrapes__13' }, - ['-461763076'] = { Name = 'ch1_04b_vinegrapes__14' }, - ['-1939022369'] = { Name = 'ch1_04b_vinegrapes__15' }, - ['-1915821917'] = { Name = 'ch1_04b_vinegrapes__16' }, - ['721885973'] = { Name = 'ch1_04b_vinegrapes__17' }, - ['1027850126'] = { Name = 'ch1_04b_vinegrapes__18' }, - ['-984461399'] = { Name = 'ch1_04b_vinegrapes__19' }, - ['-155667011'] = { Name = 'ch1_04b_vinegrapes__20' }, - ['-1345476636'] = { Name = 'ch1_04b_vinegrapes__21' }, - ['439188646'] = { Name = 'ch1_04b_vinegrapes__22' }, - ['-749900061'] = { Name = 'ch1_04b_vinegrapes__23' }, - ['-1114422417'] = { Name = 'ch1_04b_vinegrapes__24' }, - ['1993356778'] = { Name = 'ch1_04b_vinegrapes__25' }, - ['1628244580'] = { Name = 'ch1_04b_vinegrapes__26' }, - ['-696126140'] = { Name = 'ch1_04b_vinegrapes__27' }, - ['-1052456246'] = { Name = 'ch1_04b_vinegrapes__28' }, - ['2047261775'] = { Name = 'ch1_04b_vinegrapes__29' }, - ['-866983922'] = { Name = 'ch1_04b_vinegrapes__30' }, - ['-1553953238'] = { Name = 'ch1_04b_vinegrapes__31' }, - ['-1289474639'] = { Name = 'ch1_04b_vinegrapes__32' }, - ['-156650325'] = { Name = 'ch1_04b_vinegrapes__33' }, - ['283240731'] = { Name = 'ch1_04b_vinegrapes__34' }, - ['1514470368'] = { Name = 'ch1_04b_vinegrapes__35' }, - ['-335962293'] = { Name = 'ch1_04b_vinegrapes__36' }, - ['751247589'] = { Name = 'ch1_04b_vinegrapes__37' }, - ['1047905346'] = { Name = 'ch1_04b_vinegrapes__38' }, - ['-1930632913'] = { Name = 'ch1_04b_vinegrapes__39' }, - ['1978622296'] = { Name = 'ch1_04b_vinegrapes__40' }, - ['-1071745611'] = { Name = 'ch1_04b_vinegrapes__41' }, - ['1497802759'] = { Name = 'ch1_04b_vinegrapes__42' }, - ['-899020232'] = { Name = 'ch1_04b_vinegrapes__43' }, - ['821286730'] = { Name = 'ch1_04b_vinegrapes__44' }, - ['1033072777'] = { Name = 'ch1_04b_vinegrapes__45' }, - ['353181565'] = { Name = 'ch1_04b_vinegrapes__46' }, - ['1843768805'] = { Name = 'ch1_04b_vinegrapes_01' }, - ['1624282043'] = { Name = 'ch1_04b_vinegrapes_02' }, - ['-1834780832'] = { Name = 'ch1_04b_vinegrapes_03' }, - ['-2045157812'] = { Name = 'ch1_04b_vinegrapes_04' }, - ['-1744207316'] = { Name = 'ch1_04b_vinegrapes_05' }, - ['-944217719'] = { Name = 'ch1_04b_vinegrapes_06' }, - ['-1134736685'] = { Name = 'ch1_04b_vinegrapes_07' }, - ['-1542840583'] = { Name = 'ch1_04b_vinegrapes_08' }, - ['-1288651450'] = { Name = 'ch1_04b_vinegrapes_09' }, - ['-331895833'] = { Name = 'ch1_04b_vinegrapes_10' }, - ['298776341'] = { Name = 'ch1_04b_vinegrapes_11' }, - ['20403686'] = { Name = 'ch1_04b_vinegrapes_12' }, - ['788410739'] = { Name = 'ch1_04b_vinegrapes_13' }, - ['614145197'] = { Name = 'ch1_04b_vinegrapes_14' }, - ['1381562408'] = { Name = 'ch1_04b_vinegrapes_15' }, - ['910999568'] = { Name = 'ch1_04b_vinegrapes_16' }, - ['1748607973'] = { Name = 'ch1_04b_vinegrapes_17' }, - ['1571065531'] = { Name = 'ch1_04b_vinegrapes_18' }, - ['-1956222402'] = { Name = 'ch1_04b_vinegrapes_19' }, - ['861289227'] = { Name = 'ch1_04b_vinegrapes_20' }, - ['-1989220553'] = { Name = 'ch1_04b_vinegrapes_21' }, - ['1445724338'] = { Name = 'ch1_04b_vinegrapes_22' }, - ['1824075212'] = { Name = 'ch1_04b_vinegrapes_23' }, - ['-1128247847'] = { Name = 'ch1_04b_vinegrapes_24' }, - ['-900404990'] = { Name = 'ch1_04b_vinegrapes_25' }, - ['-1625976188'] = { Name = 'ch1_04b_vinegrapes_26' }, - ['-1259291078'] = { Name = 'ch1_04b_vinegrapes_27' }, - ['2002862892'] = { Name = 'ch1_04b_vinegrapes_28' }, - ['-1917915193'] = { Name = 'ch1_04b_vinegrapes_29' }, - ['-152222878'] = { Name = 'ch1_04b_vinegrapes_30' }, - ['92528783'] = { Name = 'ch1_04b_vinegrapes_31' }, - ['-597389735'] = { Name = 'ch1_04b_vinegrapes_32' }, - ['-424500491'] = { Name = 'ch1_04b_vinegrapes_33' }, - ['-8760188'] = { Name = 'ch1_04b_vinegrapes_34' }, - ['164456746'] = { Name = 'ch1_04b_vinegrapes_35' }, - ['-1587472305'] = { Name = 'ch1_04b_vinegrapes_36' }, - ['-1282753374'] = { Name = 'ch1_04b_vinegrapes_37' }, - ['1765025782'] = { Name = 'ch1_04b_vinegrapes_38' }, - ['-763102572'] = { Name = 'ch1_04b_vinegrapes_39' }, - ['189456305'] = { Name = 'ch1_04b_vinegrapes_40' }, - ['198762701'] = { Name = 'ch1_04b_vinegrapes_41' }, - ['-424208758'] = { Name = 'ch1_04b_vinegrapes_42' }, - ['-111526960'] = { Name = 'ch1_04b_vinegrapes_43' }, - ['808987019'] = { Name = 'ch1_04b_vinegrapes_44' }, - ['1108397372'] = { Name = 'ch1_04b_vinegrapes_45' }, - ['-1951309696'] = { Name = 'ch1_04b_vinegrapes_46' }, - ['230526058'] = { Name = 'ch1_04b_vineland01' }, - ['-244034600'] = { Name = 'ch1_04b_vineland02' }, - ['2031215194'] = { Name = 'ch1_04b_vines_01' }, - ['-1351725290'] = { Name = 'ch1_04b_vines_02' }, - ['-770632613'] = { Name = 'ch1_04b_vines_04' }, - ['-1068928820'] = { Name = 'ch1_04b_vines_05' }, - ['-160178912'] = { Name = 'ch1_04b_vines_06' }, - ['-455525909'] = { Name = 'ch1_04b_vines_07' }, - ['-236104689'] = { Name = 'ch1_04b_vines_08' }, - ['-532565832'] = { Name = 'ch1_04b_vines_09' }, - ['-1635374042'] = { Name = 'ch1_04b_vines_10' }, - ['-1371747437'] = { Name = 'ch1_04b_vines_11' }, - ['-1785849294'] = { Name = 'ch1_04b_vines_12' }, - ['-1546897746'] = { Name = 'ch1_04b_vines_13' }, - ['1800553919'] = { Name = 'ch1_04b_vines_14' }, - ['2031345986'] = { Name = 'ch1_04b_vines_15' }, - ['1294240100'] = { Name = 'ch1_04b_vines_16' }, - ['1525589240'] = { Name = 'ch1_04b_vines_17' }, - ['568603364'] = { Name = 'ch1_04b_vines_18' }, - ['1076195174'] = { Name = 'ch1_04b_vines_19' }, - ['-651540059'] = { Name = 'ch1_04b_vines_20' }, - ['-1100475359'] = { Name = 'ch1_04b_vines_21' }, - ['2072809067'] = { Name = 'ch1_04b_vines_22' }, - ['-371856644'] = { Name = 'ch1_04b_vines_23' }, - ['879132712'] = { Name = 'ch1_04b_vines_24' }, - ['-1408864414'] = { Name = 'ch1_04b_vines_25' }, - ['1616992285'] = { Name = 'ch1_04b_vines_26' }, - ['1191650665'] = { Name = 'ch1_04b_vines_27' }, - ['-15919754'] = { Name = 'ch1_04b_vines_28' }, - ['1831694773'] = { Name = 'ch1_04b_vines_29' }, - ['-1777025045'] = { Name = 'ch1_04b_vines_30' }, - ['-2082858122'] = { Name = 'ch1_04b_vines_31' }, - ['980551851'] = { Name = 'ch1_04b_vines_32' }, - ['1747739679'] = { Name = 'ch1_04b_vines_33' }, - ['518869410'] = { Name = 'ch1_04b_vines_34' }, - ['1286516004'] = { Name = 'ch1_04b_vines_35' }, - ['530862860'] = { Name = 'ch1_04b_vines_36' }, - ['1308340154'] = { Name = 'ch1_04b_vines_37' }, - ['52009463'] = { Name = 'ch1_04b_vines_38' }, - ['828896915'] = { Name = 'ch1_04b_vines_39' }, - ['851345176'] = { Name = 'ch1_04b_vines_40' }, - ['-1133735314'] = { Name = 'ch1_04b_vines_41' }, - ['-163281371'] = { Name = 'ch1_04b_vines_42' }, - ['100476310'] = { Name = 'ch1_04b_vines_43' }, - ['1465108546'] = { Name = 'ch1_04b_vines_44' }, - ['1771138237'] = { Name = 'ch1_04b_vines_45' }, - ['1022366587'] = { Name = 'ch1_04b_vines_46' }, - ['1325578144'] = { Name = 'ch1_04b_vines_47' }, - ['-710911980'] = { Name = 'ch1_04b_vineslmbs_01' }, - ['450683532'] = { Name = 'ch1_04b_vineslmbs_02' }, - ['-107765766'] = { Name = 'ch1_04b_vineslmbs_03' }, - ['-1943747302'] = { Name = 'ch1_04b_vineslmbs_04' }, - ['-1705287289'] = { Name = 'ch1_04b_vineslmbs_05' }, - ['-1344500595'] = { Name = 'ch1_04b_vineslmbs_06' }, - ['-1114232832'] = { Name = 'ch1_04b_vineslmbs_07' }, - ['1439815797'] = { Name = 'ch1_04b_vineslmbs_08' }, - ['1670640633'] = { Name = 'ch1_04b_vineslmbs_09' }, - ['1075981838'] = { Name = 'ch1_04b_vineslmbs_10' }, - ['241519257'] = { Name = 'ch1_04b_vineslmbs_11' }, - ['1705408790'] = { Name = 'ch1_04b_vineslmbs_12' }, - ['842076716'] = { Name = 'ch1_04b_vineslmbs_13' }, - ['-86891661'] = { Name = 'ch1_04b_vineslmbs_14' }, - ['-396231021'] = { Name = 'ch1_04b_vineslmbs_15' }, - ['489482280'] = { Name = 'ch1_04b_vineslmbs_16' }, - ['-317356038'] = { Name = 'ch1_04b_vineslmbs_17' }, - ['-452298740'] = { Name = 'ch1_04b_vineslmbs_18' }, - ['-1285483334'] = { Name = 'ch1_04b_vineslmbs_19' }, - ['251218053'] = { Name = 'ch1_04b_vineslmbs_20' }, - ['-1046073888'] = { Name = 'ch1_04b_vineslmbs_21' }, - ['66237048'] = { Name = 'ch1_04b_vineslmbs_22' }, - ['-165079323'] = { Name = 'ch1_04b_vineslmbs_23' }, - ['-738504054'] = { Name = 'ch1_04b_vineslmbs_24' }, - ['-2049493441'] = { Name = 'ch1_04b_vineslmbs_25' }, - ['-1199662191'] = { Name = 'ch1_04b_vineslmbs_26' }, - ['-364871916'] = { Name = 'ch1_04b_vineslmbs_27' }, - ['1094167809'] = { Name = 'ch1_04b_vineslmbs_28' }, - ['721256589'] = { Name = 'ch1_04b_vineslmbs_29' }, - ['-75783462'] = { Name = 'ch1_04b_vineslmbs_30' }, - ['156843669'] = { Name = 'ch1_04b_vineslmbs_31' }, - ['1519182087'] = { Name = 'ch1_04b_vineslmbs_32' }, - ['750847344'] = { Name = 'ch1_04b_vineslmbs_33' }, - ['-1366685448'] = { Name = 'ch1_04b_vineslmbs_34' }, - ['-1013042400'] = { Name = 'ch1_04b_vineslmbs_35' }, - ['366565269'] = { Name = 'ch1_04b_vineslmbs_36' }, - ['656701995'] = { Name = 'ch1_04b_vineslmbs_37' }, - ['1042229304'] = { Name = 'ch1_04b_vineslmbs_38' }, - ['754451946'] = { Name = 'ch1_04b_vineslmbs_39' }, - ['-18075817'] = { Name = 'ch1_04b_vineslmbs_40' }, - ['-407502613'] = { Name = 'ch1_04b_vineslmbs_41' }, - ['-617060368'] = { Name = 'ch1_04b_vineslmbs_42' }, - ['-730899874'] = { Name = 'ch1_04b_vineslmbs_43' }, - ['1389975332'] = { Name = 'ch1_04b_vineslmbs_44' }, - ['749341382'] = { Name = 'ch1_04b_vineslmbs_45' }, - ['514027205'] = { Name = 'ch1_04b_vineslmbs_46' }, - ['-593814746'] = { Name = 'ch1_04b_vineslod_01' }, - ['-822247453'] = { Name = 'ch1_04b_vineslod_02' }, - ['1942338968'] = { Name = 'ch1_04b_vinetrck_01' }, - ['492179642'] = { Name = 'ch1_04b_vinetrck_02' }, - ['-791115731'] = { Name = 'ch1_04b_water_pool_slod' }, - ['-1311186087'] = { Name = 'ch1_04b_water_pool' }, - ['593597437'] = { Name = 'ch1_04b_water01' }, - ['1056164589'] = { Name = 'ch1_04b_water02' }, - ['1360883520'] = { Name = 'ch1_04b_water03' }, - ['-1765255028'] = { Name = 'ch1_04b_wetlands_tmp6' }, - ['1460059961'] = { Name = 'ch1_04b_wetlands01' }, - ['1153112738'] = { Name = 'ch1_04b_wetlands02' }, - ['-650427488'] = { Name = 'ch1_04b_wetlands03' }, - ['976258698'] = { Name = 'ch1_05_actcen_fen' }, - ['1810781472'] = { Name = 'ch1_05_actcen_rope' }, - ['1730087529'] = { Name = 'ch1_05_actcen_slats' }, - ['-327498539'] = { Name = 'ch1_05_activcen_raila' }, - ['-1709141'] = { Name = 'ch1_05_activcen_railb' }, - ['-13224864'] = { Name = 'ch1_05_activcen' }, - ['-844065962'] = { Name = 'ch1_05_activcendtls' }, - ['1653345322'] = { Name = 'ch1_05_activcensign01_lod' }, - ['935153596'] = { Name = 'ch1_05_activcensign01' }, - ['-908544694'] = { Name = 'ch1_05_activcensign02_lod' }, - ['536551480'] = { Name = 'ch1_05_activcensign02' }, - ['-285935839'] = { Name = 'ch1_05_atcn_suprt' }, - ['-2088094434'] = { Name = 'ch1_05_bd01a' }, - ['-1624314777'] = { Name = 'ch1_05_bd01c' }, - ['-916373301'] = { Name = 'ch1_05_bd01d' }, - ['-1038597159'] = { Name = 'ch1_05_cave_dec' }, - ['-1484538330'] = { Name = 'ch1_05_creek_006' }, - ['116915445'] = { Name = 'ch1_05_creek_007' }, - ['-381501045'] = { Name = 'ch1_05_creek_008' }, - ['585544914'] = { Name = 'ch1_05_creek_009' }, - ['-1383740026'] = { Name = 'ch1_05_creek_010' }, - ['2080992177'] = { Name = 'ch1_05_creekrcks_006' }, - ['1838014987'] = { Name = 'ch1_05_crkwater_1001' }, - ['837216926'] = { Name = 'ch1_05_crkwater_1005' }, - ['539019026'] = { Name = 'ch1_05_crkwater_1006' }, - ['-2121709205'] = { Name = 'ch1_05_crkwater_top' }, - ['-929723431'] = { Name = 'ch1_05_d00' }, - ['-95457460'] = { Name = 'ch1_05_d01' }, - ['1138197079'] = { Name = 'ch1_05_d03' }, - ['1981048528'] = { Name = 'ch1_05_d04' }, - ['1867733326'] = { Name = 'ch1_05_d05' }, - ['-1922951829'] = { Name = 'ch1_05_d08' }, - ['-1474213143'] = { Name = 'ch1_05_d09' }, - ['59539614'] = { Name = 'ch1_05_d10' }, - ['-1741247976'] = { Name = 'ch1_05_d15' }, - ['-1910139402'] = { Name = 'ch1_05_d16' }, - ['244324045'] = { Name = 'ch1_05_d17' }, - ['2083942936'] = { Name = 'ch1_05_d18' }, - ['1868257378'] = { Name = 'ch1_05_d19' }, - ['-648237077'] = { Name = 'ch1_05_d21' }, - ['-1178308421'] = { Name = 'ch1_05_d22' }, - ['-1901979057'] = { Name = 'ch1_05_d23' }, - ['-1838276121'] = { Name = 'ch1_05_d24' }, - ['-1424829648'] = { Name = 'ch1_05_d25' }, - ['-1127582049'] = { Name = 'ch1_05_d26' }, - ['1167493177'] = { Name = 'ch1_05_d27' }, - ['1480535434'] = { Name = 'ch1_05_d28' }, - ['1639006318'] = { Name = 'ch1_05_d29' }, - ['1785437879'] = { Name = 'ch1_05_d44' }, - ['-1147977467'] = { Name = 'ch1_05_d45' }, - ['-1388600234'] = { Name = 'ch1_05_d46' }, - ['794863774'] = { Name = 'ch1_05_d47' }, - ['994731483'] = { Name = 'ch1_05_d47a' }, - ['-1762920521'] = { Name = 'ch1_05_d49' }, - ['864740674'] = { Name = 'ch1_05_d50' }, - ['1877990923'] = { Name = 'ch1_05_d52' }, - ['481474450'] = { Name = 'ch1_05_d56' }, - ['-1283824349'] = { Name = 'ch1_05_d57' }, - ['-1522513745'] = { Name = 'ch1_05_d58' }, - ['-268542422'] = { Name = 'ch1_05_d59' }, - ['1352359959'] = { Name = 'ch1_05_dd10t001' }, - ['859803400'] = { Name = 'ch1_05_decal_00' }, - ['-2050968563'] = { Name = 'ch1_05_decal_02' }, - ['640710730'] = { Name = 'ch1_05_decal_13' }, - ['-154494593'] = { Name = 'ch1_05_decal_14' }, - ['148979116'] = { Name = 'ch1_05_decal_15' }, - ['1543168990'] = { Name = 'ch1_05_decal_16' }, - ['761267881'] = { Name = 'ch1_05_decal_17' }, - ['652016031'] = { Name = 'ch1_05_decal_18' }, - ['-122479284'] = { Name = 'ch1_05_decal_19' }, - ['-1290727183'] = { Name = 'ch1_05_decal_20' }, - ['-993086356'] = { Name = 'ch1_05_decal_21' }, - ['390748510'] = { Name = 'ch1_05_decal_22' }, - ['470508256'] = { Name = 'ch1_05_decal_23' }, - ['1346620240'] = { Name = 'ch1_05_decal_26' }, - ['1628073181'] = { Name = 'ch1_05_decal_27' }, - ['1541235335'] = { Name = 'ch1_05_decal_28' }, - ['765101570'] = { Name = 'ch1_05_decal_29' }, - ['-1553503526'] = { Name = 'ch1_05_decal_31' }, - ['-656681534'] = { Name = 'ch1_05_decal_34' }, - ['162839862'] = { Name = 'ch1_05_decal_34c' }, - ['594081602'] = { Name = 'ch1_05_dirttrack002' }, - ['-2034915886'] = { Name = 'ch1_05_gbdec_00' }, - ['-269584318'] = { Name = 'ch1_05_gbdec_01' }, - ['1932132027'] = { Name = 'ch1_05_gbdec_02' }, - ['1582355721'] = { Name = 'ch1_05_gbdec_03' }, - ['1326593676'] = { Name = 'ch1_05_gbdec_04' }, - ['956566128'] = { Name = 'ch1_05_gbdec_05' }, - ['1398070564'] = { Name = 'ch1_05_glue_rocks' }, - ['198600754'] = { Name = 'ch1_05_l1297' }, - ['-70639047'] = { Name = 'ch1_05_land_004' }, - ['-1305496067'] = { Name = 'ch1_05_land1' }, - ['1645273000'] = { Name = 'ch1_05_land10' }, - ['1868429890'] = { Name = 'ch1_05_land11' }, - ['1167894208'] = { Name = 'ch1_05_land12' }, - ['-2012749394'] = { Name = 'ch1_05_land2' }, - ['-1715895027'] = { Name = 'ch1_05_land3' }, - ['1805199569'] = { Name = 'ch1_05_land4' }, - ['2103692390'] = { Name = 'ch1_05_land5' }, - ['1532364875'] = { Name = 'ch1_05_land7' }, - ['-1903823016'] = { Name = 'ch1_05_nd_00' }, - ['2092258231'] = { Name = 'ch1_05_nd_01' }, - ['-751140668'] = { Name = 'ch1_05_nd_02' }, - ['153873574'] = { Name = 'ch1_05_nd_03' }, - ['1332738349'] = { Name = 'ch1_05_nd_04' }, - ['-440982083'] = { Name = 'ch1_05_nd_05' }, - ['-1672408334'] = { Name = 'ch1_05_nd_06' }, - ['-876285479'] = { Name = 'ch1_05_nd_07' }, - ['-122926169'] = { Name = 'ch1_05_nd_08' }, - ['-1371949373'] = { Name = 'ch1_05_nd_09' }, - ['647342297'] = { Name = 'ch1_05_nd_10' }, - ['407571524'] = { Name = 'ch1_05_nd_11' }, - ['-1846378607'] = { Name = 'ch1_05_nd_12' }, - ['2076201773'] = { Name = 'ch1_05_nd_13' }, - ['-445733236'] = { Name = 'ch1_05_nd_14' }, - ['255326750'] = { Name = 'ch1_05_nd_15' }, - ['1214049383'] = { Name = 'ch1_05_nd_16' }, - ['850837787'] = { Name = 'ch1_05_nd_17' }, - ['-1681714378'] = { Name = 'ch1_05_nd_18' }, - ['-964663120'] = { Name = 'ch1_05_nd_19' }, - ['1299739390'] = { Name = 'ch1_05_nd_20' }, - ['-548464979'] = { Name = 'ch1_05_nd_21' }, - ['290509609'] = { Name = 'ch1_05_newrsd_00' }, - ['549417478'] = { Name = 'ch1_05_newrsd_01' }, - ['856561315'] = { Name = 'ch1_05_newrsd_02' }, - ['-1764693127'] = { Name = 'ch1_05_newrsd_04c' }, - ['1997577891'] = { Name = 'ch1_05_newrsd_09' }, - ['1397271671'] = { Name = 'ch1_05_newrsd_14c' }, - ['1033054933'] = { Name = 'ch1_05_newrsd_16' }, - ['432497470'] = { Name = 'ch1_05_newrsd_18' }, - ['186238435'] = { Name = 'ch1_05_newrsd_19' }, - ['2131623274'] = { Name = 'ch1_05_newrsd_20' }, - ['1840863937'] = { Name = 'ch1_05_newrsd_21' }, - ['1110737848'] = { Name = 'ch1_05_newrsd_23' }, - ['937848604'] = { Name = 'ch1_05_newrsd_24' }, - ['102239104'] = { Name = 'ch1_05_newrsd_25' }, - ['-330770462'] = { Name = 'ch1_05_newrsd_26' }, - ['-827056967'] = { Name = 'ch1_05_newrsd_28' }, - ['-1269307051'] = { Name = 'ch1_05_newrsd_33' }, - ['725407517'] = { Name = 'ch1_05_newrsd_34' }, - ['426914696'] = { Name = 'ch1_05_newrsd_35' }, - ['213268811'] = { Name = 'ch1_05_roadd_01c' }, - ['-197676453'] = { Name = 'ch1_05_rocks_010' }, - ['-434498016'] = { Name = 'ch1_05_rocks_011' }, - ['882132333'] = { Name = 'ch1_05_small_rocks' }, - ['1165541107'] = { Name = 'ch1_05_small_rocksb' }, - ['817796479'] = { Name = 'ch1_05_small_rocksc' }, - ['1403564505'] = { Name = 'ch1_05_stdec_00' }, - ['1657622562'] = { Name = 'ch1_05_stdec_01' }, - ['2041282014'] = { Name = 'ch1_05_stdec_02' }, - ['794913095'] = { Name = 'ch1_05_stdec_03' }, - ['711896776'] = { Name = 'ch1_05_vine_slod' }, - ['1881883116'] = { Name = 'ch1_05_vinegrapes_01' }, - ['-1192733851'] = { Name = 'ch1_05_vinegrapes_02' }, - ['-1364836639'] = { Name = 'ch1_05_vinegrapes_03' }, - ['-448648156'] = { Name = 'ch1_05_vinegrapes_04' }, - ['-267894352'] = { Name = 'ch1_05_vinegrapes_05' }, - ['30401855'] = { Name = 'ch1_05_vinegrapes_06' }, - ['777993821'] = { Name = 'ch1_05_vinegrapes_07' }, - ['956322719'] = { Name = 'ch1_05_vinegrapes_08' }, - ['1253177090'] = { Name = 'ch1_05_vinegrapes_09' }, - ['11332893'] = { Name = 'ch1_05_vinegrapes_10' }, - ['-288405150'] = { Name = 'ch1_05_vinegrapes_11' }, - ['-1673878474'] = { Name = 'ch1_05_vinegrapes_12' }, - ['-1906374529'] = { Name = 'ch1_05_vinegrapes_13' }, - ['-1734107868'] = { Name = 'ch1_05_vinegrapes_14' }, - ['-958170717'] = { Name = 'ch1_05_vinegrapes_15' }, - ['-1270786977'] = { Name = 'ch1_05_vinegrapes_16' }, - ['1651978444'] = { Name = 'ch1_05_vinegrapes_17' }, - ['1371148114'] = { Name = 'ch1_05_vinegrapes_18' }, - ['2147216341'] = { Name = 'ch1_05_vinegrapes_19' }, - ['-400639775'] = { Name = 'ch1_05_vinegrapes_20' }, - ['-103785404'] = { Name = 'ch1_05_vinegrapes_21' }, - ['72446278'] = { Name = 'ch1_05_vinegrapes_22' }, - ['-1768876605'] = { Name = 'ch1_05_vinegrapes_23' }, - ['-401127089'] = { Name = 'ch1_05_vines_01' }, - ['496874587'] = { Name = 'ch1_05_vines_02' }, - ['223548358'] = { Name = 'ch1_05_vines_03' }, - ['1111653796'] = { Name = 'ch1_05_vines_04' }, - ['805099801'] = { Name = 'ch1_05_vines_05' }, - ['1788792416'] = { Name = 'ch1_05_vines_06' }, - ['1491675893'] = { Name = 'ch1_05_vines_07' }, - ['466530497'] = { Name = 'ch1_05_vines_08' }, - ['2048421203'] = { Name = 'ch1_05_vines_09' }, - ['-1255087545'] = { Name = 'ch1_05_vines_10' }, - ['-1527692856'] = { Name = 'ch1_05_vines_11' }, - ['-1849025670'] = { Name = 'ch1_05_vines_12' }, - ['-14551512'] = { Name = 'ch1_05_vines_13' }, - ['1517923546'] = { Name = 'ch1_05_vines_14' }, - ['1211566165'] = { Name = 'ch1_05_vines_15' }, - ['-1229724335'] = { Name = 'ch1_05_vines_16' }, - ['-1529593454'] = { Name = 'ch1_05_vines_17' }, - ['590757460'] = { Name = 'ch1_05_vines_18' }, - ['316775851'] = { Name = 'ch1_05_vines_19' }, - ['-528107544'] = { Name = 'ch1_05_vines_20' }, - ['-256386996'] = { Name = 'ch1_05_vines_21' }, - ['1911184043'] = { Name = 'ch1_05_vines_22' }, - ['-2128611050'] = { Name = 'ch1_05_vines_23' }, - ['1357265228'] = { Name = 'ch1_05_vinesleaf_01' }, - ['1847981003'] = { Name = 'ch1_05_vinesleaf_03' }, - ['1668013655'] = { Name = 'ch1_05_vinesleaf_04' }, - ['-88699674'] = { Name = 'ch1_05_vinesleaf_05' }, - ['1607751460'] = { Name = 'ch1_05_vinesleaf_06' }, - ['386942361'] = { Name = 'ch1_05_vinesleaf_07' }, - ['71933964'] = { Name = 'ch1_05_vinesleaf_08' }, - ['-1012195632'] = { Name = 'ch1_05_vinesleaf_09' }, - ['-380737290'] = { Name = 'ch1_05_vinesleaf_10' }, - ['-1304986931'] = { Name = 'ch1_05_vinesleaf_11' }, - ['-2052120131'] = { Name = 'ch1_05_vinesleaf_12' }, - ['1321415654'] = { Name = 'ch1_05_vinesleaf_13' }, - ['1127357636'] = { Name = 'ch1_05_vinesleaf_14' }, - ['1781131955'] = { Name = 'ch1_05_vinesleaf_15' }, - ['1623185375'] = { Name = 'ch1_05_vinesleaf_16' }, - ['1701994816'] = { Name = 'ch1_05_vinesleaf_17' }, - ['1445446315'] = { Name = 'ch1_05_vinesleaf_18' }, - ['551835681'] = { Name = 'ch1_05_vinesleaf_19' }, - ['-414816210'] = { Name = 'ch1_05_vinesleaf_20' }, - ['-490414265'] = { Name = 'ch1_05_vinesleaf_21' }, - ['-242320166'] = { Name = 'ch1_05_vinesleaf_22' }, - ['642967138'] = { Name = 'ch1_05_vinesleaf_23' }, - ['-788448320'] = { Name = 'ch1_05_vinesleaf_24' }, - ['142355125'] = { Name = 'ch1_05_vinesleaf_25' }, - ['438947344'] = { Name = 'ch1_05_vinesleaf_26' }, - ['1800171580'] = { Name = 'ch1_05_vinesleaf_27' }, - ['-38398679'] = { Name = 'ch1_05_vinesleaf_28' }, - ['1535725806'] = { Name = 'ch1_05_vinesleaf_29' }, - ['1248308587'] = { Name = 'ch1_05_vinesleaf_30' }, - ['949815766'] = { Name = 'ch1_05_vinesleaf_31' }, - ['-1646013342'] = { Name = 'ch1_05_vinesleaf_32' }, - ['-1349224513'] = { Name = 'ch1_05_vinesleaf_33' }, - ['-1656958192'] = { Name = 'ch1_05_vinesleaf_34' }, - ['-1826177308'] = { Name = 'ch1_05_vinesleaf_35' }, - ['-2135418361'] = { Name = 'ch1_05_vinesleaf_36' }, - ['-456269263'] = { Name = 'ch1_05_vinesleaf_37' }, - ['-727957042'] = { Name = 'ch1_05_vinesleaf_38' }, - ['-900059830'] = { Name = 'ch1_05_vinesleaf_39' }, - ['53617265'] = { Name = 'ch1_05_vinesleaf_40' }, - ['-214400386'] = { Name = 'ch1_05_vinesleaf_41' }, - ['552590828'] = { Name = 'ch1_05_vinesleaf_42' }, - ['1433781983'] = { Name = 'ch1_05_vinesleaf_43' }, - ['1740106595'] = { Name = 'ch1_05_vinesleaf_44' }, - ['1280193708'] = { Name = 'ch1_05_vinesleaf_45' }, - ['974164017'] = { Name = 'ch1_05_vinesleaf_46' }, - ['1736239881'] = { Name = 'ch1_05_vinesleaf_47' }, - ['-1900978659'] = { Name = 'ch1_05_vineslmb_01' }, - ['-1737789039'] = { Name = 'ch1_05_vineslmb_02' }, - ['937767058'] = { Name = 'ch1_05_vineslmb_03' }, - ['1445227792'] = { Name = 'ch1_05_vineslmb_04' }, - ['1736052667'] = { Name = 'ch1_05_vineslmb_05' }, - ['1907368999'] = { Name = 'ch1_05_vineslmb_06' }, - ['-261512820'] = { Name = 'ch1_05_vineslmb_07' }, - ['35669241'] = { Name = 'ch1_05_vineslmb_08' }, - ['484211313'] = { Name = 'ch1_05_vineslmb_09' }, - ['855713750'] = { Name = 'ch1_05_vineslmb_10' }, - ['1573944692'] = { Name = 'ch1_05_vineslmb_11' }, - ['1852972727'] = { Name = 'ch1_05_vineslmb_12' }, - ['189978742'] = { Name = 'ch1_05_vineslmb_13' }, - ['429651208'] = { Name = 'ch1_05_vineslmb_14' }, - ['685675421'] = { Name = 'ch1_05_vineslmb_15' }, - ['892775501'] = { Name = 'ch1_05_vineslmb_16' }, - ['-1226756204'] = { Name = 'ch1_05_vineslmb_17' }, - ['-995046605'] = { Name = 'ch1_05_vineslmb_18' }, - ['-808525457'] = { Name = 'ch1_05_vineslmb_19' }, - ['-284876533'] = { Name = 'ch1_05_vineslmb_20' }, - ['80104589'] = { Name = 'ch1_05_vineslmb_21' }, - ['310896656'] = { Name = 'ch1_05_vineslmb_22' }, - ['-1435297816'] = { Name = 'ch1_05_vineslmb_23' }, - ['982100547'] = { Name = 'ch1_05_vinetrck_002' }, - ['-1152647489'] = { Name = 'ch1_05_water_01old' }, - ['-981106295'] = { Name = 'ch1_05_water_02' }, - ['525120790'] = { Name = 'ch1_05_water_03' }, - ['817616884'] = { Name = 'ch1_05_water_04' }, - ['1827794303'] = { Name = 'ch1_05_water_05_lod' }, - ['-2076410120'] = { Name = 'ch1_05_water_05' }, - ['575761854'] = { Name = 'ch1_05b_bdec_00' }, - ['267569409'] = { Name = 'ch1_05b_bdec_01' }, - ['-655303942'] = { Name = 'ch1_05b_bdec_02' }, - ['-957106432'] = { Name = 'ch1_05b_bdec_03' }, - ['1832551311'] = { Name = 'ch1_05b_bdec_04' }, - ['-374244229'] = { Name = 'ch1_05b_bdec_05' }, - ['-1881323308'] = { Name = 'ch1_05b_bdec_06' }, - ['1144992157'] = { Name = 'ch1_05b_bdec_08' }, - ['881431090'] = { Name = 'ch1_05b_bdec_09' }, - ['-1084544805'] = { Name = 'ch1_05b_bdec_10' }, - ['-1324839882'] = { Name = 'ch1_05b_bdec_11' }, - ['485123068'] = { Name = 'ch1_05b_bdec_12' }, - ['218940481'] = { Name = 'ch1_05b_bdec_13' }, - ['-2009089371'] = { Name = 'ch1_05b_bdec_14' }, - ['2055806776'] = { Name = 'ch1_05b_bdec_15' }, - ['-440207958'] = { Name = 'ch1_05b_bdec_16' }, - ['-702982569'] = { Name = 'ch1_05b_bdec_17' }, - ['850268023'] = { Name = 'ch1_05b_bdec_18' }, - ['1684239073'] = { Name = 'ch1_05b_bdec_19' }, - ['-1394703166'] = { Name = 'ch1_05b_bdec_21' }, - ['667843236'] = { Name = 'ch1_05b_bdec_22' }, - ['425844171'] = { Name = 'ch1_05b_bdec_23' }, - ['1980405531'] = { Name = 'ch1_05b_bdec_24' }, - ['-1478886727'] = { Name = 'ch1_05b_bdec_25' }, - ['-558438286'] = { Name = 'ch1_05b_bdec_26' }, - ['734593805'] = { Name = 'ch1_05b_bdec_28' }, - ['1643016023'] = { Name = 'ch1_05b_bdec_29' }, - ['-102850527'] = { Name = 'ch1_05b_bdec_30' }, - ['-775794715'] = { Name = 'ch1_05b_bdec_31' }, - ['395074428'] = { Name = 'ch1_05b_bdec_32' }, - ['-314243346'] = { Name = 'ch1_05b_bdec_33' }, - ['-984926473'] = { Name = 'ch1_05b_bdec_34' }, - ['-1829219758'] = { Name = 'ch1_05b_bdec_35' }, - ['-563680978'] = { Name = 'ch1_05b_bdec_36' }, - ['-1272212296'] = { Name = 'ch1_05b_bdec_37' }, - ['1340525620'] = { Name = 'ch1_05b_bdec_38' }, - ['-142669653'] = { Name = 'ch1_05b_bdec_38z' }, - ['1604938681'] = { Name = 'ch1_05b_bdec_39' }, - ['-2097070856'] = { Name = 'ch1_05b_bdec_40' }, - ['-2009905316'] = { Name = 'ch1_05b_bdec_41' }, - ['2039135481'] = { Name = 'ch1_05b_culvert_dcl' }, - ['-1514655736'] = { Name = 'ch1_05b_land01' }, - ['-542694427'] = { Name = 'ch1_05b_land02' }, - ['-714535063'] = { Name = 'ch1_05b_land03' }, - ['1257994892'] = { Name = 'ch1_05b_land04' }, - ['817251842'] = { Name = 'ch1_05b_land05' }, - ['632991755'] = { Name = 'ch1_05b_land06' }, - ['479239607'] = { Name = 'ch1_05b_land07' }, - ['1972031398'] = { Name = 'ch1_05b_land08' }, - ['1454443264'] = { Name = 'ch1_05b_land09_lod' }, - ['591964963'] = { Name = 'ch1_05b_land09' }, - ['141548801'] = { Name = 'ch1_05b_pipeculvert' }, - ['1659629020'] = { Name = 'ch1_05b_rocks_005' }, - ['-1650129452'] = { Name = 'ch1_05b_sdec_05' }, - ['-1027911680'] = { Name = 'ch1_05b_sdec_07' }, - ['1969239383'] = { Name = 'ch1_05b_sdec_08' }, - ['-1677440053'] = { Name = 'ch1_05b_water_01' }, - ['-1380389068'] = { Name = 'ch1_05b_water_02' }, - ['2087128209'] = { Name = 'ch1_05b_water_03' }, - ['-975561576'] = { Name = 'ch1_06__r_hedge_dec_1' }, - ['-1382939478'] = { Name = 'ch1_06__r_hedge_dec_10' }, - ['1233075334'] = { Name = 'ch1_06__r_hedge_dec_11' }, - ['1522917139'] = { Name = 'ch1_06__r_hedge_dec_12' }, - ['1687483057'] = { Name = 'ch1_06__r_hedge_dec_13' }, - ['-147875868'] = { Name = 'ch1_06__r_hedge_dec_14' }, - ['-1468603954'] = { Name = 'ch1_06__r_hedge_dec_2' }, - ['1187913354'] = { Name = 'ch1_06__r_hedge_dec_3' }, - ['707060956'] = { Name = 'ch1_06__r_hedge_dec_4' }, - ['399130663'] = { Name = 'ch1_06__r_hedge_dec_5' }, - ['158835586'] = { Name = 'ch1_06__r_hedge_dec_6' }, - ['-12284132'] = { Name = 'ch1_06__r_hedge_dec_7' }, - ['-320148887'] = { Name = 'ch1_06__r_hedge_dec_8' }, - ['-762792539'] = { Name = 'ch1_06__r_hedge_dec_9' }, - ['-82250298'] = { Name = 'ch1_06_01_em_lod' }, - ['1004619078'] = { Name = 'ch1_06_01_em' }, - ['-1265602907'] = { Name = 'ch1_06_01' }, - ['-470880964'] = { Name = 'ch1_06_04_em_lod' }, - ['-1622639020'] = { Name = 'ch1_06_04_em' }, - ['1291657088'] = { Name = 'ch1_06_04' }, - ['781017273'] = { Name = 'ch1_06_12_em_lod' }, - ['258259732'] = { Name = 'ch1_06_12_em' }, - ['-465809568'] = { Name = 'ch1_06_12' }, - ['823141127'] = { Name = 'ch1_06_balcony' }, - ['-767257825'] = { Name = 'ch1_06_balconyb' }, - ['785926531'] = { Name = 'ch1_06_blackrail1' }, - ['-149267960'] = { Name = 'ch1_06_blackrail2' }, - ['-250590737'] = { Name = 'ch1_06_dec_00' }, - ['-564779909'] = { Name = 'ch1_06_dec_01' }, - ['-866090864'] = { Name = 'ch1_06_dec_02' }, - ['-875331722'] = { Name = 'ch1_06_dec_03' }, - ['-1174086695'] = { Name = 'ch1_06_dec_04' }, - ['-1489062323'] = { Name = 'ch1_06_dec_05' }, - ['-1785261314'] = { Name = 'ch1_06_dec_06' }, - ['344363223'] = { Name = 'ch1_06_dec_07' }, - ['-2097844813'] = { Name = 'ch1_06_dec_08' }, - ['1914358782'] = { Name = 'ch1_06_dec_09' }, - ['1380619228'] = { Name = 'ch1_06_gatefizz' }, - ['-694082153'] = { Name = 'ch1_06_land' }, - ['-368536216'] = { Name = 'ch1_06_poolwtr_01' }, - ['262873764'] = { Name = 'ch1_06_res1_decal_01' }, - ['1613657340'] = { Name = 'ch1_06_res1_em_lod' }, - ['-2003242056'] = { Name = 'ch1_06_res1_em' }, - ['1378184681'] = { Name = 'ch1_06_res1' }, - ['-615911326'] = { Name = 'ch1_06_res2_decheg_01' }, - ['-2081046085'] = { Name = 'ch1_06_res2_decheg_02' }, - ['1975461198'] = { Name = 'ch1_06_res2_decheg_03' }, - ['1111146038'] = { Name = 'ch1_06_res2_decheg_04' }, - ['-1807588780'] = { Name = 'ch1_06_res2_decheg_05' }, - ['-1304912276'] = { Name = 'ch1_06_res2_decheg_06' }, - ['-812787434'] = { Name = 'ch1_06_res2_decheg_08' }, - ['-370207447'] = { Name = 'ch1_06_res2_hedgedec_01' }, - ['-627607942'] = { Name = 'ch1_06_res2_hedgedec_02' }, - ['-1237439032'] = { Name = 'ch1_06_res2_hedgedec_03' }, - ['-1610809018'] = { Name = 'ch1_06_res2_hedgedec_04' }, - ['532316351'] = { Name = 'ch1_06_res2_hedgedec_05' }, - ['293921876'] = { Name = 'ch1_06_res2_hedgedec_06' }, - ['209181242'] = { Name = 'ch1_06_res2_hedgedec_07' }, - ['-14598259'] = { Name = 'ch1_06_res2_hedgedec_08' }, - ['1681689026'] = { Name = 'ch1_06_res2_hedgedec_09' }, - ['-2066665856'] = { Name = 'ch1_06_res4_deched_01' }, - ['-1509199628'] = { Name = 'ch1_06_res4_deched_02' }, - ['-1721903207'] = { Name = 'ch1_06_res4_deched_03' }, - ['476568995'] = { Name = 'ch1_06_res4_deched_04' }, - ['-1106501387'] = { Name = 'ch1_06_res4_deched_05' }, - ['-1359707450'] = { Name = 'ch1_06_res4_deched_06' }, - ['-524589485'] = { Name = 'ch1_06_res4_deched_07' }, - ['1703112665'] = { Name = 'ch1_06_res4_deched_08' }, - ['112439867'] = { Name = 'ch1_06_res4_deched_09' }, - ['-1430029948'] = { Name = 'ch1_06_res4_deched_10' }, - ['-2132335728'] = { Name = 'ch1_06_res4_em_lod' }, - ['-1283147563'] = { Name = 'ch1_06_res4_em' }, - ['-1235667377'] = { Name = 'ch1_06_res4' }, - ['2027564676'] = { Name = 'ch1_06_statue01_lod' }, - ['-1534185780'] = { Name = 'ch1_06_statue01' }, - ['-1246831416'] = { Name = 'ch1_06_wall01' }, - ['-949746445'] = { Name = 'ch1_06b_clotha_lod' }, - ['-1470061540'] = { Name = 'ch1_06b_clothb_lod' }, - ['1263880884'] = { Name = 'ch1_06b_clothc_lod' }, - ['791179982'] = { Name = 'ch1_06b_clothd_lod' }, - ['-689908965'] = { Name = 'ch1_06b_clothe_lod' }, - ['927254358'] = { Name = 'ch1_06b_clothf_lod' }, - ['84981371'] = { Name = 'ch1_06b_emissive_slod' }, - ['2068092117'] = { Name = 'ch1_06b_emissive' }, - ['1745682137'] = { Name = 'ch1_06b_kowall001' }, - ['1968085340'] = { Name = 'ch1_06b_kowall002' }, - ['-1509442068'] = { Name = 'ch1_06b_land_01' }, - ['1536993559'] = { Name = 'ch1_06b_land_02' }, - ['-245702103'] = { Name = 'ch1_06b_plot1_dtls_b_00' }, - ['52659642'] = { Name = 'ch1_06b_plot1_dtls_b_01' }, - ['-723441354'] = { Name = 'ch1_06b_plot1_dtls_b_02' }, - ['-425800527'] = { Name = 'ch1_06b_plot1_dtls_b_03' }, - ['1047919710'] = { Name = 'ch1_06b_plot1_dtls_b_04' }, - ['1649813806'] = { Name = 'ch1_06b_plot1' }, - ['1561499487'] = { Name = 'ch1_06b_plot2_dtls_b_00' }, - ['-1739649577'] = { Name = 'ch1_06b_plot2_dtls_b_01' }, - ['2038812741'] = { Name = 'ch1_06b_plot2_dtls_b_02' }, - ['480581193'] = { Name = 'ch1_06b_plot2_dtls_b_03' }, - ['1332706269'] = { Name = 'ch1_06b_plot2_dtls_b_04' }, - ['-2004585078'] = { Name = 'ch1_06b_plot2' }, - ['-280051256'] = { Name = 'ch1_06b_plot3_dtlsb_01' }, - ['-412175864'] = { Name = 'ch1_06b_plot3_dtlsb_02' }, - ['-642967931'] = { Name = 'ch1_06b_plot3_dtlsb_03' }, - ['-1783591283'] = { Name = 'ch1_06b_plot3_dtlsb_04' }, - ['-1225666289'] = { Name = 'ch1_06b_plot3_dtlsb_05' }, - ['2007684055'] = { Name = 'ch1_06b_plot3' }, - ['-355546905'] = { Name = 'ch1_06b_plot4_bars' }, - ['-374873227'] = { Name = 'ch1_06b_plot4_dtls_01' }, - ['-660651672'] = { Name = 'ch1_06b_plot4_dtls_02' }, - ['-359078565'] = { Name = 'ch1_06b_plot4_dtls_03' }, - ['974233216'] = { Name = 'ch1_06b_plot4_woodhi_lod' }, - ['-2039602912'] = { Name = 'ch1_06b_plot4_woodhi' }, - ['754925185'] = { Name = 'ch1_06b_plot4' }, - ['-644313716'] = { Name = 'ch1_06b_plot5_dtls_b_01' }, - ['-472669694'] = { Name = 'ch1_06b_plot5_dtls_b_02' }, - ['-1948487151'] = { Name = 'ch1_06b_plot5_dtls_b_03' }, - ['1577096794'] = { Name = 'ch1_06b_plot5_dtls_b_04' }, - ['1725411913'] = { Name = 'ch1_06b_plot5' }, - ['-1698420455'] = { Name = 'ch1_06b_plt1_dtls_00' }, - ['1431445046'] = { Name = 'ch1_06b_plt1_dtls_01' }, - ['-2063598191'] = { Name = 'ch1_06b_plt1_dtls_02' }, - ['948331707'] = { Name = 'ch1_06b_plt1_dtls_03' }, - ['1672395503'] = { Name = 'ch1_06b_plt1_dtls_04' }, - ['471509988'] = { Name = 'ch1_06b_plt1_dtls_05' }, - ['208538763'] = { Name = 'ch1_06b_plt1_dtls_06' }, - ['-7408947'] = { Name = 'ch1_06b_plt1_dtls_07' }, - ['-667440211'] = { Name = 'ch1_06b_plt2_dtls_04' }, - ['290561504'] = { Name = 'ch1_06b_plt2_dtls_05' }, - ['847568966'] = { Name = 'ch1_06b_plt2_dtls_06' }, - ['1800262103'] = { Name = 'ch1_06b_plt2_dtls_07' }, - ['486192434'] = { Name = 'ch1_06b_plt2_dtls_08' }, - ['-1914521701'] = { Name = 'ch1_06b_plt3_dtls_00' }, - ['-543925507'] = { Name = 'ch1_06b_plt3_dtls_01' }, - ['-66546707'] = { Name = 'ch1_06b_plt3_dtls_02' }, - ['229455670'] = { Name = 'ch1_06b_plt3_dtls_03' }, - ['375015568'] = { Name = 'ch1_06b_plt3_dtls_04' }, - ['673836079'] = { Name = 'ch1_06b_plt3_dtls_05' }, - ['1000280857'] = { Name = 'ch1_06b_plt3_dtls_06' }, - ['1303885642'] = { Name = 'ch1_06b_plt3_dtls_07' }, - ['1450231996'] = { Name = 'ch1_06b_plt3_dtls_08' }, - ['1119566337'] = { Name = 'ch1_06b_plt3_dtls_66' }, - ['600282003'] = { Name = 'ch1_06b_plt5_dtls_00' }, - ['423329399'] = { Name = 'ch1_06b_plt5_dtls_01' }, - ['124508888'] = { Name = 'ch1_06b_plt5_dtls_02' }, - ['1822795086'] = { Name = 'ch1_06b_plt5_dtls_03' }, - ['1525744101'] = { Name = 'ch1_06b_plt5_dtls_04' }, - ['1338960801'] = { Name = 'ch1_06b_plt5_dtls_05' }, - ['1046825166'] = { Name = 'ch1_06b_plt5_dtls_06' }, - ['1969796840'] = { Name = 'ch1_06b_plt5_dtls_07' }, - ['1685722379'] = { Name = 'ch1_06b_plt5_dtls_08' }, - ['1503919967'] = { Name = 'ch1_06b_plt5_dtls_09' }, - ['-1159937893'] = { Name = 'ch1_06b_plt5_dtls_10' }, - ['-771681450'] = { Name = 'ch1_06b_poolwtr' }, - ['-193774164'] = { Name = 'ch1_06b_props_props05_08_lod' }, - ['2069853531'] = { Name = 'ch1_06b_roadart_01_lod' }, - ['316677475'] = { Name = 'ch1_06b_roadart_01' }, - ['1476245945'] = { Name = 'ch1_06b_tdec_00' }, - ['-1091139671'] = { Name = 'ch1_06b_tdec_01' }, - ['747692764'] = { Name = 'ch1_06b_tdec_02' }, - ['560188546'] = { Name = 'ch1_06b_tdec_03' }, - ['280374055'] = { Name = 'ch1_06b_tdec_04' }, - ['-1816055493'] = { Name = 'ch1_06b_tdec_05' }, - ['-1980818025'] = { Name = 'ch1_06b_tdec_06' }, - ['-564279689'] = { Name = 'ch1_06b_tdec_07' }, - ['1906074002'] = { Name = 'ch1_06b_tdec_66' }, - ['1728494960'] = { Name = 'ch1_06c_base_01' }, - ['1231358135'] = { Name = 'ch1_06c_creepingivy2' }, - ['-1571993431'] = { Name = 'ch1_06c_decal1' }, - ['-1346710056'] = { Name = 'ch1_06c_emissive_lod' }, - ['1389934802'] = { Name = 'ch1_06c_emissive' }, - ['-1463257667'] = { Name = 'ch1_06c_hedge_2_00' }, - ['2063473193'] = { Name = 'ch1_06c_hedge_2_01' }, - ['325372652'] = { Name = 'ch1_06c_hedge_2_02' }, - ['632778641'] = { Name = 'ch1_06c_hedge_2_03' }, - ['-1350466777'] = { Name = 'ch1_06c_hedge_2_04' }, - ['-1035228997'] = { Name = 'ch1_06c_hedge_2_05' }, - ['-30465907'] = { Name = 'ch1_06c_hedge_2_06' }, - ['1350911288'] = { Name = 'ch1_06c_hedge_2_07' }, - ['454089296'] = { Name = 'ch1_06c_hedge_2_08' }, - ['760708829'] = { Name = 'ch1_06c_hedge_2_09' }, - ['1397509646'] = { Name = 'ch1_06c_hedge_2_10' }, - ['1099541129'] = { Name = 'ch1_06c_hedge_2_11' }, - ['-586751655'] = { Name = 'ch1_06c_hedge_2_12' }, - ['-758919981'] = { Name = 'ch1_06c_hedge_2_13' }, - ['-1978144101'] = { Name = 'ch1_06c_house47' }, - ['2113601042'] = { Name = 'ch1_06c_intemissive_dummy' }, - ['-321814252'] = { Name = 'ch1_06c_ldec_00' }, - ['-15456871'] = { Name = 'ch1_06c_ldec_01' }, - ['-748191486'] = { Name = 'ch1_06c_petrol' }, - ['1962325646'] = { Name = 'ch1_06c_water' }, - ['-829294170'] = { Name = 'ch1_06d_decal_00' }, - ['-1292189064'] = { Name = 'ch1_06d_decal_01' }, - ['-383242542'] = { Name = 'ch1_06d_decal_02' }, - ['198669360'] = { Name = 'ch1_06d_decal_03' }, - ['-100216689'] = { Name = 'ch1_06d_decal_04' }, - ['813514107'] = { Name = 'ch1_06d_decal_05' }, - ['514824672'] = { Name = 'ch1_06d_decal_06' }, - ['1159915206'] = { Name = 'ch1_06d_decal_07' }, - ['857490105'] = { Name = 'ch1_06d_decal_08' }, - ['1769123693'] = { Name = 'ch1_06d_decal_09' }, - ['1201827021'] = { Name = 'ch1_06d_decal_10' }, - ['1522832153'] = { Name = 'ch1_06d_decal_11' }, - ['1829386148'] = { Name = 'ch1_06d_decal_12' }, - ['2118605342'] = { Name = 'ch1_06d_decal_13' }, - ['-1870528877'] = { Name = 'ch1_06d_decal_14' }, - ['-968496614'] = { Name = 'ch1_06d_decal_15' }, - ['-1735913825'] = { Name = 'ch1_06d_decal_16' }, - ['-337332905'] = { Name = 'ch1_06d_decal_17' }, - ['-1238808095'] = { Name = 'ch1_06d_decal_18' }, - ['257915980'] = { Name = 'ch1_06d_decal_19' }, - ['-1925253951'] = { Name = 'ch1_06d_decal_20' }, - ['1484360503'] = { Name = 'ch1_06d_decal_21' }, - ['1790586808'] = { Name = 'ch1_06d_decal_22' }, - ['-1229142084'] = { Name = 'ch1_06d_decal_23' }, - ['-1611228624'] = { Name = 'ch1_06d_decal_24' }, - ['-1304609091'] = { Name = 'ch1_06d_decal_25' }, - ['24927546'] = { Name = 'ch1_06d_decal_26' }, - ['226129206'] = { Name = 'ch1_06d_decal_27' }, - ['-676197978'] = { Name = 'ch1_06d_decal_28' }, - ['-386618325'] = { Name = 'ch1_06d_decal_29' }, - ['1054857528'] = { Name = 'ch1_06d_decal_30' }, - ['1246031874'] = { Name = 'ch1_06d_decal_31' }, - ['478614663'] = { Name = 'ch1_06d_decal_32' }, - ['1650904865'] = { Name = 'ch1_06d_emissive_a_lod' }, - ['1610071817'] = { Name = 'ch1_06d_emissive_a' }, - ['-555066806'] = { Name = 'ch1_06d_emissive_b_lod' }, - ['1085767817'] = { Name = 'ch1_06d_emissive_b' }, - ['-1762051227'] = { Name = 'ch1_06d_emissive_c_lod' }, - ['2077914830'] = { Name = 'ch1_06d_emissive_c' }, - ['1801219617'] = { Name = 'ch1_06d_h1_dtl' }, - ['167998261'] = { Name = 'ch1_06d_h1_rails' }, - ['-1535562302'] = { Name = 'ch1_06d_h1' }, - ['816828825'] = { Name = 'ch1_06d_h2_dtl' }, - ['-826998215'] = { Name = 'ch1_06d_h2' }, - ['434978953'] = { Name = 'ch1_06d_h2g' }, - ['15259684'] = { Name = 'ch1_06d_h3_dtl' }, - ['14608012'] = { Name = 'ch1_06d_h3' }, - ['-1077476230'] = { Name = 'ch1_06d_h3g' }, - ['258592004'] = { Name = 'ch1_06d_hedge_00' }, - ['960372912'] = { Name = 'ch1_06d_hedge_01' }, - ['723223659'] = { Name = 'ch1_06d_hedge_02' }, - ['-838022581'] = { Name = 'ch1_06d_hedge_03' }, - ['1502654699'] = { Name = 'ch1_06d_hg1' }, - ['-1578762192'] = { Name = 'ch1_06d_land_01' }, - ['-2132419634'] = { Name = 'ch1_06d_land_01b' }, - ['850575209'] = { Name = 'ch1_06d_land_01c' }, - ['2081561356'] = { Name = 'ch1_06d_pool2' }, - ['182740004'] = { Name = 'ch1_06d_props_combo07_12_lod' }, - ['1724844882'] = { Name = 'ch1_06e_armco01' }, - ['-1001274854'] = { Name = 'ch1_06e_fizzrail01_lod' }, - ['1013214513'] = { Name = 'ch1_06e_fizzrail01' }, - ['1408948465'] = { Name = 'ch1_06e_fizzrail03_lod' }, - ['550483464'] = { Name = 'ch1_06e_fizzrail03' }, - ['-322710696'] = { Name = 'ch1_06e_fizzrail04_lod' }, - ['186026646'] = { Name = 'ch1_06e_fizzrail04' }, - ['-331876165'] = { Name = 'ch1_06e_fizzrail05_lod' }, - ['-2088895641'] = { Name = 'ch1_06e_fizzrail05' }, - ['1854766374'] = { Name = 'ch1_06e_fizzrail06_lod' }, - ['1972854682'] = { Name = 'ch1_06e_fizzrail06' }, - ['1818999351'] = { Name = 'ch1_06e_fizzrail07_lod' }, - ['-1479818238'] = { Name = 'ch1_06e_fizzrail07' }, - ['1613365061'] = { Name = 'ch1_06e_fizzrail08_lod' }, - ['1376393344'] = { Name = 'ch1_06e_fizzrail08' }, - ['-1449043454'] = { Name = 'ch1_06e_fizzrail09_lod' }, - ['-539184045'] = { Name = 'ch1_06e_fizzrail09' }, - ['380368158'] = { Name = 'ch1_06e_fizzrail10_lod' }, - ['1306693437'] = { Name = 'ch1_06e_fizzrail10' }, - ['1265021644'] = { Name = 'ch1_06e_fizzrail11_lod' }, - ['1375836023'] = { Name = 'ch1_06e_fizzrail11' }, - ['-351765504'] = { Name = 'ch1_06e_hedgedecal_00' }, - ['311577359'] = { Name = 'ch1_06e_hedgedecal_01' }, - ['551249825'] = { Name = 'ch1_06e_hedgedecal_02' }, - ['-1240657402'] = { Name = 'ch1_06e_hedgedecal_03' }, - ['-1000526170'] = { Name = 'ch1_06e_hedgedecal_04' }, - ['1731032132'] = { Name = 'ch1_06e_hedgedecal_05' }, - ['956602355'] = { Name = 'ch1_06e_hedgedecal_06' }, - ['198327695'] = { Name = 'ch1_06e_hedgedecal_07' }, - ['1503746348'] = { Name = 'ch1_06e_hedgedecal_08' }, - ['-2140756294'] = { Name = 'ch1_06e_hedgedecal_09' }, - ['270583560'] = { Name = 'ch1_06e_hedgedecal_10' }, - ['1698296117'] = { Name = 'ch1_06e_hedgedecal_11' }, - ['1131589031'] = { Name = 'ch1_06e_hedgedecal_12' }, - ['154646834'] = { Name = 'ch1_06e_hedgedecal_13' }, - ['-166882594'] = { Name = 'ch1_06e_hedgedecal_14' }, - ['-1680482708'] = { Name = 'ch1_06e_hedgedecal_15' }, - ['-1971045431'] = { Name = 'ch1_06e_hedgedecal_16' }, - ['787448993'] = { Name = 'ch1_06e_hedgedecal_17' }, - ['-1666588652'] = { Name = 'ch1_06e_hedgedecal_18' }, - ['-478319170'] = { Name = 'ch1_06e_hedgedecal_19' }, - ['293388852'] = { Name = 'ch1_06e_hedgedecal_20' }, - ['-607136033'] = { Name = 'ch1_06e_hedgedecal_21' }, - ['-817971779'] = { Name = 'ch1_06e_hedgedecal_22' }, - ['-126283727'] = { Name = 'ch1_06e_hedgedecal_23' }, - ['-358386554'] = { Name = 'ch1_06e_hedgedecal_24' }, - ['-1779971320'] = { Name = 'ch1_06e_hedgedecal_25' }, - ['-1066229723'] = { Name = 'ch1_06e_hedgedecal_26' }, - ['-1287912008'] = { Name = 'ch1_06e_hedgedecal_27' }, - ['-1249867311'] = { Name = 'ch1_06e_hedgedecal_28' }, - ['-951177876'] = { Name = 'ch1_06e_hedgedecal_29' }, - ['833028988'] = { Name = 'ch1_06e_hedgedecal_30' }, - ['525655768'] = { Name = 'ch1_06e_hedgedecal_31' }, - ['1420478851'] = { Name = 'ch1_06e_hedgedecal_32' }, - ['1115923765'] = { Name = 'ch1_06e_hedgedecal_33' }, - ['2018414794'] = { Name = 'ch1_06e_hedgedecal_34' }, - ['1720872274'] = { Name = 'ch1_06e_hedgedecal_35' }, - ['-1679304708'] = { Name = 'ch1_06e_hedgedecal_36' }, - ['-1977142149'] = { Name = 'ch1_06e_hedgedecal_37' }, - ['-1625072017'] = { Name = 'ch1_06e_hedgedecal_38' }, - ['-1922974996'] = { Name = 'ch1_06e_hedgedecal_39' }, - ['-476551064'] = { Name = 'ch1_06e_hedgedecal_40' }, - ['-749320220'] = { Name = 'ch1_06e_hedgedecal_41' }, - ['406540717'] = { Name = 'ch1_06e_hedgedecal_42' }, - ['-168030929'] = { Name = 'ch1_06e_hedgedecal_43' }, - ['985044643'] = { Name = 'ch1_06e_hedgedecal_44' }, - ['678425110'] = { Name = 'ch1_06e_hedgedecal_45' }, - ['1600217080'] = { Name = 'ch1_06e_hedgedecal_46' }, - ['1294187389'] = { Name = 'ch1_06e_hedgedecal_47' }, - ['-1829878043'] = { Name = 'ch1_06e_hedgedecal_48' }, - ['-2135711120'] = { Name = 'ch1_06e_hedgedecal_49' }, - ['418436176'] = { Name = 'ch1_06e_hedgedecal_50' }, - ['643755820'] = { Name = 'ch1_06e_hedgedecal_51' }, - ['1032232315'] = { Name = 'ch1_06e_hedgedecal_52' }, - ['1194963169'] = { Name = 'ch1_06e_hedgedecal_53' }, - ['1537989061'] = { Name = 'ch1_06e_hedgedecal_54' }, - ['1837530490'] = { Name = 'ch1_06e_hedgedecal_55' }, - ['-1607867712'] = { Name = 'ch1_06e_hedgedecal_56' }, - ['1919878987'] = { Name = 'ch1_06e_hedgedecal_57' }, - ['-1500811393'] = { Name = 'ch1_06e_hedgedecal_58' }, - ['1892156409'] = { Name = 'ch1_06e_hedgedecal_59' }, - ['1197189493'] = { Name = 'ch1_06e_hedgedecal_60' }, - ['-487006059'] = { Name = 'ch1_06e_hedgedecal_61' }, - ['-1181381169'] = { Name = 'ch1_06e_hedgedecal_62' }, - ['-1895712576'] = { Name = 'ch1_06e_hedgedecal_63' }, - ['-704100684'] = { Name = 'ch1_06e_hedgedecal_64' }, - ['34184886'] = { Name = 'ch1_06e_hedgedecal_65' }, - ['279788541'] = { Name = 'ch1_06e_hedgedecal_66' }, - ['508778313'] = { Name = 'ch1_06e_hedgedecal_67' }, - ['756151494'] = { Name = 'ch1_06e_hedgedecal_68' }, - ['38510418'] = { Name = 'ch1_06e_hedgedecal_69' }, - ['1268986596'] = { Name = 'ch1_06e_hedgedecal_70' }, - ['-399348760'] = { Name = 'ch1_06e_hedgedecal_71' }, - ['-1115875714'] = { Name = 'ch1_06e_hedgedecal_72' }, - ['-2002604830'] = { Name = 'ch1_06e_hedgedecal_73' }, - ['-686700121'] = { Name = 'ch1_06e_hedgedecal_74' }, - ['789445022'] = { Name = 'ch1_06e_hedgedecal_75' }, - ['71607308'] = { Name = 'ch1_06e_hedgedecal_76' }, - ['70966030'] = { Name = 'ch1_06e_house_1_dtl' }, - ['937209763'] = { Name = 'ch1_06e_house_1' }, - ['-1552209158'] = { Name = 'ch1_06e_house_2_dtl' }, - ['572752945'] = { Name = 'ch1_06e_house_2' }, - ['-297041999'] = { Name = 'ch1_06e_house_3_dtl_ncast' }, - ['-433939171'] = { Name = 'ch1_06e_house_3_dtl' }, - ['324855460'] = { Name = 'ch1_06e_house_3' }, - ['-461363943'] = { Name = 'ch1_06e_house_3b' }, - ['-1675306660'] = { Name = 'ch1_06e_mansio_3_dtl' }, - ['-1141426179'] = { Name = 'ch1_06e_mansion_1' }, - ['-2077898661'] = { Name = 'ch1_06e_mansion_2' }, - ['-1772983116'] = { Name = 'ch1_06e_mansion_3' }, - ['1619525920'] = { Name = 'ch1_06e_mansion_4' }, - ['369373526'] = { Name = 'ch1_06e_mansion_dtl_b' }, - ['1802624048'] = { Name = 'ch1_06e_mansion_dtl_c' }, - ['1450359670'] = { Name = 'ch1_06e_mansion_dtl' }, - ['-1809439330'] = { Name = 'ch1_06e_pool_1' }, - ['1283691775'] = { Name = 'ch1_06e_terrain_1' }, - ['1372368582'] = { Name = 'ch1_06e_terrain_1b' }, - ['2048290852'] = { Name = 'ch1_06e_terrain_2' }, - ['575311923'] = { Name = 'ch1_06f_emi_slod' }, - ['341085004'] = { Name = 'ch1_06f_emissivea' }, - ['1480725270'] = { Name = 'ch1_06f_emissiveb' }, - ['-1968703519'] = { Name = 'ch1_06f_emissivec' }, - ['1845903006'] = { Name = 'ch1_06f_emissivee' }, - ['259424640'] = { Name = 'ch1_06f_emissivef' }, - ['1271986740'] = { Name = 'ch1_06f_emissiveg' }, - ['1305271660'] = { Name = 'ch1_06f_fence_m00' }, - ['1824791386'] = { Name = 'ch1_06f_fence_m02' }, - ['-2008559007'] = { Name = 'ch1_06f_fence_m04' }, - ['-1542616596'] = { Name = 'ch1_06f_fence_m06' }, - ['-1088208873'] = { Name = 'ch1_06f_fence_m08' }, - ['-1826115176'] = { Name = 'ch1_06f_fence_mm01' }, - ['1098059312'] = { Name = 'ch1_06f_fence_mm02' }, - ['1874193077'] = { Name = 'ch1_06f_fence_mm03' }, - ['-1422437377'] = { Name = 'ch1_06f_hedged_01' }, - ['-1728368761'] = { Name = 'ch1_06f_hedged_02' }, - ['-2034988294'] = { Name = 'ch1_06f_hedged_03' }, - ['1953326700'] = { Name = 'ch1_06f_hedged_04' }, - ['1747930608'] = { Name = 'ch1_06f_hedged_05' }, - ['278208197'] = { Name = 'ch1_06f_hedged_06' }, - ['535739768'] = { Name = 'ch1_06f_hedged_07' }, - ['-366390802'] = { Name = 'ch1_06f_hedged_08' }, - ['-76811149'] = { Name = 'ch1_06f_hedged_09' }, - ['-1978789135'] = { Name = 'ch1_06f_hedged_10' }, - ['1748225853'] = { Name = 'ch1_06f_hedged_11' }, - ['1376363241'] = { Name = 'ch1_06f_hedged_12' }, - ['1343725317'] = { Name = 'ch1_06f_hedged_13' }, - ['1064631744'] = { Name = 'ch1_06f_hedged_14' }, - ['732550698'] = { Name = 'ch1_06f_hedged_15' }, - ['454309119'] = { Name = 'ch1_06f_hedged_16' }, - ['154964304'] = { Name = 'ch1_06f_hedged_17' }, - ['-393392142'] = { Name = 'ch1_06f_hedged_18' }, - ['-726095799'] = { Name = 'ch1_06f_hedged_19' }, - ['-1128859238'] = { Name = 'ch1_06f_hedged_20' }, - ['-829317809'] = { Name = 'ch1_06f_hedged_21' }, - ['-554549744'] = { Name = 'ch1_06f_hedged_22' }, - ['-253533710'] = { Name = 'ch1_06f_hedged_23' }, - ['64423897'] = { Name = 'ch1_06f_hedged_24' }, - ['356330149'] = { Name = 'ch1_06f_hedged_25' }, - ['-1785582863'] = { Name = 'ch1_06f_hedged_26' }, - ['-2083518611'] = { Name = 'ch1_06f_hedged_27' }, - ['1895326142'] = { Name = 'ch1_06f_hedged_28' }, - ['1595883020'] = { Name = 'ch1_06f_hedged_29' }, - ['1989663837'] = { Name = 'ch1_06f_hedged_30' }, - ['1513989033'] = { Name = 'ch1_06f_hedged_31' }, - ['-1204330625'] = { Name = 'ch1_06f_hedged_32' }, - ['-1733615513'] = { Name = 'ch1_06f_hedged_33' }, - ['-1963686662'] = { Name = 'ch1_06f_hedged_34' }, - ['2099079500'] = { Name = 'ch1_06f_hedged_35' }, - ['-46077547'] = { Name = 'ch1_06f_hedged_36' }, - ['-277524994'] = { Name = 'ch1_06f_hedged_37' }, - ['-743696788'] = { Name = 'ch1_06f_hedged_38' }, - ['-971703494'] = { Name = 'ch1_06f_hedged_39' }, - ['-1238475563'] = { Name = 'ch1_06f_hedged_40' }, - ['-948961448'] = { Name = 'ch1_06f_hedged_41' }, - ['1270810616'] = { Name = 'ch1_06f_hedged_42' }, - ['1493017205'] = { Name = 'ch1_06f_hedged_43' }, - ['1865731811'] = { Name = 'ch1_06f_hedged_44' }, - ['2088397166'] = { Name = 'ch1_06f_hedged_45' }, - ['-674881536'] = { Name = 'ch1_06f_hedged_46' }, - ['-375340107'] = { Name = 'ch1_06f_hedged_47' }, - ['-10227909'] = { Name = 'ch1_06f_hedged_48' }, - ['220564158'] = { Name = 'ch1_06f_hedged_49' }, - ['-1301326305'] = { Name = 'ch1_06f_hedged_50' }, - ['-1065225660'] = { Name = 'ch1_06f_hedged_51' }, - ['-1166973457'] = { Name = 'ch1_06f_hedged_52' }, - ['-1476280048'] = { Name = 'ch1_06f_hedged_53' }, - ['-1493909770'] = { Name = 'ch1_06f_hedged_54' }, - ['-1805379115'] = { Name = 'ch1_06f_hedged_55' }, - ['353278764'] = { Name = 'ch1_06f_hedged_56' }, - ['46495386'] = { Name = 'ch1_06f_hedged_57' }, - ['-578016216'] = { Name = 'ch1_06f_hedged_58' }, - ['-816214077'] = { Name = 'ch1_06f_hedged_59' }, - ['1633957150'] = { Name = 'ch1_06f_hedged_60' }, - ['726321384'] = { Name = 'ch1_06f_hedged_61' }, - ['-1405138221'] = { Name = 'ch1_06f_hedged_62' }, - ['-1106973090'] = { Name = 'ch1_06f_hedged_63' }, - ['-2006219988'] = { Name = 'ch1_06f_hedged_64' }, - ['-1708775775'] = { Name = 'ch1_06f_hedged_65' }, - ['-1417328265'] = { Name = 'ch1_06f_hedged_66' }, - ['-1111036422'] = { Name = 'ch1_06f_hedged_67' }, - ['-1686402222'] = { Name = 'ch1_06f_hs01a' }, - ['-903124815'] = { Name = 'ch1_06f_hs01b' }, - ['141383340'] = { Name = 'ch1_06f_hs01dtls' }, - ['693212180'] = { Name = 'ch1_06f_hs02_detail_01' }, - ['-2144996484'] = { Name = 'ch1_06f_hs02' }, - ['1524869624'] = { Name = 'ch1_06f_hs02dtls' }, - ['1557376216'] = { Name = 'ch1_06f_hs03' }, - ['2003091792'] = { Name = 'ch1_06f_hs03dtls' }, - ['713410621'] = { Name = 'ch1_06f_hs04' }, - ['1741903197'] = { Name = 'ch1_06f_hs04dtls' }, - ['-938895259'] = { Name = 'ch1_06f_hs05_trellis' }, - ['959505811'] = { Name = 'ch1_06f_hs05' }, - ['489618078'] = { Name = 'ch1_06f_hs05dtls' }, - ['-1225039574'] = { Name = 'ch1_06f_hs06' }, - ['885728796'] = { Name = 'ch1_06f_hs06dtls' }, - ['-1815143726'] = { Name = 'ch1_06f_hs07' }, - ['2052173996'] = { Name = 'ch1_06f_hs07dtls' }, - ['-1036750964'] = { Name = 'ch1_06f_land_01' }, - ['-356990828'] = { Name = 'ch1_06f_land_06' }, - ['1494033274'] = { Name = 'ch1_06f_metal_fence_01_lod' }, - ['2022354727'] = { Name = 'ch1_06f_metal_fence_01' }, - ['-1992036674'] = { Name = 'ch1_06f_metal_fence_02_lod' }, - ['1767280831'] = { Name = 'ch1_06f_metal_fence_02' }, - ['135395070'] = { Name = 'ch1_06f_metal_fence_03_lod' }, - ['1526461450'] = { Name = 'ch1_06f_metal_fence_03' }, - ['1715127174'] = { Name = 'ch1_06f_metal_fence_04_lod' }, - ['1307630068'] = { Name = 'ch1_06f_metal_fence_04' }, - ['-916074276'] = { Name = 'ch1_06f_metal_fence_05' }, - ['-1132021986'] = { Name = 'ch1_06f_metal_fence_06' }, - ['-1363633278'] = { Name = 'ch1_06f_metal_fence_07' }, - ['-1610482155'] = { Name = 'ch1_06f_metal_fence_08' }, - ['66438667'] = { Name = 'ch1_06f_metal_fence_09' }, - ['1011471534'] = { Name = 'ch1_06f_metal_fence_10' }, - ['-1021484461'] = { Name = 'ch1_06f_metal_fence_11' }, - ['-1836154570'] = { Name = 'ch1_06f_metal_fence_12' }, - ['-1483101364'] = { Name = 'ch1_06f_metal_fence_13' }, - ['2031078969'] = { Name = 'ch1_06f_metal_fence_14' }, - ['-130986878'] = { Name = 'ch1_06f_metal_fence_15' }, - ['193360684'] = { Name = 'ch1_06f_metal_fence_16' }, - ['-591161945'] = { Name = 'ch1_06f_metal_fence_17' }, - ['-293750501'] = { Name = 'ch1_06f_metal_fence_18' }, - ['720187873'] = { Name = 'ch1_06f_metal_fence_19' }, - ['1968716998'] = { Name = 'ch1_06f_metal_fence_20' }, - ['-589394967'] = { Name = 'ch1_06f_metal_fence_21' }, - ['-289509730'] = { Name = 'ch1_06f_rail' }, - ['-1040870808'] = { Name = 'ch1_06f_rd01' }, - ['22863417'] = { Name = 'ch1_06f_water' }, - ['-1440166959'] = { Name = 'ch1_07_banner01_lod' }, - ['856441009'] = { Name = 'ch1_07_banner01' }, - ['-988808159'] = { Name = 'ch1_07_banner02_lod' }, - ['-464772302'] = { Name = 'ch1_07_banner02' }, - ['-751822836'] = { Name = 'ch1_07_banner03_lod' }, - ['391809358'] = { Name = 'ch1_07_banner03' }, - ['849954959'] = { Name = 'ch1_07_banner04_lod' }, - ['1221618745'] = { Name = 'ch1_07_banner04' }, - ['-1443032717'] = { Name = 'ch1_07_banner05_lod' }, - ['-1845395806'] = { Name = 'ch1_07_banner05' }, - ['-1019446226'] = { Name = 'ch1_07_banner06_lod' }, - ['2076201504'] = { Name = 'ch1_07_banner06' }, - ['-444937022'] = { Name = 'ch1_07_banner08_lod' }, - ['1614650139'] = { Name = 'ch1_07_banner08' }, - ['-1739205621'] = { Name = 'ch1_07_banner20' }, - ['2119431470'] = { Name = 'ch1_07_banners_night_01' }, - ['-1046079400'] = { Name = 'ch1_07_banners_night_02_lod' }, - ['1203374075'] = { Name = 'ch1_07_banners_night_02' }, - ['-1209973314'] = { Name = 'ch1_07_banners_niz' }, - ['915573599'] = { Name = 'ch1_07_build01' }, - ['1154197457'] = { Name = 'ch1_07_build02' }, - ['1349173003'] = { Name = 'ch1_07_build03' }, - ['1565120713'] = { Name = 'ch1_07_build04' }, - ['1804072261'] = { Name = 'ch1_07_build05' }, - ['2042007970'] = { Name = 'ch1_07_build06' }, - ['-1984089681'] = { Name = 'ch1_07_build07' }, - ['-1771746561'] = { Name = 'ch1_07_build08' }, - ['-1533057165'] = { Name = 'ch1_07_build09' }, - ['250165925'] = { Name = 'ch1_07_build10' }, - ['-1416274441'] = { Name = 'ch1_07_carpark01' }, - ['-1725777646'] = { Name = 'ch1_07_carpark02' }, - ['-1776225287'] = { Name = 'ch1_07_d01_ne' }, - ['1532898766'] = { Name = 'ch1_07_d01_wire00' }, - ['1762445611'] = { Name = 'ch1_07_d01_wire01' }, - ['-1310139678'] = { Name = 'ch1_07_d01_wire02' }, - ['-1080101298'] = { Name = 'ch1_07_d01_wire03' }, - ['403842899'] = { Name = 'ch1_07_d01_wire04' }, - ['643548134'] = { Name = 'ch1_07_d01_wire05' }, - ['2070113752'] = { Name = 'ch1_07_d01_wire06' }, - ['164039357'] = { Name = 'ch1_07_d01_wire07' }, - ['-551897755'] = { Name = 'ch1_07_d01_wire08' }, - ['-76288489'] = { Name = 'ch1_07_d01_wire09' }, - ['1618949936'] = { Name = 'ch1_07_d01_wire10' }, - ['1859703779'] = { Name = 'ch1_07_d01_wire11' }, - ['262780135'] = { Name = 'ch1_07_d03_rail00' }, - ['-23981384'] = { Name = 'ch1_07_d03_rail01' }, - ['877952572'] = { Name = 'ch1_07_d03_rail02' }, - ['-938236488'] = { Name = 'ch1_07_d03_rail03' }, - ['-1244528331'] = { Name = 'ch1_07_d03_rail04' }, - ['-341218077'] = { Name = 'ch1_07_d03_rail05' }, - ['-647051154'] = { Name = 'ch1_07_d03_rail06' }, - ['-936532508'] = { Name = 'ch1_07_d03_rail07' }, - ['-1242037895'] = { Name = 'ch1_07_d03_rail08' }, - ['-343184225'] = { Name = 'ch1_07_d03_rail09' }, - ['-1319126219'] = { Name = 'ch1_07_d03_wires00' }, - ['-13740335'] = { Name = 'ch1_07_d03_wires01' }, - ['217248346'] = { Name = 'ch1_07_d03_wires02' }, - ['-1710289764'] = { Name = 'ch1_07_d03_wires03' }, - ['-1471502061'] = { Name = 'ch1_07_d03_wires04' }, - ['-174242889'] = { Name = 'ch1_07_d03_wires05' }, - ['64741428'] = { Name = 'ch1_07_d03_wires06' }, - ['1365080878'] = { Name = 'ch1_07_d03_wires07' }, - ['-411523218'] = { Name = 'ch1_07_d03_wires08' }, - ['759214837'] = { Name = 'ch1_07_d03_wires09' }, - ['-867600140'] = { Name = 'ch1_07_d03_wires10' }, - ['-1810514928'] = { Name = 'ch1_07_d08_c_rail_01' }, - ['-2050744467'] = { Name = 'ch1_07_d08_c_rail_02' }, - ['-1330285233'] = { Name = 'ch1_07_d08_c_rail_03' }, - ['-538474200'] = { Name = 'ch1_07_d08_c_rail' }, - ['-312405986'] = { Name = 'ch1_07_d08_rail00' }, - ['558168037'] = { Name = 'ch1_07_d08_rail01' }, - ['1383029305'] = { Name = 'ch1_07_d08_rail02' }, - ['77676190'] = { Name = 'ch1_07_d08_rail03' }, - ['-599101971'] = { Name = 'ch1_07_d08_rail04' }, - ['-860959050'] = { Name = 'ch1_07_d08_rail05' }, - ['263738572'] = { Name = 'ch1_07_d08_rail06' }, - ['-1441166964'] = { Name = 'ch1_07_d08_rail07' }, - ['-1522466853'] = { Name = 'ch1_07_d08_rail08' }, - ['-1919430519'] = { Name = 'ch1_07_d08_rail09' }, - ['-1877879583'] = { Name = 'ch1_07_d08_rail10' }, - ['1784318323'] = { Name = 'ch1_07_d08_rail11' }, - ['879205770'] = { Name = 'ch1_07_d08_rail12' }, - ['1054716534'] = { Name = 'ch1_07_d08_rail13' }, - ['1304252469'] = { Name = 'ch1_07_d08_rail14' }, - ['1610020008'] = { Name = 'ch1_07_d08_rail15' }, - ['-230614722'] = { Name = 'ch1_07_d08_rail16' }, - ['73645443'] = { Name = 'ch1_07_d08_rail17' }, - ['202558689'] = { Name = 'ch1_07_d08_rail18' }, - ['363388941'] = { Name = 'ch1_07_d08_rail19' }, - ['1374119101'] = { Name = 'ch1_07_d08_rail20' }, - ['-1088020178'] = { Name = 'ch1_07_d08_wires_01' }, - ['1318807203'] = { Name = 'ch1_07_d08_wires00' }, - ['364377309'] = { Name = 'ch1_07_d08_wires01' }, - ['-267867777'] = { Name = 'ch1_07_d08_wires02' }, - ['709008882'] = { Name = 'ch1_07_d08_wires03' }, - ['-1805946330'] = { Name = 'ch1_07_d08_wires04' }, - ['1052853999'] = { Name = 'ch1_07_d08_wires05' }, - ['953039625'] = { Name = 'ch1_07_d08_wires06' }, - ['-963750273'] = { Name = 'ch1_07_d08_wires07' }, - ['-1589834787'] = { Name = 'ch1_07_d08_wires08' }, - ['-1460495244'] = { Name = 'ch1_07_d08_wires13' }, - ['-1221052161'] = { Name = 'ch1_07_d08_wires14' }, - ['-522122160'] = { Name = 'ch1_07_d08_wires15' }, - ['-282548001'] = { Name = 'ch1_07_d08_wires16' }, - ['-43072149'] = { Name = 'ch1_07_d08_wires17' }, - ['195387864'] = { Name = 'ch1_07_d08_wires18' }, - ['943635210'] = { Name = 'ch1_07_d08_wires19' }, - ['1291769296'] = { Name = 'ch1_07_dc01' }, - ['-894807767'] = { Name = 'ch1_07_dc02' }, - ['-588712538'] = { Name = 'ch1_07_dc03' }, - ['-1373726702'] = { Name = 'ch1_07_dc04' }, - ['-171980444'] = { Name = 'ch1_07_dc04b' }, - ['-2084256929'] = { Name = 'ch1_07_dc06' }, - ['-1778554928'] = { Name = 'ch1_07_dc07' }, - ['-1213504501'] = { Name = 'ch1_07_fakeroom0001' }, - ['1894875149'] = { Name = 'ch1_07_fakeroom002' }, - ['1678894670'] = { Name = 'ch1_07_fakeroom003' }, - ['1456196546'] = { Name = 'ch1_07_fakeroom004' }, - ['-1486721878'] = { Name = 'ch1_07_fakeroom005' }, - ['55214351'] = { Name = 'ch1_07_g00_rail00' }, - ['1282315094'] = { Name = 'ch1_07_g00_rail01' }, - ['-2110456094'] = { Name = 'ch1_07_g00_rail02' }, - ['-559630396'] = { Name = 'ch1_07_g00_rail03' }, - ['-865135783'] = { Name = 'ch1_07_g00_rail04' }, - ['958000301'] = { Name = 'ch1_07_g00_rail05' }, - ['652953680'] = { Name = 'ch1_07_g00_rail06' }, - ['32341585'] = { Name = 'ch1_07_g00_rail07' }, - ['-266151236'] = { Name = 'ch1_07_g00_rail08' }, - ['-562448534'] = { Name = 'ch1_07_g00_rail09' }, - ['-1549976026'] = { Name = 'ch1_07_g00_rail10' }, - ['-450576080'] = { Name = 'ch1_07_g00_rail11' }, - ['-485442296'] = { Name = 'ch1_07_g00_rail12' }, - ['-1983935897'] = { Name = 'ch1_07_g00_rail13' }, - ['-133863695'] = { Name = 'ch1_07_g00_rail14' }, - ['777671582'] = { Name = 'ch1_07_g00_rail15' }, - ['205000538'] = { Name = 'ch1_07_g00_rail16' }, - ['-829123568'] = { Name = 'ch1_07_g00_rail17' }, - ['1019146343'] = { Name = 'ch1_07_g00_rail18' }, - ['1990452268'] = { Name = 'ch1_07_g00_rail19' }, - ['-1276749016'] = { Name = 'ch1_07_g00_rail20' }, - ['1838075510'] = { Name = 'ch1_07_g00_rail21' }, - ['-1681151245'] = { Name = 'ch1_07_g00_rail22' }, - ['-576147800'] = { Name = 'ch1_07_g00_rail23' }, - ['-881915339'] = { Name = 'ch1_07_g00_rail24' }, - ['-1171789913'] = { Name = 'ch1_07_g00_rail25' }, - ['-1476312230'] = { Name = 'ch1_07_g00_rail26' }, - ['242257979'] = { Name = 'ch1_07_g00_rail27' }, - ['1152056495'] = { Name = 'ch1_07_g00_rail28' }, - ['-83760806'] = { Name = 'ch1_07_g00_rail29' }, - ['-413417790'] = { Name = 'ch1_07_g00_rail30' }, - ['444933400'] = { Name = 'ch1_07_g00_rail31' }, - ['147620263'] = { Name = 'ch1_07_g00_rail32' }, - ['-1474454726'] = { Name = 'ch1_07_g00_wires00' }, - ['632919652'] = { Name = 'ch1_07_g00_wires01' }, - ['1408791265'] = { Name = 'ch1_07_g00_wires02' }, - ['1122422974'] = { Name = 'ch1_07_g00_wires03' }, - ['-518189780'] = { Name = 'ch1_07_g00_wires04' }, - ['1617660875'] = { Name = 'ch1_07_g00_wires05' }, - ['-1909069985'] = { Name = 'ch1_07_g00_wires06' }, - ['2063483120'] = { Name = 'ch1_07_g00_wires07' }, - ['952286326'] = { Name = 'ch1_07_g00_wires08' }, - ['-1186775687'] = { Name = 'ch1_07_g00_wires09' }, - ['-962274400'] = { Name = 'ch1_07_g00_wires10' }, - ['712942374'] = { Name = 'ch1_07_g00_wires11' }, - ['483919833'] = { Name = 'ch1_07_g00_wires12' }, - ['235006509'] = { Name = 'ch1_07_g00_wires13' }, - ['4607670'] = { Name = 'ch1_07_g00_wires14' }, - ['-1061925009'] = { Name = 'ch1_07_g00_wires15' }, - ['-849024816'] = { Name = 'ch1_07_g00_wires16' }, - ['-592115836'] = { Name = 'ch1_07_g00_wires17' }, - ['-361323769'] = { Name = 'ch1_07_g00_wires18' }, - ['-2021335791'] = { Name = 'ch1_07_g00_wires19' }, - ['1111472920'] = { Name = 'ch1_07_g00_wires20' }, - ['1216464796'] = { Name = 'ch1_07_g00_wires21' }, - ['1551101824'] = { Name = 'ch1_07_g00_wires22' }, - ['-354644909'] = { Name = 'ch1_07_g00_wires23' }, - ['-114677522'] = { Name = 'ch1_07_g00_wires24' }, - ['527070574'] = { Name = 'ch1_07_g00_wires25' }, - ['-1374580086'] = { Name = 'ch1_07_g00_wires26' }, - ['-1098075264'] = { Name = 'ch1_07_g00_wires27' }, - ['-925906938'] = { Name = 'ch1_07_g00_wires28' }, - ['-618042183'] = { Name = 'ch1_07_g00_wires29' }, - ['1503791148'] = { Name = 'ch1_07_g00_wires30' }, - ['-1942426279'] = { Name = 'ch1_07_g00_wires31' }, - ['2092519002'] = { Name = 'ch1_07_g00_wires32' }, - ['504467720'] = { Name = 'ch1_07_g00_wires33' }, - ['1362982751'] = { Name = 'ch1_07_g00_wires34' }, - ['1132944371'] = { Name = 'ch1_07_g00_wires35' }, - ['791294785'] = { Name = 'ch1_07_g00_wires36' }, - ['553621228'] = { Name = 'ch1_07_g00_wires37' }, - ['1403452474'] = { Name = 'ch1_07_g00_wires38' }, - ['1165320151'] = { Name = 'ch1_07_g00_wires39' }, - ['-1492188603'] = { Name = 'ch1_07_g00_wires40' }, - ['523909428'] = { Name = 'ch1_07_glue_01' }, - ['288070935'] = { Name = 'ch1_07_glue_02' }, - ['1946247873'] = { Name = 'ch1_07_glue_03' }, - ['1707066942'] = { Name = 'ch1_07_glue_04' }, - ['1486728186'] = { Name = 'ch1_07_glue_05' }, - ['1244729121'] = { Name = 'ch1_07_glue_06' }, - ['1488235564'] = { Name = 'ch1_07_glue_07' }, - ['1189611667'] = { Name = 'ch1_07_glue_08' }, - ['-12654764'] = { Name = 'ch1_07_groundcentre' }, - ['-445329336'] = { Name = 'ch1_07_korizbarrier01' }, - ['-1631403291'] = { Name = 'ch1_07_korizbarrier02' }, - ['-1257967767'] = { Name = 'ch1_07_korizbarrier03' }, - ['1448105283'] = { Name = 'ch1_07_ladder003' }, - ['-1291449668'] = { Name = 'ch1_07_ladder2' }, - ['351831751'] = { Name = 'ch1_07_maze_01' }, - ['1179052387'] = { Name = 'ch1_07_maze_02' }, - ['-931107368'] = { Name = 'ch1_07_maze_03' }, - ['-2033031443'] = { Name = 'ch1_07_mazebase' }, - ['-201016987'] = { Name = 'ch1_07_mazedtl01' }, - ['-96287263'] = { Name = 'ch1_07_mazedtl02' }, - ['127951004'] = { Name = 'ch1_07_mazedtl03' }, - ['519409478'] = { Name = 'ch1_07_mazedtl04' }, - ['-1193229562'] = { Name = 'ch1_07_mazedtl05' }, - ['-944086855'] = { Name = 'ch1_07_mazedtl06' }, - ['-579695571'] = { Name = 'ch1_07_mazedtl07' }, - ['-334026378'] = { Name = 'ch1_07_mazedtl08' }, - ['-2102045008'] = { Name = 'ch1_07_mazedtl09' }, - ['-1815252080'] = { Name = 'ch1_07_mazedtl10' }, - ['-1444095465'] = { Name = 'ch1_07_rooffiz' }, - ['-1724339852'] = { Name = 'ch1_07_sculpture_01' }, - ['-1485978146'] = { Name = 'ch1_07_sculpture_02' }, - ['-1260887885'] = { Name = 'ch1_07_sculpture_03' }, - ['1410965303'] = { Name = 'ch1_07_sculpture_04' }, - ['1649097626'] = { Name = 'ch1_07_sculpture_05' }, - ['1873958504'] = { Name = 'ch1_07_sculpture_06' }, - ['2111894213'] = { Name = 'ch1_07_sculpture_07' }, - ['861693229'] = { Name = 'ch1_07_shelterfiz007' }, - ['1566488881'] = { Name = 'ch1_07_shelterfiz008' }, - ['1296177372'] = { Name = 'ch1_07_shelterfiz009' }, - ['1387785683'] = { Name = 'ch1_07_shelterfiz01' }, - ['-526939760'] = { Name = 'ch1_07_shelterfiz02' }, - ['-186732002'] = { Name = 'ch1_07_shelterfiz03' }, - ['962883060'] = { Name = 'ch1_07_sign' }, - ['-88434291'] = { Name = 'ch1_07_signs01' }, - ['1326203439'] = { Name = 'ch1_07_signs02' }, - ['1630856832'] = { Name = 'ch1_07_signs03' }, - ['1338327965'] = { Name = 'ch1_07_signs04' }, - ['1634854646'] = { Name = 'ch1_07_signs05' }, - ['842500226'] = { Name = 'ch1_07_signs06' }, - ['1173172205'] = { Name = 'ch1_07_signs07' }, - ['-1766010485'] = { Name = 'ch1_07_signs08' }, - ['-1463061080'] = { Name = 'ch1_07_signs09' }, - ['1877644223'] = { Name = 'ch1_07_signs10' }, - ['-1657278887'] = { Name = 'ch1_07_signs11' }, - ['-1974581114'] = { Name = 'ch1_07_signs12' }, - ['-1180391630'] = { Name = 'ch1_07_signs13' }, - ['-489227666'] = { Name = 'ch1_07_signs20' }, - ['-666688647'] = { Name = 'ch1_07_smallstatues' }, - ['1715676532'] = { Name = 'ch1_07_smallstatues2' }, - ['-187221232'] = { Name = 'ch1_07_uplightsupport' }, - ['-337448276'] = { Name = 'ch1_07_water2' }, - ['1382399916'] = { Name = 'ch1_07_water3' }, - ['-1023414467'] = { Name = 'ch1_07_weed_01' }, - ['-1988494282'] = { Name = 'ch1_07_weed_02' }, - ['-2126010477'] = { Name = 'ch1_07_windowfiz' }, - ['1713613972'] = { Name = 'ch1_08_deco01' }, - ['2011731030'] = { Name = 'ch1_08_deco01b' }, - ['1969965859'] = { Name = 'ch1_08_deco02' }, - ['-228702965'] = { Name = 'ch1_08_deco03' }, - ['8184136'] = { Name = 'ch1_08_deco04' }, - ['382668268'] = { Name = 'ch1_08_deco05' }, - ['-292244088'] = { Name = 'ch1_08_land_01' }, - ['895533855'] = { Name = 'ch1_08_land_02' }, - ['1266806625'] = { Name = 'ch1_08_land_03' }, - ['1660624535'] = { Name = 'ch1_08_land_04' }, - ['1832268557'] = { Name = 'ch1_08_land_05' }, - ['-875613811'] = { Name = 'ch1_08_props_combo18_01_lod' }, - ['715591630'] = { Name = 'ch1_08_props_combo24_01_lod' }, - ['898868226'] = { Name = 'ch1_09__railch1_09_bridge00' }, - ['709463406'] = { Name = 'ch1_09__railch1_09_bridge01' }, - ['-1946922814'] = { Name = 'ch1_09__railch1_09_bridge02' }, - ['1728434684'] = { Name = 'ch1_09_arc_fizz' }, - ['-964412429'] = { Name = 'ch1_09_arc_hedges_dec' }, - ['-819409238'] = { Name = 'ch1_09_arc007' }, - ['237455408'] = { Name = 'ch1_09_bbd_00b' }, - ['-244183622'] = { Name = 'ch1_09_bbd_012' }, - ['1665626475'] = { Name = 'ch1_09_bbd_01g' }, - ['9808905'] = { Name = 'ch1_09_bbd_01h' }, - ['937139099'] = { Name = 'ch1_09_bbd_02' }, - ['1704326927'] = { Name = 'ch1_09_bbd_03' }, - ['1405113188'] = { Name = 'ch1_09_bbd_04' }, - ['2141218'] = { Name = 'ch1_09_bbd_05' }, - ['1782677490'] = { Name = 'ch1_09_bbd_06' }, - ['846925926'] = { Name = 'ch1_09_bbd_07' }, - ['298247631'] = { Name = 'ch1_09_bbd_07g' }, - ['1152038085'] = { Name = 'ch1_09_bbd_08' }, - ['-1628149417'] = { Name = 'ch1_09_bbd_09' }, - ['2024643498'] = { Name = 'ch1_09_bbd_10' }, - ['-1972682971'] = { Name = 'ch1_09_bbd_11' }, - ['-733228319'] = { Name = 'ch1_09_bbd_12' }, - ['-437225942'] = { Name = 'ch1_09_bbd_13' }, - ['1254146001'] = { Name = 'ch1_09_bbd_15' }, - ['-1808575819'] = { Name = 'ch1_09_bbd_16' }, - ['1422111493'] = { Name = 'ch1_09_bd_02' }, - ['-509580447'] = { Name = 'ch1_09_bdec_00a' }, - ['-431727013'] = { Name = 'ch1_09_bdec_01' }, - ['-1721318239'] = { Name = 'ch1_09_bdec_02' }, - ['966892970'] = { Name = 'ch1_09_bdec_02g' }, - ['-1429903522'] = { Name = 'ch1_09_bdec_03' }, - ['-1609510415'] = { Name = 'ch1_09_bdec_04' }, - ['-348244060'] = { Name = 'ch1_09_bridge_d' }, - ['-677618863'] = { Name = 'ch1_09_bridge' }, - ['104387776'] = { Name = 'ch1_09_d_01' }, - ['336556141'] = { Name = 'ch1_09_d_02' }, - ['-90772540'] = { Name = 'ch1_09_decs04' }, - ['448967438'] = { Name = 'ch1_09_drivedecals' }, - ['269124589'] = { Name = 'ch1_09_drivedecals2' }, - ['1028078985'] = { Name = 'ch1_09_gbdec_00' }, - ['-1790415478'] = { Name = 'ch1_09_gbdec_01' }, - ['1982277237'] = { Name = 'ch1_09_grassde_01' }, - ['-1763889402'] = { Name = 'ch1_09_hde_00' }, - ['1776823666'] = { Name = 'ch1_09_hde_01_lod' }, - ['2141716636'] = { Name = 'ch1_09_hde_01' }, - ['1688684636'] = { Name = 'ch1_09_hde_011' }, - ['-1538405913'] = { Name = 'ch1_09_hde_03' }, - ['1545714064'] = { Name = 'ch1_09_hde_04' }, - ['1309875571'] = { Name = 'ch1_09_hde_05' }, - ['1922852485'] = { Name = 'ch1_09_hde_06' }, - ['1819171369'] = { Name = 'ch1_09_hde_07' }, - ['554484579'] = { Name = 'ch1_09_hde_08' }, - ['297477312'] = { Name = 'ch1_09_hde_09' }, - ['920673766'] = { Name = 'ch1_09_hde_10' }, - ['2043557505'] = { Name = 'ch1_09_hdec_00' }, - ['-642421004'] = { Name = 'ch1_09_hdec_003' }, - ['1738838574'] = { Name = 'ch1_09_hdec_01' }, - ['358149528'] = { Name = 'ch1_09_hdec_02' }, - ['-695417099'] = { Name = 'ch1_09_hillhousedecals' }, - ['150399090'] = { Name = 'ch1_09_house_decals' }, - ['-1109696234'] = { Name = 'ch1_09_land_01' }, - ['975101711'] = { Name = 'ch1_09_land_01b' }, - ['1038672175'] = { Name = 'ch1_09_land_02' }, - ['-789208005'] = { Name = 'ch1_09_land_03_dec' }, - ['806569348'] = { Name = 'ch1_09_land_03' }, - ['-363742718'] = { Name = 'ch1_09_land_04' }, - ['1683070643'] = { Name = 'ch1_09_land004' }, - ['-520414221'] = { Name = 'ch1_09_mdhs_frnt_dec' }, - ['-536510849'] = { Name = 'ch1_09_missionculvert_sh' }, - ['-62932174'] = { Name = 'ch1_09_missionculvert' }, - ['586850839'] = { Name = 'ch1_09_modernhouse_awning' }, - ['-1738020721'] = { Name = 'ch1_09_modernhouse_fence00' }, - ['-1975956430'] = { Name = 'ch1_09_modernhouse_fence01' }, - ['1035383594'] = { Name = 'ch1_09_modernhouse_fence02' }, - ['-1365389638'] = { Name = 'ch1_09_modernhouse' }, - ['273323424'] = { Name = 'ch1_09_modernhousedriveblend' }, - ['-1125779827'] = { Name = 'ch1_09_ndex_00' }, - ['-1666927085'] = { Name = 'ch1_09_ndex_02' }, - ['-1888379987'] = { Name = 'ch1_09_ndex_03' }, - ['-1064337944'] = { Name = 'ch1_09_ndex_04' }, - ['-1565572568'] = { Name = 'ch1_09_ndex_05' }, - ['-682513556'] = { Name = 'ch1_09_ndex_06' }, - ['-913502237'] = { Name = 'ch1_09_ndex_07' }, - ['-127472234'] = { Name = 'ch1_09_ndex_08' }, - ['437072098'] = { Name = 'ch1_09_ndex_09' }, - ['1563932178'] = { Name = 'ch1_09_ndex_10' }, - ['-1326293626'] = { Name = 'ch1_09_ndex_11' }, - ['1992524671'] = { Name = 'ch1_09_pool' }, - ['1034680781'] = { Name = 'ch1_09_water_shallow' }, - ['1815461770'] = { Name = 'ch1_09_water' }, - ['1166314732'] = { Name = 'ch1_09_water2b' }, - ['1088747014'] = { Name = 'ch1_09b_creek_01' }, - ['330996658'] = { Name = 'ch1_09b_creek_02' }, - ['1301789231'] = { Name = 'ch1_09b_creekrcks_01' }, - ['1608408764'] = { Name = 'ch1_09b_creekrcks_02' }, - ['-733129595'] = { Name = 'ch1_09b_creekrcksl3' }, - ['-442566872'] = { Name = 'ch1_09b_creekrcksl4' }, - ['1862273516'] = { Name = 'ch1_09b_creekrcksl5' }, - ['162615860'] = { Name = 'ch1_09b_crkwater_01_lod' }, - ['18419236'] = { Name = 'ch1_09b_crkwater_01' }, - ['417650468'] = { Name = 'ch1_09b_crkwater_02_lod' }, - ['352007656'] = { Name = 'ch1_09b_crkwater_02' }, - ['1322901303'] = { Name = 'ch1_09b_culvert01_shadow' }, - ['1781197499'] = { Name = 'ch1_09b_culvert01' }, - ['-2098152289'] = { Name = 'ch1_09b_culvert02_shadow' }, - ['1601099075'] = { Name = 'ch1_09b_culvert02' }, - ['326522724'] = { Name = 'ch1_09b_culvert03_shadow' }, - ['1302344102'] = { Name = 'ch1_09b_culvert03' }, - ['-1856598850'] = { Name = 'ch1_09b_glue_02' }, - ['1737013539'] = { Name = 'ch1_09b_glue_03' }, - ['1846036002'] = { Name = 'ch1_09b_glue_05' }, - ['2084496015'] = { Name = 'ch1_09b_glue_06' }, - ['468829784'] = { Name = 'ch1_09b_land0_new' }, - ['-51457607'] = { Name = 'ch1_09b_land04a_new' }, - ['-586302091'] = { Name = 'ch1_09b_land04b_new' }, - ['806447346'] = { Name = 'ch1_09b_ovrly_07' }, - ['110237172'] = { Name = 'ch1_09b_ovrly_09' }, - ['880112334'] = { Name = 'ch1_09b_ovrly_10' }, - ['-1025798248'] = { Name = 'ch1_09b_ovrly_11' }, - ['440974965'] = { Name = 'ch1_09b_ovrly_12' }, - ['678845136'] = { Name = 'ch1_09b_ovrly_13' }, - ['1535688948'] = { Name = 'ch1_09b_ovrly_14' }, - ['838103801'] = { Name = 'ch1_09b_ovrly_15a' }, - ['1337175675'] = { Name = 'ch1_09b_ovrly_15b' }, - ['1091963919'] = { Name = 'ch1_09b_ovrly_16' }, - ['1334290674'] = { Name = 'ch1_09b_ovrly_17' }, - ['-1497475230'] = { Name = 'ch1_09b_ovrly_18' }, - ['-1257442305'] = { Name = 'ch1_09b_ovrly_19' }, - ['-686737061'] = { Name = 'ch1_09b_ovrly_20' }, - ['-919233116'] = { Name = 'ch1_09b_ovrly_21' }, - ['847933520'] = { Name = 'ch1_09b_ovrly_22' }, - ['621008195'] = { Name = 'ch1_09b_ovrly_23' }, - ['1119064106'] = { Name = 'ch1_09b_ovrly_25' }, - ['-1184596594'] = { Name = 'ch1_09b_ovrly_26' }, - ['2030619493'] = { Name = 'ch1_09b_rdbrg_01_shadow' }, - ['1965865816'] = { Name = 'ch1_09b_rdbrg_01' }, - ['1723123789'] = { Name = 'ch1_09b_roadbrdg_02_shadow' }, - ['774131857'] = { Name = 'ch1_09b_roadbrdg_02' }, - ['-165659810'] = { Name = 'ch1_09b_roadbrdg_03_shadow' }, - ['-1812063169'] = { Name = 'ch1_09b_roadbrdg_03' }, - ['1171314616'] = { Name = 'ch1_09b_roadbrdg_decal' }, - ['-1955279094'] = { Name = 'ch1_09b_rock01' }, - ['-1948332146'] = { Name = 'ch1_09b_rock02' }, - ['-1698422586'] = { Name = 'ch1_09b_rock05_b' }, - ['842263295'] = { Name = 'ch1_09b_rockinsrt_01' }, - ['-115935034'] = { Name = 'ch1_09b_rockinsrt_02' }, - ['1276855729'] = { Name = 'ch1_09b_rockinsrt_03_lod' }, - ['-346989253'] = { Name = 'ch1_09b_rockinsrt_03' }, - ['912778345'] = { Name = 'ch1_09b_rockinsrt_04_lod' }, - ['-1913609621'] = { Name = 'ch1_09b_rockinsrt_04' }, - ['-111858575'] = { Name = 'ch1_09b_rockinsrt_06_lod' }, - ['1191318671'] = { Name = 'ch1_09b_rockinsrt_06' }, - ['-1539191027'] = { Name = 'ch1_09b_rockinsrt_07' }, - ['-709479947'] = { Name = 'ch1_09b_rockinsrt_08' }, - ['1924929910'] = { Name = 'ch1_09b_shacks_d' }, - ['-1155156225'] = { Name = 'ch1_09b_shacks_smoke' }, - ['-672623719'] = { Name = 'ch1_09b_shacks' }, - ['596929227'] = { Name = 'ch1_09b_td_00' }, - ['-121301715'] = { Name = 'ch1_09b_td_01' }, - ['114143550'] = { Name = 'ch1_09b_td_02' }, - ['-587506278'] = { Name = 'ch1_09b_td_03' }, - ['-358024971'] = { Name = 'ch1_09b_td_04' }, - ['-241432845'] = { Name = 'ch1_09b_td_05' }, - ['-11623848'] = { Name = 'ch1_09b_td_06' }, - ['-704622660'] = { Name = 'ch1_09b_td_07' }, - ['-475272429'] = { Name = 'ch1_09b_td_08' }, - ['-1201367931'] = { Name = 'ch1_09b_td_09' }, - ['-1905931644'] = { Name = 'ch1_09b_td_10' }, - ['-1307831852'] = { Name = 'ch1_09b_td_11' }, - ['-1011436247'] = { Name = 'ch1_09b_td_12' }, - ['-712517429'] = { Name = 'ch1_09b_td_13' }, - ['-414352298'] = { Name = 'ch1_09b_td_14' }, - ['551186287'] = { Name = 'ch1_09b_td_15' }, - ['1144665626'] = { Name = 'ch1_09b_td_17' }, - ['1726872449'] = { Name = 'ch1_09b_td_19' }, - ['-1538132164'] = { Name = 'ch1_09b_td_20' }, - ['-1765015529'] = { Name = 'ch1_09b_vine_slod_00' }, - ['-1490771768'] = { Name = 'ch1_09b_vine_slod_01' }, - ['2054080349'] = { Name = 'ch1_09b_vine_slod_02' }, - ['1685625713'] = { Name = 'ch1_09b_vine_slod_03' }, - ['1991655404'] = { Name = 'ch1_09b_vine_slod_04' }, - ['1646466754'] = { Name = 'ch1_09b_vine_slod_05' }, - ['1837116796'] = { Name = 'ch1_09b_vine_slod_06' }, - ['920305710'] = { Name = 'ch1_09b_vine_slod_07' }, - ['1292134056'] = { Name = 'ch1_09b_vinegrapes_01' }, - ['650385960'] = { Name = 'ch1_09b_vinegrapes_02' }, - ['-1506830095'] = { Name = 'ch1_09b_vinegrapes_03' }, - ['-1183432834'] = { Name = 'ch1_09b_vinegrapes_04' }, - ['-2103586342'] = { Name = 'ch1_09b_vinegrapes_05' }, - ['-1806338743'] = { Name = 'ch1_09b_vinegrapes_06' }, - ['-551613745'] = { Name = 'ch1_09b_vinegrapes_07' }, - ['-361750159'] = { Name = 'ch1_09b_vinegrapes_08' }, - ['-1153875196'] = { Name = 'ch1_09b_vinegrapes_09' }, - ['-1989517073'] = { Name = 'ch1_09b_vinegrapes_10' }, - ['2074441309'] = { Name = 'ch1_09b_vinegrapes_100' }, - ['-775118162'] = { Name = 'ch1_09b_vinegrapes_101' }, - ['679452443'] = { Name = 'ch1_09b_vinegrapes_11' }, - ['920992742'] = { Name = 'ch1_09b_vinegrapes_12' }, - ['1140086276'] = { Name = 'ch1_09b_vinegrapes_13' }, - ['1379857049'] = { Name = 'ch1_09b_vinegrapes_14' }, - ['-334125496'] = { Name = 'ch1_09b_vinegrapes_15' }, - ['-93306115'] = { Name = 'ch1_09b_vinegrapes_16' }, - ['161014094'] = { Name = 'ch1_09b_vinegrapes_17' }, - ['938360316'] = { Name = 'ch1_09b_vinegrapes_18' }, - ['-1256933305'] = { Name = 'ch1_09b_vinegrapes_19' }, - ['96588500'] = { Name = 'ch1_09b_vinegrapes_20' }, - ['1294852539'] = { Name = 'ch1_09b_vinegrapes_21' }, - ['-550664788'] = { Name = 'ch1_09b_vinegrapes_22' }, - ['-1598879548'] = { Name = 'ch1_09b_vinegrapes_23' }, - ['-1272402001'] = { Name = 'ch1_09b_vinegrapes_24' }, - ['-169594075'] = { Name = 'ch1_09b_vinegrapes_25' }, - ['127063682'] = { Name = 'ch1_09b_vinegrapes_26' }, - ['1769577042'] = { Name = 'ch1_09b_vinegrapes_27' }, - ['2071019073'] = { Name = 'ch1_09b_vinegrapes_28' }, - ['-1019458090'] = { Name = 'ch1_09b_vinegrapes_29' }, - ['882814849'] = { Name = 'ch1_09b_vinegrapes_30' }, - ['-1297601642'] = { Name = 'ch1_09b_vinegrapes_31' }, - ['-1470032120'] = { Name = 'ch1_09b_vinegrapes_32' }, - ['373125823'] = { Name = 'ch1_09b_vinegrapes_33' }, - ['197090755'] = { Name = 'ch1_09b_vinegrapes_34' }, - ['1767938308'] = { Name = 'ch1_09b_vinegrapes_35' }, - ['-1087224666'] = { Name = 'ch1_09b_vinegrapes_36' }, - ['-1392533439'] = { Name = 'ch1_09b_vinegrapes_37' }, - ['-1629682692'] = { Name = 'ch1_09b_vinegrapes_38' }, - ['603131434'] = { Name = 'ch1_09b_vinegrapes_39' }, - ['-1984251748'] = { Name = 'ch1_09b_vinegrapes_40' }, - ['-593371543'] = { Name = 'ch1_09b_vinegrapes_41' }, - ['-550902919'] = { Name = 'ch1_09b_vinegrapes_42' }, - ['1037443304'] = { Name = 'ch1_09b_vinegrapes_43' }, - ['-1826501762'] = { Name = 'ch1_09b_vinegrapes_44' }, - ['-1573623389'] = { Name = 'ch1_09b_vinegrapes_45' }, - ['1936886816'] = { Name = 'ch1_09b_vinegrapes_46' }, - ['120370046'] = { Name = 'ch1_09b_vinegrapes_47' }, - ['1474745609'] = { Name = 'ch1_09b_vinegrapes_48' }, - ['1796012885'] = { Name = 'ch1_09b_vinegrapes_49' }, - ['-1119773039'] = { Name = 'ch1_09b_vinegrapes_50' }, - ['1043243117'] = { Name = 'ch1_09b_vinegrapes_51' }, - ['-1880833064'] = { Name = 'ch1_09b_vinegrapes_52' }, - ['-1561466390'] = { Name = 'ch1_09b_vinegrapes_53' }, - ['1958219135'] = { Name = 'ch1_09b_vinegrapes_54' }, - ['1432637132'] = { Name = 'ch1_09b_vinegrapes_55' }, - ['1721200946'] = { Name = 'ch1_09b_vinegrapes_56' }, - ['971413457'] = { Name = 'ch1_09b_vinegrapes_57' }, - ['1260698189'] = { Name = 'ch1_09b_vinegrapes_58' }, - ['-876856442'] = { Name = 'ch1_09b_vinegrapes_59' }, - ['1007532751'] = { Name = 'ch1_09b_vinegrapes_60' }, - ['-449475296'] = { Name = 'ch1_09b_vinegrapes_61' }, - ['258531718'] = { Name = 'ch1_09b_vinegrapes_62' }, - ['-486504270'] = { Name = 'ch1_09b_vinegrapes_63' }, - ['351562905'] = { Name = 'ch1_09b_vinegrapes_64' }, - ['-634849533'] = { Name = 'ch1_09b_vinegrapes_65' }, - ['-203871645'] = { Name = 'ch1_09b_vinegrapes_66' }, - ['-1142736264'] = { Name = 'ch1_09b_vinegrapes_67' }, - ['-1376215389'] = { Name = 'ch1_09b_vinegrapes_68' }, - ['-1892589291'] = { Name = 'ch1_09b_vinegrapes_69' }, - ['978400870'] = { Name = 'ch1_09b_vinegrapes_70' }, - ['-768154061'] = { Name = 'ch1_09b_vinegrapes_71' }, - ['-1006843457'] = { Name = 'ch1_09b_vinegrapes_72' }, - ['230219062'] = { Name = 'ch1_09b_vinegrapes_73' }, - ['-697995636'] = { Name = 'ch1_09b_vinegrapes_77' }, - ['-928492782'] = { Name = 'ch1_09b_vinegrapes_78' }, - ['1612841479'] = { Name = 'ch1_09b_vinegrapes_79' }, - ['1689849489'] = { Name = 'ch1_09b_vinegrapes_80' }, - ['-1445586742'] = { Name = 'ch1_09b_vinegrapes_81' }, - ['-677546920'] = { Name = 'ch1_09b_vinegrapes_82' }, - ['-1879808765'] = { Name = 'ch1_09b_vinegrapes_83' }, - ['2110832828'] = { Name = 'ch1_09b_vinegrapes_84' }, - ['1920903704'] = { Name = 'ch1_09b_vinegrapes_85' }, - ['1644693803'] = { Name = 'ch1_09b_vinegrapes_86' }, - ['1495857005'] = { Name = 'ch1_09b_vinegrapes_87' }, - ['1197691874'] = { Name = 'ch1_09b_vinegrapes_88' }, - ['1014840854'] = { Name = 'ch1_09b_vinegrapes_89' }, - ['-1324472814'] = { Name = 'ch1_09b_vinegrapes_90' }, - ['1257724390'] = { Name = 'ch1_09b_vinegrapes_91' }, - ['1555692907'] = { Name = 'ch1_09b_vinegrapes_92' }, - ['1703513866'] = { Name = 'ch1_09b_vinegrapes_93' }, - ['2017899652'] = { Name = 'ch1_09b_vinegrapes_94' }, - ['822912525'] = { Name = 'ch1_09b_vinegrapes_95' }, - ['67259385'] = { Name = 'ch1_09b_vinegrapes_96' }, - ['1298423484'] = { Name = 'ch1_09b_vinegrapes_97' }, - ['518848974'] = { Name = 'ch1_09b_vinegrapes_98' }, - ['-133221357'] = { Name = 'ch1_09b_vinegrapes_99' }, - ['-1992857993'] = { Name = 'ch1_09b_vineland01' }, - ['1542786035'] = { Name = 'ch1_09b_vineland02' }, - ['812693694'] = { Name = 'ch1_09b_vines_01' }, - ['1109416989'] = { Name = 'ch1_09b_vines_02' }, - ['1994376631'] = { Name = 'ch1_09b_vines_03' }, - ['1661967895'] = { Name = 'ch1_09b_vines_04' }, - ['-780272910'] = { Name = 'ch1_09b_vines_05' }, - ['-1047471336'] = { Name = 'ch1_09b_vines_06' }, - ['1033753392'] = { Name = 'ch1_09b_vines_07' }, - ['726118020'] = { Name = 'ch1_09b_vines_08' }, - ['420088329'] = { Name = 'ch1_09b_vines_09' }, - ['-1589831343'] = { Name = 'ch1_09b_vines_10' }, - ['1774963925'] = { Name = 'ch1_09b_vines_100' }, - ['2064478040'] = { Name = 'ch1_09b_vines_101' }, - ['252245219'] = { Name = 'ch1_09b_vines_11' }, - ['-54112162'] = { Name = 'ch1_09b_vines_12' }, - ['-2085724620'] = { Name = 'ch1_09b_vines_13' }, - ['1902426529'] = { Name = 'ch1_09b_vines_14' }, - ['1586861059'] = { Name = 'ch1_09b_vines_15' }, - ['-854593290'] = { Name = 'ch1_09b_vines_16' }, - ['1012584330'] = { Name = 'ch1_09b_vines_17' }, - ['648848430'] = { Name = 'ch1_09b_vines_18' }, - ['398460501'] = { Name = 'ch1_09b_vines_19' }, - ['600777151'] = { Name = 'ch1_09b_vines_20' }, - ['-1842676099'] = { Name = 'ch1_09b_vines_21' }, - ['1617500922'] = { Name = 'ch1_09b_vines_22' }, - ['-560982206'] = { Name = 'ch1_09b_vines_23' }, - ['-370659854'] = { Name = 'ch1_09b_vines_24' }, - ['980635399'] = { Name = 'ch1_09b_vines_25' }, - ['1164731641'] = { Name = 'ch1_09b_vines_26' }, - ['-1528257544'] = { Name = 'ch1_09b_vines_27' }, - ['314277788'] = { Name = 'ch1_09b_vines_28' }, - ['-544630471'] = { Name = 'ch1_09b_vines_29' }, - ['553851655'] = { Name = 'ch1_09b_vines_30' }, - ['-1897597231'] = { Name = 'ch1_09b_vines_31' }, - ['2092061292'] = { Name = 'ch1_09b_vines_32' }, - ['-386323724'] = { Name = 'ch1_09b_vines_33' }, - ['-667186823'] = { Name = 'ch1_09b_vines_34' }, - ['1182754303'] = { Name = 'ch1_09b_vines_35' }, - ['867745906'] = { Name = 'ch1_09b_vines_36' }, - ['-1613784922'] = { Name = 'ch1_09b_vines_37' }, - ['252081938'] = { Name = 'ch1_09b_vines_38' }, - ['-45886579'] = { Name = 'ch1_09b_vines_39' }, - ['1287437570'] = { Name = 'ch1_09b_vines_40' }, - ['456055271'] = { Name = 'ch1_09b_vines_41' }, - ['-184709755'] = { Name = 'ch1_09b_vines_42' }, - ['1387251956'] = { Name = 'ch1_09b_vines_43' }, - ['1744434056'] = { Name = 'ch1_09b_vines_44' }, - ['1028365868'] = { Name = 'ch1_09b_vines_45' }, - ['1265711735'] = { Name = 'ch1_09b_vines_46' }, - ['-1867856671'] = { Name = 'ch1_09b_vines_47' }, - ['-1637261218'] = { Name = 'ch1_09b_vines_48' }, - ['1964445114'] = { Name = 'ch1_09b_vines_49' }, - ['1404947492'] = { Name = 'ch1_09b_vines_50' }, - ['49457807'] = { Name = 'ch1_09b_vines_51' }, - ['674362637'] = { Name = 'ch1_09b_vines_52' }, - ['1189917326'] = { Name = 'ch1_09b_vines_53' }, - ['1017552386'] = { Name = 'ch1_09b_vines_54' }, - ['1616831858'] = { Name = 'ch1_09b_vines_55' }, - ['1361397503'] = { Name = 'ch1_09b_vines_56' }, - ['-733131451'] = { Name = 'ch1_09b_vines_57' }, - ['-2104350256'] = { Name = 'ch1_09b_vines_58' }, - ['-1461684628'] = { Name = 'ch1_09b_vines_59' }, - ['-1508933710'] = { Name = 'ch1_09b_vines_60' }, - ['1482417224'] = { Name = 'ch1_09b_vines_61' }, - ['-2105919352'] = { Name = 'ch1_09b_vines_62' }, - ['-1394471593'] = { Name = 'ch1_09b_vines_63' }, - ['-686202427'] = { Name = 'ch1_09b_vines_64' }, - ['-1845274726'] = { Name = 'ch1_09b_vines_65' }, - ['-1152013762'] = { Name = 'ch1_09b_vines_66' }, - ['638287756'] = { Name = 'ch1_09b_vines_67' }, - ['-279440858'] = { Name = 'ch1_09b_vines_68' }, - ['946480201'] = { Name = 'ch1_09b_vines_69' }, - ['-1604291212'] = { Name = 'ch1_09b_vines_70' }, - ['837851282'] = { Name = 'ch1_09b_vines_71' }, - ['1137130559'] = { Name = 'ch1_09b_vines_72' }, - ['-650352853'] = { Name = 'ch1_09b_vines_73' }, - ['-1309861747'] = { Name = 'ch1_09b_vines_74' }, - ['124306307'] = { Name = 'ch1_09b_vines_77' }, - ['422995742'] = { Name = 'ch1_09b_vines_78' }, - ['-529238617'] = { Name = 'ch1_09b_vines_79' }, - ['1446403505'] = { Name = 'ch1_09b_vines_80' }, - ['242372138'] = { Name = 'ch1_09b_vines_81' }, - ['481684145'] = { Name = 'ch1_09b_vines_82' }, - ['839849319'] = { Name = 'ch1_09b_vines_83' }, - ['1120384728'] = { Name = 'ch1_09b_vines_84' }, - ['-126049725'] = { Name = 'ch1_09b_vines_85' }, - ['256888809'] = { Name = 'ch1_09b_vines_86' }, - ['1800833017'] = { Name = 'ch1_09b_vines_87' }, - ['2028282646'] = { Name = 'ch1_09b_vines_88' }, - ['1437850800'] = { Name = 'ch1_09b_vines_89' }, - ['880089935'] = { Name = 'ch1_09b_vines_90' }, - ['572782253'] = { Name = 'ch1_09b_vines_91' }, - ['266162720'] = { Name = 'ch1_09b_vines_92' }, - ['1325748331'] = { Name = 'ch1_09b_vines_93' }, - ['-2067940385'] = { Name = 'ch1_09b_vines_94' }, - ['842929885'] = { Name = 'ch1_09b_vines_95' }, - ['1609822792'] = { Name = 'ch1_09b_vines_96' }, - ['-1207754135'] = { Name = 'ch1_09b_vines_97' }, - ['-1380381227'] = { Name = 'ch1_09b_vines_98' }, - ['1930565768'] = { Name = 'ch1_09b_vines_99' }, - ['2032203707'] = { Name = 'ch1_09b_vinesleaf_01' }, - ['1188696878'] = { Name = 'ch1_09b_vinesleaf_02' }, - ['1552105088'] = { Name = 'ch1_09b_vinesleaf_03' }, - ['-1437181403'] = { Name = 'ch1_09b_vinesleaf_04' }, - ['-1345690355'] = { Name = 'ch1_09b_vinesleaf_05' }, - ['-2138077544'] = { Name = 'ch1_09b_vinesleaf_06' }, - ['-1816220426'] = { Name = 'ch1_09b_vinesleaf_07' }, - ['-503461517'] = { Name = 'ch1_09b_vinesleaf_08' }, - ['-247175168'] = { Name = 'ch1_09b_vinesleaf_09' }, - ['2037348656'] = { Name = 'ch1_09b_vinesleaf_10' }, - ['145021609'] = { Name = 'ch1_09b_vinesleaf_100' }, - ['-92389796'] = { Name = 'ch1_09b_vinesleaf_101' }, - ['1347430130'] = { Name = 'ch1_09b_vinesleaf_11' }, - ['1040024141'] = { Name = 'ch1_09b_vinesleaf_12' }, - ['1830248584'] = { Name = 'ch1_09b_vinesleaf_13' }, - ['1654672282'] = { Name = 'ch1_09b_vinesleaf_14' }, - ['1357555759'] = { Name = 'ch1_09b_vinesleaf_15' }, - ['1193579683'] = { Name = 'ch1_09b_vinesleaf_16' }, - ['-1249447578'] = { Name = 'ch1_09b_vinesleaf_17' }, - ['-1412833812'] = { Name = 'ch1_09b_vinesleaf_18' }, - ['-1700775015'] = { Name = 'ch1_09b_vinesleaf_19' }, - ['365179715'] = { Name = 'ch1_09b_vinesleaf_20' }, - ['1888807139'] = { Name = 'ch1_09b_vinesleaf_21' }, - ['1659522446'] = { Name = 'ch1_09b_vinesleaf_22' }, - ['1291657652'] = { Name = 'ch1_09b_vinesleaf_23' }, - ['1052214569'] = { Name = 'ch1_09b_vinesleaf_24' }, - ['-1349327138'] = { Name = 'ch1_09b_vinesleaf_25' }, - ['-1722172820'] = { Name = 'ch1_09b_vinesleaf_26' }, - ['-1951981817'] = { Name = 'ch1_09b_vinesleaf_27' }, - ['-195694493'] = { Name = 'ch1_09b_vinesleaf_28' }, - ['-427141940'] = { Name = 'ch1_09b_vinesleaf_29' }, - ['317770156'] = { Name = 'ch1_09b_vinesleaf_30' }, - ['1531894375'] = { Name = 'ch1_09b_vinesleaf_31' }, - ['1837203148'] = { Name = 'ch1_09b_vinesleaf_32' }, - ['913510616'] = { Name = 'ch1_09b_vinesleaf_33' }, - ['1239594935'] = { Name = 'ch1_09b_vinesleaf_34' }, - ['1401408257'] = { Name = 'ch1_09b_vinesleaf_35' }, - ['1703964434'] = { Name = 'ch1_09b_vinesleaf_36' }, - ['1870299878'] = { Name = 'ch1_09b_vinesleaf_37' }, - ['-2127288743'] = { Name = 'ch1_09b_vinesleaf_38' }, - ['-928697022'] = { Name = 'ch1_09b_vinesleaf_39' }, - ['849637175'] = { Name = 'ch1_09b_vinesleaf_40' }, - ['-1255705541'] = { Name = 'ch1_09b_vinesleaf_41' }, - ['-1428332633'] = { Name = 'ch1_09b_vinesleaf_42' }, - ['-1719026432'] = { Name = 'ch1_09b_vinesleaf_43' }, - ['-347512702'] = { Name = 'ch1_09b_vinesleaf_44' }, - ['1844700629'] = { Name = 'ch1_09b_vinesleaf_45' }, - ['1605749081'] = { Name = 'ch1_09b_vinesleaf_46' }, - ['1383083726'] = { Name = 'ch1_09b_vinesleaf_47' }, - ['1143542336'] = { Name = 'ch1_09b_vinesleaf_48' }, - ['-1335760288'] = { Name = 'ch1_09b_vinesleaf_49' }, - ['170827604'] = { Name = 'ch1_09b_vinesleaf_50' }, - ['182034602'] = { Name = 'ch1_09b_vinesleaf_51' }, - ['1559348445'] = { Name = 'ch1_09b_vinesleaf_52' }, - ['-202018078'] = { Name = 'ch1_09b_vinesleaf_53' }, - ['-1017867871'] = { Name = 'ch1_09b_vinesleaf_54' }, - ['-669861091'] = { Name = 'ch1_09b_vinesleaf_55' }, - ['701095562'] = { Name = 'ch1_09b_vinesleaf_56' }, - ['-1463853965'] = { Name = 'ch1_09b_vinesleaf_57' }, - ['-1403559005'] = { Name = 'ch1_09b_vinesleaf_58' }, - ['2104001990'] = { Name = 'ch1_09b_vinesleaf_59' }, - ['-1232340596'] = { Name = 'ch1_09b_vinesleaf_60' }, - ['422461135'] = { Name = 'ch1_09b_vinesleaf_61' }, - ['-409248854'] = { Name = 'ch1_09b_vinesleaf_62' }, - ['-1112733746'] = { Name = 'ch1_09b_vinesleaf_63' }, - ['-907042733'] = { Name = 'ch1_09b_vinesleaf_64' }, - ['1311877337'] = { Name = 'ch1_09b_vinesleaf_65' }, - ['609637663'] = { Name = 'ch1_09b_vinesleaf_66' }, - ['886896172'] = { Name = 'ch1_09b_vinesleaf_67' }, - ['52105897'] = { Name = 'ch1_09b_vinesleaf_68' }, - ['1469397768'] = { Name = 'ch1_09b_vinesleaf_69' }, - ['-2043834220'] = { Name = 'ch1_09b_vinesleaf_70' }, - ['-1717618825'] = { Name = 'ch1_09b_vinesleaf_71' }, - ['891776645'] = { Name = 'ch1_09b_vinesleaf_72' }, - ['116724257'] = { Name = 'ch1_09b_vinesleaf_73' }, - ['-758404657'] = { Name = 'ch1_09b_vinesleaf_74' }, - ['1308532787'] = { Name = 'ch1_09b_vinesleaf_77' }, - ['432060344'] = { Name = 'ch1_09b_vinesleaf_78' }, - ['1809210338'] = { Name = 'ch1_09b_vinesleaf_79' }, - ['2264728'] = { Name = 'ch1_09b_vinesleaf_80' }, - ['-304289267'] = { Name = 'ch1_09b_vinesleaf_81' }, - ['1426831465'] = { Name = 'ch1_09b_vinesleaf_82' }, - ['774793995'] = { Name = 'ch1_09b_vinesleaf_83' }, - ['534433380'] = { Name = 'ch1_09b_vinesleaf_84' }, - ['160473552'] = { Name = 'ch1_09b_vinesleaf_85' }, - ['-1813662180'] = { Name = 'ch1_09b_vinesleaf_86' }, - ['-2112351615'] = { Name = 'ch1_09b_vinesleaf_87' }, - ['2020802359'] = { Name = 'ch1_09b_vinesleaf_88' }, - ['1723620298'] = { Name = 'ch1_09b_vinesleaf_89' }, - ['-1084322231'] = { Name = 'ch1_09b_vinesleaf_90' }, - ['-1362957042'] = { Name = 'ch1_09b_vinesleaf_91' }, - ['-774196483'] = { Name = 'ch1_09b_vinesleaf_92' }, - ['-480291322'] = { Name = 'ch1_09b_vinesleaf_93' }, - ['-24212380'] = { Name = 'ch1_09b_vinesleaf_94' }, - ['156344810'] = { Name = 'ch1_09b_vinesleaf_95' }, - ['-2002313069'] = { Name = 'ch1_09b_vinesleaf_96' }, - ['-1702509488'] = { Name = 'ch1_09b_vinesleaf_97' }, - ['-1235944466'] = { Name = 'ch1_09b_vinesleaf_98' }, - ['-938959015'] = { Name = 'ch1_09b_vinesleaf_99' }, - ['567217965'] = { Name = 'ch1_09b_vineslmbs_01' }, - ['1268081337'] = { Name = 'ch1_09b_vineslmbs_02' }, - ['-1297764136'] = { Name = 'ch1_09b_vineslmbs_03' }, - ['-1609790554'] = { Name = 'ch1_09b_vineslmbs_04' }, - ['381942039'] = { Name = 'ch1_09b_vineslmbs_05' }, - ['142433418'] = { Name = 'ch1_09b_vineslmbs_06' }, - ['1655509224'] = { Name = 'ch1_09b_vineslmbs_07' }, - ['-1805126563'] = { Name = 'ch1_09b_vineslmbs_08' }, - ['-967223233'] = { Name = 'ch1_09b_vineslmbs_09' }, - ['-971121840'] = { Name = 'ch1_09b_vineslmbs_10' }, - ['1333299022'] = { Name = 'ch1_09b_vineslmbs_100' }, - ['1572021187'] = { Name = 'ch1_09b_vineslmbs_101' }, - ['-17183477'] = { Name = 'ch1_09b_vineslmbs_11' }, - ['-522219305'] = { Name = 'ch1_09b_vineslmbs_12' }, - ['-1990893120'] = { Name = 'ch1_09b_vineslmbs_13' }, - ['2066531695'] = { Name = 'ch1_09b_vineslmbs_14' }, - ['-1207288023'] = { Name = 'ch1_09b_vineslmbs_15' }, - ['459539867'] = { Name = 'ch1_09b_vineslmbs_17' }, - ['760293749'] = { Name = 'ch1_09b_vineslmbs_18' }, - ['99572402'] = { Name = 'ch1_09b_vineslmbs_19' }, - ['1158862852'] = { Name = 'ch1_09b_vineslmbs_20' }, - ['2009120083'] = { Name = 'ch1_09b_vineslmbs_21' }, - ['-1980243519'] = { Name = 'ch1_09b_vineslmbs_22' }, - ['286683148'] = { Name = 'ch1_09b_vineslmbs_23' }, - ['65590705'] = { Name = 'ch1_09b_vineslmbs_24' }, - ['901003591'] = { Name = 'ch1_09b_vineslmbs_25' }, - ['645765850'] = { Name = 'ch1_09b_vineslmbs_26' }, - ['-1469342028'] = { Name = 'ch1_09b_vineslmbs_27' }, - ['-1146305226'] = { Name = 'ch1_09b_vineslmbs_28' }, - ['-304600688'] = { Name = 'ch1_09b_vineslmbs_29' }, - ['441349028'] = { Name = 'ch1_09b_vineslmbs_30' }, - ['881829926'] = { Name = 'ch1_09b_vineslmbs_31' }, - ['1120715936'] = { Name = 'ch1_09b_vineslmbs_32' }, - ['-40158650'] = { Name = 'ch1_09b_vineslmbs_33' }, - ['200955652'] = { Name = 'ch1_09b_vineslmbs_34' }, - ['649825414'] = { Name = 'ch1_09b_vineslmbs_35' }, - ['880617481'] = { Name = 'ch1_09b_vineslmbs_36' }, - ['-1259886384'] = { Name = 'ch1_09b_vineslmbs_37' }, - ['-1026767718'] = { Name = 'ch1_09b_vineslmbs_38' }, - ['-772054281'] = { Name = 'ch1_09b_vineslmbs_39' }, - ['529431884'] = { Name = 'ch1_09b_vineslmbs_40' }, - ['747083582'] = { Name = 'ch1_09b_vineslmbs_41' }, - ['984232835'] = { Name = 'ch1_09b_vineslmbs_42' }, - ['-1189892024'] = { Name = 'ch1_09b_vineslmbs_43' }, - ['-924921890'] = { Name = 'ch1_09b_vineslmbs_44' }, - ['-692163683'] = { Name = 'ch1_09b_vineslmbs_45' }, - ['-480475927'] = { Name = 'ch1_09b_vineslmbs_46' }, - ['1649935058'] = { Name = 'ch1_09b_vineslmbs_47' }, - ['-1869127856'] = { Name = 'ch1_09b_vineslmbs_48' }, - ['-1614479957'] = { Name = 'ch1_09b_vineslmbs_49' }, - ['826188752'] = { Name = 'ch1_09b_vineslmbs_50' }, - ['236019062'] = { Name = 'ch1_09b_vineslmbs_51' }, - ['460650557'] = { Name = 'ch1_09b_vineslmbs_52' }, - ['2021503565'] = { Name = 'ch1_09b_vineslmbs_53' }, - ['-2009312822'] = { Name = 'ch1_09b_vineslmbs_54' }, - ['1154927360'] = { Name = 'ch1_09b_vineslmbs_55' }, - ['1796544380'] = { Name = 'ch1_09b_vineslmbs_56' }, - ['-1321655357'] = { Name = 'ch1_09b_vineslmbs_57' }, - ['-982365131'] = { Name = 'ch1_09b_vineslmbs_58' }, - ['-1684244342'] = { Name = 'ch1_09b_vineslmbs_59' }, - ['-1544578552'] = { Name = 'ch1_09b_vineslmbs_60' }, - ['-1213218424'] = { Name = 'ch1_09b_vineslmbs_61' }, - ['-378493683'] = { Name = 'ch1_09b_vineslmbs_62' }, - ['-610530972'] = { Name = 'ch1_09b_vineslmbs_63' }, - ['199944705'] = { Name = 'ch1_09b_vineslmbs_64' }, - ['-29798754'] = { Name = 'ch1_09b_vineslmbs_65' }, - ['813609768'] = { Name = 'ch1_09b_vineslmbs_66' }, - ['582227859'] = { Name = 'ch1_09b_vineslmbs_67' }, - ['1392932919'] = { Name = 'ch1_09b_vineslmbs_68' }, - ['1161747624'] = { Name = 'ch1_09b_vineslmbs_69' }, - ['1972781850'] = { Name = 'ch1_09b_vineslmbs_70' }, - ['1674387336'] = { Name = 'ch1_09b_vineslmbs_71' }, - ['-803637217'] = { Name = 'ch1_09b_vineslmbs_72' }, - ['-1170617248'] = { Name = 'ch1_09b_vineslmbs_73' }, - ['-1474877413'] = { Name = 'ch1_09b_vineslmbs_74' }, - ['-1724609962'] = { Name = 'ch1_09b_vineslmbs_75' }, - ['-174669027'] = { Name = 'ch1_09b_vineslmbs_77' }, - ['-479420727'] = { Name = 'ch1_09b_vineslmbs_78' }, - ['1343682588'] = { Name = 'ch1_09b_vineslmbs_79' }, - ['-1130606083'] = { Name = 'ch1_09b_vineslmbs_80' }, - ['1516604817'] = { Name = 'ch1_09b_vineslmbs_81' }, - ['1763388156'] = { Name = 'ch1_09b_vineslmbs_82' }, - ['2008205355'] = { Name = 'ch1_09b_vineslmbs_83' }, - ['-2040470137'] = { Name = 'ch1_09b_vineslmbs_84' }, - ['591404871'] = { Name = 'ch1_09b_vineslmbs_85' }, - ['840023274'] = { Name = 'ch1_09b_vineslmbs_86' }, - ['1010487612'] = { Name = 'ch1_09b_vineslmbs_87' }, - ['-624751026'] = { Name = 'ch1_09b_vineslmbs_88' }, - ['-405100419'] = { Name = 'ch1_09b_vineslmbs_89' }, - ['-1257029677'] = { Name = 'ch1_09b_vineslmbs_90' }, - ['-28061097'] = { Name = 'ch1_09b_vineslmbs_91' }, - ['272266788'] = { Name = 'ch1_09b_vineslmbs_92' }, - ['-533162463'] = { Name = 'ch1_09b_vineslmbs_93' }, - ['-336155235'] = { Name = 'ch1_09b_vineslmbs_94' }, - ['900546825'] = { Name = 'ch1_09b_vineslmbs_95' }, - ['1200743634'] = { Name = 'ch1_09b_vineslmbs_96' }, - ['2001650735'] = { Name = 'ch1_09b_vineslmbs_97' }, - ['633905448'] = { Name = 'ch1_09b_vineslmbs_98' }, - ['470191524'] = { Name = 'ch1_09b_vineslmbs_99' }, - ['956299420'] = { Name = 'ch1_09b_vinetrck_01_lod' }, - ['1498327417'] = { Name = 'ch1_09b_vinetrck_01' }, - ['-1731036555'] = { Name = 'ch1_09b_vinetrck_02_lod' }, - ['1813008124'] = { Name = 'ch1_09b_vinetrck_02' }, - ['-302345382'] = { Name = 'ch1_09b_vnld01_dec' }, - ['-1044729294'] = { Name = 'ch1_09b_vnyrd_dec' }, - ['166163626'] = { Name = 'ch1_09b_vnyrdblg' }, - ['1181626056'] = { Name = 'ch1_09b_water_vin' }, - ['1915516570'] = { Name = 'ch1_09b_weed_02' }, - ['1196765228'] = { Name = 'ch1_10_culdec_01' }, - ['1913675533'] = { Name = 'ch1_10_culvert02_slod' }, - ['-69887563'] = { Name = 'ch1_10_culvert02' }, - ['-433301545'] = { Name = 'ch1_10_dc_029' }, - ['-773331923'] = { Name = 'ch1_10_dec_00' }, - ['-529104566'] = { Name = 'ch1_10_dec_01' }, - ['-155931194'] = { Name = 'ch1_10_dec_02' }, - ['77089165'] = { Name = 'ch1_10_dec_03' }, - ['-209442983'] = { Name = 'ch1_10_dec_04' }, - ['4636894'] = { Name = 'ch1_10_dec_05' }, - ['369683554'] = { Name = 'ch1_10_dec_06' }, - ['616073681'] = { Name = 'ch1_10_dec_07' }, - ['951562703'] = { Name = 'ch1_10_dec_08' }, - ['1223971400'] = { Name = 'ch1_10_dec_09' }, - ['-1111418028'] = { Name = 'ch1_10_glb_01' }, - ['-1942229670'] = { Name = 'ch1_10_glue' }, - ['484690802'] = { Name = 'ch1_10_glue001' }, - ['194455769'] = { Name = 'ch1_10_glue002' }, - ['30283079'] = { Name = 'ch1_10_glue003' }, - ['1838438796'] = { Name = 'ch1_10_h03dc004' }, - ['690735636'] = { Name = 'ch1_10_h04dc_06' }, - ['728814705'] = { Name = 'ch1_10_house04_wall' }, - ['-9682560'] = { Name = 'ch1_10_house04' }, - ['1374177345'] = { Name = 'ch1_10_house101' }, - ['1278393558'] = { Name = 'ch1_10_house102' }, - ['1119570181'] = { Name = 'ch1_10_house13' }, - ['1305535147'] = { Name = 'ch1_10_house2drivedecals' }, - ['-1869378058'] = { Name = 'ch1_10_land_01' }, - ['-1642256119'] = { Name = 'ch1_10_land_02' }, - ['1810285725'] = { Name = 'ch1_10_land_03' }, - ['2040225798'] = { Name = 'ch1_10_land_04' }, - ['975134975'] = { Name = 'ch1_10_land_05' }, - ['759154496'] = { Name = 'ch1_10_land_06' }, - ['1603808244'] = { Name = 'ch1_10_land_07' }, - ['1345129758'] = { Name = 'ch1_10_land_08' }, - ['50557640'] = { Name = 'ch1_10_land_09' }, - ['1204979748'] = { Name = 'ch1_10_lefthserail' }, - ['685702032'] = { Name = 'ch1_10_midhouse' }, - ['737163879'] = { Name = 'ch1_10_overpass02_barsa' }, - ['506568426'] = { Name = 'ch1_10_overpass02_barsb' }, - ['-936323916'] = { Name = 'ch1_10_overpass02' }, - ['-1036301905'] = { Name = 'ch1_10_pools' }, - ['18285157'] = { Name = 'ch1_10_props_l_076' }, - ['1791424442'] = { Name = 'ch1_10_retwall001' }, - ['1512199793'] = { Name = 'ch1_10_retwall002' }, - ['-1792923277'] = { Name = 'ch1_11__11ch1254' }, - ['-980418028'] = { Name = 'ch1_11__11ch1329' }, - ['-1131022268'] = { Name = 'ch1_11__11ch1904' }, - ['-1656543151'] = { Name = 'ch1_11_24-7_crprkdecals' }, - ['-1312703405'] = { Name = 'ch1_11_24-7_shop01main' }, - ['-102453559'] = { Name = 'ch1_11_24-7_undergnd' }, - ['-1693922705'] = { Name = 'ch1_11_bchrks_2' }, - ['-1416868861'] = { Name = 'ch1_11_bchrks_2a' }, - ['1749574899'] = { Name = 'ch1_11_bchrks_3' }, - ['1872196497'] = { Name = 'ch1_11_bchrks_4' }, - ['-69104601'] = { Name = 'ch1_11_bchrks_5' }, - ['-756581309'] = { Name = 'ch1_11_blg01_main' }, - ['-2115088922'] = { Name = 'ch1_11_blg01_stilts_001' }, - ['-1538813180'] = { Name = 'ch1_11_blg01_stilts_002' }, - ['-625410074'] = { Name = 'ch1_11_blg01_stilts_003' }, - ['-2107431659'] = { Name = 'ch1_11_blg01_stilts' }, - ['2042292455'] = { Name = 'ch1_11_blg02_decals' }, - ['-1686553881'] = { Name = 'ch1_11_blg02_main' }, - ['2027674467'] = { Name = 'ch1_11_blg03_decals' }, - ['-468652059'] = { Name = 'ch1_11_blg03_main' }, - ['-299603091'] = { Name = 'ch1_11_blg04_decals' }, - ['969970184'] = { Name = 'ch1_11_blg04_main' }, - ['134855993'] = { Name = 'ch1_11_blg05_decals' }, - ['1942074108'] = { Name = 'ch1_11_blg05_stilts' }, - ['-1400334032'] = { Name = 'ch1_11_blg06_main' }, - ['1833438516'] = { Name = 'ch1_11_blg06_stilts' }, - ['1852379673'] = { Name = 'ch1_11_blg07_decals' }, - ['-1097217323'] = { Name = 'ch1_11_blg07_main_rail' }, - ['-1259589287'] = { Name = 'ch1_11_blg07_main' }, - ['634471883'] = { Name = 'ch1_11_blg07stlts' }, - ['1827470136'] = { Name = 'ch1_11_blgs02_r' }, - ['562935445'] = { Name = 'ch1_11_blgs02pvmnt' }, - ['-954307629'] = { Name = 'ch1_11_bridgeshadprox' }, - ['-1291758715'] = { Name = 'ch1_11_ch1_malpier29' }, - ['924838436'] = { Name = 'ch1_11_ch1_pier_104' }, - ['-1994000919'] = { Name = 'ch1_11_ch1_shops21' }, - ['-1704892276'] = { Name = 'ch1_11_ch1pier_350' }, - ['-38864366'] = { Name = 'ch1_11_ch1pier_350a' }, - ['2051004802'] = { Name = 'ch1_11_coastline29' }, - ['1715084521'] = { Name = 'ch1_11_cornerblend_01' }, - ['-1332332101'] = { Name = 'ch1_11_curved_rail_01_lod' }, - ['306431989'] = { Name = 'ch1_11_curved_rail_01' }, - ['-1538512189'] = { Name = 'ch1_11_decal000_lod' }, - ['665716186'] = { Name = 'ch1_11_decal000' }, - ['1125393270'] = { Name = 'ch1_11_foam_01' }, - ['-842188566'] = { Name = 'ch1_11_foam_02' }, - ['-53243659'] = { Name = 'ch1_11_hs01_decals' }, - ['-1176062544'] = { Name = 'ch1_11_ladder_01_lod' }, - ['1032359564'] = { Name = 'ch1_11_ladder_01' }, - ['364360972'] = { Name = 'ch1_11_ladder_02_lod' }, - ['1800366617'] = { Name = 'ch1_11_ladder_02' }, - ['1739602733'] = { Name = 'ch1_11_ladder_pier_lod' }, - ['1259156095'] = { Name = 'ch1_11_ladder_pier' }, - ['627261306'] = { Name = 'ch1_11_land01' }, - ['2074534962'] = { Name = 'ch1_11_land01b' }, - ['-1007815474'] = { Name = 'ch1_11_lod00' }, - ['823362327'] = { Name = 'ch1_11_main_rail01_00' }, - ['594864082'] = { Name = 'ch1_11_main_rail01_01' }, - ['1799518064'] = { Name = 'ch1_11_main_rail01_02' }, - ['1560304364'] = { Name = 'ch1_11_main_rail01_03' }, - ['1320140363'] = { Name = 'ch1_11_main_rail01_04' }, - ['845448629'] = { Name = 'ch1_11_main_rail01_05' }, - ['-1272411845'] = { Name = 'ch1_11_main_rail01_06' }, - ['-1512444770'] = { Name = 'ch1_11_main_rail01_07' }, - ['-1987464194'] = { Name = 'ch1_11_main_rail01_08' }, - ['2066487107'] = { Name = 'ch1_11_main_rail01_09' }, - ['522378766'] = { Name = 'ch1_11_main_rail01_10' }, - ['819921294'] = { Name = 'ch1_11_main_rail01_11' }, - ['1118414115'] = { Name = 'ch1_11_main_rail01_12' }, - ['1424804265'] = { Name = 'ch1_11_main_rail01_13' }, - ['-99675157'] = { Name = 'ch1_11_main_rail01_14' }, - ['139178084'] = { Name = 'ch1_11_main_rail01_15' }, - ['494000816'] = { Name = 'ch1_11_main_rail01_16' }, - ['2076575242'] = { Name = 'ch1_11_main_rail0200' }, - ['1294313670'] = { Name = 'ch1_11_main_rail0201' }, - ['1601785197'] = { Name = 'ch1_11_main_rail0202' }, - ['840692403'] = { Name = 'ch1_11_main_rail0203' }, - ['1137481236'] = { Name = 'ch1_11_main_rail0204' }, - ['-85359537'] = { Name = 'ch1_11_main_rail0205' }, - ['682614747'] = { Name = 'ch1_11_main_rail0206' }, - ['-9695912'] = { Name = 'ch1_11_main_rail0207' }, - ['152248486'] = { Name = 'ch1_11_main_rail0208' }, - ['-471181743'] = { Name = 'ch1_11_main_rail0209' }, - ['769877590'] = { Name = 'ch1_11_main_rail0210' }, - ['1253757276'] = { Name = 'ch1_11_main_rail03_00' }, - ['1090502118'] = { Name = 'ch1_11_main_rail03_01' }, - ['784996731'] = { Name = 'ch1_11_main_rail03_02' }, - ['358868655'] = { Name = 'ch1_11_main_rail03_03' }, - ['51724818'] = { Name = 'ch1_11_main_rail03_04' }, - ['-101437488'] = { Name = 'ch1_11_main_rail03_05' }, - ['82492468'] = { Name = 'ch1_11_path01' }, - ['2017886232'] = { Name = 'ch1_11_pier_decals' }, - ['1754720367'] = { Name = 'ch1_11_pier_endmain01' }, - ['1331475963'] = { Name = 'ch1_11_pier_endmain02' }, - ['-1849260014'] = { Name = 'ch1_11_pier_steps' }, - ['1076330640'] = { Name = 'ch1_11_pier_stilts' }, - ['-1555478668'] = { Name = 'ch1_11_pierendsupport' }, - ['-1649680846'] = { Name = 'ch1_11_pierstartsupportb' }, - ['699352511'] = { Name = 'ch1_11_piersupport_lod_015' }, - ['874403617'] = { Name = 'ch1_11_piersupport_lod_047' }, - ['492906817'] = { Name = 'ch1_11_piersupport' }, - ['4028011'] = { Name = 'ch1_11_piersupport01_lod' }, - ['1527405796'] = { Name = 'ch1_11_piersupport02_lod' }, - ['-968762450'] = { Name = 'ch1_11_props_cablemsh101a_thvy' }, - ['-1061845539'] = { Name = 'ch1_11_props_l_007' }, - ['-833085150'] = { Name = 'ch1_11_props_l_008' }, - ['-1694320008'] = { Name = 'ch1_11_props_l_009' }, - ['-412986290'] = { Name = 'ch1_11_props_l_010' }, - ['1998177463'] = { Name = 'ch1_11_props_s_011' }, - ['694167873'] = { Name = 'ch1_11_props_s_012' }, - ['-1170093201'] = { Name = 'ch1_11_road_side_rail_01' }, - ['-83112698'] = { Name = 'ch1_11_road_side_rail_02' }, - ['36172687'] = { Name = 'ch1_11_road_side_rail' }, - ['793291625'] = { Name = 'ch1_11_roaddrive_decals' }, - ['1957920665'] = { Name = 'ch1_11_roadfile' }, - ['-556892758'] = { Name = 'ch1_11_rounded_r' }, - ['475581194'] = { Name = 'ch1_11_scmall_gun_decals' }, - ['1353702351'] = { Name = 'ch1_11_scmall_rrgnddcls02' }, - ['-1179216778'] = { Name = 'ch1_11_scmall_shop01decals' }, - ['-1378714059'] = { Name = 'ch1_11_scmall_shop02decals' }, - ['-1803158185'] = { Name = 'ch1_11_scmall_shop05decals' }, - ['1948008214'] = { Name = 'ch1_11_sea_ch1_11_uw_00' }, - ['-1086139038'] = { Name = 'ch1_11_sea_ch1_11_uw_01' }, - ['-811567587'] = { Name = 'ch1_11_sea_ch1_11_uw_02' }, - ['841300765'] = { Name = 'ch1_11_sea_ch1_11_uw_03' }, - ['1149099982'] = { Name = 'ch1_11_sea_ch1_11_uw_04' }, - ['-1915063662'] = { Name = 'ch1_11_sea_ch1_11_uw_05' }, - ['1762516256'] = { Name = 'ch1_11_sea_ch1_11_uw_06_lod' }, - ['536942293'] = { Name = 'ch1_11_sea_ch1_11_uw_06' }, - ['-268004453'] = { Name = 'ch1_11_sea_ch1_11_uw_07_lod' }, - ['-376722965'] = { Name = 'ch1_11_sea_ch1_11_uw_07' }, - ['-1907207170'] = { Name = 'ch1_11_sea_ch1_11_uw_dec_00' }, - ['1250872452'] = { Name = 'ch1_11_sea_ch1_11_uw_dec_01' }, - ['954607923'] = { Name = 'ch1_11_sea_ch1_11_uw_dec_02' }, - ['-211673556'] = { Name = 'ch1_11_sea_ch1_11_uw_dec_03' }, - ['1462691268'] = { Name = 'ch1_11_sea_ch1_11_uw_dec_04' }, - ['268556139'] = { Name = 'ch1_11_sea_ch1_11_uw_dec_05' }, - ['-1827893060'] = { Name = 'ch1_11_shp02_blg01' }, - ['-1336226984'] = { Name = 'ch1_11_shp02_blg02' }, - ['1655484413'] = { Name = 'ch1_11_shp02_blg03' }, - ['1813627611'] = { Name = 'ch1_11_shp02_blg04' }, - ['1112566496'] = { Name = 'ch1_11_shp02_crpk' }, - ['1063314321'] = { Name = 'ch1_11_shps01_crpk' }, - ['-1415871901'] = { Name = 'ch1_11_signsup' }, - ['-2084454463'] = { Name = 'ch1_11_small_curved' }, - ['-1878437924'] = { Name = 'ch1_11_stair_rail_00' }, - ['-985122215'] = { Name = 'ch1_11_stair_rail_01' }, - ['-1283057963'] = { Name = 'ch1_11_stair_rail_02' }, - ['-354286192'] = { Name = 'ch1_11_stair_rail_03' }, - ['-667525067'] = { Name = 'ch1_11_stair_rail_04' }, - ['241159307'] = { Name = 'ch1_11_stair_rail_05' }, - ['-1883749163'] = { Name = 'ch1_11_stair_rail_lod_02' }, - ['890862219'] = { Name = 'ch1_11_tattoo_e_dummy' }, - ['438140813'] = { Name = 'ch1_11_tattoo_emmisive' }, - ['-281202665'] = { Name = 'ch1_12_247_emissive_dummy' }, - ['1651997636'] = { Name = 'ch1_12_beach_01' }, - ['-192798761'] = { Name = 'ch1_12_beach_02' }, - ['1363179345'] = { Name = 'ch1_12_beach_roks_001' }, - ['739257585'] = { Name = 'ch1_12_beach_roks_002' }, - ['2043693172'] = { Name = 'ch1_12_beach_roks_003' }, - ['-408378321'] = { Name = 'ch1_12_beach_roks_005' }, - ['922600152'] = { Name = 'ch1_12_beach_roks_006' }, - ['1411710246'] = { Name = 'ch1_12_beach_roks_007' }, - ['-1561290060'] = { Name = 'ch1_12_beach_roks_009' }, - ['1073641596'] = { Name = 'ch1_12_bh01_decals' }, - ['-12797071'] = { Name = 'ch1_12_bh01_main' }, - ['1323368548'] = { Name = 'ch1_12_bh01_rails_02' }, - ['171529128'] = { Name = 'ch1_12_bh01_rails' }, - ['-1053725490'] = { Name = 'ch1_12_bh01_steps' }, - ['950569618'] = { Name = 'ch1_12_bh01_temp_steps' }, - ['1996891865'] = { Name = 'ch1_12_blend_0_01' }, - ['1329317140'] = { Name = 'ch1_12_br1' }, - ['598665762'] = { Name = 'ch1_12_bridgeshadprox' }, - ['-2084311198'] = { Name = 'ch1_12_buildglass006' }, - ['-561312763'] = { Name = 'ch1_12_buildl_79' }, - ['-260817345'] = { Name = 'ch1_12_buildl_r' }, - ['1617249976'] = { Name = 'ch1_12_buildl_r2' }, - ['914715385'] = { Name = 'ch1_12_buildl_r3' }, - ['1403443872'] = { Name = 'ch1_12_buildldecals_18' }, - ['-112138582'] = { Name = 'ch1_12_ch01_02_decalh04ih' }, - ['1602708836'] = { Name = 'ch1_12_ch01_02_h05' }, - ['-1109256523'] = { Name = 'ch1_12_ch01_02_h05decalih' }, - ['904925962'] = { Name = 'ch1_12_ch01_02_h0r' }, - ['1215801341'] = { Name = 'ch1_12_ch01_02_h0r1' }, - ['1445282648'] = { Name = 'ch1_12_ch01_02_h0r2' }, - ['-1400318427'] = { Name = 'ch1_12_ch01_02_house3decalih' }, - ['-1957888777'] = { Name = 'ch1_12_ch01_02_ih08_01' }, - ['537536131'] = { Name = 'ch1_12_ch01_02_ih08_06' }, - ['-2062946576'] = { Name = 'ch1_12_ch1_02_buildl_83' }, - ['-2017299437'] = { Name = 'ch1_12_ch1_02_plat_16_lod' }, - ['55622169'] = { Name = 'ch1_12_ch1_02_plat_16' }, - ['-1075203596'] = { Name = 'ch1_12_ch1_02_plat_20' }, - ['1018802692'] = { Name = 'ch1_12_coastobj_07' }, - ['511963693'] = { Name = 'ch1_12_coastobj_11' }, - ['1412980121'] = { Name = 'ch1_12_coastobj_18' }, - ['1869611808'] = { Name = 'ch1_12_coastobj_rail' }, - ['-877416922'] = { Name = 'ch1_12_coastobj_steps' }, - ['1486862660'] = { Name = 'ch1_12_coastrok_004' }, - ['-1087042403'] = { Name = 'ch1_12_cstrckedge_1' }, - ['-330602807'] = { Name = 'ch1_12_cstrckedge_2' }, - ['1812369115'] = { Name = 'ch1_12_drive05' }, - ['-630854760'] = { Name = 'ch1_12_drive06' }, - ['-1619364414'] = { Name = 'ch1_12_drive07' }, - ['1681179043'] = { Name = 'ch1_12_fence_001' }, - ['-1953922695'] = { Name = 'ch1_12_fences_001' }, - ['-320256969'] = { Name = 'ch1_12_fences_003' }, - ['-901998365'] = { Name = 'ch1_12_h04__rail_002' }, - ['459747551'] = { Name = 'ch1_12_h04__rail_01' }, - ['-700109364'] = { Name = 'ch1_12_h04_ih099' }, - ['1403454883'] = { Name = 'ch1_12_h04_ihc15' }, - ['1039375821'] = { Name = 'ch1_12_h04_rail_02' }, - ['256589949'] = { Name = 'ch1_12_h04_rail_03' }, - ['-1839216988'] = { Name = 'ch1_12_h04_rail_04' }, - ['1995116475'] = { Name = 'ch1_12_h04_rail_06' }, - ['-342532609'] = { Name = 'ch1_12_h04_steps' }, - ['557801218'] = { Name = 'ch1_12_house03ih_rail2' }, - ['1243662224'] = { Name = 'ch1_12_house03ih_roof' }, - ['-382851166'] = { Name = 'ch1_12_house03ih' }, - ['-638508875'] = { Name = 'ch1_12_houseblend006' }, - ['-2116315629'] = { Name = 'ch1_12_ih07_00' }, - ['-1191213990'] = { Name = 'ch1_12_ih07_01' }, - ['-286297464'] = { Name = 'ch1_12_ih07_r' }, - ['1521645475'] = { Name = 'ch1_12_ih07_r1' }, - ['-475821705'] = { Name = 'ch1_12_ih07_r2' }, - ['1540535528'] = { Name = 'ch1_12_ihwhouse_07_r' }, - ['472554019'] = { Name = 'ch1_12_ihwhouse_07_r2' }, - ['252379108'] = { Name = 'ch1_12_ihwhouse_07_r3' }, - ['694472717'] = { Name = 'ch1_12_ihwhouse_07_s' }, - ['-1483279250'] = { Name = 'ch1_12_ihwhouse_07' }, - ['1159112960'] = { Name = 'ch1_12_ihwhousedecal_15' }, - ['2018182471'] = { Name = 'ch1_12_island_001' }, - ['-498365593'] = { Name = 'ch1_12_lnd_001' }, - ['1729046003'] = { Name = 'ch1_12_props_towels1' }, - ['2026981751'] = { Name = 'ch1_12_props_towels2' }, - ['-2125542088'] = { Name = 'ch1_12_sc02_blgmain_l' }, - ['-1415559913'] = { Name = 'ch1_12_sc02_decalmain' }, - ['-2025608145'] = { Name = 'ch1_12_sc02_rail01' }, - ['2023100116'] = { Name = 'ch1_12_sc02_rail02' }, - ['-1495995567'] = { Name = 'ch1_12_sc02_rail03' }, - ['-1676487219'] = { Name = 'ch1_12_sc02_rail04' }, - ['-1675610222'] = { Name = 'ch1_12_sc02_rail1' }, - ['-1981377761'] = { Name = 'ch1_12_sc02_rail2' }, - ['193599076'] = { Name = 'ch1_12_sc02_rail3' }, - ['1694110952'] = { Name = 'ch1_12_sc02_sltstemp' }, - ['-914966979'] = { Name = 'ch1_12_sc02_sltstemp001' }, - ['-1565643511'] = { Name = 'ch1_12_sc03_decals' }, - ['-186311581'] = { Name = 'ch1_12_sc03_housemain' }, - ['-1778022540'] = { Name = 'ch1_12_sc03_rail_001' }, - ['-533752449'] = { Name = 'ch1_12_sc04_blgmain' }, - ['1017356614'] = { Name = 'ch1_12_sc04_decals' }, - ['-2100818979'] = { Name = 'ch1_12_sc04_fizzrail' }, - ['202291423'] = { Name = 'ch1_12_sc04_stairs' }, - ['-2028006386'] = { Name = 'ch1_12_sc04_stilts' }, - ['1776057835'] = { Name = 'ch1_12_sc05_blgmain' }, - ['697771889'] = { Name = 'ch1_12_sc05_decals' }, - ['1996724172'] = { Name = 'ch1_12_sc05_steps2' }, - ['-162805188'] = { Name = 'ch1_12_sc05_stilts' }, - ['-1027158078'] = { Name = 'ch1_12_sea_ch1_12_uw_00' }, - ['-787125153'] = { Name = 'ch1_12_sea_ch1_12_uw_01' }, - ['-1747060239'] = { Name = 'ch1_12_sea_ch1_12_uw_05' }, - ['-192826557'] = { Name = 'ch1_12_sea_ch1_12_uw_06' }, - ['1129042134'] = { Name = 'ch1_12_sea_ch1_12_uw_07' }, - ['431914428'] = { Name = 'ch1_12_sea_ch1_12_uw_08' }, - ['-411264711'] = { Name = 'ch1_12_sea_ch1_12_uw_09' }, - ['-155691332'] = { Name = 'ch1_12_sea_ch1_12_uw_10' }, - ['-789050564'] = { Name = 'ch1_12_sea_ch1_12_uw_11' }, - ['-333987560'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_00' }, - ['150862564'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_01' }, - ['-2034174356'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_02' }, - ['360813551'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_03' }, - ['835767437'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_04' }, - ['1067673650'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_05' }, - ['-1639438990'] = { Name = 'ch1_12_sea_ch1_12_uw_dec_06' }, - ['2062039254'] = { Name = 'ch1_12_sea_tyrepilea' }, - ['1820564493'] = { Name = 'ch1_12_sea_tyrepileb' }, - ['411374730'] = { Name = 'ch1_12_sea_uw_03_lod' }, - ['-1411249474'] = { Name = 'ch1_12_sea_uw_03' }, - ['-1788790946'] = { Name = 'ch1_12_sea_uw01_lod' }, - ['-1415518007'] = { Name = 'ch1_12_sea_uw01' }, - ['-396017240'] = { Name = 'ch1_12_waves_01' }, - ['237993282'] = { Name = 'ch1_12_waves_02_lod' }, - ['1814513938'] = { Name = 'ch1_12_waves_02' }, - ['1928777331'] = { Name = 'ch1_12_waves01_lod' }, - ['1866918552'] = { Name = 'ch1_emissive_0' }, - ['1552729380'] = { Name = 'ch1_emissive_1' }, - ['-1165915118'] = { Name = 'ch1_emissive_11' }, - ['-872403185'] = { Name = 'ch1_emissive_12' }, - ['-630404120'] = { Name = 'ch1_emissive_13' }, - ['1408054245'] = { Name = 'ch1_emissive_2' }, - ['1094192763'] = { Name = 'ch1_emissive_3' }, - ['-1541483445'] = { Name = 'ch1_emissive_4' }, - ['-711936210'] = { Name = 'ch1_emissive_5' }, - ['-2007032628'] = { Name = 'ch1_emissive_6' }, - ['876237286'] = { Name = 'ch1_emissive_7_slod' }, - ['-1238501271'] = { Name = 'ch1_emissive_7' }, - ['1808098305'] = { Name = 'ch1_emissive_8' }, - ['1031178084'] = { Name = 'ch1_emissive_9' }, - ['96331624'] = { Name = 'ch1_emissive_arc007_emi_slod' }, - ['1631456652'] = { Name = 'ch1_emissive_arc007_emi' }, - ['-1503089081'] = { Name = 'ch1_emissive_ch1_01_ema' }, - ['-1263842612'] = { Name = 'ch1_emissive_ch1_01_emb' }, - ['-638282402'] = { Name = 'ch1_emissive_ch1_01_emc' }, - ['-370789055'] = { Name = 'ch1_emissive_ch1_01_emd' }, - ['-131608124'] = { Name = 'ch1_emissive_ch1_01_eme' }, - ['224721982'] = { Name = 'ch1_emissive_ch1_01_emf' }, - ['1461528417'] = { Name = 'ch1_emissive_ch1_01_slod_01' }, - ['-1345333051'] = { Name = 'ch1_emissive_ch1_01_slod_02' }, - ['-1047430072'] = { Name = 'ch1_emissive_ch1_01_slod_03' }, - ['-960413417'] = { Name = 'ch1_emissive_ch1_02_01' }, - ['-1143002285'] = { Name = 'ch1_emissive_ch1_02_02' }, - ['-1387557332'] = { Name = 'ch1_emissive_ch1_02_03' }, - ['-172384489'] = { Name = 'ch1_emissive_ch1_02_04' }, - ['66337676'] = { Name = 'ch1_emissive_ch1_02_05' }, - ['290608712'] = { Name = 'ch1_emissive_ch1_02_06' }, - ['531231479'] = { Name = 'ch1_emissive_ch1_02_07' }, - ['-1234067324'] = { Name = 'ch1_emissive_ch1_02_08' }, - ['-1937355602'] = { Name = 'ch1_emissive_ch1_02_09' }, - ['-662313464'] = { Name = 'ch1_emissive_ch1_02_10' }, - ['-1495268675'] = { Name = 'ch1_emissive_ch1_02_11' }, - ['1864569668'] = { Name = 'ch1_emissive_ch1_02_12' }, - ['-849031226'] = { Name = 'ch1_emissive_ch1_02_13' }, - ['-1820664845'] = { Name = 'ch1_emissive_ch1_02_14' }, - ['650134108'] = { Name = 'ch1_emissive_ch1_02_slod_01' }, - ['-971374339'] = { Name = 'ch1_emissive_ch1_02_slod_02' }, - ['-127102342'] = { Name = 'ch1_emissive_ch1_06e_em_01' }, - ['2027950947'] = { Name = 'ch1_emissive_ch1_06e_em_02' }, - ['-1960658968'] = { Name = 'ch1_emissive_ch1_06e_em_03' }, - ['-2131308879'] = { Name = 'ch1_emissive_ch1_06e_em_slod' }, - ['-149676109'] = { Name = 'ch1_emissive_ch1_06e_em02' }, - ['-2079884088'] = { Name = 'ch1_emissive_ch1_09_mh_slod' }, - ['1779039315'] = { Name = 'ch1_emissive_ch1_09_mhouse_emi' }, - ['413876404'] = { Name = 'ch1_emissive_ch1_10_em_slod' }, - ['-1868228690'] = { Name = 'ch1_emissive_ch1_10_emissive01' }, - ['-1707726128'] = { Name = 'ch1_emissive_ch1_10_emissive02' }, - ['-200581511'] = { Name = 'ch1_emissive_ch1_10_emissive03' }, - ['-37129739'] = { Name = 'ch1_emissive_ch1_10_emissive04' }, - ['901472732'] = { Name = 'ch1_emissive_ch1_10_emissive05' }, - ['-1463076448'] = { Name = 'ch1_emissive_ch1_12_1' }, - ['902169963'] = { Name = 'ch1_emissive_ch1_12_10' }, - ['1140040134'] = { Name = 'ch1_emissive_ch1_12_11' }, - ['659712132'] = { Name = 'ch1_emissive_ch1_12_12' }, - ['-1771432738'] = { Name = 'ch1_emissive_ch1_12_2' }, - ['-903578534'] = { Name = 'ch1_emissive_ch1_12_3' }, - ['-1206659015'] = { Name = 'ch1_emissive_ch1_12_4' }, - ['-1499613875'] = { Name = 'ch1_emissive_ch1_12_5' }, - ['-1821929759'] = { Name = 'ch1_emissive_ch1_12_6' }, - ['57274084'] = { Name = 'ch1_emissive_ch1_12_7' }, - ['-249607601'] = { Name = 'ch1_emissive_ch1_12_8' }, - ['-537581573'] = { Name = 'ch1_emissive_ch1_12_9' }, - ['1356216266'] = { Name = 'ch1_emissive_ch1_12_slod' }, - ['969528916'] = { Name = 'ch1_emissive_ch1_12_slod1' }, - ['1744089777'] = { Name = 'ch1_emissive_ch1_12_slod2' }, - ['811276863'] = { Name = 'ch1_emissive_koriz01' }, - ['-1281843000'] = { Name = 'ch1_emissive_koriz02' }, - ['-2132460702'] = { Name = 'ch1_emissive_koriz03' }, - ['-700586478'] = { Name = 'ch1_emissive_koriz04' }, - ['211014333'] = { Name = 'ch1_emissive_koriz05' }, - ['29670687'] = { Name = 'ch1_emissive_koriz06' }, - ['-1474524720'] = { Name = 'ch1_emissive_koriz07' }, - ['1001465858'] = { Name = 'ch1_emissive_shacks_emi_slod' }, - ['-1585920616'] = { Name = 'ch1_emissive_shacks_emi' }, - ['703166998'] = { Name = 'ch1_emissive_slod1' }, - ['-5167706'] = { Name = 'ch1_emissive_slod2' }, - ['-577019529'] = { Name = 'ch1_emissive_slod3' }, - ['-751416147'] = { Name = 'ch1_emissive_slod4' }, - ['1081171373'] = { Name = 'ch1_emissive_vin_emi_slod' }, - ['1801938544'] = { Name = 'ch1_emissive_vnyrdblg_emi' }, - ['1085905091'] = { Name = 'ch1_emissivea_ch1_01_lod' }, - ['526559000'] = { Name = 'ch1_emissivef_ch1_01_lod' }, - ['230365395'] = { Name = 'ch1_lod_3_9_slod2' }, - ['1283456725'] = { Name = 'ch1_lod_5_20_emissive_proxy' }, - ['1388125383'] = { Name = 'ch1_lod_5_21_emissive_proxy' }, - ['715920975'] = { Name = 'ch1_lod_6_20_emissive_proxy' }, - ['-2111047333'] = { Name = 'ch1_lod_ch1_04b_water01_slod3' }, - ['-1456196861'] = { Name = 'ch1_lod_ch1_05_crkwater_slod3' }, - ['604477612'] = { Name = 'ch1_lod_ch1_05_water_slod3' }, - ['467033690'] = { Name = 'ch1_lod_slod3a' }, - ['1375357601'] = { Name = 'ch1_lod_slod3b' }, - ['-147090139'] = { Name = 'ch1_lod_slod3c' }, - ['-1115315782'] = { Name = 'ch1_lod_slod3d' }, - ['-760296436'] = { Name = 'ch1_lod_slod3e' }, - ['-1065103877'] = { Name = 'ch1_rdprops_50902_thvy' }, - ['-291660366'] = { Name = 'ch1_rdprops_50904_thvy' }, - ['-1943664300'] = { Name = 'ch1_rdprops_50908_thvy' }, - ['432620850'] = { Name = 'ch1_rdprops_50911_thvy' }, - ['1272577905'] = { Name = 'ch1_rdprops_50914_thvy' }, - ['1004481479'] = { Name = 'ch1_rdprops_50917_thvy' }, - ['-982674488'] = { Name = 'ch1_rdprops_50918_thvy' }, - ['-530842152'] = { Name = 'ch1_rdprops_50921_thvy' }, - ['1590117320'] = { Name = 'ch1_rdprops_50923_thvy' }, - ['-631557872'] = { Name = 'ch1_rdprops_50929_thvy' }, - ['-804839835'] = { Name = 'ch1_rdprops_50940_thvy' }, - ['-956936554'] = { Name = 'ch1_rdprops_50945_thvy' }, - ['-402829282'] = { Name = 'ch1_rdprops_50951_thvy' }, - ['814167828'] = { Name = 'ch1_rdprops_50955_thvy' }, - ['1901904896'] = { Name = 'ch1_rdprops_50958_thvy' }, - ['-852540548'] = { Name = 'ch1_rdprops_50965_thvy' }, - ['-1633447234'] = { Name = 'ch1_rdprops_50968_thvy' }, - ['1347592227'] = { Name = 'ch1_rdprops_50972_thvy' }, - ['-2129704952'] = { Name = 'ch1_rdprops_cab_11' }, - ['-352939604'] = { Name = 'ch1_rdprops_cab_mesh00' }, - ['1859230036'] = { Name = 'ch1_rdprops_cab_mesh01' }, - ['-1004387324'] = { Name = 'ch1_rdprops_cab_mesh02' }, - ['-740498567'] = { Name = 'ch1_rdprops_cab_mesh03' }, - ['-1448505581'] = { Name = 'ch1_rdprops_cab_mesh04' }, - ['1900387880'] = { Name = 'ch1_rdprops_cab_mesh05' }, - ['-1696534178'] = { Name = 'ch1_rdprops_cab_mesh06' }, - ['-721099355'] = { Name = 'ch1_rdprops_cab_mesh07' }, - ['2119317569'] = { Name = 'ch1_rdprops_cab_mesh08' }, - ['643827806'] = { Name = 'ch1_rdprops_cab_mesh09' }, - ['1527447662'] = { Name = 'ch1_rdprops_cable_new1' }, - ['73979761'] = { Name = 'ch1_rdprops_cable01_thvy' }, - ['-1205944914'] = { Name = 'ch1_rdprops_cable02_thvy' }, - ['2119042722'] = { Name = 'ch1_rdprops_cable03_thvy' }, - ['742806151'] = { Name = 'ch1_rdprops_cable04_thvy' }, - ['-155550926'] = { Name = 'ch1_rdprops_cable2a_tstd' }, - ['-755013315'] = { Name = 'ch1_rdprops_ch1_rd_sp016' }, - ['-1939323303'] = { Name = 'ch1_rdprops_combo_01_lod' }, - ['177619350'] = { Name = 'ch1_rdprops_combo_02_lod' }, - ['-118911003'] = { Name = 'ch1_rdprops_combo_03_lod' }, - ['460493578'] = { Name = 'ch1_rdprops_combo01_01_lod' }, - ['292710752'] = { Name = 'ch1_rdprops_combo01_02_lod' }, - ['-1506374844'] = { Name = 'ch1_rdprops_combo01_03_lod' }, - ['-81119026'] = { Name = 'ch1_rdprops_combo02_01_lod' }, - ['1997089624'] = { Name = 'ch1_rdprops_combo02_02_lod' }, - ['-1515072825'] = { Name = 'ch1_rdprops_combo02_03_lod' }, - ['-56074267'] = { Name = 'ch1_rdprops_combo03_01_lod' }, - ['-405364165'] = { Name = 'ch1_rdprops_combo04_01_lod' }, - ['-294795470'] = { Name = 'ch1_rdprops_combo05_01_lod' }, - ['639701749'] = { Name = 'ch1_rdprops_combo05_02_lod' }, - ['1632031005'] = { Name = 'ch1_rdprops_combo05_03_lod' }, - ['1071601076'] = { Name = 'ch1_rdprops_combo06_01_lod' }, - ['457801691'] = { Name = 'ch1_rdprops_combo07_01_lod' }, - ['-1264092416'] = { Name = 'ch1_rdprops_combo07_02_lod' }, - ['-90075096'] = { Name = 'ch1_rdprops_combo07_03_lod' }, - ['-1823775230'] = { Name = 'ch1_rdprops_combo07_04_lod' }, - ['653632796'] = { Name = 'ch1_rdprops_combo08_01_lod' }, - ['-1757364451'] = { Name = 'ch1_rdprops_combo08_02_lod' }, - ['193118921'] = { Name = 'ch1_rdprops_combo08_03_lod' }, - ['853874674'] = { Name = 'ch1_rdprops_combo09_01_lod' }, - ['1925462331'] = { Name = 'ch1_rdprops_combo09_02_lod' }, - ['1694240206'] = { Name = 'ch1_rdprops_combo09_03_lod' }, - ['-784882730'] = { Name = 'ch1_rdprops_combo10_01_lod' }, - ['-136892029'] = { Name = 'ch1_rdprops_combo10_02_lod' }, - ['1107606860'] = { Name = 'ch1_rdprops_combo10_03_lod' }, - ['-2038108972'] = { Name = 'ch1_rdprops_combo10_04_lod' }, - ['1181721201'] = { Name = 'ch1_rdprops_combo10_05_lod' }, - ['-1223024675'] = { Name = 'ch1_rdprops_combo11_01_lod' }, - ['774842534'] = { Name = 'ch1_rdprops_combo11_02_lod' }, - ['2000049806'] = { Name = 'ch1_rdprops_combo11_03_lod' }, - ['190387292'] = { Name = 'ch1_rdprops_combo12_01_lod' }, - ['934389009'] = { Name = 'ch1_rdprops_combo13_01_lod' }, - ['1182956816'] = { Name = 'ch1_rdprops_combo14_01_lod' }, - ['-435167639'] = { Name = 'ch1_rdprops_combo15_01_lod' }, - ['-969078869'] = { Name = 'ch1_rdprops_combo15_02_lod' }, - ['806563109'] = { Name = 'ch1_rdprops_combo15_03_lod' }, - ['2078035667'] = { Name = 'ch1_rdprops_combo15_04_lod' }, - ['-197313833'] = { Name = 'ch1_rdprops_combo16_01_lod' }, - ['-27604630'] = { Name = 'ch1_rdprops_combo17_01_lod' }, - ['1293763682'] = { Name = 'ch1_rdprops_combo18_01_lod' }, - ['-1294353628'] = { Name = 'ch1_rdprops_combo19_01_lod' }, - ['1758542241'] = { Name = 'ch1_rdprops_combo19_02_lod' }, - ['-244452840'] = { Name = 'ch1_rdprops_combo20_01_lod' }, - ['-836180033'] = { Name = 'ch1_rdprops_combo20_02_lod' }, - ['-1504245864'] = { Name = 'ch1_rdprops_combo20_03_lod' }, - ['-262025657'] = { Name = 'ch1_rdprops_combo20_04_lod' }, - ['860047934'] = { Name = 'ch1_rdprops_combo20_05_lod' }, - ['-1941310420'] = { Name = 'ch1_rdprops_combo21_01_lod' }, - ['1329284405'] = { Name = 'ch1_rdprops_combo21_02_lod' }, - ['606581570'] = { Name = 'ch1_rdprops_combo21_03_lod' }, - ['-919906069'] = { Name = 'ch1_rdprops_combo21_04_lod' }, - ['131626876'] = { Name = 'ch1_rdprops_combo22_01_lod' }, - ['-1903725030'] = { Name = 'ch1_rdprops_combo23_01_lod' }, - ['-244565673'] = { Name = 'ch1_rdprops_combo24_01_lod' }, - ['18627814'] = { Name = 'ch1_rdprops_combo25_01_lod' }, - ['-2058979094'] = { Name = 'ch1_rdprops_combo25_02_lod' }, - ['1450195597'] = { Name = 'ch1_rdprops_combo25_03_lod' }, - ['1130227670'] = { Name = 'ch1_rdprops_combo25_04_lod' }, - ['-43496258'] = { Name = 'ch1_rdprops_combo25_05_lod' }, - ['314945401'] = { Name = 'ch1_rdprops_combo25_06_lod' }, - ['1512689820'] = { Name = 'ch1_rdprops_combo26_01_lod' }, - ['54966560'] = { Name = 'ch1_rdprops_combo26_02_lod' }, - ['1275158686'] = { Name = 'ch1_rdprops_combo26_03_lod' }, - ['49012828'] = { Name = 'ch1_rdprops_combo27_01_lod' }, - ['2121485147'] = { Name = 'ch1_rdprops_combo27_02_lod' }, - ['-1695839570'] = { Name = 'ch1_rdprops_combo27_03_lod' }, - ['-1999246541'] = { Name = 'ch1_rdprops_combo27_04_lod' }, - ['287829610'] = { Name = 'ch1_rdprops_combo28_01_lod' }, - ['1619606107'] = { Name = 'ch1_rdprops_combo29_01_lod' }, - ['-89443830'] = { Name = 'ch1_rdprops_combo30_01_lod' }, - ['-392314204'] = { Name = 'ch1_rdprops_combo30_02_lod' }, - ['-1021269928'] = { Name = 'ch1_rdprops_combo30_03_lod' }, - ['-2063433420'] = { Name = 'ch1_rdprops_combo31_01_lod' }, - ['1323635753'] = { Name = 'ch1_rdprops_combo32_01_lod' }, - ['109482385'] = { Name = 'ch1_rdprops_combo32_02_lod' }, - ['-175641461'] = { Name = 'ch1_rdprops_combo32_03_lod' }, - ['-143542340'] = { Name = 'ch1_rdprops_combo33_01_lod' }, - ['841383337'] = { Name = 'ch1_rdprops_combo34_01_lod' }, - ['220832852'] = { Name = 'ch1_rdprops_combo35_01_lod' }, - ['1554002949'] = { Name = 'ch1_rdprops_combo35_02_lod' }, - ['-1819484838'] = { Name = 'ch1_rdprops_combo35_03_lod' }, - ['599114572'] = { Name = 'ch1_rdprops_combo36_01_lod' }, - ['1470570042'] = { Name = 'ch1_rdprops_combo37_01_lod' }, - ['-139101346'] = { Name = 'ch1_rdprops_combo38_01_lod' }, - ['1928062269'] = { Name = 'ch1_rdprops_combo39_01_lod' }, - ['-2000507886'] = { Name = 'ch1_rdprops_combo40_01_lod' }, - ['-1342182934'] = { Name = 'ch1_rdprops_combo41_01_lod' }, - ['-1675146841'] = { Name = 'ch1_rdprops_combo42_01_lod' }, - ['-272705428'] = { Name = 'ch1_rdprops_combo43_01_lod' }, - ['1076470916'] = { Name = 'ch1_rdprops_combo44_01_lod' }, - ['-1968873994'] = { Name = 'ch1_rdprops_combo45_01_lod' }, - ['-1487514306'] = { Name = 'ch1_rdprops_combo46_01_lod' }, - ['-88518481'] = { Name = 'ch1_rdprops_combo46_02_lod' }, - ['-1813015363'] = { Name = 'ch1_rdprops_combo46_03_lod' }, - ['1381964985'] = { Name = 'ch1_rdprops_combo47_01_lod' }, - ['272736694'] = { Name = 'ch1_rdprops_combo48_01_lod' }, - ['-429441319'] = { Name = 'ch1_rdprops_combo49_01_lod' }, - ['1979001717'] = { Name = 'ch1_rdprops_combo50_01_lod' }, - ['-1694333894'] = { Name = 'ch1_rdprops_combo51_01_lod' }, - ['902657531'] = { Name = 'ch1_rdprops_combo52_01_lod' }, - ['-1412320776'] = { Name = 'ch1_rdprops_combo53_01_lod' }, - ['-390533246'] = { Name = 'ch1_rdprops_combo54_01_lod' }, - ['440228529'] = { Name = 'ch1_rdprops_combo54_02_lod' }, - ['1206937009'] = { Name = 'ch1_rdprops_combo54_03_lod' }, - ['-139282874'] = { Name = 'ch1_rdprops_combo55_01_lod' }, - ['1980707141'] = { Name = 'ch1_rdprops_combo55_02_lod' }, - ['-1714887291'] = { Name = 'ch1_rdprops_combo55_03_lod' }, - ['-540867688'] = { Name = 'ch1_rdprops_combo56_01_lod' }, - ['611604324'] = { Name = 'ch1_rdprops_combo57_01_lod' }, - ['-1378512818'] = { Name = 'ch1_rdprops_tele_wire01' }, - ['-721854827'] = { Name = 'ch1_rdprops_tele_wire03' }, - ['797643715'] = { Name = 'ch1_rdprops_tele_wire04' }, - ['-441483251'] = { Name = 'ch1_rdprops_tele_wire08' }, - ['1999250468'] = { Name = 'ch1_rdprops_tele_wire10' }, - ['-1686508349'] = { Name = 'ch1_rdprops_tele_wire12' }, - ['1796936102'] = { Name = 'ch1_rdprops_tele_wire20' }, - ['-670274681'] = { Name = 'ch1_rdprops_tele_wire22' }, - ['-1447457054'] = { Name = 'ch1_rdprops_tele_wire23' }, - ['1152435438'] = { Name = 'ch1_rdprops_tele_wire27' }, - ['576946260'] = { Name = 'ch1_rdprops_tele_wire29' }, - ['-1828003163'] = { Name = 'ch1_rdprops_tele_wire30' }, - ['-1209029522'] = { Name = 'ch1_rdprops_tele_wire32' }, - ['190734930'] = { Name = 'ch1_rdprops_tele_wire40' }, - ['-517468698'] = { Name = 'ch1_rdprops_tele_wire41' }, - ['-267801687'] = { Name = 'ch1_rdprops_tele_wire42' }, - ['1171085103'] = { Name = 'ch1_rdprops_tele_wire43' }, - ['2132756906'] = { Name = 'ch1_rdprops_tele_wire44' }, - ['-1864504025'] = { Name = 'ch1_rdprops_tele_wire45' }, - ['-1003858901'] = { Name = 'ch1_rdprops_tele_wire50' }, - ['1918906520'] = { Name = 'ch1_rdprops_tele_wire51' }, - ['1668715205'] = { Name = 'ch1_rdprops_tele_wire52' }, - ['-1849364639'] = { Name = 'ch1_rdprops_tele_wire53' }, - ['978141475'] = { Name = 'ch1_rdprops_tele_wire54' }, - ['-19673191'] = { Name = 'ch1_rdprops_telewrs00' }, - ['675619451'] = { Name = 'ch1_rdprops_telewrs01' }, - ['441616022'] = { Name = 'ch1_rdprops_telewrs02' }, - ['-740951646'] = { Name = 'ch1_rdprops_telewrs03' }, - ['-1005823473'] = { Name = 'ch1_rdprops_telewrs04' }, - ['-277761835'] = { Name = 'ch1_rdprops_telewrs05' }, - ['-1723923343'] = { Name = 'ch1_rdprops_telewrs07' }, - ['-1954486027'] = { Name = 'ch1_rdprops_telewrs08' }, - ['-699728248'] = { Name = 'ch1_rdprops_telewrs09' }, - ['-2005404121'] = { Name = 'ch1_rdprops_telewrs10' }, - ['610414069'] = { Name = 'ch1_rdprops_telewrs11' }, - ['303991150'] = { Name = 'ch1_rdprops_telewrs12' }, - ['1068295306'] = { Name = 'ch1_rdprops_telewrs13' }, - ['765608053'] = { Name = 'ch1_rdprops_telewrs14' }, - ['1070720216'] = { Name = 'ch1_rdprops_telewrs15' }, - ['764100683'] = { Name = 'ch1_rdprops_telewrs16' }, - ['-313802803'] = { Name = 'ch1_rdprops_telewrs17' }, - ['-620356798'] = { Name = 'ch1_rdprops_telewrs18' }, - ['148928246'] = { Name = 'ch1_rdprops_telewrs19' }, - ['263390607'] = { Name = 'ch1_rdprops_telewrs20' }, - ['494117136'] = { Name = 'ch1_rdprops_telewrs21' }, - ['1264909554'] = { Name = 'ch1_rdprops_telewrs22' }, - ['-653027247'] = { Name = 'ch1_rdprops_telewrs23' }, - ['-360105156'] = { Name = 'ch1_rdprops_telewrs24' }, - ['-130001238'] = { Name = 'ch1_rdprops_telewrs25' }, - ['99545607'] = { Name = 'ch1_rdprops_telewrs26' }, - ['-265533818'] = { Name = 'ch1_rdprops_telewrs27' }, - ['1506065256'] = { Name = 'ch1_rdprops_wire_hang009' }, - ['579783033'] = { Name = 'ch1_rdprops_wire_hang010' }, - ['496385928'] = { Name = 'ch1_rdprops_wire_hang011' }, - ['97783812'] = { Name = 'ch1_rdprops_wire_hang012' }, - ['-74876053'] = { Name = 'ch1_rdprops_wire_hang014' }, - ['519389762'] = { Name = 'ch1_rdprops_wire_hang016' }, - ['1902831732'] = { Name = 'ch1_rdprops_wire_hang025' }, - ['-1291212625'] = { Name = 'ch1_rdprops_wire047' }, - ['1962183539'] = { Name = 'ch1_rdprops_wiresb_spline026' }, - ['-2054948944'] = { Name = 'ch1_rdprops_wiresb_spline026b' }, - ['2056787410'] = { Name = 'ch1_rdprops_wiresb_spline037' }, - ['-1525224753'] = { Name = 'ch1_rdprops_wiresb_spline039' }, - ['157809147'] = { Name = 'ch1_rdprops_wiresb_spline041' }, - ['1347487688'] = { Name = 'ch1_rdprops_wiresb_spline045' }, - ['2061425895'] = { Name = 'ch1_rdprops_wiresb_spline049' }, - ['-1271509455'] = { Name = 'ch1_rdprops_wiresb_spline050' }, - ['-953032004'] = { Name = 'ch1_roads_46' }, - ['-950869246'] = { Name = 'ch1_roads_48' }, - ['1496205'] = { Name = 'ch1_roads_49' }, - ['-1020700301'] = { Name = 'ch1_roads_50' }, - ['722577734'] = { Name = 'ch1_roads_51' }, - ['492047819'] = { Name = 'ch1_roads_52' }, - ['109240361'] = { Name = 'ch1_roads_53' }, - ['-121617244'] = { Name = 'ch1_roads_54' }, - ['2134102493'] = { Name = 'ch1_roads_55' }, - ['-1855097264'] = { Name = 'ch1_roads_56' }, - ['-1568204669'] = { Name = 'ch1_roads_57' }, - ['-1269515234'] = { Name = 'ch1_roads_58' }, - ['-1203584006'] = { Name = 'ch1_roads_59' }, - ['-1868665122'] = { Name = 'ch1_roads_60' }, - ['1822664425'] = { Name = 'ch1_roads_62' }, - ['890877922'] = { Name = 'ch1_roads_63' }, - ['585044845'] = { Name = 'ch1_roads_64' }, - ['2064460056'] = { Name = 'ch1_roads_armco_01_lod' }, - ['502120877'] = { Name = 'ch1_roads_armco_01' }, - ['-1395579960'] = { Name = 'ch1_roads_armco_02_lod' }, - ['833555529'] = { Name = 'ch1_roads_armco_02a_lod' }, - ['1595577415'] = { Name = 'ch1_roads_armco_02a' }, - ['-770672079'] = { Name = 'ch1_roads_armco_02b' }, - ['1923989326'] = { Name = 'ch1_roads_armco_02c_lod' }, - ['-1001529684'] = { Name = 'ch1_roads_armco_02c' }, - ['1803604334'] = { Name = 'ch1_roads_armco_03_lod' }, - ['809109918'] = { Name = 'ch1_roads_armco_03a_lod' }, - ['-2007538872'] = { Name = 'ch1_roads_armco_03a' }, - ['877509434'] = { Name = 'ch1_roads_armco_03b' }, - ['382546868'] = { Name = 'ch1_roads_armco_03c_lod' }, - ['-117488482'] = { Name = 'ch1_roads_armco_03c' }, - ['-1199609248'] = { Name = 'ch1_roads_dcl_jn_01' }, - ['-328194928'] = { Name = 'ch1_roads_junc_ovr01' }, - ['975912965'] = { Name = 'ch1_roads_junc_ovr02' }, - ['1332243071'] = { Name = 'ch1_roads_junc_ovr03' }, - ['1667309446'] = { Name = 'ch1_roadsb_100' }, - ['-298266932'] = { Name = 'ch1_roadsb_26' }, - ['-1931965651'] = { Name = 'ch1_roadsb_30' }, - ['2131750808'] = { Name = 'ch1_roadsb_31' }, - ['-1040550544'] = { Name = 'ch1_roadsb_32' }, - ['-1673844238'] = { Name = 'ch1_roadsb_33' }, - ['-531516898'] = { Name = 'ch1_roadsb_34' }, - ['1499877507'] = { Name = 'ch1_roadsb_35_mnm' }, - ['-762571117'] = { Name = 'ch1_roadsb_35' }, - ['-85596346'] = { Name = 'ch1_roadsb_36' }, - ['-20783676'] = { Name = 'ch1_roadsb_37_s' }, - ['-182002744'] = { Name = 'ch1_roadsb_37' }, - ['668749719'] = { Name = 'ch1_roadsb_38_s' }, - ['520728465'] = { Name = 'ch1_roadsb_38' }, - ['1557540497'] = { Name = 'ch1_roadsb_43' }, - ['-2027257027'] = { Name = 'ch1_roadsb_44' }, - ['-1184143426'] = { Name = 'ch1_roadsb_45' }, - ['-1550861305'] = { Name = 'ch1_roadsb_47' }, - ['-944624444'] = { Name = 'ch1_roadsb_81' }, - ['-1789048813'] = { Name = 'ch1_roadsb_82' }, - ['1789186223'] = { Name = 'ch1_roadsb_82b' }, - ['2054427201'] = { Name = 'ch1_roadsb_83' }, - ['815087346'] = { Name = 'ch1_roadsb_armco_00_lod' }, - ['-828617409'] = { Name = 'ch1_roadsb_armco_00' }, - ['709662175'] = { Name = 'ch1_roadsb_armco_01_lod' }, - ['-531795807'] = { Name = 'ch1_roadsb_armco_01' }, - ['-1404748247'] = { Name = 'ch1_roadsb_armco_02_lod' }, - ['-1174789125'] = { Name = 'ch1_roadsb_armco_02' }, - ['801840731'] = { Name = 'ch1_roadsb_armco_03_lod' }, - ['-229174092'] = { Name = 'ch1_roadsb_armco_03' }, - ['1130042570'] = { Name = 'ch1_roadsb_armco_04_lod' }, - ['76167450'] = { Name = 'ch1_roadsb_armco_04' }, - ['-1371221292'] = { Name = 'ch1_roadsb_armco_05_lod' }, - ['-822260227'] = { Name = 'ch1_roadsb_armco_05' }, - ['715187839'] = { Name = 'ch1_roadsb_armco_06_lod' }, - ['-552997354'] = { Name = 'ch1_roadsb_armco_06' }, - ['-2026498929'] = { Name = 'ch1_roadsb_armco_08_lod' }, - ['1271809953'] = { Name = 'ch1_roadsb_armco_08' }, - ['417433305'] = { Name = 'ch1_roadsb_bdg_rum_stp_01' }, - ['1184064060'] = { Name = 'ch1_roadsb_bdg_rum_stp_02' }, - ['1405625352'] = { Name = 'ch1_roadsb_brdg1_decal' }, - ['2064506055'] = { Name = 'ch1_roadsb_brdg1_s' }, - ['-241810981'] = { Name = 'ch1_roadsb_brdg1' }, - ['-1144403807'] = { Name = 'ch1_roadsb_brdg2_s' }, - ['-489774004'] = { Name = 'ch1_roadsb_brdg2' }, - ['-1229187041'] = { Name = 'ch1_roadsb_brdg3_decal' }, - ['222093093'] = { Name = 'ch1_roadsb_brdg3_s' }, - ['-585525022'] = { Name = 'ch1_roadsb_brdg3' }, - ['1027290403'] = { Name = 'ch1_roadsb_ch1_railings_01_lod' }, - ['1473660142'] = { Name = 'ch1_roadsb_ch1_railings_01' }, - ['-2060230063'] = { Name = 'ch1_roadsb_ch1_railings_02_lod' }, - ['1241196856'] = { Name = 'ch1_roadsb_ch1_railings_02' }, - ['1894801248'] = { Name = 'ch1_roadsb_ch1_railings_03_lod' }, - ['1009356181'] = { Name = 'ch1_roadsb_ch1_railings_03' }, - ['-559449334'] = { Name = 'ch1_roadsb_dcl_rd_jn_01' }, - ['30058953'] = { Name = 'ch1_roadsb_railings_04_lod' }, - ['-1995262356'] = { Name = 'ch1_roadsb_railings_04' }, - ['481465728'] = { Name = 'ch1_roadsb_rbrid1_decal' }, - ['2000391579'] = { Name = 'ch1_roadsb_rbrid1_s' }, - ['-1761904177'] = { Name = 'ch1_roadsb_rbrid1' }, - ['1465493608'] = { Name = 'ch1_roadsb_rbrid2_decal' }, - ['338129961'] = { Name = 'ch1_roadsb_rbrid2' }, - ['-885982990'] = { Name = 'ch1_roadsb_sign_01_lod' }, - ['-1822964373'] = { Name = 'ch1_roadsb_sign_01' }, - ['-1172664025'] = { Name = 'ch1_roadsb_sign_011' }, - ['-378732067'] = { Name = 'ch1_roadsb_sign_012_lod' }, - ['-329747038'] = { Name = 'ch1_roadsb_sign_012' }, - ['13217739'] = { Name = 'ch1_roadsb_sign_013_lod' }, - ['-1461850450'] = { Name = 'ch1_roadsb_sign_013' }, - ['-2086449886'] = { Name = 'ch1_roadsb_sign_014_lod' }, - ['1998326571'] = { Name = 'ch1_roadsb_sign_014' }, - ['-213985805'] = { Name = 'ch1_roadsb_sign_015_lod' }, - ['-2055133195'] = { Name = 'ch1_roadsb_sign_015' }, - ['-633385228'] = { Name = 'ch1_roadsb_sign_016_lod' }, - ['1404453984'] = { Name = 'ch1_roadsb_sign_016' }, - ['-2142618686'] = { Name = 'ch1_roadsb_sign_02_lod' }, - ['-1583717904'] = { Name = 'ch1_roadsb_sign_02' }, - ['-1061186553'] = { Name = 'ch1_roadsb_sign_03_lod' }, - ['2107447798'] = { Name = 'ch1_roadsb_sign_03' }, - ['-203365957'] = { Name = 'ch1_roadsb_sign_04_lod' }, - ['-1916356023'] = { Name = 'ch1_roadsb_sign_04' }, - ['324921978'] = { Name = 'ch1_roadsb_sign_05_lod' }, - ['1539593789'] = { Name = 'ch1_roadsb_sign_05' }, - ['-1100957720'] = { Name = 'ch1_roadsb_sign_06_lod' }, - ['1782379310'] = { Name = 'ch1_roadsb_sign_06' }, - ['-1926144855'] = { Name = 'ch1_roadsb_sign_07_lod' }, - ['969085499'] = { Name = 'ch1_roadsb_sign_07' }, - ['-752169639'] = { Name = 'ch1_roadsb_sign_08_lod' }, - ['1351630805'] = { Name = 'ch1_roadsb_sign_08' }, - ['935565793'] = { Name = 'ch1_roadsb_sign_09_lod' }, - ['107228030'] = { Name = 'ch1_roadsb_sign_09' }, - ['-554725343'] = { Name = 'ch1_roadsb_sign_10_lod' }, - ['86976504'] = { Name = 'ch1_roadsb_sign_10' }, - ['223636340'] = { Name = 'ch1_roadsb_sign_11_lod' }, - ['155583355'] = { Name = 'ch1_roadsc_02' }, - ['-107584484'] = { Name = 'ch1_roadsc_03' }, - ['-285192464'] = { Name = 'ch1_roadsc_04' }, - ['-792325508'] = { Name = 'ch1_roadsc_05' }, - ['-1064930823'] = { Name = 'ch1_roadsc_06' }, - ['-1304111754'] = { Name = 'ch1_roadsc_07' }, - ['-957546838'] = { Name = 'ch1_roadsc_08' }, - ['-1456946398'] = { Name = 'ch1_roadsc_09' }, - ['1457259630'] = { Name = 'ch1_roadsc_10' }, - ['-1949829447'] = { Name = 'ch1_roadsc_10b' }, - ['-786302728'] = { Name = 'ch1_roadsc_11' }, - ['1704829425'] = { Name = 'ch1_roadsc_13' }, - ['832649613'] = { Name = 'ch1_roadsc_14' }, - ['-1215247638'] = { Name = 'ch1_roadsc_61' }, - ['-23701252'] = { Name = 'ch1_roadsc_65' }, - ['123366124'] = { Name = 'ch1_roadsc_66' }, - ['-173848706'] = { Name = 'ch1_roadsc_67' }, - ['-338644007'] = { Name = 'ch1_roadsc_68' }, - ['-1123234010'] = { Name = 'ch1_roadsc_69a' }, - ['1784850899'] = { Name = 'ch1_roadsc_69b' }, - ['1487898221'] = { Name = 'ch1_roadsc_69c' }, - ['-474144726'] = { Name = 'ch1_roadsc_70' }, - ['-637334346'] = { Name = 'ch1_roadsc_71' }, - ['1875699495'] = { Name = 'ch1_roadsc_armco_18_lod' }, - ['-1227435626'] = { Name = 'ch1_roadsc_armco_18' }, - ['1147011827'] = { Name = 'ch1_roadsc_armco_18b_lod' }, - ['-657978075'] = { Name = 'ch1_roadsc_armco_18b' }, - ['-177510221'] = { Name = 'ch1_roadsc_armco_19_lod' }, - ['-917866887'] = { Name = 'ch1_roadsc_armco_19' }, - ['970645781'] = { Name = 'ch1_roadsc_armco_lb_002' }, - ['-2012545134'] = { Name = 'ch1_roadsc_armco_lb_1' }, - ['-1260932542'] = { Name = 'ch1_roadsc_armco01_lod' }, - ['-1418756195'] = { Name = 'ch1_roadsc_armco01' }, - ['1824513839'] = { Name = 'ch1_roadsc_armco02_lod' }, - ['894735209'] = { Name = 'ch1_roadsc_armco02' }, - ['-1705115259'] = { Name = 'ch1_roadsc_armco02a_lod' }, - ['1113441934'] = { Name = 'ch1_roadsc_armco02a' }, - ['1049177369'] = { Name = 'ch1_roadsc_armco03_lod' }, - ['1696953086'] = { Name = 'ch1_roadsc_armco03' }, - ['815219769'] = { Name = 'ch1_roadsc_armco03a_lod' }, - ['-1043676295'] = { Name = 'ch1_roadsc_armco03a' }, - ['-2020640308'] = { Name = 'ch1_roadsc_barrier00a_lod' }, - ['1213652831'] = { Name = 'ch1_roadsc_barrier00a' }, - ['1966244446'] = { Name = 'ch1_roadsc_barrier00b_lod' }, - ['1451785154'] = { Name = 'ch1_roadsc_barrier00b' }, - ['-51843706'] = { Name = 'ch1_roadsc_barrier00c_lod' }, - ['1539474998'] = { Name = 'ch1_roadsc_barrier00c' }, - ['-1778116607'] = { Name = 'ch1_roadsc_brd_hwsign_01' }, - ['-1469924162'] = { Name = 'ch1_roadsc_brd_hwsign_02' }, - ['-651762533'] = { Name = 'ch1_roadsc_dcl_frsgn_01' }, - ['1184027521'] = { Name = 'ch1_roadsc_jnt_sgn_1_lod' }, - ['2095839890'] = { Name = 'ch1_roadsc_jnt_sgn_1' }, - ['-762234195'] = { Name = 'ch1_roadsc_layby_rd_dlcs_01' }, - ['1202665182'] = { Name = 'ch1_roadsc_od_bigsign_01_lod' }, - ['-1493756748'] = { Name = 'ch1_roadsc_od_bigsign_01' }, - ['-609356651'] = { Name = 'ch1_roadsc_rd_sd_barr_01_lod' }, - ['-1272862782'] = { Name = 'ch1_roadsc_rd_sd_barr_01' }, - ['106905833'] = { Name = 'ch1_roadsc_rd_sd_barr_02_lod' }, - ['-866985948'] = { Name = 'ch1_roadsc_rd_sd_barr_02' }, - ['-524588530'] = { Name = 'ch1_roadsc_rd_sd_barr_03_lod' }, - ['-1769542515'] = { Name = 'ch1_roadsc_rd_sd_barr_03' }, - ['1927413048'] = { Name = 'ch1_roadsc_road_jn_dcl_02' }, - ['-64838407'] = { Name = 'ch1_roadsc_rum_strip00' }, - ['-1309142879'] = { Name = 'ch1_roadsc_rum_strip01' }, - ['-415597787'] = { Name = 'ch1_roadsc_rum_strip02' }, - ['-1797466517'] = { Name = 'ch1_roadsc_rum_strip03' }, - ['-1020873986'] = { Name = 'ch1_roadsc_rum_strip04' }, - ['-2020656176'] = { Name = 'ch1_roadsc_rum_strip05' }, - ['1825965662'] = { Name = 'ch1_roadsc_rum_strip06' }, - ['1663202043'] = { Name = 'ch1_roadsc_rum_strip07' }, - ['1482710391'] = { Name = 'ch1_roadsc_rum_strip08' }, - ['403461342'] = { Name = 'ch1_roadsc_sides_0100' }, - ['-1326933463'] = { Name = 'ch1_roadsc_sigb_oh_1' }, - ['-32557963'] = { Name = 'ch1_roadsc_sigb_oh_2' }, - ['1412240552'] = { Name = 'ch1_roadsc_sign_base_01' }, - ['-325910085'] = { Name = 'ch1_roadsc_trims_001' }, - ['1649143087'] = { Name = 'ch1_roadsc_trims_002' }, - ['1580927834'] = { Name = 'ch1_roadscdcls_08' }, - ['656286014'] = { Name = 'ch1_roadsd_01_sd' }, - ['3186970'] = { Name = 'ch1_roadsd_02_s' }, - ['-272012817'] = { Name = 'ch1_roadsd_03_s' }, - ['370936373'] = { Name = 'ch1_roadsd_04_sd' }, - ['-1012848252'] = { Name = 'ch1_roadsd_15' }, - ['-415371075'] = { Name = 'ch1_roadsd_17' }, - ['-658025520'] = { Name = 'ch1_roadsd_18' }, - ['1924600317'] = { Name = 'ch1_roadsd_21' }, - ['-2076199666'] = { Name = 'ch1_roadsd_22' }, - ['322032980'] = { Name = 'ch1_roadsd_24' }, - ['979411893'] = { Name = 'ch1_roadsd_27' }, - ['1277642562'] = { Name = 'ch1_roadsd_28' }, - ['1575840462'] = { Name = 'ch1_roadsd_29' }, - ['2002554564'] = { Name = 'ch1_roadsd_72' }, - ['-1389266323'] = { Name = 'ch1_roadsd_73' }, - ['-1695328783'] = { Name = 'ch1_roadsd_74' }, - ['-756070936'] = { Name = 'ch1_roadsd_75' }, - ['-1064722147'] = { Name = 'ch1_roadsd_76' }, - ['-160494361'] = { Name = 'ch1_roadsd_77' }, - ['-466851742'] = { Name = 'ch1_roadsd_78' }, - ['394940189'] = { Name = 'ch1_roadsd_79' }, - ['-1169909681'] = { Name = 'ch1_roadsd_80' }, - ['-2045104758'] = { Name = 'ch1_roadsd_armco_03_lod' }, - ['-47684765'] = { Name = 'ch1_roadsd_armco_03' }, - ['1981091170'] = { Name = 'ch1_roadsd_armco_04_lod' }, - ['-135964451'] = { Name = 'ch1_roadsd_armco_04' }, - ['-184712637'] = { Name = 'ch1_roadsd_armco_ent_01_lod' }, - ['-2047628812'] = { Name = 'ch1_roadsd_armco_ent_01' }, - ['1983014996'] = { Name = 'ch1_roadsd_armco_right_lod' }, - ['-655941411'] = { Name = 'ch1_roadsd_armco_right' }, - ['-1173963811'] = { Name = 'ch1_roadsd_armco_rr_1_lod' }, - ['-769516717'] = { Name = 'ch1_roadsd_armco_rr_1' }, - ['959985672'] = { Name = 'ch1_roadsd_bdg_end_01' }, - ['1986264890'] = { Name = 'ch1_roadsd_bdg_end_dcl01' }, - ['1513994963'] = { Name = 'ch1_roadsd_bdgent_dc2_lod' }, - ['-51747235'] = { Name = 'ch1_roadsd_bdgent_dc2' }, - ['1953618927'] = { Name = 'ch1_roadsd_bdgent_decal_lod' }, - ['-779880118'] = { Name = 'ch1_roadsd_bdgent_decal' }, - ['-227075385'] = { Name = 'ch1_roadsd_bdgent01a2' }, - ['-713389332'] = { Name = 'ch1_roadsd_bdgentb_01' }, - ['731697520'] = { Name = 'ch1_roadsd_ch1_09_zancudo_lod' }, - ['843998175'] = { Name = 'ch1_roadsd_ch1_09_zancudo' }, - ['-1896860118'] = { Name = 'ch1_roadsd_dcl_rd_jn_27' }, - ['-1760915802'] = { Name = 'ch1_roadsd_dcl_tugnd_01' }, - ['1872112722'] = { Name = 'ch1_roadsd_dst_dcls03' }, - ['1536427086'] = { Name = 'ch1_roadsd_dst_dcls04' }, - ['-794712980'] = { Name = 'ch1_roadsd_dst_dcls2' }, - ['-955897601'] = { Name = 'ch1_roadsd_flappybase_003' }, - ['1138500265'] = { Name = 'ch1_roadsd_flappybase_004' }, - ['1114316743'] = { Name = 'ch1_roadsd_flappybase_005' }, - ['1901067664'] = { Name = 'ch1_roadsd_flappybase_006' }, - ['-45000514'] = { Name = 'ch1_roadsd_flappybase_02' }, - ['-1844246326'] = { Name = 'ch1_roadsd_fwysign_007_lod' }, - ['1445232398'] = { Name = 'ch1_roadsd_fwysign_007' }, - ['-183589683'] = { Name = 'ch1_roadsd_introad' }, - ['1339572730'] = { Name = 'ch1_roadsd_introad2' }, - ['-788478895'] = { Name = 'ch1_roadsd_introad3' }, - ['938898832'] = { Name = 'ch1_roadsd_junt_01' }, - ['676576038'] = { Name = 'ch1_roadsd_layby_01_dcl' }, - ['1633628623'] = { Name = 'ch1_roadsd_ovrly01' }, - ['2018176436'] = { Name = 'ch1_roadsd_phc_brd_03' }, - ['-2133880418'] = { Name = 'ch1_roadsd_phc_brddcl_03' }, - ['624691178'] = { Name = 'ch1_roadsd_phc_brdg_02' }, - ['1730159959'] = { Name = 'ch1_roadsd_phc_brg_01' }, - ['-1619295808'] = { Name = 'ch1_roadsd_phc_brg_01s' }, - ['-1424407269'] = { Name = 'ch1_roadsd_phc_brgdcl_02' }, - ['-2099719889'] = { Name = 'ch1_roadsd_phc_brgdcls_01' }, - ['-1029543826'] = { Name = 'ch1_roadsd_phc_railings_1_lod' }, - ['87969153'] = { Name = 'ch1_roadsd_phc_railings_1' }, - ['1040331239'] = { Name = 'ch1_roadsd_phc_railings_2_lod' }, - ['1662355762'] = { Name = 'ch1_roadsd_phc_railings_2' }, - ['-1124546952'] = { Name = 'ch1_roadsd_phc_railings_3_lod' }, - ['1892394142'] = { Name = 'ch1_roadsd_phc_railings_3' }, - ['-177720365'] = { Name = 'ch1_roadsd_phc_railings_4_lod' }, - ['1316708350'] = { Name = 'ch1_roadsd_phc_railings_4' }, - ['517434818'] = { Name = 'ch1_roadsd_phc_railings_5_lod' }, - ['1545993043'] = { Name = 'ch1_roadsd_phc_railings_5' }, - ['1701570209'] = { Name = 'ch1_roadsd_phc_railings_6_lod' }, - ['-638454039'] = { Name = 'ch1_roadsd_phc_railings_6' }, - ['2011850495'] = { Name = 'ch1_roadsd_phc_rd_swctbc_1' }, - ['-1916685480'] = { Name = 'ch1_roadsd_r_armco_00_lod' }, - ['1583903786'] = { Name = 'ch1_roadsd_r_armco_00' }, - ['2126341572'] = { Name = 'ch1_roadsd_r_armco_01_lod' }, - ['-125261736'] = { Name = 'ch1_roadsd_r_armco_01' }, - ['-602561585'] = { Name = 'ch1_roadsd_r_armco_02_lod' }, - ['163859151'] = { Name = 'ch1_roadsd_r_armco_02' }, - ['1364423747'] = { Name = 'ch1_roadsd_r_armco_03_lod' }, - ['352215363'] = { Name = 'ch1_roadsd_r_armco_03' }, - ['346766965'] = { Name = 'ch1_roadsd_r_armco_04_lod' }, - ['-1786912172'] = { Name = 'ch1_roadsd_r_armco_04' }, - ['-1236339728'] = { Name = 'ch1_roadsd_r_armco_05_lod' }, - ['666601169'] = { Name = 'ch1_roadsd_r_armco_05' }, - ['363750159'] = { Name = 'ch1_roadsd_r_armco_06_lod' }, - ['1090632029'] = { Name = 'ch1_roadsd_r_armco_06' }, - ['-417045973'] = { Name = 'ch1_roadsd_r_armco_07_lod' }, - ['1397186024'] = { Name = 'ch1_roadsd_r_armco_07' }, - ['852294706'] = { Name = 'ch1_roadsd_r_armco_08_lod' }, - ['-655169215'] = { Name = 'ch1_roadsd_r_armco_08' }, - ['-1039221425'] = { Name = 'ch1_roadsd_r_armco_09_lod' }, - ['1799720420'] = { Name = 'ch1_roadsd_r_armco_09' }, - ['1254625220'] = { Name = 'ch1_roadsd_rbrid02_lod' }, - ['1655791990'] = { Name = 'ch1_roadsd_rbrid02' }, - ['-2193595'] = { Name = 'ch1_roadsd_rbrid02d' }, - ['334400835'] = { Name = 'ch1_roadsd_roadbrg_01_d' }, - ['-2135677993'] = { Name = 'ch1_roadsd_roadbrg_01' }, - ['1026591813'] = { Name = 'ch1_roadsd_rum_strip00' }, - ['-669335017'] = { Name = 'ch1_roadsd_rum_strip03' }, - ['106503827'] = { Name = 'ch1_roadsd_rum_strip04' }, - ['365870462'] = { Name = 'ch1_roadsd_rum_strip05' }, - ['603216329'] = { Name = 'ch1_roadsd_rum_strip06' }, - ['-1586670399'] = { Name = 'ch1_roadsd_rum_strip07' }, - ['-1351225134'] = { Name = 'ch1_roadsd_rum_strip08' }, - ['-1097265388'] = { Name = 'ch1_roadsd_rum_strip09' }, - ['2001990827'] = { Name = 'ch1_roadsd_rum_strip10' }, - ['1776343493'] = { Name = 'ch1_roadsd_rum_strip11' }, - ['-1034491314'] = { Name = 'ch1_roadsd_sign_01_lod' }, - ['-1849633544'] = { Name = 'ch1_roadsd_sign_01' }, - ['-279976852'] = { Name = 'ch1_roadsd_sign_02_lod' }, - ['-1726913643'] = { Name = 'ch1_roadsd_sign_02' }, - ['-1906345546'] = { Name = 'ch1_roadsd_sign_03_lod' }, - ['-1966422264'] = { Name = 'ch1_roadsd_sign_03' }, - ['-1615629774'] = { Name = 'ch1_roadsd_sign_05_lod' }, - ['-1369928153'] = { Name = 'ch1_roadsd_sign_05' }, - ['1052433774'] = { Name = 'ch1_roadsd_sign_06_lod' }, - ['-231402017'] = { Name = 'ch1_roadsd_sign_06' }, - ['608744561'] = { Name = 'ch1_roadsd_sign_pbluff_01_lod' }, - ['-1370323493'] = { Name = 'ch1_roadsd_sign_road003' }, - ['-1043859667'] = { Name = 'ch1_roadsd_sndy_dcl_jn_01' }, - ['1706371580'] = { Name = 'ch1_roadsd_sndydcljn_1_lod' }, - ['83228292'] = { Name = 'ch1_roadsd_t_lgt_01' }, - ['-536826726'] = { Name = 'ch1_roadsd_t_lgt_04' }, - ['-1112807439'] = { Name = 'ch1_roadsd_t_lgt_06' }, - ['841634040'] = { Name = 'ch1_roadsd_t_lgt_09' }, - ['1720865851'] = { Name = 'ch1_roadsd_t_lgt_12' }, - ['-620249816'] = { Name = 'ch1_roadsd_t_lgt_14' }, - ['1052838729'] = { Name = 'ch1_roadsd_t_lgt_38' }, - ['-1715027853'] = { Name = 'ch1_roadsd_t_lgt_43' }, - ['-1084923618'] = { Name = 'ch1_roadsd_tun_rd_1b' }, - ['1574608634'] = { Name = 'ch1_roadsd_tun_rd_2b' }, - ['1878151009'] = { Name = 'ch1_roadsd_tunrnd_1dcl' }, - ['1188724227'] = { Name = 'ch1_roadsd_tunrnd_1dcl2' }, - ['-1230900250'] = { Name = 'ch1_roadsd_tunshell_1b' }, - ['1520710138'] = { Name = 'ch1_roadsd_tunshell_1bshadow' }, - ['1750133957'] = { Name = 'ch1_roadsd_tunshell_2b' }, - ['-1926447383'] = { Name = 'ch1_roadsd_tunshell_2bshadow' }, - ['-1935126821'] = { Name = 'ch2_01_cliff_dcl_03' }, - ['461690278'] = { Name = 'ch2_01_dec01' }, - ['1302804946'] = { Name = 'ch2_01_dec02' }, - ['1061330185'] = { Name = 'ch2_01_dec03' }, - ['5742384'] = { Name = 'ch2_01_dec04' }, - ['1567097117'] = { Name = 'ch2_01_l1' }, - ['1873913264'] = { Name = 'ch2_01_l2' }, - ['2145863195'] = { Name = 'ch2_01_l3' }, - ['715496345'] = { Name = 'ch2_01_l4' }, - ['1452208991'] = { Name = 'ch2_01_l5' }, - ['-391407718'] = { Name = 'ch2_01_l6' }, - ['1142283999'] = { Name = 'ch2_01_rock4f' }, - ['-762214329'] = { Name = 'ch2_01_rocksml01' }, - ['391279622'] = { Name = 'ch2_01_water_01' }, - ['578456178'] = { Name = 'ch2_01_water_02' }, - ['1418030727'] = { Name = 'ch2_01_water_03' }, - ['-1288775549'] = { Name = 'ch2_01b_d1' }, - ['-1048251089'] = { Name = 'ch2_01b_d2' }, - ['1096461599'] = { Name = 'ch2_01b_d29' }, - ['-1670946081'] = { Name = 'ch2_01b_d2h' }, - ['-1737008073'] = { Name = 'ch2_01b_d30' }, - ['1966314928'] = { Name = 'ch2_01b_d32' }, - ['-540480803'] = { Name = 'ch2_01b_d34' }, - ['-486590429'] = { Name = 'ch2_01b_d4' }, - ['1473084672'] = { Name = 'ch2_01b_fnc' }, - ['6285255'] = { Name = 'ch2_01b_l1' }, - ['475622736'] = { Name = 'ch2_01b_l10' }, - ['-1696064303'] = { Name = 'ch2_01b_l2' }, - ['417306822'] = { Name = 'ch2_01b_l3' }, - ['648655962'] = { Name = 'ch2_01b_l4' }, - ['890982717'] = { Name = 'ch2_01b_l5' }, - ['-741634401'] = { Name = 'ch2_01b_l6' }, - ['1907051096'] = { Name = 'ch2_01b_l7' }, - ['-2141100092'] = { Name = 'ch2_01b_l8' }, - ['237503315'] = { Name = 'ch2_01b_l9' }, - ['307337807'] = { Name = 'ch2_01b_retwall_dec' }, - ['473527461'] = { Name = 'ch2_01b_retwall003' }, - ['1270645446'] = { Name = 'ch2_01b_retwall01' }, - ['-1829515351'] = { Name = 'ch2_01b_retwall02_lod' }, - ['681958577'] = { Name = 'ch2_01b_retwall03_lod' }, - ['1918771206'] = { Name = 'ch2_01b_retwall04_lod' }, - ['-771059872'] = { Name = 'ch2_01b_retwall04' }, - ['-1186147135'] = { Name = 'ch2_01c_ch2_02b_infoboard' }, - ['395851712'] = { Name = 'ch2_01c_l1' }, - ['88445723'] = { Name = 'ch2_01c_l2' }, - ['2065727183'] = { Name = 'ch2_01c_l3' }, - ['1758517808'] = { Name = 'ch2_01c_l4' }, - ['1320396278'] = { Name = 'ch2_01c_l5' }, - ['1016267189'] = { Name = 'ch2_01c_l6' }, - ['1990575782'] = { Name = 'ch2_01c_retainer' }, - ['-1049669400'] = { Name = 'ch2_01c_retwalb002' }, - ['978982745'] = { Name = 'ch2_02_armco01' }, - ['576415580'] = { Name = 'ch2_02_armco02' }, - ['707432227'] = { Name = 'ch2_02_barrier01_lod' }, - ['1755390252'] = { Name = 'ch2_02_barrier05_lod' }, - ['153002165'] = { Name = 'ch2_02_barrier05' }, - ['-1010901451'] = { Name = 'ch2_02_barrier06_lod' }, - ['-95943928'] = { Name = 'ch2_02_barrier06' }, - ['1718952592'] = { Name = 'ch2_02_deco40' }, - ['548850198'] = { Name = 'ch2_02_drain01_fiz' }, - ['92328935'] = { Name = 'ch2_02_drain01_lod' }, - ['-1699503441'] = { Name = 'ch2_02_drain01' }, - ['-1220698395'] = { Name = 'ch2_02_flag1_lod' }, - ['-950637720'] = { Name = 'ch2_02_flag2_lod' }, - ['518632587'] = { Name = 'ch2_02_flag3_lod' }, - ['-690990263'] = { Name = 'ch2_02_g00' }, - ['-1470728602'] = { Name = 'ch2_02_g03' }, - ['-1781673643'] = { Name = 'ch2_02_g04' }, - ['1919486604'] = { Name = 'ch2_02_g06' }, - ['-1185474457'] = { Name = 'ch2_02_g07' }, - ['31143984'] = { Name = 'ch2_02_glue_02' }, - ['-2024005511'] = { Name = 'ch2_02_glue_03b' }, - ['-280334248'] = { Name = 'ch2_02_glue_03c' }, - ['523956975'] = { Name = 'ch2_02_glue_04' }, - ['284382816'] = { Name = 'ch2_02_glue_05' }, - ['-1062259291'] = { Name = 'ch2_02_glue_06' }, - ['-1390997899'] = { Name = 'ch2_02_glue_07' }, - ['-912013426'] = { Name = 'ch2_02_glue_09' }, - ['-2106017135'] = { Name = 'ch2_02_glue_10' }, - ['-1725831197'] = { Name = 'ch2_02_glue_11' }, - ['-2024389556'] = { Name = 'ch2_02_glue_12' }, - ['900079849'] = { Name = 'ch2_02_glue_13' }, - ['224120857'] = { Name = 'ch2_02_glue_14' }, - ['-1091128484'] = { Name = 'ch2_02_glue_15' }, - ['-1323165773'] = { Name = 'ch2_02_glue_16' }, - ['-900117983'] = { Name = 'ch2_02_glue_17' }, - ['1987420763'] = { Name = 'ch2_02_glue_18' }, - ['1756563158'] = { Name = 'ch2_02_glue_19' }, - ['1832220227'] = { Name = 'ch2_02_glue_20' }, - ['1059592745'] = { Name = 'ch2_02_glue_21' }, - ['-1825193397'] = { Name = 'ch2_02_glue_22' }, - ['-1516083420'] = { Name = 'ch2_02_glue_23' }, - ['2010647440'] = { Name = 'ch2_02_glue_24' }, - ['-2043828165'] = { Name = 'ch2_02_glue_25' }, - ['1992624486'] = { Name = 'ch2_02_glue_26' }, - ['-1997099575'] = { Name = 'ch2_02_glue_27' }, - ['-617983441'] = { Name = 'ch2_02_glue_28' }, - ['2053874479'] = { Name = 'ch2_02_grddec_1e' }, - ['-739395277'] = { Name = 'ch2_02_l01' }, - ['-629160361'] = { Name = 'ch2_02_l02' }, - ['-413573110'] = { Name = 'ch2_02_l03' }, - ['-38761288'] = { Name = 'ch2_02_l04' }, - ['2099645345'] = { Name = 'ch2_02_l05' }, - ['-1956861938'] = { Name = 'ch2_02_l06' }, - ['-1329335588'] = { Name = 'ch2_02_l07' }, - ['-962650474'] = { Name = 'ch2_02_l08' }, - ['1186242239'] = { Name = 'ch2_02_l09' }, - ['675898161'] = { Name = 'ch2_02_l10' }, - ['-987980583'] = { Name = 'ch2_02_l11' }, - ['-757974972'] = { Name = 'ch2_02_l12' }, - ['-509520414'] = { Name = 'ch2_02_l13' }, - ['-281022177'] = { Name = 'ch2_02_l14' }, - ['2113474191'] = { Name = 'ch2_02_l15' }, - ['-1945560249'] = { Name = 'ch2_02_leaves01' }, - ['-850016144'] = { Name = 'ch2_02_mesh01' }, - ['-1574229629'] = { Name = 'ch2_02_ob00' }, - ['-1962017979'] = { Name = 'ch2_02_ob04' }, - ['1897209192'] = { Name = 'ch2_02_obbuilding' }, - ['457048444'] = { Name = 'ch2_02_obdecal02' }, - ['761308609'] = { Name = 'ch2_02_obdecal03' }, - ['-600373479'] = { Name = 'ch2_02_obgrnd01' }, - ['-351951690'] = { Name = 'ch2_02_obgrnd02' }, - ['-959292336'] = { Name = 'ch2_02_obgrnd03' }, - ['613457129'] = { Name = 'ch2_02_observ_shadobj_lod' }, - ['-1348961567'] = { Name = 'ch2_02_observ_shadobj' }, - ['1583610618'] = { Name = 'ch2_02_obtoilet' }, - ['277759089'] = { Name = 'ch2_02_parkentrance' }, - ['76635152'] = { Name = 'ch2_02_pathd_01' }, - ['-624516189'] = { Name = 'ch2_02_rail01' }, - ['-862255284'] = { Name = 'ch2_02_rail02' }, - ['314119047'] = { Name = 'ch2_02_rail03' }, - ['82802676'] = { Name = 'ch2_02_rail04' }, - ['799198554'] = { Name = 'ch2_02_rail05' }, - ['561295614'] = { Name = 'ch2_02_rail06' }, - ['1274840593'] = { Name = 'ch2_02_rail07' }, - ['1033070907'] = { Name = 'ch2_02_rail08' }, - ['-2003534016'] = { Name = 'ch2_02_rail09' }, - ['1476481250'] = { Name = 'ch2_02_rail10' }, - ['585197211'] = { Name = 'ch2_02_rail11' }, - ['1045339517'] = { Name = 'ch2_02_rail12' }, - ['120827712'] = { Name = 'ch2_02_rail13' }, - ['346966581'] = { Name = 'ch2_02_rail14' }, - ['-675557295'] = { Name = 'ch2_02_rail15' }, - ['520564551'] = { Name = 'ch2_02_rail50' }, - ['1638786730'] = { Name = 'ch2_02_rddcal01' }, - ['2013003530'] = { Name = 'ch2_02_refproxy1' }, - ['-2042848369'] = { Name = 'ch2_02_refproxy2' }, - ['-1819953631'] = { Name = 'ch2_02_refproxy3' }, - ['-1580248396'] = { Name = 'ch2_02_refproxy4' }, - ['-1118205496'] = { Name = 'ch2_02_refproxy5' }, - ['-894983068'] = { Name = 'ch2_02_refproxy6' }, - ['-1746026779'] = { Name = 'ch2_02_refproxy8' }, - ['778620665'] = { Name = 'ch2_02_retwall00_lod' }, - ['-216118556'] = { Name = 'ch2_02_retwall00' }, - ['-192760186'] = { Name = 'ch2_02_retwall01_lod' }, - ['-1732667884'] = { Name = 'ch2_02_retwall01' }, - ['-964944477'] = { Name = 'ch2_02_retwall02_lod' }, - ['-811891745'] = { Name = 'ch2_02_retwall02' }, - ['1031061778'] = { Name = 'ch2_02_retwall03_lod' }, - ['66776221'] = { Name = 'ch2_02_retwall03' }, - ['-204206538'] = { Name = 'ch2_02_retwall05_lod' }, - ['51768015'] = { Name = 'ch2_02_retwall05' }, - ['1595297443'] = { Name = 'ch2_02_retwall06_lod' }, - ['817907235'] = { Name = 'ch2_02_retwall06' }, - ['-1185555974'] = { Name = 'ch2_02_retwall07_lod' }, - ['-546692232'] = { Name = 'ch2_02_retwall07' }, - ['-2086281902'] = { Name = 'ch2_02_rocks04' }, - ['1056760923'] = { Name = 'ch2_02_trackwall01' }, - ['-2015421177'] = { Name = 'ch2_02_trailsign01' }, - ['1512269313'] = { Name = 'ch2_02_trailweeds' }, - ['1222719889'] = { Name = 'ch2_02_treetrunk' }, - ['-558153531'] = { Name = 'ch2_02_tunnel002' }, - ['-30223439'] = { Name = 'ch2_02_tunnelwall_lod' }, - ['-428073079'] = { Name = 'ch2_02_tunnelwall' }, - ['741302299'] = { Name = 'ch2_02_wall01_lod' }, - ['1129524937'] = { Name = 'ch2_02_wall02' }, - ['-2119698540'] = { Name = 'ch2_02_weed_01' }, - ['127304563'] = { Name = 'ch2_02_weed_02' }, - ['-49960016'] = { Name = 'ch2_02_woodpost01' }, - ['1882173704'] = { Name = 'ch2_02b_decs00' }, - ['-2103224849'] = { Name = 'ch2_02b_decs01' }, - ['-1666151923'] = { Name = 'ch2_02b_decs02' }, - ['-1359139162'] = { Name = 'ch2_02b_decs03' }, - ['751479359'] = { Name = 'ch2_02b_decs04' }, - ['1056394904'] = { Name = 'ch2_02b_decs05' }, - ['1242391748'] = { Name = 'ch2_02b_decs06' }, - ['-440198091'] = { Name = 'ch2_02b_decs08' }, - ['-271699893'] = { Name = 'ch2_02b_decs09' }, - ['-502492900'] = { Name = 'ch2_02b_decs10' }, - ['-196135519'] = { Name = 'ch2_02b_decs11' }, - ['-977807245'] = { Name = 'ch2_02b_decs12' }, - ['-671777554'] = { Name = 'ch2_02b_decs13' }, - ['454460211'] = { Name = 'ch2_02b_decs15' }, - ['753215184'] = { Name = 'ch2_02b_decs16' }, - ['1514162026'] = { Name = 'ch2_02b_infoboard' }, - ['1768722208'] = { Name = 'ch2_02b_juicestand_lod' }, - ['1107670067'] = { Name = 'ch2_02b_juicestand_ovl' }, - ['970949864'] = { Name = 'ch2_02b_juicestand' }, - ['-57539871'] = { Name = 'ch2_02b_l024' }, - ['653725247'] = { Name = 'ch2_02b_l16' }, - ['1250612582'] = { Name = 'ch2_02b_l18' }, - ['1539471317'] = { Name = 'ch2_02b_l19' }, - ['633670895'] = { Name = 'ch2_02b_l20' }, - ['1860706100'] = { Name = 'ch2_02b_l21' }, - ['1483141682'] = { Name = 'ch2_02b_l22' }, - ['-2101033235'] = { Name = 'ch2_02b_l23' }, - ['-1836363824'] = { Name = 'ch2_02b_retwall008_lod' }, - ['-1688675923'] = { Name = 'ch2_02b_retwall008' }, - ['302923106'] = { Name = 'ch2_03_barrier_04_lod' }, - ['-815867178'] = { Name = 'ch2_03_barrier_04' }, - ['-102435203'] = { Name = 'ch2_03_d11' }, - ['-590380697'] = { Name = 'ch2_03_d30' }, - ['-1235237109'] = { Name = 'ch2_03_decal01' }, - ['-1686012150'] = { Name = 'ch2_03_dishes001' }, - ['1921817855'] = { Name = 'ch2_03_dishesdetail' }, - ['1812662526'] = { Name = 'ch2_03_emis_sign_hd' }, - ['-653073936'] = { Name = 'ch2_03_emis_sign_slod' }, - ['-68466659'] = { Name = 'ch2_03_emissive_hut02_lod' }, - ['625105776'] = { Name = 'ch2_03_hut02_railinga' }, - ['-1543010182'] = { Name = 'ch2_03_hut02' }, - ['203611151'] = { Name = 'ch2_03_hut03_decal' }, - ['-2116632386'] = { Name = 'ch2_03_ladder_mesh_00' }, - ['-1068679750'] = { Name = 'ch2_03_ladder_mesh_01' }, - ['65979724'] = { Name = 'ch2_03_ladder_mesh_02' }, - ['1029650476'] = { Name = 'ch2_03_ladder_mesh_03' }, - ['-484342862'] = { Name = 'ch2_03_ladder_mesh_04' }, - ['348874501'] = { Name = 'ch2_03_ladder_mesh_05' }, - ['-962278727'] = { Name = 'ch2_03_ladder_mesh_06' }, - ['-118902974'] = { Name = 'ch2_03_ladder_mesh_07' }, - ['-1177800440'] = { Name = 'ch2_03_ladder_mesh_08' }, - ['-1401186713'] = { Name = 'ch2_03_ladder_mesh_09' }, - ['-780606667'] = { Name = 'ch2_03_ladder_mesh_10' }, - ['781557101'] = { Name = 'ch2_03_ladder_mesh_11' }, - ['1011824864'] = { Name = 'ch2_03_ladder_mesh_12' }, - ['151114310'] = { Name = 'ch2_03_ladder_mesh_13' }, - ['415527371'] = { Name = 'ch2_03_ladder_mesh_14' }, - ['255631348'] = { Name = 'ch2_03_land04' }, - ['485440345'] = { Name = 'ch2_03_land05' }, - ['-733337072'] = { Name = 'ch2_03_land06' }, - ['-79988750'] = { Name = 'ch2_03_land07' }, - ['-1241453186'] = { Name = 'ch2_03_land08' }, - ['2070410981'] = { Name = 'ch2_03_land10' }, - ['1764381290'] = { Name = 'ch2_03_land11' }, - ['-251241121'] = { Name = 'ch2_03_parkdet01' }, - ['-466294386'] = { Name = 'ch2_03_radio_tower_01_decal' }, - ['-840785448'] = { Name = 'ch2_03_radio_tower_01' }, - ['-1887759324'] = { Name = 'ch2_03_radio_tower_fizzhd' }, - ['1673693621'] = { Name = 'ch2_03_retwall_glue' }, - ['-342701740'] = { Name = 'ch2_03_retwall01' }, - ['603086866'] = { Name = 'ch2_03_retwalls' }, - ['-1015721672'] = { Name = 'ch2_03_sign' }, - ['467969413'] = { Name = 'ch2_03_signdcal' }, - ['-1170032428'] = { Name = 'ch2_03_signedge01' }, - ['-1408885669'] = { Name = 'ch2_03_signedge02' }, - ['-694128241'] = { Name = 'ch2_03_signedge03' }, - ['-931474108'] = { Name = 'ch2_03_signedge04' }, - ['-812096645'] = { Name = 'ch2_03_signedge05' }, - ['-1051408652'] = { Name = 'ch2_03_signedge06' }, - ['1781864630'] = { Name = 'ch2_03_signedge07' }, - ['-1646723075'] = { Name = 'ch2_03_signedge08' }, - ['245955245'] = { Name = 'ch2_03_signframinga' }, - ['13459190'] = { Name = 'ch2_03_signframingb' }, - ['1412236724'] = { Name = 'ch2_03_signframingc' }, - ['-1923909632'] = { Name = 'ch2_03_signframingd' }, - ['935480543'] = { Name = 'ch2_03_signframinge' }, - ['1638244517'] = { Name = 'ch2_03_signframingf' }, - ['-1671916022'] = { Name = 'ch2_03_signframingg' }, - ['1356551784'] = { Name = 'ch2_03_signjoins01' }, - ['-791161245'] = { Name = 'ch2_03_signjoins02' }, - ['2130358950'] = { Name = 'ch2_03_signjoins03' }, - ['1968021324'] = { Name = 'ch2_03_signjoins04' }, - ['-1550550055'] = { Name = 'ch2_03_signjoins05' }, - ['368009361'] = { Name = 'ch2_03_signjoins06' }, - ['205344045'] = { Name = 'ch2_03_signjoins07' }, - ['-1331259903'] = { Name = 'ch2_03_signjoins08' }, - ['-1413661615'] = { Name = 'ch2_03_signstructure_b' }, - ['53225115'] = { Name = 'ch2_03_signstructure_b2' }, - ['896174871'] = { Name = 'ch2_03_signstructure_b3' }, - ['655421028'] = { Name = 'ch2_03_signstructure_b4' }, - ['116207157'] = { Name = 'ch2_03_signstructure_b5' }, - ['-240122949'] = { Name = 'ch2_03_signstructure_b6' }, - ['712570188'] = { Name = 'ch2_03_signstructure_b7' }, - ['353946252'] = { Name = 'ch2_03_signstructure_b8' }, - ['-349018684'] = { Name = 'ch2_03_signstructure' }, - ['904626145'] = { Name = 'ch2_03_towerbase' }, - ['1091986862'] = { Name = 'ch2_03_vsignlite' }, - ['1807169966'] = { Name = 'ch2_03_wires01' }, - ['388655830'] = { Name = 'ch2_03b_barrier_01' }, - ['889661696'] = { Name = 'ch2_03b_bb_slod' }, - ['1474817542'] = { Name = 'ch2_03b_cg2_03b_bb' }, - ['-605118215'] = { Name = 'ch2_03b_d13' }, - ['1218509404'] = { Name = 'ch2_03b_d15' }, - ['-615079991'] = { Name = 'ch2_03b_d16' }, - ['1843184847'] = { Name = 'ch2_03b_d19' }, - ['1439340047'] = { Name = 'ch2_03b_d20' }, - ['-1398324281'] = { Name = 'ch2_03b_d22' }, - ['-142026355'] = { Name = 'ch2_03b_d23' }, - ['-1931475911'] = { Name = 'ch2_03b_d24' }, - ['-638869933'] = { Name = 'ch2_03b_d25' }, - ['137132756'] = { Name = 'ch2_03b_d26' }, - ['914282360'] = { Name = 'ch2_03b_d27' }, - ['-297521970'] = { Name = 'ch2_03b_decal_01' }, - ['239594733'] = { Name = 'ch2_03b_decal_02' }, - ['527798088'] = { Name = 'ch2_03b_decal_03' }, - ['-123420249'] = { Name = 'ch2_03b_decal_05' }, - ['1696537246'] = { Name = 'ch2_03b_decal_07' }, - ['-481827481'] = { Name = 'ch2_03b_decal_07a' }, - ['2055686334'] = { Name = 'ch2_03b_decal_10' }, - ['-1872530314'] = { Name = 'ch2_03b_decal_11' }, - ['-205178060'] = { Name = 'ch2_03b_decal_14' }, - ['-1758526963'] = { Name = 'ch2_03b_decal_16' }, - ['1122588807'] = { Name = 'ch2_03b_decal_21' }, - ['-623735041'] = { Name = 'ch2_03b_decal_84' }, - ['-1564631338'] = { Name = 'ch2_03b_decal_87' }, - ['91358647'] = { Name = 'ch2_03b_drtr1' }, - ['1283331022'] = { Name = 'ch2_03b_drtr2' }, - ['-299145317'] = { Name = 'ch2_03b_land05' }, - ['318419337'] = { Name = 'ch2_03b_land06' }, - ['-1413007885'] = { Name = 'ch2_03b_land15' }, - ['-2145263959'] = { Name = 'ch2_03b_land16' }, - ['-759561232'] = { Name = 'ch2_03b_land18' }, - ['-462379171'] = { Name = 'ch2_03b_land19' }, - ['1225068000'] = { Name = 'ch2_03b_road_decal' }, - ['-213853094'] = { Name = 'ch2_03b_road_decal001' }, - ['-2047351897'] = { Name = 'ch2_03b_road_decal01' }, - ['1618024602'] = { Name = 'ch2_03b_road_decal03' }, - ['1622532229'] = { Name = 'ch2_03c_awning_support' }, - ['1242610882'] = { Name = 'ch2_03c_awning_support01' }, - ['-2031149779'] = { Name = 'ch2_03c_awning' }, - ['-1809564235'] = { Name = 'ch2_03c_combo_a' }, - ['451464000'] = { Name = 'ch2_03c_combo_d' }, - ['-2126981808'] = { Name = 'ch2_03c_combo_interior_ovr' }, - ['-1808164759'] = { Name = 'ch2_03c_combo_interior_win' }, - ['1556756009'] = { Name = 'ch2_03c_combo_interior' }, - ['-39387476'] = { Name = 'ch2_03c_combo_win' }, - ['-836077380'] = { Name = 'ch2_03c_combo' }, - ['-615032567'] = { Name = 'ch2_03c_emissive_a_lod' }, - ['1978685209'] = { Name = 'ch2_03c_emissive_b_lod' }, - ['-1805094930'] = { Name = 'ch2_03c_fence_01_lod' }, - ['1580860141'] = { Name = 'ch2_03c_fence_01_ovr' }, - ['1952381288'] = { Name = 'ch2_03c_fence_01' }, - ['1821346553'] = { Name = 'ch2_03c_fence01' }, - ['1574628764'] = { Name = 'ch2_03c_fence02' }, - ['2087409793'] = { Name = 'ch2_03c_fountain_water' }, - ['1843115443'] = { Name = 'ch2_03c_gate_002' }, - ['1785215547'] = { Name = 'ch2_03c_gate_01' }, - ['-1647840737'] = { Name = 'ch2_03c_glue_01' }, - ['881794987'] = { Name = 'ch2_03c_glue_02' }, - ['722111666'] = { Name = 'ch2_03c_glue_03' }, - ['-1800183802'] = { Name = 'ch2_03c_glue_04' }, - ['1586983883'] = { Name = 'ch2_03c_glue_05' }, - ['-996668113'] = { Name = 'ch2_03c_hedge_decal_02' }, - ['1186560391'] = { Name = 'ch2_03c_hedge_decal' }, - ['-475096939'] = { Name = 'ch2_03c_props_rrlwindmill_lod' }, - ['-79380377'] = { Name = 'ch2_03c_ranch_ground_01' }, - ['742939114'] = { Name = 'ch2_03c_ranch_ground_ovr_01' }, - ['496680079'] = { Name = 'ch2_03c_ranch_ground_ovr_02' }, - ['132747565'] = { Name = 'ch2_03c_ranch_ground_ovr_03' }, - ['-449164337'] = { Name = 'ch2_03c_ranch_ground_ovr_04' }, - ['1744916113'] = { Name = 'ch2_03c_ranch_m_dummy' }, - ['756744775'] = { Name = 'ch2_03c_ranch_road_01' }, - ['106116280'] = { Name = 'ch2_03c_ranch_road_02' }, - ['400480207'] = { Name = 'ch2_03c_ranch_road_03' }, - ['-663439224'] = { Name = 'ch2_03c_ranch004' }, - ['-902554617'] = { Name = 'ch2_03c_ranch005' }, - ['-28564563'] = { Name = 'ch2_03c_ranch009_d' }, - ['-1091395662'] = { Name = 'ch2_03c_ranch009_detail' }, - ['-40303920'] = { Name = 'ch2_03c_ranch009' }, - ['-1928588792'] = { Name = 'ch2_03c_ranchgrnd_water' }, - ['71406489'] = { Name = 'ch2_03c_ranchgrnd003_ovr' }, - ['603782128'] = { Name = 'ch2_03c_ranchgrnd003' }, - ['540307670'] = { Name = 'ch2_03c_removed_doors' }, - ['1613120448'] = { Name = 'ch2_03c_removedwins' }, - ['-1404670051'] = { Name = 'ch2_03c_rnchgrnd001' }, - ['1947569012'] = { Name = 'ch2_03c_rnchgrndov1' }, - ['1532414495'] = { Name = 'ch2_03c_rnchrocks001' }, - ['672032421'] = { Name = 'ch2_03c_rnchstones_lod' }, - ['2095667902'] = { Name = 'ch2_03c_stable_a' }, - ['479426447'] = { Name = 'ch2_03c_stable_a002' }, - ['396005402'] = { Name = 'ch2_03c_stable_d' }, - ['-745231810'] = { Name = 'ch2_03c_stable_d002' }, - ['280444201'] = { Name = 'ch2_03c_stable' }, - ['1121941362'] = { Name = 'ch2_03c_stable006' }, - ['1763001309'] = { Name = 'ch2_03c_stable007' }, - ['1859451195'] = { Name = 'ch2_03c_stable2_a' }, - ['-1791285023'] = { Name = 'ch2_03c_stable2_a003' }, - ['-249135644'] = { Name = 'ch2_03c_stable2_d' }, - ['106173373'] = { Name = 'ch2_03c_stable2_d003' }, - ['1781520760'] = { Name = 'ch2_03c_stable2' }, - ['-963803235'] = { Name = 'ch2_03c_storage_detail' }, - ['-685450131'] = { Name = 'ch2_03c_storage' }, - ['1899905475'] = { Name = 'ch2_03c_wall_01_ovr' }, - ['-1713672633'] = { Name = 'ch2_03c_wall_01' }, - ['-1854684790'] = { Name = 'ch2_03c_weed_01' }, - ['-1496716234'] = { Name = 'ch2_03c_weed_02' }, - ['-1967061530'] = { Name = 'ch2_03d_barrier_02_lod' }, - ['1239138084'] = { Name = 'ch2_03d_barrier_02' }, - ['-984634789'] = { Name = 'ch2_03d_barrier_03_lod' }, - ['-1820896674'] = { Name = 'ch2_03d_barrier_03' }, - ['928562057'] = { Name = 'ch2_03d_culvert' }, - ['2099082089'] = { Name = 'ch2_03d_d105' }, - ['1564230393'] = { Name = 'ch2_03d_d45' }, - ['-2084529492'] = { Name = 'ch2_03d_d45a' }, - ['-1846364400'] = { Name = 'ch2_03d_d45b' }, - ['1573113515'] = { Name = 'ch2_03d_d45f' }, - ['603672748'] = { Name = 'ch2_03d_d4c' }, - ['-1549906788'] = { Name = 'ch2_03d_d59' }, - ['168458037'] = { Name = 'ch2_03d_d59a' }, - ['-1316321839'] = { Name = 'ch2_03d_l1' }, - ['883330055'] = { Name = 'ch2_03d_l2' }, - ['1122510986'] = { Name = 'ch2_03d_l3' }, - ['708310826'] = { Name = 'ch2_03d_l4' }, - ['-1257345631'] = { Name = 'ch2_03d_props_combo32_01_lod' }, - ['1170457254'] = { Name = 'ch2_03d_props_combo35_01_lod' }, - ['-896628279'] = { Name = 'ch2_03d_retwall00_slod' }, - ['1023149938'] = { Name = 'ch2_03d_retwall00121' }, - ['-1122924645'] = { Name = 'ch2_03d_retwall00122' }, - ['1444657890'] = { Name = 'ch2_04_armco01' }, - ['-791760822'] = { Name = 'ch2_04_armco02' }, - ['831212965'] = { Name = 'ch2_04_armco02b' }, - ['-1012656651'] = { Name = 'ch2_04_armco03' }, - ['-1874645196'] = { Name = 'ch2_04_armco05' }, - ['-1338323177'] = { Name = 'ch2_04_armco06_lod' }, - ['169222876'] = { Name = 'ch2_04_armco06' }, - ['-1436426279'] = { Name = 'ch2_04_armco10' }, - ['-769541305'] = { Name = 'ch2_04_b1_lad00' }, - ['-1000136758'] = { Name = 'ch2_04_b1_lad01' }, - ['-771310827'] = { Name = 'ch2_04_b1_lad02' }, - ['-1001906280'] = { Name = 'ch2_04_b1_lad03' }, - ['616095864'] = { Name = 'ch2_04_b1_lad04' }, - ['385303797'] = { Name = 'ch2_04_b1_lad05' }, - ['154020195'] = { Name = 'ch2_04_b1_lad06' }, - ['-971069859'] = { Name = 'ch2_04_bcarpark1' }, - ['-1193243679'] = { Name = 'ch2_04_bcarpark2' }, - ['1040154980'] = { Name = 'ch2_04_bowlrail01' }, - ['1405922558'] = { Name = 'ch2_04_bowlrail02' }, - ['1785354809'] = { Name = 'ch2_04_bowlrail03' }, - ['1880122757'] = { Name = 'ch2_04_bowlrail04' }, - ['1859674957'] = { Name = 'ch2_04_bowlrail05' }, - ['1499084881'] = { Name = 'ch2_04_bowlrail06' }, - ['310258330'] = { Name = 'ch2_04_bowlrail07' }, - ['1692946285'] = { Name = 'ch2_04_bowlrail08' }, - ['905113987'] = { Name = 'ch2_04_bowlrail09' }, - ['52004937'] = { Name = 'ch2_04_bowlrail10' }, - ['291546327'] = { Name = 'ch2_04_bowlrail11' }, - ['-23625915'] = { Name = 'ch2_04_bowlrail12' }, - ['-858809418'] = { Name = 'ch2_04_bowlrail13' }, - ['-637422054'] = { Name = 'ch2_04_bowlrail14' }, - ['828040379'] = { Name = 'ch2_04_bowlrail15' }, - ['602458583'] = { Name = 'ch2_04_bowlrail16' }, - ['-303702574'] = { Name = 'ch2_04_bowlrail17' }, - ['503889431'] = { Name = 'ch2_04_bowlrail18' }, - ['-934210903'] = { Name = 'ch2_04_bowlrail19' }, - ['227188299'] = { Name = 'ch2_04_bowlrail20' }, - ['226047900'] = { Name = 'ch2_04_build01_ladder_01' }, - ['-1140395419'] = { Name = 'ch2_04_build01' }, - ['-422268293'] = { Name = 'ch2_04_build03b_carpark' }, - ['1838030697'] = { Name = 'ch2_04_build03b_ovly01' }, - ['1739348755'] = { Name = 'ch2_04_build03b_railings' }, - ['-1901949631'] = { Name = 'ch2_04_build03b' }, - ['1856340217'] = { Name = 'ch2_04_bwall01' }, - ['-670706760'] = { Name = 'ch2_04_bwall02' }, - ['168081325'] = { Name = 'ch2_04_bwall03' }, - ['1508595581'] = { Name = 'ch2_04_bwall07' }, - ['-1574533919'] = { Name = 'ch2_04_c_shader1' }, - ['-672791938'] = { Name = 'ch2_04_cafe_detail_lod' }, - ['1992733116'] = { Name = 'ch2_04_cafe_detail' }, - ['-407554076'] = { Name = 'ch2_04_cafe_ivy' }, - ['-832429635'] = { Name = 'ch2_04_cafelightse' }, - ['39235426'] = { Name = 'ch2_04_cloth012_lod' }, - ['-387905465'] = { Name = 'ch2_04_cloth013_lod' }, - ['2089796773'] = { Name = 'ch2_04_cloth014_lod' }, - ['-1130838496'] = { Name = 'ch2_04_cloth015_lod' }, - ['1528160715'] = { Name = 'ch2_04_cloth016_lod' }, - ['-1618235452'] = { Name = 'ch2_04_cloth017_lod' }, - ['-1972520642'] = { Name = 'ch2_04_cloth018_lod' }, - ['1820100942'] = { Name = 'ch2_04_cloth019_lod' }, - ['-167549391'] = { Name = 'ch2_04_cloth020_lod' }, - ['-1441184705'] = { Name = 'ch2_04_cloth11_lod' }, - ['1224412397'] = { Name = 'ch2_04_frstdcal01' }, - ['-1430138759'] = { Name = 'ch2_04_frstdcal02' }, - ['1702741490'] = { Name = 'ch2_04_frstdcal03' }, - ['2010311324'] = { Name = 'ch2_04_frstdcal04' }, - ['-896449152'] = { Name = 'ch2_04_glue_01' }, - ['-1506444091'] = { Name = 'ch2_04_glue_03' }, - ['591099603'] = { Name = 'ch2_04_glue_04' }, - ['229133229'] = { Name = 'ch2_04_glue_05' }, - ['-35036855'] = { Name = 'ch2_04_ground_d' }, - ['889895472'] = { Name = 'ch2_04_house01_d' }, - ['659876694'] = { Name = 'ch2_04_house01_details' }, - ['-428089096'] = { Name = 'ch2_04_house01_wood1' }, - ['-1207040995'] = { Name = 'ch2_04_house01_wood2' }, - ['-1211510360'] = { Name = 'ch2_04_house01' }, - ['-869589286'] = { Name = 'ch2_04_house02_d' }, - ['1719008853'] = { Name = 'ch2_04_house02_details' }, - ['235354372'] = { Name = 'ch2_04_house02_railings' }, - ['-980357834'] = { Name = 'ch2_04_house02' }, - ['21531908'] = { Name = 'ch2_04_house03_d' }, - ['1286904701'] = { Name = 'ch2_04_house03_poolrails' }, - ['560765447'] = { Name = 'ch2_04_house03_railings' }, - ['-452154303'] = { Name = 'ch2_04_house03' }, - ['392873849'] = { Name = 'ch2_04_house04_d' }, - ['-669575359'] = { Name = 'ch2_04_house04_details' }, - ['-1765462577'] = { Name = 'ch2_04_house04_poolrails_lod' }, - ['-1771336805'] = { Name = 'ch2_04_house04_poolrails' }, - ['-678719169'] = { Name = 'ch2_04_house04' }, - ['-369604775'] = { Name = 'ch2_04_house05_d' }, - ['-256716428'] = { Name = 'ch2_04_house05_details' }, - ['-1565826819'] = { Name = 'ch2_04_house05_poolrails' }, - ['2032026692'] = { Name = 'ch2_04_house05_water' }, - ['138965688'] = { Name = 'ch2_04_house05' }, - ['394479115'] = { Name = 'ch2_04_land01' }, - ['631890520'] = { Name = 'ch2_04_land02' }, - ['1036569581'] = { Name = 'ch2_04_land02b' }, - ['-1017897554'] = { Name = 'ch2_04_land03' }, - ['-788154095'] = { Name = 'ch2_04_land04' }, - ['1357396184'] = { Name = 'ch2_04_land05' }, - ['1598117258'] = { Name = 'ch2_04_land06' }, - ['-66482408'] = { Name = 'ch2_04_land07' }, - ['170994535'] = { Name = 'ch2_04_land08' }, - ['-78737974'] = { Name = 'ch2_04_land09' }, - ['1371112328'] = { Name = 'ch2_04_nwobj03' }, - ['1633741040'] = { Name = 'ch2_04_pstat_rail01' }, - ['1394035805'] = { Name = 'ch2_04_pstat_rail02' }, - ['875680226'] = { Name = 'ch2_04_pstat' }, - ['1747222518'] = { Name = 'ch2_04_pstatdcal01' }, - ['-365574331'] = { Name = 'ch2_04_pstatgrnd' }, - ['640765088'] = { Name = 'ch2_04_rngrhut' }, - ['1847488012'] = { Name = 'ch2_04_rngrhutdcal' }, - ['-1678940949'] = { Name = 'ch2_04_shelter00' }, - ['2086506766'] = { Name = 'ch2_04_shelter002' }, - ['-1233348083'] = { Name = 'ch2_04_shelter01' }, - ['-1119148650'] = { Name = 'ch2_04_v00' }, - ['-1585713676'] = { Name = 'ch2_04_v01' }, - ['-469841578'] = { Name = 'ch2_04_v013' }, - ['-1891743367'] = { Name = 'ch2_04_v02' }, - ['-2042513536'] = { Name = 'ch2_04_v04' }, - ['713359364'] = { Name = 'ch2_04_v06' }, - ['-1822993789'] = { Name = 'ch2_04_v10' }, - ['-903856104'] = { Name = 'ch2_04_v11' }, - ['2013371352'] = { Name = 'ch2_04_v12' }, - ['1580405125'] = { Name = 'ch2_04_vbsign01_railings' }, - ['-2062186816'] = { Name = 'ch2_04_vbsign01' }, - ['1123136035'] = { Name = 'ch2_04_vbsign02_railings' }, - ['-1811667811'] = { Name = 'ch2_04_vbsign02' }, - ['1682564725'] = { Name = 'ch2_04_wall10' }, - ['-917115715'] = { Name = 'ch2_04_wall10dcal' }, - ['1177056006'] = { Name = 'ch2_04_walldcal02' }, - ['-2042672185'] = { Name = 'ch2_04_weed_02' }, - ['-1744834744'] = { Name = 'ch2_04_weed_03' }, - ['871488374'] = { Name = 'ch2_05_decal' }, - ['879570297'] = { Name = 'ch2_05_glue' }, - ['1381959231'] = { Name = 'ch2_05_glue2' }, - ['977846741'] = { Name = 'ch2_05_l' }, - ['-312818185'] = { Name = 'ch2_05_ladders' }, - ['-1987543001'] = { Name = 'ch2_05_nh1' }, - ['1790872421'] = { Name = 'ch2_05_nh2_detail' }, - ['-2146144957'] = { Name = 'ch2_05_nh2' }, - ['-1025581071'] = { Name = 'ch2_05_pool' }, - ['-786197395'] = { Name = 'ch2_05_weed_01' }, - ['179341190'] = { Name = 'ch2_05_weed_02' }, - ['-1216730688'] = { Name = 'ch2_05_xtb' }, - ['-667901167'] = { Name = 'ch2_05_xtb01' }, - ['-1683657373'] = { Name = 'ch2_05b_decal' }, - ['223799074'] = { Name = 'ch2_05b_glue' }, - ['1676210345'] = { Name = 'ch2_05b_glue2' }, - ['-645788960'] = { Name = 'ch2_05b_h_detail' }, - ['-1402974422'] = { Name = 'ch2_05b_h_detail2' }, - ['-1727027063'] = { Name = 'ch2_05b_h_detail3' }, - ['1205798437'] = { Name = 'ch2_05b_h_detail4' }, - ['-1241226638'] = { Name = 'ch2_05b_h_detail5' }, - ['-798689439'] = { Name = 'ch2_05b_h' }, - ['-1658278097'] = { Name = 'ch2_05b_land' }, - ['492715149'] = { Name = 'ch2_05b_pool001' }, - ['-811129151'] = { Name = 'ch2_05c_alpha' }, - ['1927224200'] = { Name = 'ch2_05c_b1_chophse' }, - ['137357421'] = { Name = 'ch2_05c_b1' }, - ['-1049746666'] = { Name = 'ch2_05c_b2_detail' }, - ['-142489839'] = { Name = 'ch2_05c_b2' }, - ['-1399148220'] = { Name = 'ch2_05c_b3' }, - ['-1704620838'] = { Name = 'ch2_05c_b4' }, - ['451138167'] = { Name = 'ch2_05c_b5_detail' }, - ['-782075181'] = { Name = 'ch2_05c_b5' }, - ['-1079486625'] = { Name = 'ch2_05c_b6' }, - ['67106326'] = { Name = 'ch2_05c_b7_railings' }, - ['1988314390'] = { Name = 'ch2_05c_b7' }, - ['1602225199'] = { Name = 'ch2_05c_b8_wall' }, - ['1690411411'] = { Name = 'ch2_05c_b8' }, - ['-1365904176'] = { Name = 'ch2_05c_decals_00' }, - ['-693910289'] = { Name = 'ch2_05c_decals_01' }, - ['-944593139'] = { Name = 'ch2_05c_decals_02' }, - ['2045643649'] = { Name = 'ch2_05c_decals_03' }, - ['-342397226'] = { Name = 'ch2_05c_decals_04' }, - ['-1250683484'] = { Name = 'ch2_05c_decals_04b' }, - ['1618307984'] = { Name = 'ch2_05c_decals_04c' }, - ['1261125884'] = { Name = 'ch2_05c_decals_04d' }, - ['261535444'] = { Name = 'ch2_05c_decals_05' }, - ['-118847108'] = { Name = 'ch2_05c_decals_06' }, - ['613640413'] = { Name = 'ch2_05c_decals_06b' }, - ['854752651'] = { Name = 'ch2_05c_decals_07' }, - ['-1447102966'] = { Name = 'ch2_05c_decals_07b' }, - ['-446272176'] = { Name = 'ch2_05c_decals_07c' }, - ['-1285322421'] = { Name = 'ch2_05c_decals_07d' }, - ['-1758995505'] = { Name = 'ch2_05c_garage_01' }, - ['1436922025'] = { Name = 'ch2_05c_h1_water_1' }, - ['-1405067811'] = { Name = 'ch2_05c_h1_water_2' }, - ['1415797216'] = { Name = 'ch2_05c_land' }, - ['1022807748'] = { Name = 'ch2_05c_props_combo_01_lod' }, - ['-1292539008'] = { Name = 'ch2_05c_tree_mirrorreflcproxy' }, - ['2112025788'] = { Name = 'ch2_05c_v_franklins_e_dummy' }, - ['-892214633'] = { Name = 'ch2_05c_v_franklins_e_lod' }, - ['-1541911587'] = { Name = 'ch2_05c_walldetails' }, - ['1167670980'] = { Name = 'ch2_05d_garage_01' }, - ['-1798089384'] = { Name = 'ch2_05d_h3_decal' }, - ['-1037309744'] = { Name = 'ch2_05d_house3' }, - ['-1969062745'] = { Name = 'ch2_05d_land' }, - ['-718754039'] = { Name = 'ch2_05d_pool' }, - ['-157338359'] = { Name = 'ch2_05d_res_decal' }, - ['-1768592797'] = { Name = 'ch2_05d_res1_dtl' }, - ['993460681'] = { Name = 'ch2_05d_res1' }, - ['-1987031522'] = { Name = 'ch2_05d_res3_dtl' }, - ['-460668377'] = { Name = 'ch2_05d_res3_dtlb' }, - ['-156146060'] = { Name = 'ch2_05d_res3_dtlc' }, - ['1122655183'] = { Name = 'ch2_05d_rescape' }, - ['97521321'] = { Name = 'ch2_05d_rescape2' }, - ['1299427848'] = { Name = 'ch2_05d_retwall01_lod' }, - ['724995625'] = { Name = 'ch2_05d_retwall01' }, - ['1588786216'] = { Name = 'ch2_05d_retwall02_lod' }, - ['963914404'] = { Name = 'ch2_05d_retwall02' }, - ['1645516027'] = { Name = 'ch2_05d_upper_3b_ladder' }, - ['-1022758481'] = { Name = 'ch2_05d_upper_house2_dtl' }, - ['-406945226'] = { Name = 'ch2_05d_upper_house2_dtl2' }, - ['1937905987'] = { Name = 'ch2_05d_upper_house2_dtlb' }, - ['-2127219543'] = { Name = 'ch2_05d_upper_house2_dtlc' }, - ['522281875'] = { Name = 'ch2_05d_upper_house2b' }, - ['1555034574'] = { Name = 'ch2_05d_upper_res_dtl' }, - ['1778188361'] = { Name = 'ch2_05d_upper_res1_dtl' }, - ['-328049329'] = { Name = 'ch2_05d_upper_res1' }, - ['-171311804'] = { Name = 'ch2_05d_upper_res3b_detail' }, - ['1698729682'] = { Name = 'ch2_05d_upper_res3b' }, - ['1076159498'] = { Name = 'ch2_05d_upper_res4_detail' }, - ['-2000043075'] = { Name = 'ch2_05d_upper_res4_dtl' }, - ['-1897684433'] = { Name = 'ch2_05d_upper_res4' }, - ['1443166570'] = { Name = 'ch2_05d_wickerwall' }, - ['1027232254'] = { Name = 'ch2_05e_l1_decal001' }, - ['1218703072'] = { Name = 'ch2_05e_l1' }, - ['-2006405106'] = { Name = 'ch2_05e_l2_decal001' }, - ['232323403'] = { Name = 'ch2_05e_l2' }, - ['-726979548'] = { Name = 'ch2_05e_land_walls_dtl' }, - ['-980918354'] = { Name = 'ch2_05e_land_walls' }, - ['1671977006'] = { Name = 'ch2_05e_res1_dtl' }, - ['730618403'] = { Name = 'ch2_05e_res1_dtlb' }, - ['1553808452'] = { Name = 'ch2_05e_res1_dtlc' }, - ['1081082858'] = { Name = 'ch2_05e_res1_dtld' }, - ['-108619549'] = { Name = 'ch2_05e_res1' }, - ['1525516622'] = { Name = 'ch2_05e_res2_dtl' }, - ['566186903'] = { Name = 'ch2_05e_res2_dtla' }, - ['1472249757'] = { Name = 'ch2_05e_res2_dtlb' }, - ['278022936'] = { Name = 'ch2_05e_res2_ladder' }, - ['129742157'] = { Name = 'ch2_05e_res2' }, - ['-1439826051'] = { Name = 'ch2_05e_res3_dtl' }, - ['-218076660'] = { Name = 'ch2_05e_res3_dtla' }, - ['476815215'] = { Name = 'ch2_05e_res3_ladder' }, - ['1443484136'] = { Name = 'ch2_05e_res3' }, - ['-1235276244'] = { Name = 'ch2_05e_res4_dtl' }, - ['-1074332496'] = { Name = 'ch2_05e_res4_dtla' }, - ['-1076833469'] = { Name = 'ch2_05e_res4_ladder' }, - ['1679158784'] = { Name = 'ch2_05e_res4' }, - ['1705776090'] = { Name = 'ch2_05e_res4frnt' }, - ['-2002878485'] = { Name = 'ch2_05e_res5_dtl' }, - ['1958908490'] = { Name = 'ch2_05e_res5_ladder' }, - ['845154965'] = { Name = 'ch2_05e_res5' }, - ['1881055917'] = { Name = 'ch2_05e_res7_dtl' }, - ['876906414'] = { Name = 'ch2_05e_res7_dtla' }, - ['580641885'] = { Name = 'ch2_05e_res7_dtlb' }, - ['1608998643'] = { Name = 'ch2_05e_res7_dtlc' }, - ['1108943703'] = { Name = 'ch2_05e_res7_dtld' }, - ['-1825206934'] = { Name = 'ch2_05e_res7_ladder' }, - ['-1831220353'] = { Name = 'ch2_05e_res7' }, - ['1864917736'] = { Name = 'ch2_05e_res8_dtl' }, - ['-818107902'] = { Name = 'ch2_05e_res8_dtlb' }, - ['-1172587093'] = { Name = 'ch2_05e_res8_ladder' }, - ['-1606883779'] = { Name = 'ch2_05e_res8' }, - ['1014717456'] = { Name = 'ch2_05e_ret_wall' }, - ['2025821166'] = { Name = 'ch2_05e_ret_wall2' }, - ['-987542753'] = { Name = 'ch2_05e_water_02' }, - ['1503457945'] = { Name = 'ch2_05e_weed_01' }, - ['1802409532'] = { Name = 'ch2_05e_weed_02' }, - ['233437012'] = { Name = 'ch2_05f_armco_lod' }, - ['-322687572'] = { Name = 'ch2_05f_armco' }, - ['25340637'] = { Name = 'ch2_05f_armco2_lod' }, - ['1629545031'] = { Name = 'ch2_05f_armco2' }, - ['721433535'] = { Name = 'ch2_05f_armcotop_lod' }, - ['1773134418'] = { Name = 'ch2_05f_armcotop' }, - ['857008054'] = { Name = 'ch2_05f_basearmcob_lod' }, - ['-768459074'] = { Name = 'ch2_05f_basearmcob' }, - ['-2078096444'] = { Name = 'ch2_05f_basearmcod_lod' }, - ['785151985'] = { Name = 'ch2_05f_basearmcod' }, - ['9086002'] = { Name = 'ch2_05f_hs02_dt' }, - ['1379918023'] = { Name = 'ch2_05f_hs02_dtla' }, - ['-238739485'] = { Name = 'ch2_05f_hs02_dtlb' }, - ['-15025522'] = { Name = 'ch2_05f_hs02_dtlc' }, - ['206689532'] = { Name = 'ch2_05f_hs02_dtld' }, - ['463238033'] = { Name = 'ch2_05f_hs02_dtle' }, - ['-2045381162'] = { Name = 'ch2_05f_hs02_railings' }, - ['1002991805'] = { Name = 'ch2_05f_hs02' }, - ['1568008287'] = { Name = 'ch2_05f_hs03_details' }, - ['1541317863'] = { Name = 'ch2_05f_hs03_rails' }, - ['693891256'] = { Name = 'ch2_05f_hs04_details' }, - ['446975743'] = { Name = 'ch2_05f_hs04_railings' }, - ['-1095465708'] = { Name = 'ch2_05f_hs04_railingsb' }, - ['-856743543'] = { Name = 'ch2_05f_hs04_railingsc' }, - ['1358768547'] = { Name = 'ch2_05f_hs04_railingsd' }, - ['186224480'] = { Name = 'ch2_05f_hs04' }, - ['1183120439'] = { Name = 'ch2_05f_hs05_details' }, - ['699706198'] = { Name = 'ch2_05f_hs05_detailsb' }, - ['1950725649'] = { Name = 'ch2_05f_hs05_dtlb' }, - ['1319836849'] = { Name = 'ch2_05f_hs05_glass_lod' }, - ['979331582'] = { Name = 'ch2_05f_hs05_glass' }, - ['1059797102'] = { Name = 'ch2_05f_hs05_railing_lod' }, - ['-788552431'] = { Name = 'ch2_05f_hs05_railing' }, - ['-2005073648'] = { Name = 'ch2_05f_hs05_railings' }, - ['753128180'] = { Name = 'ch2_05f_hs05' }, - ['668461730'] = { Name = 'ch2_05f_hs06_details' }, - ['2144730560'] = { Name = 'ch2_05f_hs06_pil_lod' }, - ['-849940813'] = { Name = 'ch2_05f_hs06_pil' }, - ['-1292520924'] = { Name = 'ch2_05f_hs06_railings' }, - ['1721878127'] = { Name = 'ch2_05f_hs06' }, - ['-2082757149'] = { Name = 'ch2_05f_hs07_details' }, - ['1311166208'] = { Name = 'ch2_05f_hs07_detailsa' }, - ['1855255055'] = { Name = 'ch2_05f_hs07_railings_lod' }, - ['808627889'] = { Name = 'ch2_05f_hs07_railings' }, - ['-1119391476'] = { Name = 'ch2_05f_hs07_wood' }, - ['2018699729'] = { Name = 'ch2_05f_hs07' }, - ['-1223016177'] = { Name = 'ch2_05f_hs08_details' }, - ['1231440975'] = { Name = 'ch2_05f_hs09_1' }, - ['1409769873'] = { Name = 'ch2_05f_hs09_2' }, - ['1717632827'] = { Name = 'ch2_05f_hs09_details' }, - ['1931362982'] = { Name = 'ch2_05f_hs09_railings' }, - ['522575524'] = { Name = 'ch2_05f_hs09_railingsb' }, - ['-1807722096'] = { Name = 'ch2_05f_hs09_wood' }, - ['-1112281484'] = { Name = 'ch2_05f_hs10_details' }, - ['-1191917020'] = { Name = 'ch2_05f_hs10_railings' }, - ['1777832231'] = { Name = 'ch2_05f_hs10_wood_lod' }, - ['-1225354092'] = { Name = 'ch2_05f_hs10_wood' }, - ['894658371'] = { Name = 'ch2_05f_hs10' }, - ['-1037115308'] = { Name = 'ch2_05f_hs10glass' }, - ['-416463167'] = { Name = 'ch2_05f_hs11_details' }, - ['-1358561319'] = { Name = 'ch2_05f_hs11_detailsb' }, - ['1902886916'] = { Name = 'ch2_05f_plot01interior' }, - ['-490990170'] = { Name = 'ch2_05f_plot06interior' }, - ['1973554829'] = { Name = 'ch2_05f_plot09interior' }, - ['-1523913073'] = { Name = 'ch2_05f_poolwtr03' }, - ['1788542696'] = { Name = 'ch2_05f_terrain_01' }, - ['-204730036'] = { Name = 'ch2_05f_terrain_02' }, - ['-1094703311'] = { Name = 'ch2_05f_terrain_03' }, - ['1063672780'] = { Name = 'ch2_06_brdgerail01' }, - ['-126464539'] = { Name = 'ch2_06_brdgerail02' }, - ['446403127'] = { Name = 'ch2_06_brdgerail03' }, - ['-700380805'] = { Name = 'ch2_06_brdgerail04' }, - ['141749726'] = { Name = 'ch2_06_brdgerail05' }, - ['-1316274160'] = { Name = 'ch2_06_brdgerail06' }, - ['-2086650343'] = { Name = 'ch2_06_bridge' }, - ['-909201700'] = { Name = 'ch2_06_docksteps01' }, - ['536262795'] = { Name = 'ch2_06_docksteps02_lod' }, - ['396216953'] = { Name = 'ch2_06_docksteps02' }, - ['603906875'] = { Name = 'ch2_06_docksteps03' }, - ['28286621'] = { Name = 'ch2_06_docksteps04' }, - ['243415106'] = { Name = 'ch2_06_docksteps05' }, - ['1581045686'] = { Name = 'ch2_06_docksteps06' }, - ['346647344'] = { Name = 'ch2_06_docksteps07_lod' }, - ['1331804612'] = { Name = 'ch2_06_docksteps07' }, - ['1975577325'] = { Name = 'ch2_06_emissive_02_slod' }, - ['599190722'] = { Name = 'ch2_06_emissive_03_slod' }, - ['525157941'] = { Name = 'ch2_06_emissive_04_slod' }, - ['-90595827'] = { Name = 'ch2_06_emissive_04b_lod' }, - ['-935297086'] = { Name = 'ch2_06_emissive_slod' }, - ['1204354192'] = { Name = 'ch2_06_estsign' }, - ['1160483002'] = { Name = 'ch2_06_estsigndcal' }, - ['-85787022'] = { Name = 'ch2_06_fence01_iref' }, - ['1812084777'] = { Name = 'ch2_06_fence02_iref' }, - ['1475850410'] = { Name = 'ch2_06_fencing_01' }, - ['-1314397175'] = { Name = 'ch2_06_fencing_02' }, - ['-1013151758'] = { Name = 'ch2_06_fencing_03' }, - ['-1796593010'] = { Name = 'ch2_06_fencing_04' }, - ['-1497379271'] = { Name = 'ch2_06_fencing_05' }, - ['-125341241'] = { Name = 'ch2_06_fencing_06' }, - ['177608164'] = { Name = 'ch2_06_fencing_07' }, - ['-603998024'] = { Name = 'ch2_06_fencing_08' }, - ['-305439665'] = { Name = 'ch2_06_fencing_09' }, - ['1300699773'] = { Name = 'ch2_06_fencing_10' }, - ['875947995'] = { Name = 'ch2_06_fencing_11' }, - ['1776014118'] = { Name = 'ch2_06_fencing_12' }, - ['1587657906'] = { Name = 'ch2_06_fencing_13' }, - ['1994194394'] = { Name = 'ch2_06_garden' }, - ['-400963775'] = { Name = 'ch2_06_guttering' }, - ['-1675261163'] = { Name = 'ch2_06_house02_dtlb' }, - ['-405331337'] = { Name = 'ch2_06_house02_dtlc' }, - ['-442694499'] = { Name = 'ch2_06_house02' }, - ['831531986'] = { Name = 'ch2_06_house1_dtl' }, - ['671907594'] = { Name = 'ch2_06_house1_dtl2' }, - ['376429521'] = { Name = 'ch2_06_house1_dtl3' }, - ['63026805'] = { Name = 'ch2_06_house1_dtl4' }, - ['-238284150'] = { Name = 'ch2_06_house1_dtl5' }, - ['-678423613'] = { Name = 'ch2_06_house1_dtl55' }, - ['-1210868078'] = { Name = 'ch2_06_house1_dtl6' }, - ['-1514735015'] = { Name = 'ch2_06_house1_dtl7' }, - ['-1805854811'] = { Name = 'ch2_06_house1_dtl8' }, - ['1934659860'] = { Name = 'ch2_06_house1_ivy' }, - ['-1697864612'] = { Name = 'ch2_06_house1_ivy2' }, - ['-1976696033'] = { Name = 'ch2_06_house1_ivy3' }, - ['1875277219'] = { Name = 'ch2_06_house1' }, - ['-293169388'] = { Name = 'ch2_06_house1b' }, - ['-54447223'] = { Name = 'ch2_06_house1c' }, - ['1240190429'] = { Name = 'ch2_06_house1d' }, - ['1464690848'] = { Name = 'ch2_06_house1e' }, - ['-665589073'] = { Name = 'ch2_06_house1f' }, - ['1609039340'] = { Name = 'ch2_06_house2_dtl' }, - ['-2038714061'] = { Name = 'ch2_06_house2_dtl2' }, - ['126821351'] = { Name = 'ch2_06_house2_rail1' }, - ['-114718948'] = { Name = 'ch2_06_house2_rail2' }, - ['722987768'] = { Name = 'ch2_06_house2_rail3' }, - ['-39579296'] = { Name = 'ch2_06_house2' }, - ['-1600500968'] = { Name = 'ch2_06_house3_dtl' }, - ['220208566'] = { Name = 'ch2_06_house3_dtl2' }, - ['240825037'] = { Name = 'ch2_06_house3' }, - ['-1849570186'] = { Name = 'ch2_06_miscdetail_' }, - ['-749557965'] = { Name = 'ch2_06_pool_01' }, - ['975928079'] = { Name = 'ch2_06_rddcal00' }, - ['122754395'] = { Name = 'ch2_06_rddcal01' }, - ['370914032'] = { Name = 'ch2_06_rddcal02' }, - ['-502904106'] = { Name = 'ch2_06_rddcal03' }, - ['-203952519'] = { Name = 'ch2_06_rddcal04' }, - ['-1099856979'] = { Name = 'ch2_06_rddcal05' }, - ['2059271608'] = { Name = 'ch2_06_reswall00_dtl' }, - ['-369902061'] = { Name = 'ch2_06_reswall00' }, - ['332602883'] = { Name = 'ch2_06_reswall02_dtl' }, - ['-292862142'] = { Name = 'ch2_06_reswall02' }, - ['525336766'] = { Name = 'ch2_06_reswall05_dtl' }, - ['956292138'] = { Name = 'ch2_06_reswall05' }, - ['1475062402'] = { Name = 'ch2_06_reswall06_dtl' }, - ['1201895793'] = { Name = 'ch2_06_reswall06' }, - ['163167428'] = { Name = 'ch2_06_reswall07_dtl' }, - ['-1997571064'] = { Name = 'ch2_06_reswall07' }, - ['1440172398'] = { Name = 'ch2_06_reswall09_dtl' }, - ['241895173'] = { Name = 'ch2_06_reswall09' }, - ['-1534630411'] = { Name = 'ch2_06_reswall11_dtl' }, - ['-1548045698'] = { Name = 'ch2_06_reswall11' }, - ['-803236821'] = { Name = 'ch2_06_reswall15_dtl' }, - ['716488820'] = { Name = 'ch2_06_reswall15' }, - ['749772741'] = { Name = 'ch2_06_reswall15a_dtl' }, - ['1007117081'] = { Name = 'ch2_06_reswall16' }, - ['2119460786'] = { Name = 'ch2_06_reswall17' }, - ['-984355004'] = { Name = 'ch2_06_reswall30' }, - ['774381210'] = { Name = 'ch2_06_reswall31_lod' }, - ['-86320583'] = { Name = 'ch2_06_reswall31' }, - ['-1595857313'] = { Name = 'ch2_06_reswall32' }, - ['-1937048141'] = { Name = 'ch2_06_reswall33' }, - ['2052086078'] = { Name = 'ch2_06_reswall34' }, - ['-927331619'] = { Name = 'ch2_06_reswalldcal' }, - ['1767703781'] = { Name = 'ch2_06_skidock01' }, - ['-1296606538'] = { Name = 'ch2_06_skidock02_dtl' }, - ['-1035782476'] = { Name = 'ch2_06_skidock02' }, - ['-1877781935'] = { Name = 'ch2_06_skidock03' }, - ['-743219960'] = { Name = 'ch2_06_skidock10' }, - ['1177531473'] = { Name = 'ch2_06_skidock9' }, - ['1027866216'] = { Name = 'ch2_06_terrain01a' }, - ['-208200280'] = { Name = 'ch2_06_terrain01b_dtl_000' }, - ['-206181555'] = { Name = 'ch2_06_terrain01b' }, - ['-1122971665'] = { Name = 'ch2_06_terrain01c_dtl' }, - ['-529546047'] = { Name = 'ch2_06_terrain01c' }, - ['-2053616106'] = { Name = 'ch2_06_terrain02' }, - ['935752267'] = { Name = 'ch2_06_tower' }, - ['1906275157'] = { Name = 'ch2_06_treetrunk' }, - ['1216611153'] = { Name = 'ch2_06_wall' }, - ['-471384197'] = { Name = 'ch2_06_wall01_iref' }, - ['-1290975757'] = { Name = 'ch2_06_windows_iref' }, - ['-1712293655'] = { Name = 'ch2_07_fence_01' }, - ['1443110560'] = { Name = 'ch2_07_fence_02a' }, - ['1682684719'] = { Name = 'ch2_07_fence_02b' }, - ['1869849584'] = { Name = 'ch2_07_fence_03' }, - ['-603480291'] = { Name = 'ch2_07_fence_04a' }, - ['1031791116'] = { Name = 'ch2_07_fence_04b' }, - ['1076381018'] = { Name = 'ch2_07_fence_05' }, - ['1266248720'] = { Name = 'ch2_07_fizzrail01' }, - ['1027592093'] = { Name = 'ch2_07_fizzrail02' }, - ['-344609794'] = { Name = 'ch2_07_fizzrail03' }, - ['-680557582'] = { Name = 'ch2_07_fizzrail04' }, - ['468083523'] = { Name = 'ch2_07_hedgedtl_01' }, - ['273501201'] = { Name = 'ch2_07_hedgedtl_02' }, - ['-1098504060'] = { Name = 'ch2_07_hedgedtl_03' }, - ['-453085836'] = { Name = 'ch2_07_hedgedtl_04' }, - ['1758821660'] = { Name = 'ch2_07_hedgedtl_05' }, - ['1500175943'] = { Name = 'ch2_07_hedgedtl_06' }, - ['127777458'] = { Name = 'ch2_07_hedgedtl_07' }, - ['-305428722'] = { Name = 'ch2_07_hedgedtl_08' }, - ['-1940044753'] = { Name = 'ch2_07_hedgedtl_09' }, - ['-581146860'] = { Name = 'ch2_07_hedgedtl_10' }, - ['-38131765'] = { Name = 'ch2_07_hedgedtl_11' }, - ['-880589986'] = { Name = 'ch2_07_hedgedtl_12' }, - ['-516657472'] = { Name = 'ch2_07_hedgedtl_13' }, - ['-1359574459'] = { Name = 'ch2_07_hedgedtl_14' }, - ['1159478042'] = { Name = 'ch2_07_house_l2c_dtl' }, - ['-554346560'] = { Name = 'ch2_07_house_l2c' }, - ['435279616'] = { Name = 'ch2_07_house03_dtl' }, - ['-357469072'] = { Name = 'ch2_07_house03' }, - ['48601299'] = { Name = 'ch2_07_house55_dtl' }, - ['-318640635'] = { Name = 'ch2_07_house55' }, - ['-1906972361'] = { Name = 'ch2_07_house78_dtl' }, - ['-452699186'] = { Name = 'ch2_07_house78' }, - ['-313572627'] = { Name = 'ch2_07_house79a_dtl' }, - ['-1241971182'] = { Name = 'ch2_07_house79a' }, - ['348281276'] = { Name = 'ch2_07_house81_dtl' }, - ['-478655786'] = { Name = 'ch2_07_house81' }, - ['473419931'] = { Name = 'ch2_07_house82_dtl' }, - ['-634472381'] = { Name = 'ch2_07_house82' }, - ['1484940371'] = { Name = 'ch2_07_house83_dtl' }, - ['-923494961'] = { Name = 'ch2_07_house83' }, - ['-937868534'] = { Name = 'ch2_07_house97_dtl' }, - ['-1110670585'] = { Name = 'ch2_07_house97' }, - ['355797281'] = { Name = 'ch2_07_l1' }, - ['-1243949624'] = { Name = 'ch2_07_land024_dcl' }, - ['-2027210992'] = { Name = 'ch2_07_poolladder_01' }, - ['265111638'] = { Name = 'ch2_07_poolladder_02' }, - ['561441705'] = { Name = 'ch2_07_poolladder_03' }, - ['-1639391522'] = { Name = 'ch2_07_water_01' }, - ['-947352020'] = { Name = 'ch2_07b_10' }, - ['917613117'] = { Name = 'ch2_07b_17_dtl' }, - ['515816603'] = { Name = 'ch2_07b_17' }, - ['-1179436128'] = { Name = 'ch2_07b_20_dtl' }, - ['-1182568058'] = { Name = 'ch2_07b_20' }, - ['1510149509'] = { Name = 'ch2_07b_31_dtl' }, - ['850388313'] = { Name = 'ch2_07b_31_ivy_dtl' }, - ['-908717877'] = { Name = 'ch2_07b_31' }, - ['-1935054131'] = { Name = 'ch2_07b_build_dtl' }, - ['-1504799270'] = { Name = 'ch2_07b_build' }, - ['-1961139128'] = { Name = 'ch2_07b_build01_dtl' }, - ['1955792660'] = { Name = 'ch2_07b_build01' }, - ['1744451306'] = { Name = 'ch2_07b_build02_dtl' }, - ['-1497076874'] = { Name = 'ch2_07b_build02' }, - ['137028705'] = { Name = 'ch2_07b_build03_dtl' }, - ['-917473716'] = { Name = 'ch2_07b_build03_raily' }, - ['-1728131093'] = { Name = 'ch2_07b_build03' }, - ['2090340603'] = { Name = 'ch2_07b_build04_dtl' }, - ['-900124001'] = { Name = 'ch2_07b_build04' }, - ['-1839258019'] = { Name = 'ch2_07b_build04b' }, - ['450111494'] = { Name = 'ch2_07b_build05_dtl' }, - ['1233891590'] = { Name = 'ch2_07b_build05' }, - ['-217717462'] = { Name = 'ch2_07b_build06_dtl' }, - ['1664803940'] = { Name = 'ch2_07b_build06' }, - ['-1421128201'] = { Name = 'ch2_07b_fences01' }, - ['-1727551120'] = { Name = 'ch2_07b_fences02' }, - ['1205667612'] = { Name = 'ch2_07b_fences03' }, - ['1631757185'] = { Name = 'ch2_07b_fencing009' }, - ['-1353851236'] = { Name = 'ch2_07b_fencing1' }, - ['-2144750193'] = { Name = 'ch2_07b_fencing10' }, - ['-497859386'] = { Name = 'ch2_07b_fencing2' }, - ['-805658603'] = { Name = 'ch2_07b_fencing3' }, - ['-1709657010'] = { Name = 'ch2_07b_fencing4' }, - ['-2012606415'] = { Name = 'ch2_07b_fencing5' }, - ['-1097040555'] = { Name = 'ch2_07b_fencing6' }, - ['-1393763850'] = { Name = 'ch2_07b_fencing7' }, - ['1393108528'] = { Name = 'ch2_07b_fencing8' }, - ['-624280649'] = { Name = 'ch2_07b_garage_01' }, - ['508805940'] = { Name = 'ch2_07b_hedgedtl_01' }, - ['-412035729'] = { Name = 'ch2_07b_hedgedtl_02' }, - ['-1045919265'] = { Name = 'ch2_07b_hedgedtl_03' }, - ['2062974072'] = { Name = 'ch2_07b_hedgedtl_04' }, - ['1695240354'] = { Name = 'ch2_07b_hedgedtl_05' }, - ['239346453'] = { Name = 'ch2_07b_hedgedtl_06' }, - ['11438058'] = { Name = 'ch2_07b_hedgedtl_07' }, - ['1044480787'] = { Name = 'ch2_07b_hedgedtl_08' }, - ['-1346574840'] = { Name = 'ch2_07b_hedgedtl_09' }, - ['-1932220908'] = { Name = 'ch2_07b_hedgedtl_10' }, - ['1552598401'] = { Name = 'ch2_07b_hedgedtl_11' }, - ['81368544'] = { Name = 'ch2_07b_hedgedtl_12' }, - ['849113445'] = { Name = 'ch2_07b_hedgedtl_13' }, - ['-399450993'] = { Name = 'ch2_07b_hedgedtl_14' }, - ['368490522'] = { Name = 'ch2_07b_hedgedtl_15' }, - ['-839735277'] = { Name = 'ch2_07b_hedgedtl_16' }, - ['-1111980129'] = { Name = 'ch2_07b_hedgedtl_17' }, - ['-1286212906'] = { Name = 'ch2_07b_hedgedtl_18' }, - ['-1583427736'] = { Name = 'ch2_07b_hedgedtl_19' }, - ['994901862'] = { Name = 'ch2_07b_hedgedtl_20' }, - ['-914777151'] = { Name = 'ch2_07b_hedgedtl_21' }, - ['197730399'] = { Name = 'ch2_07b_hedgedtl_22' }, - ['706829583'] = { Name = 'ch2_07b_hedgedtl_23' }, - ['-2108650132'] = { Name = 'ch2_07b_hedgedtl_24' }, - ['-1872483949'] = { Name = 'ch2_07b_hedgedtl_25' }, - ['-691161495'] = { Name = 'ch2_07b_hedgedtl_26' }, - ['-445721685'] = { Name = 'ch2_07b_hedgedtl_27' }, - ['-1453696125'] = { Name = 'ch2_07b_hedgedtl_28' }, - ['-1222674675'] = { Name = 'ch2_07b_hedgedtl_29' }, - ['-152892853'] = { Name = 'ch2_07b_poolladder_006' }, - ['1068546550'] = { Name = 'ch2_07b_poolladder_05_dlod' }, - ['1434842390'] = { Name = 'ch2_07b_poolladder_1' }, - ['2135705766'] = { Name = 'ch2_07b_poolladder_2' }, - ['832318787'] = { Name = 'ch2_07b_poolladder_3' }, - ['-1863226352'] = { Name = 'ch2_07b_poolladder_4' }, - ['-705700049'] = { Name = 'ch2_07b_props_g_door_lod' }, - ['1304100248'] = { Name = 'ch2_07b_water' }, - ['-549681521'] = { Name = 'ch2_07c_building_a_dtl' }, - ['-1407290972'] = { Name = 'ch2_07c_building_a_dtl2' }, - ['746446587'] = { Name = 'ch2_07c_building_a' }, - ['35615749'] = { Name = 'ch2_07c_building_b_dtl' }, - ['238953084'] = { Name = 'ch2_07c_building_b' }, - ['1587724134'] = { Name = 'ch2_07c_building_c_dtl' }, - ['-643870249'] = { Name = 'ch2_07c_building_c_dtl2' }, - ['-1538607'] = { Name = 'ch2_07c_building_c' }, - ['-1041824311'] = { Name = 'ch2_07c_constrplot_decals' }, - ['1362275894'] = { Name = 'ch2_07c_constrplot_gnd' }, - ['789548290'] = { Name = 'ch2_07c_fencing1' }, - ['-965329971'] = { Name = 'ch2_07c_fencing2' }, - ['-666050694'] = { Name = 'ch2_07c_fencing3' }, - ['-656809836'] = { Name = 'ch2_07c_fencing4' }, - ['-507094324'] = { Name = 'ch2_07c_hedgedtl_01' }, - ['691628465'] = { Name = 'ch2_07c_hedgedtl_02' }, - ['-1233484747'] = { Name = 'ch2_07c_hedgedtl_03' }, - ['-1934118740'] = { Name = 'ch2_07c_hedgedtl_04' }, - ['-1408176290'] = { Name = 'ch2_07c_hedgedtl_05' }, - ['-230425657'] = { Name = 'ch2_07c_hedgedtl_06' }, - ['-1110739946'] = { Name = 'ch2_07c_indust_det' }, - ['-1098397382'] = { Name = 'ch2_07c_poolladder1' }, - ['-1032265514'] = { Name = 'ch2_07c_terrain_a_lod' }, - ['-424774544'] = { Name = 'ch2_07c_terrain_a' }, - ['-1393983257'] = { Name = 'ch2_07c_terrain_b' }, - ['-979799059'] = { Name = 'ch2_07c_water_01' }, - ['1235015851'] = { Name = 'ch2_07d_b1a' }, - ['-1077492706'] = { Name = 'ch2_07d_build00_dtl' }, - ['191722308'] = { Name = 'ch2_07d_build00' }, - ['-1656535363'] = { Name = 'ch2_07d_build01_dtl' }, - ['-1860796772'] = { Name = 'ch2_07d_build01' }, - ['-775181449'] = { Name = 'ch2_07d_build02_dtl' }, - ['1591056923'] = { Name = 'ch2_07d_build02' }, - ['-279005011'] = { Name = 'ch2_07d_build02shutters' }, - ['1647604710'] = { Name = 'ch2_07d_build11_dtl' }, - ['1913634143'] = { Name = 'ch2_07d_build11' }, - ['1775437034'] = { Name = 'ch2_07d_fence140' }, - ['-239572331'] = { Name = 'ch2_07d_fencing_02' }, - ['2138408465'] = { Name = 'ch2_07d_fencing_03' }, - ['1234334499'] = { Name = 'ch2_07d_fencing_05a' }, - ['1484361969'] = { Name = 'ch2_07d_fencing_05b' }, - ['725999023'] = { Name = 'ch2_07d_fencing_06' }, - ['2056912068'] = { Name = 'ch2_07d_fencing_07_lod' }, - ['931132963'] = { Name = 'ch2_07d_fencing_07' }, - ['-1532844580'] = { Name = 'ch2_07d_fencing_08_dlod' }, - ['-964848608'] = { Name = 'ch2_07d_fencing_08' }, - ['718555959'] = { Name = 'ch2_07d_hedgedtl_01' }, - ['1960566697'] = { Name = 'ch2_07d_hedgedtl_02' }, - ['128845035'] = { Name = 'ch2_07d_hedgedtl_03' }, - ['-34115202'] = { Name = 'ch2_07d_hedgedtl_04' }, - ['-198615582'] = { Name = 'ch2_07d_hedgedtl_05' }, - ['-630609309'] = { Name = 'ch2_07d_hedgedtl_06' }, - ['-792291555'] = { Name = 'ch2_07d_hedgedtl_07' }, - ['59899163'] = { Name = 'ch2_07d_hedgedtl_08' }, - ['-1788731207'] = { Name = 'ch2_07d_hedgedtl_09' }, - ['-1463597537'] = { Name = 'ch2_07d_hedgedtl_10' }, - ['1455759908'] = { Name = 'ch2_07d_hedgedtl_11' }, - ['1106770054'] = { Name = 'ch2_07d_hedgedtl_12' }, - ['682214890'] = { Name = 'ch2_07d_hedgedtl_13' }, - ['528692125'] = { Name = 'ch2_07d_hedgedtl_14' }, - ['338697463'] = { Name = 'ch2_07d_hedgedtl_15' }, - ['1811369108'] = { Name = 'ch2_07d_hedgedtl_16' }, - ['2001363770'] = { Name = 'ch2_07d_hedgedtl_17' }, - ['1215595919'] = { Name = 'ch2_07d_hedgedtl_18' }, - ['1859374480'] = { Name = 'ch2_07d_hint120' }, - ['-311336688'] = { Name = 'ch2_07d_house140_dtl' }, - ['-225766844'] = { Name = 'ch2_07d_house140' }, - ['539649976'] = { Name = 'ch2_07d_house141_dtl' }, - ['751371967'] = { Name = 'ch2_07d_house141' }, - ['213709691'] = { Name = 'ch2_07d_house144_dtl' }, - ['1506599110'] = { Name = 'ch2_07d_house144' }, - ['-1781764177'] = { Name = 'ch2_07d_house84_dtl' }, - ['-492820204'] = { Name = 'ch2_07d_house84' }, - ['-177625683'] = { Name = 'ch2_07d_house85_dtl' }, - ['942593088'] = { Name = 'ch2_07d_house85' }, - ['1000710384'] = { Name = 'ch2_07d_house89_dtl' }, - ['67628019'] = { Name = 'ch2_07d_house89' }, - ['348881028'] = { Name = 'ch2_07d_l1' }, - ['-1836483582'] = { Name = 'ch2_07d_l2' }, - ['477579246'] = { Name = 'ch2_07d_newrail_01' }, - ['735110817'] = { Name = 'ch2_07d_newrail_02' }, - ['1042484037'] = { Name = 'ch2_07d_newrail_03' }, - ['1329311094'] = { Name = 'ch2_07d_newrail_04' }, - ['1904931348'] = { Name = 'ch2_07d_newrail_05' }, - ['1210425154'] = { Name = 'ch2_07d_newrail_06' }, - ['1459371247'] = { Name = 'ch2_07d_newrail_07' }, - ['1536443935'] = { Name = 'ch2_07d_newrail_08' }, - ['1851681715'] = { Name = 'ch2_07d_newrail_09' }, - ['-578110658'] = { Name = 'ch2_07d_newrail_10' }, - ['-899574548'] = { Name = 'ch2_07d_newrail_11' }, - ['-1249350854'] = { Name = 'ch2_07d_newrail_12' }, - ['-1571994428'] = { Name = 'ch2_07d_newrail_13' }, - ['-1863605759'] = { Name = 'ch2_07d_newrail_14' }, - ['2145222629'] = { Name = 'ch2_07d_newrail_15' }, - ['1853807912'] = { Name = 'ch2_07d_newrail_16' }, - ['1530508958'] = { Name = 'ch2_07d_newrail_17' }, - ['1247024339'] = { Name = 'ch2_07d_newrail_18' }, - ['944140472'] = { Name = 'ch2_07d_newrail_19' }, - ['1686876849'] = { Name = 'ch2_07d_poolladder_01' }, - ['1473419583'] = { Name = 'ch2_07d_poolladder_02' }, - ['-236434068'] = { Name = 'ch2_07d_poolladder_03' }, - ['-536237649'] = { Name = 'ch2_07d_poolladder_04' }, - ['-1925905405'] = { Name = 'ch2_07d_poolladder_05' }, - ['-74686284'] = { Name = 'ch2_07d_poolladder_06' }, - ['-1977024243'] = { Name = 'ch2_07d_structure_01' }, - ['-1075876743'] = { Name = 'ch2_07d_structure_02' }, - ['-1319121030'] = { Name = 'ch2_07d_structure_03' }, - ['-568547089'] = { Name = 'ch2_07d_structure_04' }, - ['1176131484'] = { Name = 'ch2_07d_terrain_decal' }, - ['1947059599'] = { Name = 'ch2_07d_water_01' }, - ['-1806319931'] = { Name = 'ch2_08_bamboo01' }, - ['1048384281'] = { Name = 'ch2_08_bamboo02' }, - ['-1327335458'] = { Name = 'ch2_08_bamboo03' }, - ['-1244395504'] = { Name = 'ch2_08_garage_outline' }, - ['1541959547'] = { Name = 'ch2_08_gate002' }, - ['-1592690224'] = { Name = 'ch2_08_gate003' }, - ['-147423412'] = { Name = 'ch2_08_gate01' }, - ['2062214709'] = { Name = 'ch2_08_house00_dtl' }, - ['1499139232'] = { Name = 'ch2_08_house00_prailing' }, - ['-1263255645'] = { Name = 'ch2_08_house00_railing' }, - ['-797057439'] = { Name = 'ch2_08_house00' }, - ['-941675817'] = { Name = 'ch2_08_house01_dtl' }, - ['1154306457'] = { Name = 'ch2_08_house01_fence' }, - ['-1245144500'] = { Name = 'ch2_08_house01_prails' }, - ['-400568261'] = { Name = 'ch2_08_house01_railings' }, - ['1636040771'] = { Name = 'ch2_08_house01' }, - ['-1660994462'] = { Name = 'ch2_08_house02_dtl' }, - ['-1619755997'] = { Name = 'ch2_08_house02' }, - ['1414913266'] = { Name = 'ch2_08_house03_dtl' }, - ['1065126052'] = { Name = 'ch2_08_house03_railing' }, - ['-1859002466'] = { Name = 'ch2_08_house03' }, - ['-1372686994'] = { Name = 'ch2_08_house04_dtl' }, - ['-1092109559'] = { Name = 'ch2_08_house04' }, - ['-1423015895'] = { Name = 'ch2_08_house05_dtl' }, - ['-1395812651'] = { Name = 'ch2_08_house05' }, - ['-495336227'] = { Name = 'ch2_08_house06_dtl' }, - ['1584293041'] = { Name = 'ch2_08_house06_dtlb' }, - ['-511171298'] = { Name = 'ch2_08_house06_railing' }, - ['-615877682'] = { Name = 'ch2_08_house06' }, - ['-1149287281'] = { Name = 'ch2_08_house07_dtl' }, - ['2108784515'] = { Name = 'ch2_08_house07_dtlb' }, - ['41779076'] = { Name = 'ch2_08_house07_railing' }, - ['-130962020'] = { Name = 'ch2_08_house07' }, - ['-1181341575'] = { Name = 'ch2_08_house08_dtl' }, - ['-1327706577'] = { Name = 'ch2_08_house08_dtlb' }, - ['-828239105'] = { Name = 'ch2_08_house08balcony' }, - ['-1557602463'] = { Name = 'ch2_08_house09_dtl' }, - ['-1599816655'] = { Name = 'ch2_08_house09_railing' }, - ['5750252'] = { Name = 'ch2_08_house09' }, - ['1381847000'] = { Name = 'ch2_08_l1_poles_lod' }, - ['-990484658'] = { Name = 'ch2_08_l1_poles' }, - ['1357269667'] = { Name = 'ch2_08_l1' }, - ['619836091'] = { Name = 'ch2_08_l2' }, - ['1442257355'] = { Name = 'ch2_08_mansionrail01' }, - ['-285167443'] = { Name = 'ch2_08_mansionsteps' }, - ['-111653578'] = { Name = 'ch2_08_nwbld03_dtl_b' }, - ['-1691973277'] = { Name = 'ch2_08_nwbld03_dtl' }, - ['24640068'] = { Name = 'ch2_08_nwbld03_dtlb' }, - ['518370663'] = { Name = 'ch2_08_nwbld03_dtlc' }, - ['1443081255'] = { Name = 'ch2_08_nwbld03_kit_03' }, - ['355063362'] = { Name = 'ch2_08_nwbld03' }, - ['-238987451'] = { Name = 'ch2_08_pole_03' }, - ['-1566050978'] = { Name = 'ch2_08_poles_01_lod' }, - ['381089617'] = { Name = 'ch2_08_poles_01' }, - ['735544222'] = { Name = 'ch2_08_poles_02_lod' }, - ['-1527671868'] = { Name = 'ch2_08_poles_02' }, - ['-1469115377'] = { Name = 'ch2_08_props_props03_01_lod' }, - ['-1033254988'] = { Name = 'ch2_08_props_props04_01_lod' }, - ['-1224499126'] = { Name = 'ch2_08_props_props04_02_lod' }, - ['1111497744'] = { Name = 'ch2_08_props_props05_14_lod' }, - ['1542057908'] = { Name = 'ch2_08_props_props05_27_lod' }, - ['170462776'] = { Name = 'ch2_08_props_props05_28_lod' }, - ['-2082633286'] = { Name = 'ch2_08_wall02_dtl' }, - ['1347575686'] = { Name = 'ch2_08_wall02' }, - ['1228981798'] = { Name = 'ch2_08_water_01' }, - ['-2098874001'] = { Name = 'ch2_08_water_03' }, - ['1957108978'] = { Name = 'ch2_08_water_04' }, - ['-1637322636'] = { Name = 'ch2_08_water_05' }, - ['897276318'] = { Name = 'ch2_08_wrail_01' }, - ['2082707109'] = { Name = 'ch2_08b_armco01_lod' }, - ['-1229122089'] = { Name = 'ch2_08b_armco01' }, - ['-1136698797'] = { Name = 'ch2_08b_armco01b_lod' }, - ['509347032'] = { Name = 'ch2_08b_armco01b' }, - ['125404825'] = { Name = 'ch2_08b_armco01c_lod' }, - ['808069236'] = { Name = 'ch2_08b_armco01c' }, - ['440105061'] = { Name = 'ch2_08b_armco026_lod' }, - ['-652646140'] = { Name = 'ch2_08b_armco026' }, - ['847777683'] = { Name = 'ch2_08b_armco20' }, - ['-2085016837'] = { Name = 'ch2_08b_fence1_a' }, - ['1457115453'] = { Name = 'ch2_08b_fence1_b' }, - ['1202698287'] = { Name = 'ch2_08b_fence2_a' }, - ['1446827337'] = { Name = 'ch2_08b_fence2_b' }, - ['-2022854154'] = { Name = 'ch2_08b_fence3' }, - ['-765239620'] = { Name = 'ch2_08b_fence4a' }, - ['-1536884032'] = { Name = 'ch2_08b_fence4b' }, - ['1868667066'] = { Name = 'ch2_08b_fence4c' }, - ['-517735363'] = { Name = 'ch2_08b_fence4d' }, - ['-67358227'] = { Name = 'ch2_08b_fence4e' }, - ['-308243146'] = { Name = 'ch2_08b_fence4f' }, - ['410905328'] = { Name = 'ch2_08b_fence4g' }, - ['-1449462192'] = { Name = 'ch2_08b_fence5' }, - ['731052586'] = { Name = 'ch2_08b_fence6' }, - ['606276894'] = { Name = 'ch2_08b_fence6a' }, - ['1221809790'] = { Name = 'ch2_08b_fence6b' }, - ['2142192693'] = { Name = 'ch2_08b_fence6c' }, - ['847489503'] = { Name = 'ch2_08b_fence6d' }, - ['907265893'] = { Name = 'ch2_08b_fizzwall' }, - ['882046667'] = { Name = 'ch2_08b_glassfence' }, - ['-876053124'] = { Name = 'ch2_08b_hs01_details' }, - ['1798708724'] = { Name = 'ch2_08b_hs01' }, - ['-1649491117'] = { Name = 'ch2_08b_hs02_details' }, - ['-722669216'] = { Name = 'ch2_08b_hs02' }, - ['682419030'] = { Name = 'ch2_08b_hs03_details' }, - ['-941861057'] = { Name = 'ch2_08b_hs03' }, - ['-2137111622'] = { Name = 'ch2_08b_hs04_details' }, - ['-2057685962'] = { Name = 'ch2_08b_hs04_veg1' }, - ['1998362555'] = { Name = 'ch2_08b_hs04_veg2' }, - ['-1332139847'] = { Name = 'ch2_08b_hs04' }, - ['-699374689'] = { Name = 'ch2_08b_hs05_details' }, - ['-1554149822'] = { Name = 'ch2_08b_hs05' }, - ['-1229132736'] = { Name = 'ch2_08b_hs06_details' }, - ['238576630'] = { Name = 'ch2_08b_hs06' }, - ['692260872'] = { Name = 'ch2_08b_hs06b_lod' }, - ['1595198928'] = { Name = 'ch2_08b_land01' }, - ['740386794'] = { Name = 'ch2_08b_land02' }, - ['2016909665'] = { Name = 'ch2_08b_pool_01' }, - ['-1091819831'] = { Name = 'ch2_08b_pool_02' }, - ['-849493076'] = { Name = 'ch2_08b_pool_03' }, - ['-623985934'] = { Name = 'ch2_08b_poolrail_1' }, - ['-863166865'] = { Name = 'ch2_08b_poolrail_2' }, - ['1754534783'] = { Name = 'ch2_08b_poolrail_3a' }, - ['2036348183'] = { Name = 'ch2_08b_poolrail_3b' }, - ['-382085176'] = { Name = 'ch2_08b_poolrail_4' }, - ['1841209364'] = { Name = 'ch2_08b_poolrail_5a' }, - ['921350765'] = { Name = 'ch2_08b_poolrail_5b' }, - ['-1382326132'] = { Name = 'ch2_08b_poolrail_6' }, - ['-2005699404'] = { Name = 'ch2_08b_retwall_lod' }, - ['-1164033691'] = { Name = 'ch2_08b_retwall' }, - ['935109196'] = { Name = 'ch2_08b_retwall01' }, - ['-1148199471'] = { Name = 'ch2_08b_windowcovers' }, - ['127029055'] = { Name = 'ch2_08b_windowcovers2' }, - ['-1831292938'] = { Name = 'ch2_09_build_a_59' }, - ['-2017340079'] = { Name = 'ch2_09_conhse002_details' }, - ['1755312259'] = { Name = 'ch2_09_conhse002' }, - ['-966826861'] = { Name = 'ch2_09_conhse002girder01' }, - ['1511033847'] = { Name = 'ch2_09_conhse002girder02' }, - ['-732175366'] = { Name = 'ch2_09_conhse002wood01' }, - ['-1509554353'] = { Name = 'ch2_09_conhse002wood02' }, - ['902368932'] = { Name = 'ch2_09_fizz_flatrail' }, - ['-2071817100'] = { Name = 'ch2_09_fizz_flatrailb' }, - ['-284847513'] = { Name = 'ch2_09_fizz_pladder1' }, - ['-23121510'] = { Name = 'ch2_09_fizz_pladder2' }, - ['193022814'] = { Name = 'ch2_09_fizz_pladder3' }, - ['556955328'] = { Name = 'ch2_09_fizz_pladder4' }, - ['963192621'] = { Name = 'ch2_09_fizz_pladder5' }, - ['-2017639464'] = { Name = 'ch2_09_fizz_pladder6' }, - ['-2146288026'] = { Name = 'ch2_09_fizz_prail1' }, - ['-897416129'] = { Name = 'ch2_09_fizz_stairs' }, - ['909646315'] = { Name = 'ch2_09_fizz_stairsb' }, - ['1185904139'] = { Name = 'ch2_09_hedgedetail_01' }, - ['429464543'] = { Name = 'ch2_09_hedgedetail_02' }, - ['728743820'] = { Name = 'ch2_09_hedgedetail_03' }, - ['315166307'] = { Name = 'ch2_09_hedgedetail_04' }, - ['551922332'] = { Name = 'ch2_09_hedgedetail_05' }, - ['1712928006'] = { Name = 'ch2_09_hedgedetail_06' }, - ['1954599381'] = { Name = 'ch2_09_hedgedetail_07' }, - ['-940869463'] = { Name = 'ch2_09_hedgedetail_08' }, - ['1444779279'] = { Name = 'ch2_09_hedgedetail_09' }, - ['566972639'] = { Name = 'ch2_09_hedgedetail_10' }, - ['1402418298'] = { Name = 'ch2_09_hedgedetail_11' }, - ['1900507098'] = { Name = 'ch2_09_hedgedetail_12' }, - ['1521304230'] = { Name = 'ch2_09_hedgedetail_13' }, - ['1822353029'] = { Name = 'ch2_09_hedgedetail_14' }, - ['1716640235'] = { Name = 'ch2_09_hedgedetail_15' }, - ['-1751991188'] = { Name = 'ch2_09_hedgedetail_16' }, - ['-2118348608'] = { Name = 'ch2_09_hedgedetail_17' }, - ['-1625896076'] = { Name = 'ch2_09_hedgedetail_18' }, - ['-789860575'] = { Name = 'ch2_09_hedgedetail_19' }, - ['-84147927'] = { Name = 'ch2_09_hedgedetail_20' }, - ['751625418'] = { Name = 'ch2_09_hedgedetail_21' }, - ['512936022'] = { Name = 'ch2_09_hedgedetail_22' }, - ['1837079907'] = { Name = 'ch2_09_house21' }, - ['-753032997'] = { Name = 'ch2_09_hs01_details' }, - ['-1321497631'] = { Name = 'ch2_09_hs01_main' }, - ['-663988660'] = { Name = 'ch2_09_hs02_details' }, - ['522771014'] = { Name = 'ch2_09_hs02' }, - ['703010261'] = { Name = 'ch2_09_hs03_details1' }, - ['935834006'] = { Name = 'ch2_09_hs03_details2' }, - ['-841074766'] = { Name = 'ch2_09_hs03' }, - ['1596800431'] = { Name = 'ch2_09_hs04_d' }, - ['-1147563223'] = { Name = 'ch2_09_hs04' }, - ['-1646310993'] = { Name = 'ch2_09_hs05_d' }, - ['-401806321'] = { Name = 'ch2_09_hs05' }, - ['1029586871'] = { Name = 'ch2_09_hs06_details' }, - ['-706885711'] = { Name = 'ch2_09_hs06' }, - ['-2070502108'] = { Name = 'ch2_09_hs07' }, - ['-1531659738'] = { Name = 'ch2_09_hs08_details' }, - ['1913651223'] = { Name = 'ch2_09_hs08' }, - ['536059729'] = { Name = 'ch2_09_hs10_main' }, - ['469552473'] = { Name = 'ch2_09_hs10a_details' }, - ['597090325'] = { Name = 'ch2_09_hs10b_details' }, - ['776127751'] = { Name = 'ch2_09_hs11_details' }, - ['2062561603'] = { Name = 'ch2_09_l2_a' }, - ['-54382649'] = { Name = 'ch2_09_l2_decal001' }, - ['-1773899808'] = { Name = 'ch2_09_l4' }, - ['-163340222'] = { Name = 'ch2_09_land_dtl' }, - ['-472846641'] = { Name = 'ch2_09_poolwater009' }, - ['595076721'] = { Name = 'ch2_09_retwall09' }, - ['1201958873'] = { Name = 'ch2_09_retwall10' }, - ['-1601101383'] = { Name = 'ch2_09_retwall11' }, - ['1547841695'] = { Name = 'ch2_09_tarp004' }, - ['1848104042'] = { Name = 'ch2_09_tarp005' }, - ['-936834961'] = { Name = 'ch2_09_tarp006' }, - ['-631067422'] = { Name = 'ch2_09_tarp007' }, - ['-1965642086'] = { Name = 'ch2_09_tcoachhse_detail' }, - ['-301975492'] = { Name = 'ch2_09_tcoachhse' }, - ['-719767165'] = { Name = 'ch2_09b_deshse_dtl' }, - ['1172171880'] = { Name = 'ch2_09b_deshse' }, - ['-87772830'] = { Name = 'ch2_09b_deshsegate_lod' }, - ['1627314460'] = { Name = 'ch2_09b_deshsegate01' }, - ['-1475582158'] = { Name = 'ch2_09b_deshsegate02' }, - ['879820801'] = { Name = 'ch2_09b_deshsegate03' }, - ['-1948668211'] = { Name = 'ch2_09b_deshsegate04' }, - ['-1709683894'] = { Name = 'ch2_09b_deshsegate05' }, - ['1504584385'] = { Name = 'ch2_09b_deshsegatea_lod' }, - ['277494526'] = { Name = 'ch2_09b_deshsegateb_lod' }, - ['-501243042'] = { Name = 'ch2_09b_deshsegatec_lod' }, - ['-1407274778'] = { Name = 'ch2_09b_deshsegated_lod' }, - ['-1567878554'] = { Name = 'ch2_09b_deshsegatee_lod' }, - ['1338535371'] = { Name = 'ch2_09b_fizz_fence00' }, - ['1027590310'] = { Name = 'ch2_09b_fizz_fence01' }, - ['1284171580'] = { Name = 'ch2_09b_fizz_fence02' }, - ['1509392937'] = { Name = 'ch2_09b_fizz_fence03' }, - ['-2001739879'] = { Name = 'ch2_09b_fizz_fence04' }, - ['-1755480844'] = { Name = 'ch2_09b_fizz_fence05' }, - ['-1498965112'] = { Name = 'ch2_09b_fizz_fence06' }, - ['-631971678'] = { Name = 'ch2_09b_fizz_pooldets' }, - ['-1921347405'] = { Name = 'ch2_09b_hedgedtl_01' }, - ['-1693471779'] = { Name = 'ch2_09b_hedgedtl_02' }, - ['1442455991'] = { Name = 'ch2_09b_hedgedtl_03' }, - ['-1001390491'] = { Name = 'ch2_09b_hedgedtl_04' }, - ['-1838671210'] = { Name = 'ch2_09b_hedgedtl_05' }, - ['-1598408902'] = { Name = 'ch2_09b_hedgedtl_06' }, - ['520008641'] = { Name = 'ch2_09b_hedgedtl_07' }, - ['1769621687'] = { Name = 'ch2_09b_hedgedtl_08' }, - ['2081320415'] = { Name = 'ch2_09b_hedgedtl_09' }, - ['1332550193'] = { Name = 'ch2_09b_hedgedtl_10' }, - ['-822503096'] = { Name = 'ch2_09b_hedgedtl_11' }, - ['-8422829'] = { Name = 'ch2_09b_hedgedtl_12' }, - ['-484163171'] = { Name = 'ch2_09b_hedgedtl_13' }, - ['-1726829189'] = { Name = 'ch2_09b_hedgedtl_14' }, - ['381626578'] = { Name = 'ch2_09b_hedgedtl_15' }, - ['1014592582'] = { Name = 'ch2_09b_hedgedtl_16' }, - ['727437835'] = { Name = 'ch2_09b_hedgedtl_17' }, - ['-499367987'] = { Name = 'ch2_09b_hedgedtl_18' }, - ['-1568358309'] = { Name = 'ch2_09b_hedgedtl_19' }, - ['-1932359002'] = { Name = 'ch2_09b_hs01_balcony' }, - ['-1284351582'] = { Name = 'ch2_09b_hs01_pool_ladder' }, - ['-153529340'] = { Name = 'ch2_09b_hs01_support' }, - ['-751224617'] = { Name = 'ch2_09b_hs01' }, - ['-1147639241'] = { Name = 'ch2_09b_hs01a_details' }, - ['-1190959328'] = { Name = 'ch2_09b_hs01b_details' }, - ['-2029297101'] = { Name = 'ch2_09b_hs02_balcony' }, - ['923887183'] = { Name = 'ch2_09b_hs02_door_railings' }, - ['-1456606581'] = { Name = 'ch2_09b_hs02_railing_01' }, - ['-1156803000'] = { Name = 'ch2_09b_hs02_railing_02' }, - ['-821379516'] = { Name = 'ch2_09b_hs02_railing_03' }, - ['-511515852'] = { Name = 'ch2_09b_hs02_railing_04' }, - ['-379558619'] = { Name = 'ch2_09b_hs02' }, - ['449846410'] = { Name = 'ch2_09b_hs02a_details' }, - ['-178549838'] = { Name = 'ch2_09b_hs02b_details' }, - ['-374672861'] = { Name = 'ch2_09b_hs03_balcony_01' }, - ['-67332410'] = { Name = 'ch2_09b_hs03_balcony_02' }, - ['-2058213560'] = { Name = 'ch2_09b_hs03_details' }, - ['-1328843780'] = { Name = 'ch2_09b_hs03' }, - ['509572857'] = { Name = 'ch2_09b_hs04_balcony_01' }, - ['-337014258'] = { Name = 'ch2_09b_hs04_balcony_02' }, - ['-1028964462'] = { Name = 'ch2_09b_hs04_balcony_03' }, - ['275471121'] = { Name = 'ch2_09b_hs04_balcony_04' }, - ['-932754678'] = { Name = 'ch2_09b_hs04_balcony_05' }, - ['-717462348'] = { Name = 'ch2_09b_hs04_balcony_06' }, - ['1795362883'] = { Name = 'ch2_09b_hs04_balcony_07' }, - ['-537766975'] = { Name = 'ch2_09b_hs04_details' }, - ['-1526899616'] = { Name = 'ch2_09b_hs04' }, - ['-892962094'] = { Name = 'ch2_09b_hs05_balc_01' }, - ['-1131159955'] = { Name = 'ch2_09b_hs05_balc_02' }, - ['-1638751765'] = { Name = 'ch2_09b_hs05_balc_03' }, - ['-1883962192'] = { Name = 'ch2_09b_hs05_balc_04' }, - ['-1621253123'] = { Name = 'ch2_09b_hs05_balc_05' }, - ['-1168607682'] = { Name = 'ch2_09b_hs05_details' }, - ['-1401951423'] = { Name = 'ch2_09b_hs05' }, - ['227888696'] = { Name = 'ch2_09b_hs07_details' }, - ['1738459108'] = { Name = 'ch2_09b_hs07_pool_ladder' }, - ['-2012470662'] = { Name = 'ch2_09b_hs07' }, - ['1379206356'] = { Name = 'ch2_09b_hs08_details' }, - ['1179462523'] = { Name = 'ch2_09b_hs08_ladder' }, - ['2073692566'] = { Name = 'ch2_09b_hs08' }, - ['-527603720'] = { Name = 'ch2_09b_hs09_details' }, - ['-440952870'] = { Name = 'ch2_09b_hs09_pool_ladder' }, - ['-1588174337'] = { Name = 'ch2_09b_hs09_railings_01' }, - ['648834217'] = { Name = 'ch2_09b_hs09_railings_02' }, - ['350865700'] = { Name = 'ch2_09b_hs09_railings_03' }, - ['-63858764'] = { Name = 'ch2_09b_hs09_railings_04' }, - ['-395841503'] = { Name = 'ch2_09b_hs09_railings_05' }, - ['1769399636'] = { Name = 'ch2_09b_hs09' }, - ['-770737757'] = { Name = 'ch2_09b_hs10_details' }, - ['1625084728'] = { Name = 'ch2_09b_hs10' }, - ['627954419'] = { Name = 'ch2_09b_l1_decal_01' }, - ['884109692'] = { Name = 'ch2_09b_l1_decal_02' }, - ['303155034'] = { Name = 'ch2_09b_l1' }, - ['-781531679'] = { Name = 'ch2_09b_l2' }, - ['-508008836'] = { Name = 'ch2_09b_l3' }, - ['957810148'] = { Name = 'ch2_09b_playgrounddecal' }, - ['-675311093'] = { Name = 'ch2_09b_pool01' }, - ['-987786423'] = { Name = 'ch2_09b_props_des_h_start_slod' }, - ['-2082927660'] = { Name = 'ch2_09b_props_des_h' }, - ['1811100525'] = { Name = 'ch2_09b_props_des_sh_end_b_lod' }, - ['-854661173'] = { Name = 'ch2_09b_props_des_sh_end_b' }, - ['-741673665'] = { Name = 'ch2_09b_props_des_sh_end_d' }, - ['-859938436'] = { Name = 'ch2_09b_props_des_sh_end_e_lod' }, - ['-443475765'] = { Name = 'ch2_09b_props_des_sh_end_e' }, - ['1986111558'] = { Name = 'ch2_09b_props_des_sh_end_slod' }, - ['-1987528959'] = { Name = 'ch2_09b_props_des_sh_rebuild' }, - ['-1679992240'] = { Name = 'ch2_09b_props_des_sh_start_a' }, - ['-1567922260'] = { Name = 'ch2_09b_props_des_sh_start_b' }, - ['1883865897'] = { Name = 'ch2_09b_props_des_sh_start_c' }, - ['1438865882'] = { Name = 'ch2_09b_props_stilthse_dj_area' }, - ['668072695'] = { Name = 'ch2_09b_rocks' }, - ['-1635291989'] = { Name = 'ch2_09c_build_fence01_lod' }, - ['558918865'] = { Name = 'ch2_09c_build_fence01' }, - ['1899908759'] = { Name = 'ch2_09c_dec_01' }, - ['-197372787'] = { Name = 'ch2_09c_dec_02' }, - ['394794572'] = { Name = 'ch2_09c_hedgedtl_01' }, - ['-1977156728'] = { Name = 'ch2_09c_hedgedtl_02' }, - ['2079743783'] = { Name = 'ch2_09c_hedgedtl_03' }, - ['-541808658'] = { Name = 'ch2_09c_hedgedtl_04' }, - ['-840956859'] = { Name = 'ch2_09c_hedgedtl_05' }, - ['1120726561'] = { Name = 'ch2_09c_hedgedtl_06' }, - ['828590926'] = { Name = 'ch2_09c_hedgedtl_07' }, - ['546941371'] = { Name = 'ch2_09c_hedgedtl_08' }, - ['-2036828745'] = { Name = 'ch2_09c_hedgedtl_09' }, - ['-1789030199'] = { Name = 'ch2_09c_hedgedtl_10' }, - ['120058972'] = { Name = 'ch2_09c_hedgedtl_11' }, - ['-116041673'] = { Name = 'ch2_09c_hedgedtl_12' }, - ['-346374974'] = { Name = 'ch2_09c_hedgedtl_13' }, - ['-2078786912'] = { Name = 'ch2_09c_hs01_dtls' }, - ['726495965'] = { Name = 'ch2_09c_hs01' }, - ['900352836'] = { Name = 'ch2_09c_hs01fence01' }, - ['-1878687755'] = { Name = 'ch2_09c_hs01fence02' }, - ['2110184312'] = { Name = 'ch2_09c_hs01fence03' }, - ['1803663086'] = { Name = 'ch2_09c_hs01fence04' }, - ['1497109091'] = { Name = 'ch2_09c_hs01fence05' }, - ['1883358064'] = { Name = 'ch2_09c_hs02_details' }, - ['-568928143'] = { Name = 'ch2_09c_hs02' }, - ['1897340101'] = { Name = 'ch2_09c_hs03_details' }, - ['281001410'] = { Name = 'ch2_09c_hs03' }, - ['-425679907'] = { Name = 'ch2_09c_hs04_details' }, - ['486683630'] = { Name = 'ch2_09c_hs04_fence' }, - ['-388395098'] = { Name = 'ch2_09c_hs04_rail_lod' }, - ['526557098'] = { Name = 'ch2_09c_hs04_rail' }, - ['1463218295'] = { Name = 'ch2_09c_hs04_raila_lod' }, - ['-276983455'] = { Name = 'ch2_09c_hs04_raila' }, - ['-1012784248'] = { Name = 'ch2_09c_hs04' }, - ['-2005586588'] = { Name = 'ch2_09c_hs05_railings_geometry' }, - ['-1269725977'] = { Name = 'ch2_09c_hs05' }, - ['1756753911'] = { Name = 'ch2_09c_hs05a_details' }, - ['828404642'] = { Name = 'ch2_09c_hs05b_details' }, - ['-241428287'] = { Name = 'ch2_09c_hs06_details' }, - ['-876071976'] = { Name = 'ch2_09c_hs06' }, - ['1136554455'] = { Name = 'ch2_09c_hs07_details' }, - ['-1232074392'] = { Name = 'ch2_09c_hs07' }, - ['180807398'] = { Name = 'ch2_09c_hs08_details' }, - ['-1346405441'] = { Name = 'ch2_09c_hs08' }, - ['436021401'] = { Name = 'ch2_09c_hs09_details' }, - ['-1581260864'] = { Name = 'ch2_09c_hs09' }, - ['2081983057'] = { Name = 'ch2_09c_hs10_details' }, - ['337978994'] = { Name = 'ch2_09c_hs10_gate' }, - ['-1790248513'] = { Name = 'ch2_09c_hs10_trellis_01' }, - ['-367942833'] = { Name = 'ch2_09c_hs10_trellis_02' }, - ['-1901088340'] = { Name = 'ch2_09c_hs10' }, - ['-1930571300'] = { Name = 'ch2_09c_hs11_details' }, - ['-463708920'] = { Name = 'ch2_09c_hs11' }, - ['2078064754'] = { Name = 'ch2_09c_hs12_details' }, - ['499077105'] = { Name = 'ch2_09c_hs12' }, - ['160087440'] = { Name = 'ch2_09c_hs13_details' }, - ['705489036'] = { Name = 'ch2_09c_hs13' }, - ['1573759501'] = { Name = 'ch2_09c_l1' }, - ['1883459320'] = { Name = 'ch2_09c_l2' }, - ['-1089480586'] = { Name = 'ch2_09c_poolwtr01' }, - ['654331581'] = { Name = 'ch2_10_culvert01' }, - ['361606104'] = { Name = 'ch2_10_culvert02' }, - ['-93489768'] = { Name = 'ch2_10_culvert03' }, - ['-1968837651'] = { Name = 'ch2_10_detail05' }, - ['1402273232'] = { Name = 'ch2_10_detail06' }, - ['1020448844'] = { Name = 'ch2_10_detail07' }, - ['-557613785'] = { Name = 'ch2_10_ds02' }, - ['-950098029'] = { Name = 'ch2_10_ds02vb' }, - ['982725845'] = { Name = 'ch2_10_ds05' }, - ['-783490438'] = { Name = 'ch2_10_ds09' }, - ['937799258'] = { Name = 'ch2_10_ds15' }, - ['-1896197490'] = { Name = 'ch2_10_ds20' }, - ['1023167174'] = { Name = 'ch2_10_ds20x' }, - ['-1591683961'] = { Name = 'ch2_10_house07wall_lod' }, - ['346479746'] = { Name = 'ch2_10_house07wall' }, - ['370136937'] = { Name = 'ch2_10_house09railings_lod' }, - ['49773502'] = { Name = 'ch2_10_hs01_wood' }, - ['1998477328'] = { Name = 'ch2_10_hs01' }, - ['419234325'] = { Name = 'ch2_10_hs01dtls' }, - ['1186523747'] = { Name = 'ch2_10_hs01dtlsb' }, - ['1768996021'] = { Name = 'ch2_10_hs02' }, - ['783654472'] = { Name = 'ch2_10_hs02dtls' }, - ['108851321'] = { Name = 'ch2_10_hs02dtlsb' }, - ['-856849491'] = { Name = 'ch2_10_hs03' }, - ['1981080996'] = { Name = 'ch2_10_hs03dtls' }, - ['-2047219442'] = { Name = 'ch2_10_hs03dtlsb_lod' }, - ['-1923124535'] = { Name = 'ch2_10_hs03dtlsb' }, - ['2060346895'] = { Name = 'ch2_10_hs03dtlsb1' }, - ['1705393087'] = { Name = 'ch2_10_hs03dtlsb2' }, - ['227937184'] = { Name = 'ch2_10_hs03dtlsb3' }, - ['-11964669'] = { Name = 'ch2_10_hs03dtlsb4' }, - ['841274557'] = { Name = 'ch2_10_hs03dtlsb5' }, - ['992206872'] = { Name = 'ch2_10_hs04' }, - ['853023968'] = { Name = 'ch2_10_hs04dtls' }, - ['477216658'] = { Name = 'ch2_10_hs04dtlsb' }, - ['809159238'] = { Name = 'ch2_10_hs05' }, - ['462158852'] = { Name = 'ch2_10_hs05dtls' }, - ['559304157'] = { Name = 'ch2_10_hs05dtlsb' }, - ['-346072831'] = { Name = 'ch2_10_hs05railings' }, - ['581512995'] = { Name = 'ch2_10_hs06' }, - ['-1446111565'] = { Name = 'ch2_10_hs06dtls' }, - ['1226702631'] = { Name = 'ch2_10_hs06dtlsb_rail' }, - ['-1324376566'] = { Name = 'ch2_10_hs06dtlsb' }, - ['-1641077195'] = { Name = 'ch2_10_hs07' }, - ['474019285'] = { Name = 'ch2_10_hs07dtls' }, - ['253032506'] = { Name = 'ch2_10_hs07dtlsb' }, - ['-1880553047'] = { Name = 'ch2_10_hs08' }, - ['-1374143673'] = { Name = 'ch2_10_hs08dtls' }, - ['1765897710'] = { Name = 'ch2_10_hs08dtlsb' }, - ['-794082243'] = { Name = 'ch2_10_hs09_rail_lod' }, - ['-294202530'] = { Name = 'ch2_10_hs09_rail' }, - ['49704894'] = { Name = 'ch2_10_hs09' }, - ['1332608839'] = { Name = 'ch2_10_hs09dtls' }, - ['-1553161400'] = { Name = 'ch2_10_hs09dtlsb' }, - ['334150340'] = { Name = 'ch2_10_hs10_rail_lod' }, - ['172566804'] = { Name = 'ch2_10_hs10_rail' }, - ['-57417859'] = { Name = 'ch2_10_hs10' }, - ['1032721081'] = { Name = 'ch2_10_hs10dtls' }, - ['863437451'] = { Name = 'ch2_10_hs10dtlsb' }, - ['2132368645'] = { Name = 'ch2_10_land_01' }, - ['-1957399169'] = { Name = 'ch2_10_land_02' }, - ['2081281778'] = { Name = 'ch2_10_land_03' }, - ['1774662245'] = { Name = 'ch2_10_land_04' }, - ['1217392631'] = { Name = 'ch2_10_land_05' }, - ['881772533'] = { Name = 'ch2_10_land_06' }, - ['-143253008'] = { Name = 'ch2_10_parkobj_2_lod' }, - ['123224842'] = { Name = 'ch2_10_parkobj_2' }, - ['1657464641'] = { Name = 'ch2_10_parkobj_brick' }, - ['-1737643199'] = { Name = 'ch2_10_parkobj' }, - ['-2129404117'] = { Name = 'ch2_10_parkrails_1' }, - ['-868584073'] = { Name = 'ch2_10_parkrails_2' }, - ['-1661954332'] = { Name = 'ch2_10_parkrails_3' }, - ['-678556642'] = { Name = 'ch2_10_parkrails_4' }, - ['-1167207970'] = { Name = 'ch2_10_parkrails_5' }, - ['-1957348820'] = { Name = 'ch2_10_poolladd1' }, - ['-1117564408'] = { Name = 'ch2_10_poolwtr003' }, - ['-341292158'] = { Name = 'ch2_10_poolwtr02' }, - ['1043709506'] = { Name = 'ch2_10_rehabdcl01' }, - ['-178148197'] = { Name = 'ch2_10_rehabdcl02' }, - ['61557038'] = { Name = 'ch2_10_rehabdcl03' }, - ['-384986125'] = { Name = 'ch2_10_rehabdcl05' }, - ['-1304348158'] = { Name = 'ch2_10_rehabgrounds' }, - ['143923336'] = { Name = 'ch2_10_rehabgrounds2' }, - ['474136549'] = { Name = 'ch2_10_rehabgrounds3' }, - ['873590737'] = { Name = 'ch2_10_rehabmain_rail' }, - ['-737920002'] = { Name = 'ch2_10_rehabmain' }, - ['-1318956507'] = { Name = 'ch2_10_rehabpool_net' }, - ['1681974156'] = { Name = 'ch2_10_rehabpool' }, - ['1347143414'] = { Name = 'ch2_10_rehabpooldcal' }, - ['-2010722922'] = { Name = 'ch2_10_rehed_00' }, - ['-1295703294'] = { Name = 'ch2_10_rehed_01' }, - ['-1528002735'] = { Name = 'ch2_10_rehed_02' }, - ['-549979161'] = { Name = 'ch2_10_rehed_03' }, - ['-813147000'] = { Name = 'ch2_10_rehed_04' }, - ['-104156916'] = { Name = 'ch2_10_rehed_05' }, - ['-336063129'] = { Name = 'ch2_10_rehed_06' }, - ['491681811'] = { Name = 'ch2_10_rehed_07' }, - ['262331580'] = { Name = 'ch2_10_rehed_08' }, - ['970010904'] = { Name = 'ch2_10_rehed_09' }, - ['1617330346'] = { Name = 'ch2_10_rehed_10' }, - ['1302747946'] = { Name = 'ch2_10_rehed_11' }, - ['993539662'] = { Name = 'ch2_10_rehed_12' }, - ['690721333'] = { Name = 'ch2_10_rehed_13' }, - ['381840739'] = { Name = 'ch2_10_rehed_14' }, - ['84855292'] = { Name = 'ch2_10_rehed_15' }, - ['-230906792'] = { Name = 'ch2_10_rehed_16' }, - ['-540901532'] = { Name = 'ch2_10_rehed_17' }, - ['-839066663'] = { Name = 'ch2_10_rehed_18' }, - ['-1154501057'] = { Name = 'ch2_10_rehed_19' }, - ['-174118199'] = { Name = 'ch2_10_rehed_20' }, - ['177362095'] = { Name = 'ch2_10_rehed_21' }, - ['438498256'] = { Name = 'ch2_10_rehed_22' }, - ['750590212'] = { Name = 'ch2_10_rehed_23' }, - ['1117996240'] = { Name = 'ch2_10_rehed_24' }, - ['1400497789'] = { Name = 'ch2_10_rehed_25' }, - ['1730743771'] = { Name = 'ch2_10_rehed_26' }, - ['1974905590'] = { Name = 'ch2_10_rehed_27' }, - ['-1953311058'] = { Name = 'ch2_10_rehed_28' }, - ['-1738182573'] = { Name = 'ch2_10_rehed_29' }, - ['1586623273'] = { Name = 'ch2_10_rehed_99' }, - ['560698203'] = { Name = 'ch2_10_rp_st' }, - ['1527125677'] = { Name = 'ch2_10_wall001' }, - ['2009234131'] = { Name = 'ch2_10_wood019' }, - ['-1037366793'] = { Name = 'ch2_10_wood020' }, - ['-1593332810'] = { Name = 'ch2_11_dtrack03' }, - ['-1846289050'] = { Name = 'ch2_11_hd6_railings_04' }, - ['2095821650'] = { Name = 'ch2_11_hd6_railings_05' }, - ['-1953804143'] = { Name = 'ch2_11_hd6_railings_06' }, - ['-1589019635'] = { Name = 'ch2_11_hd6_railings_07' }, - ['806295962'] = { Name = 'ch2_11_hd6_railings_08' }, - ['1650227305'] = { Name = 'ch2_11_hedgedtl_01' }, - ['1427758564'] = { Name = 'ch2_11_hedgedtl_02' }, - ['-1129370351'] = { Name = 'ch2_11_hedgedtl_03' }, - ['-1451948387'] = { Name = 'ch2_11_hedgedtl_04' }, - ['-1705154450'] = { Name = 'ch2_11_hedgedtl_05' }, - ['-1938830189'] = { Name = 'ch2_11_hedgedtl_06' }, - ['-106977547'] = { Name = 'ch2_11_hedgedtl_07' }, - ['-388430488'] = { Name = 'ch2_11_hedgedtl_08' }, - ['-632035238'] = { Name = 'ch2_11_hedgedtl_09' }, - ['-1358917528'] = { Name = 'ch2_11_hedgedtl_10' }, - ['157304154'] = { Name = 'ch2_11_hedgedtl_11' }, - ['1124120730'] = { Name = 'ch2_11_hedgedtl_12' }, - ['-304771515'] = { Name = 'ch2_11_hedgedtl_13' }, - ['395108787'] = { Name = 'ch2_11_hedgedtl_14' }, - ['1382668140'] = { Name = 'ch2_11_hedgedtl_15' }, - ['1822559200'] = { Name = 'ch2_11_hedgedtl_16' }, - ['785944650'] = { Name = 'ch2_11_hedgedtl_17' }, - ['1630172397'] = { Name = 'ch2_11_hedgedtl_18' }, - ['1413602000'] = { Name = 'ch2_11_hedgedtl_19' }, - ['2030185556'] = { Name = 'ch2_11_hedgedtl_20' }, - ['-1041809891'] = { Name = 'ch2_11_hedgedtl_21' }, - ['-711432833'] = { Name = 'ch2_11_hedgedtl_22' }, - ['-1933356074'] = { Name = 'ch2_11_hedgedtl_23' }, - ['1395001789'] = { Name = 'ch2_11_hs001_a_dtl' }, - ['104766890'] = { Name = 'ch2_11_hs001_b_dtl' }, - ['-1898612316'] = { Name = 'ch2_11_hs001_rail01' }, - ['1612618807'] = { Name = 'ch2_11_hs001_rail02' }, - ['667624927'] = { Name = 'ch2_11_hs001' }, - ['-1104563602'] = { Name = 'ch2_11_hs002_a_dtl' }, - ['-105872846'] = { Name = 'ch2_11_hs002_b_dtl' }, - ['363561376'] = { Name = 'ch2_11_hs002' }, - ['210265746'] = { Name = 'ch2_11_hs003_a_dtl' }, - ['2070500447'] = { Name = 'ch2_11_hs003_b_dtl' }, - ['-1957401356'] = { Name = 'ch2_11_hs003' }, - ['232072246'] = { Name = 'ch2_11_hs004_a_dtl' }, - ['-486016149'] = { Name = 'ch2_11_hs004_b_dtl' }, - ['287871864'] = { Name = 'ch2_11_hs004_c_dtl' }, - ['1966653629'] = { Name = 'ch2_11_hs004' }, - ['1965981042'] = { Name = 'ch2_11_hs005_a_dtl' }, - ['842773245'] = { Name = 'ch2_11_hs005_b_dtl' }, - ['1030493667'] = { Name = 'ch2_11_hs005_c_dtl' }, - ['744790703'] = { Name = 'ch2_11_hs005_d_dtl' }, - ['-1895205790'] = { Name = 'ch2_11_hs005' }, - ['-35245421'] = { Name = 'ch2_11_hs006_a_dtl' }, - ['-1974656414'] = { Name = 'ch2_11_hs006_b_dtl' }, - ['1317224886'] = { Name = 'ch2_11_hs006_c_dtl' }, - ['-15487134'] = { Name = 'ch2_11_hs006_d_dtl' }, - ['2102317293'] = { Name = 'ch2_11_hs006' }, - ['446788319'] = { Name = 'ch2_11_hs007_a_dtl' }, - ['508649837'] = { Name = 'ch2_11_hs007_b_dtl' }, - ['886549451'] = { Name = 'ch2_11_hs007_c_dtl' }, - ['1935981849'] = { Name = 'ch2_11_hs007' }, - ['-207840565'] = { Name = 'ch2_11_hs008_a_dtl' }, - ['-401849536'] = { Name = 'ch2_11_hs008_b_dtl' }, - ['1629553223'] = { Name = 'ch2_11_hs008_c_dtl' }, - ['1637947794'] = { Name = 'ch2_11_hs008' }, - ['-854495292'] = { Name = 'ch2_11_hs009_a_dtl' }, - ['-955928612'] = { Name = 'ch2_11_hs009_b_dtl' }, - ['-1657618016'] = { Name = 'ch2_11_hs009_c_dtl' }, - ['-773555689'] = { Name = 'ch2_11_hs009' }, - ['-730413291'] = { Name = 'ch2_11_hs01_pool_ladder' }, - ['328464319'] = { Name = 'ch2_11_hs010_a_dtl' }, - ['805066978'] = { Name = 'ch2_11_hs010_b_dtl' }, - ['1999453390'] = { Name = 'ch2_11_hs010' }, - ['600934418'] = { Name = 'ch2_11_hs011_dtl' }, - ['-1182023322'] = { Name = 'ch2_11_hs011' }, - ['1429071163'] = { Name = 'ch2_11_hs012_dtl' }, - ['295021698'] = { Name = 'ch2_11_hs012_frontbalcony' }, - ['-1353601806'] = { Name = 'ch2_11_hs012' }, - ['-115042821'] = { Name = 'ch2_11_hs013_a_dtl' }, - ['651435855'] = { Name = 'ch2_11_hs013_b_dtl' }, - ['-1659434883'] = { Name = 'ch2_11_hs013' }, - ['-1547685083'] = { Name = 'ch2_11_hs014_dtl' }, - ['-1805256933'] = { Name = 'ch2_11_hs014' }, - ['731461300'] = { Name = 'ch2_11_hs015_a_dtl' }, - ['2052419273'] = { Name = 'ch2_11_hs015_b_dtl' }, - ['-2109713712'] = { Name = 'ch2_11_hs015' }, - ['664709224'] = { Name = 'ch2_11_hs02_pool_ladder' }, - ['623467815'] = { Name = 'ch2_11_hs04_pool_ladder' }, - ['-374434121'] = { Name = 'ch2_11_hs06_rail_01' }, - ['-1023063707'] = { Name = 'ch2_11_hs06_rail_02' }, - ['-716182022'] = { Name = 'ch2_11_hs06_rail_03' }, - ['-1635680162'] = { Name = 'ch2_11_hs06_rail_04' }, - ['10339481'] = { Name = 'ch2_11_hs06_rail_05' }, - ['502071095'] = { Name = 'ch2_11_hs06_rail_06' }, - ['-1774316760'] = { Name = 'ch2_11_hs07_railing_01' }, - ['1661512886'] = { Name = 'ch2_11_hs07_railing_02' }, - ['1895581853'] = { Name = 'ch2_11_hs07_railing_03' }, - ['-1079843343'] = { Name = 'ch2_11_hs07_railing_04' }, - ['1306559078'] = { Name = 'ch2_11_hs07_railing_05' }, - ['911201093'] = { Name = 'ch2_11_hs07_railing_06' }, - ['1283784623'] = { Name = 'ch2_11_hs07_railing_07' }, - ['-2101351388'] = { Name = 'ch2_11_hs07_railing_08' }, - ['-124273051'] = { Name = 'ch2_11_hs07_railing_09_lod' }, - ['284592275'] = { Name = 'ch2_11_hs07_railing_09' }, - ['714894296'] = { Name = 'ch2_11_hs09_railing_01' }, - ['-823937948'] = { Name = 'ch2_11_hs09_railing_02' }, - ['185019566'] = { Name = 'ch2_11_hs09_railing_03' }, - ['423938345'] = { Name = 'ch2_11_hs09_railing_04' }, - ['1736664485'] = { Name = 'ch2_11_hs09_railing_05' }, - ['-137689546'] = { Name = 'ch2_11_hs09_railing_06' }, - ['1939275216'] = { Name = 'ch2_11_hs09_railing_07' }, - ['22124871'] = { Name = 'ch2_11_hs09_railing_08' }, - ['968936323'] = { Name = 'ch2_11_hs10_railing_01' }, - ['1242983470'] = { Name = 'ch2_11_hs10_railing_02' }, - ['1612847057'] = { Name = 'ch2_11_hs10_railing_03' }, - ['1844949884'] = { Name = 'ch2_11_hs10_railing_04' }, - ['-2087788886'] = { Name = 'ch2_11_hs10_railing_05' }, - ['-1856144825'] = { Name = 'ch2_11_hs10_railing_06' }, - ['-1765309153'] = { Name = 'ch2_11_hs10_railing_07' }, - ['-1482086686'] = { Name = 'ch2_11_hs10_railing_08' }, - ['-1170584572'] = { Name = 'ch2_11_hs10_railing_09' }, - ['1823552079'] = { Name = 'ch2_11_hs10_railing_10' }, - ['1535807490'] = { Name = 'ch2_11_hs10_railing_11' }, - ['-783254652'] = { Name = 'ch2_11_hs10_railing_12' }, - ['-1871939139'] = { Name = 'ch2_11_hs10_railing_13' }, - ['-2111775450'] = { Name = 'ch2_11_hs10_railing_14' }, - ['1694343904'] = { Name = 'ch2_11_hs10_railing_15' }, - ['729324265'] = { Name = 'ch2_11_hs13_railings_01' }, - ['1027030630'] = { Name = 'ch2_11_hs13_railings_02' }, - ['1204900754'] = { Name = 'ch2_11_hs13_railings_03' }, - ['1500837593'] = { Name = 'ch2_11_hs13_railings_04' }, - ['709793933'] = { Name = 'ch2_11_hs13_railings_05' }, - ['1032404738'] = { Name = 'ch2_11_hs13_railings_06' }, - ['-574222365'] = { Name = 'ch2_11_hs14_fence_01' }, - ['581990038'] = { Name = 'ch2_11_hs14_railing_01' }, - ['892574620'] = { Name = 'ch2_11_hs14_railing_02' }, - ['1189494529'] = { Name = 'ch2_11_hs14_railing_03' }, - ['1203257509'] = { Name = 'ch2_11_hs14_railing_04' }, - ['-947601348'] = { Name = 'ch2_11_hs14_railing_05' }, - ['-644717481'] = { Name = 'ch2_11_hs14_railing_06' }, - ['-331445837'] = { Name = 'ch2_11_hs14_railing_07' }, - ['281989843'] = { Name = 'ch2_11_hs14_railing_08' }, - ['-1253172269'] = { Name = 'ch2_11_hs14_railing_09' }, - ['-1633671369'] = { Name = 'ch2_11_hs14_railing_10' }, - ['1881645356'] = { Name = 'ch2_11_hs15_railing_01_lod' }, - ['-2036969538'] = { Name = 'ch2_11_hs15_railing_01' }, - ['-1321490681'] = { Name = 'ch2_11_hs15_railing_02_lod' }, - ['-1806570699'] = { Name = 'ch2_11_hs15_railing_02' }, - ['-25798120'] = { Name = 'ch2_11_hs15_railing_03_lod' }, - ['1999286503'] = { Name = 'ch2_11_hs15_railing_03' }, - ['1046918077'] = { Name = 'ch2_11_hs15_railing_04_lod' }, - ['1289706577'] = { Name = 'ch2_11_hs15_railing_04' }, - ['-183615411'] = { Name = 'ch2_11_hs4_railing_01' }, - ['-1554080529'] = { Name = 'ch2_11_hs4_railing_02' }, - ['-1310082555'] = { Name = 'ch2_11_hs4_railing_03' }, - ['-1062742143'] = { Name = 'ch2_11_hs4_railing_04' }, - ['-791250978'] = { Name = 'ch2_11_hs4_railing_05' }, - ['-54094402'] = { Name = 'ch2_11_hs6_railings_01' }, - ['709718219'] = { Name = 'ch2_11_hs6_railings_02' }, - ['-1418923252'] = { Name = 'ch2_11_hs6_railings_03' }, - ['1935068846'] = { Name = 'ch2_11_l1' }, - ['-2054163680'] = { Name = 'ch2_11_l2' }, - ['1339688885'] = { Name = 'ch2_11_l3' }, - ['1125447580'] = { Name = 'ch2_11_wall03' }, - ['-42439580'] = { Name = 'ch2_11_wall04' }, - ['-2034679180'] = { Name = 'ch2_11_wall23' }, - ['261678834'] = { Name = 'ch2_11_water01' }, - ['-1826230758'] = { Name = 'ch2_11_water02' }, - ['636949438'] = { Name = 'ch2_11_water03' }, - ['934393651'] = { Name = 'ch2_11_water04' }, - ['1300833622'] = { Name = 'ch2_11b_armco01' }, - ['998015293'] = { Name = 'ch2_11b_armco02' }, - ['1122466483'] = { Name = 'ch2_11b_b1_a' }, - ['885120616'] = { Name = 'ch2_11b_b1_b' }, - ['855142000'] = { Name = 'ch2_11b_b1_dtl' }, - ['-1122129397'] = { Name = 'ch2_11b_b1_feature01_dtl' }, - ['1080491773'] = { Name = 'ch2_11b_b1_railing_01' }, - ['1262884027'] = { Name = 'ch2_11b_b1_railing_02' }, - ['1493413942'] = { Name = 'ch2_11b_b1_railing_03' }, - ['1756352398'] = { Name = 'ch2_11b_b1_railing_04' }, - ['1987210003'] = { Name = 'ch2_11b_b1_railing_05' }, - ['197367239'] = { Name = 'ch2_11b_b1_railing_06' }, - ['427635002'] = { Name = 'ch2_11b_b1_railing_07' }, - ['675106490'] = { Name = 'ch2_11b_b1_railing_08' }, - ['905177639'] = { Name = 'ch2_11b_b1_railing_09' }, - ['-510147960'] = { Name = 'ch2_11b_b1_railing_10' }, - ['-196122633'] = { Name = 'ch2_11b_b1_railing_11' }, - ['212113569'] = { Name = 'ch2_11b_b1_railing_12' }, - ['516766962'] = { Name = 'ch2_11b_b1_railing_13' }, - ['689394054'] = { Name = 'ch2_11b_b1_railing_14' }, - ['988345641'] = { Name = 'ch2_11b_b1_railing_15' }, - ['-1689500023'] = { Name = 'ch2_11b_b1' }, - ['-1316734091'] = { Name = 'ch2_11b_b2_dtl' }, - ['-210734465'] = { Name = 'ch2_11b_b2_wood_01' }, - ['-920248853'] = { Name = 'ch2_11b_b2_wood_02' }, - ['-1898239658'] = { Name = 'ch2_11b_b2_wood_03' }, - ['-460794704'] = { Name = 'ch2_11b_b2_wood_04' }, - ['1726306623'] = { Name = 'ch2_11b_b2_wood_05' }, - ['-1383437563'] = { Name = 'ch2_11b_b2' }, - ['65304347'] = { Name = 'ch2_11b_b3_dtl' }, - ['1960540584'] = { Name = 'ch2_11b_b3' }, - ['-1359165423'] = { Name = 'ch2_11b_b4_dtl' }, - ['-1981797105'] = { Name = 'ch2_11b_b4_railing_01' }, - ['-1739732502'] = { Name = 'ch2_11b_b4_railing_02' }, - ['780465750'] = { Name = 'ch2_11b_b4_railing_03' }, - ['-1127574813'] = { Name = 'ch2_11b_b4_railing_04' }, - ['-752500839'] = { Name = 'ch2_11b_b4_railing_05' }, - ['-713505729'] = { Name = 'ch2_11b_b4_railing_06' }, - ['1460160324'] = { Name = 'ch2_11b_b4_railing_07' }, - ['1757047464'] = { Name = 'ch2_11b_b4_railing_08' }, - ['-128775693'] = { Name = 'ch2_11b_b4_railing_09' }, - ['-18574426'] = { Name = 'ch2_11b_b4_railing_10' }, - ['373310037'] = { Name = 'ch2_11b_b4_railing_11' }, - ['-924276825'] = { Name = 'ch2_11b_b4_railing_12' }, - ['288634941'] = { Name = 'ch2_11b_b4_railing_13' }, - ['56007810'] = { Name = 'ch2_11b_b4_railing_14' }, - ['-614609775'] = { Name = 'ch2_11b_b4_railing_15' }, - ['-1911868943'] = { Name = 'ch2_11b_b4_railing_16' }, - ['-1210317426'] = { Name = 'ch2_11b_b4_railing_17' }, - ['775013155'] = { Name = 'ch2_11b_b5_dtl' }, - ['1346416755'] = { Name = 'ch2_11b_b5' }, - ['-802516548'] = { Name = 'ch2_11b_b6_dtl' }, - ['1652708598'] = { Name = 'ch2_11b_b6' }, - ['532399411'] = { Name = 'ch2_11b_b7_dtl' }, - ['1424701900'] = { Name = 'ch2_11b_b7' }, - ['2012366161'] = { Name = 'ch2_11b_dtrack00' }, - ['-2026839090'] = { Name = 'ch2_11b_dtrack01' }, - ['1550749258'] = { Name = 'ch2_11b_dtrack02' }, - ['-844238645'] = { Name = 'ch2_11b_dtrack04' }, - ['-909377050'] = { Name = 'ch2_11b_hedgedtl_01' }, - ['-612457141'] = { Name = 'ch2_11b_hedgedtl_02' }, - ['-1239098692'] = { Name = 'ch2_11b_hedgedtl_03' }, - ['-942178783'] = { Name = 'ch2_11b_hedgedtl_04' }, - ['2073224601'] = { Name = 'ch2_11b_hedgedtl_05' }, - ['-1522255621'] = { Name = 'ch2_11b_hedgedtl_06' }, - ['1594436742'] = { Name = 'ch2_11b_hedgedtl_07' }, - ['1758412818'] = { Name = 'ch2_11b_hedgedtl_08' }, - ['1148155727'] = { Name = 'ch2_11b_hedgedtl_09' }, - ['-1172445718'] = { Name = 'ch2_11b_hedgedtl_10' }, - ['-202319437'] = { Name = 'ch2_11b_hedgedtl_12' }, - ['18805775'] = { Name = 'ch2_11b_hedgedtl_13' }, - ['258183320'] = { Name = 'ch2_11b_hedgedtl_14' }, - ['1098395139'] = { Name = 'ch2_11b_hs_04_gate' }, - ['-862300049'] = { Name = 'ch2_11b_hs_04' }, - ['-1003086116'] = { Name = 'ch2_11b_l1' }, - ['838695529'] = { Name = 'ch2_11b_l2' }, - ['-1420527990'] = { Name = 'ch2_11b_pools1' }, - ['-1114203378'] = { Name = 'ch2_11b_pools2' }, - ['-972775253'] = { Name = 'ch2_11b_railing_01' }, - ['414172672'] = { Name = 'ch2_11b_railing_02' }, - ['839317678'] = { Name = 'ch2_11b_railing_03' }, - ['68951257'] = { Name = 'ch2_11b_railing_04' }, - ['-2072732272'] = { Name = 'ch2_11b_railing_05' }, - ['-1917734902'] = { Name = 'ch2_11b_railing_06' }, - ['-352621928'] = { Name = 'ch2_11b_railing_07' }, - ['-1462959159'] = { Name = 'ch2_11b_retwall01' }, - ['748631099'] = { Name = 'ch2_11b_retwallpoles_01' }, - ['-130757797'] = { Name = 'ch2_11b_retwallpoles_02' }, - ['175271894'] = { Name = 'ch2_11b_retwallpoles_03' }, - ['-357945274'] = { Name = 'ch2_11b_retwallpoles_04' }, - ['1022448851'] = { Name = 'ch2_11b_retwallpoles_05' }, - ['-1791428458'] = { Name = 'ch2_12_building_b_dtl' }, - ['-1919987537'] = { Name = 'ch2_12_building_b_hedtl_1' }, - ['1995154280'] = { Name = 'ch2_12_building_b_hedtl_2' }, - ['1831636970'] = { Name = 'ch2_12_building_b_hedtl_3' }, - ['-1789191271'] = { Name = 'ch2_12_building_b' }, - ['-436224840'] = { Name = 'ch2_12_hdcal67' }, - ['-2074338856'] = { Name = 'ch2_12_hehdcal67_00' }, - ['-817025095'] = { Name = 'ch2_12_hehdcal67_01' }, - ['-250711237'] = { Name = 'ch2_12_hehdcal67_02' }, - ['-1412831053'] = { Name = 'ch2_12_hehdcal67_03' }, - ['-1115452378'] = { Name = 'ch2_12_hehdcal67_04' }, - ['63346859'] = { Name = 'ch2_12_hehdcal67_05' }, - ['949865443'] = { Name = 'ch2_12_house_03_dtl' }, - ['-861134677'] = { Name = 'ch2_12_house_03_hed_00' }, - ['-1025012446'] = { Name = 'ch2_12_house_03_hed_01' }, - ['2096038186'] = { Name = 'ch2_12_house_03_hed_02' }, - ['-306617667'] = { Name = 'ch2_12_house_03_hed_03' }, - ['-480555519'] = { Name = 'ch2_12_house_03_hed_04' }, - ['-767841342'] = { Name = 'ch2_12_house_03_hed_05' }, - ['1207408444'] = { Name = 'ch2_12_house_03_hed_06' }, - ['-1262489397'] = { Name = 'ch2_12_house_03_hed_07' }, - ['2068363268'] = { Name = 'ch2_12_house_03' }, - ['-1958310436'] = { Name = 'ch2_12_house_l2d_dtl' }, - ['1270534450'] = { Name = 'ch2_12_house_l2d_hedtl_1' }, - ['384821149'] = { Name = 'ch2_12_house_l2d_hedtl_2' }, - ['-1086900179'] = { Name = 'ch2_12_house_l2d_hedtl_3' }, - ['-1426553239'] = { Name = 'ch2_12_house_l2d' }, - ['-1606567824'] = { Name = 'ch2_12_house_l2e_dtl' }, - ['959465209'] = { Name = 'ch2_12_house_l2e_hedtl_00' }, - ['-424074740'] = { Name = 'ch2_12_house_l2e_hedtl_01' }, - ['610377052'] = { Name = 'ch2_12_house_l2e_hedtl_02' }, - ['1394113225'] = { Name = 'ch2_12_house_l2e_hedtl_03' }, - ['-1983223760'] = { Name = 'ch2_12_house_l2e_hedtl_04' }, - ['814527922'] = { Name = 'ch2_12_house_l2e_hedtl_05' }, - ['1834561358'] = { Name = 'ch2_12_house_l2e_hedtl_06' }, - ['1545309395'] = { Name = 'ch2_12_house_l2e_hedtl_07' }, - ['-1789174997'] = { Name = 'ch2_12_house_l2e' }, - ['1090857234'] = { Name = 'ch2_12_house01_dtl' }, - ['140033636'] = { Name = 'ch2_12_house01' }, - ['866324091'] = { Name = 'ch2_12_house02_dtl' }, - ['1807624868'] = { Name = 'ch2_12_house02_hegdtl_1' }, - ['627318253'] = { Name = 'ch2_12_house02_hegdtl_2' }, - ['1193501035'] = { Name = 'ch2_12_house02_hegdtl_3' }, - ['-1275446501'] = { Name = 'ch2_12_house02_hegdtl_4' }, - ['-1565026154'] = { Name = 'ch2_12_house02_hegdtl_5' }, - ['-1884130676'] = { Name = 'ch2_12_house02_hegdtl_6' }, - ['-2122000847'] = { Name = 'ch2_12_house02_hegdtl_7' }, - ['-442671468'] = { Name = 'ch2_12_house02_rail_lod' }, - ['291185973'] = { Name = 'ch2_12_house02_rail' }, - ['2112519138'] = { Name = 'ch2_12_house02_railing_01_lod' }, - ['1167477500'] = { Name = 'ch2_12_house02_railing_01' }, - ['777103747'] = { Name = 'ch2_12_house02_railing_02_lod' }, - ['1464921713'] = { Name = 'ch2_12_house02_railing_02' }, - ['-1331135274'] = { Name = 'ch2_12_house02_railing_03_lod' }, - ['1756565813'] = { Name = 'ch2_12_house02_railing_03' }, - ['465167654'] = { Name = 'ch2_12_house02' }, - ['1084558333'] = { Name = 'ch2_12_house04_dtl' }, - ['1063627913'] = { Name = 'ch2_12_house04' }, - ['798893031'] = { Name = 'ch2_12_house05_dtl' }, - ['758908982'] = { Name = 'ch2_12_house05' }, - ['-406233860'] = { Name = 'ch2_12_house06_dtl' }, - ['1683584624'] = { Name = 'ch2_12_house06' }, - ['1803505613'] = { Name = 'ch2_12_house07_dtl' }, - ['1380110915'] = { Name = 'ch2_12_house07' }, - ['89594736'] = { Name = 'ch2_12_house100_dtl' }, - ['204609625'] = { Name = 'ch2_12_house100_rail_lod' }, - ['-182012546'] = { Name = 'ch2_12_house100_rail' }, - ['-1588559783'] = { Name = 'ch2_12_house100' }, - ['1899991676'] = { Name = 'ch2_12_house101_dtl' }, - ['-58739018'] = { Name = 'ch2_12_house101' }, - ['-1290236852'] = { Name = 'ch2_12_house102_dtl' }, - ['-215235378'] = { Name = 'ch2_12_house102_railing_lod' }, - ['508705465'] = { Name = 'ch2_12_house102_railing' }, - ['-962901266'] = { Name = 'ch2_12_house102' }, - ['1880759741'] = { Name = 'ch2_12_house103' }, - ['-1522953917'] = { Name = 'ch2_12_house106a_dtl' }, - ['-1911370507'] = { Name = 'ch2_12_house106a' }, - ['-208816488'] = { Name = 'ch2_12_house107_dtl' }, - ['589300682'] = { Name = 'ch2_12_house107' }, - ['-1701797380'] = { Name = 'ch2_12_house11_dtl' }, - ['2095982641'] = { Name = 'ch2_12_house11' }, - ['275785'] = { Name = 'ch2_12_house16_dtl' }, - ['516156466'] = { Name = 'ch2_12_house16' }, - ['-1989127817'] = { Name = 'ch2_12_house20_dtl' }, - ['630684449'] = { Name = 'ch2_12_house20' }, - ['-697701639'] = { Name = 'ch2_12_house4_a_rgate_lod' }, - ['-318366106'] = { Name = 'ch2_12_house4_a_rgate' }, - ['-1556073861'] = { Name = 'ch2_12_house4_b_rgate_lod' }, - ['963523844'] = { Name = 'ch2_12_house4_b_rgate' }, - ['595710209'] = { Name = 'ch2_12_house4_c_rgate_lod' }, - ['-115768302'] = { Name = 'ch2_12_house4_c_rgate' }, - ['251577070'] = { Name = 'ch2_12_house4_d_rgate_lod' }, - ['1162771857'] = { Name = 'ch2_12_house4_d_rgate' }, - ['-2030934512'] = { Name = 'ch2_12_house4_dtl' }, - ['-1180061401'] = { Name = 'ch2_12_house4' }, - ['-417347112'] = { Name = 'ch2_12_house55_dtl' }, - ['-250182768'] = { Name = 'ch2_12_house55' }, - ['451071952'] = { Name = 'ch2_12_house97_dtl' }, - ['-994201761'] = { Name = 'ch2_12_house97' }, - ['-1866320981'] = { Name = 'ch2_12_house98_dtl' }, - ['143863652'] = { Name = 'ch2_12_house98_hddtl_1' }, - ['383044583'] = { Name = 'ch2_12_house98_hddtl_2' }, - ['-348818263'] = { Name = 'ch2_12_house98_hddtl_3' }, - ['-110096098'] = { Name = 'ch2_12_house98_hddtl_4' }, - ['-809910862'] = { Name = 'ch2_12_house98_hddtl_5' }, - ['1263025190'] = { Name = 'ch2_12_house98' }, - ['-600619475'] = { Name = 'ch2_12_house99_dtl' }, - ['965384363'] = { Name = 'ch2_12_house99' }, - ['1213422685'] = { Name = 'ch2_12_housesupport01_lod' }, - ['-1457106781'] = { Name = 'ch2_12_housesupport01' }, - ['1570133077'] = { Name = 'ch2_12_housesupport02_lod' }, - ['-1157893042'] = { Name = 'ch2_12_housesupport02' }, - ['-635592278'] = { Name = 'ch2_12_housesupport03_lod' }, - ['-666751286'] = { Name = 'ch2_12_housesupport03' }, - ['-1937906486'] = { Name = 'ch2_12_hs17' }, - ['-233626679'] = { Name = 'ch2_12_hse01_hgedtl_00' }, - ['-1190776400'] = { Name = 'ch2_12_hse01_hgedtl_01' }, - ['-829399868'] = { Name = 'ch2_12_hse01_hgedtl_02' }, - ['-2011672615'] = { Name = 'ch2_12_hse01_hgedtl_03' }, - ['1909597005'] = { Name = 'ch2_12_hse01_hgedtl_04' }, - ['1554643197'] = { Name = 'ch2_12_hse01_hgedtl_05' }, - ['1313561664'] = { Name = 'ch2_12_hse01_hgedtl_06' }, - ['-905981097'] = { Name = 'ch2_12_hse01_hgedtl_07' }, - ['-1078083885'] = { Name = 'ch2_12_hse01_hgedtl_08' }, - ['-1384506804'] = { Name = 'ch2_12_hse01_hgedtl_09' }, - ['1202146180'] = { Name = 'ch2_12_hse01_hgedtl_10' }, - ['1008088162'] = { Name = 'ch2_12_hse01_hgedtl_11' }, - ['708677809'] = { Name = 'ch2_12_hse01_hgedtl_12' }, - ['-1868716673'] = { Name = 'ch2_12_l1' }, - ['-555957764'] = { Name = 'ch2_12_l2' }, - ['-1190640939'] = { Name = 'ch2_12_modern_dtl' }, - ['-1945844707'] = { Name = 'ch2_12_modern_hedt_00' }, - ['-1182851311'] = { Name = 'ch2_12_modern_hedt_01' }, - ['965975864'] = { Name = 'ch2_12_modern_hedt_02' }, - ['1730116175'] = { Name = 'ch2_12_modern_hedt_03' }, - ['738557793'] = { Name = 'ch2_12_pool_water' }, - ['1447485551'] = { Name = 'ch2_12_railing01_lod' }, - ['-497750770'] = { Name = 'ch2_12_railing01' }, - ['-1673404024'] = { Name = 'ch2_12_railing02_lod' }, - ['-1785834622'] = { Name = 'ch2_12_railing02' }, - ['1509822535'] = { Name = 'ch2_12_railing03_lod' }, - ['-2049919993'] = { Name = 'ch2_12_railing03' }, - ['-1361019679'] = { Name = 'ch2_12_railing04_lod' }, - ['873762948'] = { Name = 'ch2_12_railing04' }, - ['-983223579'] = { Name = 'ch2_12_railing05_lod' }, - ['-1489111327'] = { Name = 'ch2_12_railing05' }, - ['1628535241'] = { Name = 'ch2_12_railing06_lod' }, - ['1487034783'] = { Name = 'ch2_12_railing06' }, - ['1151584484'] = { Name = 'ch2_12_railing07_lod' }, - ['1223146026'] = { Name = 'ch2_12_railing07' }, - ['1583143658'] = { Name = 'ch2_12_railing08_lod' }, - ['53325495'] = { Name = 'ch2_12_railing08' }, - ['-959807699'] = { Name = 'ch2_12_railing09_lod' }, - ['-311983317'] = { Name = 'ch2_12_railing09' }, - ['1154579220'] = { Name = 'ch2_12_railing10_lod' }, - ['-702786747'] = { Name = 'ch2_12_railing10' }, - ['-1128800816'] = { Name = 'ch2_12_railing11_lod' }, - ['1894615273'] = { Name = 'ch2_12_railing11' }, - ['20561096'] = { Name = 'ch2_12_railing12_lod' }, - ['-1181050302'] = { Name = 'ch2_12_railing12' }, - ['-447788612'] = { Name = 'ch2_12_railing13_lod' }, - ['-932202516'] = { Name = 'ch2_12_railing13' }, - ['224641483'] = { Name = 'ch2_12_railing14' }, - ['730856995'] = { Name = 'ch2_12_railing15' }, - ['-253228844'] = { Name = 'ch2_12_railing16' }, - ['-14998214'] = { Name = 'ch2_12_railing17' }, - ['280053870'] = { Name = 'ch2_12_railing18' }, - ['525886908'] = { Name = 'ch2_12_railing19' }, - ['1930432406'] = { Name = 'ch2_12_railing20' }, - ['-598285790'] = { Name = 'ch2_12_railing21' }, - ['-842644223'] = { Name = 'ch2_12_railing22' }, - ['932573830'] = { Name = 'ch2_12_railing23_lod' }, - ['-930006377'] = { Name = 'ch2_12_railing23' }, - ['-383929505'] = { Name = 'ch2_12_railing24_lod' }, - ['-1183736744'] = { Name = 'ch2_12_railing24' }, - ['-515041378'] = { Name = 'ch2_12_railing25_lod' }, - ['605188508'] = { Name = 'ch2_12_railing25' }, - ['13642520'] = { Name = 'ch2_12_railing26' }, - ['-276395899'] = { Name = 'ch2_12_railing27' }, - ['1550738003'] = { Name = 'ch2_12_railing28' }, - ['-1810445645'] = { Name = 'ch2_12_railing29_lod' }, - ['1329317870'] = { Name = 'ch2_12_railing29' }, - ['1412815266'] = { Name = 'ch2_12_railing30_lod' }, - ['1621518783'] = { Name = 'ch2_12_railing30' }, - ['-460940215'] = { Name = 'ch2_12_railing66' }, - ['1334037995'] = { Name = 'ch2_12_woodstruct01_lod' }, - ['-1081739531'] = { Name = 'ch2_12_woodstruct01' }, - ['-2055261837'] = { Name = 'ch2_12_woodstruct02_lod' }, - ['-1378921592'] = { Name = 'ch2_12_woodstruct02' }, - ['726255491'] = { Name = 'ch2_12_woodstruct03_lod' }, - ['1678360570'] = { Name = 'ch2_12_woodstruct03' }, - ['1469483679'] = { Name = 'ch2_12_woodstruct04_lod' }, - ['1346377831'] = { Name = 'ch2_12_woodstruct04' }, - ['-2092677964'] = { Name = 'ch2_12b_cutscenetowel' }, - ['-1255074188'] = { Name = 'ch2_12b_h1_vivid' }, - ['-584623099'] = { Name = 'ch2_12b_house_l1a' }, - ['8990735'] = { Name = 'ch2_12b_house_l1b_dtl_01' }, - ['391077275'] = { Name = 'ch2_12b_house_l1b_dtl_02' }, - ['411787283'] = { Name = 'ch2_12b_house_l1b_dtl_03' }, - ['-403017301'] = { Name = 'ch2_12b_house_l1b' }, - ['-1700952937'] = { Name = 'ch2_12b_house_l1c_dtl_01' }, - ['-1257850519'] = { Name = 'ch2_12b_house_l1c_dtl_02' }, - ['-935895094'] = { Name = 'ch2_12b_house_l1c_dtl_03' }, - ['-1885497848'] = { Name = 'ch2_12b_house_l1c_gate' }, - ['-1325832886'] = { Name = 'ch2_12b_house_l1c_gate001' }, - ['1686137521'] = { Name = 'ch2_12b_house_l1c' }, - ['318873867'] = { Name = 'ch2_12b_house_l1d_dtl_01' }, - ['95880822'] = { Name = 'ch2_12b_house_l1d_dtl_02' }, - ['-2033907560'] = { Name = 'ch2_12b_house_l1d_dtl_03' }, - ['1878131100'] = { Name = 'ch2_12b_house_l1d' }, - ['-398031445'] = { Name = 'ch2_12b_house_l1e_dtl_01' }, - ['-92427751'] = { Name = 'ch2_12b_house_l1e_dtl_02' }, - ['348675758'] = { Name = 'ch2_12b_house_l1e_dtl_03' }, - ['-2128305151'] = { Name = 'ch2_12b_house_l1e' }, - ['-543992122'] = { Name = 'ch2_12b_house_l2c_dtl_01' }, - ['-1871005550'] = { Name = 'ch2_12b_house_l2c_dtl_02' }, - ['-2089572481'] = { Name = 'ch2_12b_house_l2c' }, - ['198022959'] = { Name = 'ch2_12b_house03mc_a_dtl_01' }, - ['408301632'] = { Name = 'ch2_12b_house03mc_a_dtl_02' }, - ['784096532'] = { Name = 'ch2_12b_house03mc_a_dtl_03' }, - ['-2005680468'] = { Name = 'ch2_12b_house03mc' }, - ['-661306666'] = { Name = 'ch2_12b_house50_dtl_01' }, - ['-356522197'] = { Name = 'ch2_12b_house50_dtl_02' }, - ['32902280'] = { Name = 'ch2_12b_house50' }, - ['-2098236359'] = { Name = 'ch2_12b_hs_l1a_dtl_01' }, - ['1898238116'] = { Name = 'ch2_12b_hs_l1a_dtl_02' }, - ['-1599262800'] = { Name = 'ch2_12b_hs_l1a_dtl_03' }, - ['1510157710'] = { Name = 'ch2_12b_hse_l1a_dtl_00' }, - ['-738057850'] = { Name = 'ch2_12b_hse_l1a_dtl_01' }, - ['-914289532'] = { Name = 'ch2_12b_hse_l1a_dtl_02' }, - ['-1866065137'] = { Name = 'ch2_12b_hse_l1a_dtl_03' }, - ['-417413185'] = { Name = 'ch2_12b_hse_l1a_dtl_04' }, - ['475771448'] = { Name = 'ch2_12b_hse_l1a_dtl_05' }, - ['2076478079'] = { Name = 'ch2_12b_hse_l1c_dtl_00' }, - ['-1436031035'] = { Name = 'ch2_12b_hse_l1c_dtl_01' }, - ['-1741077656'] = { Name = 'ch2_12b_hse_l1c_dtl_02' }, - ['579491856'] = { Name = 'ch2_12b_hse_l1c_dtl_03' }, - ['1362408804'] = { Name = 'ch2_12b_hse_l1c_dtl_04' }, - ['1058148639'] = { Name = 'ch2_12b_hse_l1c_dtl_05' }, - ['1572949629'] = { Name = 'ch2_12b_hse_l1c_dtl_06' }, - ['-605631802'] = { Name = 'ch2_12b_hse_l1c_dtl_07' }, - ['170600274'] = { Name = 'ch2_12b_hse_l1c_dtl_08' }, - ['61905501'] = { Name = 'ch2_12b_hse_l1c_dtl_09' }, - ['-1079864550'] = { Name = 'ch2_12b_hse_l1c_dtl_10' }, - ['-320082516'] = { Name = 'ch2_12b_hse_l1c_dtl_11' }, - ['-636008445'] = { Name = 'ch2_12b_hse_l1c_dtl_12' }, - ['-945839208'] = { Name = 'ch2_12b_hse_l1c_dtl_13' }, - ['-1187969349'] = { Name = 'ch2_12b_hse_l1c_dtl_14' }, - ['-499099431'] = { Name = 'ch2_12b_hse_l1c_dtl_15' }, - ['-1783480386'] = { Name = 'ch2_12b_hse_l1c_dtl_16' }, - ['277689718'] = { Name = 'ch2_12b_hse_l1c_dtl_17' }, - ['-97974098'] = { Name = 'ch2_12b_hse_l1c_dtl_18' }, - ['-807037585'] = { Name = 'ch2_12b_hse_l1e_dtl_1' }, - ['-1476356617'] = { Name = 'ch2_12b_l1' }, - ['1572700530'] = { Name = 'ch2_12b_l2' }, - ['844035688'] = { Name = 'ch2_12b_lnddcal01' }, - ['1076007435'] = { Name = 'ch2_12b_lnddcal02' }, - ['1696490509'] = { Name = 'ch2_12b_railing_01' }, - ['1781865318'] = { Name = 'ch2_12b_railing_02_lod' }, - ['1474316689'] = { Name = 'ch2_12b_railing_02' }, - ['-890547302'] = { Name = 'ch2_12b_railing_03_lod' }, - ['-1786100504'] = { Name = 'ch2_12b_railing_03' }, - ['-1965281396'] = { Name = 'ch2_12b_railing_04' }, - ['889881570'] = { Name = 'ch2_12b_railing_05' }, - ['-1694816806'] = { Name = 'ch2_12b_railing_06_lod' }, - ['-1502484809'] = { Name = 'ch2_12b_railing_06' }, - ['45784446'] = { Name = 'ch2_12b_railing_07_lod' }, - ['-542746337'] = { Name = 'ch2_12b_railing_07' }, - ['-772555334'] = { Name = 'ch2_12b_railing_08' }, - ['-1219345779'] = { Name = 'ch2_12b_retainwall01_dtl_01' }, - ['4478068'] = { Name = 'ch2_12b_retainwall01_dtl_02' }, - ['334396360'] = { Name = 'ch2_12b_retainwall01_dtl_03' }, - ['-1249134618'] = { Name = 'ch2_12b_retwall01' }, - ['-1513318296'] = { Name = 'ch2_12b_retwall02' }, - ['-932249093'] = { Name = 'ch2_12b_treeproxy' }, - ['-534545568'] = { Name = 'ch2_emissive_casino_slod' }, - ['429446185'] = { Name = 'ch2_emissive_casinob_slod' }, - ['1468170057'] = { Name = 'ch2_emissive_casinob' }, - ['-1633449889'] = { Name = 'ch2_emissive_casinob2_slod' }, - ['495815520'] = { Name = 'ch2_emissive_casinoc' }, - ['552822525'] = { Name = 'ch2_emissive_casinocb' }, - ['1887593324'] = { Name = 'ch2_emissive_casinocb2' }, - ['-1346292139'] = { Name = 'ch2_emissive_ch2_02_ema_slod' }, - ['973421825'] = { Name = 'ch2_emissive_ch2_02_ema2' }, - ['-1853286198'] = { Name = 'ch2_emissive_ch2_02_emb_slod' }, - ['116261031'] = { Name = 'ch2_emissive_ch2_02_emb' }, - ['52771962'] = { Name = 'ch2_emissive_ch2_03_hut02_lod' }, - ['1712740913'] = { Name = 'ch2_emissive_ch2_03_hut02' }, - ['714766594'] = { Name = 'ch2_emissive_ch2_03_slod' }, - ['-1292873730'] = { Name = 'ch2_emissive_ch2_03c_lod' }, - ['1724302862'] = { Name = 'ch2_emissive_ch2_03c' }, - ['1497086912'] = { Name = 'ch2_emissive_ch2_04_01_slod' }, - ['-1472721525'] = { Name = 'ch2_emissive_ch2_04_01' }, - ['-321986373'] = { Name = 'ch2_emissive_ch2_04_02_slod' }, - ['-14337180'] = { Name = 'ch2_emissive_ch2_04_02' }, - ['-782606385'] = { Name = 'ch2_emissive_ch2_04_03' }, - ['446493267'] = { Name = 'ch2_emissive_ch2_04_04' }, - ['-322627932'] = { Name = 'ch2_emissive_ch2_04_05' }, - ['675450270'] = { Name = 'ch2_emissive_ch2_04_06' }, - ['176181786'] = { Name = 'ch2_emissive_ch2_04_07' }, - ['1134838881'] = { Name = 'ch2_emissive_ch2_04_08' }, - ['1440966879'] = { Name = 'ch2_emissive_ch2_04_09' }, - ['306185524'] = { Name = 'ch2_emissive_ch2_04_doors' }, - ['238857854'] = { Name = 'ch2_emissive_ch2_05_01' }, - ['15569888'] = { Name = 'ch2_emissive_ch2_05_02' }, - ['-2076404193'] = { Name = 'ch2_emissive_ch2_05_slod' }, - ['-331273348'] = { Name = 'ch2_emissive_ch2_05c_01' }, - ['-1099018245'] = { Name = 'ch2_emissive_ch2_05c_02' }, - ['-1632825255'] = { Name = 'ch2_emissive_ch2_05c_03' }, - ['-1319258694'] = { Name = 'ch2_emissive_ch2_05c_04' }, - ['803549891'] = { Name = 'ch2_emissive_ch2_05c_05' }, - ['29185652'] = { Name = 'ch2_emissive_ch2_05c_06' }, - ['340229000'] = { Name = 'ch2_emissive_ch2_05c_07' }, - ['-434594005'] = { Name = 'ch2_emissive_ch2_05c_08' }, - ['-1570318450'] = { Name = 'ch2_emissive_ch2_05c_slod' }, - ['-145786799'] = { Name = 'ch2_emissive_ch2_05d_01' }, - ['-846715709'] = { Name = 'ch2_emissive_ch2_05d_02' }, - ['-1127447732'] = { Name = 'ch2_emissive_ch2_05d_03' }, - ['1051854613'] = { Name = 'ch2_emissive_ch2_05d_04' }, - ['-1395301538'] = { Name = 'ch2_emissive_ch2_05d_05' }, - ['-1737952541'] = { Name = 'ch2_emissive_ch2_05d_slod' }, - ['946890175'] = { Name = 'ch2_emissive_ch2_05e_01' }, - ['-13470908'] = { Name = 'ch2_emissive_ch2_05e_02' }, - ['-604492592'] = { Name = 'ch2_emissive_ch2_05e_03' }, - ['-1586055222'] = { Name = 'ch2_emissive_ch2_05e_04' }, - ['-281619635'] = { Name = 'ch2_emissive_ch2_05e_05' }, - ['-990216495'] = { Name = 'ch2_emissive_ch2_05e_06' }, - ['-1819894806'] = { Name = 'ch2_emissive_ch2_05e_07' }, - ['-1008171437'] = { Name = 'ch2_emissive_ch2_05e_slod' }, - ['582570255'] = { Name = 'ch2_emissive_ch2_05f_01' }, - ['-722061942'] = { Name = 'ch2_emissive_ch2_05f_02' }, - ['107583600'] = { Name = 'ch2_emissive_ch2_05f_03' }, - ['949255365'] = { Name = 'ch2_emissive_ch2_05f_04' }, - ['1334061780'] = { Name = 'ch2_emissive_ch2_05f_05' }, - ['-1581035695'] = { Name = 'ch2_emissive_ch2_05f_06' }, - ['1809048435'] = { Name = 'ch2_emissive_ch2_05f_07' }, - ['1038419862'] = { Name = 'ch2_emissive_ch2_05f_08' }, - ['70980671'] = { Name = 'ch2_emissive_ch2_05f_09' }, - ['-1360073520'] = { Name = 'ch2_emissive_ch2_05f_10' }, - ['-196970630'] = { Name = 'ch2_emissive_ch2_05f_11' }, - ['-1785821757'] = { Name = 'ch2_emissive_ch2_05f_slod' }, - ['1001872854'] = { Name = 'ch2_emissive_ch2_06_02_slod' }, - ['266950412'] = { Name = 'ch2_emissive_ch2_06_02' }, - ['1572903863'] = { Name = 'ch2_emissive_ch2_06_03_slod' }, - ['-906179840'] = { Name = 'ch2_emissive_ch2_06_03' }, - ['-675454368'] = { Name = 'ch2_emissive_ch2_06_04_slod' }, - ['-1135661147'] = { Name = 'ch2_emissive_ch2_06_04' }, - ['634450536'] = { Name = 'ch2_emissive_ch2_06_04b_lod' }, - ['-1712000256'] = { Name = 'ch2_emissive_ch2_06_04b' }, - ['-1543961018'] = { Name = 'ch2_emissive_ch2_06_slod' }, - ['90400011'] = { Name = 'ch2_emissive_ch2_06' }, - ['-200989116'] = { Name = 'ch2_emissive_ch2_07_01' }, - ['1410000466'] = { Name = 'ch2_emissive_ch2_07_02' }, - ['1137264079'] = { Name = 'ch2_emissive_ch2_07_03' }, - ['892741801'] = { Name = 'ch2_emissive_ch2_07_04' }, - ['652971028'] = { Name = 'ch2_emissive_ch2_07_05' }, - ['-1425107880'] = { Name = 'ch2_emissive_ch2_07_06' }, - ['144112531'] = { Name = 'ch2_emissive_ch2_07_slod' }, - ['-1515902363'] = { Name = 'ch2_emissive_ch2_07b_01' }, - ['-1746497816'] = { Name = 'ch2_emissive_ch2_07b_02' }, - ['-1498665865'] = { Name = 'ch2_emissive_ch2_07b_03' }, - ['-1998393115'] = { Name = 'ch2_emissive_ch2_07b_04' }, - ['2048086854'] = { Name = 'ch2_emissive_ch2_07b_05' }, - ['1817819091'] = { Name = 'ch2_emissive_ch2_07b_06' }, - ['1617862653'] = { Name = 'ch2_emissive_ch2_07b_07' }, - ['1102144123'] = { Name = 'ch2_emissive_ch2_07b_08' }, - ['867944080'] = { Name = 'ch2_emissive_ch2_07b_09' }, - ['1783384760'] = { Name = 'ch2_emissive_ch2_07b_10' }, - ['513016906'] = { Name = 'ch2_emissive_ch2_07b_slod' }, - ['-317974989'] = { Name = 'ch2_emissive_ch2_07c_01' }, - ['456520326'] = { Name = 'ch2_emissive_ch2_07c_02' }, - ['145214826'] = { Name = 'ch2_emissive_ch2_07c_03' }, - ['-985110200'] = { Name = 'ch2_emissive_ch2_07c_slod' }, - ['1541993007'] = { Name = 'ch2_emissive_ch2_07d_01' }, - ['1721599896'] = { Name = 'ch2_emissive_ch2_07d_02' }, - ['-807118300'] = { Name = 'ch2_emissive_ch2_07d_03' }, - ['-2098675666'] = { Name = 'ch2_emissive_ch2_07d_04' }, - ['-1792908127'] = { Name = 'ch2_emissive_ch2_07d_05' }, - ['806132327'] = { Name = 'ch2_emissive_ch2_07d_06' }, - ['1110392492'] = { Name = 'ch2_emissive_ch2_07d_07' }, - ['-177494746'] = { Name = 'ch2_emissive_ch2_07d_08' }, - ['1604614550'] = { Name = 'ch2_emissive_ch2_07d_09' }, - ['1227836380'] = { Name = 'ch2_emissive_ch2_07d_10' }, - ['980266585'] = { Name = 'ch2_emissive_ch2_07d_11' }, - ['614063407'] = { Name = 'ch2_emissive_ch2_07d_slod' }, - ['589303169'] = { Name = 'ch2_emissive_ch2_08_01' }, - ['-1872599020'] = { Name = 'ch2_emissive_ch2_08_02' }, - ['2014984068'] = { Name = 'ch2_emissive_ch2_08_03' }, - ['1710002985'] = { Name = 'ch2_emissive_ch2_08_04' }, - ['-400943242'] = { Name = 'ch2_emissive_ch2_08_05' }, - ['1447130051'] = { Name = 'ch2_emissive_ch2_08_06' }, - ['1267621469'] = { Name = 'ch2_emissive_ch2_08_07' }, - ['968604344'] = { Name = 'ch2_emissive_ch2_08_08' }, - ['-1285968394'] = { Name = 'ch2_emissive_ch2_08_09' }, - ['1756798513'] = { Name = 'ch2_emissive_ch2_08_10' }, - ['-1748992956'] = { Name = 'ch2_emissive_ch2_08_11' }, - ['594746811'] = { Name = 'ch2_emissive_ch2_08_slod' }, - ['-1605144853'] = { Name = 'ch2_emissive_ch2_08b_01' }, - ['-1416919713'] = { Name = 'ch2_emissive_ch2_08b_02' }, - ['2108959149'] = { Name = 'ch2_emissive_ch2_08b_03' }, - ['-1895183272'] = { Name = 'ch2_emissive_ch2_08b_04' }, - ['-149349255'] = { Name = 'ch2_emissive_ch2_08b_05' }, - ['21967077'] = { Name = 'ch2_emissive_ch2_08b_06' }, - ['1829520235'] = { Name = 'ch2_emissive_ch2_08b_slod' }, - ['1939476373'] = { Name = 'ch2_emissive_ch2_09_01' }, - ['-580787417'] = { Name = 'ch2_emissive_ch2_09_02' }, - ['-1807494936'] = { Name = 'ch2_emissive_ch2_09_03' }, - ['-2046348177'] = { Name = 'ch2_emissive_ch2_09_04' }, - ['973118563'] = { Name = 'ch2_emissive_ch2_09_05' }, - ['-1530105351'] = { Name = 'ch2_emissive_ch2_09_06' }, - ['1585472866'] = { Name = 'ch2_emissive_ch2_09_07' }, - ['1228421842'] = { Name = 'ch2_emissive_ch2_09_08' }, - ['1557226000'] = { Name = 'ch2_emissive_ch2_09_09' }, - ['-582032979'] = { Name = 'ch2_emissive_ch2_09_10' }, - ['-1292006133'] = { Name = 'ch2_emissive_ch2_09_11' }, - ['1698471060'] = { Name = 'ch2_emissive_ch2_09_slod' }, - ['1934235507'] = { Name = 'ch2_emissive_ch2_09b_01' }, - ['1680603447'] = { Name = 'ch2_emissive_ch2_09b_02' }, - ['1448893848'] = { Name = 'ch2_emissive_ch2_09b_03' }, - ['954671790'] = { Name = 'ch2_emissive_ch2_09b_04' }, - ['722896653'] = { Name = 'ch2_emissive_ch2_09b_05' }, - ['441312632'] = { Name = 'ch2_emissive_ch2_09b_06' }, - ['250924742'] = { Name = 'ch2_emissive_ch2_09b_07' }, - ['503147723'] = { Name = 'ch2_emissive_ch2_09b_08' }, - ['2568479'] = { Name = 'ch2_emissive_ch2_09b_09' }, - ['103267916'] = { Name = 'ch2_emissive_ch2_09b_10' }, - ['-655334434'] = { Name = 'ch2_emissive_ch2_09b_11' }, - ['-914242303'] = { Name = 'ch2_emissive_ch2_09b_12' }, - ['561450452'] = { Name = 'ch2_emissive_ch2_09b_slod' }, - ['-1081332392'] = { Name = 'ch2_emissive_ch2_09c_01' }, - ['-1338143045'] = { Name = 'ch2_emissive_ch2_09c_02' }, - ['567243229'] = { Name = 'ch2_emissive_ch2_09c_03' }, - ['305779378'] = { Name = 'ch2_emissive_ch2_09c_04' }, - ['89372902'] = { Name = 'ch2_emissive_ch2_09c_05' }, - ['-150528947'] = { Name = 'ch2_emissive_ch2_09c_06' }, - ['1521017739'] = { Name = 'ch2_emissive_ch2_09c_07' }, - ['1282754340'] = { Name = 'ch2_emissive_ch2_09c_08' }, - ['1046162160'] = { Name = 'ch2_emissive_ch2_09c_09' }, - ['-1434875737'] = { Name = 'ch2_emissive_ch2_09c_10' }, - ['-614700436'] = { Name = 'ch2_emissive_ch2_09c_11' }, - ['-954318352'] = { Name = 'ch2_emissive_ch2_09c_12' }, - ['-1941910518'] = { Name = 'ch2_emissive_ch2_09c_13' }, - ['946155990'] = { Name = 'ch2_emissive_ch2_09c_slod' }, - ['-1109323806'] = { Name = 'ch2_emissive_ch2_11_01' }, - ['-1661579791'] = { Name = 'ch2_emissive_ch2_11_02' }, - ['-1373278129'] = { Name = 'ch2_emissive_ch2_11_03' }, - ['991726143'] = { Name = 'ch2_emissive_ch2_11_04' }, - ['1296969378'] = { Name = 'ch2_emissive_ch2_11_05' }, - ['1470055236'] = { Name = 'ch2_emissive_ch2_11_06' }, - ['1775888313'] = { Name = 'ch2_emissive_ch2_11_07' }, - ['846821629'] = { Name = 'ch2_emissive_ch2_11_08' }, - ['70687864'] = { Name = 'ch2_emissive_ch2_11_09' }, - ['1371223724'] = { Name = 'ch2_emissive_ch2_11_10' }, - ['574740414'] = { Name = 'ch2_emissive_ch2_11_11' }, - ['805598019'] = { Name = 'ch2_emissive_ch2_11_12' }, - ['215231715'] = { Name = 'ch2_emissive_ch2_11_13' }, - ['-531311643'] = { Name = 'ch2_emissive_ch2_11_14' }, - ['-1107128511'] = { Name = 'ch2_emissive_ch2_11_15' }, - ['-879789680'] = { Name = 'ch2_emissive_ch2_11_slod' }, - ['-1591119746'] = { Name = 'ch2_emissive_ch2_11b_01' }, - ['-1770824942'] = { Name = 'ch2_emissive_ch2_11b_02' }, - ['-136602143'] = { Name = 'ch2_emissive_ch2_11b_03' }, - ['-922599373'] = { Name = 'ch2_emissive_ch2_11b_04' }, - ['-1137400168'] = { Name = 'ch2_emissive_ch2_11b_05' }, - ['-1384478428'] = { Name = 'ch2_emissive_ch2_11b_06' }, - ['841060972'] = { Name = 'ch2_emissive_ch2_11b_07' }, - ['-1752822179'] = { Name = 'ch2_emissive_ch2_11b_slod' }, - ['1148287288'] = { Name = 'ch2_emissive_ch2_12_01' }, - ['936370165'] = { Name = 'ch2_emissive_ch2_12_02' }, - ['557101759'] = { Name = 'ch2_emissive_ch2_12_03' }, - ['-1485324473'] = { Name = 'ch2_emissive_ch2_12_04' }, - ['-1841785655'] = { Name = 'ch2_emissive_ch2_12_05' }, - ['-2099513844'] = { Name = 'ch2_emissive_ch2_12_06' }, - ['1838664580'] = { Name = 'ch2_emissive_ch2_12_07' }, - ['-393035396'] = { Name = 'ch2_emissive_ch2_12_08' }, - ['-615373061'] = { Name = 'ch2_emissive_ch2_12_09' }, - ['580204256'] = { Name = 'ch2_emissive_ch2_12_10' }, - ['273388109'] = { Name = 'ch2_emissive_ch2_12_11' }, - ['117211051'] = { Name = 'ch2_emissive_ch2_12_12' }, - ['-209069882'] = { Name = 'ch2_emissive_ch2_12_13' }, - ['1509729710'] = { Name = 'ch2_emissive_ch2_12_14' }, - ['1200554195'] = { Name = 'ch2_emissive_ch2_12_15' }, - ['1014491813'] = { Name = 'ch2_emissive_ch2_12_16' }, - ['734087480'] = { Name = 'ch2_emissive_ch2_12_17' }, - ['1655551752'] = { Name = 'ch2_emissive_ch2_12_18' }, - ['1367610549'] = { Name = 'ch2_emissive_ch2_12_19' }, - ['-1682789895'] = { Name = 'ch2_emissive_ch2_12_20' }, - ['-2130807667'] = { Name = 'ch2_emissive_ch2_12_21' }, - ['1381209912'] = { Name = 'ch2_emissive_ch2_12_22' }, - ['1620259767'] = { Name = 'ch2_emissive_ch2_12_23' }, - ['-440517105'] = { Name = 'ch2_emissive_ch2_12_24' }, - ['699181396'] = { Name = 'ch2_emissive_ch2_12_slod' }, - ['-397604704'] = { Name = 'ch2_emissive_ch2_12b_01' }, - ['-96555901'] = { Name = 'ch2_emissive_ch2_12b_02' }, - ['210227477'] = { Name = 'ch2_emissive_ch2_12b_03' }, - ['-1573586043'] = { Name = 'ch2_emissive_ch2_12b_04' }, - ['804525825'] = { Name = 'ch2_emissive_ch2_12b_05' }, - ['1034465898'] = { Name = 'ch2_emissive_ch2_12b_06' }, - ['1534062072'] = { Name = 'ch2_emissive_ch2_12b_07' }, - ['-346386993'] = { Name = 'ch2_emissive_ch2_12b_08' }, - ['1635857228'] = { Name = 'ch2_emissive_ch2_12b_slod' }, - ['-1847632370'] = { Name = 'ch2_emissive_em_a_slod' }, - ['-482909493'] = { Name = 'ch2_emissive_emi_00' }, - ['-1677503388'] = { Name = 'ch2_emissive_emi_01' }, - ['-946885764'] = { Name = 'ch2_emissive_emi_02' }, - ['730166126'] = { Name = 'ch2_emissive_emi_03' }, - ['498522065'] = { Name = 'ch2_emissive_emi_04' }, - ['250133045'] = { Name = 'ch2_emissive_emi_05' }, - ['19209902'] = { Name = 'ch2_emissive_emi_06' }, - ['1199123281'] = { Name = 'ch2_emissive_emi_07' }, - ['963088174'] = { Name = 'ch2_emissive_emi_08' }, - ['706506904'] = { Name = 'ch2_emissive_emi_09' }, - ['1680466198'] = { Name = 'ch2_emissive_emi_10' }, - ['971410576'] = { Name = 'ch2_emissive_emi_11' }, - ['437503034'] = { Name = 'ch2_emissive_emi_b_slod' }, - ['-526698890'] = { Name = 'ch2_emissive_emis01' }, - ['-2126352660'] = { Name = 'ch2_lod_emissive_slod3' }, - ['-1344533778'] = { Name = 'ch2_lod_slod3' }, - ['-2088596540'] = { Name = 'ch2_lod2_emissive_slod3' }, - ['-467758802'] = { Name = 'ch2_lod2_slod3' }, - ['1506734260'] = { Name = 'ch2_lod3_emissive_slod3' }, - ['841438406'] = { Name = 'ch2_lod3_slod3' }, - ['-1087646514'] = { Name = 'ch2_lod4_s3a' }, - ['-1385746107'] = { Name = 'ch2_lod4_s3b' }, - ['-1557062439'] = { Name = 'ch2_lod4_s3c' }, - ['1895439374'] = { Name = 'ch2_rdprops_cblmsh01' }, - ['588969625'] = { Name = 'ch2_rdprops_cblmsh90' }, - ['-1183705922'] = { Name = 'ch2_rdprops_ch2_rd_wire059' }, - ['-1877229358'] = { Name = 'ch2_rdprops_ch2_rd_wire060' }, - ['-2024427706'] = { Name = 'ch2_rdprops_ch2_rd_wire061' }, - ['-1131374149'] = { Name = 'ch2_rdprops_ch2_rd_wire062' }, - ['-1580112835'] = { Name = 'ch2_rdprops_ch2_rd_wire063' }, - ['1335541713'] = { Name = 'ch2_rdprops_ch2_rd_wire064' }, - ['1028660028'] = { Name = 'ch2_rdprops_ch2_rd_wire065' }, - ['1797748458'] = { Name = 'ch2_rdprops_ch2_rd_wire066' }, - ['1490408007'] = { Name = 'ch2_rdprops_ch2_rd_wire067' }, - ['-180024509'] = { Name = 'ch2_rdprops_ch2_rd_wire068' }, - ['68856046'] = { Name = 'ch2_rdprops_ch2_rd_wire069' }, - ['-1950590609'] = { Name = 'ch2_rdprops_ch2_rd_wire070' }, - ['-1704102191'] = { Name = 'ch2_rdprops_ch2_rd_wire071' }, - ['-1472785820'] = { Name = 'ch2_rdprops_ch2_rd_wire072' }, - ['-1238421932'] = { Name = 'ch2_rdprops_ch2_rd_wire073' }, - ['-1028307104'] = { Name = 'ch2_rdprops_ch2_rd_wire074' }, - ['-788732945'] = { Name = 'ch2_rdprops_ch2_rd_wire075' }, - ['-551911382'] = { Name = 'ch2_rdprops_ch2_rd_wire076' }, - ['226286830'] = { Name = 'ch2_rdprops_ch2_rd_wire077' }, - ['508526227'] = { Name = 'ch2_rdprops_ch2_rd_wire078' }, - ['733485412'] = { Name = 'ch2_rdprops_ch2_rd_wire079' }, - ['1193332505'] = { Name = 'ch2_rdprops_ch2_rd_wire080' }, - ['1432251284'] = { Name = 'ch2_rdprops_ch2_rd_wire081' }, - ['1897014011'] = { Name = 'ch2_rdprops_ch2_rd_wire083' }, - ['-1777767191'] = { Name = 'ch2_rdprops_ch2_rd_wire084' }, - ['-1522332836'] = { Name = 'ch2_rdprops_ch2_rd_wire085' }, - ['-1304386217'] = { Name = 'ch2_rdprops_ch2_rd_wire086' }, - ['-1024047422'] = { Name = 'ch2_rdprops_ch2_rd_wire087' }, - ['-552829202'] = { Name = 'ch2_rdprops_ch2_rd_wire088' }, - ['-325379573'] = { Name = 'ch2_rdprops_ch2_rd_wire089' }, - ['1089683862'] = { Name = 'ch2_rdprops_ch2_rd_wire090' }, - ['850044165'] = { Name = 'ch2_rdprops_ch2_rd_wire091' }, - ['537624503'] = { Name = 'ch2_rdprops_ch2_rd_wire092' }, - ['154423817'] = { Name = 'ch2_rdprops_ch2_rd_wire093' }, - ['-196007373'] = { Name = 'ch2_rdprops_ch2_rd_wire094' }, - ['-365357565'] = { Name = 'ch2_rdprops_ch2_rd_wire095' }, - ['-638945946'] = { Name = 'ch2_rdprops_ch2_rd_wire096' }, - ['-936652311'] = { Name = 'ch2_rdprops_ch2_rd_wire097' }, - ['-1116357507'] = { Name = 'ch2_rdprops_ch2_rd_wire098' }, - ['-1416488778'] = { Name = 'ch2_rdprops_ch2_rd_wire099' }, - ['-314571052'] = { Name = 'ch2_rdprops_ch2_rd_wire100' }, - ['387013238'] = { Name = 'ch2_rdprops_ch2_rd_wire101' }, - ['-1271360318'] = { Name = 'ch2_rdprops_ch2_rd_wire104' }, - ['-559289948'] = { Name = 'ch2_rdprops_ch2_rd_wire105' }, - ['1004512266'] = { Name = 'ch2_rdprops_ch2_rd_wire106' }, - ['1713830040'] = { Name = 'ch2_rdprops_ch2_rd_wire107' }, - ['1466325783'] = { Name = 'ch2_rdprops_ch2_rd_wire108' }, - ['-1996603822'] = { Name = 'ch2_rdprops_ch2_rd_wire109' }, - ['368435351'] = { Name = 'ch2_rdprops_ch2_rd_wire110' }, - ['1432838009'] = { Name = 'ch2_rdprops_ch2_rd_wire111' }, - ['45136397'] = { Name = 'ch2_rdprops_ch2_rd_wire112' }, - ['1995874951'] = { Name = 'ch2_rdprops_ch2_rd_wire113' }, - ['-962346528'] = { Name = 'ch2_rdprops_ch2_rd_wire114' }, - ['-665164467'] = { Name = 'ch2_rdprops_ch2_rd_wire115' }, - ['-1007960976'] = { Name = 'ch2_rdprops_ch2_rd_wire117' }, - ['263017462'] = { Name = 'ch2_rdprops_ch2_rd_wire118' }, - ['-1772789656'] = { Name = 'ch2_rdprops_ch2_rd_wire121' }, - ['-2003581723'] = { Name = 'ch2_rdprops_ch2_rd_wire122' }, - ['-899725201'] = { Name = 'ch2_rdprops_ch2_rd_wire123' }, - ['-49074726'] = { Name = 'ch2_rdprops_ch2_rd_wire124' }, - ['-428474208'] = { Name = 'ch2_rdprops_ch2_rd_wire125' }, - ['406381605'] = { Name = 'ch2_rdprops_ch2_rd_wire126' }, - ['157501050'] = { Name = 'ch2_rdprops_ch2_rd_wire127' }, - ['874159080'] = { Name = 'ch2_rdprops_ch2_rd_wire128' }, - ['1691385171'] = { Name = 'ch2_rdprops_ch2_rd_wire129' }, - ['1641084412'] = { Name = 'ch2_rdprops_ch2_rd_wire131' }, - ['1443618418'] = { Name = 'ch2_rdprops_ch2_rd_wire132' }, - ['-2059617065'] = { Name = 'ch2_rdprops_ch2_rd_wire133' }, - ['-350821909'] = { Name = 'ch2_rdprops_cm10968_tstd001' }, - ['-245228707'] = { Name = 'ch2_rdprops_combo41_01_lod' }, - ['-662595029'] = { Name = 'ch2_rdprops_combo42_02_lod' }, - ['-809354461'] = { Name = 'ch2_rdprops_combo43_01_lod' }, - ['-183234223'] = { Name = 'ch2_rdprops_combo43_02_lod' }, - ['84764402'] = { Name = 'ch2_rdprops_combo43_03_lod' }, - ['1313116553'] = { Name = 'ch2_rdprops_combo46_01_lod' }, - ['-921978812'] = { Name = 'ch2_rdprops_combo47_01_lod' }, - ['325906790'] = { Name = 'ch2_rdprops_combo49_01_lod' }, - ['-982102933'] = { Name = 'ch2_rdprops_combo51_01_lod' }, - ['-2043337333'] = { Name = 'ch2_rdprops_combo51_02_lod' }, - ['893951728'] = { Name = 'ch2_rdprops_combo51_03_lod' }, - ['-1489658945'] = { Name = 'ch2_rdprops_combo52_01_lod' }, - ['-759781356'] = { Name = 'ch2_rdprops_combo53_01_lod' }, - ['-1474147841'] = { Name = 'ch2_rdprops_combo54_01_lod' }, - ['-2086743060'] = { Name = 'ch2_rdprops_combo54_03_lod' }, - ['-291372054'] = { Name = 'ch2_rdprops_combo55_01_lod' }, - ['1120695627'] = { Name = 'ch2_rdprops_combo56_01_lod' }, - ['157080718'] = { Name = 'ch2_rdprops_combo56_02_lod' }, - ['-2126964089'] = { Name = 'ch2_rdprops_combo56_03_lod' }, - ['1539791741'] = { Name = 'ch2_rdprops_combo57_01_lod' }, - ['750118065'] = { Name = 'ch2_rdprops_combo57_02_lod' }, - ['-896003620'] = { Name = 'ch2_rdprops_combo57_03_lod' }, - ['1260637196'] = { Name = 'ch2_rdprops_combo58_01_lod' }, - ['879978744'] = { Name = 'ch2_rdprops_combo59_02_lod' }, - ['290099903'] = { Name = 'ch2_rdprops_combo59_03_lod' }, - ['507853080'] = { Name = 'ch2_rdprops_combo59_04_lod' }, - ['-459325159'] = { Name = 'ch2_rdprops_combo59_05_lod' }, - ['1813024439'] = { Name = 'ch2_rdprops_combo60_01_lod' }, - ['1260810222'] = { Name = 'ch2_rdprops_combo61_01_lod' }, - ['-1588852169'] = { Name = 'ch2_rdprops_combo62_02_lod' }, - ['-1922289286'] = { Name = 'ch2_rdprops_combo63_03_lod' }, - ['1583748582'] = { Name = 'ch2_rdprops_combo63_04_lod' }, - ['551420588'] = { Name = 'ch2_rdprops_combo64_01_lod' }, - ['-1532969622'] = { Name = 'ch2_rdprops_combo65_01_lod' }, - ['1249514566'] = { Name = 'ch2_rdprops_combo66_01_lod' }, - ['-1519861053'] = { Name = 'ch2_rdprops_combo66_02_lod' }, - ['-1963924460'] = { Name = 'ch2_rdprops_combo66_03_lod' }, - ['-1586506824'] = { Name = 'ch2_rdprops_combo67_02_lod' }, - ['-1125743543'] = { Name = 'ch2_rdprops_combo68_01_lod' }, - ['2067254602'] = { Name = 'ch2_rdprops_combo68_02_lod' }, - ['753160103'] = { Name = 'ch2_rdprops_combo68_03_lod' }, - ['1168240609'] = { Name = 'ch2_rdprops_combo69_01_lod' }, - ['903867056'] = { Name = 'ch2_rdprops_combo69_02_lod' }, - ['-1365379109'] = { Name = 'ch2_rdprops_combo69_03_lod' }, - ['-1872549914'] = { Name = 'ch2_rdprops_combo70_01_lod' }, - ['-2059513476'] = { Name = 'ch2_rdprops_combo70_02_lod' }, - ['1375808959'] = { Name = 'ch2_rdprops_combo70_03_lod' }, - ['10959767'] = { Name = 'ch2_rdprops_combo70_04_lod' }, - ['38792473'] = { Name = 'ch2_rdprops_combo70_05_lod' }, - ['-440859822'] = { Name = 'ch2_rdprops_combo71_01_lod' }, - ['-898346223'] = { Name = 'ch2_rdprops_combo72_01_lod' }, - ['-2026741398'] = { Name = 'ch2_rdprops_combo73_01_lod' }, - ['-96845643'] = { Name = 'ch2_rdprops_combo74_01_lod' }, - ['-1992228038'] = { Name = 'ch2_rdprops_combo75_01_lod' }, - ['2140004518'] = { Name = 'ch2_rdprops_combo75_02_lod' }, - ['-844323838'] = { Name = 'ch2_rdprops_combo75_03_lod' }, - ['715123617'] = { Name = 'ch2_rdprops_combo76_01_lod' }, - ['-748346662'] = { Name = 'ch2_rdprops_combo77_01_lod' }, - ['-2046811437'] = { Name = 'ch2_rdprops_combo78_01_lod' }, - ['-1761025503'] = { Name = 'ch2_rdprops_combo78_02_lod' }, - ['1200885952'] = { Name = 'ch2_rdprops_combo79_01_lod' }, - ['-1255247171'] = { Name = 'ch2_rdprops_ngcab01' }, - ['1845650534'] = { Name = 'ch2_rdprops_ngcab02' }, - ['1485584762'] = { Name = 'ch2_rdprops_ngcab03' }, - ['-1667907268'] = { Name = 'ch2_rdprops_ngcab04' }, - ['-1975149412'] = { Name = 'ch2_rdprops_ngcab05' }, - ['1091734071'] = { Name = 'ch2_rdprops_ngcab06' }, - ['-1361418811'] = { Name = 'ch2_rdprops_ngcab07' }, - ['1706840970'] = { Name = 'ch2_rdprops_ngcab08' }, - ['1399729902'] = { Name = 'ch2_rdprops_ngcab09' }, - ['-1937366443'] = { Name = 'ch2_rdprops_ngcab10' }, - ['-2007426565'] = { Name = 'ch2_rdprops_ngcab11' }, - ['-1321407550'] = { Name = 'ch2_rdprops_ngcab12' }, - ['-1558491265'] = { Name = 'ch2_rdprops_ngcab13' }, - ['-1851544392'] = { Name = 'ch2_rdprops_ngcab14' }, - ['2077851940'] = { Name = 'ch2_rdprops_ngcab15' }, - ['1193514937'] = { Name = 'ch2_rdprops_ngcab16' }, - ['-1619703717'] = { Name = 'ch2_rdprops_ngcab17' }, - ['1690882819'] = { Name = 'ch2_rdprops_ngcab18' }, - ['1460811670'] = { Name = 'ch2_rdprops_ngcab19' }, - ['-403974757'] = { Name = 'ch2_rdprops_ngcab20' }, - ['786545094'] = { Name = 'ch2_rdprops_ngcab200' }, - ['10935633'] = { Name = 'ch2_rdprops_ngcab201' }, - ['1247637693'] = { Name = 'ch2_rdprops_ngcab202' }, - ['477730038'] = { Name = 'ch2_rdprops_ngcab203' }, - ['-822806030'] = { Name = 'ch2_rdprops_ngcab204' }, - ['-1602347771'] = { Name = 'ch2_rdprops_ngcab205' }, - ['-362499879'] = { Name = 'ch2_rdprops_ngcab206' }, - ['-1137126278'] = { Name = 'ch2_rdprops_ngcab207' }, - ['1505693576'] = { Name = 'ch2_rdprops_ngcab208' }, - ['1804940084'] = { Name = 'ch2_rdprops_ngcab209' }, - ['-194777461'] = { Name = 'ch2_rdprops_ngcab21' }, - ['807157171'] = { Name = 'ch2_rdprops_ngcab210' }, - ['-37398266'] = { Name = 'ch2_rdprops_ngcab211' }, - ['1270412524'] = { Name = 'ch2_rdprops_ngcab212' }, - ['426184777'] = { Name = 'ch2_rdprops_ngcab213' }, - ['-1037235682'] = { Name = 'ch2_rdprops_ngcab22' }, - ['-789174352'] = { Name = 'ch2_rdprops_ngcab23' }, - ['550061909'] = { Name = 'ch2_rdprops_ngcab24' }, - ['784196414'] = { Name = 'ch2_rdprops_ngcab25' }, - ['-417671847'] = { Name = 'ch2_rdprops_ngcab31' }, - ['-648168993'] = { Name = 'ch2_rdprops_ngcab32' }, - ['-896590782'] = { Name = 'ch2_rdprops_ngcab33' }, - ['539379567'] = { Name = 'ch2_rdprops_ngcab35' }, - ['-311544526'] = { Name = 'ch2_rdprops_w_pt2210' }, - ['926337218'] = { Name = 'ch2_rdprops_w_pt2211' }, - ['-392766589'] = { Name = 'ch2_rdprops_w_sp_pt2130' }, - ['693900483'] = { Name = 'ch2_rdprops_w_spline_pt2108' }, - ['1540585905'] = { Name = 'ch2_rdprops_w_spline_pt2109' }, - ['2145436451'] = { Name = 'ch2_rdprops_w_spline_pt2111' }, - ['-1262998319'] = { Name = 'ch2_rdprops_w_spline_pt2112' }, - ['-992228060'] = { Name = 'ch2_rdprops_w_spline_pt2113' }, - ['-178016717'] = { Name = 'ch2_rdprops_w_spline_pt2114' }, - ['-475985234'] = { Name = 'ch2_rdprops_w_spline_pt2115' }, - ['160126594'] = { Name = 'ch2_rdprops_w_spline_pt2116' }, - ['1044758518'] = { Name = 'ch2_rdprops_w_spline_pt2117' }, - ['737090377'] = { Name = 'ch2_rdprops_w_spline_pt2118' }, - ['1357014319'] = { Name = 'ch2_rdprops_w_spline_pt2119' }, - ['2050788083'] = { Name = 'ch2_rdprops_w_spline_pt2120' }, - ['-263227625'] = { Name = 'ch2_rdprops_w_spline_pt2121' }, - ['-575614502'] = { Name = 'ch2_rdprops_w_spline_pt2122' }, - ['-739787192'] = { Name = 'ch2_rdprops_w_spline_pt2123' }, - ['-1060759547'] = { Name = 'ch2_rdprops_w_spline_pt2124' }, - ['386188421'] = { Name = 'ch2_rdprops_w_spline_pt2125' }, - ['140650304'] = { Name = 'ch2_rdprops_w_spline_pt2126' }, - ['-164396317'] = { Name = 'ch2_rdprops_w_spline_pt2127' }, - ['1521929192'] = { Name = 'ch2_rdprops_w_spline_pt2129' }, - ['1355953867'] = { Name = 'ch2_rdprops_w_spline_pt2130' }, - ['-1560356065'] = { Name = 'ch2_rdprops_w_spline_pt2131' }, - ['-1269858880'] = { Name = 'ch2_rdprops_w_spline_pt2132' }, - ['-2067685723'] = { Name = 'ch2_rdprops_w_spline_pt2133' }, - ['-2015517475'] = { Name = 'ch2_rdprops_w_spline_pt2134' }, - ['-1143403309'] = { Name = 'ch2_rdprops_w_spline_pt2137' }, - ['521524047'] = { Name = 'ch2_rdprops_w_spline_pt2138' }, - ['819427026'] = { Name = 'ch2_rdprops_w_spline_pt2139' }, - ['-1394217579'] = { Name = 'ch2_rdprops_w_spline_pt2140' }, - ['-1711585344'] = { Name = 'ch2_rdprops_w_spline_pt2141' }, - ['1383413933'] = { Name = 'ch2_rdprops_w_spline_pt2143' }, - ['1085740337'] = { Name = 'ch2_rdprops_w_spline_pt2144' }, - ['1862791634'] = { Name = 'ch2_rdprops_w_spline_pt2145' }, - ['-1307248537'] = { Name = 'ch2_rdprops_w_spline_pt2148' }, - ['-2084103220'] = { Name = 'ch2_rdprops_w_spline_pt2149' }, - ['67443438'] = { Name = 'ch2_rdprops_w_spline_pt2151' }, - ['844134276'] = { Name = 'ch2_rdprops_w_spline_pt2152' }, - ['538628889'] = { Name = 'ch2_rdprops_w_spline_pt2153' }, - ['1022561481'] = { Name = 'ch2_rdprops_w_spline_pt2154' }, - ['1789716540'] = { Name = 'ch2_rdprops_w_spline_pt2155' }, - ['1502201334'] = { Name = 'ch2_rdprops_w_spline_pt2156' }, - ['1996423388'] = { Name = 'ch2_rdprops_w_spline_pt2158' }, - ['-1253671574'] = { Name = 'ch2_rdprops_w_spline_pt2159' }, - ['2006581550'] = { Name = 'ch2_rdprops_w_spline_pt2160' }, - ['-993092714'] = { Name = 'ch2_rdprops_w_spline_pt2161' }, - ['-1290995693'] = { Name = 'ch2_rdprops_w_spline_pt2162' }, - ['-807030332'] = { Name = 'ch2_rdprops_w_spline_pt2164' }, - ['-90798295'] = { Name = 'ch2_rdprops_w_spline_pt2165' }, - ['-330143075'] = { Name = 'ch2_rdprops_w_spline_pt2166' }, - ['856324112'] = { Name = 'ch2_rdprops_w_spline_pt2167' }, - ['147530642'] = { Name = 'ch2_rdprops_w_spline_pt2168' }, - ['1341141467'] = { Name = 'ch2_rdprops_w_spline_pt2169' }, - ['1311550720'] = { Name = 'ch2_rdprops_w_spline_pt2170' }, - ['-2054775889'] = { Name = 'ch2_rdprops_w_spline_pt2171' }, - ['1775920219'] = { Name = 'ch2_rdprops_w_spline_pt2172' }, - ['-1596370348'] = { Name = 'ch2_rdprops_w_spline_pt2173' }, - ['-857593243'] = { Name = 'ch2_rdprops_w_spline_pt2175' }, - ['-1132688998'] = { Name = 'ch2_rdprops_w_spline_pt2176' }, - ['-363928258'] = { Name = 'ch2_rdprops_w_spline_pt2177' }, - ['-670941019'] = { Name = 'ch2_rdprops_w_spline_pt2178' }, - ['396869619'] = { Name = 'ch2_rdprops_w_spline_pt2179' }, - ['-39318796'] = { Name = 'ch2_rdprops_w_spline_pt2180' }, - ['925957637'] = { Name = 'ch2_rdprops_w_spline_pt2181' }, - ['586339721'] = { Name = 'ch2_rdprops_w_spline_pt2182' }, - ['110599387'] = { Name = 'ch2_rdprops_w_spline_pt2183' }, - ['-236752017'] = { Name = 'ch2_rdprops_w_spline_pt2184' }, - ['740255722'] = { Name = 'ch2_rdprops_w_spline_pt2185' }, - ['-1121056251'] = { Name = 'ch2_rdprops_w_spline_pt2187' }, - ['-1351913856'] = { Name = 'ch2_rdprops_w_spline_pt2188' }, - ['-483928584'] = { Name = 'ch2_rdprops_w_spline_pt2189' }, - ['91265317'] = { Name = 'ch2_rdprops_w_spline_pt2190' }, - ['867104161'] = { Name = 'ch2_rdprops_w_spline_pt2191' }, - ['570118714'] = { Name = 'ch2_rdprops_w_spline_pt2192' }, - ['-655474623'] = { Name = 'ch2_rdprops_w_spline_pt2193' }, - ['-347282178'] = { Name = 'ch2_rdprops_w_spline_pt2194' }, - ['-1114994310'] = { Name = 'ch2_rdprops_w_spline_pt2195' }, - ['-808833543'] = { Name = 'ch2_rdprops_w_spline_pt2196' }, - ['-1479778818'] = { Name = 'ch2_rdprops_w_spline_pt2197' }, - ['1700580791'] = { Name = 'ch2_rdprops_w_spline_pt2200' }, - ['-1826969294'] = { Name = 'ch2_rdprops_w_spline_pt2201' }, - ['560547277'] = { Name = 'ch2_rdprops_w_spline_pt2203' }, - ['-64914626'] = { Name = 'ch2_rdprops_w_spline_pt2207' }, - ['-376941044'] = { Name = 'ch2_rdprops_w_spline_pt2208' }, - ['399454873'] = { Name = 'ch2_rdprops_w_spline_pt2209' }, - ['-196122054'] = { Name = 'ch2_rdprops_w_spline_pt2210' }, - ['96144657'] = { Name = 'ch2_rdprops_w_spline_pt2211' }, - ['-105122457'] = { Name = 'ch2_rdprops_w_spline_pt2212' }, - ['124293312'] = { Name = 'ch2_rdprops_w_spline_pt2213' }, - ['373272174'] = { Name = 'ch2_rdprops_w_spline_pt2214' }, - ['606554685'] = { Name = 'ch2_rdprops_w_spline_pt2215' }, - ['-1517171532'] = { Name = 'ch2_rdprops_w_spline_pt2216' }, - ['-1344478902'] = { Name = 'ch2_rdprops_w_spline_pt2217' }, - ['-583779240'] = { Name = 'ch2_rdprops_w_spline_pt2218' }, - ['-351676413'] = { Name = 'ch2_rdprops_w_spline_pt2219' }, - ['-1784789251'] = { Name = 'ch2_rdprops_w_spline_pt2220' }, - ['1018541072'] = { Name = 'ch2_rdprops_w_spline_pt269b' }, - ['-325624256'] = { Name = 'ch2_rdprops_w_swire_pt2210' }, - ['-1696974137'] = { Name = 'ch2_rdprops_w_swire_pt2211' }, - ['-337532644'] = { Name = 'ch2_rdprops_w_wire_pt2209' }, - ['906445010'] = { Name = 'ch2_rdprops_w_wire_pt2210' }, - ['-397662887'] = { Name = 'ch2_rdprops_w_wire_pt2211' }, - ['-629012027'] = { Name = 'ch2_rdprops_w_wire_pt2212' }, - ['215019106'] = { Name = 'ch2_rdprops_w_wire_pt2213' }, - ['-1553949467'] = { Name = 'ch2_rdprops_wire131' }, - ['-1322174330'] = { Name = 'ch2_rdprops_wire132' }, - ['1614558072'] = { Name = 'ch2_roads_crds_lod_4' }, - ['-1392919560'] = { Name = 'ch2_roads_crds_sg_4' }, - ['-835903823'] = { Name = 'ch2_roads_rd_00' }, - ['-673041893'] = { Name = 'ch2_roads_rd_01' }, - ['-1528116195'] = { Name = 'ch2_roads_rd_02' }, - ['-298197318'] = { Name = 'ch2_roads_rd_06' }, - ['-127995132'] = { Name = 'ch2_roads_rd_07' }, - ['-895674495'] = { Name = 'ch2_roads_rd_08' }, - ['-750180135'] = { Name = 'ch2_roads_rd_09' }, - ['533710165'] = { Name = 'ch2_roads_rd_10' }, - ['1670827230'] = { Name = 'ch2_roads_rd_16' }, - ['289187883'] = { Name = 'ch2_roads_rd_17' }, - ['-1838142832'] = { Name = 'ch2_roads_rd_18' }, - ['-473694006'] = { Name = 'ch2_roads_rd_19_dcl' }, - ['-2016996034'] = { Name = 'ch2_roads_rd_19' }, - ['-12463890'] = { Name = 'ch2_roads_rd_24' }, - ['283866177'] = { Name = 'ch2_roads_rd_25' }, - ['-1915523557'] = { Name = 'ch2_roads_rd_26' }, - ['1461059745'] = { Name = 'ch2_roads_rd_27' }, - ['1777051212'] = { Name = 'ch2_roads_rd_28' }, - ['1421573100'] = { Name = 'ch2_roads_rd_29' }, - ['628499142'] = { Name = 'ch2_roads_rd_30' }, - ['-983571809'] = { Name = 'ch2_roads_rd_39' }, - ['-911808483'] = { Name = 'ch2_roads_rd_40' }, - ['-1742338788'] = { Name = 'ch2_roads_rd_41' }, - ['434309268'] = { Name = 'ch2_roads_rd_42' }, - ['344325582'] = { Name = 'ch2_roads_rd_46' }, - ['-267832107'] = { Name = 'ch2_roads_rd_48' }, - ['1228137485'] = { Name = 'ch2_roads_rd_51' }, - ['1518372518'] = { Name = 'ch2_roads_rd_52' }, - ['362865869'] = { Name = 'ch2_roads_rdrehab' }, - ['-1789138752'] = { Name = 'ch2_roadsa_07' }, - ['-1747946607'] = { Name = 'ch2_roadsa_58' }, - ['-6587591'] = { Name = 'ch2_roadsa_crds_lod_1' }, - ['-1305026447'] = { Name = 'ch2_roadsa_crds_lod_2' }, - ['-507494525'] = { Name = 'ch2_roadsa_crds_lod_3' }, - ['-1768347338'] = { Name = 'ch2_roadsa_crds_lod_4' }, - ['-2066545238'] = { Name = 'ch2_roadsa_crds_lod_5' }, - ['-1726861724'] = { Name = 'ch2_roadsa_crds_lod_6' }, - ['-1999860263'] = { Name = 'ch2_roadsa_crds_lod_7' }, - ['1624682478'] = { Name = 'ch2_roadsa_crds_sg_1' }, - ['-1516717707'] = { Name = 'ch2_roadsa_crds_sg_2' }, - ['2066244753'] = { Name = 'ch2_roadsa_crds_sg_3' }, - ['1348210485'] = { Name = 'ch2_roadsa_crds_sg_4' }, - ['1049258898'] = { Name = 'ch2_roadsa_crds_sg_5' }, - ['1773715950'] = { Name = 'ch2_roadsa_crds_sg_6' }, - ['1602465156'] = { Name = 'ch2_roadsa_crds_sg_7' }, - ['882990490'] = { Name = 'ch2_roadsa_dam' }, - ['-1975996790'] = { Name = 'ch2_roadsa_dcl_rd_join_01' }, - ['383476691'] = { Name = 'ch2_roadsa_junt_dcls_01' }, - ['901892304'] = { Name = 'ch2_roadsa_rd_00' }, - ['1170761949'] = { Name = 'ch2_roadsa_rd_01' }, - ['-78294024'] = { Name = 'ch2_roadsa_rd_03' }, - ['279608994'] = { Name = 'ch2_roadsa_rd_04' }, - ['-525558105'] = { Name = 'ch2_roadsa_rd_05' }, - ['-293258664'] = { Name = 'ch2_roadsa_rd_06' }, - ['173652714'] = { Name = 'ch2_roadsa_rd_060' }, - ['-1303395858'] = { Name = 'ch2_roadsa_rd_07' }, - ['-950309883'] = { Name = 'ch2_roadsa_rd_08' }, - ['1502974115'] = { Name = 'ch2_roadsa_rd_09' }, - ['-1409434410'] = { Name = 'ch2_roadsa_rd_10' }, - ['1085250545'] = { Name = 'ch2_roadsa_rd_100' }, - ['132794873'] = { Name = 'ch2_roadsa_rd_100dcal' }, - ['-1294710141'] = { Name = 'ch2_roadsa_rd_11' }, - ['-1064671761'] = { Name = 'ch2_roadsa_rd_12' }, - ['-2001504702'] = { Name = 'ch2_roadsa_rd_13' }, - ['1457885863'] = { Name = 'ch2_roadsa_rd_14' }, - ['760889225'] = { Name = 'ch2_roadsa_rd_15' }, - ['2072009692'] = { Name = 'ch2_roadsa_rd_16' }, - ['444766682'] = { Name = 'ch2_roadsa_rd_18' }, - ['-525851098'] = { Name = 'ch2_roadsa_rd_19' }, - ['2006667994'] = { Name = 'ch2_roadsa_rd_20' }, - ['-1992690153'] = { Name = 'ch2_roadsa_rd_21' }, - ['1471943452'] = { Name = 'ch2_roadsa_rd_22' }, - ['1006459831'] = { Name = 'ch2_roadsa_rd_24' }, - ['241434757'] = { Name = 'ch2_roadsa_rd_25' }, - ['631844623'] = { Name = 'ch2_roadsa_rd_26' }, - ['-221886134'] = { Name = 'ch2_roadsa_rd_27' }, - ['151287238'] = { Name = 'ch2_roadsa_rd_28' }, - ['-1448593657'] = { Name = 'ch2_roadsa_rd_29' }, - ['-1820358262'] = { Name = 'ch2_roadsa_rd_30' }, - ['2013614742'] = { Name = 'ch2_roadsa_rd_31' }, - ['-1915781590'] = { Name = 'ch2_roadsa_rd_32' }, - ['1551932301'] = { Name = 'ch2_roadsa_rd_33' }, - ['1648600851'] = { Name = 'ch2_roadsa_rd_34' }, - ['796770688'] = { Name = 'ch2_roadsa_rd_35' }, - ['1161555196'] = { Name = 'ch2_roadsa_rd_36' }, - ['260735386'] = { Name = 'ch2_roadsa_rd_37' }, - ['616606726'] = { Name = 'ch2_roadsa_rd_38' }, - ['165312058'] = { Name = 'ch2_roadsa_rd_39' }, - ['-1716677442'] = { Name = 'ch2_roadsa_rd_40' }, - ['1869922381'] = { Name = 'ch2_roadsa_rd_41' }, - ['1638606010'] = { Name = 'ch2_roadsa_rd_42' }, - ['1392084823'] = { Name = 'ch2_roadsa_rd_43' }, - ['1102406887'] = { Name = 'ch2_roadsa_rd_44' }, - ['1023302521'] = { Name = 'ch2_roadsa_rd_45' }, - ['792772606'] = { Name = 'ch2_roadsa_rd_46' }, - ['411210370'] = { Name = 'ch2_roadsa_rd_47' }, - ['-204715754'] = { Name = 'ch2_roadsa_rd_48' }, - ['718649104'] = { Name = 'ch2_roadsa_rd_49' }, - ['1983127468'] = { Name = 'ch2_roadsa_rd_50' }, - ['-1569458133'] = { Name = 'ch2_roadsa_rd_51' }, - ['-1985427819'] = { Name = 'ch2_roadsa_rd_52' }, - ['-1207590066'] = { Name = 'ch2_roadsa_rd_53' }, - ['-1385198046'] = { Name = 'ch2_roadsa_rd_54' }, - ['-785918574'] = { Name = 'ch2_roadsa_rd_55' }, - ['-549948993'] = { Name = 'ch2_roadsa_rd_56' }, - ['-729064347'] = { Name = 'ch2_roadsa_rd_57' }, - ['-364574772'] = { Name = 'ch2_roadsa_rd_59' }, - ['-528718569'] = { Name = 'ch2_roadsb_25' }, - ['-1303508813'] = { Name = 'ch2_roadsb_26' }, - ['-1015370996'] = { Name = 'ch2_roadsb_27' }, - ['-825704024'] = { Name = 'ch2_roadsb_28' }, - ['-766927611'] = { Name = 'ch2_roadsb_30' }, - ['-1953329256'] = { Name = 'ch2_roadsb_33' }, - ['1987831147'] = { Name = 'ch2_roadsb_39' }, - ['-1210719034'] = { Name = 'ch2_roadsb_40' }, - ['-1975350880'] = { Name = 'ch2_roadsb_41' }, - ['-287157534'] = { Name = 'ch2_roadsb_42' }, - ['-9079800'] = { Name = 'ch2_roadsb_43' }, - ['-776529780'] = { Name = 'ch2_roadsb_44' }, - ['-483738765'] = { Name = 'ch2_roadsb_45' }, - ['656687973'] = { Name = 'ch2_roadsb_46' }, - ['949020222'] = { Name = 'ch2_roadsb_47' }, - ['181308090'] = { Name = 'ch2_roadsb_48' }, - ['468987141'] = { Name = 'ch2_roadsb_49' }, - ['1963910393'] = { Name = 'ch2_roadsb_50' }, - ['1243123469'] = { Name = 'ch2_roadsb_51' }, - ['1500720578'] = { Name = 'ch2_roadsb_52' }, - ['-1162678208'] = { Name = 'ch2_roadsb_53' }, - ['-1924655765'] = { Name = 'ch2_roadsb_54' }, - ['-1611253049'] = { Name = 'ch2_roadsb_55' }, - ['-238854560'] = { Name = 'ch2_roadsb_56' }, - ['-199597298'] = { Name = 'ch2_roadsb_57' }, - ['-967735427'] = { Name = 'ch2_roadsb_58' }, - ['-728030192'] = { Name = 'ch2_roadsb_59' }, - ['-1046184125'] = { Name = 'ch2_roadsb_60' }, - ['-1841684369'] = { Name = 'ch2_roadsb_61' }, - ['-485473766'] = { Name = 'ch2_roadsb_62' }, - ['-155883164'] = { Name = 'ch2_roadsb_63' }, - ['-852356562'] = { Name = 'ch2_roadsb_armco_hill_0_lod' }, - ['291268088'] = { Name = 'ch2_roadsb_armco_hill_0' }, - ['2117877180'] = { Name = 'ch2_roadsb_armco_hill1_lod' }, - ['1529399698'] = { Name = 'ch2_roadsb_armco_hill1' }, - ['-2120434820'] = { Name = 'ch2_roadsb_armco_hill1b_lod' }, - ['-1043037955'] = { Name = 'ch2_roadsb_armco_hill1b' }, - ['-1706587030'] = { Name = 'ch2_roadsb_armco_hill2_lod' }, - ['1745281870'] = { Name = 'ch2_roadsb_armco_hill2' }, - ['1801653754'] = { Name = 'ch2_roadsb_armco_hill2a_lod' }, - ['-2103901873'] = { Name = 'ch2_roadsb_armco_hill2a' }, - ['-1841501096'] = { Name = 'ch2_roadsb_crossrd_sign_01' }, - ['-2140911449'] = { Name = 'ch2_roadsb_crossrd_sign_02' }, - ['1855071491'] = { Name = 'ch2_roadsb_crossrd_sign_03' }, - ['-1490952443'] = { Name = 'ch2_roadsb_crossrd_sign_lod_01' }, - ['-1998019949'] = { Name = 'ch2_roadsb_crossrd_sign_lod_02' }, - ['2061174392'] = { Name = 'ch2_roadsb_crossrd_sign_lod_03' }, - ['-1879967994'] = { Name = 'ch2_roadsb_dcl_jn_02' }, - ['210651422'] = { Name = 'ch2_roadsb_dcl_rdsd_04b' }, - ['-96263032'] = { Name = 'ch2_roadsb_dcl_rdsd_04c' }, - ['230509448'] = { Name = 'ch2_roadsb_dcl_rdsd_04h' }, - ['-632306410'] = { Name = 'ch2_roadsb_dcl_rdsd_1' }, - ['935429269'] = { Name = 'ch2_roadsb_ov02' }, - ['1715364238'] = { Name = 'ch2_roadsb_ov03' }, - ['-1352502315'] = { Name = 'ch2_roadsb_ov04' }, - ['-1325026399'] = { Name = 'ch2_roadsb_rd_100' }, - ['-973138672'] = { Name = 'ch2_roadsb_rd_jn_dcl_01' }, - ['-1055977510'] = { Name = 'ch2_roadsb_rd_ov_dcl_01' }, - ['-2048583293'] = { Name = 'ch2_roadsb_rd_ov_dcl_02' }, - ['182112734'] = { Name = 'ch2_roadsb_t_rd_sign_01_lod' }, - ['-848073902'] = { Name = 'ch2_roadsb_t_rd_sign_01' }, - ['-43273422'] = { Name = 'ch2_roadsb_t_rd_sign_02_lod' }, - ['-419294386'] = { Name = 'ch2_roadsb_t_rd_sign_03_lod' }, - ['1474057484'] = { Name = 'ch2_roadsb_t_rd_sign_2' }, - ['-245266400'] = { Name = 'ch2_roadsb_t_rd_sign_3' }, - ['2025331137'] = { Name = 'ch3_01_armco_00' }, - ['-360153756'] = { Name = 'ch3_01_armco_01' }, - ['-733261590'] = { Name = 'ch3_01_armco_02' }, - ['-1260431863'] = { Name = 'ch3_01_ch_coop' }, - ['1044946106'] = { Name = 'ch3_01_ch_coop001' }, - ['-1827422403'] = { Name = 'ch3_01_ch3_1_re_wll_013' }, - ['-2125653072'] = { Name = 'ch3_01_ch3_1_re_wll_014' }, - ['-529107934'] = { Name = 'ch3_01_ch3_1_re_wll_12' }, - ['-1656814265'] = { Name = 'ch3_01_cs5_04_trailerpk_sign' }, - ['1499334548'] = { Name = 'ch3_01_d00' }, - ['-801213101'] = { Name = 'ch3_01_d01' }, - ['-1039050503'] = { Name = 'ch3_01_d02' }, - ['-1367658035'] = { Name = 'ch3_01_d03' }, - ['-1606052510'] = { Name = 'ch3_01_d04' }, - ['-616887480'] = { Name = 'ch3_01_d05' }, - ['217116339'] = { Name = 'ch3_01_d06' }, - ['-653228297'] = { Name = 'ch3_01_d07' }, - ['190180225'] = { Name = 'ch3_01_d08' }, - ['1101322270'] = { Name = 'ch3_01_d09' }, - ['1352791228'] = { Name = 'ch3_01_d10' }, - ['125035105'] = { Name = 'ch3_01_d11' }, - ['-29241347'] = { Name = 'ch3_01_d12' }, - ['1695554972'] = { Name = 'ch3_01_d13' }, - ['-1984469270'] = { Name = 'ch3_01_d14' }, - ['1087984939'] = { Name = 'ch3_01_d15' }, - ['1864446398'] = { Name = 'ch3_01_d16' }, - ['1295085087'] = { Name = 'ch3_01_d17' }, - ['551425401'] = { Name = 'ch3_01_d18' }, - ['1773676336'] = { Name = 'ch3_01_d19' }, - ['360514015'] = { Name = 'ch3_01_d20' }, - ['1863595280'] = { Name = 'ch3_01_d21' }, - ['-2115544394'] = { Name = 'ch3_01_d22' }, - ['1840460386'] = { Name = 'ch3_01_d23' }, - ['2143737481'] = { Name = 'ch3_01_d24' }, - ['-1164161997'] = { Name = 'ch3_01_d25' }, - ['1567330771'] = { Name = 'ch3_01_d26' }, - ['-1795784472'] = { Name = 'ch3_01_d27' }, - ['-1497619341'] = { Name = 'ch3_01_d28' }, - ['41933797'] = { Name = 'ch3_01_d29' }, - ['-1670869304'] = { Name = 'ch3_01_d30' }, - ['111567678'] = { Name = 'ch3_01_d31' }, - ['-148323261'] = { Name = 'ch3_01_d32' }, - ['855292914'] = { Name = 'ch3_01_d33' }, - ['608247423'] = { Name = 'ch3_01_d34' }, - ['-1907559783'] = { Name = 'ch3_01_d35' }, - ['-2121606891'] = { Name = 'ch3_01_d36' }, - ['1771186468'] = { Name = 'ch3_01_d37' }, - ['1540656553'] = { Name = 'ch3_01_d38' }, - ['-981966609'] = { Name = 'ch3_01_d39' }, - ['1103256793'] = { Name = 'ch3_01_d40' }, - ['1352137348'] = { Name = 'ch3_01_d41' }, - ['-695007620'] = { Name = 'ch3_01_d42' }, - ['-455236847'] = { Name = 'ch3_01_d43' }, - ['-83308697'] = { Name = 'ch3_01_d44' }, - ['-1653664715'] = { Name = 'ch3_01_d45' }, - ['-1414811474'] = { Name = 'ch3_01_d46' }, - ['-1356286084'] = { Name = 'ch3_01_d48' }, - ['1383598526'] = { Name = 'ch3_01_d48a' }, - ['1276570950'] = { Name = 'ch3_01_d48zxc' }, - ['-60108525'] = { Name = 'ch3_01_d50' }, - ['-1610442684'] = { Name = 'ch3_01_d52' }, - ['-1253391660'] = { Name = 'ch3_01_d53' }, - ['-997367463'] = { Name = 'ch3_01_d54' }, - ['1501399867'] = { Name = 'ch3_01_d55' }, - ['1807429558'] = { Name = 'ch3_01_d56' }, - ['1507494889'] = { Name = 'ch3_01_d57' }, - ['1805135716'] = { Name = 'ch3_01_d58' }, - ['2089570636'] = { Name = 'ch3_01_d59' }, - ['1043865817'] = { Name = 'ch3_01_d60' }, - ['-1803629203'] = { Name = 'ch3_01_d61' }, - ['-1567528558'] = { Name = 'ch3_01_d62' }, - ['-1671897827'] = { Name = 'ch3_01_d63' }, - ['-1433568890'] = { Name = 'ch3_01_d64' }, - ['-2119424060'] = { Name = 'ch3_01_d65' }, - ['-822328733'] = { Name = 'ch3_01_d66' }, - ['-568205138'] = { Name = 'ch3_01_d67' }, - ['-1281061964'] = { Name = 'ch3_01_d68' }, - ['-1027659287'] = { Name = 'ch3_01_d69' }, - ['1306588710'] = { Name = 'ch3_01_d70' }, - ['-2024893297'] = { Name = 'ch3_01_decal_06' }, - ['-1794101230'] = { Name = 'ch3_01_decal_07' }, - ['-419933215'] = { Name = 'ch3_01_decal_08' }, - ['2049341703'] = { Name = 'ch3_01_decal_12' }, - ['1619019195'] = { Name = 'ch3_01_decal_13' }, - ['-2146040598'] = { Name = 'ch3_01_decal_14' }, - ['-1249284144'] = { Name = 'ch3_01_decal_15' }, - ['-1536701043'] = { Name = 'ch3_01_decal_16' }, - ['-1729744954'] = { Name = 'ch3_01_decal_35' }, - ['1811601764'] = { Name = 'ch3_01_decal_48' }, - ['923297598'] = { Name = 'ch3_01_decas00' }, - ['1897520772'] = { Name = 'ch3_01_decas57' }, - ['-1088635986'] = { Name = 'ch3_01_decsz01' }, - ['1230015015'] = { Name = 'ch3_01_des57' }, - ['-16389381'] = { Name = 'ch3_01_des78' }, - ['-248361132'] = { Name = 'ch3_01_des79' }, - ['1819472970'] = { Name = 'ch3_01_diner_neons001' }, - ['-443021163'] = { Name = 'ch3_01_dino_dec' }, - ['-459878379'] = { Name = 'ch3_01_dino' }, - ['1398341493'] = { Name = 'ch3_01_drtr_01_d' }, - ['1772207445'] = { Name = 'ch3_01_drtr_02_d' }, - ['-1180441976'] = { Name = 'ch3_01_drtr_03_d' }, - ['-964228171'] = { Name = 'ch3_01_drtr_04_d' }, - ['1632760120'] = { Name = 'ch3_01_drtr_05_d' }, - ['31679415'] = { Name = 'ch3_01_drtr_06_d' }, - ['-391696300'] = { Name = 'ch3_01_drtr_07_d' }, - ['1996121181'] = { Name = 'ch3_01_drtr_08_d' }, - ['145036117'] = { Name = 'ch3_01_drtr_09_d' }, - ['-886917328'] = { Name = 'ch3_01_drtr_10_d' }, - ['-1909398563'] = { Name = 'ch3_01_drtr_18_d' }, - ['-1497029861'] = { Name = 'ch3_01_drtr_21_d' }, - ['-1738773812'] = { Name = 'ch3_01_drtr_24_d' }, - ['-1705078174'] = { Name = 'ch3_01_drtr_26_d' }, - ['-1190304996'] = { Name = 'ch3_01_drtr_27_d' }, - ['1931470713'] = { Name = 'ch3_01_drtr_29_d' }, - ['-911175953'] = { Name = 'ch3_01_drtr_30_d' }, - ['1386513203'] = { Name = 'ch3_01_drtr_32_d' }, - ['1771303221'] = { Name = 'ch3_01_drtr_33_d' }, - ['2141176369'] = { Name = 'ch3_01_drtr_34_d' }, - ['-1220299228'] = { Name = 'ch3_01_drtr_35_d' }, - ['-770949242'] = { Name = 'ch3_01_drtr00' }, - ['151137649'] = { Name = 'ch3_01_drtr05' }, - ['1048320076'] = { Name = 'ch3_01_drtr06' }, - ['1714644922'] = { Name = 'ch3_01_drtr07' }, - ['1353301159'] = { Name = 'ch3_01_drtr09' }, - ['-618374738'] = { Name = 'ch3_01_drtr10' }, - ['-325321571'] = { Name = 'ch3_01_drtr11' }, - ['-1112465720'] = { Name = 'ch3_01_drtr12' }, - ['-923781818'] = { Name = 'ch3_01_drtr13' }, - ['-1710336125'] = { Name = 'ch3_01_drtr14' }, - ['1936722503'] = { Name = 'ch3_01_drtr15' }, - ['-2070303590'] = { Name = 'ch3_01_drtr16' }, - ['1339179788'] = { Name = 'ch3_01_drtr17' }, - ['1629808049'] = { Name = 'ch3_01_drtr18' }, - ['981506153'] = { Name = 'ch3_01_drtr19' }, - ['-1135633683'] = { Name = 'ch3_01_drtr20' }, - ['692503988'] = { Name = 'ch3_01_emm_01_lod' }, - ['-1794841982'] = { Name = 'ch3_01_emm_01' }, - ['295506266'] = { Name = 'ch3_01_emm_02_lod' }, - ['1281478973'] = { Name = 'ch3_01_emm_02' }, - ['-64570259'] = { Name = 'ch3_01_emm_03_lod' }, - ['1048196462'] = { Name = 'ch3_01_emm_03' }, - ['1725895358'] = { Name = 'ch3_01_emm_04_lod' }, - ['-77287628'] = { Name = 'ch3_01_emm_04' }, - ['-1108180689'] = { Name = 'ch3_01_emm_05_lod' }, - ['160189315'] = { Name = 'ch3_01_emm_05' }, - ['-408750841'] = { Name = 'ch3_01_garage' }, - ['-1397043697'] = { Name = 'ch3_01_land03b' }, - ['-684445025'] = { Name = 'ch3_01_land04' }, - ['-569393066'] = { Name = 'ch3_01_land07' }, - ['472267906'] = { Name = 'ch3_01_land08' }, - ['652137363'] = { Name = 'ch3_01_land11' }, - ['-1339693533'] = { Name = 'ch3_01_land13' }, - ['2102329462'] = { Name = 'ch3_01_land14' }, - ['-342369018'] = { Name = 'ch3_01_land15' }, - ['1730335774'] = { Name = 'ch3_01_land16' }, - ['1964666893'] = { Name = 'ch3_01_land17' }, - ['1419620116'] = { Name = 'ch3_01_land19' }, - ['247676530'] = { Name = 'ch3_01_lardnod03' }, - ['1274719379'] = { Name = 'ch3_01_missing' }, - ['181110749'] = { Name = 'ch3_01_missing01' }, - ['-218671055'] = { Name = 'ch3_01_missing02' }, - ['-506776043'] = { Name = 'ch3_01_missing03' }, - ['-1315351118'] = { Name = 'ch3_01_missing04' }, - ['20100032'] = { Name = 'ch3_01_props_ch3_01_d91' }, - ['-1623263954'] = { Name = 'ch3_01_rexfrees' }, - ['2032597075'] = { Name = 'ch3_01_rs_gnd_dec' }, - ['1509469088'] = { Name = 'ch3_01_rs_hos1a_rdbr' }, - ['783524701'] = { Name = 'ch3_01_rs_hos1a_rl' }, - ['234389807'] = { Name = 'ch3_01_rs_hos1a' }, - ['541664720'] = { Name = 'ch3_01_rs_hos1b' }, - ['-1863235193'] = { Name = 'ch3_01_rs_shp1a' }, - ['-1498254071'] = { Name = 'ch3_01_rs_shp1b' }, - ['-1461393084'] = { Name = 'ch3_01_rs_trlr2b' }, - ['-1459946907'] = { Name = 'ch3_01_tmp_trailr_014' }, - ['-1693098342'] = { Name = 'ch3_01_tmp_trailr_015' }, - ['-790613227'] = { Name = 'ch3_01_tmp_trailr_016_strs' }, - ['-2055785634'] = { Name = 'ch3_01_tmp_trailr_016' }, - ['-963480632'] = { Name = 'ch3_01_tmp_trailr_017_strs' }, - ['2005571461'] = { Name = 'ch3_01_tmp_trailr_017' }, - ['181943826'] = { Name = 'ch3_01_tmp_trailr_019' }, - ['1414680629'] = { Name = 'ch3_01_tmp_trailr_020' }, - ['-1589056983'] = { Name = 'ch3_01_tmp_trailr_023' }, - ['492233279'] = { Name = 'ch3_01_tmp_trailr_024' }, - ['1770714391'] = { Name = 'ch3_01_trail_14o' }, - ['-1954801927'] = { Name = 'ch3_01_trail_16o' }, - ['1615970845'] = { Name = 'ch3_01_trail_17o' }, - ['905831421'] = { Name = 'ch3_01_trail004_strs' }, - ['1436461041'] = { Name = 'ch3_01_trail004_strsa' }, - ['861277346'] = { Name = 'ch3_01_trail004' }, - ['74640178'] = { Name = 'ch3_01_trailr_13' }, - ['1541236987'] = { Name = 'ch3_01_trailr_13o' }, - ['-150954645'] = { Name = 'ch3_01_trailr_15o' }, - ['977601590'] = { Name = 'ch3_01_trlr_bits004' }, - ['1268033237'] = { Name = 'ch3_01_trlr_bits005' }, - ['1498563152'] = { Name = 'ch3_01_trlr_bits006' }, - ['1880190926'] = { Name = 'ch3_01_trlr_bits007' }, - ['1806367075'] = { Name = 'ch3_01_trlr_g' }, - ['-717674599'] = { Name = 'ch3_01_trlrinner_int' }, - ['-2094269503'] = { Name = 'ch3_01_wf_l01' }, - ['1197900855'] = { Name = 'ch3_01_wf_l02' }, - ['1455891192'] = { Name = 'ch3_01_wf_l03' }, - ['-1391865988'] = { Name = 'ch3_01_wf_l04' }, - ['1761525052'] = { Name = 'ch3_01_wf_off01' }, - ['2122845687'] = { Name = 'ch3_01_wf_prts01' }, - ['87144653'] = { Name = 'ch3_01_windmill_01' }, - ['1794901092'] = { Name = 'ch3_01_windmill_02' }, - ['1504993745'] = { Name = 'ch3_01_windmill_03' }, - ['1332956495'] = { Name = 'ch3_01_windmill_04' }, - ['1043376842'] = { Name = 'ch3_01_windmill_05' }, - ['-1698503667'] = { Name = 'ch3_01_windmill_06' }, - ['-1459060584'] = { Name = 'ch3_01_windmill_07' }, - ['-1086345978'] = { Name = 'ch3_01_windmill_08' }, - ['-847361661'] = { Name = 'ch3_01_windmill_09' }, - ['-453705132'] = { Name = 'ch3_01_windmill_10' }, - ['-71815206'] = { Name = 'ch3_01_windmill_11' }, - ['142788975'] = { Name = 'ch3_01_windmill_12' }, - ['509277471'] = { Name = 'ch3_01_windmill_13' }, - ['-1640008458'] = { Name = 'ch3_01_windmill_14' }, - ['748949937'] = { Name = 'ch3_01_windmill_15' }, - ['-1091200917'] = { Name = 'ch3_02_adboard' }, - ['-2110185488'] = { Name = 'ch3_02_decs00' }, - ['1132419315'] = { Name = 'ch3_02_decs00b' }, - ['-1428492105'] = { Name = 'ch3_02_decs06' }, - ['75867151'] = { Name = 'ch3_02_decs08' }, - ['420533629'] = { Name = 'ch3_02_decs10' }, - ['-537304233'] = { Name = 'ch3_02_decs14' }, - ['702117646'] = { Name = 'ch3_02_decs15' }, - ['69217180'] = { Name = 'ch3_02_decs16' }, - ['-1690576419'] = { Name = 'ch3_02_decs17' }, - ['-1394770656'] = { Name = 'ch3_02_decs18' }, - ['-1313372460'] = { Name = 'ch3_02_decs19' }, - ['-1983366526'] = { Name = 'ch3_02_decs21' }, - ['345853998'] = { Name = 'ch3_02_decs29' }, - ['1953173116'] = { Name = 'ch3_02_decs30' }, - ['-1171383807'] = { Name = 'ch3_02_decs31' }, - ['-370673292'] = { Name = 'ch3_02_decs32' }, - ['-127395140'] = { Name = 'ch3_02_land00' }, - ['-508498690'] = { Name = 'ch3_02_land04' }, - ['-1980923288'] = { Name = 'ch3_02_lnd06' }, - ['786600103'] = { Name = 'ch3_02_mesh234' }, - ['-504436375'] = { Name = 'ch3_02_meshes1' }, - ['1650523743'] = { Name = 'ch3_02_section1' }, - ['1679143424'] = { Name = 'ch3_03_bb_02_rock_slod' }, - ['1033487903'] = { Name = 'ch3_03_bb_02_rock' }, - ['-693926862'] = { Name = 'ch3_03_bb_fracking' }, - ['1054554446'] = { Name = 'ch3_03_bb3_robot' }, - ['1131686650'] = { Name = 'ch3_03_bb4_pop' }, - ['279501427'] = { Name = 'ch3_03_ch_03_bb_01' }, - ['-267798493'] = { Name = 'ch3_03_cliffrocks01' }, - ['96068483'] = { Name = 'ch3_03_cliffrocks02' }, - ['637954506'] = { Name = 'ch3_03_cliffrocks03a' }, - ['-1165004155'] = { Name = 'ch3_03_cliffrocks03b_lod' }, - ['-752106474'] = { Name = 'ch3_03_cliffrocks03b' }, - ['702639592'] = { Name = 'ch3_03_cliffrocks04a' }, - ['-1075504655'] = { Name = 'ch3_03_cliffrocks04b' }, - ['-1367870838'] = { Name = 'ch3_03_col' }, - ['-976425983'] = { Name = 'ch3_03_crashbar_01' }, - ['-1339899731'] = { Name = 'ch3_03_crashbar_02' }, - ['-1651860611'] = { Name = 'ch3_03_crashbar_03' }, - ['-1882980376'] = { Name = 'ch3_03_crashbar_04' }, - ['250117687'] = { Name = 'ch3_03_crashbar_05' }, - ['-109423781'] = { Name = 'ch3_03_crashbar_06' }, - ['-363678452'] = { Name = 'ch3_03_crashbar_07' }, - ['-727873118'] = { Name = 'ch3_03_crashbar_08' }, - ['874891437'] = { Name = 'ch3_03_crashbar_09' }, - ['580069028'] = { Name = 'ch3_03_crashbar_10' }, - ['1965322261'] = { Name = 'ch3_03_dcl_rd_jn_01' }, - ['-412819699'] = { Name = 'ch3_03_decal002' }, - ['-1616034425'] = { Name = 'ch3_03_decal002j' }, - ['141173035'] = { Name = 'ch3_03_decal003' }, - ['-472426490'] = { Name = 'ch3_03_decal005' }, - ['-950001896'] = { Name = 'ch3_03_decal007' }, - ['-984395473'] = { Name = 'ch3_03_decal007a' }, - ['-375515838'] = { Name = 'ch3_03_decal916' }, - ['549646061'] = { Name = 'ch3_03_decalbots' }, - ['-1461689615'] = { Name = 'ch3_03_decrt5467' }, - ['-1386659418'] = { Name = 'ch3_03_dusche_bb_slod' }, - ['-1419945503'] = { Name = 'ch3_03_dusche_bb' }, - ['-327588061'] = { Name = 'ch3_03_edgedecal01' }, - ['-547992355'] = { Name = 'ch3_03_edgedecal02' }, - ['149594121'] = { Name = 'ch3_03_edgedecal03' }, - ['-74513070'] = { Name = 'ch3_03_edgedecal04' }, - ['333745760'] = { Name = 'ch3_03_emissign_01_lod' }, - ['359602489'] = { Name = 'ch3_03_emissign_01' }, - ['-213667375'] = { Name = 'ch3_03_foamwet01' }, - ['916469897'] = { Name = 'ch3_03_foamwet02' }, - ['508954613'] = { Name = 'ch3_03_foamwet03' }, - ['-1826918014'] = { Name = 'ch3_03_foamwet04' }, - ['97869483'] = { Name = 'ch3_03_forecrta_decal2' }, - ['-96773457'] = { Name = 'ch3_03_forecrta' }, - ['141326097'] = { Name = 'ch3_03_forecrtb' }, - ['-2125870517'] = { Name = 'ch3_03_garage_rd_jn_01' }, - ['1939025630'] = { Name = 'ch3_03_garage_rd_jn_02' }, - ['727727697'] = { Name = 'ch3_03_glue_01' }, - ['-804190284'] = { Name = 'ch3_03_glue_03' }, - ['-940214435'] = { Name = 'ch3_03_glue_05' }, - ['2117166038'] = { Name = 'ch3_03_glue_06' }, - ['-427758462'] = { Name = 'ch3_03_land01' }, - ['-179336665'] = { Name = 'ch3_03_land02' }, - ['184661387'] = { Name = 'ch3_03_land03' }, - ['-1416989030'] = { Name = 'ch3_03_land04' }, - ['-574170350'] = { Name = 'ch3_03_land07' }, - ['-2113971040'] = { Name = 'ch3_03_lands01' }, - ['1562114369'] = { Name = 'ch3_03_lands015' }, - ['-1714818292'] = { Name = 'ch3_03_lands01a' }, - ['1504218323'] = { Name = 'ch3_03_lands13' }, - ['1098805721'] = { Name = 'ch3_03_lands15_decal' }, - ['1976780072'] = { Name = 'ch3_03_lands15' }, - ['-1597315095'] = { Name = 'ch3_03_lands15j_decal' }, - ['-1591545735'] = { Name = 'ch3_03_lands15j' }, - ['-1343877633'] = { Name = 'ch3_03_lands15k' }, - ['-1990134710'] = { Name = 'ch3_03_landsj5_decal2' }, - ['-1281775003'] = { Name = 'ch3_03_landsj5' }, - ['1643616742'] = { Name = 'ch3_03_log_01' }, - ['1868477620'] = { Name = 'ch3_03_log_02' }, - ['-1995958129'] = { Name = 'ch3_03_new_gasroof' }, - ['1151673302'] = { Name = 'ch3_03_new_gassign' }, - ['850679507'] = { Name = 'ch3_03_overlays01b' }, - ['125987237'] = { Name = 'ch3_03_overlays04' }, - ['-1033150600'] = { Name = 'ch3_03_overlays07' }, - ['267368927'] = { Name = 'ch3_03_overlays3401' }, - ['-1998993600'] = { Name = 'ch3_03_overlays912' }, - ['1863653146'] = { Name = 'ch3_03_overlays912a' }, - ['-924694356'] = { Name = 'ch3_03_overlays924' }, - ['-1432140528'] = { Name = 'ch3_03_overlays924a' }, - ['-767013267'] = { Name = 'ch3_03_overly00' }, - ['-528356640'] = { Name = 'ch3_03_overly01' }, - ['1195325521'] = { Name = 'ch3_03_overly02' }, - ['1442928085'] = { Name = 'ch3_03_overly03' }, - ['825093946'] = { Name = 'ch3_03_ovrpss' }, - ['1037158866'] = { Name = 'ch3_03_ps_backwall001_rl01' }, - ['771435045'] = { Name = 'ch3_03_ps_backwall001_rl02' }, - ['1492877337'] = { Name = 'ch3_03_ps_backwall001_rl03' }, - ['294391895'] = { Name = 'ch3_03_ps_backwall001' }, - ['1029035200'] = { Name = 'ch3_03_ps_backwall002_rl01' }, - ['684239782'] = { Name = 'ch3_03_ps_backwall002_rl02' }, - ['453152794'] = { Name = 'ch3_03_ps_backwall002_rl03' }, - ['-2117018227'] = { Name = 'ch3_03_ps_backwall002_rl04' }, - ['140115443'] = { Name = 'ch3_03_ps_backwall002' }, - ['-1647056125'] = { Name = 'ch3_03_ps_backwall003_rl01' }, - ['-2076854329'] = { Name = 'ch3_03_ps_backwall003_rl02' }, - ['56374750'] = { Name = 'ch3_03_ps_backwall003_rl03' }, - ['-166962856'] = { Name = 'ch3_03_ps_backwall003' }, - ['158661763'] = { Name = 'ch3_03_ps_overpass1' }, - ['-1696358554'] = { Name = 'ch3_03_ps_overpass2' }, - ['-1525369912'] = { Name = 'ch3_03_ps_overpass3' }, - ['-1232120131'] = { Name = 'ch3_03_ps_overpass4' }, - ['-1191683189'] = { Name = 'ch3_03_ps_overpass5' }, - ['-572886397'] = { Name = 'ch3_03_ps_pwr_d' }, - ['-516449021'] = { Name = 'ch3_03_ps_pwr' }, - ['932921184'] = { Name = 'ch3_03_rail1' }, - ['629665065'] = { Name = 'ch3_03_rail10' }, - ['-1206173594'] = { Name = 'ch3_03_rail2' }, - ['-902503271'] = { Name = 'ch3_03_rail3' }, - ['-593557139'] = { Name = 'ch3_03_rail4' }, - ['-293098178'] = { Name = 'ch3_03_rail5' }, - ['2013184042'] = { Name = 'ch3_03_rail6' }, - ['-1976802171'] = { Name = 'ch3_03_rail7' }, - ['-1667724959'] = { Name = 'ch3_03_rail8' }, - ['-1362285110'] = { Name = 'ch3_03_rail9' }, - ['249736419'] = { Name = 'ch3_03_rd_trn_dcl_01' }, - ['-2014343539'] = { Name = 'ch3_03_righteousslaughter' }, - ['-1510513724'] = { Name = 'ch3_03_road_decal' }, - ['1648298689'] = { Name = 'ch3_03_road_decal01' }, - ['706878088'] = { Name = 'ch3_03_road_decal02' }, - ['-2140420326'] = { Name = 'ch3_03_road_decal03' }, - ['960739531'] = { Name = 'ch3_03_road_decal05' }, - ['1431994138'] = { Name = 'ch3_03_roadsidedecal1' }, - ['1520932810'] = { Name = 'ch3_03_rr_decal03' }, - ['1700048164'] = { Name = 'ch3_03_rr_decal04' }, - ['792805630'] = { Name = 'ch3_03_rr_decal05' }, - ['-1226303190'] = { Name = 'ch3_03_rr_decal05b' }, - ['1067704771'] = { Name = 'ch3_03_rr_decal06' }, - ['1454054012'] = { Name = 'ch3_03_rsl_mr_bb' }, - ['1904991912'] = { Name = 'ch3_03_rsl_mr_bb2' }, - ['-936452081'] = { Name = 'ch3_03_rsl_mr_bb3_lod' }, - ['548257005'] = { Name = 'ch3_03_rsl_mr_bb3' }, - ['-1709206964'] = { Name = 'ch3_03_sea_end00' }, - ['-1478906432'] = { Name = 'ch3_03_sea_end01' }, - ['193951010'] = { Name = 'ch3_03_sea_end02' }, - ['423039089'] = { Name = 'ch3_03_sea_end03' }, - ['-278086435'] = { Name = 'ch3_03_sea_end04' }, - ['11231066'] = { Name = 'ch3_03_sea_end05' }, - ['1804875054'] = { Name = 'ch3_03_sea_end06' }, - ['2041565541'] = { Name = 'ch3_03_sea_end07' }, - ['535896426'] = { Name = 'ch3_03_sea_uw_decals00' }, - ['-119123123'] = { Name = 'ch3_03_sea_uw_decals01' }, - ['55601185'] = { Name = 'ch3_03_sea_uw_decals02' }, - ['1223947115'] = { Name = 'ch3_03_sea_uw_decals03' }, - ['1527158672'] = { Name = 'ch3_03_sea_uw_decals04' }, - ['740571596'] = { Name = 'ch3_03_sea_uw_decals05' }, - ['1048305275'] = { Name = 'ch3_03_sea_uw_decals06' }, - ['2140233893'] = { Name = 'ch3_03_sea_uw_decals07' }, - ['-1847458490'] = { Name = 'ch3_03_sea_uw_decals08' }, - ['1796945849'] = { Name = 'ch3_03_sea_uw_decals09' }, - ['916967991'] = { Name = 'ch3_03_sea_uw_decals10' }, - ['194280457'] = { Name = 'ch3_03_sea_uw_decals11' }, - ['-614622308'] = { Name = 'ch3_03_sea_uw_decals12' }, - ['239206760'] = { Name = 'ch3_03_sea_uw_decals13' }, - ['737230022'] = { Name = 'ch3_03_sea_uw_decals14' }, - ['819414674'] = { Name = 'ch3_03_sea_uw_decals15' }, - ['1083041279'] = { Name = 'ch3_03_sea_uw_decals16' }, - ['1463653214'] = { Name = 'ch3_03_sea_uw_decals17' }, - ['-1261089140'] = { Name = 'ch3_03_sea_uw_decals18' }, - ['-2033039773'] = { Name = 'ch3_03_sea_uw1_00_lod' }, - ['746287555'] = { Name = 'ch3_03_sea_uw1_00' }, - ['-892227983'] = { Name = 'ch3_03_sea_uw1_01' }, - ['1697211142'] = { Name = 'ch3_03_sea_uw1_04' }, - ['-204799901'] = { Name = 'ch3_03_sea_uw1_05' }, - ['2100138766'] = { Name = 'ch3_03_sea_uw1_06' }, - ['-1887422541'] = { Name = 'ch3_03_sea_uw1_07' }, - ['939591862'] = { Name = 'ch3_03_sea_uw1_09' }, - ['376207490'] = { Name = 'ch3_03_sea_uw1_12_lod' }, - ['1013716816'] = { Name = 'ch3_03_sea_uw1_12' }, - ['1176251056'] = { Name = 'ch3_03_sea_uw1_13' }, - ['-1865053371'] = { Name = 'ch3_03_sea_uw1_14_lod' }, - ['-444208767'] = { Name = 'ch3_03_sea_uw1_14' }, - ['1944452463'] = { Name = 'ch3_03_sea_uw1_15_lod' }, - ['-144667338'] = { Name = 'ch3_03_sea_uw1_15' }, - ['-189205886'] = { Name = 'ch3_03_sea_uw1_16_lod' }, - ['19570890'] = { Name = 'ch3_03_sea_uw1_16' }, - ['-94178384'] = { Name = 'ch3_03_sea_uw1_17_lod' }, - ['318391401'] = { Name = 'ch3_03_sea_uw1_17' }, - ['2032051392'] = { Name = 'ch3_03_sea_uw1_18_lod' }, - ['-1359971241'] = { Name = 'ch3_03_sea_uw1_18' }, - ['-768526784'] = { Name = 'ch3_03_sea_uw1_19_lod' }, - ['-1069211904'] = { Name = 'ch3_03_sea_uw1_19' }, - ['-701863975'] = { Name = 'ch3_03_sea_uw1_20_lod' }, - ['1095705166'] = { Name = 'ch3_03_sea_uw1_20' }, - ['-460211301'] = { Name = 'ch3_03_servrd_01' }, - ['-1583434746'] = { Name = 'ch3_03_servrd_02' }, - ['-1807541937'] = { Name = 'ch3_03_servrd_03' }, - ['-2038399542'] = { Name = 'ch3_03_servrd_04' }, - ['1757299270'] = { Name = 'ch3_03_servrd_05' }, - ['1525982899'] = { Name = 'ch3_03_servrd_06' }, - ['1301777401'] = { Name = 'ch3_03_servrd_07' }, - ['803885211'] = { Name = 'ch3_03_servrd_08' }, - ['564835356'] = { Name = 'ch3_03_servrd_09' }, - ['721967027'] = { Name = 'ch3_03_servrd_10' }, - ['877488701'] = { Name = 'ch3_03_servrd_11' }, - ['124850309'] = { Name = 'ch3_03_servrd_12' }, - ['-2031903636'] = { Name = 'ch3_03_sgn_sanfwy_002' }, - ['-705455087'] = { Name = 'ch3_03_sgn_sanfwy_01_lod001' }, - ['-2052361554'] = { Name = 'ch3_03_sign_fiz' }, - ['945624980'] = { Name = 'ch3_03_sign1_fiz' }, - ['-916439545'] = { Name = 'ch3_03_ss_brand' }, - ['1971310077'] = { Name = 'ch3_03_ss_bs_d' }, - ['685428068'] = { Name = 'ch3_03_ss_cb_d' }, - ['1245023507'] = { Name = 'ch3_03_ss_cb' }, - ['460089520'] = { Name = 'ch3_03_ss_emiss02_lod' }, - ['1332999826'] = { Name = 'ch3_03_ss_emiss02' }, - ['530436584'] = { Name = 'ch3_03_ss_emiss03_lod' }, - ['-584216057'] = { Name = 'ch3_03_ss_emiss03' }, - ['-558124950'] = { Name = 'ch3_03_ss_outerwall1' }, - ['-1822287432'] = { Name = 'ch3_03_ss_outerwall2' }, - ['-1006591534'] = { Name = 'ch3_03_ss_shop' }, - ['-633638532'] = { Name = 'ch3_03_ss_shops' }, - ['-1359605515'] = { Name = 'ch3_03_ss_shopsdecal' }, - ['-2063352878'] = { Name = 'ch3_03_ssbigsign_d' }, - ['1855581911'] = { Name = 'ch3_03_ssbigsign_d004' }, - ['495728312'] = { Name = 'ch3_03_ssbigsign' }, - ['-1207029550'] = { Name = 'ch3_03_ssbigsign004' }, - ['-290944355'] = { Name = 'ch3_03_weed_01' }, - ['-747940833'] = { Name = 'ch3_03_weed_02' }, - ['-102220465'] = { Name = 'ch3_03sliprdsswall01' }, - ['846278228'] = { Name = 'ch3_03sliprdsswall02' }, - ['1085852387'] = { Name = 'ch3_03sliprdsswall03' }, - ['-1657699357'] = { Name = 'ch3_03sliprdsswall04' }, - ['-1298354503'] = { Name = 'ch3_03sliprdsswall05' }, - ['226092146'] = { Name = 'ch3_03sliprdsswall07' }, - ['-1391716915'] = { Name = 'ch3_04_barrier_01' }, - ['-912273676'] = { Name = 'ch3_04_barrier_03' }, - ['-683840977'] = { Name = 'ch3_04_barrier_04' }, - ['1173769175'] = { Name = 'ch3_04_cave' }, - ['1454512429'] = { Name = 'ch3_04_cs_destarmactrack1_001' }, - ['-2064550485'] = { Name = 'ch3_04_cs_destarmactrack1_002' }, - ['-1165336352'] = { Name = 'ch3_04_cs_destarmactrack1_003' }, - ['1774567252'] = { Name = 'ch3_04_cs_destarmactrack1_004' }, - ['570371327'] = { Name = 'ch3_04_d00' }, - ['-1610700540'] = { Name = 'ch3_04_d01' }, - ['-1908374136'] = { Name = 'ch3_04_d02' }, - ['176389640'] = { Name = 'ch3_04_d03' }, - ['-121513339'] = { Name = 'ch3_04_d04' }, - ['1519984182'] = { Name = 'ch3_04_d05' }, - ['-925861213'] = { Name = 'ch3_04_d06' }, - ['-1224255727'] = { Name = 'ch3_04_d07' }, - ['-1521437788'] = { Name = 'ch3_04_d08' }, - ['294882344'] = { Name = 'ch3_04_d09' }, - ['-156248135'] = { Name = 'ch3_04_d10' }, - ['-522015713'] = { Name = 'ch3_04_d11' }, - ['-820442996'] = { Name = 'ch3_04_d12' }, - ['-945391189'] = { Name = 'ch3_04_d13' }, - ['1559077947'] = { Name = 'ch3_04_d14' }, - ['-1543982512'] = { Name = 'ch3_04_d15' }, - ['-74988104'] = { Name = 'ch3_04_d155678' }, - ['-1707237670'] = { Name = 'ch3_04_d16' }, - ['1146254053'] = { Name = 'ch3_04_d18' }, - ['343163332'] = { Name = 'ch3_04_d181234' }, - ['1311021914'] = { Name = 'ch3_04_d18a23' }, - ['1863567467'] = { Name = 'ch3_04_d19' }, - ['1639440612'] = { Name = 'ch3_04_d20' }, - ['1399407687'] = { Name = 'ch3_04_d21' }, - ['1176971715'] = { Name = 'ch3_04_d22' }, - ['939756924'] = { Name = 'ch3_04_d23' }, - ['1399866449'] = { Name = 'ch3_04_d27' }, - ['478205847'] = { Name = 'ch3_04_d30' }, - ['707425002'] = { Name = 'ch3_04_d31' }, - ['-413274798'] = { Name = 'ch3_04_d32' }, - ['-172979721'] = { Name = 'ch3_04_d33' }, - ['1568856474'] = { Name = 'ch3_04_d34' }, - ['22670690'] = { Name = 'ch3_04_d35_lod' }, - ['1656742932'] = { Name = 'ch3_04_d35' }, - ['955650177'] = { Name = 'ch3_04_d36' }, - ['590778974'] = { Name = 'ch3_04_d37_lod' }, - ['1312570125'] = { Name = 'ch3_04_d37' }, - ['1987447684'] = { Name = 'ch3_04_d38' }, - ['-985421714'] = { Name = 'ch3_04_d39_lod' }, - ['-1682483706'] = { Name = 'ch3_04_d39' }, - ['-1319298843'] = { Name = 'ch3_04_d399' }, - ['2106867124'] = { Name = 'ch3_04_d39x_lod' }, - ['1301401948'] = { Name = 'ch3_04_d39x' }, - ['524940403'] = { Name = 'ch3_04_d43_lod' }, - ['954736405'] = { Name = 'ch3_04_d43' }, - ['1898516430'] = { Name = 'ch3_04_d44' }, - ['-293772351'] = { Name = 'ch3_04_d45_lod' }, - ['-1719771016'] = { Name = 'ch3_04_d45' }, - ['-238126356'] = { Name = 'ch3_04_d46_lod' }, - ['1689614051'] = { Name = 'ch3_04_d46' }, - ['1156094459'] = { Name = 'ch3_04_d47a' }, - ['838890543'] = { Name = 'ch3_04_d47b' }, - ['1523011104'] = { Name = 'ch3_04_d47b1' }, - ['540070032'] = { Name = 'ch3_04_d47c' }, - ['-1203855880'] = { Name = 'ch3_04_d48' }, - ['1080566129'] = { Name = 'ch3_04_d99' }, - ['-1585601263'] = { Name = 'ch3_04_decal_1799' }, - ['-212656588'] = { Name = 'ch3_04_decal02' }, - ['1551495296'] = { Name = 'ch3_04_decal03' }, - ['1339643711'] = { Name = 'ch3_04_decal04' }, - ['-1319626177'] = { Name = 'ch3_04_decal05' }, - ['-680762749'] = { Name = 'ch3_04_emissive_01_hd' }, - ['165246618'] = { Name = 'ch3_04_emissive_02_hd' }, - ['59759118'] = { Name = 'ch3_04_emissive_03_hd' }, - ['-1422167402'] = { Name = 'ch3_04_emissive_slod' }, - ['-1434869588'] = { Name = 'ch3_04_extra01' }, - ['2009480006'] = { Name = 'ch3_04_extra02' }, - ['2013941561'] = { Name = 'ch3_04_fence01' }, - ['1533064700'] = { Name = 'ch3_04_fencesigns_a_lod' }, - ['471746425'] = { Name = 'ch3_04_fencesigns_b_lod' }, - ['-1959487685'] = { Name = 'ch3_04_foamwet_01' }, - ['2104851389'] = { Name = 'ch3_04_foamwet_02' }, - ['1853808080'] = { Name = 'ch3_04_foamwet_03' }, - ['523798308'] = { Name = 'ch3_04_govbweeds' }, - ['-1116641119'] = { Name = 'ch3_04_govdec_00' }, - ['-1892512732'] = { Name = 'ch3_04_govdec_01' }, - ['-486984788'] = { Name = 'ch3_04_govdec_02' }, - ['-1261611175'] = { Name = 'ch3_04_govdec_03' }, - ['50230198'] = { Name = 'ch3_04_govdec_04' }, - ['-725838029'] = { Name = 'ch3_04_govdec_05' }, - ['644627089'] = { Name = 'ch3_04_govdec_06' }, - ['-128098700'] = { Name = 'ch3_04_govdec_07' }, - ['803884429'] = { Name = 'ch3_04_govdec_08' }, - ['967598353'] = { Name = 'ch3_04_govdec_09' }, - ['-303969051'] = { Name = 'ch3_04_govdec_10' }, - ['-611702730'] = { Name = 'ch3_04_govdec_11' }, - ['-902036070'] = { Name = 'ch3_04_govdec_12' }, - ['-1211146019'] = { Name = 'ch3_04_govdec_13' }, - ['-1449606032'] = { Name = 'ch3_04_govdec_14' }, - ['-1749671765'] = { Name = 'ch3_04_govdec_15' }, - ['-1761927371'] = { Name = 'ch3_04_govdec_16' }, - ['-2060354654'] = { Name = 'ch3_04_govdec_17' }, - ['1921996382'] = { Name = 'ch3_04_govdec_18' }, - ['1307381018'] = { Name = 'ch3_04_govdec_19' }, - ['1162902177'] = { Name = 'ch3_04_govdec_20' }, - ['883284300'] = { Name = 'ch3_04_govdec_21' }, - ['585938394'] = { Name = 'ch3_04_govdec_22' }, - ['272306295'] = { Name = 'ch3_04_govdec_23' }, - ['-26546985'] = { Name = 'ch3_04_govdec_24' }, - ['-306427014'] = { Name = 'ch3_04_govdec_25' }, - ['-604690452'] = { Name = 'ch3_04_govdec_26' }, - ['-918584703'] = { Name = 'ch3_04_govdec_27' }, - ['-1280387204'] = { Name = 'ch3_04_govdec_28' }, - ['-1570425623'] = { Name = 'ch3_04_govdec_29' }, - ['1356183619'] = { Name = 'ch3_04_govdec_30' }, - ['1125784780'] = { Name = 'ch3_04_govdec_31' }, - ['1712415418'] = { Name = 'ch3_04_govdec_32' }, - ['1481426737'] = { Name = 'ch3_04_govdec_33' }, - ['2074938865'] = { Name = 'ch3_04_govdec_34' }, - ['-190757213'] = { Name = 'ch3_04_ground2_step1' }, - ['780122727'] = { Name = 'ch3_04_ground2_step2' }, - ['-698643944'] = { Name = 'ch3_04_ground2_step3' }, - ['1417990870'] = { Name = 'ch3_04_inlet001' }, - ['693697663'] = { Name = 'ch3_04_inlet005' }, - ['-1214605064'] = { Name = 'ch3_04_inlet006' }, - ['1052156330'] = { Name = 'ch3_04_inlet1' }, - ['1820196152'] = { Name = 'ch3_04_inlet2' }, - ['1521441179'] = { Name = 'ch3_04_inlet3' }, - ['-1007569238'] = { Name = 'ch3_04_inlet3dd_straybit' }, - ['1432142059'] = { Name = 'ch3_04_inlet3dd' }, - ['-2021607620'] = { Name = 'ch3_04_isledec1_lod' }, - ['422008331'] = { Name = 'ch3_04_isledec1' }, - ['95508577'] = { Name = 'ch3_04_ladder01' }, - ['344421901'] = { Name = 'ch3_04_ladder02' }, - ['-487877930'] = { Name = 'ch3_04_ladder03' }, - ['1887153640'] = { Name = 'ch3_04_ladder04' }, - ['-46472288'] = { Name = 'ch3_04_laddermain_lod' }, - ['1764845665'] = { Name = 'ch3_04_laddermain' }, - ['1775684864'] = { Name = 'ch3_04_laddermain001_lod' }, - ['-1509379274'] = { Name = 'ch3_04_laddermain001' }, - ['-1599761696'] = { Name = 'ch3_04_laddermain002_lod' }, - ['-1027085132'] = { Name = 'ch3_04_laddermain002' }, - ['-2131674029'] = { Name = 'ch3_04_laddermain003_lod' }, - ['165214941'] = { Name = 'ch3_04_laddermain003' }, - ['197579276'] = { Name = 'ch3_04_lnd01' }, - ['649267172'] = { Name = 'ch3_04_lnd03' }, - ['1417274225'] = { Name = 'ch3_04_lnd04' }, - ['86652240'] = { Name = 'ch3_04_lnd04b' }, - ['1225706651'] = { Name = 'ch3_04_lnd05' }, - ['-1202840451'] = { Name = 'ch3_04_lnd05a' }, - ['1519906593'] = { Name = 'ch3_04_lnd06' }, - ['1024668696'] = { Name = 'ch3_04_lnd08' }, - ['-382174419'] = { Name = 'ch3_04_lnd08a' }, - ['1500383528'] = { Name = 'ch3_04_lndwalldecal' }, - ['-423959175'] = { Name = 'ch3_04_lrg_roks_006' }, - ['1634308069'] = { Name = 'ch3_04_p2_lad1' }, - ['-1786147449'] = { Name = 'ch3_04_parking_d' }, - ['1594622280'] = { Name = 'ch3_04_parking1_d' }, - ['168539773'] = { Name = 'ch3_04_pground_1' }, - ['-153874418'] = { Name = 'ch3_04_pground_2' }, - ['-1827981753'] = { Name = 'ch3_04_poolwtr1_fountn' }, - ['471105890'] = { Name = 'ch3_04_pris08_top_door' }, - ['-1018030735'] = { Name = 'ch3_04_prison_det' }, - ['979029725'] = { Name = 'ch3_04_prison_det2' }, - ['1212639926'] = { Name = 'ch3_04_prison_det3' }, - ['378079042'] = { Name = 'ch3_04_prison_det4' }, - ['755160751'] = { Name = 'ch3_04_prison' }, - ['-2133346099'] = { Name = 'ch3_04_prison02' }, - ['986950850'] = { Name = 'ch3_04_prison05' }, - ['-1179702661'] = { Name = 'ch3_04_prison06' }, - ['-459204158'] = { Name = 'ch3_04_prison08_top_iref001' }, - ['858155294'] = { Name = 'ch3_04_prison08_top' }, - ['1943871192'] = { Name = 'ch3_04_prison09' }, - ['555120740'] = { Name = 'ch3_04_prison12' }, - ['-1345481264'] = { Name = 'ch3_04_prison13' }, - ['750292904'] = { Name = 'ch3_04_prison14' }, - ['832680692'] = { Name = 'ch3_04_props_props_towels006' }, - ['-820004479'] = { Name = 'ch3_04_railfizz_lod01' }, - ['552394010'] = { Name = 'ch3_04_railfizz_lod02' }, - ['-475962748'] = { Name = 'ch3_04_railfizz_lod03' }, - ['-1250392525'] = { Name = 'ch3_04_railfizz_lod04' }, - ['644863529'] = { Name = 'ch3_04_railfizz01' }, - ['1229462489'] = { Name = 'ch3_04_railfizz02' }, - ['-1159102690'] = { Name = 'ch3_04_railfizz03' }, - ['1539031232'] = { Name = 'ch3_04_railfizz04' }, - ['-1144176773'] = { Name = 'ch3_04_railing' }, - ['-973484549'] = { Name = 'ch3_04_railing02' }, - ['-745248464'] = { Name = 'ch3_04_railing03' }, - ['-1588722524'] = { Name = 'ch3_04_railing04' }, - ['-1357799381'] = { Name = 'ch3_04_railing05' }, - ['247685005'] = { Name = 'ch3_04_railing06' }, - ['-963778424'] = { Name = 'ch3_04_rd_dec1' }, - ['-1206105179'] = { Name = 'ch3_04_rd_dec2' }, - ['1551733865'] = { Name = 'ch3_04_rd_dec3' }, - ['-2037152954'] = { Name = 'ch3_04_roadsidedecal1' }, - ['1724169827'] = { Name = 'ch3_04_rock_lod_02' }, - ['-633732694'] = { Name = 'ch3_04_rockcrop1' }, - ['-294639082'] = { Name = 'ch3_04_rockcrop2' }, - ['1181309447'] = { Name = 'ch3_04_rockcrop3' }, - ['1488125594'] = { Name = 'ch3_04_rockcrop4' }, - ['668212445'] = { Name = 'ch3_04_rockcrop5' }, - ['708256163'] = { Name = 'ch3_04_rockcrop6' }, - ['-1357436059'] = { Name = 'ch3_04_rockcrop7' }, - ['100546352'] = { Name = 'ch3_04_roks002' }, - ['527110586'] = { Name = 'ch3_04_roof_ladder01' }, - ['354352414'] = { Name = 'ch3_04_roof_ladder02' }, - ['47732881'] = { Name = 'ch3_04_roof_ladder03' }, - ['-389864345'] = { Name = 'ch3_04_roof_ladder04' }, - ['1236837226'] = { Name = 'ch3_04_roofdec3' }, - ['-1887809236'] = { Name = 'ch3_04_sea__decal001' }, - ['-680015785'] = { Name = 'ch3_04_sea_00b' }, - ['-411763505'] = { Name = 'ch3_04_sea_00b1_lod' }, - ['1593763825'] = { Name = 'ch3_04_sea_00b1' }, - ['-495603327'] = { Name = 'ch3_04_sea_02b1_lod' }, - ['-687030188'] = { Name = 'ch3_04_sea_02b1' }, - ['1267922230'] = { Name = 'ch3_04_sea_03b1_lod' }, - ['1426182521'] = { Name = 'ch3_04_sea_03b1' }, - ['374476566'] = { Name = 'ch3_04_sea_04b' }, - ['-1395049603'] = { Name = 'ch3_04_sea_04b1_lod' }, - ['-575475878'] = { Name = 'ch3_04_sea_04b1' }, - ['-81976089'] = { Name = 'ch3_04_sea_06b1_lod' }, - ['2043944219'] = { Name = 'ch3_04_sea_06b1' }, - ['955316637'] = { Name = 'ch3_04_sea_14' }, - ['-816765345'] = { Name = 'ch3_04_sea_15' }, - ['-593641224'] = { Name = 'ch3_04_sea_16' }, - ['2006644464'] = { Name = 'ch3_04_sea_18' }, - ['88379973'] = { Name = 'ch3_04_sea_19' }, - ['2016116101'] = { Name = 'ch3_04_sea_20' }, - ['1710086410'] = { Name = 'ch3_04_sea_21' }, - ['649452195'] = { Name = 'ch3_04_sea_22' }, - ['1409103153'] = { Name = 'ch3_04_sea_23' }, - ['1130009580'] = { Name = 'ch3_04_sea_24' }, - ['1620758124'] = { Name = 'ch3_04_sea_25' }, - ['-574601035'] = { Name = 'ch3_04_sea_26' }, - ['184787775'] = { Name = 'ch3_04_sea_27' }, - ['584505101'] = { Name = 'ch3_04_sea_b01' }, - ['2006806554'] = { Name = 'ch3_04_sea_c00' }, - ['-442738868'] = { Name = 'ch3_04_sea_c006' }, - ['1047264688'] = { Name = 'ch3_04_sea_c01' }, - ['1282841029'] = { Name = 'ch3_04_sea_c02' }, - ['1504949311'] = { Name = 'ch3_04_sea_c03' }, - ['1743868090'] = { Name = 'ch3_04_sea_c04' }, - ['1294428887'] = { Name = 'ch3_04_sea_cont_004' }, - ['1310575382'] = { Name = 'ch3_04_sea_cont_1' }, - ['1909330562'] = { Name = 'ch3_04_sea_cont_2' }, - ['1570196656'] = { Name = 'ch3_04_sea_d_01' }, - ['-1458264152'] = { Name = 'ch3_04_sea_d_015' }, - ['-1578395306'] = { Name = 'ch3_04_sea_d_016' }, - ['-759465227'] = { Name = 'ch3_04_sea_d_017' }, - ['-1118482391'] = { Name = 'ch3_04_sea_d_018' }, - ['1880044958'] = { Name = 'ch3_04_sea_d_019' }, - ['1747804636'] = { Name = 'ch3_04_sea_d_02' }, - ['-1981093263'] = { Name = 'ch3_04_sea_d_020' }, - ['1288874791'] = { Name = 'ch3_04_sea_d_04' }, - ['1953528426'] = { Name = 'ch3_04_sea_d_05' }, - ['1033243830'] = { Name = 'ch3_04_sea_d_07' }, - ['1210065354'] = { Name = 'ch3_04_sea_d_08' }, - ['-2135520857'] = { Name = 'ch3_04_sea_d124' }, - ['-1226050031'] = { Name = 'ch3_04_sea_d125' }, - ['-1604704567'] = { Name = 'ch3_04_sea_deb001' }, - ['436784071'] = { Name = 'ch3_04_sea_details001' }, - ['790432588'] = { Name = 'ch3_04_sea_detailsb' }, - ['416825721'] = { Name = 'ch3_04_sea_end00' }, - ['722265570'] = { Name = 'ch3_04_sea_end01' }, - ['1071976342'] = { Name = 'ch3_04_sea_end02' }, - ['1311681577'] = { Name = 'ch3_04_sea_end03' }, - ['-2078950288'] = { Name = 'ch3_04_sea_n100' }, - ['-1061931592'] = { Name = 'ch3_04_sea_n101' }, - ['-1434318508'] = { Name = 'ch3_04_sea_n102' }, - ['-619124095'] = { Name = 'ch3_04_sea_n103' }, - ['-856863190'] = { Name = 'ch3_04_sea_n104' }, - ['1238910962'] = { Name = 'ch3_04_sea_n105' }, - ['-215377246'] = { Name = 'ch3_04_sea_n106' }, - ['609516791'] = { Name = 'ch3_04_sea_n107' }, - ['-685752483'] = { Name = 'ch3_04_sea_ship001' }, - ['-1616556925'] = { Name = 'ch3_04_sea_ship003_lod' }, - ['1344478812'] = { Name = 'ch3_04_sea_uw1_00' }, - ['490510565'] = { Name = 'ch3_04_sea_uw1_02_dcls' }, - ['290529465'] = { Name = 'ch3_04_sea_uw1_02' }, - ['1229992022'] = { Name = 'ch3_04_sea_uw1_04_lod' }, - ['-2061072286'] = { Name = 'ch3_04_sea_uw1_04' }, - ['-655430090'] = { Name = 'ch3_04_sea_uw1a00' }, - ['-198531907'] = { Name = 'ch3_04_sea_uw1a02' }, - ['-1019034914'] = { Name = 'ch3_04_sea_uw1a03' }, - ['-1609335680'] = { Name = 'ch3_04_sea_uw1a04' }, - ['1875811319'] = { Name = 'ch3_04_sea_uw1a05' }, - ['-1129761365'] = { Name = 'ch3_04_sea_uw1a06' }, - ['-1971629744'] = { Name = 'ch3_04_sea_uw1a07' }, - ['616302035'] = { Name = 'ch3_04_sea_uw1a08' }, - ['-1292219388'] = { Name = 'ch3_04_sea_uw1a09_lod' }, - ['848339324'] = { Name = 'ch3_04_sea_uw1a09' }, - ['-1519224595'] = { Name = 'ch3_04_sea_uw1a10_lod' }, - ['607785227'] = { Name = 'ch3_04_sea_uw1a10' }, - ['783385275'] = { Name = 'ch3_04_sea_uw1a11_lod' }, - ['914863526'] = { Name = 'ch3_04_sea_uw1a11' }, - ['-776743343'] = { Name = 'ch3_04_sea_uw1a12_lod' }, - ['1389358646'] = { Name = 'ch3_04_sea_uw1a12' }, - ['-1972827111'] = { Name = 'ch3_04_sea_uw1a15_lod' }, - ['130275359'] = { Name = 'ch3_04_sea_uw1a15' }, - ['1187219854'] = { Name = 'ch3_04_sea_uw1a17_lod' }, - ['-1539337964'] = { Name = 'ch3_04_sea_uw1a17' }, - ['-497095440'] = { Name = 'ch3_04_sea_uwdecals00' }, - ['-793949811'] = { Name = 'ch3_04_sea_uwdecals01' }, - ['-515839300'] = { Name = 'ch3_04_sea_uwdecals05' }, - ['-1161519676'] = { Name = 'ch3_04_sea_uwdecals07' }, - ['985865663'] = { Name = 'ch3_04_sea_uwdecals08' }, - ['-1469613814'] = { Name = 'ch3_04_sea_uwdecals09' }, - ['1919814640'] = { Name = 'ch3_04_sea_uwdecals10' }, - ['2141529694'] = { Name = 'ch3_04_sea_uwdecals11' }, - ['-1423180437'] = { Name = 'ch3_04_sea_uwdecals13' }, - ['1253883002'] = { Name = 'ch3_04_sea_uwdecals14' }, - ['776110982'] = { Name = 'ch3_04_sea_uwdecals15' }, - ['1970377195'] = { Name = 'ch3_04_sea_uwdecals18' }, - ['-417139380'] = { Name = 'ch3_04_sea_uwdecals19' }, - ['-1713903829'] = { Name = 'ch3_04_sea_uwdecals98' }, - ['-785660599'] = { Name = 'ch3_04_searock1' }, - ['-8543764'] = { Name = 'ch3_04_searock2' }, - ['1595811309'] = { Name = 'ch3_04_viewplatform_slod' }, - ['-1997485166'] = { Name = 'ch3_04_viewplatform' }, - ['49942025'] = { Name = 'ch3_04_wood_006' }, - ['636856213'] = { Name = 'ch3_06_concretebase01' }, - ['1449003109'] = { Name = 'ch3_06_concretebase04' }, - ['-1300349643'] = { Name = 'ch3_06_cs_road01' }, - ['1425834547'] = { Name = 'ch3_06_cs_road03' }, - ['1588728487'] = { Name = 'ch3_06_culvert01' }, - ['-1214306501'] = { Name = 'ch3_06_dec00' }, - ['-917943665'] = { Name = 'ch3_06_dec01' }, - ['276519158'] = { Name = 'ch3_06_dec02' }, - ['573963371'] = { Name = 'ch3_06_dec03' }, - ['-1820066420'] = { Name = 'ch3_06_dec0333a' }, - ['-1459508785'] = { Name = 'ch3_06_dec0334a' }, - ['-321613399'] = { Name = 'ch3_06_dec04' }, - ['-22399660'] = { Name = 'ch3_06_dec05' }, - ['1228982912'] = { Name = 'ch3_06_dec06' }, - ['1527737885'] = { Name = 'ch3_06_dec07' }, - ['636748775'] = { Name = 'ch3_06_dec08' }, - ['934651754'] = { Name = 'ch3_06_dec09' }, - ['-201907358'] = { Name = 'ch3_06_dec10' }, - ['-424933172'] = { Name = 'ch3_06_dec11' }, - ['1427826088'] = { Name = 'ch3_06_dec12' }, - ['1120420099'] = { Name = 'ch3_06_dec13' }, - ['25476741'] = { Name = 'ch3_06_dec14' }, - ['-269018262'] = { Name = 'ch3_06_dec15' }, - ['1579808718'] = { Name = 'ch3_06_dec16' }, - ['1348000812'] = { Name = 'ch3_06_dec17' }, - ['305872912'] = { Name = 'ch3_06_dec17a' }, - ['-1034902312'] = { Name = 'ch3_06_dec17a2' }, - ['1075847281'] = { Name = 'ch3_06_dec17a3' }, - ['1863297196'] = { Name = 'ch3_06_dec17asd' }, - ['-1792518294'] = { Name = 'ch3_06_dec17fuc12' }, - ['197982504'] = { Name = 'ch3_06_dec17q23' }, - ['-1201198005'] = { Name = 'ch3_06_dec18' }, - ['-1497659148'] = { Name = 'ch3_06_dec19' }, - ['-774842046'] = { Name = 'ch3_06_dec20' }, - ['-467698209'] = { Name = 'ch3_06_dec21' }, - ['-1672450494'] = { Name = 'ch3_06_dec22' }, - ['1720320694'] = { Name = 'ch3_06_dec23' }, - ['175655572'] = { Name = 'ch3_06_dec24' }, - ['-1389359103'] = { Name = 'ch3_06_dec26' }, - ['-1082805108'] = { Name = 'ch3_06_dec27' }, - ['1670249662'] = { Name = 'ch3_06_dec28' }, - ['768315706'] = { Name = 'ch3_06_dec29' }, - ['1375722726'] = { Name = 'ch3_06_dec30' }, - ['1607170173'] = { Name = 'ch3_06_dec31' }, - ['-257943000'] = { Name = 'ch3_06_dec32' }, - ['-61394538'] = { Name = 'ch3_06_dec33' }, - ['221631315'] = { Name = 'ch3_06_dec34' }, - ['-1435300417'] = { Name = 'ch3_06_dec35' }, - ['-975846268'] = { Name = 'ch3_06_dec37' }, - ['-721394983'] = { Name = 'ch3_06_dec38' }, - ['1933025097'] = { Name = 'ch3_06_dec39' }, - ['-1892003133'] = { Name = 'ch3_06_dec39a' }, - ['-481983733'] = { Name = 'ch3_06_dec40' }, - ['-116150617'] = { Name = 'ch3_06_dec41' }, - ['-875998205'] = { Name = 'ch3_06_dec42' }, - ['-578881682'] = { Name = 'ch3_06_dec43' }, - ['-1437462251'] = { Name = 'ch3_06_dec44' }, - ['-1064551031'] = { Name = 'ch3_06_dec45' }, - ['-1897506242'] = { Name = 'ch3_06_dec46' }, - ['1695352460'] = { Name = 'ch3_06_dec47' }, - ['1973069735'] = { Name = 'ch3_06_dec48' }, - ['1120387586'] = { Name = 'ch3_06_dec49' }, - ['-448558461'] = { Name = 'ch3_06_dec50' }, - ['1960840828'] = { Name = 'ch3_06_dec50a' }, - ['-138924180'] = { Name = 'ch3_06_dec51' }, - ['-1042955352'] = { Name = 'ch3_06_dec52' }, - ['-192020128'] = { Name = 'ch3_06_decal102' }, - ['163982288'] = { Name = 'ch3_06_decal105' }, - ['42633248'] = { Name = 'ch3_06_decal50' }, - ['-8826733'] = { Name = 'ch3_06_land_03' }, - ['309786266'] = { Name = 'ch3_06_land_06' }, - ['-1382273818'] = { Name = 'ch3_06_land_09' }, - ['-1612473518'] = { Name = 'ch3_06_land_1' }, - ['721386965'] = { Name = 'ch3_06_land_10a' }, - ['-2114627303'] = { Name = 'ch3_06_land_11' }, - ['2103103456'] = { Name = 'ch3_06_land_1a' }, - ['-196197338'] = { Name = 'ch3_06_land_2' }, - ['-1364969269'] = { Name = 'ch3_06_land_4' }, - ['39041352'] = { Name = 'ch3_06_land_4a' }, - ['1410194623'] = { Name = 'ch3_06_land_4b' }, - ['-1587962314'] = { Name = 'ch3_06_land_5' }, - ['-1638633413'] = { Name = 'ch3_06_land_5a' }, - ['-1146662191'] = { Name = 'ch3_06_land_7' }, - ['1834563126'] = { Name = 'ch3_06_land_8' }, - ['759366917'] = { Name = 'ch3_06_land_ex_08' }, - ['1983273777'] = { Name = 'ch3_06_new_road_decals3' }, - ['1928892475'] = { Name = 'ch3_06_new_road' }, - ['918242652'] = { Name = 'ch3_06_parkbench_decals' }, - ['-575527354'] = { Name = 'ch3_06_parkbench' }, - ['-1719392107'] = { Name = 'ch3_06_road_dec_00' }, - ['-477570059'] = { Name = 'ch3_06_road655' }, - ['692437564'] = { Name = 'ch3_06_stream_water' }, - ['1786475818'] = { Name = 'ch3_06_trk_23' }, - ['-778709701'] = { Name = 'ch3_06_trk_23a' }, - ['-1437895471'] = { Name = 'ch3_06_trk_24' }, - ['424052908'] = { Name = 'ch3_06_trk_24b' }, - ['-251127450'] = { Name = 'ch3_07_decalaa' }, - ['-1778918761'] = { Name = 'ch3_07_decals00' }, - ['-2007220384'] = { Name = 'ch3_07_decals01' }, - ['1684109159'] = { Name = 'ch3_07_decals03' }, - ['-1093948354'] = { Name = 'ch3_07_decals05' }, - ['-1452441214'] = { Name = 'ch3_07_decals06' }, - ['-1687886479'] = { Name = 'ch3_07_decals07' }, - ['-533893319'] = { Name = 'ch3_07_decals08' }, - ['-893631401'] = { Name = 'ch3_07_decals09' }, - ['548433694'] = { Name = 'ch3_07_decals10' }, - ['699990554'] = { Name = 'ch3_07_decals10a' }, - ['-379715462'] = { Name = 'ch3_07_decals11' }, - ['-63723995'] = { Name = 'ch3_07_decals12' }, - ['-429753737'] = { Name = 'ch3_07_decals13' }, - ['1746009568'] = { Name = 'ch3_07_decals14' }, - ['829132948'] = { Name = 'ch3_07_decals15' }, - ['1049471704'] = { Name = 'ch3_07_decals16' }, - ['273665629'] = { Name = 'ch3_07_decals17' }, - ['-1961245709'] = { Name = 'ch3_07_decals18' }, - ['-1664653490'] = { Name = 'ch3_07_decals19' }, - ['-2072136305'] = { Name = 'ch3_07_decals21' }, - ['825003754'] = { Name = 'ch3_07_decals23' }, - ['684949004'] = { Name = 'ch3_07_decals24' }, - ['-1872084452'] = { Name = 'ch3_07_decals42' }, - ['2096929601'] = { Name = 'ch3_07_decals44' }, - ['-2092783667'] = { Name = 'ch3_07_decals45' }, - ['1720139276'] = { Name = 'ch3_07_decals45ab' }, - ['1472516298'] = { Name = 'ch3_07_decals46' }, - ['1068222248'] = { Name = 'ch3_07_decals46ab' }, - ['1624302242'] = { Name = 'ch3_07_decals48' }, - ['1468395350'] = { Name = 'ch3_07_decals48ab' }, - ['-2147311591'] = { Name = 'ch3_07_decals50' }, - ['-1552423165'] = { Name = 'ch3_07_decals52' }, - ['-1840954210'] = { Name = 'ch3_07_decals53' }, - ['1297365701'] = { Name = 'ch3_07_decals57' }, - ['-229931851'] = { Name = 'ch3_07_decals58' }, - ['-529473280'] = { Name = 'ch3_07_decals59' }, - ['-82209491'] = { Name = 'ch3_07_decals60' }, - ['217757935'] = { Name = 'ch3_07_decals61' }, - ['-979588556'] = { Name = 'ch3_07_decals62' }, - ['-381357692'] = { Name = 'ch3_07_decals63' }, - ['2004159922'] = { Name = 'ch3_07_decals64' }, - ['-1676716314'] = { Name = 'ch3_07_decals65' }, - ['1396589885'] = { Name = 'ch3_07_decals66' }, - ['547926346'] = { Name = 'ch3_07_dirtdecal' }, - ['1439740217'] = { Name = 'ch3_07_land_003' }, - ['-2024560461'] = { Name = 'ch3_07_land_01' }, - ['-564177195'] = { Name = 'ch3_07_land_02' }, - ['-1165324500'] = { Name = 'ch3_07_land_04' }, - ['-332467596'] = { Name = 'ch3_07_land_05' }, - ['1193453654'] = { Name = 'ch3_07_land_06' }, - ['948701993'] = { Name = 'ch3_07_land_07' }, - ['-1551703779'] = { Name = 'ch3_07_land_08' }, - ['-1793637306'] = { Name = 'ch3_07_land_09' }, - ['651815133'] = { Name = 'ch3_07_land_10' }, - ['205673800'] = { Name = 'ch3_07_trk_01_decal001' }, - ['2115851263'] = { Name = 'ch3_07_trk_01' }, - ['1595285046'] = { Name = 'ch3_07_trk_01a' }, - ['-40381706'] = { Name = 'ch3_07_trk_02' }, - ['266827669'] = { Name = 'ch3_07_trk_03' }, - ['1227422324'] = { Name = 'ch3_07_trk_044' }, - ['-444770846'] = { Name = 'ch3_07_trk_044a' }, - ['-1283768642'] = { Name = 'ch3_07_trk_05' }, - ['884162856'] = { Name = 'ch3_07_trk_06' }, - ['1165802011'] = { Name = 'ch3_07_trk_arm_01' }, - ['1643082496'] = { Name = 'ch3_07_trk_arm_03' }, - ['906828628'] = { Name = 'ch3_07_trk_arm_04' }, - ['1370018443'] = { Name = 'ch3_07_trk_arm_06' }, - ['1053931828'] = { Name = 'ch3_07_wat_01a' }, - ['-2094122891'] = { Name = 'ch3_08_cablemesh39428_hvlit' }, - ['-1826601604'] = { Name = 'ch3_08_cablemesh39530_hvlit' }, - ['-320379315'] = { Name = 'ch3_08_cablemesh39706_hvstd' }, - ['1124056642'] = { Name = 'ch3_08_cablemesh39708_hvstd' }, - ['-506333512'] = { Name = 'ch3_08_cablemesh39714_hvstd' }, - ['238159566'] = { Name = 'ch3_08_cablemesh39715_hvlit' }, - ['2052613446'] = { Name = 'ch3_08_cablemesh39716_hvlit' }, - ['-53306987'] = { Name = 'ch3_08_cablemesh39717_hvlit' }, - ['-1376489870'] = { Name = 'ch3_08_ch2_08_fizz01' }, - ['-1735900262'] = { Name = 'ch3_08_ch2_08_fizz04' }, - ['1112348457'] = { Name = 'ch3_08_ch2_08_fizz05' }, - ['1422801963'] = { Name = 'ch3_08_ch2_08_fizz06' }, - ['119114775'] = { Name = 'ch3_08_ch2_08_fizz07_scaff' }, - ['1551125367'] = { Name = 'ch3_08_ch2_08_fizz08' }, - ['-430466647'] = { Name = 'ch3_08_ch2_08_fizz09_tower' }, - ['252927788'] = { Name = 'ch3_08_crashbar_01' }, - ['891562829'] = { Name = 'ch3_08_crashbar_02' }, - ['579733025'] = { Name = 'ch3_08_crashbar_03' }, - ['-862558093'] = { Name = 'ch3_08_crashbar_20' }, - ['64341332'] = { Name = 'ch3_08_dam_corr_lod' }, - ['445070344'] = { Name = 'ch3_08_dam_corr_o' }, - ['822908483'] = { Name = 'ch3_08_dam_corr' }, - ['-945160379'] = { Name = 'ch3_08_dam_jetty1' }, - ['-1283418707'] = { Name = 'ch3_08_dam_mp003' }, - ['352401305'] = { Name = 'ch3_08_dam_mp2_o001' }, - ['-869299997'] = { Name = 'ch3_08_dam_mp2_w' }, - ['73774867'] = { Name = 'ch3_08_dam_newbit1_w' }, - ['2007726145'] = { Name = 'ch3_08_dam_plat' }, - ['-773753640'] = { Name = 'ch3_08_dam_scaff' }, - ['-1290411928'] = { Name = 'ch3_08_dambed_1_lod' }, - ['-300288895'] = { Name = 'ch3_08_dambed_1' }, - ['1598497322'] = { Name = 'ch3_08_dambed_2_lod' }, - ['-1602725569'] = { Name = 'ch3_08_dambed_2' }, - ['276332922'] = { Name = 'ch3_08_dambed_3_lod' }, - ['-1835156086'] = { Name = 'ch3_08_dambed_3' }, - ['267314244'] = { Name = 'ch3_08_dambed_d1' }, - ['-561249921'] = { Name = 'ch3_08_dambed_d2' }, - ['-627639991'] = { Name = 'ch3_08_dambed_d3' }, - ['404087846'] = { Name = 'ch3_08_damculvert' }, - ['-1179823585'] = { Name = 'ch3_08_damculvert001_lod' }, - ['-25379558'] = { Name = 'ch3_08_damculvert001' }, - ['-1805651687'] = { Name = 'ch3_08_dec00' }, - ['717626835'] = { Name = 'ch3_08_dec01' }, - ['1067272065'] = { Name = 'ch3_08_dec02' }, - ['1298391822'] = { Name = 'ch3_08_dec03' }, - ['-483324246'] = { Name = 'ch3_08_dec04' }, - ['-252925407'] = { Name = 'ch3_08_dec05' }, - ['114808311'] = { Name = 'ch3_08_dec06' }, - ['345534840'] = { Name = 'ch3_08_dec07' }, - ['-384427380'] = { Name = 'ch3_08_dec08' }, - ['-123749985'] = { Name = 'ch3_08_dec09' }, - ['1829851240'] = { Name = 'ch3_08_dec10' }, - ['1112335084'] = { Name = 'ch3_08_dec100' }, - ['947900242'] = { Name = 'ch3_08_dec101' }, - ['-1198174341'] = { Name = 'ch3_08_dec102' }, - ['986845051'] = { Name = 'ch3_08_dec102b' }, - ['-1496601624'] = { Name = 'ch3_08_dec103' }, - ['-1693805466'] = { Name = 'ch3_08_dec104' }, - ['-1994919807'] = { Name = 'ch3_08_dec105' }, - ['231274985'] = { Name = 'ch3_08_dec106' }, - ['-479582932'] = { Name = 'ch3_08_dec107' }, - ['-785612623'] = { Name = 'ch3_08_dec108' }, - ['-956601273'] = { Name = 'ch3_08_dec109' }, - ['1674788332'] = { Name = 'ch3_08_dec11' }, - ['1961642378'] = { Name = 'ch3_08_dec110' }, - ['1722723599'] = { Name = 'ch3_08_dec111' }, - ['1349484689'] = { Name = 'ch3_08_dec112' }, - ['1361877151'] = { Name = 'ch3_08_dec12' }, - ['-1501805763'] = { Name = 'ch3_08_dec13' }, - ['-1676988837'] = { Name = 'ch3_08_dec14' }, - ['-1975481658'] = { Name = 'ch3_08_dec15' }, - ['-7899818'] = { Name = 'ch3_08_dec16' }, - ['-307113557'] = { Name = 'ch3_08_dec17' }, - ['-488457203'] = { Name = 'ch3_08_dec18' }, - ['-786163568'] = { Name = 'ch3_08_dec19' }, - ['-649922310'] = { Name = 'ch3_08_dec20' }, - ['1794874477'] = { Name = 'ch3_08_dec21' }, - ['658032686'] = { Name = 'ch3_08_dec22_lod' }, - ['-1601632377'] = { Name = 'ch3_08_dec22' }, - ['-901293309'] = { Name = 'ch3_08_dec23' }, - ['-1018835816'] = { Name = 'ch3_08_dec24' }, - ['-779785961'] = { Name = 'ch3_08_dec25' }, - ['-1479928415'] = { Name = 'ch3_08_dec26' }, - ['-295787831'] = { Name = 'ch3_08_dec28' }, - ['483852217'] = { Name = 'ch3_08_dec29' }, - ['1759451412'] = { Name = 'ch3_08_dec30' }, - ['682628969'] = { Name = 'ch3_08_dec30awe' }, - ['1957803260'] = { Name = 'ch3_08_dec30qwert' }, - ['2068430313'] = { Name = 'ch3_08_dec31' }, - ['-1086044707'] = { Name = 'ch3_08_dec32' }, - ['-814356928'] = { Name = 'ch3_08_dec33' }, - ['-1578726622'] = { Name = 'ch3_08_dec34' }, - ['-2042440725'] = { Name = 'ch3_08_dec36' }, - ['-1752664458'] = { Name = 'ch3_08_dec37' }, - ['1769675356'] = { Name = 'ch3_08_dec38' }, - ['2075508433'] = { Name = 'ch3_08_dec39' }, - ['910714126'] = { Name = 'ch3_08_dec3cv_lod' }, - ['-471193208'] = { Name = 'ch3_08_dec40' }, - ['-1815738151'] = { Name = 'ch3_08_dec44' }, - ['-1176742651'] = { Name = 'ch3_08_dec45' }, - ['1996541775'] = { Name = 'ch3_08_dec46' }, - ['-2059834432'] = { Name = 'ch3_08_dec47' }, - ['202865114'] = { Name = 'ch3_08_dec48' }, - ['-533126626'] = { Name = 'ch3_08_dec49' }, - ['242908488'] = { Name = 'ch3_08_dec50' }, - ['482679261'] = { Name = 'ch3_08_dec51' }, - ['-57681549'] = { Name = 'ch3_08_dec53' }, - ['1745944285'] = { Name = 'ch3_08_dec53cv' }, - ['-670429080'] = { Name = 'ch3_08_dec55' }, - ['1962986999'] = { Name = 'ch3_08_dec67' }, - ['1790261600'] = { Name = 'ch3_08_dec68' }, - ['1484526830'] = { Name = 'ch3_08_dec69' }, - ['-930450495'] = { Name = 'ch3_08_dec70' }, - ['-1170221268'] = { Name = 'ch3_08_dec71' }, - ['-1408845126'] = { Name = 'ch3_08_dec72' }, - ['-1649074665'] = { Name = 'ch3_08_dec73' }, - ['-2127502065'] = { Name = 'ch3_08_dec74' }, - ['2062669969'] = { Name = 'ch3_08_dec75' }, - ['960386347'] = { Name = 'ch3_08_dec76' }, - ['1390250089'] = { Name = 'ch3_08_dec77' }, - ['512925652'] = { Name = 'ch3_08_dec78' }, - ['1212740416'] = { Name = 'ch3_08_dec79' }, - ['-465949016'] = { Name = 'ch3_08_dec80' }, - ['1906546700'] = { Name = 'ch3_08_dec80aa' }, - ['-232273277'] = { Name = 'ch3_08_dec81' }, - ['17131582'] = { Name = 'ch3_08_dec82' }, - ['-1420968856'] = { Name = 'ch3_08_dec83' }, - ['-1670111563'] = { Name = 'ch3_08_dec84' }, - ['-1363000495'] = { Name = 'ch3_08_dec85' }, - ['1609770420'] = { Name = 'ch3_08_dec86' }, - ['968448313'] = { Name = 'ch3_08_dec88' }, - ['1202353435'] = { Name = 'ch3_08_dec89' }, - ['1132784604'] = { Name = 'ch3_08_dec90' }, - ['869223537'] = { Name = 'ch3_08_dec91' }, - ['-655583571'] = { Name = 'ch3_08_dec92' }, - ['187890489'] = { Name = 'ch3_08_dec93' }, - ['-296697483'] = { Name = 'ch3_08_dec94' }, - ['-1635671568'] = { Name = 'ch3_08_dec95' }, - ['-1859713221'] = { Name = 'ch3_08_dec96' }, - ['-1025414481'] = { Name = 'ch3_08_dec97' }, - ['-1279669152'] = { Name = 'ch3_08_dec98' }, - ['1466569666'] = { Name = 'ch3_08_dec99' }, - ['858338771'] = { Name = 'ch3_08_decal_32' }, - ['-20458576'] = { Name = 'ch3_08_decal_987' }, - ['-661622849'] = { Name = 'ch3_08_fence_01' }, - ['-1368155258'] = { Name = 'ch3_08_fence_02' }, - ['-1121568533'] = { Name = 'ch3_08_fence_03' }, - ['-609126919'] = { Name = 'ch3_08_fence_04' }, - ['-1521425206'] = { Name = 'ch3_08_fizz02' }, - ['-1968792502'] = { Name = 'ch3_08_fizz02b' }, - ['-1165216557'] = { Name = 'ch3_08_grime_01' }, - ['1015101627'] = { Name = 'ch3_08_grime_02' }, - ['782736648'] = { Name = 'ch3_08_grime_03' }, - ['417952140'] = { Name = 'ch3_08_grime_04' }, - ['1976506050'] = { Name = 'ch3_08_land_01' }, - ['-797455342'] = { Name = 'ch3_08_land_02' }, - ['-498700369'] = { Name = 'ch3_08_land_03' }, - ['1177258638'] = { Name = 'ch3_08_land_03a' }, - ['-1385888275'] = { Name = 'ch3_08_land_04' }, - ['-1155096208'] = { Name = 'ch3_08_land_05' }, - ['-1758963292'] = { Name = 'ch3_08_land_06' }, - ['201352404'] = { Name = 'ch3_08_land_06a' }, - ['-1459421863'] = { Name = 'ch3_08_land_07' }, - ['-1964874762'] = { Name = 'ch3_08_land_07a' }, - ['1923059859'] = { Name = 'ch3_08_land_08' }, - ['-2073742306'] = { Name = 'ch3_08_land_09' }, - ['1910705034'] = { Name = 'ch3_08_land_10' }, - ['-364578656'] = { Name = 'ch3_08_lightbase_01' }, - ['-1488442722'] = { Name = 'ch3_08_parkinglot_' }, - ['1218750848'] = { Name = 'ch3_08_pklines_01' }, - ['2131662419'] = { Name = 'ch3_08_pklines_05' }, - ['-1978260719'] = { Name = 'ch3_08_ppbldg003' }, - ['961698980'] = { Name = 'ch3_08_ppbldg006_d' }, - ['352401641'] = { Name = 'ch3_08_ppbldg006' }, - ['-953233214'] = { Name = 'ch3_08_pptube01' }, - ['-626690129'] = { Name = 'ch3_08_pptube02' }, - ['-1545926117'] = { Name = 'ch3_08_pptube03' }, - ['639078034'] = { Name = 'ch3_08_pptube04' }, - ['105074410'] = { Name = 'ch3_08_pptube05' }, - ['267477574'] = { Name = 'ch3_08_pptube06' }, - ['2086265653'] = { Name = 'ch3_08_props_combo170_01_lod' }, - ['-823001744'] = { Name = 'ch3_08_props_s_029' }, - ['-1134569072'] = { Name = 'ch3_08_props_s_030' }, - ['-1373487851'] = { Name = 'ch3_08_props_s_031' }, - ['-1719209678'] = { Name = 'ch3_08_pumprm_rd00' }, - ['-1014774485'] = { Name = 'ch3_08_pumprm_rd01' }, - ['1970173256'] = { Name = 'ch3_08_road003' }, - ['2131475695'] = { Name = 'ch3_08_road003a' }, - ['-1471592537'] = { Name = 'ch3_08_road13' }, - ['-1849230487'] = { Name = 'ch3_08_road652' }, - ['-2131771372'] = { Name = 'ch3_08_roadblend01' }, - ['-2094414058'] = { Name = 'ch3_08_trk_16' }, - ['-1590623728'] = { Name = 'ch3_08_trk_21' }, - ['1868516726'] = { Name = 'ch3_08_trk_arm_05' }, - ['207040595'] = { Name = 'ch3_08_tub01_dcl' }, - ['1779417278'] = { Name = 'ch3_08_tub02_dcl' }, - ['-1903762886'] = { Name = 'ch3_08_tub03_dcl' }, - ['2076169544'] = { Name = 'ch3_08_tub04_dcl' }, - ['581637042'] = { Name = 'ch3_08_tub05_dcl' }, - ['800372682'] = { Name = 'ch3_08_tub06_dcl' }, - ['1055357395'] = { Name = 'ch3_08_tub08_dcl' }, - ['-2046121644'] = { Name = 'ch3_08_tub10_dcl' }, - ['1458015620'] = { Name = 'ch3_08_tub15_dcl' }, - ['1132841131'] = { Name = 'ch3_08_tub18_dcl' }, - ['825027715'] = { Name = 'ch3_08_tub20_dcl' }, - ['-1345582026'] = { Name = 'ch3_08_tub20_dcl003' }, - ['925686296'] = { Name = 'ch3_08_tub24_dcl' }, - ['-1732642658'] = { Name = 'ch3_08_tub25_dcl' }, - ['-749132645'] = { Name = 'ch3_08_weir_01' }, - ['-987822041'] = { Name = 'ch3_08_weir_02' }, - ['-1878254078'] = { Name = 'ch3_08_weir_03' }, - ['-836090305'] = { Name = 'ch3_09_crashbar_021_lod' }, - ['1100483508'] = { Name = 'ch3_09_crashbar_022_lod' }, - ['-1352003749'] = { Name = 'ch3_09_crashbar_023_lod' }, - ['1123863124'] = { Name = 'ch3_09_crashbar_024_lod' }, - ['-1764881703'] = { Name = 'ch3_09_crashbar_09' }, - ['-184432041'] = { Name = 'ch3_09_crashbar_10' }, - ['-1904280213'] = { Name = 'ch3_09_crashbar_16' }, - ['2091209800'] = { Name = 'ch3_09_crashbar_20' }, - ['-1870331984'] = { Name = 'ch3_09_decals00' }, - ['-1640522987'] = { Name = 'ch3_09_decals01' }, - ['-1559649095'] = { Name = 'ch3_09_decals02' }, - ['-1330429940'] = { Name = 'ch3_09_decals03' }, - ['-947098178'] = { Name = 'ch3_09_decals04' }, - ['-542597646'] = { Name = 'ch3_09_decals06' }, - ['-311477889'] = { Name = 'ch3_09_decals07' }, - ['-34219380'] = { Name = 'ch3_09_decals08' }, - ['61924866'] = { Name = 'ch3_09_decals09' }, - ['-1672025729'] = { Name = 'ch3_09_decals10' }, - ['1628074739'] = { Name = 'ch3_09_decals11' }, - ['2137501601'] = { Name = 'ch3_09_decals12' }, - ['-1249403924'] = { Name = 'ch3_09_decals13' }, - ['-1047415808'] = { Name = 'ch3_09_decals14' }, - ['-2014461767'] = { Name = 'ch3_09_decals15' }, - ['-88889785'] = { Name = 'ch3_09_decals17' }, - ['150553298'] = { Name = 'ch3_09_decals18' }, - ['-552210680'] = { Name = 'ch3_09_decals19' }, - ['586641170'] = { Name = 'ch3_09_decals20' }, - ['1836942377'] = { Name = 'ch3_09_decals22' }, - ['-2143049291'] = { Name = 'ch3_09_decals23' }, - ['-636887744'] = { Name = 'ch3_09_decals24' }, - ['1160262515'] = { Name = 'ch3_09_decals26' }, - ['1465505750'] = { Name = 'ch3_09_decals27' }, - ['-1882699586'] = { Name = 'ch3_09_decals28' }, - ['-1584206765'] = { Name = 'ch3_09_decals29' }, - ['367057505'] = { Name = 'ch3_09_decals37' }, - ['1019979830'] = { Name = 'ch3_09_decals38' }, - ['794103113'] = { Name = 'ch3_09_decals39' }, - ['-1468695232'] = { Name = 'ch3_09_decals58' }, - ['-1840885534'] = { Name = 'ch3_09_decals59' }, - ['35339126'] = { Name = 'ch3_09_decals60' }, - ['272717762'] = { Name = 'ch3_09_decals61' }, - ['1050621049'] = { Name = 'ch3_09_decals63' }, - ['1546088329'] = { Name = 'ch3_09_decals64' }, - ['-370144484'] = { Name = 'ch3_09_decals65' }, - ['-140171642'] = { Name = 'ch3_09_decals66' }, - ['2010687215'] = { Name = 'ch3_09_decals67' }, - ['-2054340008'] = { Name = 'ch3_09_decals68' }, - ['-1555268138'] = { Name = 'ch3_09_decals69' }, - ['-1073042802'] = { Name = 'ch3_09_decals72' }, - ['-1636079760'] = { Name = 'ch3_09_decals73' }, - ['-1934507043'] = { Name = 'ch3_09_decals74' }, - ['-977331276'] = { Name = 'ch3_09_land_01' }, - ['-723863061'] = { Name = 'ch3_09_land_02' }, - ['-433300338'] = { Name = 'ch3_09_land_03' }, - ['-802180963'] = { Name = 'ch3_09_land_05' }, - ['-481405222'] = { Name = 'ch3_09_land_06' }, - ['-1416018446'] = { Name = 'ch3_09_props_combo10_dslod' }, - ['-396751366'] = { Name = 'ch3_09_props_combo11_dslod' }, - ['-1754475451'] = { Name = 'ch3_09_props_combo12_dslod' }, - ['-49364721'] = { Name = 'ch3_09_props_combo13_dslod' }, - ['-1669263607'] = { Name = 'ch3_09_props_combo14_dslod' }, - ['-1679690193'] = { Name = 'ch3_09_props_combo15_dslod' }, - ['1951590537'] = { Name = 'ch3_09_props_combo16_dslod' }, - ['538575755'] = { Name = 'ch3_09_props_combo17_dslod' }, - ['-485688309'] = { Name = 'ch3_09_props_combo18_dslod' }, - ['1094168726'] = { Name = 'ch3_09_trk_16' }, - ['995001595'] = { Name = 'ch3_09_trk_17b' }, - ['504883807'] = { Name = 'ch3_09_trk_18' }, - ['261393856'] = { Name = 'ch3_09_trk_18b' }, - ['270945916'] = { Name = 'ch3_09_trk_19' }, - ['-2138935626'] = { Name = 'ch3_09_trk_19a' }, - ['876024697'] = { Name = 'ch3_09_trk_20' }, - ['695689610'] = { Name = 'ch3_10_b1_railing' }, - ['-2015949425'] = { Name = 'ch3_10_b1' }, - ['355704072'] = { Name = 'ch3_10_b2_railing' }, - ['218175461'] = { Name = 'ch3_10_b2' }, - ['1043888723'] = { Name = 'ch3_10_b3' }, - ['695520680'] = { Name = 'ch3_10_decs07' }, - ['242390948'] = { Name = 'ch3_10_decs08' }, - ['956197735'] = { Name = 'ch3_10_decs51' }, - ['1595586471'] = { Name = 'ch3_10_decs54' }, - ['1901452317'] = { Name = 'ch3_10_decs55' }, - ['-2136507712'] = { Name = 'ch3_10_decs56' }, - ['116426580'] = { Name = 'ch3_10_decs57' }, - ['339419625'] = { Name = 'ch3_10_decs58' }, - ['709643787'] = { Name = 'ch3_10_decs59' }, - ['1970070235'] = { Name = 'ch3_10_decs60' }, - ['1655422297'] = { Name = 'ch3_10_decs61' }, - ['415803796'] = { Name = 'ch3_10_decs62' }, - ['101352472'] = { Name = 'ch3_10_decs63' }, - ['916874575'] = { Name = 'ch3_10_decs64' }, - ['618643906'] = { Name = 'ch3_10_decs65' }, - ['-911996084'] = { Name = 'ch3_10_decs67' }, - ['1372273969'] = { Name = 'ch3_10_dir_rd_sgn_01' }, - ['-755156235'] = { Name = 'ch3_10_ele_conc_base_01' }, - ['-642025218'] = { Name = 'ch3_10_fence01' }, - ['-734466571'] = { Name = 'ch3_10_fence02' }, - ['164216704'] = { Name = 'ch3_10_g1_multi' }, - ['-1271000839'] = { Name = 'ch3_10_g1_terrain' }, - ['371161404'] = { Name = 'ch3_10_g2_multi' }, - ['1109293905'] = { Name = 'ch3_10_g2_terrain' }, - ['2117842222'] = { Name = 'ch3_10_glue' }, - ['-1140411524'] = { Name = 'ch3_10_glue002' }, - ['-951966168'] = { Name = 'ch3_10_glue2' }, - ['1401698060'] = { Name = 'ch3_10_graff' }, - ['-2094266393'] = { Name = 'ch3_10_land_01_decal03' }, - ['35492179'] = { Name = 'ch3_10_land_01b' }, - ['909917033'] = { Name = 'ch3_10_land_02_decal02' }, - ['496571095'] = { Name = 'ch3_10_land_02' }, - ['1349655077'] = { Name = 'ch3_10_land_03_decal02' }, - ['-1889700254'] = { Name = 'ch3_10_land_03' }, - ['-970717207'] = { Name = 'ch3_10_land_04_decals02' }, - ['2032880126'] = { Name = 'ch3_10_land_04' }, - ['1793699195'] = { Name = 'ch3_10_land_05' }, - ['1470924545'] = { Name = 'ch3_10_land_06' }, - ['-965286764'] = { Name = 'ch3_10_land_07' }, - ['-1364249339'] = { Name = 'ch3_10_land_08' }, - ['-1720579445'] = { Name = 'ch3_10_land_09' }, - ['820655661'] = { Name = 'ch3_10_land_10' }, - ['2059129305'] = { Name = 'ch3_10_rbridge' }, - ['1056063697'] = { Name = 'ch3_10_road' }, - ['446856490'] = { Name = 'ch3_10_weed_01' }, - ['-735973326'] = { Name = 'ch3_10_weed_02' }, - ['-1774041919'] = { Name = 'ch3_11__decal001' }, - ['-263785343'] = { Name = 'ch3_11_armco1' }, - ['1901033064'] = { Name = 'ch3_11_armco2' }, - ['1628755443'] = { Name = 'ch3_11_armco3' }, - ['1438039863'] = { Name = 'ch3_11_armco4' }, - ['1130306184'] = { Name = 'ch3_11_armco5' }, - ['-1467292450'] = { Name = 'ch3_11_armco6' }, - ['-1768800019'] = { Name = 'ch3_11_armco7' }, - ['-1935135463'] = { Name = 'ch3_11_armco8' }, - ['2061928854'] = { Name = 'ch3_11_armco9' }, - ['-491910524'] = { Name = 'ch3_11_cabletarp1' }, - ['-2029336656'] = { Name = 'ch3_11_cdec_01h' }, - ['1181754869'] = { Name = 'ch3_11_ch2_11_decal' }, - ['1175698662'] = { Name = 'ch3_11_ch3_armco_10' }, - ['2098047693'] = { Name = 'ch3_11_ch3_armco_11' }, - ['1657370193'] = { Name = 'ch3_11_ch3_armco_12' }, - ['1378407676'] = { Name = 'ch3_11_ch3_armco_13' }, - ['1835469692'] = { Name = 'ch3_11_ch3_armco_14' }, - ['-2002075133'] = { Name = 'ch3_11_ch3_armco_16' }, - ['185550538'] = { Name = 'ch3_11_ch3_armco_17' }, - ['644185462'] = { Name = 'ch3_11_ch3_armco_18' }, - ['814453186'] = { Name = 'ch3_11_ch3_armco_19' }, - ['-1734264607'] = { Name = 'ch3_11_ch3_structures1_b' }, - ['-2134516844'] = { Name = 'ch3_11_ch3_tanksmall' }, - ['538582608'] = { Name = 'ch3_11_chimney1_decal001' }, - ['1242356579'] = { Name = 'ch3_11_des_tankercrash_end' }, - ['-599149826'] = { Name = 'ch3_11_des_tankercrash_start' }, - ['1391354030'] = { Name = 'ch3_11_detail_new4a' }, - ['1402666496'] = { Name = 'ch3_11_detail009' }, - ['1668009666'] = { Name = 'ch3_11_detail3a' }, - ['1073154009'] = { Name = 'ch3_11_detail3c' }, - ['871192768'] = { Name = 'ch3_11_detail4' }, - ['742218974'] = { Name = 'ch3_11_detail4b' }, - ['1380259183'] = { Name = 'ch3_11_detail6' }, - ['1137834121'] = { Name = 'ch3_11_detail7' }, - ['201431831'] = { Name = 'ch3_11_detail7b' }, - ['413290682'] = { Name = 'ch3_11_fan001' }, - ['-1292995633'] = { Name = 'ch3_11_gate_1_hd' }, - ['-1211435954'] = { Name = 'ch3_11_gate_2_hd' }, - ['-1964467423'] = { Name = 'ch3_11_gate_3_hd' }, - ['984406577'] = { Name = 'ch3_11_gate_4_hd' }, - ['-1160753057'] = { Name = 'ch3_11_ground_01' }, - ['-785220317'] = { Name = 'ch3_11_ground_02' }, - ['-2025625274'] = { Name = 'ch3_11_ground_03' }, - ['1471253027'] = { Name = 'ch3_11_ground_04' }, - ['646588365'] = { Name = 'ch3_11_ground_05' }, - ['1949057816'] = { Name = 'ch3_11_ground_06' }, - ['1183672275'] = { Name = 'ch3_11_ground_07' }, - ['341738358'] = { Name = 'ch3_11_ground_08' }, - ['-249545478'] = { Name = 'ch3_11_ground_09' }, - ['-2095849545'] = { Name = 'ch3_11_ground_10' }, - ['1809690947'] = { Name = 'ch3_11_ground_11' }, - ['1619040905'] = { Name = 'ch3_11_ground_12' }, - ['-1907689955'] = { Name = 'ch3_11_ground_13' }, - ['2097501074'] = { Name = 'ch3_11_ground_14' }, - ['719957844'] = { Name = 'ch3_11_ground_15' }, - ['390793239'] = { Name = 'ch3_11_ground_16' }, - ['1178166771'] = { Name = 'ch3_11_ground_17' }, - ['-2114999981'] = { Name = 'ch3_11_ground_18_o' }, - ['868598028'] = { Name = 'ch3_11_ground_18' }, - ['-29698569'] = { Name = 'ch3_11_ground_19' }, - ['-1598334529'] = { Name = 'ch3_11_ground_conc_o' }, - ['1371079303'] = { Name = 'ch3_11_ground_decal03' }, - ['-1701324808'] = { Name = 'ch3_11_jump' }, - ['-1370456270'] = { Name = 'ch3_11_ladder_b' }, - ['-1367591952'] = { Name = 'ch3_11_ladder01' }, - ['-1070147739'] = { Name = 'ch3_11_ladder02' }, - ['1236045313'] = { Name = 'ch3_11_lay_byovy_3' }, - ['-1839648009'] = { Name = 'ch3_11_mground_2_o' }, - ['1825437987'] = { Name = 'ch3_11_mground_2' }, - ['217359003'] = { Name = 'ch3_11_nwdcal01' }, - ['-687819500'] = { Name = 'ch3_11_pipe01' }, - ['-1205074353'] = { Name = 'ch3_11_pipe01b' }, - ['-359044311'] = { Name = 'ch3_11_pipe01c' }, - ['-908944712'] = { Name = 'ch3_11_pipe02' }, - ['1060115317'] = { Name = 'ch3_11_pipe02b' }, - ['1506976263'] = { Name = 'ch3_11_pipe03a_2_lod' }, - ['-473881927'] = { Name = 'ch3_11_pipe03a_2' }, - ['-116062724'] = { Name = 'ch3_11_pipe03a' }, - ['1640453983'] = { Name = 'ch3_11_pipe03b' }, - ['-1937920817'] = { Name = 'ch3_11_pipe03c' }, - ['1621316591'] = { Name = 'ch3_11_pipe04a' }, - ['1247848298'] = { Name = 'ch3_11_pipe04b' }, - ['958858487'] = { Name = 'ch3_11_pipe04c' }, - ['267921154'] = { Name = 'ch3_11_pipe05' }, - ['44960878'] = { Name = 'ch3_11_pipe06' }, - ['1980166954'] = { Name = 'ch3_11_pipe07' }, - ['1748326279'] = { Name = 'ch3_11_pipe08' }, - ['1944361601'] = { Name = 'ch3_11_pipedecal01' }, - ['-1554155150'] = { Name = 'ch3_11_pipedecal02' }, - ['1227200259'] = { Name = 'ch3_11_railing01' }, - ['473605960'] = { Name = 'ch3_11_railing01b' }, - ['166855351'] = { Name = 'ch3_11_railing01c' }, - ['113704033'] = { Name = 'ch3_11_railing01d' }, - ['-158114822'] = { Name = 'ch3_11_railing01e' }, - ['-478857794'] = { Name = 'ch3_11_railing01f' }, - ['-1560917341'] = { Name = 'ch3_11_railing02' }, - ['1824546360'] = { Name = 'ch3_11_railing03' }, - ['1983476010'] = { Name = 'ch3_11_railing04' }, - ['-2061988116'] = { Name = 'ch3_11_railing05' }, - ['-326252419'] = { Name = 'ch3_11_rf_tanker_end_slod' }, - ['1026225904'] = { Name = 'ch3_11_rf_tanker_start_slod' }, - ['1280834262'] = { Name = 'ch3_11_rubbish01' }, - ['1494989652'] = { Name = 'ch3_11_struc15_rail' }, - ['-2006451316'] = { Name = 'ch3_11_structures1' }, - ['1926870575'] = { Name = 'ch3_11_structures12' }, - ['1588366805'] = { Name = 'ch3_11_structures15' }, - ['2052677487'] = { Name = 'ch3_11_structures2' }, - ['-1731035532'] = { Name = 'ch3_11_structures2b' }, - ['1290568854'] = { Name = 'ch3_11_structures4' }, - ['-1781098899'] = { Name = 'ch3_11_structures5' }, - ['1018984'] = { Name = 'ch3_11_structures6_new' }, - ['-1743541582'] = { Name = 'ch3_11_structures6b_new' }, - ['982867936'] = { Name = 'ch3_11_structures9' }, - ['-729433511'] = { Name = 'ch3_11_tamov_01' }, - ['1760672682'] = { Name = 'ch3_11_tankbig' }, - ['-397084148'] = { Name = 'ch3_11_tankerexp_end_dec' }, - ['-475010146'] = { Name = 'ch3_11_tankerexp_end' }, - ['-2077918235'] = { Name = 'ch3_11_tankerexp_grp0_slod' }, - ['1117786725'] = { Name = 'ch3_11_tankerexp_grp0' }, - ['-208919750'] = { Name = 'ch3_11_tankerexp_grp3_slod' }, - ['959905683'] = { Name = 'ch3_11_tankerexp_grp3' }, - ['-587517777'] = { Name = 'ch3_11_tankerexp_petrol' }, - ['-1076771576'] = { Name = 'ch3_11_tankerexp_ptrl2' }, - ['1511591386'] = { Name = 'ch3_11_tankerexp_start_slod' }, - ['-2003469124'] = { Name = 'ch3_11_tankerexp_start' }, - ['-621736190'] = { Name = 'ch3_11_tanksmall_rail01_lod' }, - ['1584325512'] = { Name = 'ch3_11_tanksmall_rail01' }, - ['-1303737526'] = { Name = 'ch3_11_tanksmall_rail02' }, - ['241877889'] = { Name = 'ch3_11_tanksmall_rail04' }, - ['589884669'] = { Name = 'ch3_11_tanksmall_rail05' }, - ['-341515861'] = { Name = 'ch3_11_tbig_rail_lod01' }, - ['395574536'] = { Name = 'ch3_11_tbig_rail01' }, - ['1902883002'] = { Name = 'ch3_11_tbig_rail02' }, - ['1662653463'] = { Name = 'ch3_11_tbig_rail03' }, - ['1318447887'] = { Name = 'ch3_11_tbig_rail04' }, - ['1088901042'] = { Name = 'ch3_11_tbig_rail05' }, - ['-1762624561'] = { Name = 'ch3_11_tbig_rail06' }, - ['-2001608878'] = { Name = 'ch3_11_tbig_rail07' }, - ['1809275886'] = { Name = 'ch3_11_trk_dec00' }, - ['97816522'] = { Name = 'ch3_11_trk_dec02' }, - ['-637716424'] = { Name = 'ch3_11_trk_dec06' }, - ['-875947346'] = { Name = 'ch3_11_trk_dec10' }, - ['1770116643'] = { Name = 'ch3_11_trk_dec14' }, - ['1424960766'] = { Name = 'ch3_11_trk_dec16' }, - ['-15137645'] = { Name = 'ch3_11_trk_dec25' }, - ['1029865509'] = { Name = 'ch3_11_trk_dec32' }, - ['123540475'] = { Name = 'ch3_11_trk_dec36' }, - ['-1421938368'] = { Name = 'ch3_11_trk_dec41' }, - ['-1698475931'] = { Name = 'ch3_11_trk_dec48' }, - ['-1314718468'] = { Name = 'ch3_11_trk_dec52' }, - ['-1170600402'] = { Name = 'ch3_11_trk_dec56' }, - ['935857344'] = { Name = 'ch3_11_trk_dec60' }, - ['106703225'] = { Name = 'ch3_11_trk_dec66' }, - ['1262203423'] = { Name = 'ch3_11_trk_dec72' }, - ['640378871'] = { Name = 'ch3_11_trk_dec74' }, - ['141798536'] = { Name = 'ch3_11_trk_dec76' }, - ['-1937328976'] = { Name = 'ch3_11_trk_dec77' }, - ['103001020'] = { Name = 'ch3_11_trk_dec80' }, - ['-2093575702'] = { Name = 'ch3_11_wattower1' }, - ['-1797638863'] = { Name = 'ch3_11_wattower2' }, - ['22191270'] = { Name = 'ch3_11_weeds_01' }, - ['244037400'] = { Name = 'ch3_11_weeds_02' }, - ['-689911857'] = { Name = 'ch3_11_weeds_03' }, - ['2053672672'] = { Name = 'ch3_11_weeds_05' }, - ['-57574957'] = { Name = 'ch3_11_whirly_parent' }, - ['-1091875848'] = { Name = 'ch3_11_wires_md_06' }, - ['-428138242'] = { Name = 'ch3_11_wires_md_069' }, - ['-1132685978'] = { Name = 'ch3_11_yard01' }, - ['95057815'] = { Name = 'ch3_12_animplane01' }, - ['-303347687'] = { Name = 'ch3_12_animplane02' }, - ['100618162'] = { Name = 'ch3_12_animplane1_lod' }, - ['26298863'] = { Name = 'ch3_12_animplane2_lod' }, - ['1022385496'] = { Name = 'ch3_12_belucky' }, - ['454153329'] = { Name = 'ch3_12_casinodetailsa' }, - ['-305169939'] = { Name = 'ch3_12_casinodetailsb' }, - ['-1535887408'] = { Name = 'ch3_12_casinoovly' }, - ['286261492'] = { Name = 'ch3_12_dcl_00' }, - ['-647145959'] = { Name = 'ch3_12_dcl_00b' }, - ['2076931426'] = { Name = 'ch3_12_emissivea_lod' }, - ['-1517221919'] = { Name = 'ch3_12_emissivea' }, - ['1219710487'] = { Name = 'ch3_12_emissived' }, - ['-1863445814'] = { Name = 'ch3_12_emissivee_lod' }, - ['1818989975'] = { Name = 'ch3_12_emissivee' }, - ['-451597541'] = { Name = 'ch3_12_ff00' }, - ['-1361690141'] = { Name = 'ch3_12_ff00rail01' }, - ['1595875958'] = { Name = 'ch3_12_ff00rail02' }, - ['-1926791546'] = { Name = 'ch3_12_ff00rail03' }, - ['-362183076'] = { Name = 'ch3_12_ff049' }, - ['-1726457964'] = { Name = 'ch3_12_ff049rail01' }, - ['1346782701'] = { Name = 'ch3_12_ff049rail02' }, - ['1388206108'] = { Name = 'ch3_12_ff055' }, - ['33943432'] = { Name = 'ch3_12_ff10' }, - ['1440257844'] = { Name = 'ch3_12_ff12' }, - ['-967494268'] = { Name = 'ch3_12_ff12rail01' }, - ['-735260365'] = { Name = 'ch3_12_ff12rail02' }, - ['705395951'] = { Name = 'ch3_12_ff12rail03' }, - ['-1211557780'] = { Name = 'ch3_12_ff12rail04' }, - ['-22239694'] = { Name = 'ch3_12_ff12rail05' }, - ['221659973'] = { Name = 'ch3_12_ff12rail06' }, - ['-857701046'] = { Name = 'ch3_12_ff16' }, - ['-1564037157'] = { Name = 'ch3_12_ff16b' }, - ['-335461809'] = { Name = 'ch3_12_ff16c' }, - ['-1350088027'] = { Name = 'ch3_12_ff41rail02' }, - ['-1164778481'] = { Name = 'ch3_12_ff46' }, - ['1567288242'] = { Name = 'ch3_12_ff46rail01' }, - ['1789068838'] = { Name = 'ch3_12_ff46rail02' }, - ['83837601'] = { Name = 'ch3_12_ff4rail01' }, - ['-669373428'] = { Name = 'ch3_12_fizzrails01' }, - ['-966817641'] = { Name = 'ch3_12_fizzrails02' }, - ['1035302721'] = { Name = 'ch3_12_fizzrails03' }, - ['737399742'] = { Name = 'ch3_12_fizzrails04' }, - ['559005306'] = { Name = 'ch3_12_fizzrails05' }, - ['269556729'] = { Name = 'ch3_12_fizzrails06' }, - ['1656799579'] = { Name = 'ch3_12_fizzrails07' }, - ['285744619'] = { Name = 'ch3_12_fizzrails08' }, - ['1162053217'] = { Name = 'ch3_12_fizzrails09' }, - ['1725745243'] = { Name = 'ch3_12_fizzrails10' }, - ['-1884382722'] = { Name = 'ch3_12_fizzrails11' }, - ['-1788369552'] = { Name = 'ch3_12_fizzrails12' }, - ['-1306403100'] = { Name = 'ch3_12_fizzrails13' }, - ['-1075545495'] = { Name = 'ch3_12_fizzrails14' }, - ['-406697432'] = { Name = 'ch3_12_fizzrails15' }, - ['-839182694'] = { Name = 'ch3_12_fizzrails16' }, - ['-2075196605'] = { Name = 'ch3_12_fizzrails17' }, - ['-1700974625'] = { Name = 'ch3_12_fizzrails18' }, - ['2028467881'] = { Name = 'ch3_12_ground1_o' }, - ['-1409449821'] = { Name = 'ch3_12_ground1' }, - ['1032276539'] = { Name = 'ch3_12_ground2_o' }, - ['-1119149250'] = { Name = 'ch3_12_ground2' }, - ['1970865178'] = { Name = 'ch3_12_ground3_o' }, - ['-650552550'] = { Name = 'ch3_12_ground3' }, - ['1015879150'] = { Name = 'ch3_12_ground4_o' }, - ['-341835801'] = { Name = 'ch3_12_ground4' }, - ['1211638081'] = { Name = 'ch3_12_hay1' }, - ['1734565783'] = { Name = 'ch3_12_hay2' }, - ['605443182'] = { Name = 'ch3_12_hedgetops01' }, - ['844165347'] = { Name = 'ch3_12_hedgetops02' }, - ['958398137'] = { Name = 'ch3_12_hedgetops03' }, - ['75692496'] = { Name = 'ch3_12_hedgetopsa' }, - ['295965718'] = { Name = 'ch3_12_hedgetopsb' }, - ['-1840671393'] = { Name = 'ch3_12_hedgetopsc' }, - ['-1602473532'] = { Name = 'ch3_12_hedgetopsd' }, - ['-1226453203'] = { Name = 'ch3_12_landingdecals' }, - ['874636820'] = { Name = 'ch3_12_landingdecalsb' }, - ['1330934962'] = { Name = 'ch3_12_paddockfencea_hi' }, - ['224636530'] = { Name = 'ch3_12_paddockfenceb_hi' }, - ['902852738'] = { Name = 'ch3_12_paddockfencec_hi' }, - ['312209214'] = { Name = 'ch3_12_paddockfenced_hi' }, - ['457109464'] = { Name = 'ch3_12_paddockfencef_hi' }, - ['301808585'] = { Name = 'ch3_12_paddockfenceg_hi' }, - ['868425575'] = { Name = 'ch3_12_paddockfenceh_hi' }, - ['-777165813'] = { Name = 'ch3_12_paddockfencei_hi' }, - ['-1323174630'] = { Name = 'ch3_12_paddockfencej_hi' }, - ['965609485'] = { Name = 'ch3_12_paddockfencek_hi' }, - ['-2104771919'] = { Name = 'ch3_12_paddockfencel_hi' }, - ['1106428156'] = { Name = 'ch3_12_paddockfencem_hi' }, - ['-785368230'] = { Name = 'ch3_12_paddockfencema_hi' }, - ['-1731358788'] = { Name = 'ch3_12_paddockfencen_hi' }, - ['-1282517078'] = { Name = 'ch3_12_props_combo10_slod' }, - ['793110064'] = { Name = 'ch3_12_props_combo11_slod' }, - ['1716345502'] = { Name = 'ch3_12_props_combo12_slod' }, - ['-2031424618'] = { Name = 'ch3_12_props_combo13_slod' }, - ['-2054937662'] = { Name = 'ch3_12_props_combo14_slod' }, - ['96833455'] = { Name = 'ch3_12_props_combo15_slod' }, - ['1135573407'] = { Name = 'ch3_12_props_combo17_slod' }, - ['-1410439771'] = { Name = 'ch3_12_props_combo18_slod' }, - ['-710513263'] = { Name = 'ch3_12_props_para_slod1' }, - ['-630456418'] = { Name = 'ch3_12_rails01' }, - ['915811770'] = { Name = 'ch3_12_rails01b' }, - ['2037857656'] = { Name = 'ch3_12_rest' }, - ['1285014320'] = { Name = 'ch3_12_resta' }, - ['-19814491'] = { Name = 'ch3_12_restb' }, - ['-1663474758'] = { Name = 'ch3_12_restc' }, - ['-1903179993'] = { Name = 'ch3_12_restd' }, - ['-1657521904'] = { Name = 'ch3_12_smallpaddocka' }, - ['-1545124234'] = { Name = 'ch3_12_smallpaddockb' }, - ['-1313807863'] = { Name = 'ch3_12_smallpaddockc' }, - ['1809372758'] = { Name = 'ch3_12_smallpaddockd' }, - ['-952003274'] = { Name = 'ch3_12_smallpaddockda' }, - ['567028211'] = { Name = 'ch3_12_stables1_o' }, - ['-214444329'] = { Name = 'ch3_12_stables1' }, - ['-245163413'] = { Name = 'ch3_12_stables2a' }, - ['1672183550'] = { Name = 'ch3_12_stables2b' }, - ['1878093086'] = { Name = 'ch3_12_stablesovly1' }, - ['670470424'] = { Name = 'ch3_12_stablesovly1b' }, - ['108130243'] = { Name = 'ch3_12_stands001' }, - ['746363832'] = { Name = 'ch3_12_stands001pole01' }, - ['839952096'] = { Name = 'ch3_12_stands001pole02' }, - ['384635045'] = { Name = 'ch3_12_stands002' }, - ['958627060'] = { Name = 'ch3_12_stands002boards1' }, - ['115447921'] = { Name = 'ch3_12_stands002boards2' }, - ['2106326798'] = { Name = 'ch3_12_stands002pole01' }, - ['1339204508'] = { Name = 'ch3_12_stands002pole02' }, - ['505004075'] = { Name = 'ch3_12_stands002pole03' }, - ['810509462'] = { Name = 'ch3_12_stands002pole04' }, - ['-1304598416'] = { Name = 'ch3_12_stands002pole05' }, - ['186270519'] = { Name = 'ch3_12_stands002rail01' }, - ['-920207487'] = { Name = 'ch3_12_stands002rail02' }, - ['-474778470'] = { Name = 'ch3_12_stands002rail04' }, - ['-1243211520'] = { Name = 'ch3_12_stands002rail05' }, - ['-1714197193'] = { Name = 'ch3_12_stands002rail16' }, - ['651263829'] = { Name = 'ch3_12_stands002rail44' }, - ['-801012347'] = { Name = 'ch3_12_stands002steps01' }, - ['-32022224'] = { Name = 'ch3_12_stands002steps02' }, - ['-89302436'] = { Name = 'ch3_12_stands002steps03' }, - ['949868116'] = { Name = 'ch3_12_stands002steps04' }, - ['1416905737'] = { Name = 'ch3_12_standsovly1' }, - ['1707206308'] = { Name = 'ch3_12_standsovly2' }, - ['871957267'] = { Name = 'ch3_12_standsovly3' }, - ['656752851'] = { Name = 'ch3_12_standsrails1' }, - ['1028812077'] = { Name = 'ch3_12_standsrails2' }, - ['1421286394'] = { Name = 'ch3_12_standsrails3' }, - ['-1652855133'] = { Name = 'ch3_12_track02rail01' }, - ['1798670872'] = { Name = 'ch3_12_track02rail04' }, - ['1861489033'] = { Name = 'ch3_12_track02rail06' }, - ['1507845985'] = { Name = 'ch3_12_track02rail08' }, - ['174475611'] = { Name = 'ch3_12_track02rail10' }, - ['-820981071'] = { Name = 'ch3_12_track02rail11' }, - ['-1948726210'] = { Name = 'ch3_12_track02rail15' }, - ['-1875389200'] = { Name = 'ch3_12_track02rail18' }, - ['-1374744306'] = { Name = 'ch3_12_track02rail21' }, - ['1511221784'] = { Name = 'ch3_12_track02rail24' }, - ['-272525950'] = { Name = 'ch3_12_track02rail27' }, - ['347037533'] = { Name = 'ch3_12_track02rail29' }, - ['-689773411'] = { Name = 'ch3_12_track02rail32' }, - ['730631659'] = { Name = 'ch3_12_track02rail35' }, - ['-274262483'] = { Name = 'ch3_12_track02rail38' }, - ['-432905600'] = { Name = 'ch3_12_trackfence01' }, - ['-664287509'] = { Name = 'ch3_12_trackfence02' }, - ['-1591453599'] = { Name = 'ch3_12_trackfence03' }, - ['-84252174'] = { Name = 'ch3_12_trackfence03b' }, - ['-1814643258'] = { Name = 'ch3_12_trackfence04' }, - ['1688670023'] = { Name = 'ch3_12_trackfencea' }, - ['-775060846'] = { Name = 'ch3_12_trackovly1a' }, - ['-812745196'] = { Name = 'ch3_12_trackovly1b' }, - ['-108474232'] = { Name = 'ch3_12_water_a' }, - ['-481549297'] = { Name = 'ch3_12_water_b' }, - ['1925166653'] = { Name = 'ch3_13_armco_lb_03' }, - ['-1580416506'] = { Name = 'ch3_13_armco_lb_03b' }, - ['-1919882273'] = { Name = 'ch3_13_armco_lb_04' }, - ['339818737'] = { Name = 'ch3_13_bch_00' }, - ['116301388'] = { Name = 'ch3_13_bch_01' }, - ['-261394106'] = { Name = 'ch3_13_bch_02' }, - ['-481437941'] = { Name = 'ch3_13_bch_03' }, - ['-1140782990'] = { Name = 'ch3_13_bch_05' }, - ['-1447959600'] = { Name = 'ch3_13_bch_06' }, - ['-1734852195'] = { Name = 'ch3_13_bch_07' }, - ['-1410860635'] = { Name = 'ch3_13_car_pk_01' }, - ['-1880768967'] = { Name = 'ch3_13_cp_barr_01' }, - ['1948246601'] = { Name = 'ch3_13_decls00' }, - ['1709000132'] = { Name = 'ch3_13_decls01' }, - ['-526107820'] = { Name = 'ch3_13_decls02' }, - ['-765026599'] = { Name = 'ch3_13_decls03' }, - ['956886044'] = { Name = 'ch3_13_decls04' }, - ['784586642'] = { Name = 'ch3_13_decls05' }, - ['-438843977'] = { Name = 'ch3_13_decls06' }, - ['-1754978093'] = { Name = 'ch3_13_decls07' }, - ['-495894806'] = { Name = 'ch3_13_decls08' }, - ['-207068840'] = { Name = 'ch3_13_decls09' }, - ['1690892875'] = { Name = 'ch3_13_decls10' }, - ['1265420179'] = { Name = 'ch3_13_decls11' }, - ['-220424608'] = { Name = 'ch3_13_decls12' }, - ['-533729017'] = { Name = 'ch3_13_decls13' }, - ['511405469'] = { Name = 'ch3_13_decls14' }, - ['210487742'] = { Name = 'ch3_13_decls15' }, - ['-1474625314'] = { Name = 'ch3_13_decls16' }, - ['-1655575736'] = { Name = 'ch3_13_decls17' }, - ['-878819356'] = { Name = 'ch3_13_decls18' }, - ['-1192254841'] = { Name = 'ch3_13_decls19' }, - ['-1569655174'] = { Name = 'ch3_13_decls20' }, - ['-1867558153'] = { Name = 'ch3_13_decls21' }, - ['1051504371'] = { Name = 'ch3_13_decls22' }, - ['1496933388'] = { Name = 'ch3_13_decls24' }, - ['1198768257'] = { Name = 'ch3_13_decls25' }, - ['66009445'] = { Name = 'ch3_13_decls26' }, - ['-189752600'] = { Name = 'ch3_13_decls27' }, - ['589690834'] = { Name = 'ch3_13_decls28' }, - ['283398991'] = { Name = 'ch3_13_decls29' }, - ['1668151741'] = { Name = 'ch3_13_decls30' }, - ['1351668739'] = { Name = 'ch3_13_decls31' }, - ['325736891'] = { Name = 'ch3_13_decls32' }, - ['808260436'] = { Name = 'ch3_13_decls34' }, - ['1289047204'] = { Name = 'ch3_13_decls35' }, - ['-866989171'] = { Name = 'ch3_13_decls36' }, - ['-93837385'] = { Name = 'ch3_13_decls37' }, - ['-191816695'] = { Name = 'ch3_13_decls38' }, - ['585365678'] = { Name = 'ch3_13_decls39' }, - ['-1925034319'] = { Name = 'ch3_13_decls40' }, - ['989014548'] = { Name = 'ch3_13_decls41' }, - ['582973865'] = { Name = 'ch3_13_decls42' }, - ['283989509'] = { Name = 'ch3_13_decls43' }, - ['1174356012'] = { Name = 'ch3_13_decls44' }, - ['104808517'] = { Name = 'ch3_13_decls46' }, - ['876518487'] = { Name = 'ch3_13_decls47' }, - ['1666415232'] = { Name = 'ch3_13_decls48' }, - ['1353274668'] = { Name = 'ch3_13_decls49' }, - ['595524564'] = { Name = 'ch3_13_decls50' }, - ['352870119'] = { Name = 'ch3_13_decls51' }, - ['-1836950995'] = { Name = 'ch3_13_decls52' }, - ['1079031243'] = { Name = 'ch3_13_decls53' }, - ['-1262444879'] = { Name = 'ch3_13_decls56' }, - ['-496272890'] = { Name = 'ch3_13_decls57' }, - ['-778184597'] = { Name = 'ch3_13_decls58' }, - ['2133472129'] = { Name = 'ch3_13_decls59' }, - ['-1089752029'] = { Name = 'ch3_13_decls60' }, - ['-828026026'] = { Name = 'ch3_13_decls61' }, - ['-301526459'] = { Name = 'ch3_13_decls62' }, - ['-61722917'] = { Name = 'ch3_13_decls63' }, - ['198495712'] = { Name = 'ch3_13_decls64' }, - ['429615469'] = { Name = 'ch3_13_decls65' }, - ['-116607390'] = { Name = 'ch3_13_drain_01' }, - ['-1970049957'] = { Name = 'ch3_13_drain2' }, - ['65004367'] = { Name = 'ch3_13_foamwet_01' }, - ['-188070620'] = { Name = 'ch3_13_foamwet_02' }, - ['-1625384506'] = { Name = 'ch3_13_foamwet_03' }, - ['-1366411095'] = { Name = 'ch3_13_foamwet_04' }, - ['-1597793004'] = { Name = 'ch3_13_foamwet_05' }, - ['-837224514'] = { Name = 'ch3_13_foamwet_06' }, - ['-1136438253'] = { Name = 'ch3_13_foamwet_07' }, - ['287747640'] = { Name = 'ch3_13_hlandb_02h' }, - ['-686351193'] = { Name = 'ch3_13_land_03' }, - ['80703927'] = { Name = 'ch3_13_land_05b' }, - ['-1787042221'] = { Name = 'ch3_13_land_c_01' }, - ['1869322803'] = { Name = 'ch3_13_land_c_02' }, - ['-282715734'] = { Name = 'ch3_13_land_c_03' }, - ['13876485'] = { Name = 'ch3_13_land_c_04' }, - ['1251102849'] = { Name = 'ch3_13_land_c_05' }, - ['58835549'] = { Name = 'ch3_13_land_c_07' }, - ['363095714'] = { Name = 'ch3_13_land_c_08' }, - ['425968355'] = { Name = 'ch3_13_land_c_12b' }, - ['-1671470689'] = { Name = 'ch3_13_land_m_01' }, - ['-915424317'] = { Name = 'ch3_13_land_m_02' }, - ['-1154146482'] = { Name = 'ch3_13_land_m_03' }, - ['-453348648'] = { Name = 'ch3_13_land_m_04' }, - ['-692529579'] = { Name = 'ch3_13_land_m_05' }, - ['472572220'] = { Name = 'ch3_13_land_m_06' }, - ['741156297'] = { Name = 'ch3_13_land_r_02' }, - ['471041430'] = { Name = 'ch3_13_land_r_03' }, - ['-1187136711'] = { Name = 'ch3_13_landb_01' }, - ['1703419183'] = { Name = 'ch3_13_props_ch3_13_towels' }, - ['1133335174'] = { Name = 'ch3_13_rk_ins00' }, - ['517277974'] = { Name = 'ch3_13_rk_ins01' }, - ['-38970024'] = { Name = 'ch3_13_rk_ins01a' }, - ['826781179'] = { Name = 'ch3_13_rk_ins02' }, - ['2052538393'] = { Name = 'ch3_13_rk_ins03' }, - ['-1933253388'] = { Name = 'ch3_13_rk_ins04' }, - ['1593543010'] = { Name = 'ch3_13_rk_ins05' }, - ['1899113935'] = { Name = 'ch3_13_rk_ins06' }, - ['-1164722027'] = { Name = 'ch3_13_rk_ins07' }, - ['-959388034'] = { Name = 'ch3_13_sea_end00' }, - ['-1192113472'] = { Name = 'ch3_13_sea_end01' }, - ['1910291607'] = { Name = 'ch3_13_sea_end02' }, - ['1427669775'] = { Name = 'ch3_13_sea_end03' }, - ['420219639'] = { Name = 'ch3_13_sea_end04' }, - ['2083311927'] = { Name = 'ch3_13_sea_end05' }, - ['896975820'] = { Name = 'ch3_13_sea_end06' }, - ['657205047'] = { Name = 'ch3_13_sea_end07' }, - ['-539191143'] = { Name = 'ch3_13_sea_end08' }, - ['-1042652276'] = { Name = 'ch3_13_sea_sbed_03' }, - ['-676107'] = { Name = 'ch3_13_sea_sbed_d_04' }, - ['-1079162387'] = { Name = 'ch3_13_sea_uw1_01' }, - ['-417523504'] = { Name = 'ch3_13_sea_uw1_02' }, - ['-312728242'] = { Name = 'ch3_13_sea_uw1_03' }, - ['175792010'] = { Name = 'ch3_13_sea_uw1_04' }, - ['418446455'] = { Name = 'ch3_13_sea_uw1_05' }, - ['-200691023'] = { Name = 'ch3_13_sea_uw1_06' }, - ['1238130229'] = { Name = 'ch3_13_sea_uw1_07' }, - ['-18397076'] = { Name = 'ch3_13_sea_uw1_08' }, - ['-442493474'] = { Name = 'ch3_13_sea_uw1_09' }, - ['1894559077'] = { Name = 'ch3_13_sea_uw1_10' }, - ['-1088697918'] = { Name = 'ch3_13_sea_uw1_11' }, - ['-520974989'] = { Name = 'ch3_13_sea_uw1_12' }, - ['-59816852'] = { Name = 'ch3_13_sea_uw1_14' }, - ['938261350'] = { Name = 'ch3_13_sea_uw1_17' }, - ['-240317477'] = { Name = 'ch3_13_sea_uw1_18_lod' }, - ['1059211729'] = { Name = 'ch3_13_sea_uw1_18' }, - ['1400402557'] = { Name = 'ch3_13_sea_uw1_19' }, - ['-1584708350'] = { Name = 'ch3_13_sea_uw1_20_lod' }, - ['-529625697'] = { Name = 'ch3_13_sea_uw1_20' }, - ['-307746798'] = { Name = 'ch3_13_sea_uw1_21' }, - ['900544539'] = { Name = 'ch3_13_sea_uw1_22' }, - ['65459343'] = { Name = 'ch3_13_sea_uw1_23' }, - ['1607797870'] = { Name = 'ch3_13_sea_uw1_29' }, - ['396623153'] = { Name = 'ch3_13_sea_uw1_30' }, - ['-1972496916'] = { Name = 'ch3_13_sea_uw1_31_lod' }, - ['-436463134'] = { Name = 'ch3_13_sea_uw1_31' }, - ['436699640'] = { Name = 'ch3_13_sea_uw1_32' }, - ['139943576'] = { Name = 'ch3_13_sea_uw1_33' }, - ['1049447171'] = { Name = 'ch3_13_sea_uw1_34' }, - ['1285318433'] = { Name = 'ch3_13_sea_uw1_35' }, - ['-1741816277'] = { Name = 'ch3_13_sea_uw1_36' }, - ['-1436147045'] = { Name = 'ch3_13_sea_uw1_37' }, - ['1041252010'] = { Name = 'ch3_13_sea_uw1_dec_01' }, - ['1471508980'] = { Name = 'ch3_13_sea_uw1_dec_03' }, - ['1225315483'] = { Name = 'ch3_13_sea_uw1_dec_04' }, - ['1695026329'] = { Name = 'ch3_13_sea_uw1_dec_05' }, - ['-1873190085'] = { Name = 'ch3_13_sea_uw1_dec_06' }, - ['-2103523386'] = { Name = 'ch3_13_sea_uw1_dec_07' }, - ['-1132643438'] = { Name = 'ch3_13_sea_uw1_dec_08' }, - ['14468180'] = { Name = 'ch3_13_sea_uw1_dec_09' }, - ['-1185467286'] = { Name = 'ch3_13_sea_uw1_dec_10' }, - ['-999732594'] = { Name = 'ch3_13_sea_uw1_dec_11' }, - ['-690229389'] = { Name = 'ch3_13_sea_uw1_dec_12' }, - ['-505215615'] = { Name = 'ch3_13_sea_uw1_dec_13' }, - ['701404227'] = { Name = 'ch3_13_sea_uw1_dec_15' }, - ['529563591'] = { Name = 'ch3_13_sea_uw1_dec_16' }, - ['241622388'] = { Name = 'ch3_13_sea_uw1_dec_17' }, - ['-64669455'] = { Name = 'ch3_13_sea_uw1_dec_18' }, - ['-488438163'] = { Name = 'ch3_13_sea_uw1_dec_19' }, - ['-1929785280'] = { Name = 'ch3_13_sea_uw1_dec_20' }, - ['-2110539084'] = { Name = 'ch3_13_sea_uw1_dec_21' }, - ['-665164028'] = { Name = 'ch3_13_sea_uw1_dec_22' }, - ['-943405607'] = { Name = 'ch3_13_sea_uw1_dec_23' }, - ['-1140478373'] = { Name = 'ch3_13_sea_uw1_dec_24' }, - ['690468368'] = { Name = 'ch3_13_sea_uwb_00' }, - ['393089693'] = { Name = 'ch3_13_sea_uwb_01' }, - ['1120299341'] = { Name = 'ch3_13_sea_uwb_02' }, - ['851429696'] = { Name = 'ch3_13_sea_uwb_03' }, - ['1614750790'] = { Name = 'ch3_13_sea_uwb_04' }, - ['1317109963'] = { Name = 'ch3_13_sea_uwb_05' }, - ['2142298921'] = { Name = 'ch3_13_sea_uwb_06' }, - ['-2076855252'] = { Name = 'ch3_13_sea_uwb_d_00' }, - ['-1158110795'] = { Name = 'ch3_13_sea_uwb_d_01' }, - ['-610391698'] = { Name = 'ch3_13_sea_wreck_00' }, - ['2146398702'] = { Name = 'ch3_13_sea_wreck_01' }, - ['1279527576'] = { Name = 'ch3_13_sea_wreck_02' }, - ['-1550501575'] = { Name = 'ch3_13_sea_wreck_03' }, - ['508610414'] = { Name = 'ch3_13_sea_wreck_decal' }, - ['1602759496'] = { Name = 'ch3_13_sea_wreck_lod' }, - ['-1704574113'] = { Name = 'ch3_13_wall_00' }, - ['-1344442803'] = { Name = 'ch3_13_wall_01' }, - ['-63071912'] = { Name = 'ch3_13_waves_02' }, - ['175420870'] = { Name = 'ch3_13_waves_03' }, - ['-1157978167'] = { Name = 'ch3_14_blend01' }, - ['78986045'] = { Name = 'ch3_14_blend02' }, - ['-1902660827'] = { Name = 'ch3_14_clff00' }, - ['-646428443'] = { Name = 'ch3_14_clff01' }, - ['-377886488'] = { Name = 'ch3_14_clff02' }, - ['-1210808930'] = { Name = 'ch3_14_clff03' }, - ['-1457285434'] = { Name = 'ch3_14_coastdecs04' }, - ['-758650354'] = { Name = 'ch3_14_coastdecs05' }, - ['-1579711982'] = { Name = 'ch3_14_coastdecs10' }, - ['165663265'] = { Name = 'ch3_14_coastdecs11' }, - ['478967674'] = { Name = 'ch3_14_coastdecs12' }, - ['564878859'] = { Name = 'ch3_14_foam_01' }, - ['58007967'] = { Name = 'ch3_14_foam_02' }, - ['335104871'] = { Name = 'ch3_14_landdcal_01' }, - ['-448444356'] = { Name = 'ch3_14_landm_00' }, - ['-257268043'] = { Name = 'ch3_14_landm_00b' }, - ['1079148117'] = { Name = 'ch3_14_landm_01' }, - ['177214161'] = { Name = 'ch3_14_landm_02' }, - ['1880975325'] = { Name = 'ch3_14_landm_02b' }, - ['1116996280'] = { Name = 'ch3_14_landm_03' }, - ['1414702645'] = { Name = 'ch3_14_landm_04' }, - ['409421555'] = { Name = 'ch3_14_landm_05_decal' }, - ['1728039823'] = { Name = 'ch3_14_landm_05' }, - ['-1535685309'] = { Name = 'ch3_14_lnddecs01' }, - ['1067123596'] = { Name = 'ch3_14_lnddecs03' }, - ['-549731633'] = { Name = 'ch3_14_lnddecs04' }, - ['-1859606870'] = { Name = 'ch3_14_lnddecs05' }, - ['-1140097937'] = { Name = 'ch3_14_lnddecs06' }, - ['-1497017885'] = { Name = 'ch3_14_lnddecs07' }, - ['643879192'] = { Name = 'ch3_14_lnddecs08' }, - ['1347704042'] = { Name = 'ch3_14_lnddecs10' }, - ['415000007'] = { Name = 'ch3_14_lnddecs11' }, - ['-427196062'] = { Name = 'ch3_14_lnddecs12' }, - ['-700023784'] = { Name = 'ch3_14_rocks_00' }, - ['-1055632972'] = { Name = 'ch3_14_rocks_01' }, - ['1213661262'] = { Name = 'ch3_14_rocks_015' }, - ['616118543'] = { Name = 'ch3_14_rocks_017' }, - ['-1857252808'] = { Name = 'ch3_14_rocks_019' }, - ['759613690'] = { Name = 'ch3_14_rocks_020' }, - ['-1535141689'] = { Name = 'ch3_14_rocks_04' }, - ['-1236714406'] = { Name = 'ch3_14_rocks_05' }, - ['-906402886'] = { Name = 'ch3_14_rocks_06' }, - ['1864609292'] = { Name = 'ch3_14_rocks_09' }, - ['399474809'] = { Name = 'ch3_14_rocks_10' }, - ['167634138'] = { Name = 'ch3_14_rocks_11' }, - ['-62142090'] = { Name = 'ch3_14_rocks_12' }, - ['-296669823'] = { Name = 'ch3_14_rocks_13' }, - ['208246685'] = { Name = 'ch3_14_sea_uw_dec_00' }, - ['1750060904'] = { Name = 'ch3_14_sea_uw_dec_02' }, - ['1419913229'] = { Name = 'ch3_14_sea_uw_dec_03' }, - ['1130694035'] = { Name = 'ch3_14_sea_uw_dec_04' }, - ['1503311103'] = { Name = 'ch3_14_sea_uw1_00' }, - ['1270585665'] = { Name = 'ch3_14_sea_uw1_01' }, - ['-1363026096'] = { Name = 'ch3_14_sea_uw1_02' }, - ['2132508676'] = { Name = 'ch3_14_sea_uw1_03' }, - ['1916921425'] = { Name = 'ch3_14_sea_uw1_04' }, - ['-380574295'] = { Name = 'ch3_14_sea_uw1_05_lod' }, - ['1689307951'] = { Name = 'ch3_14_sea_uw1_05' }, - ['2047938574'] = { Name = 'ch3_14_sea_uw1_06_lod' }, - ['-409153275'] = { Name = 'ch3_14_sea_uw1_06' }, - ['6465491'] = { Name = 'ch3_14b_bch_uwcliff1' }, - ['-241726915'] = { Name = 'ch3_14b_bch_uwcliff2' }, - ['1828124578'] = { Name = 'ch3_14b_cliff_10a' }, - ['1522357039'] = { Name = 'ch3_14b_cliff_10b' }, - ['1753661745'] = { Name = 'ch3_14b_cst_cbed008' }, - ['-1637274379'] = { Name = 'ch3_14b_cst_cbed009' }, - ['153364565'] = { Name = 'ch3_14b_cst_cbed01' }, - ['-294587669'] = { Name = 'ch3_14b_cst_cbed04' }, - ['-1628203877'] = { Name = 'ch3_14b_cst_cbedbb' }, - ['1907228421'] = { Name = 'ch3_14b_cst_land01' }, - ['1534579353'] = { Name = 'ch3_14b_cst_land02' }, - ['222410286'] = { Name = 'ch3_14b_cst_land03' }, - ['-149780016'] = { Name = 'ch3_14b_cst_land04' }, - ['1972595899'] = { Name = 'ch3_14b_cstbeach_01' }, - ['-1569077625'] = { Name = 'ch3_14b_cstbeach_02' }, - ['-567558678'] = { Name = 'ch3_14b_cstbeach_04' }, - ['-863298903'] = { Name = 'ch3_14b_cstbeach_05' }, - ['-716198858'] = { Name = 'ch3_14b_cstbeach_06' }, - ['1627500299'] = { Name = 'ch3_14b_dcl02a' }, - ['1104310441'] = { Name = 'ch3_14b_dcl02b' }, - ['341218738'] = { Name = 'ch3_14b_dcl02c' }, - ['816307884'] = { Name = 'ch3_14b_dcl07b' }, - ['1510355304'] = { Name = 'ch3_14b_dcl07c' }, - ['-1042139157'] = { Name = 'ch3_14b_decss01' }, - ['-1349086380'] = { Name = 'ch3_14b_decss02' }, - ['-935279448'] = { Name = 'ch3_14b_decss04' }, - ['48740869'] = { Name = 'ch3_14b_decss06' }, - ['-1470036747'] = { Name = 'ch3_14b_decss09' }, - ['562206698'] = { Name = 'ch3_14b_decss12' }, - ['906412274'] = { Name = 'ch3_14b_decss14' }, - ['1348924858'] = { Name = 'ch3_14b_decss16' }, - ['1125374740'] = { Name = 'ch3_14b_decss17' }, - ['-755213217'] = { Name = 'ch3_14b_decss23' }, - ['-459472992'] = { Name = 'ch3_14b_decss24' }, - ['1697054902'] = { Name = 'ch3_14b_decss25' }, - ['2005542268'] = { Name = 'ch3_14b_decss26' }, - ['-1581024786'] = { Name = 'ch3_14b_decss27' }, - ['872029785'] = { Name = 'ch3_14b_decss28' }, - ['1142931108'] = { Name = 'ch3_14b_decss29' }, - ['-798160627'] = { Name = 'ch3_14b_decss30' }, - ['1277362295'] = { Name = 'ch3_14b_decss31' }, - ['-1162289755'] = { Name = 'ch3_14b_decss32' }, - ['-1470285586'] = { Name = 'ch3_14b_decss33' }, - ['-1750132846'] = { Name = 'ch3_14b_decss34' }, - ['927848145'] = { Name = 'ch3_14b_decss35' }, - ['646395204'] = { Name = 'ch3_14b_decss36' }, - ['347902383'] = { Name = 'ch3_14b_decss37' }, - ['1686023870'] = { Name = 'ch3_14b_decss52' }, - ['1468568786'] = { Name = 'ch3_14b_decss53' }, - ['-1983710906'] = { Name = 'ch3_14b_decss54' }, - ['-415583168'] = { Name = 'ch3_14b_decss55' }, - ['-107336900'] = { Name = 'ch3_14b_foamwet_01' }, - ['991425023'] = { Name = 'ch3_14b_foamwet_02_a' }, - ['684248417'] = { Name = 'ch3_14b_foamwet_02_b' }, - ['513292544'] = { Name = 'ch3_14b_foamwet_02_c' }, - ['-156654129'] = { Name = 'ch3_14b_foamwet_03' }, - ['1629518523'] = { Name = 'ch3_14b_foamwet_04' }, - ['1397088006'] = { Name = 'ch3_14b_foamwet_05' }, - ['1035121632'] = { Name = 'ch3_14b_foamwet_06' }, - ['738267261'] = { Name = 'ch3_14b_foamwet_07' }, - ['631937000'] = { Name = 'ch3_14b_landm_00' }, - ['-1553460383'] = { Name = 'ch3_14b_landm_01' }, - ['1704112474'] = { Name = 'ch3_14b_landm_010' }, - ['-658276841'] = { Name = 'ch3_14b_landm_02' }, - ['-1131133511'] = { Name = 'ch3_14b_landm_03' }, - ['-358407718'] = { Name = 'ch3_14b_landm_04' }, - ['1879059602'] = { Name = 'ch3_14b_landm_05' }, - ['1573750829'] = { Name = 'ch3_14b_landm_06' }, - ['-2053187633'] = { Name = 'ch3_14b_landm_07' }, - ['-744614841'] = { Name = 'ch3_14b_landm_07b' }, - ['-1283345516'] = { Name = 'ch3_14b_landm_08' }, - ['1261150672'] = { Name = 'ch3_14b_rck_01' }, - ['1090686334'] = { Name = 'ch3_14b_rck_02' }, - ['1704580780'] = { Name = 'ch3_14b_rck_03' }, - ['326021719'] = { Name = 'ch3_14b_rck_04' }, - ['-1815006434'] = { Name = 'ch3_14b_rck_05' }, - ['-1984815392'] = { Name = 'ch3_14b_rck_06' }, - ['-1236994043'] = { Name = 'ch3_14b_rck_07' }, - ['-1643067491'] = { Name = 'ch3_14b_rck_08' }, - ['-1132821396'] = { Name = 'ch3_14b_rck_09' }, - ['255568081'] = { Name = 'ch3_14b_rck_10' }, - ['-1876088138'] = { Name = 'ch3_14b_rck_11' }, - ['-1500978745'] = { Name = 'ch3_14b_sanddec_a' }, - ['312850951'] = { Name = 'ch3_14b_sanddec_b' }, - ['-125925959'] = { Name = 'ch3_14b_sanddec_c' }, - ['2060145578'] = { Name = 'ch3_14b_sea_1123' }, - ['629662844'] = { Name = 'ch3_14b_sea_1123b' }, - ['-1993280853'] = { Name = 'ch3_14b_sea_n00_lod' }, - ['-1566826144'] = { Name = 'ch3_14b_sea_n00' }, - ['705371263'] = { Name = 'ch3_14b_sea_n01_lod' }, - ['549854638'] = { Name = 'ch3_14b_sea_n01' }, - ['2049035173'] = { Name = 'ch3_14b_sea_n20_lod' }, - ['1550276003'] = { Name = 'ch3_14b_sea_n20' }, - ['1702343841'] = { Name = 'ch3_14b_sea_nd1' }, - ['1683764543'] = { Name = 'ch3_14b_sea_nd122' }, - ['1873987863'] = { Name = 'ch3_14b_sea_nd2' }, - ['-2071274622'] = { Name = 'ch3_14b_sea_seawd1' }, - ['-1831885056'] = { Name = 'ch3_14b_sea_uw_dec_00' }, - ['411972251'] = { Name = 'ch3_14b_sea_uw_dec_01' }, - ['130715924'] = { Name = 'ch3_14b_sea_uw_dec_02' }, - ['-100076143'] = { Name = 'ch3_14b_sea_uw_dec_03' }, - ['-750082027'] = { Name = 'ch3_14b_sea_uw_dec_04' }, - ['1434922124'] = { Name = 'ch3_14b_sea_uw_dec_05' }, - ['1086456578'] = { Name = 'ch3_14b_sea_uw_dec_06' }, - ['856975271'] = { Name = 'ch3_14b_sea_uw_dec_07' }, - ['744249911'] = { Name = 'ch3_14b_sea_uw_dec_08' }, - ['-1421780993'] = { Name = 'ch3_14b_sea_uw_dec_09' }, - ['732453871'] = { Name = 'ch3_14b_sea_uw_dec_10' }, - ['-192320078'] = { Name = 'ch3_14b_sea_uw_dec_11' }, - ['-1102905050'] = { Name = 'ch3_14b_sea_uw_dec_12' }, - ['403715263'] = { Name = 'ch3_14b_sea_uw_dec_13' }, - ['1909450813'] = { Name = 'ch3_14b_sea_uw_dec_14' }, - ['932410309'] = { Name = 'ch3_14b_sea_uw_dec_15' }, - ['-793075443'] = { Name = 'ch3_14b_sea_uw1_00' }, - ['780164267'] = { Name = 'ch3_14b_sea_uw1_01' }, - ['406925357'] = { Name = 'ch3_14b_sea_uw1_02' }, - ['201496496'] = { Name = 'ch3_14b_sea_uw1_03' }, - ['-165254152'] = { Name = 'ch3_14b_sea_uw1_04' }, - ['-405483691'] = { Name = 'ch3_14b_sea_uw1_05' }, - ['-778329373'] = { Name = 'ch3_14b_sea_uw1_06' }, - ['-1018100146'] = { Name = 'ch3_14b_sea_uw1_07' }, - ['-217283607'] = { Name = 'ch3_14b_sea_uw1_08_lod' }, - ['-1361126038'] = { Name = 'ch3_14b_sea_uw1_08' }, - ['-1123059257'] = { Name = 'ch3_14b_sea_uw1_09' }, - ['2107097887'] = { Name = 'ch3_14b_sea_uw1_10_lod' }, - ['1834703692'] = { Name = 'ch3_14b_sea_uw1_10' }, - ['2078079055'] = { Name = 'ch3_14b_sea_uw1_11' }, - ['-1909285638'] = { Name = 'ch3_14b_sea_uw1_12' }, - ['-1738034844'] = { Name = 'ch3_14b_sea_uw1_13' }, - ['-1435085439'] = { Name = 'ch3_14b_sea_uw1_14' }, - ['-994539003'] = { Name = 'ch3_14b_sea_uw1_15' }, - ['-310015774'] = { Name = 'ch3_14b_sea_uw1_16_lod' }, - ['-685101336'] = { Name = 'ch3_14b_sea_uw1_16' }, - ['-1960223518'] = { Name = 'ch3_14b_sea_uw1_17_lod' }, - ['-858875339'] = { Name = 'ch3_14b_sea_uw1_17' }, - ['-553632104'] = { Name = 'ch3_14b_sea_uw1_18' }, - ['-377662574'] = { Name = 'ch3_14b_sea_uw1_19' }, - ['-60656080'] = { Name = 'ch3_14b_sea_uw1_20' }, - ['544294727'] = { Name = 'ch3_14b_sea_uw1_21_lod' }, - ['-784588828'] = { Name = 'ch3_14b_sea_uw1_21' }, - ['-54189319'] = { Name = 'ch3_14b_sea_wrk00' }, - ['-662447585'] = { Name = 'ch3_14b_sea_wrk01' }, - ['-965560835'] = { Name = 'ch3_14b_sea_wrk02' }, - ['-1272704672'] = { Name = 'ch3_14b_sea_wrk03' }, - ['297585808'] = { Name = 'ch3_14b_sea_wrk04' }, - ['-1917205368'] = { Name = 'ch3_14b_sea_wrk05' }, - ['2116724074'] = { Name = 'ch3_14b_sea_wrk06' }, - ['1818821095'] = { Name = 'ch3_14b_sea_wrk07' }, - ['-356122973'] = { Name = 'ch3_14b_sea_wrk08' }, - ['1790606986'] = { Name = 'ch3_14b_sea_wrk09' }, - ['156482810'] = { Name = 'ch3_14b_sea_wrk10' }, - ['1700394257'] = { Name = 'ch3_14b_sea_wrk12' }, - ['-92901990'] = { Name = 'ch3_lod_1_2_slod3' }, - ['1290592802'] = { Name = 'ch3_lod_101114b_slod3' }, - ['-1194309971'] = { Name = 'ch3_lod_11b13_slod3' }, - ['936194584'] = { Name = 'ch3_lod_1414b2_slod3' }, - ['250163260'] = { Name = 'ch3_lod_3_4_slod3' }, - ['-473353655'] = { Name = 'ch3_lod_6_10_slod3' }, - ['214339677'] = { Name = 'ch3_lod_789_12_slod3' }, - ['-1164053467'] = { Name = 'ch3_lod_emissive_slod3' }, - ['701992'] = { Name = 'ch3_lod_emissive1_slod3' }, - ['-979502700'] = { Name = 'ch3_lod_emissive3_slod3' }, - ['475124433'] = { Name = 'ch3_lod_water_slod3' }, - ['1985399133'] = { Name = 'ch3_lod_weir_01_slod3' }, - ['-1844520964'] = { Name = 'ch3_railway_00' }, - ['-1102335895'] = { Name = 'ch3_railway_01' }, - ['1998758436'] = { Name = 'ch3_railway_02' }, - ['1586983170'] = { Name = 'ch3_railway_06' }, - ['1281641628'] = { Name = 'ch3_railway_07' }, - ['1754918582'] = { Name = 'ch3_railway_08_b' }, - ['1109571609'] = { Name = 'ch3_railway_08' }, - ['839423973'] = { Name = 'ch3_railway_09' }, - ['134300563'] = { Name = 'ch3_railway_10' }, - ['969811760'] = { Name = 'ch3_railway_11' }, - ['-1580697821'] = { Name = 'ch3_railway_12' }, - ['-1642118603'] = { Name = 'ch3_railway_bridge_00' }, - ['-1666381691'] = { Name = 'ch3_railway_bridge01_decal' }, - ['-1910821238'] = { Name = 'ch3_railway_bridge01_rl1_lod' }, - ['1968814374'] = { Name = 'ch3_railway_bridge01_rl1' }, - ['2000662749'] = { Name = 'ch3_railway_bridge01_rl2_lod' }, - ['-2007671011'] = { Name = 'ch3_railway_bridge01_rl2' }, - ['942917036'] = { Name = 'ch3_railway_bridge01' }, - ['2132585586'] = { Name = 'ch3_railwayslod2' }, - ['1144937047'] = { Name = 'ch3_railwyb_00' }, - ['1393653757'] = { Name = 'ch3_railwyb_01' }, - ['166553014'] = { Name = 'ch3_railwyb_02' }, - ['395510017'] = { Name = 'ch3_railwyb_03' }, - ['2080229825'] = { Name = 'ch3_railwyb_04' }, - ['1655496824'] = { Name = 'ch3_railwyb_04b' }, - ['-1974540701'] = { Name = 'ch3_railwyb_05' }, - ['-233275803'] = { Name = 'ch3_railwyb_05b' }, - ['1596919844'] = { Name = 'ch3_railwyb_06' }, - ['1843998104'] = { Name = 'ch3_railwyb_07' }, - ['471453513'] = { Name = 'ch3_railwyb_08_b' }, - ['-1303071102'] = { Name = 'ch3_railwyb_08' }, - ['-590114276'] = { Name = 'ch3_railwyb_bridge_01_a' }, - ['1333262171'] = { Name = 'ch3_railwyb_bridge_01_b' }, - ['163805982'] = { Name = 'ch3_railwyb_bridge_01' }, - ['-545735804'] = { Name = 'ch3_railwyb_bridge_01d' }, - ['2078105163'] = { Name = 'ch3_railwyb_bridge_02_a' }, - ['-1991640796'] = { Name = 'ch3_railwyb_bridge_02_b' }, - ['-1031017553'] = { Name = 'ch3_railwyb_bridge_02_c' }, - ['-683796972'] = { Name = 'ch3_railwyb_bridge_02' }, - ['-1250334002'] = { Name = 'ch3_railwyb_bridge_02d' }, - ['2042269003'] = { Name = 'ch3_railwyb_bridge_04_b' }, - ['-1622301136'] = { Name = 'ch3_railwyb_bridge_04' }, - ['648185968'] = { Name = 'ch3_railwyc_00' }, - ['892904860'] = { Name = 'ch3_railwyc_01' }, - ['-65752235'] = { Name = 'ch3_railwyc_02' }, - ['-875306769'] = { Name = 'ch3_railwyc_03_rails' }, - ['1490971879'] = { Name = 'ch3_railwyc_03' }, - ['508557259'] = { Name = 'ch3_railwyc_04' }, - ['-333376658'] = { Name = 'ch3_railwyc_05' }, - ['-1291116221'] = { Name = 'ch3_railwyc_06' }, - ['-1759017564'] = { Name = 'ch3_railwyc_bridge_01_dcl' }, - ['339907733'] = { Name = 'ch3_railwyc_bridge_01_rl' }, - ['3576390'] = { Name = 'ch3_railwyc_bridge_01' }, - ['-639613770'] = { Name = 'ch3_railwyc_bridge_02_dcl' }, - ['1853240758'] = { Name = 'ch3_railwyc_bridge_02_rl' }, - ['-223545549'] = { Name = 'ch3_railwyc_bridge_02' }, - ['1996851362'] = { Name = 'ch3_railwyc_bridge_05_dcl' }, - ['-1719081274'] = { Name = 'ch3_railwyc_bridge_05_rl' }, - ['939131344'] = { Name = 'ch3_railwyc_bridge_05' }, - ['-1018415528'] = { Name = 'ch3_railwyc_bridge_07_dcl' }, - ['438709930'] = { Name = 'ch3_railwyc_bridge_07_rl' }, - ['1338782072'] = { Name = 'ch3_railwyc_bridge_07' }, - ['-1529412948'] = { Name = 'ch3_rd1_03' }, - ['-1458533613'] = { Name = 'ch3_rd1_05' }, - ['2143521818'] = { Name = 'ch3_rd1_05b' }, - ['196628577'] = { Name = 'ch3_rd1_06' }, - ['-34425642'] = { Name = 'ch3_rd1_07' }, - ['-266036934'] = { Name = 'ch3_rd1_08' }, - ['-988898326'] = { Name = 'ch3_rd1_09_rl01' }, - ['-1232470303'] = { Name = 'ch3_rd1_09_rl02' }, - ['-525315283'] = { Name = 'ch3_rd1_09_rl03' }, - ['-755058742'] = { Name = 'ch3_rd1_09_rl04' }, - ['1845685720'] = { Name = 'ch3_rd1_09_rl05' }, - ['1645018393'] = { Name = 'ch3_rd1_09' }, - ['111856026'] = { Name = 'ch3_rd1_15' }, - ['405302441'] = { Name = 'ch3_rd1_16' }, - ['58082117'] = { Name = 'ch3_rd1_17' }, - ['887957026'] = { Name = 'ch3_rd1_18' }, - ['1604090752'] = { Name = 'ch3_rd1_19' }, - ['-1755024677'] = { Name = 'ch3_rd1_20' }, - ['1042759778'] = { Name = 'ch3_rd1_25' }, - ['462650171'] = { Name = 'ch3_rd1_27' }, - ['800426894'] = { Name = 'ch3_rd1_27b' }, - ['-1601075923'] = { Name = 'ch3_rd1_28' }, - ['-823631398'] = { Name = 'ch3_rd1_29' }, - ['1943315996'] = { Name = 'ch3_rd1_30' }, - ['-1926251105'] = { Name = 'ch3_rd1_armco_02_02_lod' }, - ['1168197175'] = { Name = 'ch3_rd1_armco_02_02' }, - ['1651471192'] = { Name = 'ch3_rd1_armco_02_03_lod' }, - ['-198827198'] = { Name = 'ch3_rd1_armco_02_03' }, - ['-1462891891'] = { Name = 'ch3_rd1_armco_02_lod' }, - ['1952326500'] = { Name = 'ch3_rd1_armco_02' }, - ['1733540995'] = { Name = 'ch3_rd1_armco_04_02_lod' }, - ['-819832362'] = { Name = 'ch3_rd1_armco_04_02' }, - ['354210304'] = { Name = 'ch3_rd1_armco_04_03_lod' }, - ['-1546583244'] = { Name = 'ch3_rd1_armco_04_03' }, - ['1930088003'] = { Name = 'ch3_rd1_armco_04_lod' }, - ['-1614087619'] = { Name = 'ch3_rd1_armco_04' }, - ['1035351580'] = { Name = 'ch3_rd1_armco_04b_02_lod' }, - ['1612510359'] = { Name = 'ch3_rd1_armco_04b_02' }, - ['-1513846034'] = { Name = 'ch3_rd1_armco_04b_03_lod' }, - ['1370970060'] = { Name = 'ch3_rd1_armco_04b_03' }, - ['-1083358143'] = { Name = 'ch3_rd1_armco_04b_04_lod' }, - ['1124416104'] = { Name = 'ch3_rd1_armco_04b_04' }, - ['-1776906397'] = { Name = 'ch3_rd1_armco_04b_lod' }, - ['-1987801805'] = { Name = 'ch3_rd1_armco_04b' }, - ['-96636930'] = { Name = 'ch3_rd1_armco_2a_02_lod' }, - ['-7676857'] = { Name = 'ch3_rd1_armco_2a_02' }, - ['1026205969'] = { Name = 'ch3_rd1_armco_2a_03_lod001' }, - ['-1666574713'] = { Name = 'ch3_rd1_armco_2a_03' }, - ['-813575356'] = { Name = 'ch3_rd1_armco_2a_lod' }, - ['-270328664'] = { Name = 'ch3_rd1_armco_2a' }, - ['-915957104'] = { Name = 'ch3_rd1_armco_2b_02_lod001' }, - ['-49551853'] = { Name = 'ch3_rd1_armco_2b_02' }, - ['1179187443'] = { Name = 'ch3_rd1_armco_2b_03_lod' }, - ['863752946'] = { Name = 'ch3_rd1_armco_2b_03' }, - ['-1583743126'] = { Name = 'ch3_rd1_armco_2b_lod001' }, - ['-641404820'] = { Name = 'ch3_rd1_armco_2b' }, - ['-1092043802'] = { Name = 'ch3_rd1_bleand_redone001' }, - ['1066217882'] = { Name = 'ch3_rd1_dec_00b' }, - ['-1139350757'] = { Name = 'ch3_rd1_dec_01' }, - ['-1195189133'] = { Name = 'ch3_rd1_dec_02' }, - ['1720825878'] = { Name = 'ch3_rd1_dec_03' }, - ['1424135352'] = { Name = 'ch3_rd1_dec_04' }, - ['493870923'] = { Name = 'ch3_rd1_dust_dcl_03b' }, - ['-908686852'] = { Name = 'ch3_rd1_fwysgn_01_lod' }, - ['1575509998'] = { Name = 'ch3_rd1_fwysgn_01bovly' }, - ['1276162504'] = { Name = 'ch3_rd1_fwysgn_01ovly' }, - ['-1082763872'] = { Name = 'ch3_rd1_fwysgn_1b_lod' }, - ['-246460967'] = { Name = 'ch3_rd1_fwysgnfrm_01_lod' }, - ['-1021398018'] = { Name = 'ch3_rd1_fwysgnfrm_1b_lod' }, - ['-1455856580'] = { Name = 'ch3_rd1_fwysign_01' }, - ['1464589359'] = { Name = 'ch3_rd1_fwysign_01b' }, - ['1181108460'] = { Name = 'ch3_rd1_fwysignfrm_01' }, - ['1013214240'] = { Name = 'ch3_rd1_fwysignfrm_01b' }, - ['1803197539'] = { Name = 'ch3_rd1_props_ch3_11_spline049' }, - ['1793663804'] = { Name = 'ch3_rd1_props_ch3_11_spline050' }, - ['1074515310'] = { Name = 'ch3_rd1_props_ch3_11_spline051' }, - ['-1788086207'] = { Name = 'ch3_rd1_props_ch3_11_spline052' }, - ['1562216357'] = { Name = 'ch3_rd1_props_ch3_11_spline053' }, - ['-1309626038'] = { Name = 'ch3_rd1_props_ch3_11_spline054' }, - ['-2101619999'] = { Name = 'ch3_rd1_props_ch3_11_spline055' }, - ['-1107736229'] = { Name = 'ch3_rd1_props_ch3_11_spline056' }, - ['-1541335637'] = { Name = 'ch3_rd1_props_ch3_11_spline057' }, - ['-1082504119'] = { Name = 'ch3_rd1_props_ch3_11_spline058' }, - ['-817959982'] = { Name = 'ch3_rd1_props_ch3_11_spline059' }, - ['-1617962272'] = { Name = 'ch3_rd1_props_ch3_11_spline060' }, - ['58827462'] = { Name = 'ch3_rd1_props_ch3_11_spline061' }, - ['-220528263'] = { Name = 'ch3_rd1_props_ch3_11_spline062' }, - ['1761996237'] = { Name = 'ch3_rd1_props_ch3_11_spline063' }, - ['1449805974'] = { Name = 'ch3_rd1_props_ch3_11_spline064' }, - ['-1166536524'] = { Name = 'ch3_rd1_props_ch3_11_spline065' }, - ['-373395648'] = { Name = 'ch3_rd1_props_ch3_11_spline066' }, - ['537811935'] = { Name = 'ch3_rd1_props_ch3_11_spline067' }, - ['-841435275'] = { Name = 'ch3_rd1_props_ch3_11_spline068' }, - ['-1313046699'] = { Name = 'ch3_rd1_props_ch3_11_spline069' }, - ['-1585914414'] = { Name = 'ch3_rd1_props_ch3_11_spline070' }, - ['-111145565'] = { Name = 'ch3_rd1_props_ch3_11_spline071' }, - ['656533798'] = { Name = 'ch3_rd1_props_ch3_11_spline072' }, - ['1845786346'] = { Name = 'ch3_rd1_props_ch3_11_spline073' }, - ['1539494503'] = { Name = 'ch3_rd1_props_ch3_11_spline074' }, - ['-1072129259'] = { Name = 'ch3_rd1_props_ch3_11_spline075' }, - ['-355012463'] = { Name = 'ch3_rd1_props_ch3_11_spline076' }, - ['331563625'] = { Name = 'ch3_rd1_props_ch3_11_spline077' }, - ['-787104497'] = { Name = 'ch3_rd1_props_ch3_11_spline078' }, - ['-1526635265'] = { Name = 'ch3_rd1_props_ch3_11_spline079' }, - ['848070559'] = { Name = 'ch3_rd1_props_ch3_11_spline080' }, - ['-2019708480'] = { Name = 'ch3_rd1_props_ch3_11_spline081' }, - ['-1775350047'] = { Name = 'ch3_rd1_props_ch3_11_spline083' }, - ['-1545278898'] = { Name = 'ch3_rd1_props_ch3_11_spline084' }, - ['-1311308214'] = { Name = 'ch3_rd1_props_ch3_11_spline085' }, - ['-1073569119'] = { Name = 'ch3_rd1_props_ch3_11_spline086' }, - ['-582099657'] = { Name = 'ch3_rd1_props_ch3_11_spline087' }, - ['-341935656'] = { Name = 'ch3_rd1_props_ch3_11_spline088' }, - ['-235829634'] = { Name = 'ch3_rd1_props_ch3_11_spline089' }, - ['1169665301'] = { Name = 'ch3_rd1_props_ch3_11_spline090' }, - ['-1922712464'] = { Name = 'ch3_rd1_props_ch3_11_spline091' }, - ['1656121106'] = { Name = 'ch3_rd1_props_ch3_11_spline092' }, - ['-1445759669'] = { Name = 'ch3_rd1_props_ch3_11_spline093' }, - ['-1743203882'] = { Name = 'ch3_rd1_props_ch3_11_spline094' }, - ['1829956218'] = { Name = 'ch3_rd1_props_combo_01_lod' }, - ['1624354314'] = { Name = 'ch3_rd1_props_combo01_01_lod' }, - ['-477421703'] = { Name = 'ch3_rd1_props_wires_01' }, - ['-1341297858'] = { Name = 'ch3_rd1_props_wires_60' }, - ['2117207944'] = { Name = 'ch3_rd1_props_wires_61' }, - ['-749063721'] = { Name = 'ch3_rd1_props_wires_62' }, - ['825945499'] = { Name = 'ch3_rd1_props_wires_63' }, - ['-148440720'] = { Name = 'ch3_rd1_props_wires_64' }, - ['-994470762'] = { Name = 'ch3_rd1_props_wires_65' }, - ['-92438499'] = { Name = 'ch3_rd1_props_wires_66' }, - ['204088182'] = { Name = 'ch3_rd1_props_wires_67' }, - ['568348386'] = { Name = 'ch3_rd1_props_wires_68' }, - ['798353997'] = { Name = 'ch3_rd1_props_wires_69' }, - ['-403514392'] = { Name = 'ch3_rd1_props_wires_70' }, - ['-105283723'] = { Name = 'ch3_rd1_props_wires_71' }, - ['57709287'] = { Name = 'ch3_rd1_props_wires_72' }, - ['355087962'] = { Name = 'ch3_rd1_props_wires_73' }, - ['517753278'] = { Name = 'ch3_rd1_props_wires_74' }, - ['814673187'] = { Name = 'ch3_rd1_props_wires_75' }, - ['982122777'] = { Name = 'ch3_rd1_props_wires_76' }, - ['1280648743'] = { Name = 'ch3_rd1_rd_dust_dcl_01' }, - ['1966602164'] = { Name = 'ch3_rd1_rd_dust_dcl_02' }, - ['1489190603'] = { Name = 'ch3_rd1_rd_dust_dcl_04' }, - ['329352252'] = { Name = 'ch3_rd1_rd_dust_dcl_3' }, - ['-527213011'] = { Name = 'ch3_rd1_wal_02' }, - ['-1429952157'] = { Name = 'ch3_rd1_wal_d00' }, - ['-1735752465'] = { Name = 'ch3_rd1_wal_d01' }, - ['-946216179'] = { Name = 'ch3_rd1_wal_d02' }, - ['829699984'] = { Name = 'ch3_rd1_wal_d03' }, - ['525046591'] = { Name = 'ch3_rd1_wal_d04' }, - ['-823393319'] = { Name = 'ch3_rd1a_05' }, - ['1085892474'] = { Name = 'ch3_rd1a_06' }, - ['-530651988'] = { Name = 'ch3_rd1a_07_ov' }, - ['846678774'] = { Name = 'ch3_rd1a_07' }, - ['-389769644'] = { Name = 'ch3_rd1a_08_ov' }, - ['605859393'] = { Name = 'ch3_rd1a_08' }, - ['-1880226249'] = { Name = 'ch3_rd1a_09_ov' }, - ['-1475037653'] = { Name = 'ch3_rd1a_09' }, - ['-1423260741'] = { Name = 'ch3_rd1a_10' }, - ['2012188017'] = { Name = 'ch3_rd1a_11_ov' }, - ['-1173266040'] = { Name = 'ch3_rd1a_11' }, - ['944522363'] = { Name = 'ch3_rd1a_12_ov' }, - ['-1899820308'] = { Name = 'ch3_rd1a_12' }, - ['-731664220'] = { Name = 'ch3_rd1a_13_ov' }, - ['257395735'] = { Name = 'ch3_rd1a_13' }, - ['-222693892'] = { Name = 'ch3_rd1a_14_ov' }, - ['497625274'] = { Name = 'ch3_rd1a_14' }, - ['-1626933142'] = { Name = 'ch3_rd1a_15_ov' }, - ['84735870'] = { Name = 'ch3_rd1a_15' }, - ['-790396278'] = { Name = 'ch3_rd1a_16_ov' }, - ['-751103013'] = { Name = 'ch3_rd1a_16' }, - ['1448942113'] = { Name = 'ch3_rd1a_17' }, - ['839643491'] = { Name = 'ch3_rd1a_18_ov' }, - ['1559504719'] = { Name = 'ch3_rd1a_18' }, - ['913682918'] = { Name = 'ch3_rd1a_18b_rl01' }, - ['671552777'] = { Name = 'ch3_rd1a_18b_rl02' }, - ['1244354873'] = { Name = 'ch3_rd1a_18b_rl03' }, - ['1136151635'] = { Name = 'ch3_rd1a_18b_rl04' }, - ['549495482'] = { Name = 'ch3_rd1a_18b' }, - ['846415391'] = { Name = 'ch3_rd1a_18c' }, - ['719209252'] = { Name = 'ch3_rd1a_19' }, - ['1562486414'] = { Name = 'ch3_rd1a_20' }, - ['-1509073002'] = { Name = 'ch3_rd1a_21_ov' }, - ['-607575081'] = { Name = 'ch3_rd1a_21' }, - ['-257839013'] = { Name = 'ch3_rd1a_21b_br01_lod' }, - ['-912722967'] = { Name = 'ch3_rd1a_21b_br01' }, - ['-1691441215'] = { Name = 'ch3_rd1a_21b' }, - ['-1316106399'] = { Name = 'ch3_rd1a_22' }, - ['1817123874'] = { Name = 'ch3_rd1a_23_ov' }, - ['-1002638145'] = { Name = 'ch3_rd1a_23' }, - ['1857400025'] = { Name = 'ch3_rd1a_24_ov' }, - ['-1844506524'] = { Name = 'ch3_rd1a_24' }, - ['-2146353974'] = { Name = 'ch3_rd1a_25_ov' }, - ['337810573'] = { Name = 'ch3_rd1a_25' }, - ['1673653620'] = { Name = 'ch3_rd1a_26_ov' }, - ['571814002'] = { Name = 'ch3_rd1a_26' }, - ['-806160678'] = { Name = 'ch3_rd1a_27_ov' }, - ['-123675258'] = { Name = 'ch3_rd1a_27' }, - ['-524307828'] = { Name = 'ch3_rd1a_28_ov' }, - ['109869405'] = { Name = 'ch3_rd1a_28' }, - ['-1954663426'] = { Name = 'ch3_rd1a_29_ov' }, - ['1295648443'] = { Name = 'ch3_rd1a_29' }, - ['1306675964'] = { Name = 'ch3_rd1a_30_ov' }, - ['1441533551'] = { Name = 'ch3_rd1a_30' }, - ['-1427692140'] = { Name = 'ch3_rd1a_31_ov' }, - ['1662392444'] = { Name = 'ch3_rd1a_32_ov' }, - ['282841207'] = { Name = 'ch3_rd1a_33_ov' }, - ['2090947442'] = { Name = 'ch3_rd1a_34_rl01' }, - ['-1987678916'] = { Name = 'ch3_rd1a_34_rl02' }, - ['1477282379'] = { Name = 'ch3_rd1a_34_rl03' }, - ['1693164551'] = { Name = 'ch3_rd1a_34_rl04' }, - ['-1288257380'] = { Name = 'ch3_rd1a_34_rl05' }, - ['1088478182'] = { Name = 'ch3_rd1a_34_rl06' }, - ['-224018575'] = { Name = 'ch3_rd1a_34_rl07' }, - ['461115677'] = { Name = 'ch3_rd1a_34_rl08' }, - ['-2067141682'] = { Name = 'ch3_rd1a_34' }, - ['1236506573'] = { Name = 'ch3_rd1a_35_rl01' }, - ['1466774336'] = { Name = 'ch3_rd1a_35_rl02' }, - ['1221105139'] = { Name = 'ch3_rd1a_35_rl03' }, - ['1450586446'] = { Name = 'ch3_rd1a_35_rl04' }, - ['1696878250'] = { Name = 'ch3_rd1a_35_rl05' }, - ['1385072472'] = { Name = 'ch3_rd1a_35' }, - ['232619638'] = { Name = 'ch3_rd1a_99_ov' }, - ['799061614'] = { Name = 'ch3_rd1a_decal1' }, - ['1038570235'] = { Name = 'ch3_rd1a_decal2' }, - ['-1252452191'] = { Name = 'ch3_rd1a_gov_sign_01_lod' }, - ['-443858705'] = { Name = 'ch3_rd1a_gov_sign_01' }, - ['802806220'] = { Name = 'ch3_rd1a_props_ch3_rd1a_ss_spline004' }, - ['1023669280'] = { Name = 'ch3_rd1a_props_ch3_rd1a_ss_spline005' }, - ['188682391'] = { Name = 'ch3_rd1a_props_ch3_rd1a_ss_spline006' }, - ['589211396'] = { Name = 'ch3_rd1a_props_elec_w_127' }, - ['358648712'] = { Name = 'ch3_rd1a_props_elec_w_128' }, - ['1302181921'] = { Name = 'ch3_rd1a_props_prop01_slod' }, - ['-1152738719'] = { Name = 'ch3_rd1a_props_prop02_01_lod' }, - ['1297930769'] = { Name = 'ch3_rd1a_props_prop03_01_lod' }, - ['-972581623'] = { Name = 'ch3_rd1a_props_prop04_01_lod' }, - ['-109172317'] = { Name = 'ch3_rd1a_props_prop05_01_lod' }, - ['643303315'] = { Name = 'ch3_rd1a_props_prop06_01_lod' }, - ['109413176'] = { Name = 'ch3_rd1a_props_prop06_02_lod' }, - ['364878985'] = { Name = 'ch3_rd1a_props_prop06_03_lod' }, - ['289523182'] = { Name = 'ch3_rd1a_props_prop07_01_lod' }, - ['-1603390596'] = { Name = 'ch3_rd1a_props_prop07_02_lod' }, - ['-610674519'] = { Name = 'ch3_rd1a_props_prop07_03_lod' }, - ['-1206167873'] = { Name = 'ch3_rd1a_props_prop08_01_lod' }, - ['187138787'] = { Name = 'ch3_rd1a_props_prop08_02_lod' }, - ['-1133562891'] = { Name = 'ch3_rd1a_props_prop08_03_lod' }, - ['1208507783'] = { Name = 'ch3_rd1a_props_prop09_02_lod' }, - ['164365917'] = { Name = 'ch3_rd1a_props_prop09_03_lod' }, - ['-936539744'] = { Name = 'ch3_rd1a_props_prop09_04_lod' }, - ['353628058'] = { Name = 'ch3_rd1a_props_prop10_01_lod' }, - ['-1747458193'] = { Name = 'ch3_rd1a_props_prop10_02_lod' }, - ['239224267'] = { Name = 'ch3_rd1a_props_prop10_03_lod' }, - ['700800478'] = { Name = 'ch3_rd1a_props_py_w01' }, - ['928315649'] = { Name = 'ch3_rd1a_props_py_w02' }, - ['-870374765'] = { Name = 'ch3_rd1a_props_py_w03' }, - ['-1039528343'] = { Name = 'ch3_rd1a_props_py_w04' }, - ['-256119860'] = { Name = 'ch3_rd1a_props_py_w05' }, - ['-427960496'] = { Name = 'ch3_rd1a_props_py_w06' }, - ['-1830309851'] = { Name = 'ch3_rd1a_props_py_w07' }, - ['-1710801308'] = { Name = 'ch3_rd1a_props_py_w08' }, - ['-2011587959'] = { Name = 'ch3_rd1a_props_py_w09' }, - ['1415262189'] = { Name = 'ch3_rd1a_props_py_w10' }, - ['-1729742590'] = { Name = 'ch3_rd1a_props_py_w13' }, - ['-1958437441'] = { Name = 'ch3_rd1a_props_py_w14' }, - ['-322215733'] = { Name = 'ch3_rd1a_props_py_w15' }, - ['2059969214'] = { Name = 'ch3_rd1a_props_spline_elec023' }, - ['2028576512'] = { Name = 'ch3_rd1a_props_spline_elec024' }, - ['-799617571'] = { Name = 'ch3_rd1a_props_spline_elec025' }, - ['-32724664'] = { Name = 'ch3_rd1a_props_spline_elec026' }, - ['-993511744'] = { Name = 'ch3_rd1a_props_spline_elec027' }, - ['-1299279283'] = { Name = 'ch3_rd1a_props_spline_elec028' }, - ['350082794'] = { Name = 'ch3_rd1a_props_spline_elec029' }, - ['-248343884'] = { Name = 'ch3_rd1a_props_spline_elec030' }, - ['363879343'] = { Name = 'ch3_rd1a_props_spline_elec032' }, - ['630979506'] = { Name = 'ch3_rd1a_props_spline_elec033' }, - ['974398630'] = { Name = 'ch3_rd1a_props_spline_elec034' }, - ['1227539155'] = { Name = 'ch3_rd1a_props_spline_elec035' }, - ['1604317117'] = { Name = 'ch3_rd1a_props_spline_elec036' }, - ['-494537337'] = { Name = 'ch3_rd1a_props_spline_elec037' }, - ['-257912388'] = { Name = 'ch3_rd1a_props_spline_elec038' }, - ['97172496'] = { Name = 'ch3_rd1a_props_spline_elec039' }, - ['1168424703'] = { Name = 'ch3_rd1a_props_spline_elec040' }, - ['-1087327723'] = { Name = 'ch3_rd1a_props_spline_elec041' }, - ['-1424258581'] = { Name = 'ch3_rd1a_props_spline_elec042' }, - ['-589664920'] = { Name = 'ch3_rd1a_props_spline_elec043' }, - ['-962576140'] = { Name = 'ch3_rd1a_props_spline_elec044' }, - ['-1918710066'] = { Name = 'ch3_rd1a_props_spline_elec045' }, - ['-884879238'] = { Name = 'ch3_rd1a_props_spline_tele01' }, - ['-1097582817'] = { Name = 'ch3_rd1a_props_spline_tele02' }, - ['-1310384703'] = { Name = 'ch3_rd1a_props_spline_tele03' }, - ['53395539'] = { Name = 'ch3_rd1a_props_spline_tele04' }, - ['-195747168'] = { Name = 'ch3_rd1a_props_spline_tele05' }, - ['-410318580'] = { Name = 'ch3_rd1a_props_spline_tele06' }, - ['-99308013'] = { Name = 'ch3_rd1a_props_spline_tele07' }, - ['-322333827'] = { Name = 'ch3_rd1a_props_spline_tele08' }, - ['1584330438'] = { Name = 'ch3_rd1a_props_spline_tele09' }, - ['223138303'] = { Name = 'ch3_rd1a_props_spline_tele10' }, - ['516846850'] = { Name = 'ch3_rd1a_props_spline_tele11' }, - ['-1194874638'] = { Name = 'ch3_rd1a_props_spline_tele12' }, - ['882024586'] = { Name = 'ch3_rd1a_props_spline_tele13' }, - ['1179534337'] = { Name = 'ch3_rd1a_props_spline_tele14' }, - ['1477699468'] = { Name = 'ch3_rd1a_props_spline_tele15' }, - ['-236905688'] = { Name = 'ch3_rd1a_props_spline_tele16' }, - ['-1913498808'] = { Name = 'ch3_rd1a_props_spline_tele17' }, - ['-1615333677'] = { Name = 'ch3_rd1a_props_spline_tele18' }, - ['964700769'] = { Name = 'ch3_rd1a_props_spline_tele19' }, - ['384256728'] = { Name = 'ch3_rd1a_props_spline_tele20' }, - ['1163044782'] = { Name = 'ch3_rd1a_props_spline_tele21' }, - ['855966483'] = { Name = 'ch3_rd1a_props_spline_tele22' }, - ['-1289977020'] = { Name = 'ch3_rd1a_props_spline_tele23' }, - ['-513943890'] = { Name = 'ch3_rd1a_sgn_sanfwy_01_lod' }, - ['-400381952'] = { Name = 'ch3_rd1a_sgn_sanfwy_01' }, - ['-1090035789'] = { Name = 'ch3_rd1a_wal00' }, - ['-1665819884'] = { Name = 'ch3_rd1a_wal05' }, - ['1742789942'] = { Name = 'ch3_rd1b_00' }, - ['-36491671'] = { Name = 'ch3_rd1b_01b' }, - ['-532876483'] = { Name = 'ch3_rd1b_01c' }, - ['980877923'] = { Name = 'ch3_rd1b_02' }, - ['925572576'] = { Name = 'ch3_rd1b_10' }, - ['1156233567'] = { Name = 'ch3_rd1b_11' }, - ['-402030690'] = { Name = 'ch3_rd1b_12' }, - ['-173466915'] = { Name = 'ch3_rd1b_13' }, - ['175785087'] = { Name = 'ch3_rd1b_14' }, - ['-1344408123'] = { Name = 'ch3_rd1b_armco_01_lod' }, - ['1473815908'] = { Name = 'ch3_rd1b_armco_01' }, - ['-1093553067'] = { Name = 'ch3_rd1b_armco_02_lod' }, - ['1190921131'] = { Name = 'ch3_rd1b_armco_02' }, - ['-973431177'] = { Name = 'ch3_rd1b_armco_03_lod' }, - ['2083941919'] = { Name = 'ch3_rd1b_armco_03' }, - ['-1841020506'] = { Name = 'ch3_rd1b_armco_04_lod' }, - ['1213400669'] = { Name = 'ch3_rd1b_armco_04' }, - ['-853569889'] = { Name = 'ch3_rd1b_armco_05_lod' }, - ['1988682440'] = { Name = 'ch3_rd1b_armco_05' }, - ['-1437592547'] = { Name = 'ch3_rd1b_armco_06_lod' }, - ['1768409222'] = { Name = 'ch3_rd1b_armco_06' }, - ['-1784939987'] = { Name = 'ch3_rd1b_armco_07_lod' }, - ['454405091'] = { Name = 'ch3_rd1b_armco_07' }, - ['1862544542'] = { Name = 'ch3_rd1b_armco_08_lod' }, - ['262509827'] = { Name = 'ch3_rd1b_armco_08' }, - ['1613505739'] = { Name = 'ch3_rd1b_armco_09_lod' }, - ['1046966918'] = { Name = 'ch3_rd1b_armco_09' }, - ['535959452'] = { Name = 'ch3_rd1b_armco_10_lod' }, - ['1105883536'] = { Name = 'ch3_rd1b_armco_10' }, - ['-53850326'] = { Name = 'ch3_rd1b_armco_11_lod' }, - ['943414834'] = { Name = 'ch3_rd1b_armco_11' }, - ['-1085418632'] = { Name = 'ch3_rd1b_armco_12_lod' }, - ['1703819479'] = { Name = 'ch3_rd1b_armco_12' }, - ['1761316748'] = { Name = 'ch3_rd1b_armco_13_lod' }, - ['2076075319'] = { Name = 'ch3_rd1b_armco_13' }, - ['-787476258'] = { Name = 'ch3_rd1b_armco_14_lod' }, - ['-1403763110'] = { Name = 'ch3_rd1b_armco_14' }, - ['-537495973'] = { Name = 'ch3_rd1b_armco_15_lod' }, - ['-1773790658'] = { Name = 'ch3_rd1b_armco_15' }, - ['-988660995'] = { Name = 'ch3_rd1b_armco_16_lod' }, - ['-806220395'] = { Name = 'ch3_rd1b_armco_16' }, - ['-1452701345'] = { Name = 'ch3_rd1b_armco_17_lod' }, - ['-641392325'] = { Name = 'ch3_rd1b_armco_17' }, - ['288996878'] = { Name = 'ch3_rd1b_armco_18_lod' }, - ['-207760148'] = { Name = 'ch3_rd1b_armco_18' }, - ['-213579790'] = { Name = 'ch3_rd1b_armco_19_lod' }, - ['-45225908'] = { Name = 'ch3_rd1b_armco_19' }, - ['949878491'] = { Name = 'ch3_rd1b_armco_20_lod' }, - ['-107355628'] = { Name = 'ch3_rd1b_armco_20' }, - ['829573348'] = { Name = 'ch3_rd1b_armco_21_lod' }, - ['199132833'] = { Name = 'ch3_rd1b_armco_21' }, - ['-1035065560'] = { Name = 'ch3_rd1b_curb_' }, - ['603709941'] = { Name = 'ch3_rd1b_dcl_01' }, - ['364725624'] = { Name = 'ch3_rd1b_dcl_02' }, - ['2063798218'] = { Name = 'ch3_rd1b_dcl_03' }, - ['1566543395'] = { Name = 'ch3_rd1b_dcl_jn_01' }, - ['2023907654'] = { Name = 'ch3_rd1b_dus_02' }, - ['1085252527'] = { Name = 'ch3_rd1b_dus_lb_003' }, - ['-747889953'] = { Name = 'ch3_rd1b_dus_lb_01' }, - ['-449986974'] = { Name = 'ch3_rd1b_dus_lb_02' }, - ['1619560116'] = { Name = 'ch3_rd1b_dust_dcl_01' }, - ['525742074'] = { Name = 'ch3_rd1b_dust_rd_dcl_01' }, - ['-945750233'] = { Name = 'ch3_rd2_armco_01_lod' }, - ['-1323362228'] = { Name = 'ch3_rd2_armco_01' }, - ['1163778887'] = { Name = 'ch3_rd2_armco_03a_lod' }, - ['2023611714'] = { Name = 'ch3_rd2_armco_03a' }, - ['13659623'] = { Name = 'ch3_rd2_armco_03b_lod' }, - ['781175079'] = { Name = 'ch3_rd2_armco_03b' }, - ['-1615017391'] = { Name = 'ch3_rd2_armco_03c_lod' }, - ['1548625059'] = { Name = 'ch3_rd2_armco_03c' }, - ['555371987'] = { Name = 'ch3_rd2_armco_03d_lod' }, - ['-292665051'] = { Name = 'ch3_rd2_armco_03d' }, - ['49067236'] = { Name = 'ch3_rd2_armco_03e_lod' }, - ['472556641'] = { Name = 'ch3_rd2_armco_03e' }, - ['1366025047'] = { Name = 'ch3_rd2_armco_03f_lod' }, - ['-753429960'] = { Name = 'ch3_rd2_armco_03f' }, - ['-1537303130'] = { Name = 'ch3_rd2_armco_04_b01_lod' }, - ['208440367'] = { Name = 'ch3_rd2_armco_04_b01' }, - ['-1207187204'] = { Name = 'ch3_rd2_armco_04_b02_lod' }, - ['838588237'] = { Name = 'ch3_rd2_armco_04_b02' }, - ['2028114199'] = { Name = 'ch3_rd2_armco_04_b03_lod' }, - ['1375639378'] = { Name = 'ch3_rd2_armco_04_b03' }, - ['384815769'] = { Name = 'ch3_rd2_armco_04_b04_lod' }, - ['-2143718457'] = { Name = 'ch3_rd2_armco_04_b04' }, - ['-1326133767'] = { Name = 'ch3_rd2_armco_04_b05_lod' }, - ['1970953801'] = { Name = 'ch3_rd2_armco_04_b05' }, - ['1966578193'] = { Name = 'ch3_rd2_armco_04_lod' }, - ['1267977523'] = { Name = 'ch3_rd2_armco_04' }, - ['-2044329799'] = { Name = 'ch3_rd2_armco_05_lod' }, - ['-170450505'] = { Name = 'ch3_rd2_armco_05' }, - ['-1019209829'] = { Name = 'ch3_rd2_armco_08_01_lod' }, - ['-842276014'] = { Name = 'ch3_rd2_armco_08_01' }, - ['-1341067468'] = { Name = 'ch3_rd2_armco_08_02_lod' }, - ['1792613718'] = { Name = 'ch3_rd2_armco_08_02' }, - ['808523012'] = { Name = 'ch3_rd2_armco_08_03_lod' }, - ['2032908795'] = { Name = 'ch3_rd2_armco_08_03' }, - ['-287067331'] = { Name = 'ch3_rd2_billboard01' }, - ['1783812936'] = { Name = 'ch3_rd2_billboard01graffiti' }, - ['-1256327450'] = { Name = 'ch3_rd2_bridge_01_rl01_lod' }, - ['-1180576353'] = { Name = 'ch3_rd2_bridge_01_rl01' }, - ['1055620608'] = { Name = 'ch3_rd2_bridge_01_rl02_lod' }, - ['-420696012'] = { Name = 'ch3_rd2_bridge_01_rl02' }, - ['1323979737'] = { Name = 'ch3_rd2_bridge_01' }, - ['997607763'] = { Name = 'ch3_rd2_bridge_02_rl01_lod' }, - ['-1982943537'] = { Name = 'ch3_rd2_bridge_02_rl01' }, - ['239885496'] = { Name = 'ch3_rd2_bridge_02_rl02_lod' }, - ['-1425149619'] = { Name = 'ch3_rd2_bridge_02_rl02' }, - ['1554083655'] = { Name = 'ch3_rd2_bridge_02' }, - ['-834239745'] = { Name = 'ch3_rd2_bridge_02a_rl01_lod' }, - ['-1789013659'] = { Name = 'ch3_rd2_bridge_02a_rl01' }, - ['925893799'] = { Name = 'ch3_rd2_bridge_02a_rl02_lod' }, - ['1326859375'] = { Name = 'ch3_rd2_bridge_02a_rl02' }, - ['-1902852524'] = { Name = 'ch3_rd2_bridge_02a' }, - ['-1907424509'] = { Name = 'ch3_rd2_bridge_03_rl01_lod' }, - ['-1001633492'] = { Name = 'ch3_rd2_bridge_03_rl01' }, - ['-1774332852'] = { Name = 'ch3_rd2_bridge_03_rl02_lod' }, - ['-1425729890'] = { Name = 'ch3_rd2_bridge_03_rl02' }, - ['664052285'] = { Name = 'ch3_rd2_bridge_03_rl03_lod' }, - ['1597472516'] = { Name = 'ch3_rd2_bridge_03_rl03' }, - ['1137884642'] = { Name = 'ch3_rd2_bridge_03' }, - ['-1998013890'] = { Name = 'ch3_rd2_bridge_04_rl01_lod' }, - ['1059265126'] = { Name = 'ch3_rd2_bridge_04_rl01' }, - ['-1186871725'] = { Name = 'ch3_rd2_bridge_04_rl02_lod001' }, - ['1844017138'] = { Name = 'ch3_rd2_bridge_04_rl02' }, - ['-1722728133'] = { Name = 'ch3_rd2_bridge_04_rl03_lod' }, - ['1534907161'] = { Name = 'ch3_rd2_bridge_04_rl03' }, - ['-181665681'] = { Name = 'ch3_rd2_bridge_04_rl04_lod' }, - ['-2008011585'] = { Name = 'ch3_rd2_bridge_04_rl04' }, - ['1141753856'] = { Name = 'ch3_rd2_bridge_04_rl05_lod' }, - ['1993902544'] = { Name = 'ch3_rd2_bridge_04_rl05' }, - ['1408065047'] = { Name = 'ch3_rd2_bridge_04' }, - ['1834735422'] = { Name = 'ch3_rd2_ch3_condecal2' }, - ['-1941106774'] = { Name = 'ch3_rd2_dcl_bdg_sup_01' }, - ['938405904'] = { Name = 'ch3_rd2_decals' }, - ['1286375210'] = { Name = 'ch3_rd2_decals01' }, - ['2134830158'] = { Name = 'ch3_rd2_decals02' }, - ['1916195390'] = { Name = 'ch3_rd2_decals03' }, - ['-1528580197'] = { Name = 'ch3_rd2_decals04' }, - ['-933855616'] = { Name = 'ch3_rd2_decals06' }, - ['-2072749407'] = { Name = 'ch3_rd2_dust_decal' }, - ['-162338163'] = { Name = 'ch3_rd2_frywy_rd_sgn_01' }, - ['-683497511'] = { Name = 'ch3_rd2_frywy_rd_sgnfm_01' }, - ['1908837857'] = { Name = 'ch3_rd2_fww_dcl_sign_01' }, - ['-723337632'] = { Name = 'ch3_rd2_props_combo0102_06_lod' }, - ['1210434047'] = { Name = 'ch3_rd2_props_combo0102_09_lod' }, - ['502032016'] = { Name = 'ch3_rd2_props_combo0103_slod' }, - ['-853300954'] = { Name = 'ch3_rd2_props_combo0203_03_lod' }, - ['2075597339'] = { Name = 'ch3_rd2_props_combo0205_03_lod' }, - ['-41126879'] = { Name = 'ch3_rd2_props_combo0205_08_lod' }, - ['-385013034'] = { Name = 'ch3_rd2_props_combo0206_03_lod' }, - ['-1525121481'] = { Name = 'ch3_rd2_props_combo0208_04_lod' }, - ['-2016367027'] = { Name = 'ch3_rd2_props_combo08_slod' }, - ['-1633461023'] = { Name = 'ch3_rd2_props_combo13_slod' }, - ['-2041797022'] = { Name = 'ch3_rd2_props_combo16_07_lod' }, - ['-287712252'] = { Name = 'ch3_rd2_props_combo17_slod' }, - ['-459355767'] = { Name = 'ch3_rd2_props_combo19_08_lod' }, - ['-826493730'] = { Name = 'ch3_rd2_props_combo20_slod' }, - ['2007884538'] = { Name = 'ch3_rd2_props_elec_w_200' }, - ['813880485'] = { Name = 'ch3_rd2_props_elec_w_201' }, - ['1513170945'] = { Name = 'ch3_rd2_props_elec_w_202' }, - ['-382351864'] = { Name = 'ch3_rd2_props_elec_w_206' }, - ['-156081915'] = { Name = 'ch3_rd2_props_elec_w_207' }, - ['-634345470'] = { Name = 'ch3_rd2_props_elec_w_209' }, - ['1409522930'] = { Name = 'ch3_rd2_props_elec_w_210' }, - ['-1929998629'] = { Name = 'ch3_rd2_props_elec_w_211' }, - ['-1335503431'] = { Name = 'ch3_rd2_props_elec_w_212' }, - ['448703081'] = { Name = 'ch3_rd2_props_elec_w_213' }, - ['214699652'] = { Name = 'ch3_rd2_props_elec_w_214' }, - ['1999364930'] = { Name = 'ch3_rd2_props_elec_w_215' }, - ['-360078733'] = { Name = 'ch3_rd2_props_elec_w_306' }, - ['1681490233'] = { Name = 'ch3_rd2_props_elec_w145' }, - ['-233641116'] = { Name = 'ch3_rd2_props_elec_wires_sp145' }, - ['349188310'] = { Name = 'ch3_rd2_props_elec_wires_sp146' }, - ['120034693'] = { Name = 'ch3_rd2_props_elec_wires_sp147' }, - ['-77595369'] = { Name = 'ch3_rd2_rd1_01' }, - ['-383166294'] = { Name = 'ch3_rd2_rd1_02' }, - ['-1068824850'] = { Name = 'ch3_rd2_rd1_03' }, - ['84056260'] = { Name = 'ch3_rd2_rd1_05_rl_lod' }, - ['-494243181'] = { Name = 'ch3_rd2_rd1_05_rl' }, - ['-1296798783'] = { Name = 'ch3_rd2_rd1_05' }, - ['-1778535852'] = { Name = 'ch3_rd2_rd1_07' }, - ['-1933598760'] = { Name = 'ch3_rd2_rd1_08' }, - ['1178604242'] = { Name = 'ch3_rd2_rd1_09' }, - ['-1198688725'] = { Name = 'ch3_rd2_rd1_11' }, - ['-391259657'] = { Name = 'ch3_rd2_rd1_22' }, - ['-318515071'] = { Name = 'ch3_rd2_rd1_30' }, - ['-1594139686'] = { Name = 'ch3_rd2_rd1_31_rl01_lod' }, - ['28828991'] = { Name = 'ch3_rd2_rd1_31_rl01' }, - ['-2019060154'] = { Name = 'ch3_rd2_rd1_31_rl02_lod' }, - ['785858429'] = { Name = 'ch3_rd2_rd1_31_rl02' }, - ['274160256'] = { Name = 'ch3_rd2_rd1_31_rl03_lod' }, - ['1019468630'] = { Name = 'ch3_rd2_rd1_31_rl03' }, - ['-44394746'] = { Name = 'ch3_rd2_rd1_31_rl04_lod' }, - ['1251342074'] = { Name = 'ch3_rd2_rd1_31_rl04' }, - ['2031953314'] = { Name = 'ch3_rd2_rd1_31_rl05_lod' }, - ['1482134141'] = { Name = 'ch3_rd2_rd1_31_rl05' }, - ['-1027374079'] = { Name = 'ch3_rd2_rd1_31' }, - ['-122849912'] = { Name = 'ch3_rd2_rd1_46' }, - ['-381704663'] = { Name = 'ch3_rd2_rum_strip00' }, - ['326630041'] = { Name = 'ch3_rd2_rum_strip01' }, - ['80043316'] = { Name = 'ch3_rd2_rum_strip02' }, - ['780316846'] = { Name = 'ch3_rd2_rum_strip03' }, - ['508891219'] = { Name = 'ch3_rd2_rum_strip04' }, - ['1276603351'] = { Name = 'ch3_rd2_rum_strip05' }, - ['1037094730'] = { Name = 'ch3_rd2_rum_strip06' }, - ['1169810808'] = { Name = 'ch3_rd2_support_03_rl01_lod' }, - ['1172761258'] = { Name = 'ch3_rd2_support_03_rl01' }, - ['-954161885'] = { Name = 'ch3_rd2_support_03_rl02_lod' }, - ['1475710655'] = { Name = 'ch3_rd2_support_03_rl02' }, - ['817256088'] = { Name = 'ch3_rd2_support_03_rl03_lod' }, - ['2055197651'] = { Name = 'ch3_rd2_support_03_rl03' }, - ['958645342'] = { Name = 'ch3_rd2_support_03_rl04_lod' }, - ['-2000850866'] = { Name = 'ch3_rd2_support_03_rl04' }, - ['2016502010'] = { Name = 'ch3_rd2_support_03' }, - ['-195818454'] = { Name = 'ch3_rd2b_b1_rl01' }, - ['537289614'] = { Name = 'ch3_rd2b_b1_rl02' }, - ['287819217'] = { Name = 'ch3_rd2b_b1_rl03' }, - ['982587555'] = { Name = 'ch3_rd2b_b1_rl04' }, - ['-1526462065'] = { Name = 'ch3_rd2b_b2_rl01' }, - ['-1789892056'] = { Name = 'ch3_rd2b_b2_rl02' }, - ['1028471387'] = { Name = 'ch3_rd2b_b2_rl03' }, - ['1334042312'] = { Name = 'ch3_rd2b_b2_rl04' }, - ['432632660'] = { Name = 'ch3_rd2b_b2_rl05' }, - ['737744819'] = { Name = 'ch3_rd2b_b2_rl06' }, - ['-1991598765'] = { Name = 'ch3_rd2b_b5_rl01' }, - ['-1759495938'] = { Name = 'ch3_rd2b_b5_rl02' }, - ['1313482455'] = { Name = 'ch3_rd2b_b5_rl03' }, - ['-1195377723'] = { Name = 'ch3_rd2b_b5_rl04' }, - ['-1984422474'] = { Name = 'ch3_rd2b_b5_rl05' }, - ['-1807076646'] = { Name = 'ch3_rd2b_b5_rl06' }, - ['-420115350'] = { Name = 'ch3_rd2b_barrier_00_lod' }, - ['391110660'] = { Name = 'ch3_rd2b_barrier_00' }, - ['769854766'] = { Name = 'ch3_rd2b_barrier_01' }, - ['1386895036'] = { Name = 'ch3_rd2b_barrier_02' }, - ['-866344450'] = { Name = 'ch3_rd2b_barrier_03_lod' }, - ['1616245267'] = { Name = 'ch3_rd2b_barrier_03' }, - ['-526155070'] = { Name = 'ch3_rd2b_barrier_04_lod' }, - ['-516787254'] = { Name = 'ch3_rd2b_barrier_04' }, - ['-148267080'] = { Name = 'ch3_rd2b_barrier_05' }, - ['1946901676'] = { Name = 'ch3_rd2b_barrier_06_lod001' }, - ['81804069'] = { Name = 'ch3_rd2b_barrier_06' }, - ['1910816271'] = { Name = 'ch3_rd2b_bdg_endbariers_lod' }, - ['-670732483'] = { Name = 'ch3_rd2b_bdg_endbariers' }, - ['-1637227523'] = { Name = 'ch3_rd2b_bdg_rl01_lod' }, - ['-1211770880'] = { Name = 'ch3_rd2b_bdg_rl01' }, - ['995768142'] = { Name = 'ch3_rd2b_bdg_rl02_lod' }, - ['-1304081157'] = { Name = 'ch3_rd2b_bdg_rl02' }, - ['-1302999313'] = { Name = 'ch3_rd2b_bdg_rl03_lod' }, - ['-1075582920'] = { Name = 'ch3_rd2b_bdg_rl03' }, - ['2043440436'] = { Name = 'ch3_rd2b_bdg_rl04_lod' }, - ['1366133581'] = { Name = 'ch3_rd2b_bdg_rl04' }, - ['1445320119'] = { Name = 'ch3_rd2b_bdg_rl05_lod' }, - ['1734326065'] = { Name = 'ch3_rd2b_bdg_rl05' }, - ['-311765089'] = { Name = 'ch3_rd2b_billboard01' }, - ['1952235351'] = { Name = 'ch3_rd2b_ch3_rd2c_fwy_01' }, - ['-1554645946'] = { Name = 'ch3_rd2b_decals05' }, - ['-1991137279'] = { Name = 'ch3_rd2b_dl_004' }, - ['-194345995'] = { Name = 'ch3_rd2b_dl_1' }, - ['279362669'] = { Name = 'ch3_rd2b_dl_2' }, - ['383076554'] = { Name = 'ch3_rd2b_dl_3' }, - ['-856565312'] = { Name = 'ch3_rd2b_fw_18a' }, - ['1938630388'] = { Name = 'ch3_rd2b_fw_18b' }, - ['1311835708'] = { Name = 'ch3_rd2b_fw_ov_14' }, - ['338432567'] = { Name = 'ch3_rd2b_fw_ov_15' }, - ['-2043578820'] = { Name = 'ch3_rd2b_fw_ov_16' }, - ['823249922'] = { Name = 'ch3_rd2b_fw_ov_17' }, - ['161414201'] = { Name = 'ch3_rd2b_fw_ov_21' }, - ['-329399881'] = { Name = 'ch3_rd2b_fw_ov_22' }, - ['-1457308865'] = { Name = 'ch3_rd2b_fw_ov_23' }, - ['-1748723582'] = { Name = 'ch3_rd2b_fw_ov_24' }, - ['-996806108'] = { Name = 'ch3_rd2b_fw_ov_25' }, - ['-1218422855'] = { Name = 'ch3_rd2b_fw_ov_26' }, - ['1885718981'] = { Name = 'ch3_rd2b_fw_ov_27' }, - ['-57728685'] = { Name = 'ch3_rd2b_fw_ov_29a' }, - ['1022763576'] = { Name = 'ch3_rd2b_fw_ov_29b' }, - ['178322645'] = { Name = 'ch3_rd2b_fw_ov_30' }, - ['591474205'] = { Name = 'ch3_rd2b_fw_ov_32' }, - ['-267962138'] = { Name = 'ch3_rd2b_fw_ov_85' }, - ['-2036641100'] = { Name = 'ch3_rd2b_fwy_01' }, - ['-1672577510'] = { Name = 'ch3_rd2b_fwy_02' }, - ['1881449927'] = { Name = 'ch3_rd2b_fwy_04' }, - ['-101402371'] = { Name = 'ch3_rd2b_fwy_05' }, - ['-402680557'] = { Name = 'ch3_rd2b_fwy_06' }, - ['-1969447083'] = { Name = 'ch3_rd2b_fwy_06b' }, - ['392786918'] = { Name = 'ch3_rd2b_fwy_07' }, - ['586987978'] = { Name = 'ch3_rd2b_fwy_3' }, - ['458548820'] = { Name = 'ch3_rd2b_fwy_4_rd_41a_ovly2' }, - ['-257035924'] = { Name = 'ch3_rd2b_fwysign_001_bb' }, - ['181457696'] = { Name = 'ch3_rd2b_fwysign_001' }, - ['-745372834'] = { Name = 'ch3_rd2b_fwysign_002_bb' }, - ['-759007220'] = { Name = 'ch3_rd2b_fwysign_002_bba' }, - ['-610778068'] = { Name = 'ch3_rd2b_fwysign_002_o' }, - ['531561692'] = { Name = 'ch3_rd2b_fwysign_002' }, - ['-400767868'] = { Name = 'ch3_rd2b_fwysign_003_bb' }, - ['1466346107'] = { Name = 'ch3_rd2b_fwysign_003_bba' }, - ['32932232'] = { Name = 'ch3_rd2b_fwysign_003_o' }, - ['-311158681'] = { Name = 'ch3_rd2b_fwysign_003' }, - ['-197843479'] = { Name = 'ch3_rd2b_fwysign_004' }, - ['-833168851'] = { Name = 'ch3_rd2b_fwysign_005' }, - ['705958171'] = { Name = 'ch3_rd2b_ovly_fwysgn_01' }, - ['-1773917015'] = { Name = 'ch3_rd2b_rd04_d' }, - ['1360251284'] = { Name = 'ch3_rd2b_rd06_d' }, - ['-1406659532'] = { Name = 'ch3_rd2b_rd1_12' }, - ['2031267338'] = { Name = 'ch3_rd2b_rd1_13' }, - ['-878488790'] = { Name = 'ch3_rd2b_rd1_14' }, - ['-1801951979'] = { Name = 'ch3_rd2b_rd1_15' }, - ['1734281891'] = { Name = 'ch3_rd2b_rd1_16' }, - ['810097784'] = { Name = 'ch3_rd2b_rd1_17' }, - ['-2089827644'] = { Name = 'ch3_rd2b_rd1_18' }, - ['803347366'] = { Name = 'ch3_rd2b_rd1_19' }, - ['-1689029781'] = { Name = 'ch3_rd2b_rd1_20' }, - ['1418487262'] = { Name = 'ch3_rd2b_rd1_21' }, - ['394687871'] = { Name = 'ch3_rd2b_rdbr_03' }, - ['1126340248'] = { Name = 'ch3_rd2b_shadowb01' }, - ['-1626059126'] = { Name = 'ch3_rd2b_shadowb02' }, - ['1587705338'] = { Name = 'ch3_rd2b_support00' }, - ['-781460070'] = { Name = 'ch3_rd2b_support00b' }, - ['-1969762844'] = { Name = 'ch3_rd2b_support01' }, - ['2016356627'] = { Name = 'ch3_rd2b_support02' }, - ['-776691721'] = { Name = 'ch3_rd2b_wall01' }, - ['-628182613'] = { Name = 'ch3_rd2b_wall02' }, - ['-1408707424'] = { Name = 'ch3_rd2b_wall03' }, - ['-1904699008'] = { Name = 'ch3_rd2b_wall04' }, - ['-1629996481'] = { Name = 'ch3_rd2b_wall05' }, - ['1778241675'] = { Name = 'ch3_rd2b_wall06' }, - ['2082501840'] = { Name = 'ch3_rd2b_wall07' }, - ['1301452725'] = { Name = 'ch3_rd2b_wall08' }, - ['662850485'] = { Name = 'ch3_rd2b_wall09' }, - ['411184817'] = { Name = 'ch3_rd2b_wall10' }, - ['-1311154784'] = { Name = 'cheetah' }, - ['6774487'] = { Name = 'chimera' }, - ['349605904'] = { Name = 'chino' }, - ['-1361687965'] = { Name = 'chino2' }, - ['-1607885248'] = { Name = 'cj_arrow_icon_2' }, - ['1081190986'] = { Name = 'cj_arrow_icon' }, - ['162031196'] = { Name = 'cj_cone' }, - ['-1493538113'] = { Name = 'cj_cylinder' }, - ['-893085711'] = { Name = 'cj_parachute' }, - ['1940981977'] = { Name = 'cj_proc_tin2' }, - ['-378442850'] = { Name = 'cj_r_icon_flag' }, - ['-1360947797'] = { Name = 'cj_ring_icon_2' }, - ['390201602'] = { Name = 'cliffhanger' }, - ['205439253'] = { Name = 'cloudhat_altitude_heavy_a' }, - ['-49995102'] = { Name = 'cloudhat_altitude_heavy_b' }, - ['-1209821092'] = { Name = 'cloudhat_altitude_heavy_c' }, - ['-2133727222'] = { Name = 'cloudhat_altitude_light_a' }, - ['339971823'] = { Name = 'cloudhat_altitude_light_b' }, - ['-1218474800'] = { Name = 'cloudhat_altitude_med_a' }, - ['-959108165'] = { Name = 'cloudhat_altitude_med_b' }, - ['-737196497'] = { Name = 'cloudhat_altitude_med_c' }, - ['-148317136'] = { Name = 'cloudhat_altitude_vlight_a' }, - ['680836867'] = { Name = 'cloudhat_altitude_vlight_b' }, - ['1151047359'] = { Name = 'cloudhat_altostatus_a' }, - ['1916432892'] = { Name = 'cloudhat_altostatus_b' }, - ['-319149160'] = { Name = 'cloudhat_cirrocumulus_a' }, - ['-1071197714'] = { Name = 'cloudhat_cirrocumulus_b' }, - ['1455206113'] = { Name = 'cloudhat_cirrus' }, - ['1225604557'] = { Name = 'cloudhat_clear01_a' }, - ['843583555'] = { Name = 'cloudhat_clear01_b' }, - ['-157968149'] = { Name = 'cloudhat_clear01_c' }, - ['-236557773'] = { Name = 'cloudhat_cloudy_a' }, - ['-414296829'] = { Name = 'cloudhat_cloudy_b' }, - ['-94699222'] = { Name = 'cloudhat_cloudy_base' }, - ['-1897520076'] = { Name = 'cloudhat_cloudy_c' }, - ['2100396235'] = { Name = 'cloudhat_cloudy_d' }, - ['1251220369'] = { Name = 'cloudhat_cloudy_e' }, - ['-1599682635'] = { Name = 'cloudhat_cloudy_f' }, - ['-1166320547'] = { Name = 'cloudhat_contrails_a' }, - ['-1466713970'] = { Name = 'cloudhat_contrails_b' }, - ['-1915976960'] = { Name = 'cloudhat_contrails_c' }, - ['68185990'] = { Name = 'cloudhat_contrails_d' }, - ['1119489215'] = { Name = 'cloudhat_fog' }, - ['954540222'] = { Name = 'cloudhat_horizon_a' }, - ['946741200'] = { Name = 'cloudhat_horizon_b' }, - ['644709323'] = { Name = 'cloudhat_horizon_c' }, - ['1582233807'] = { Name = 'cloudhat_nimbus_a' }, - ['814488906'] = { Name = 'cloudhat_nimbus_b' }, - ['58442538'] = { Name = 'cloudhat_nimbus_c' }, - ['1273060922'] = { Name = 'cloudhat_puff_a' }, - ['975944399'] = { Name = 'cloudhat_puff_b' }, - ['-791779310'] = { Name = 'cloudhat_puff_c' }, - ['-514083688'] = { Name = 'cloudhat_puff_old' }, - ['-820737959'] = { Name = 'cloudhat_rain_a' }, - ['-556029977'] = { Name = 'cloudhat_rain_b' }, - ['-1813883975'] = { Name = 'cloudhat_shower_a' }, - ['-1513949318'] = { Name = 'cloudhat_shower_b' }, - ['2042929022'] = { Name = 'cloudhat_shower_c' }, - ['-1957486405'] = { Name = 'cloudhat_snowy01' }, - ['215951106'] = { Name = 'cloudhat_stormy01_a' }, - ['-609074011'] = { Name = 'cloudhat_stormy01_b' }, - ['-378281944'] = { Name = 'cloudhat_stormy01_c' }, - ['-206801763'] = { Name = 'cloudhat_stormy01_d' }, - ['-1047424920'] = { Name = 'cloudhat_stormy01_e' }, - ['-668942970'] = { Name = 'cloudhat_stormy01_f' }, - ['1514654836'] = { Name = 'cloudhat_stratocumulus' }, - ['-1151479258'] = { Name = 'cloudhat_stripey_a' }, - ['-845121877'] = { Name = 'cloudhat_stripey_b' }, - ['-321936622'] = { Name = 'cloudhat_test_anim' }, - ['690321156'] = { Name = 'cloudhat_test_animsoft' }, - ['-1971667422'] = { Name = 'cloudhat_test_fast' }, - ['-1652574385'] = { Name = 'cloudhat_test_fog' }, - ['2037653808'] = { Name = 'cloudhat_wispy_a' }, - ['1874464188'] = { Name = 'cloudhat_wispy_b' }, - ['-2072933068'] = { Name = 'coach' }, - ['906642318'] = { Name = 'cog55' }, - ['704435172'] = { Name = 'cog552' }, - ['330661258'] = { Name = 'cogcabrio' }, - ['-2030171296'] = { Name = 'cognoscenti' }, - ['-604842630'] = { Name = 'cognoscenti2' }, - ['-1045541610'] = { Name = 'comet2' }, - ['-2022483795'] = { Name = 'comet3' }, - ['683047626'] = { Name = 'contender' }, - ['108773431'] = { Name = 'coquette' }, - ['1011753235'] = { Name = 'coquette2' }, - ['784565758'] = { Name = 'coquette3' }, - ['-670052629'] = { Name = 'cropduster01_skin' }, - ['-1339103244'] = { Name = 'cropduster02_skin' }, - ['-934194459'] = { Name = 'cropduster1_skin' }, - ['-1651166217'] = { Name = 'cropduster2_skin' }, - ['192578208'] = { Name = 'cropduster3_skin' }, - ['-1376441533'] = { Name = 'cropduster4_skin' }, - ['448402357'] = { Name = 'cruiser' }, - ['321739290'] = { Name = 'crusader' }, - ['-1779492637'] = { Name = 'cs_amandatownley' }, - ['-413773017'] = { Name = 'cs_andreas' }, - ['650367097'] = { Name = 'cs_ashley' }, - ['-1755309778'] = { Name = 'cs_bankman' }, - ['1767447799'] = { Name = 'cs_barry' }, - ['-1267809450'] = { Name = 'cs_beverly' }, - ['-270159898'] = { Name = 'cs_brad' }, - ['1915268960'] = { Name = 'cs_bradcadaver' }, - ['-1932625649'] = { Name = 'cs_carbuyer' }, - ['-359228352'] = { Name = 'cs_casey' }, - ['819699067'] = { Name = 'cs_chengsr' }, - ['-1041006362'] = { Name = 'cs_chrisformage' }, - ['-607414220'] = { Name = 'cs_clay' }, - ['216536661'] = { Name = 'cs_dale' }, - ['-2054740852'] = { Name = 'cs_davenorton' }, - ['-321892375'] = { Name = 'cs_debra' }, - ['1870669624'] = { Name = 'cs_denise' }, - ['788622594'] = { Name = 'cs_devin' }, - ['1198698306'] = { Name = 'cs_dom' }, - ['1012965715'] = { Name = 'cs_dreyfuss' }, - ['-1549575121'] = { Name = 'cs_drfriedlander' }, - ['1191403201'] = { Name = 'cs_fabien' }, - ['1482427218'] = { Name = 'cs_fbisuit_01' }, - ['103106535'] = { Name = 'cs_floyd' }, - ['261428209'] = { Name = 'cs_guadalope' }, - ['-1022036185'] = { Name = 'cs_gurk' }, - ['1531218220'] = { Name = 'cs_hunter' }, - ['808778210'] = { Name = 'cs_janet' }, - ['1145088004'] = { Name = 'cs_jewelass' }, - ['60192701'] = { Name = 'cs_jimmyboston' }, - ['-1194552652'] = { Name = 'cs_jimmydisanto' }, - ['-258122199'] = { Name = 'cs_joeminuteman' }, - ['-91572095'] = { Name = 'cs_johnnyklebitz' }, - ['1167549130'] = { Name = 'cs_josef' }, - ['1158606749'] = { Name = 'cs_josh' }, - ['1269774364'] = { Name = 'cs_karen_daniels' }, - ['1162230285'] = { Name = 'cs_lamardavis' }, - ['949295643'] = { Name = 'cs_lazlow' }, - ['-1248528957'] = { Name = 'cs_lestercrest' }, - ['1918178165'] = { Name = 'cs_lifeinvad_01' }, - ['1477887514'] = { Name = 'cs_magenta' }, - ['-72125238'] = { Name = 'cs_manuel' }, - ['1464721716'] = { Name = 'cs_marnie' }, - ['1129928304'] = { Name = 'cs_martinmadrazo' }, - ['161007533'] = { Name = 'cs_maryann' }, - ['1890499016'] = { Name = 'cs_michelle' }, - ['-1217776881'] = { Name = 'cs_milton' }, - ['1167167044'] = { Name = 'cs_molly' }, - ['1270514905'] = { Name = 'cs_movpremf_01' }, - ['-1922568579'] = { Name = 'cs_movpremmale' }, - ['-1010001291'] = { Name = 'cs_mrk' }, - ['1334976110'] = { Name = 'cs_mrs_thornhill' }, - ['-872569905'] = { Name = 'cs_mrsphillips' }, - ['1325314544'] = { Name = 'cs_natalia' }, - ['2023152276'] = { Name = 'cs_nervousron' }, - ['-515400693'] = { Name = 'cs_nigel' }, - ['518814684'] = { Name = 'cs_old_man1a' }, - ['-1728452752'] = { Name = 'cs_old_man2' }, - ['-1955548155'] = { Name = 'cs_omega' }, - ['-1389097126'] = { Name = 'cs_orleans' }, - ['1798879480'] = { Name = 'cs_paper' }, - ['-544533759'] = { Name = 'cs_patricia' }, - ['1299047806'] = { Name = 'cs_priest' }, - ['512955554'] = { Name = 'cs_prolsec_02' }, - ['123708879'] = { Name = 'cs_remote_01' }, - ['1179785778'] = { Name = 'cs_russiandrunk' }, - ['-1064078846'] = { Name = 'cs_siemonyetarian' }, - ['-154017714'] = { Name = 'cs_solomon' }, - ['-1528782338'] = { Name = 'cs_stevehains' }, - ['-1992464379'] = { Name = 'cs_stretch' }, - ['1123963760'] = { Name = 'cs_tanisha' }, - ['-2006710211'] = { Name = 'cs_taocheng' }, - ['1397974313'] = { Name = 'cs_taostranslator' }, - ['1545995274'] = { Name = 'cs_tenniscoach' }, - ['978452933'] = { Name = 'cs_terry' }, - ['1776856003'] = { Name = 'cs_tom' }, - ['-1945119518'] = { Name = 'cs_tomepsilon' }, - ['101298480'] = { Name = 'cs_tracydisanto' }, - ['-765011498'] = { Name = 'cs_wade' }, - ['1555078454'] = { Name = 'cs_x_array02' }, - ['796869332'] = { Name = 'cs_x_array03' }, - ['207160315'] = { Name = 'cs_x_rublrga' }, - ['503686996'] = { Name = 'cs_x_rublrgb' }, - ['1992513746'] = { Name = 'cs_x_rublrgc' }, - ['-2005468103'] = { Name = 'cs_x_rublrgd' }, - ['-1973157825'] = { Name = 'cs_x_rublrge' }, - ['-1215587719'] = { Name = 'cs_x_rubmeda' }, - ['634353407'] = { Name = 'cs_x_rubmedb' }, - ['349754642'] = { Name = 'cs_x_rubmedc' }, - ['-1062851382'] = { Name = 'cs_x_rubmedd' }, - ['-438470856'] = { Name = 'cs_x_rubmede' }, - ['726677991'] = { Name = 'cs_x_rubsmla' }, - ['-243022249'] = { Name = 'cs_x_rubsmlb' }, - ['189594089'] = { Name = 'cs_x_rubsmlc' }, - ['350653724'] = { Name = 'cs_x_rubsmld' }, - ['513319040'] = { Name = 'cs_x_rubsmle' }, - ['-1119102666'] = { Name = 'cs_x_rubweea' }, - ['-1714089399'] = { Name = 'cs_x_rubweec' }, - ['-1332461625'] = { Name = 'cs_x_rubweed' }, - ['212137959'] = { Name = 'cs_x_rubweee' }, - ['-432178804'] = { Name = 'cs_x_weesmlb' }, - ['-357782800'] = { Name = 'cs_zimbor' }, - ['500896100'] = { Name = 'cs1_01_barn01_detail' }, - ['686297575'] = { Name = 'cs1_01_barn01' }, - ['1344109197'] = { Name = 'cs1_01_barn02_dec' }, - ['-1988858538'] = { Name = 'cs1_01_barn02_det' }, - ['422408818'] = { Name = 'cs1_01_barn02' }, - ['-1806014262'] = { Name = 'cs1_01_barn03' }, - ['-1583757621'] = { Name = 'cs1_01_billboard' }, - ['1658297197'] = { Name = 'cs1_01_culvert001_decal' }, - ['-234712503'] = { Name = 'cs1_01_culvert001' }, - ['810065309'] = { Name = 'cs1_01_deadtree02' }, - ['-378103811'] = { Name = 'cs1_01_dec11' }, - ['-1349374491'] = { Name = 'cs1_01_deca_aa1' }, - ['-1196118295'] = { Name = 'cs1_01_decal02' }, - ['-1742787124'] = { Name = 'cs1_01_decal02a' }, - ['1634517096'] = { Name = 'cs1_01_decal02b' }, - ['-1147013935'] = { Name = 'cs1_01_decal02c' }, - ['-329478670'] = { Name = 'cs1_01_decal02c001' }, - ['-518602822'] = { Name = 'cs1_01_decal02e' }, - ['-650580911'] = { Name = 'cs1_01_decal10' }, - ['143674099'] = { Name = 'cs1_01_decal16' }, - ['1566962845'] = { Name = 'cs1_01_decal17' }, - ['-335965754'] = { Name = 'cs1_01_decal18' }, - ['-2089533243'] = { Name = 'cs1_01_decal19' }, - ['-1194055012'] = { Name = 'cs1_01_decal69' }, - ['-1918430007'] = { Name = 'cs1_01_emissive_01_lod' }, - ['-955160385'] = { Name = 'cs1_01_emissive_01' }, - ['-2130093763'] = { Name = 'cs1_01_emissive_02_lod' }, - ['-1371523299'] = { Name = 'cs1_01_emissive_02' }, - ['-1112678596'] = { Name = 'cs1_01_emissive_03_lod' }, - ['1759226965'] = { Name = 'cs1_01_emissive_03' }, - ['-1617236980'] = { Name = 'cs1_01_fence_wire02' }, - ['-1545817940'] = { Name = 'cs1_01_fence03' }, - ['-1721807691'] = { Name = 'cs1_01_fencebits' }, - ['-285349131'] = { Name = 'cs1_01_glue_007' }, - ['-1994337096'] = { Name = 'cs1_01_glue_01' }, - ['-1961711188'] = { Name = 'cs1_01_glue_02a' }, - ['347499489'] = { Name = 'cs1_01_glue_03' }, - ['-437809596'] = { Name = 'cs1_01_glue_04' }, - ['-278748870'] = { Name = 'cs1_01_glue_05' }, - ['1369040299'] = { Name = 'cs1_01_glue_06' }, - ['-1552644623'] = { Name = 'cs1_01_land_009' }, - ['1830822473'] = { Name = 'cs1_01_land_08a' }, - ['1214849210'] = { Name = 'cs1_01_land03' }, - ['-1680621700'] = { Name = 'cs1_01_land11_decal01' }, - ['1693962693'] = { Name = 'cs1_01_land11_decal05' }, - ['496749628'] = { Name = 'cs1_01_land11' }, - ['-156893615'] = { Name = 'cs1_01_land14' }, - ['819718327'] = { Name = 'cs1_01_polytunnels_010' }, - ['-1238863038'] = { Name = 'cs1_01_polytunnels_012' }, - ['417653192'] = { Name = 'cs1_01_propane_sign' }, - ['-1759873242'] = { Name = 'cs1_01_props_elec_wire_06b' }, - ['2028324394'] = { Name = 'cs1_01_props_elec_wire_new020' }, - ['-879704471'] = { Name = 'cs1_01_props_elec_wire_s03b' }, - ['-14775816'] = { Name = 'cs1_01_props_elec_wire_sp03' }, - ['827092563'] = { Name = 'cs1_01_props_elec_wire_sp06' }, - ['1257316988'] = { Name = 'cs1_01_props_elec_wire_sp11' }, - ['834924578'] = { Name = 'cs1_01_props_elec_wire_sp15' }, - ['926858370'] = { Name = 'cs1_01_props_elec_wire_sp15b' }, - ['536849065'] = { Name = 'cs1_01_props_elec_wire11b' }, - ['1482266408'] = { Name = 'cs1_01_props_pylon_wire07' }, - ['-965610657'] = { Name = 'cs1_01_props_pylon_wire08' }, - ['-232891809'] = { Name = 'cs1_01_props_pylon_wire121' }, - ['2059538246'] = { Name = 'cs1_01_props_pylon_wire200' }, - ['-1490831412'] = { Name = 'cs1_01_props_pylon_wire301' }, - ['-1532852387'] = { Name = 'cs1_01_scrub' }, - ['1437795656'] = { Name = 'cs1_01_shed03' }, - ['-682800176'] = { Name = 'cs1_01_signs01' }, - ['45621925'] = { Name = 'cs1_01_signs02' }, - ['1767174117'] = { Name = 'cs1_01_signs03' }, - ['-1235258992'] = { Name = 'cs1_01_silo_002_ovr' }, - ['178751227'] = { Name = 'cs1_01_silo_002' }, - ['2000010372'] = { Name = 'cs1_01_silo_det_lod' }, - ['-619879544'] = { Name = 'cs1_01_silo_det' }, - ['-1578053562'] = { Name = 'cs1_01_silo' }, - ['-604837460'] = { Name = 'cs1_01_smallshed' }, - ['-238595328'] = { Name = 'cs1_01_template_drainage_039' }, - ['-136377374'] = { Name = 'cs1_01_templates_bales_005' }, - ['-331549546'] = { Name = 'cs1_01_templates_bales_006' }, - ['-628666069'] = { Name = 'cs1_01_templates_bales_007' }, - ['-320868068'] = { Name = 'cs1_01_templates_bales_03_d002' }, - ['140464641'] = { Name = 'cs1_01_truckbuild1' }, - ['496270443'] = { Name = 'cs1_01_truckbuild2' }, - ['759569358'] = { Name = 'cs1_01_truckbuild3' }, - ['1070252247'] = { Name = 'cs1_01_truckbuild5' }, - ['1418848869'] = { Name = 'cs1_01_truckbuild6' }, - ['-120883601'] = { Name = 'cs1_01_tunnel11' }, - ['477025672'] = { Name = 'cs1_01_tunnelhoops01' }, - ['956364290'] = { Name = 'cs1_01_tunnels_014' }, - ['-398406445'] = { Name = 'cs1_01_tunnels_027' }, - ['-328149813'] = { Name = 'cs1_01_tunnels_07' }, - ['-161331385'] = { Name = 'cs1_01_util02' }, - ['52486340'] = { Name = 'cs1_01_util05' }, - ['1583982486'] = { Name = 'cs1_01_wall02' }, - ['-1426247821'] = { Name = 'cs1_01_watertank01' }, - ['-1757504760'] = { Name = 'cs1_01_weed_01' }, - ['-1459732857'] = { Name = 'cs1_01_weed_02' }, - ['1396838982'] = { Name = 'cs1_01_weldshed_a' }, - ['-1332924853'] = { Name = 'cs1_01_weldshed' }, - ['1090465763'] = { Name = 'cs1_02_050_dec' }, - ['-827104492'] = { Name = 'cs1_02_050_ladders' }, - ['980476069'] = { Name = 'cs1_02_050' }, - ['-507362406'] = { Name = 'cs1_02_28_glue' }, - ['511326633'] = { Name = 'cs1_02_28aa_glue' }, - ['1641786747'] = { Name = 'cs1_02_28b_glue' }, - ['1707802587'] = { Name = 'cs1_02_28bb_glue' }, - ['1077471875'] = { Name = 'cs1_02_33_glue' }, - ['-1777388846'] = { Name = 'cs1_02_33_rail_glue' }, - ['-1050389536'] = { Name = 'cs1_02_33_rail' }, - ['1720337801'] = { Name = 'cs1_02_33b_glue' }, - ['-150808201'] = { Name = 'cs1_02_33c_glue' }, - ['-1231647556'] = { Name = 'cs1_02_37_chick' }, - ['-1916728028'] = { Name = 'cs1_02_bb_brand_hd' }, - ['-374172712'] = { Name = 'cs1_02_bb2_brand_hd' }, - ['1323780898'] = { Name = 'cs1_02_bb2_brandb_hd' }, - ['1991978464'] = { Name = 'cs1_02_beam04_rail' }, - ['-808475034'] = { Name = 'cs1_02_beam04' }, - ['-1698433478'] = { Name = 'cs1_02_biln019_dec' }, - ['-763407615'] = { Name = 'cs1_02_biln019_rail' }, - ['1926798123'] = { Name = 'cs1_02_biln019' }, - ['-1029398238'] = { Name = 'cs1_02_biln020' }, - ['933823517'] = { Name = 'cs1_02_biln04_dec' }, - ['-1192977805'] = { Name = 'cs1_02_biln04' }, - ['-853490290'] = { Name = 'cs1_02_buntingflags_01' }, - ['-1638242302'] = { Name = 'cs1_02_buntingflags_02' }, - ['1878625089'] = { Name = 'cs1_02_buntingflags_03' }, - ['1873685238'] = { Name = 'cs1_02_buntingflags' }, - ['276780974'] = { Name = 'cs1_02_carpark01a_dec' }, - ['-1728789530'] = { Name = 'cs1_02_carpark02' }, - ['-925548910'] = { Name = 'cs1_02_carpark03_d' }, - ['-430432741'] = { Name = 'cs1_02_carpark03_ladder' }, - ['-967696732'] = { Name = 'cs1_02_carpark03' }, - ['1665456259'] = { Name = 'cs1_02_carpark04' }, - ['901061010'] = { Name = 'cs1_02_cbf1slod' }, - ['2054705809'] = { Name = 'cs1_02_cfdoor_front' }, - ['1959688621'] = { Name = 'cs1_02_cfdoor_side' }, - ['1025110825'] = { Name = 'cs1_02_cfdoor_slod' }, - ['361246720'] = { Name = 'cs1_02_cfdr_back' }, - ['764286573'] = { Name = 'cs1_02_chair_tarped001' }, - ['-1820729602'] = { Name = 'cs1_02_chikn12_dec' }, - ['1479804249'] = { Name = 'cs1_02_chikn12_ladder001' }, - ['1554213045'] = { Name = 'cs1_02_chikn12_rail2' }, - ['-411647072'] = { Name = 'cs1_02_chikn12' }, - ['1461817122'] = { Name = 'cs1_02_cprk1_d' }, - ['1970764590'] = { Name = 'cs1_02_cprk1' }, - ['-1443414103'] = { Name = 'cs1_02_cprk2_d' }, - ['-1282476224'] = { Name = 'cs1_02_cprk2' }, - ['1801569475'] = { Name = 'cs1_02_cprk3_dec' }, - ['-997516972'] = { Name = 'cs1_02_cprk3' }, - ['-367935283'] = { Name = 'cs1_02_cprk4_dc1' }, - ['-1911870407'] = { Name = 'cs1_02_cprk4' }, - ['-1598140001'] = { Name = 'cs1_02_cprk5' }, - ['-1786408510'] = { Name = 'cs1_02_deco03_dec' }, - ['1279856009'] = { Name = 'cs1_02_deco03_ladder' }, - ['-513045951'] = { Name = 'cs1_02_deco03_windows' }, - ['-814302300'] = { Name = 'cs1_02_deco03' }, - ['321266885'] = { Name = 'cs1_02_emissive01_lod' }, - ['751284865'] = { Name = 'cs1_02_emissive01' }, - ['1267452218'] = { Name = 'cs1_02_emissive02_lod' }, - ['1251012115'] = { Name = 'cs1_02_emissive02' }, - ['-864564792'] = { Name = 'cs1_02_emissive03_lod' }, - ['-1910278857'] = { Name = 'cs1_02_emissive03' }, - ['7326082'] = { Name = 'cs1_02_emissive04_lod' }, - ['517478050'] = { Name = 'cs1_02_emissive04' }, - ['-2058655367'] = { Name = 'cs1_02_emissive05_lod' }, - ['1111711088'] = { Name = 'cs1_02_emissive05' }, - ['-1143426531'] = { Name = 'cs1_02_emissive06_lod' }, - ['1351219709'] = { Name = 'cs1_02_emissive06' }, - ['-535309648'] = { Name = 'cs1_02_festival_stage' }, - ['-1672905681'] = { Name = 'cs1_02_festivalbanners' }, - ['1977076315'] = { Name = 'cs1_02_glue_01' }, - ['1083858953'] = { Name = 'cs1_02_glue_02' }, - ['776846192'] = { Name = 'cs1_02_glue_04' }, - ['1472299569'] = { Name = 'cs1_02_indust_02' }, - ['-1181665246'] = { Name = 'cs1_02_indust_02d_' }, - ['748718668'] = { Name = 'cs1_02_indust_08_d' }, - ['1934620438'] = { Name = 'cs1_02_indust_08_ladder' }, - ['-324588546'] = { Name = 'cs1_02_indust_08' }, - ['-566983557'] = { Name = 'cs1_02_milo_window_dummy' }, - ['886074271'] = { Name = 'cs1_02_milo2_lod' }, - ['-1722460612'] = { Name = 'cs1_02_milo2_slod1' }, - ['1769525396'] = { Name = 'cs1_02_milo3_lod' }, - ['1502218657'] = { Name = 'cs1_02_rail01' }, - ['2136626497'] = { Name = 'cs1_02_rail02' }, - ['-1399705828'] = { Name = 'cs1_02_rail03_d' }, - ['-1875380484'] = { Name = 'cs1_02_rail03' }, - ['-886313761'] = { Name = 'cs1_02_rail04' }, - ['58492072'] = { Name = 'cs1_02_retainer024' }, - ['1440360802'] = { Name = 'cs1_02_retainer025' }, - ['672419287'] = { Name = 'cs1_02_retainer026' }, - ['2082928123'] = { Name = 'cs1_02_retainer027' }, - ['1281889918'] = { Name = 'cs1_02_retainer028' }, - ['-1633699092'] = { Name = 'cs1_02_retainer029' }, - ['1813011290'] = { Name = 'cs1_02_retainer13' }, - ['-1237618765'] = { Name = 'cs1_02_retainer14' }, - ['-678251935'] = { Name = 'cs1_02_retainer15' }, - ['-1851414904'] = { Name = 'cs1_02_retainer16' }, - ['-2062316188'] = { Name = 'cs1_02_retainer17' }, - ['-559988614'] = { Name = 'cs1_02_retainer18' }, - ['280110239'] = { Name = 'cs1_02_retainer19' }, - ['83201518'] = { Name = 'cs1_02_retainer20' }, - ['374976694'] = { Name = 'cs1_02_retainer21' }, - ['1396910732'] = { Name = 'cs1_02_retainer22' }, - ['-1567405781'] = { Name = 'cs1_02_retainer23' }, - ['-2041927399'] = { Name = 'cs1_02_rwshed01' }, - ['1068847033'] = { Name = 'cs1_02_smstation' }, - ['511451732'] = { Name = 'cs1_02_stage_rails' }, - ['785022080'] = { Name = 'cs1_02_tower_rail' }, - ['-19938490'] = { Name = 'cs1_02_weed' }, - ['168340054'] = { Name = 'cs1_02_wtower' }, - ['-1744196223'] = { Name = 'cs1_03_bigware_alpha' }, - ['-1615813331'] = { Name = 'cs1_03_bigware_rail' }, - ['832306070'] = { Name = 'cs1_03_bigware' }, - ['50999745'] = { Name = 'cs1_03_build_d01' }, - ['-281015763'] = { Name = 'cs1_03_build_d02' }, - ['562425528'] = { Name = 'cs1_03_build_d03' }, - ['292769427'] = { Name = 'cs1_03_build_d04' }, - ['-1138449417'] = { Name = 'cs1_03_build_d05' }, - ['-1403714472'] = { Name = 'cs1_03_build_d06' }, - ['-779681331'] = { Name = 'cs1_03_condeets1' }, - ['-549554049'] = { Name = 'cs1_03_cons1' }, - ['-1360324647'] = { Name = 'cs1_03_cons2' }, - ['-1122281850'] = { Name = 'cs1_03_consbill1' }, - ['-1351075008'] = { Name = 'cs1_03_consbill2' }, - ['-1580818467'] = { Name = 'cs1_03_consbill3' }, - ['60303638'] = { Name = 'cs1_03_consgrnd_dec' }, - ['-460555672'] = { Name = 'cs1_03_consgrnd' }, - ['-1906379174'] = { Name = 'cs1_03_emissive_lod' }, - ['747073808'] = { Name = 'cs1_03_emissive' }, - ['354702678'] = { Name = 'cs1_03_glue_001' }, - ['-953632428'] = { Name = 'cs1_03_glue_002' }, - ['-1192551207'] = { Name = 'cs1_03_glue_003' }, - ['-308148750'] = { Name = 'cs1_03_glue_004' }, - ['1321242795'] = { Name = 'cs1_03_hedgebase_1' }, - ['-593515413'] = { Name = 'cs1_03_hedgebase_2' }, - ['-1628959439'] = { Name = 'cs1_03_hedgedecal_1' }, - ['-1849036043'] = { Name = 'cs1_03_hedgedecal_2' }, - ['2141966489'] = { Name = 'cs1_03_house_alpha' }, - ['-1231197872'] = { Name = 'cs1_03_house1_alpha' }, - ['-994629715'] = { Name = 'cs1_03_house1' }, - ['-1994666419'] = { Name = 'cs1_03_house2_alpha' }, - ['-1278179872'] = { Name = 'cs1_03_house2' }, - ['1757512289'] = { Name = 'cs1_03_house3_alpha' }, - ['-1476170170'] = { Name = 'cs1_03_house3' }, - ['-1355326414'] = { Name = 'cs1_03_house4_alpha' }, - ['-1759130485'] = { Name = 'cs1_03_house4' }, - ['-1921601270'] = { Name = 'cs1_03_house5_alpha' }, - ['-1987464877'] = { Name = 'cs1_03_house5' }, - ['-294529626'] = { Name = 'cs1_03_house6_dec' }, - ['-1600004281'] = { Name = 'cs1_03_house6' }, - ['1259092018'] = { Name = 'cs1_03_house7_alpha' }, - ['1917944487'] = { Name = 'cs1_03_house7' }, - ['-421394744'] = { Name = 'cs1_03_hsegrnda_dec' }, - ['1289253213'] = { Name = 'cs1_03_hsegrnda_dets' }, - ['-936009440'] = { Name = 'cs1_03_hsegrnda' }, - ['-1819101221'] = { Name = 'cs1_03_hsegrndb' }, - ['204493111'] = { Name = 'cs1_03_hsegrowth' }, - ['474867474'] = { Name = 'cs1_03_hsewall1' }, - ['455350863'] = { Name = 'cs1_03_iron_spikes' }, - ['-635932768'] = { Name = 'cs1_03_poster1' }, - ['1514481512'] = { Name = 'cs1_03_posters2' }, - ['-831439152'] = { Name = 'cs1_03_shps1_dets' }, - ['1323113141'] = { Name = 'cs1_03_shps1' }, - ['954325658'] = { Name = 'cs1_03_shps2_alpha' }, - ['981365240'] = { Name = 'cs1_03_shps2' }, - ['1344367720'] = { Name = 'cs1_03_shps3_alpha' }, - ['689830025'] = { Name = 'cs1_03_shps3_dets' }, - ['-2003169746'] = { Name = 'cs1_03_shps3' }, - ['1781300532'] = { Name = 'cs1_03_shpsgrnd_d' }, - ['781316872'] = { Name = 'cs1_03_shpsgrnd' }, - ['535698739'] = { Name = 'cs1_03_shpss_dec' }, - ['1482752112'] = { Name = 'cs1_03_sprmgrnd_d' }, - ['-940902850'] = { Name = 'cs1_03_sprmkt_d' }, - ['-1571344999'] = { Name = 'cs1_03_sprmkt' }, - ['-156024109'] = { Name = 'cs1_03_sprmktgrnd' }, - ['-1614601457'] = { Name = 'cs1_03_wareh1_d' }, - ['-1220353920'] = { Name = 'cs1_03_wareh1' }, - ['-1561305444'] = { Name = 'cs1_03_weed' }, - ['1787580084'] = { Name = 'cs1_04_63_ov' }, - ['514604305'] = { Name = 'cs1_04_63' }, - ['-1297084746'] = { Name = 'cs1_04_adstslod' }, - ['1122175852'] = { Name = 'cs1_04_aldstslod' }, - ['320507128'] = { Name = 'cs1_04_apt_balc_rail' }, - ['1004196714'] = { Name = 'cs1_04_apt_dec_dest' }, - ['-1734045561'] = { Name = 'cs1_04_apt_decals' }, - ['-816303176'] = { Name = 'cs1_04_apt_dest' }, - ['-2004637554'] = { Name = 'cs1_04_apt_grnd_dec' }, - ['2057151048'] = { Name = 'cs1_04_apt_grnd_dst_dec' }, - ['-636665748'] = { Name = 'cs1_04_apt_grnd_dst' }, - ['778463341'] = { Name = 'cs1_04_apt_grnd_lod' }, - ['766382206'] = { Name = 'cs1_04_apt_grnd' }, - ['-1837682020'] = { Name = 'cs1_04_apt_hole_dest' }, - ['918483307'] = { Name = 'cs1_04_apt_signs' }, - ['-1973270115'] = { Name = 'cs1_04_apt_slod' }, - ['-341551967'] = { Name = 'cs1_04_apt' }, - ['1462966863'] = { Name = 'cs1_04_aptdestgrnd_lod' }, - ['-381646973'] = { Name = 'cs1_04_bank_bb' }, - ['1502194279'] = { Name = 'cs1_04_bank_ov' }, - ['-961180886'] = { Name = 'cs1_04_bank' }, - ['-630677966'] = { Name = 'cs1_04_bankgrnd' }, - ['-1495883599'] = { Name = 'cs1_04_bnkcarpark_ov' }, - ['1883955272'] = { Name = 'cs1_04_building_01' }, - ['959509013'] = { Name = 'cs1_04_building_02' }, - ['756412540'] = { Name = 'cs1_04_burnt_rubble' }, - ['-1367366038'] = { Name = 'cs1_04_canopy' }, - ['883999951'] = { Name = 'cs1_04_emissive_lod' }, - ['-916350315'] = { Name = 'cs1_04_emissive' }, - ['-484971063'] = { Name = 'cs1_04_emptylot_ov' }, - ['-414328756'] = { Name = 'cs1_04_emptylot' }, - ['150257251'] = { Name = 'cs1_04_garage_build' }, - ['2083732794'] = { Name = 'cs1_04_garage_det' }, - ['321210883'] = { Name = 'cs1_04_garage_grnd' }, - ['-155691249'] = { Name = 'cs1_04_garagegrnd_ov' }, - ['-1617719906'] = { Name = 'cs1_04_gardens_a' }, - ['1074896842'] = { Name = 'cs1_04_gardens' }, - ['1049225362'] = { Name = 'cs1_04_gasparticle_grp2_02' }, - ['1839351486'] = { Name = 'cs1_04_gasparticle_grp2_03' }, - ['451223881'] = { Name = 'cs1_04_gasparticle_grp2_04' }, - ['-405554397'] = { Name = 'cs1_04_gasparticle_grp2_05' }, - ['-837318741'] = { Name = 'cs1_04_gasparticle_grp2_06' }, - ['1215921261'] = { Name = 'cs1_04_gasparticle_grp2_07' }, - ['917756130'] = { Name = 'cs1_04_gasparticle_grp2_08' }, - ['369784200'] = { Name = 'cs1_04_gasparticle_grp2' }, - ['921846686'] = { Name = 'cs1_04_gassign_grp1' }, - ['-1757670021'] = { Name = 'cs1_04_gassign_slod_grp1' }, - ['2035201291'] = { Name = 'cs1_04_gasstation_burn_decals' }, - ['1022004524'] = { Name = 'cs1_04_gasstation_details_grp1' }, - ['1595073649'] = { Name = 'cs1_04_gasstation_grp1_slod' }, - ['-1838391287'] = { Name = 'cs1_04_gasstation_grp1' }, - ['-275069589'] = { Name = 'cs1_04_gasstation_grp2_slod' }, - ['-852339292'] = { Name = 'cs1_04_gasstation_grp2' }, - ['-470206842'] = { Name = 'cs1_04_glue_weed01' }, - ['-1102910698'] = { Name = 'cs1_04_glue_weed02' }, - ['2025054201'] = { Name = 'cs1_04_glue_weed03' }, - ['1655223267'] = { Name = 'cs1_04_glue_weed04' }, - ['1721244447'] = { Name = 'cs1_04_hedgebase_1' }, - ['1974581586'] = { Name = 'cs1_04_hedgebase_2' }, - ['-702677820'] = { Name = 'cs1_04_hedgedecal_1' }, - ['1490223680'] = { Name = 'cs1_04_hedgedecal_2' }, - ['-934294401'] = { Name = 'cs1_04_indusgrnd_a' }, - ['-131012177'] = { Name = 'cs1_04_indusgrnd' }, - ['1832692018'] = { Name = 'cs1_04_indusgrndb' }, - ['-999956102'] = { Name = 'cs1_04_induswall' }, - ['-2128103296'] = { Name = 'cs1_04_motel_alpha' }, - ['314069656'] = { Name = 'cs1_04_motel_rail_01' }, - ['612365863'] = { Name = 'cs1_04_motel_rail_02' }, - ['1615556029'] = { Name = 'cs1_04_motel_rail_03' }, - ['1102917793'] = { Name = 'cs1_04_motel_rail_04' }, - ['369977972'] = { Name = 'cs1_04_motel_wall_rail' }, - ['-113511864'] = { Name = 'cs1_04_motel_wall' }, - ['-2074204311'] = { Name = 'cs1_04_motel' }, - ['-1447197336'] = { Name = 'cs1_04_motelsign' }, - ['458167383'] = { Name = 'cs1_04_motelsigna' }, - ['209097157'] = { Name = 'cs1_04_motlgrnd' }, - ['2012593192'] = { Name = 'cs1_04_motlgrowth_g' }, - ['-1391605449'] = { Name = 'cs1_04_motlgrowth' }, - ['-57046472'] = { Name = 'cs1_04_noticeboard' }, - ['-1383345426'] = { Name = 'cs1_04_ov1' }, - ['-1691898330'] = { Name = 'cs1_04_ov2' }, - ['1350605017'] = { Name = 'cs1_04_ov3' }, - ['-1234218649'] = { Name = 'cs1_04_particle_dummy' }, - ['-202549442'] = { Name = 'cs1_04_restgrnd_alf' }, - ['2140987077'] = { Name = 'cs1_04_restgrnd' }, - ['-360868865'] = { Name = 'cs1_04_restrnt_alpha' }, - ['446939869'] = { Name = 'cs1_04_restrnt_night' }, - ['-351038852'] = { Name = 'cs1_04_restrnt_sign' }, - ['-2107632904'] = { Name = 'cs1_04_restrnt' }, - ['-1803060165'] = { Name = 'cs1_04_rf_chopper_lod' }, - ['-413862630'] = { Name = 'cs1_04_rf_chopper' }, - ['41650019'] = { Name = 'cs1_04_shadow_proxy' }, - ['1532319592'] = { Name = 'cs1_04_ware1_alpha' }, - ['130978011'] = { Name = 'cs1_04_ware1_bb' }, - ['-1571158030'] = { Name = 'cs1_04_ware1' }, - ['-974776275'] = { Name = 'cs1_04_ware2_alpha' }, - ['-39973240'] = { Name = 'cs1_04_ware2_bb' }, - ['-1341152419'] = { Name = 'cs1_04_ware2' }, - ['17499132'] = { Name = 'cs1_05__ext01' }, - ['1229876266'] = { Name = 'cs1_05_bar_neon' }, - ['177279207'] = { Name = 'cs1_05_bar001_dec' }, - ['1309431798'] = { Name = 'cs1_05_bar001' }, - ['-600694780'] = { Name = 'cs1_05_bonds_dec' }, - ['-288640320'] = { Name = 'cs1_05_bonds' }, - ['559754158'] = { Name = 'cs1_05_carlot_build_d' }, - ['-415020090'] = { Name = 'cs1_05_carlot_build' }, - ['-1064616111'] = { Name = 'cs1_05_carlot_mainsign' }, - ['-1619580933'] = { Name = 'cs1_05_carlot_ov' }, - ['-69433691'] = { Name = 'cs1_05_carlot_rail' }, - ['-1033084430'] = { Name = 'cs1_05_carlot_shops_dec' }, - ['964772369'] = { Name = 'cs1_05_carlot_shops' }, - ['470294214'] = { Name = 'cs1_05_carlot_wall' }, - ['1788477959'] = { Name = 'cs1_05_carlot' }, - ['1646098549'] = { Name = 'cs1_05_clinic_grnd_ov' }, - ['1748922202'] = { Name = 'cs1_05_clinic_grnd' }, - ['1401264817'] = { Name = 'cs1_05_clinic_grnd2' }, - ['1857861929'] = { Name = 'cs1_05_clinic_ov' }, - ['1970986867'] = { Name = 'cs1_05_clinic_ov2' }, - ['-1152499815'] = { Name = 'cs1_05_clinic_shops_alpha' }, - ['-1060326916'] = { Name = 'cs1_05_clinic_shops_det' }, - ['-2033597696'] = { Name = 'cs1_05_clinic_shops' }, - ['1754084014'] = { Name = 'cs1_05_clinic' }, - ['-1551970164'] = { Name = 'cs1_05_emissive_lod' }, - ['45334894'] = { Name = 'cs1_05_emissive' }, - ['1278237441'] = { Name = 'cs1_05_festival_banners02' }, - ['1988782063'] = { Name = 'cs1_05_garage_01' }, - ['1203767899'] = { Name = 'cs1_05_garage_02' }, - ['-1641136696'] = { Name = 'cs1_05_garage02' }, - ['-1609154759'] = { Name = 'cs1_05_glue_02' }, - ['-1416924036'] = { Name = 'cs1_05_glue01' }, - ['8101475'] = { Name = 'cs1_05_glue03' }, - ['-403182252'] = { Name = 'cs1_05_glue04' }, - ['-446016903'] = { Name = 'cs1_05_hedgebase' }, - ['139449214'] = { Name = 'cs1_05_house_005' }, - ['-257726147'] = { Name = 'cs1_05_house_01' }, - ['-2036695259'] = { Name = 'cs1_05_house_02_dec' }, - ['-2124870998'] = { Name = 'cs1_05_house_02' }, - ['1105038582'] = { Name = 'cs1_05_house_03_dec' }, - ['51285523'] = { Name = 'cs1_05_house_03' }, - ['366130075'] = { Name = 'cs1_05_house_04' }, - ['2135103048'] = { Name = 'cs1_05_house_decals' }, - ['1551729046'] = { Name = 'cs1_05_house_ext01_dec' }, - ['6410829'] = { Name = 'cs1_05_house_rail' }, - ['-1978718469'] = { Name = 'cs1_05_indust_18' }, - ['133356657'] = { Name = 'cs1_05_indust_18d_' }, - ['1447286921'] = { Name = 'cs1_05_jnkyrdbld_ovly' }, - ['-1864746683'] = { Name = 'cs1_05_junkyardbld_ov' }, - ['1892437410'] = { Name = 'cs1_05_junkyardbld' }, - ['659775987'] = { Name = 'cs1_05_junkyardgrnd_ov' }, - ['-1073961156'] = { Name = 'cs1_05_junkyardgrnd' }, - ['-968063536'] = { Name = 'cs1_05_res_grnd_ov' }, - ['1166034253'] = { Name = 'cs1_05_res_grnd_ov2' }, - ['1275837038'] = { Name = 'cs1_05_res_grnd' }, - ['371884825'] = { Name = 'cs1_05_res_grnd2' }, - ['-1345298635'] = { Name = 'cs1_05_res_walls2' }, - ['1972464312'] = { Name = 'cs1_05_res_walls3' }, - ['-1892940555'] = { Name = 'cs1_05_scrap_frame' }, - ['-323451289'] = { Name = 'cs1_05_shop003_bb' }, - ['1990020874'] = { Name = 'cs1_05_shop003' }, - ['-144328483'] = { Name = 'cs1_05_shop01_ov' }, - ['1810534758'] = { Name = 'cs1_05_shop01' }, - ['-499548605'] = { Name = 'cs1_05_shop03_dec' }, - ['934903988'] = { Name = 'cs1_05_wiresa' }, - ['695723057'] = { Name = 'cs1_05_wiresb' }, - ['-1675428646'] = { Name = 'cs1_06_church_alpha' }, - ['-772051253'] = { Name = 'cs1_06_church' }, - ['44338259'] = { Name = 'cs1_06_churchdets' }, - ['542531032'] = { Name = 'cs1_06_churchgrnd_dec' }, - ['1961311925'] = { Name = 'cs1_06_churchgrnd' }, - ['-102006507'] = { Name = 'cs1_06_churchsign' }, - ['163483664'] = { Name = 'cs1_06_emissive_lod' }, - ['1998847728'] = { Name = 'cs1_06_emissive' }, - ['-1467998699'] = { Name = 'cs1_06_firest_det01' }, - ['1890546004'] = { Name = 'cs1_06_firest_grnd' }, - ['821404969'] = { Name = 'cs1_06_firest01_d' }, - ['-765670279'] = { Name = 'cs1_06_firest01_dec' }, - ['-1731811828'] = { Name = 'cs1_06_firest01_ldr002' }, - ['-1173626066'] = { Name = 'cs1_06_firest01_ldr01' }, - ['-1050787317'] = { Name = 'cs1_06_firest01' }, - ['-749722728'] = { Name = 'cs1_06_firestnrailings_lod' }, - ['1426989615'] = { Name = 'cs1_06_firestnrailings' }, - ['1110814991'] = { Name = 'cs1_06_glue_01' }, - ['-492277250'] = { Name = 'cs1_06_glue_02' }, - ['-1779989936'] = { Name = 'cs1_06_glue_02b' }, - ['-2110085937'] = { Name = 'cs1_06_hedgebase' }, - ['-1425427465'] = { Name = 'cs1_06_hedgedecal' }, - ['365975681'] = { Name = 'cs1_06_house1_alpha' }, - ['334776410'] = { Name = 'cs1_06_house1' }, - ['-1191632451'] = { Name = 'cs1_06_house2_alpha' }, - ['2083887339'] = { Name = 'cs1_06_house2' }, - ['-538235896'] = { Name = 'cs1_06_house3_alpha' }, - ['-1840986871'] = { Name = 'cs1_06_house3' }, - ['-1852984466'] = { Name = 'cs1_06_house4_alpha' }, - ['-1581685774'] = { Name = 'cs1_06_house4' }, - ['-1403772691'] = { Name = 'cs1_06_house5_alpha' }, - ['-1245475834'] = { Name = 'cs1_06_house5' }, - ['-1354864001'] = { Name = 'cs1_06_hsegrnd_alpha' }, - ['1148569746'] = { Name = 'cs1_06_hsegrnd' }, - ['-2080905418'] = { Name = 'cs1_06_hsewalls1' }, - ['-114211505'] = { Name = 'cs1_06_liquorstore_alpha' }, - ['-955548236'] = { Name = 'cs1_06_liquorstore' }, - ['758464583'] = { Name = 'cs1_06_lngwrhse_ldr' }, - ['694178974'] = { Name = 'cs1_06_longwarehouse_a' }, - ['-1322482288'] = { Name = 'cs1_06_longwarehouse_details' }, - ['-1321757852'] = { Name = 'cs1_06_longwarehouse' }, - ['1728698824'] = { Name = 'cs1_06_lowbuild_alpha' }, - ['846429286'] = { Name = 'cs1_06_lowbuild_ldr' }, - ['2040679213'] = { Name = 'cs1_06_lowbuild' }, - ['-53132574'] = { Name = 'cs1_06_lowbuildgrnd_a' }, - ['-10516986'] = { Name = 'cs1_06_lowbuildgrnd' }, - ['-1536053400'] = { Name = 'cs1_06_market_alpha' }, - ['1635915387'] = { Name = 'cs1_06_market_bb' }, - ['-356919094'] = { Name = 'cs1_06_market_dets' }, - ['1400875814'] = { Name = 'cs1_06_market' }, - ['-173239731'] = { Name = 'cs1_06_mktgrnd' }, - ['-874925509'] = { Name = 'cs1_06_netting' }, - ['-2037120409'] = { Name = 'cs1_06_noticeboard' }, - ['-187731734'] = { Name = 'cs1_06_oldshed' }, - ['1818032496'] = { Name = 'cs1_06_pb_archsign_d' }, - ['168495826'] = { Name = 'cs1_06_pb_archsign' }, - ['-665229001'] = { Name = 'cs1_06_shadow_proxy' }, - ['-2035323739'] = { Name = 'cs1_06_shop_building' }, - ['1701765935'] = { Name = 'cs1_06_shop_decals' }, - ['2098530057'] = { Name = 'cs1_06_shop_details' }, - ['771858246'] = { Name = 'cs1_06_shop1_dec' }, - ['1197449754'] = { Name = 'cs1_06_shops01_detail' }, - ['1370436671'] = { Name = 'cs1_06_shops01_ldr' }, - ['-54372032'] = { Name = 'cs1_06_shops01' }, - ['-524553974'] = { Name = 'cs1_06_shops02_alpha' }, - ['326796976'] = { Name = 'cs1_06_shops02' }, - ['-1213413330'] = { Name = 'cs1_06_sign' }, - ['2124175559'] = { Name = 'cs1_06_substation_dec' }, - ['-1571045444'] = { Name = 'cs1_06_substation_details' }, - ['-543380191'] = { Name = 'cs1_06_substation' }, - ['157617703'] = { Name = 'cs1_06_tractor_alpha' }, - ['-617135026'] = { Name = 'cs1_06_tractor' }, - ['671230856'] = { Name = 'cs1_06_v_tattoo2_e_dmy' }, - ['-995678779'] = { Name = 'cs1_06_v_tattoo2_e_lod' }, - ['212256103'] = { Name = 'cs1_06_weed' }, - ['756105914'] = { Name = 'cs1_07_beach_00' }, - ['1034347493'] = { Name = 'cs1_07_beach_01' }, - ['-815954096'] = { Name = 'cs1_07_beach_02' }, - ['-402016088'] = { Name = 'cs1_07_beach_03' }, - ['-104047571'] = { Name = 'cs1_07_beach_04' }, - ['99578995'] = { Name = 'cs1_07_beach_05' }, - ['-1599755807'] = { Name = 'cs1_07_beach_06' }, - ['-1302704822'] = { Name = 'cs1_07_beach_07' }, - ['-1021251881'] = { Name = 'cs1_07_beach_08' }, - ['-735112989'] = { Name = 'cs1_07_beach_09' }, - ['-387391170'] = { Name = 'cs1_07_beach_clf_00' }, - ['-643611981'] = { Name = 'cs1_07_beach_clf_01' }, - ['-972463851'] = { Name = 'cs1_07_beachhut_dec' }, - ['1648590642'] = { Name = 'cs1_07_beachhut' }, - ['-951463438'] = { Name = 'cs1_07_beachhut2_dec' }, - ['-368909319'] = { Name = 'cs1_07_beachhut2' }, - ['82148095'] = { Name = 'cs1_07_beachhut3_dec' }, - ['-1280313520'] = { Name = 'cs1_07_beachhut3' }, - ['-1547269059'] = { Name = 'cs1_07_beachsteps' }, - ['925642569'] = { Name = 'cs1_07_birdsnest' }, - ['1750155493'] = { Name = 'cs1_07_bridge_dec' }, - ['-443973803'] = { Name = 'cs1_07_bridge_rail' }, - ['-40852083'] = { Name = 'cs1_07_bridge' }, - ['786101614'] = { Name = 'cs1_07_build1' }, - ['414370078'] = { Name = 'cs1_07_build2' }, - ['184626619'] = { Name = 'cs1_07_build3' }, - ['-197787611'] = { Name = 'cs1_07_build4' }, - ['-438702039'] = { Name = 'cs1_07_d_00' }, - ['-54062701'] = { Name = 'cs1_07_d_00b' }, - ['1718972770'] = { Name = 'cs1_07_d_01' }, - ['1018109398'] = { Name = 'cs1_07_d_02' }, - ['1260567229'] = { Name = 'cs1_07_d_03' }, - ['-1587255489'] = { Name = 'cs1_07_d_04' }, - ['629305205'] = { Name = 'cs1_07_d_05' }, - ['-209220736'] = { Name = 'cs1_07_d_06' }, - ['40446275'] = { Name = 'cs1_07_d_07' }, - ['1475269717'] = { Name = 'cs1_07_d_08' }, - ['-280852418'] = { Name = 'cs1_07_dec_hom2' }, - ['-336275527'] = { Name = 'cs1_07_decal3' }, - ['573162530'] = { Name = 'cs1_07_decal4' }, - ['964657365'] = { Name = 'cs1_07_effluent' }, - ['1583361498'] = { Name = 'cs1_07_effluent2' }, - ['563529816'] = { Name = 'cs1_07_emissive1_lod' }, - ['756637765'] = { Name = 'cs1_07_emissive1' }, - ['-2079180942'] = { Name = 'cs1_07_emissive2_lod' }, - ['531744118'] = { Name = 'cs1_07_emissive2' }, - ['-2110218355'] = { Name = 'cs1_07_emissive3_lod' }, - ['347582338'] = { Name = 'cs1_07_emissive3' }, - ['-1152035491'] = { Name = 'cs1_07_foam_01' }, - ['-914427472'] = { Name = 'cs1_07_foam_02' }, - ['-1868890135'] = { Name = 'cs1_07_foam_03' }, - ['-1638098068'] = { Name = 'cs1_07_foam_04' }, - ['1806644754'] = { Name = 'cs1_07_foam_05' }, - ['-615552491'] = { Name = 'cs1_07_glue_01' }, - ['34060153'] = { Name = 'cs1_07_glue_02' }, - ['-585601637'] = { Name = 'cs1_07_glue_03' }, - ['-892024556'] = { Name = 'cs1_07_glue_04' }, - ['-1195727648'] = { Name = 'cs1_07_glue_05' }, - ['-1501560725'] = { Name = 'cs1_07_glue_06' }, - ['-1812324197'] = { Name = 'cs1_07_grnd01' }, - ['-516235364'] = { Name = 'cs1_07_grnd020a' }, - ['715027042'] = { Name = 'cs1_07_grnd020b' }, - ['-813729781'] = { Name = 'cs1_07_grnd021' }, - ['1430815647'] = { Name = 'cs1_07_grnd022' }, - ['380798168'] = { Name = 'cs1_07_grnd03a' }, - ['820623686'] = { Name = 'cs1_07_grnd03b' }, - ['-2116191126'] = { Name = 'cs1_07_grnd07' }, - ['-733798056'] = { Name = 'cs1_07_grnd08' }, - ['-234529572'] = { Name = 'cs1_07_grnd09' }, - ['395716893'] = { Name = 'cs1_07_grnd11' }, - ['1834931341'] = { Name = 'cs1_07_grnd12' }, - ['2098230256'] = { Name = 'cs1_07_grnd13' }, - ['1273267682'] = { Name = 'cs1_07_grnd13b' }, - ['-1259244770'] = { Name = 'cs1_07_hedgebasea' }, - ['1256923582'] = { Name = 'cs1_07_hedgedecala' }, - ['1007410426'] = { Name = 'cs1_07_house08_obj' }, - ['-1746506046'] = { Name = 'cs1_07_house08' }, - ['1624526046'] = { Name = 'cs1_07_hs009_dec' }, - ['443205799'] = { Name = 'cs1_07_hs009' }, - ['-396974465'] = { Name = 'cs1_07_hsesteps_railing' }, - ['-429222290'] = { Name = 'cs1_07_hsesteps1' }, - ['1509165164'] = { Name = 'cs1_07_land3_dets' }, - ['530310066'] = { Name = 'cs1_07_newhouse_obj' }, - ['1934306666'] = { Name = 'cs1_07_newhousea_dec' }, - ['1875808553'] = { Name = 'cs1_07_newhousea_obj' }, - ['-952812281'] = { Name = 'cs1_07_newhousea' }, - ['-204260004'] = { Name = 'cs1_07_newhouseb_dec' }, - ['-1100682619'] = { Name = 'cs1_07_newhouseb_rail' }, - ['591656231'] = { Name = 'cs1_07_newhouseb' }, - ['1487229989'] = { Name = 'cs1_07_newhousec_dec' }, - ['558123349'] = { Name = 'cs1_07_newhousec_rails' }, - ['869832272'] = { Name = 'cs1_07_newhousec' }, - ['1778620057'] = { Name = 'cs1_07_newhoused_dec' }, - ['964250469'] = { Name = 'cs1_07_newhoused_rail' }, - ['-366116101'] = { Name = 'cs1_07_newhoused' }, - ['-432128162'] = { Name = 'cs1_07_pier_decals' }, - ['4352823'] = { Name = 'cs1_07_pier_rail' }, - ['-1779173517'] = { Name = 'cs1_07_pier_rail2' }, - ['1620329686'] = { Name = 'cs1_07_pier' }, - ['-29722692'] = { Name = 'cs1_07_platform_dec' }, - ['-1845583920'] = { Name = 'cs1_07_platform_rail' }, - ['-1186816710'] = { Name = 'cs1_07_platform' }, - ['826926677'] = { Name = 'cs1_07_props_combo17_02_lod' }, - ['1550555894'] = { Name = 'cs1_07_props_combo24_13_lod' }, - ['381395553'] = { Name = 'cs1_07_props_combo24_14_lod' }, - ['158386659'] = { Name = 'cs1_07_props_towels006' }, - ['2074748931'] = { Name = 'cs1_07_pumping_dec' }, - ['-901608304'] = { Name = 'cs1_07_pumping' }, - ['-1297057001'] = { Name = 'cs1_07_retwall1' }, - ['-444189735'] = { Name = 'cs1_07_sea_01' }, - ['-575270838'] = { Name = 'cs1_07_sea_01b' }, - ['-5216211'] = { Name = 'cs1_07_sea_02' }, - ['421274220'] = { Name = 'cs1_07_sea_1_00_lod' }, - ['424480559'] = { Name = 'cs1_07_sea_1_00' }, - ['-302492221'] = { Name = 'cs1_07_sea_1_01_lod' }, - ['1199696792'] = { Name = 'cs1_07_sea_1_01' }, - ['-667708105'] = { Name = 'cs1_07_sea_1_02_lod' }, - ['-190364188'] = { Name = 'cs1_07_sea_1_02' }, - ['410940547'] = { Name = 'cs1_07_sea_1_03_lod' }, - ['585704039'] = { Name = 'cs1_07_sea_1_03' }, - ['1438706573'] = { Name = 'cs1_07_sea_1_04_lod' }, - ['1844623485'] = { Name = 'cs1_07_sea_1_04' }, - ['661067764'] = { Name = 'cs1_07_sea_1_05_lod' }, - ['1408533633'] = { Name = 'cs1_07_sea_1_05' }, - ['-132576427'] = { Name = 'cs1_07_sea_1_06_lod' }, - ['1365475159'] = { Name = 'cs1_07_sea_1_06' }, - ['1563632371'] = { Name = 'cs1_07_sea_1_07_lod' }, - ['1076485348'] = { Name = 'cs1_07_sea_1_07' }, - ['-2139406327'] = { Name = 'cs1_07_sea_1_08_lod' }, - ['-1494341005'] = { Name = 'cs1_07_sea_1_08' }, - ['-1839097454'] = { Name = 'cs1_07_sea_1_09_lod' }, - ['-864127597'] = { Name = 'cs1_07_sea_1_09' }, - ['-285581847'] = { Name = 'cs1_07_sea_1_10_lod' }, - ['1155753851'] = { Name = 'cs1_07_sea_1_10' }, - ['1294262609'] = { Name = 'cs1_07_sea_1_11_lod' }, - ['849396470'] = { Name = 'cs1_07_sea_1_11' }, - ['-9282406'] = { Name = 'cs1_07_sea_1_12' }, - ['757938191'] = { Name = 'cs1_07_sea_1_13' }, - ['-1497686350'] = { Name = 'cs1_07_sea_1_14_lod' }, - ['1870019748'] = { Name = 'cs1_07_sea_1_14' }, - ['470776504'] = { Name = 'cs1_07_sea_1_15_lod' }, - ['1563990057'] = { Name = 'cs1_07_sea_1_15' }, - ['1003201644'] = { Name = 'cs1_07_sea_1_15b_lod' }, - ['-319798935'] = { Name = 'cs1_07_sea_1_15b' }, - ['-820500077'] = { Name = 'cs1_07_sea_1_16_lod' }, - ['1276736995'] = { Name = 'cs1_07_sea_1_16' }, - ['-677034091'] = { Name = 'cs1_07_sea_1_17_lod' }, - ['1013372542'] = { Name = 'cs1_07_sea_1_17' }, - ['349362390'] = { Name = 'cs1_07_sea_1_18_lod' }, - ['-1837890913'] = { Name = 'cs1_07_sea_1_18' }, - ['-829052923'] = { Name = 'cs1_07_sea_de1b' }, - ['1546251872'] = { Name = 'cs1_07_sea_de2' }, - ['-361526539'] = { Name = 'cs1_07_sea_de3' }, - ['1138081208'] = { Name = 'cs1_07_sea_de4' }, - ['1360549949'] = { Name = 'cs1_07_sea_de5' }, - ['149425720'] = { Name = 'cs1_07_sea_metal_beams' }, - ['-153944367'] = { Name = 'cs1_07_sea_plane_00' }, - ['-1009794645'] = { Name = 'cs1_07_sea_plane_016' }, - ['-750700626'] = { Name = 'cs1_07_sea_plane_02' }, - ['1496543168'] = { Name = 'cs1_07_sea_plane_022' }, - ['-1057254621'] = { Name = 'cs1_07_sea_plane_03' }, - ['-1347555196'] = { Name = 'cs1_07_sea_plane_04' }, - ['-1922126842'] = { Name = 'cs1_07_sea_plane_05' }, - ['2088634917'] = { Name = 'cs1_07_sea_plane_06' }, - ['1782310305'] = { Name = 'cs1_07_sea_plane_07' }, - ['-326735384'] = { Name = 'cs1_07_sea_plane_08' }, - ['-420126738'] = { Name = 'cs1_07_sea_plane_13' }, - ['-307566184'] = { Name = 'cs1_07_sea_pln_deb_00' }, - ['-13464405'] = { Name = 'cs1_07_sea_pln_deb_01' }, - ['149463063'] = { Name = 'cs1_07_sea_pln_deb_02' }, - ['480593808'] = { Name = 'cs1_07_sea_pln_deb_03' }, - ['-1231717522'] = { Name = 'cs1_07_sea_pln_deb_04' }, - ['-932110555'] = { Name = 'cs1_07_sea_pln_deb_05' }, - ['-1641967363'] = { Name = 'cs1_07_sea_pln_debb_01' }, - ['-1336724128'] = { Name = 'cs1_07_sea_pln_debb_02' }, - ['384643919'] = { Name = 'cs1_07_sea_pln_rub_01' }, - ['2028395707'] = { Name = 'cs1_07_sea_ub_00_lod' }, - ['-474268976'] = { Name = 'cs1_07_sea_ub_00' }, - ['-708881488'] = { Name = 'cs1_07_sea_ub_04_lod' }, - ['449489134'] = { Name = 'cs1_07_sea_ub_04' }, - ['-784723876'] = { Name = 'cs1_07_sea_un_bb_00_d' }, - ['479864026'] = { Name = 'cs1_07_sea_un_bb_00_lod' }, - ['1612388817'] = { Name = 'cs1_07_sea_un_bb_00' }, - ['1831288349'] = { Name = 'cs1_07_sea_uw_bb_04' }, - ['-1561438346'] = { Name = 'cs1_07_sea_uw_bb_06_d' }, - ['393790868'] = { Name = 'cs1_07_sea_uw_bb_06_lod' }, - ['-1985218778'] = { Name = 'cs1_07_sea_uw_bb_06' }, - ['-466675645'] = { Name = 'cs1_07_sea_uw_bb_06b_lod' }, - ['1343960847'] = { Name = 'cs1_07_sea_uw_bb_06b' }, - ['-1711974405'] = { Name = 'cs1_07_sea_uw_bb_07_d' }, - ['-1524748790'] = { Name = 'cs1_07_sea_uw_bb_08' }, - ['1346459934'] = { Name = 'cs1_07_sea_uw_dec_00' }, - ['2038064321'] = { Name = 'cs1_07_sea_uw_dec_012b' }, - ['717557286'] = { Name = 'cs1_07_sea_uw_dec_02' }, - ['130435113'] = { Name = 'cs1_07_sea_uw_dec_03' }, - ['1417973900'] = { Name = 'cs1_07_sea_uw_dec_03z' }, - ['443805060'] = { Name = 'cs1_07_sea_uw_dec_04' }, - ['1569223596'] = { Name = 'cs1_07_sea_uw_dec_05' }, - ['-960543204'] = { Name = 'cs1_07_sea_uw_dec_07' }, - ['-508920846'] = { Name = 'cs1_07_sea_uw_dec_08' }, - ['-1539047130'] = { Name = 'cs1_07_sea_uw_dec_09' }, - ['-1743689827'] = { Name = 'cs1_07_sea_uw_dec_10' }, - ['-1022313057'] = { Name = 'cs1_07_sea_uw_dec_11' }, - ['-953693891'] = { Name = 'cs1_07_sea_uw_dec_21' }, - ['93566946'] = { Name = 'cs1_07_sea_uw2_00' }, - ['-575510496'] = { Name = 'cs1_07_sea_uw2_01' }, - ['-1342993245'] = { Name = 'cs1_07_sea_uw2_02' }, - ['-1171152609'] = { Name = 'cs1_07_sea_uw2_03' }, - ['-1938307672'] = { Name = 'cs1_07_sea_uw2_04' }, - ['-1650563083'] = { Name = 'cs1_07_sea_uw2_05' }, - ['1994529405'] = { Name = 'cs1_07_sea_uw2_06' }, - ['1683027291'] = { Name = 'cs1_07_sea_uw2_09' }, - ['602602048'] = { Name = 'cs1_07_sea_uw2_11' }, - ['966403490'] = { Name = 'cs1_07_sea_uw2_12' }, - ['682591181'] = { Name = 'cs1_07_sea_uw2_13' }, - ['1579544249'] = { Name = 'cs1_07_sea_uw2_14' }, - ['1257654362'] = { Name = 'cs1_07_sea_uw2_15' }, - ['2086742831'] = { Name = 'cs1_07_sea_uw2_16' }, - ['1870860659'] = { Name = 'cs1_07_sea_uw2_17' }, - ['-1523221289'] = { Name = 'cs1_07_sea_uw2_18' }, - ['-429084586'] = { Name = 'cs1_07_shack' }, - ['1289399560'] = { Name = 'cs1_07_shed' }, - ['1136019473'] = { Name = 'cs1_07_stairsd_rail' }, - ['1792197356'] = { Name = 'cs1_07_stairsd' }, - ['270674597'] = { Name = 'cs1_07_substation_dec' }, - ['207473807'] = { Name = 'cs1_07_substation_details' }, - ['-1060973428'] = { Name = 'cs1_07_substation' }, - ['-451311644'] = { Name = 'cs1_07_tempblockb_dec' }, - ['-1771743848'] = { Name = 'cs1_07_tempblockb' }, - ['-1270729532'] = { Name = 'cs1_07_temphouse1_dec' }, - ['1713687640'] = { Name = 'cs1_07_temphouse1' }, - ['425243325'] = { Name = 'cs1_07_temphouse7' }, - ['-24404907'] = { Name = 'cs1_07_temphouse8_dec' }, - ['935501713'] = { Name = 'cs1_07_weed_01' }, - ['639433794'] = { Name = 'cs1_07_weed_02' }, - ['343628031'] = { Name = 'cs1_07_weed_03' }, - ['-1604904306'] = { Name = 'cs1_08_bridgedecal_01' }, - ['306544233'] = { Name = 'cs1_08_bridgedecal_02' }, - ['1760832525'] = { Name = 'cs1_08_bridgedecal_03' }, - ['-1980460782'] = { Name = 'cs1_08_coastdec00' }, - ['-1480340304'] = { Name = 'cs1_08_coastdec01' }, - ['514800261'] = { Name = 'cs1_08_coastdec02' }, - ['241211880'] = { Name = 'cs1_08_coastdec03' }, - ['1445246585'] = { Name = 'cs1_08_cs_ft1' }, - ['-655372173'] = { Name = 'cs1_08_cst01_d1' }, - ['-1079321179'] = { Name = 'cs1_08_cst01' }, - ['-380892029'] = { Name = 'cs1_08_cst03_d3' }, - ['-635465074'] = { Name = 'cs1_08_cst03' }, - ['467217785'] = { Name = 'cs1_08_cst04_d2' }, - ['609841295'] = { Name = 'cs1_08_cst04_decals' }, - ['-337496557'] = { Name = 'cs1_08_cst04' }, - ['1058467226'] = { Name = 'cs1_08_cst05_d' }, - ['-161428720'] = { Name = 'cs1_08_cst05' }, - ['2128824530'] = { Name = 'cs1_08_decal_002' }, - ['1886792837'] = { Name = 'cs1_08_foam_01' }, - ['1436546777'] = { Name = 'cs1_08_foam_02' }, - ['1072089959'] = { Name = 'cs1_08_foam_03' }, - ['956579234'] = { Name = 'cs1_08_foam_04' }, - ['592581182'] = { Name = 'cs1_08_foam_05' }, - ['-329898937'] = { Name = 'cs1_08_foam_06' }, - ['382564661'] = { Name = 'cs1_08_foam_07' }, - ['-284565805'] = { Name = 'cs1_08_island_d_1' }, - ['-1683191386'] = { Name = 'cs1_08_land07_d_track' }, - ['-2129216503'] = { Name = 'cs1_08_land07' }, - ['1914027623'] = { Name = 'cs1_08_pier_emissive_lod' }, - ['-1378904225'] = { Name = 'cs1_08_pier_emissive' }, - ['-732411154'] = { Name = 'cs1_08_pier_post1' }, - ['112603049'] = { Name = 'cs1_08_pier_post2' }, - ['1960569689'] = { Name = 'cs1_08_pier_post2a' }, - ['-126545113'] = { Name = 'cs1_08_pier_post3' }, - ['-1329797558'] = { Name = 'cs1_08_pier_rail1' }, - ['2130182849'] = { Name = 'cs1_08_pier_rail2' }, - ['1594320028'] = { Name = 'cs1_08_pier_rail2a' }, - ['1504336354'] = { Name = 'cs1_08_pier_rail2b' }, - ['-34364810'] = { Name = 'cs1_08_pier_rail2c' }, - ['-2051721807'] = { Name = 'cs1_08_pier01_dec' }, - ['649823432'] = { Name = 'cs1_08_pier01' }, - ['-809675059'] = { Name = 'cs1_08_pier02' }, - ['-1465605771'] = { Name = 'cs1_08_rks_01' }, - ['-1147582626'] = { Name = 'cs1_08_rks_02' }, - ['-842306622'] = { Name = 'cs1_08_rks_03' }, - ['1275512901'] = { Name = 'cs1_08_roaddecal_01' }, - ['-229742402'] = { Name = 'cs1_08_rockcp_hut' }, - ['2005442127'] = { Name = 'cs1_08_rockcrop01' }, - ['1323589283'] = { Name = 'cs1_08_rockcrop010' }, - ['-1760432399'] = { Name = 'cs1_08_rockcrop01a' }, - ['-147776106'] = { Name = 'cs1_08_rockcrop02' }, - ['84195645'] = { Name = 'cs1_08_rockcrop03' }, - ['303747945'] = { Name = 'cs1_08_rockcrop04' }, - ['543780870'] = { Name = 'cs1_08_rockcrop05' }, - ['-872724697'] = { Name = 'cs1_08_rockcrop08' }, - ['-644619688'] = { Name = 'cs1_08_rockcrop09' }, - ['-917496772'] = { Name = 'cs1_08_sa02_d' }, - ['-1459095554'] = { Name = 'cs1_08_sandbar01_d1' }, - ['-1723803536'] = { Name = 'cs1_08_sandbar01_d2' }, - ['-1613733946'] = { Name = 'cs1_08_sandbar01' }, - ['-1824700772'] = { Name = 'cs1_08_sandbar02' }, - ['957855057'] = { Name = 'cs1_08_sandbar03_d' }, - ['-1524077966'] = { Name = 'cs1_08_sandbar03' }, - ['939858695'] = { Name = 'cs1_08_sea_00_lod' }, - ['-1217984358'] = { Name = 'cs1_08_sea_00' }, - ['600594340'] = { Name = 'cs1_08_sea_01_lod' }, - ['239449686'] = { Name = 'cs1_08_sea_01' }, - ['504649203'] = { Name = 'cs1_08_sea_02' }, - ['1930690545'] = { Name = 'cs1_08_sea_03' }, - ['13933428'] = { Name = 'cs1_08_sea_04' }, - ['1017254670'] = { Name = 'cs1_08_sea_05' }, - ['1248013968'] = { Name = 'cs1_08_sea_06' }, - ['-1625532415'] = { Name = 'cs1_08_sea_07' }, - ['-1357219843'] = { Name = 'cs1_08_sea_08' }, - ['-444963644'] = { Name = 'cs1_08_sea_09' }, - ['1559647422'] = { Name = 'cs1_08_sea_10' }, - ['1137943161'] = { Name = 'cs1_08_sea_11' }, - ['-1960183407'] = { Name = 'cs1_08_sea_base' }, - ['895761631'] = { Name = 'cs1_08_sea_d_00' }, - ['-891754554'] = { Name = 'cs1_08_sea_d_02' }, - ['-1153447788'] = { Name = 'cs1_08_sea_d_03' }, - ['-294867215'] = { Name = 'cs1_08_sea_d_04' }, - ['-526216355'] = { Name = 'cs1_08_sea_d_05' }, - ['1717018309'] = { Name = 'cs1_08_sea_d_06' }, - ['2024129377'] = { Name = 'cs1_08_sea_d_07' }, - ['-1480089180'] = { Name = 'cs1_08_sea_d_08' }, - ['-1675982262'] = { Name = 'cs1_08_sea_d_09' }, - ['-479026439'] = { Name = 'cs1_08_sea_d_10' }, - ['-1297628820'] = { Name = 'cs1_08_sea_d_11' }, - ['-1715662953'] = { Name = 'cs1_08_sea_d_13' }, - ['-339843891'] = { Name = 'cs1_08_sea_rok_01' }, - ['409484836'] = { Name = 'cs1_08_sea_rok_03' }, - ['2105750349'] = { Name = 'cs1_08_sea_rok_030' }, - ['-2013502937'] = { Name = 'cs1_08_sea_rok_08a' }, - ['-2073486928'] = { Name = 'cs1_08_sea_rok_13' }, - ['1498104697'] = { Name = 'cs1_08_sea_rok_15' }, - ['1125197813'] = { Name = 'cs1_08_sea_shard_009' }, - ['-2036992909'] = { Name = 'cs1_08_sea_shard_5b001' }, - ['1468441926'] = { Name = 'cs1_08_sea_shard_9b' }, - ['1469919108'] = { Name = 'cs1_08_sea_udec_00' }, - ['1097794344'] = { Name = 'cs1_08_sea_udec_01' }, - ['2066216601'] = { Name = 'cs1_08_sea_udec_02' }, - ['1693895223'] = { Name = 'cs1_08_sea_udec_03' }, - ['-1732955725'] = { Name = 'cs1_08_sea_udec_04' }, - ['-1396733'] = { Name = 'cs1_08_sea_uw_dec_00' }, - ['1855458652'] = { Name = 'cs1_08_sea_uw_dec_08' }, - ['1558407663'] = { Name = 'cs1_08_sea_uw_dec_09' }, - ['64927439'] = { Name = 'cs1_08_sea_uw_dec_20' }, - ['-928858020'] = { Name = 'cs1_08_sea_uw_dec_23' }, - ['-1130321832'] = { Name = 'cs1_08_sea_uw_dec_24' }, - ['-1375204569'] = { Name = 'cs1_08_sea_uw_dec_25' }, - ['-1605537870'] = { Name = 'cs1_08_sea_uw_dec_26' }, - ['1820657990'] = { Name = 'cs1_08_sea_uw_dec_30' }, - ['2127015371'] = { Name = 'cs1_08_sea_uw_dec_31' }, - ['367852682'] = { Name = 'cs1_08_sea_uw_dec_31b' }, - ['-829633204'] = { Name = 'cs1_08_sea_uw_dec_32' }, - ['395468634'] = { Name = 'cs1_08_sea_uw_dec_36' }, - ['931782219'] = { Name = 'cs1_08_sea_uw1_00_lod' }, - ['1317359736'] = { Name = 'cs1_08_sea_uw1_00' }, - ['-998582139'] = { Name = 'cs1_08_sea_uw1_01_lod' }, - ['1620374679'] = { Name = 'cs1_08_sea_uw1_01' }, - ['-260127357'] = { Name = 'cs1_08_sea_uw1_02_lod' }, - ['1927485747'] = { Name = 'cs1_08_sea_uw1_02' }, - ['-17450471'] = { Name = 'cs1_08_sea_uw1_03_lod' }, - ['-2062172776'] = { Name = 'cs1_08_sea_uw1_03' }, - ['595286138'] = { Name = 'cs1_08_sea_uw1_04_lod' }, - ['423618026'] = { Name = 'cs1_08_sea_uw1_04' }, - ['2032151320'] = { Name = 'cs1_08_sea_uw1_08a_lod' }, - ['336746425'] = { Name = 'cs1_08_sea_uw1_08a' }, - ['-464236085'] = { Name = 'cs1_08_sea_uw1_b_00_lod' }, - ['14757637'] = { Name = 'cs1_08_sea_uw1_b_00' }, - ['476104714'] = { Name = 'cs1_08_sea_uw1_b_03_lod' }, - ['297226417'] = { Name = 'cs1_08_sea_uw1_b_03' }, - ['689226956'] = { Name = 'cs1_08_sea_uw2_01' }, - ['1044451919'] = { Name = 'cs1_08_sea_uw2_029_lod' }, - ['992653327'] = { Name = 'cs1_08_sea_uw2_029' }, - ['-1498020072'] = { Name = 'cs1_08_sea_uw2_02b' }, - ['-1313773946'] = { Name = 'cs1_08_sea_uw2_03_lod' }, - ['209324951'] = { Name = 'cs1_08_sea_uw2_03' }, - ['-1780239855'] = { Name = 'cs1_08_sea_uw2_030_lod' }, - ['-1434021967'] = { Name = 'cs1_08_sea_uw2_030' }, - ['621151338'] = { Name = 'cs1_08_sea_uw2_03b' }, - ['985987199'] = { Name = 'cs1_08_sea_uw2_04_lod' }, - ['-240069115'] = { Name = 'cs1_08_sea_uw2_04' }, - ['1297141051'] = { Name = 'cs1_08_sea_uw2_04b' }, - ['1946889609'] = { Name = 'cs1_08_sea_uw2_05_lod' }, - ['21591350'] = { Name = 'cs1_08_sea_uw2_05' }, - ['-446460148'] = { Name = 'cs1_08_sea_uw2_05b_lod' }, - ['-34984081'] = { Name = 'cs1_08_sea_uw2_05b' }, - ['39827898'] = { Name = 'cs1_08_sea_uw2_06b' }, - ['-1203686987'] = { Name = 'cs1_08_sea_uw2_07b' }, - ['-1392240101'] = { Name = 'cs1_08_sea_uw2_08b' }, - ['70892166'] = { Name = 'cs1_08_sea_uw2_09b_lod' }, - ['-673124732'] = { Name = 'cs1_08_sea_uw2_09b' }, - ['-189637276'] = { Name = 'cs1_08_sea_uw2_10' }, - ['-1464810146'] = { Name = 'cs1_08_sea_uw2_11' }, - ['1925360065'] = { Name = 'cs1_08_sea_uw2_13_lod' }, - ['-1940648795'] = { Name = 'cs1_08_sea_uw2_13' }, - ['-236363353'] = { Name = 'cs1_08_sea_uw2_15_lod' }, - ['-1716607170'] = { Name = 'cs1_08_sea_uw2_15' }, - ['-2040004431'] = { Name = 'cs1_08_sea_uw2_16' }, - ['2063689728'] = { Name = 'cs1_08_sea_uw2_19_lod' }, - ['1588801864'] = { Name = 'cs1_08_sea_uw2_19' }, - ['478130786'] = { Name = 'cs1_08_sea_uw2_25' }, - ['852090614'] = { Name = 'cs1_08_sea_uw2_26' }, - ['-723636340'] = { Name = 'cs1_08_sea_uw2_33b' }, - ['-637777059'] = { Name = 'cs1_08_sea_uwb00_lod' }, - ['512194865'] = { Name = 'cs1_08_sea_uwb00' }, - ['-65969874'] = { Name = 'cs1_08_sea_uwb01_lod' }, - ['711561461'] = { Name = 'cs1_08_sea_uwb01' }, - ['1740021517'] = { Name = 'cs1_08_sea_uwb02_lod' }, - ['1009529978'] = { Name = 'cs1_08_sea_uwb02' }, - ['-739763931'] = { Name = 'cs1_08_sea_uwb03_lod' }, - ['1170589613'] = { Name = 'cs1_08_sea_uwb03' }, - ['885134282'] = { Name = 'cs1_08_sea_uwb04_lod' }, - ['1475275775'] = { Name = 'cs1_08_sea_uwb04' }, - ['-445676985'] = { Name = 'cs1_08_sea_uwb05_lod' }, - ['2125707660'] = { Name = 'cs1_08_sea_uwb05' }, - ['-146551198'] = { Name = 'cs1_08_sea_uwb06_lod' }, - ['1352850795'] = { Name = 'cs1_08_sea_uwb06' }, - ['-1216131709'] = { Name = 'cs1_08_sea_uwb07_lod' }, - ['-1705414441'] = { Name = 'cs1_08_sea_uwb07' }, - ['-766097235'] = { Name = 'cs1_08_sea_uwdecals00' }, - ['-2137283271'] = { Name = 'cs1_08_sea_uwdecals01' }, - ['159135484'] = { Name = 'cs1_08_sea_uwdecals02' }, - ['1538972536'] = { Name = 'cs1_08_sea_uwdecals03' }, - ['1821015319'] = { Name = 'cs1_08_sea_uwdecals04' }, - ['1060184677'] = { Name = 'cs1_08_sea_uwdecals05' }, - ['-1068587862'] = { Name = 'cs1_08_sea_uwdecals06' }, - ['308627662'] = { Name = 'cs1_08_sea_uwdecals07' }, - ['665809762'] = { Name = 'cs1_08_sea_uwdecals08' }, - ['-102131753'] = { Name = 'cs1_08_sea_uwdecals09' }, - ['-955567817'] = { Name = 'cs1_08_sea_uwdecals10' }, - ['-1524961961'] = { Name = 'cs1_08_sea_uwdecals11' }, - ['1911326451'] = { Name = 'cs1_08_sea_uwdecals12' }, - ['-2142559312'] = { Name = 'cs1_08_sea_uwdecals13' }, - ['-1823127100'] = { Name = 'cs1_08_sea_uwdecals14' }, - ['-1550259637'] = { Name = 'cs1_08_sea_uwdecals15' }, - ['959399522'] = { Name = 'cs1_08_steps_rail' }, - ['468158278'] = { Name = 'cs1_08_steps' }, - ['814739774'] = { Name = 'cs1_08_str102' }, - ['1954634453'] = { Name = 'cs1_08_weedz' }, - ['-638663836'] = { Name = 'cs1_09_build_00' }, - ['884650142'] = { Name = 'cs1_09_build_01_rail1' }, - ['614830196'] = { Name = 'cs1_09_build_01_rail2' }, - ['-274075942'] = { Name = 'cs1_09_build_01' }, - ['1921381520'] = { Name = 'cs1_09_build_02' }, - ['-2139778957'] = { Name = 'cs1_09_build_03' }, - ['-1758741025'] = { Name = 'cs1_09_build_04' }, - ['-1529849560'] = { Name = 'cs1_09_build_05' }, - ['1816376317'] = { Name = 'cs1_09_build01_emm01_lod' }, - ['389940346'] = { Name = 'cs1_09_build01_emm01' }, - ['-959898165'] = { Name = 'cs1_09_culvert004' }, - ['-1265469090'] = { Name = 'cs1_09_culvert005' }, - ['-867645921'] = { Name = 'cs1_09_decals_01' }, - ['1833215384'] = { Name = 'cs1_09_decals_01b' }, - ['-1150369313'] = { Name = 'cs1_09_decals_01c' }, - ['-91774308'] = { Name = 'cs1_09_decals_02' }, - ['-255750384'] = { Name = 'cs1_09_decals_03' }, - ['527264871'] = { Name = 'cs1_09_decals_04' }, - ['325997673'] = { Name = 'cs1_09_decals_05' }, - ['1104752962'] = { Name = 'cs1_09_decals_06' }, - ['-1533231507'] = { Name = 'cs1_09_decals_build_02' }, - ['-1866885465'] = { Name = 'cs1_09_decals_build_03' }, - ['-1073777358'] = { Name = 'cs1_09_decals_build_04' }, - ['2125577412'] = { Name = 'cs1_09_diner_d' }, - ['970067215'] = { Name = 'cs1_09_diner_emmis' }, - ['-2019822240'] = { Name = 'cs1_09_diner_neons' }, - ['1546026557'] = { Name = 'cs1_09_diner_posts' }, - ['-26669571'] = { Name = 'cs1_09_diner_rocket' }, - ['38220778'] = { Name = 'cs1_09_diner' }, - ['-1673452049'] = { Name = 'cs1_09_elec_wire_spline18' }, - ['1320085512'] = { Name = 'cs1_09_elec_wire_spline21' }, - ['-1738474641'] = { Name = 'cs1_09_elec_wire_spline24' }, - ['-1841263698'] = { Name = 'cs1_09_elec_wire_spline31' }, - ['-1627114163'] = { Name = 'cs1_09_emissive_01' }, - ['989468834'] = { Name = 'cs1_09_foam_01' }, - ['961287482'] = { Name = 'cs1_09_foam_02' }, - ['1207546517'] = { Name = 'cs1_09_foam_03' }, - ['481778705'] = { Name = 'cs1_09_foam_04' }, - ['1333191807'] = { Name = 'cs1_09_ld_007' }, - ['1183362461'] = { Name = 'cs1_09_ld_007b' }, - ['-417668481'] = { Name = 'cs1_09_ld_01' }, - ['-1128952395'] = { Name = 'cs1_09_ld_02' }, - ['-1607576409'] = { Name = 'cs1_09_ld_03' }, - ['2142835645'] = { Name = 'cs1_09_ld_05' }, - ['-1844561817'] = { Name = 'cs1_09_ld_06' }, - ['-775037749'] = { Name = 'cs1_09_props_elec_spider_spline053b001' }, - ['-1546719482'] = { Name = 'cs1_09_props_elec_spider_spline054' }, - ['-1495981469'] = { Name = 'cs1_09_rockcrop01_d' }, - ['-2104548740'] = { Name = 'cs1_09_rockcrop01' }, - ['-1721000414'] = { Name = 'cs1_09_rockcrop02_d' }, - ['1496567750'] = { Name = 'cs1_09_rockcrop02' }, - ['-1852342981'] = { Name = 'cs1_09_rockcrop03_d' }, - ['1728473963'] = { Name = 'cs1_09_rockcrop03' }, - ['1917869645'] = { Name = 'cs1_09_rockcrop04_d' }, - ['1244541371'] = { Name = 'cs1_09_rockcrop04' }, - ['-65033233'] = { Name = 'cs1_09_sea_11_00_lod' }, - ['1421233725'] = { Name = 'cs1_09_sea_11_00' }, - ['544954074'] = { Name = 'cs1_09_sea_11_01_lod' }, - ['410637765'] = { Name = 'cs1_09_sea_11_01' }, - ['738864128'] = { Name = 'cs1_09_sea_11_02_lod' }, - ['641954136'] = { Name = 'cs1_09_sea_11_02' }, - ['1869853205'] = { Name = 'cs1_09_sea_11_03_lod' }, - ['-1143235446'] = { Name = 'cs1_09_sea_11_03' }, - ['-233571349'] = { Name = 'cs1_09_sea_11_04_lod' }, - ['-911067081'] = { Name = 'cs1_09_sea_11_04' }, - ['763056379'] = { Name = 'cs1_09_sea_cs1_09_udec_01' }, - ['40239485'] = { Name = 'cs1_09_sea_rok_01' }, - ['-79400134'] = { Name = 'cs1_09_sea_rok_02' }, - ['-979712032'] = { Name = 'cs1_09_sea_slod_01' }, - ['-336740389'] = { Name = 'cs1_09_sea_ub_00_lod' }, - ['600672409'] = { Name = 'cs1_09_sea_ub_00' }, - ['-1467510976'] = { Name = 'cs1_09_sea_ub_01_lod' }, - ['842704243'] = { Name = 'cs1_09_sea_ub_01' }, - ['271705353'] = { Name = 'cs1_09_sea_ub_02_lod' }, - ['1081360870'] = { Name = 'cs1_09_sea_ub_02' }, - ['-859086736'] = { Name = 'cs1_09_sea_ub_03_lod' }, - ['1388701321'] = { Name = 'cs1_09_sea_ub_03' }, - ['-490003375'] = { Name = 'cs1_09_sea_ub_04_lod' }, - ['1628930860'] = { Name = 'cs1_09_sea_ub_04' }, - ['-1503908793'] = { Name = 'cs1_09_sea_ub_05_lod' }, - ['2106571804'] = { Name = 'cs1_09_sea_ub_05' }, - ['1674790703'] = { Name = 'cs1_09_sea_udecb_00' }, - ['1549318198'] = { Name = 'cs1_09_sea_udecb_02' }, - ['350589690'] = { Name = 'cs1_09_sea_ufo' }, - ['-504013165'] = { Name = 'cs1_09_sea_uw0_00_lod' }, - ['-1402013630'] = { Name = 'cs1_09_sea_uw0_00' }, - ['1647394198'] = { Name = 'cs1_09_sea_uw0_01_lod' }, - ['-1817786702'] = { Name = 'cs1_09_sea_uw0_01' }, - ['-371165007'] = { Name = 'cs1_09_sea_uw0_02_lod' }, - ['-2123292089'] = { Name = 'cs1_09_sea_uw0_02' }, - ['-1831827082'] = { Name = 'cs1_09_sea_uw0_03_lod' }, - ['2017595369'] = { Name = 'cs1_09_sea_uw0_03' }, - ['-1915183410'] = { Name = 'cs1_09_sea_uw0_04_lod' }, - ['1711500140'] = { Name = 'cs1_09_sea_uw0_04' }, - ['-251643488'] = { Name = 'cs1_09_sea_uw0_05_lod' }, - ['865470094'] = { Name = 'cs1_09_sea_uw0_05' }, - ['677538060'] = { Name = 'cs1_09_sea_uw0_06_lod' }, - ['559178251'] = { Name = 'cs1_09_sea_uw0_06' }, - ['1850165893'] = { Name = 'cs1_09_sea_uw0_07_lod' }, - ['402739045'] = { Name = 'cs1_09_sea_uw0_07' }, - ['-923538936'] = { Name = 'cs1_09_sea_uw0_08_lod' }, - ['-87419657'] = { Name = 'cs1_09_sea_uw0_08' }, - ['113309067'] = { Name = 'cs1_09_sea_uw0_09_lod' }, - ['-392400740'] = { Name = 'cs1_09_sea_uw0_09' }, - ['-1740680231'] = { Name = 'cs1_09_sea_uw0_10_lod' }, - ['1017026943'] = { Name = 'cs1_09_sea_uw0_10' }, - ['1535853701'] = { Name = 'cs1_09_sea_uw0_11_lod' }, - ['1364050653'] = { Name = 'cs1_09_sea_uw0_11' }, - ['-37119733'] = { Name = 'cs1_09_sea_uw0_12_lod' }, - ['1739648931'] = { Name = 'cs1_09_sea_uw0_12' }, - ['-798636320'] = { Name = 'cs1_09_sea_uw1_01_lod' }, - ['1858492358'] = { Name = 'cs1_09_sea_uw1_01' }, - ['-2118456412'] = { Name = 'cs1_09_sea_uw1_03_lod' }, - ['1246924511'] = { Name = 'cs1_09_sea_uw1_03' }, - ['-1523821697'] = { Name = 'cs1_09_sea_uw1_04_lod' }, - ['1461266540'] = { Name = 'cs1_09_sea_uw1_04' }, - ['-1131535352'] = { Name = 'cs1_09_sea_uw1_05_lod' }, - ['-1519926008'] = { Name = 'cs1_09_sea_uw1_05' }, - ['-1167937769'] = { Name = 'cs1_09_sea_uw1_06_lod' }, - ['1610562108'] = { Name = 'cs1_09_sea_uw1_06' }, - ['-1569234189'] = { Name = 'cs1_09_sea_uw1_08_lod' }, - ['-1148489389'] = { Name = 'cs1_09_sea_uw1_08' }, - ['-45497210'] = { Name = 'cs1_09_sea_uw1_09_lod' }, - ['-1974202651'] = { Name = 'cs1_09_sea_uw1_09' }, - ['2045829726'] = { Name = 'cs1_09_sea_uw1_46_lod' }, - ['-427757038'] = { Name = 'cs1_09_sea_uw1_46' }, - ['1740588592'] = { Name = 'cs1_09_sea_uw2_00_lod' }, - ['-111056920'] = { Name = 'cs1_09_sea_uw2_00' }, - ['71460872'] = { Name = 'cs1_09_sea_uw2_01_lod' }, - ['-885879925'] = { Name = 'cs1_09_sea_uw2_01' }, - ['1371511924'] = { Name = 'cs1_09_sea_uw2_02_lod' }, - ['-584568970'] = { Name = 'cs1_09_sea_uw2_02' }, - ['1857350451'] = { Name = 'cs1_09_sea_uw2_02a' }, - ['735988961'] = { Name = 'cs1_09_sea_uw2_03' }, - ['229052531'] = { Name = 'cs1_09_sea_uw2_04' }, - ['1099462705'] = { Name = 'cs1_09_sea_uw2_05' }, - ['338795908'] = { Name = 'cs1_09_sea_uw2_06' }, - ['1678584628'] = { Name = 'cs1_09_sea_uw2_07_lod' }, - ['368288008'] = { Name = 'cs1_09_sea_uw2_07' }, - ['1757726381'] = { Name = 'cs1_09_sea_uw2_08' }, - ['2103308255'] = { Name = 'cs1_09_sea_uw2_09' }, - ['-2851997'] = { Name = 'cs1_09_sea_uw2_10_lod' }, - ['-1611156494'] = { Name = 'cs1_09_sea_uw2_10' }, - ['-243214585'] = { Name = 'cs1_09_sea_uw2_11' }, - ['41548025'] = { Name = 'cs1_09_sea_uw2_12' }, - ['-396916776'] = { Name = 'cs1_09_sea_uw2_12a' }, - ['527216798'] = { Name = 'cs1_09_sea_uw2_13_lod' }, - ['-696606469'] = { Name = 'cs1_09_sea_uw2_13' }, - ['675660944'] = { Name = 'cs1_09_sea_uw2_14' }, - ['983820620'] = { Name = 'cs1_09_sea_uw2_15' }, - ['217255403'] = { Name = 'cs1_09_sea_uw2_16' }, - ['1640445738'] = { Name = 'cs1_09_sea_uw2_17' }, - ['814765241'] = { Name = 'cs1_09_sea_uw2_18' }, - ['236003266'] = { Name = 'cs1_09_sea_uw2_19_lod' }, - ['1168539365'] = { Name = 'cs1_09_sea_uw2_19' }, - ['-507962468'] = { Name = 'cs1_09_sea_uw2_20_lod' }, - ['-1279600116'] = { Name = 'cs1_09_sea_uw2_20' }, - ['-1129092095'] = { Name = 'cs1_09_sea_uw2_21' }, - ['-1481555459'] = { Name = 'cs1_09_sea_uw2_22' }, - ['51692293'] = { Name = 'cs1_09_sea_uw2_26_lod' }, - ['-2055897722'] = { Name = 'cs1_09_sea_uw2_26' }, - ['-2085138118'] = { Name = 'cs1_09_sea_uw2_27_lod' }, - ['668648014'] = { Name = 'cs1_09_sea_uw2_27' }, - ['-1234951077'] = { Name = 'cs1_09_sea_uw2_28_lod' }, - ['1509926555'] = { Name = 'cs1_09_sea_uw2_28' }, - ['-1953760626'] = { Name = 'cs1_09_sea_uw2_29_lod' }, - ['38434602'] = { Name = 'cs1_09_sea_uw2_29' }, - ['1269027823'] = { Name = 'cs1_09_sea_uw2_30_lod' }, - ['-1629901038'] = { Name = 'cs1_09_sea_uw2_30' }, - ['-2000715042'] = { Name = 'cs1_09_sea_uw2_31' }, - ['2055136861'] = { Name = 'cs1_09_sea_uw2_32' }, - ['111214263'] = { Name = 'cs1_09_sea_uw2_33' }, - ['355310544'] = { Name = 'cs1_09_sea_uw2_34' }, - ['-871724661'] = { Name = 'cs1_09_sea_uw2_35' }, - ['-258944361'] = { Name = 'cs1_09_sea_uw2_36' }, - ['-1479229156'] = { Name = 'cs1_09_sea_uw2_37' }, - ['-1792468027'] = { Name = 'cs1_09_sea_uw2_39' }, - ['1346410973'] = { Name = 'cs1_09_sea_uw2_40' }, - ['-1047397250'] = { Name = 'cs1_09_sea_uw2_41' }, - ['-1415851886'] = { Name = 'cs1_09_sea_uw2_42' }, - ['1508507911'] = { Name = 'cs1_09_sea_uwd_18b' }, - ['-1042256878'] = { Name = 'cs1_09_sea_uwdec00' }, - ['-1400684200'] = { Name = 'cs1_09_sea_uwdec01' }, - ['-1723065622'] = { Name = 'cs1_09_sea_uwdec02' }, - ['420780673'] = { Name = 'cs1_09_sea_uwdec03' }, - ['-1965621756'] = { Name = 'cs1_09_sea_uwdec04' }, - ['1948766374'] = { Name = 'cs1_09_sea_uwdec05' }, - ['1739995075'] = { Name = 'cs1_09_sea_uwdec06' }, - ['-112305419'] = { Name = 'cs1_09_sea_uwdec07' }, - ['-352600496'] = { Name = 'cs1_09_sea_uwdec08' }, - ['-710372438'] = { Name = 'cs1_09_sea_uwdec09' }, - ['-2104294652'] = { Name = 'cs1_09_sea_uwdec10' }, - ['526335130'] = { Name = 'cs1_09_sea_uwdec11' }, - ['-315205559'] = { Name = 'cs1_09_sea_uwdec12' }, - ['-31720940'] = { Name = 'cs1_09_sea_uwdec13' }, - ['-907374158'] = { Name = 'cs1_09_sea_uwdec14' }, - ['1296537706'] = { Name = 'cs1_09_sea_uwdec15' }, - ['121075717'] = { Name = 'cs1_09_sea_uwdecal_00' }, - ['-753944341'] = { Name = 'cs1_09_sea_uwdecal_11' }, - ['-1483939358'] = { Name = 'cs1_09_sea_uwdecal_13' }, - ['-1523786462'] = { Name = 'cs1_09_sea_uwdecal_14' }, - ['-1984059836'] = { Name = 'cs1_09_sea_uwdecal_15' }, - ['2014905083'] = { Name = 'cs1_09_sea_uwdecal_16' }, - ['1965161741'] = { Name = 'cs1_09_sea_uwdecal_17' }, - ['1669749206'] = { Name = 'cs1_09_sea_uwdecal_18' }, - ['1205019248'] = { Name = 'cs1_09_sea_uwdecal_19' }, - ['1220083011'] = { Name = 'cs1_09_sea_uwdecal_20' }, - ['2109957975'] = { Name = 'cs1_09_sea_uwdecal_21' }, - ['1820640474'] = { Name = 'cs1_09_sea_uwdecal_22' }, - ['-1194065176'] = { Name = 'cs1_10_cable_door1' }, - ['-887941253'] = { Name = 'cs1_10_cable_pylon_lod_002' }, - ['-2097543358'] = { Name = 'cs1_10_cable_pylon_lod_003' }, - ['-1848072961'] = { Name = 'cs1_10_cable_pylon_lod_004' }, - ['-1498952035'] = { Name = 'cs1_10_cable_pylon_lod_005' }, - ['-1842866086'] = { Name = 'cs1_10_cable_pylon_lod_01' }, - ['411918885'] = { Name = 'cs1_10_cablebld_d' }, - ['1038815645'] = { Name = 'cs1_10_cablebld' }, - ['288064194'] = { Name = 'cs1_10_clue_moon01' }, - ['662286174'] = { Name = 'cs1_10_clue_moon02' }, - ['-1299210198'] = { Name = 'cs1_10_clue_mountain01' }, - ['716338215'] = { Name = 'cs1_10_clue_rain01' }, - ['420204762'] = { Name = 'cs1_10_clue_rain02' }, - ['1459346617'] = { Name = 'cs1_10_culvert1_lod' }, - ['-1132837573'] = { Name = 'cs1_10_culvert1' }, - ['-719036818'] = { Name = 'cs1_10_decal_trail_a' }, - ['-788738195'] = { Name = 'cs1_10_decals01' }, - ['-1521059799'] = { Name = 'cs1_10_decals03' }, - ['-1274112611'] = { Name = 'cs1_10_decals04' }, - ['-1042337474'] = { Name = 'cs1_10_decals05' }, - ['1305823528'] = { Name = 'cs1_10_decals06' }, - ['-249076980'] = { Name = 'cs1_10_decals100' }, - ['887904019'] = { Name = 'cs1_10_decals100a' }, - ['860495491'] = { Name = 'cs1_10_decals12' }, - ['2113319887'] = { Name = 'cs1_10_decals13' }, - ['-1884072120'] = { Name = 'cs1_10_decals14' }, - ['-665655162'] = { Name = 'cs1_10_decals15' }, - ['1786612957'] = { Name = 'cs1_10_decals16' }, - ['-1223678463'] = { Name = 'cs1_10_decals17' }, - ['-957692490'] = { Name = 'cs1_10_decals18' }, - ['334782412'] = { Name = 'cs1_10_decals19' }, - ['-188899317'] = { Name = 'cs1_10_decals20' }, - ['1308086910'] = { Name = 'cs1_10_decals21' }, - ['1681522434'] = { Name = 'cs1_10_decals22' }, - ['-447938254'] = { Name = 'cs1_10_decals23' }, - ['1139064416'] = { Name = 'cs1_10_decals28' }, - ['2036312393'] = { Name = 'cs1_10_decals29' }, - ['-2064957592'] = { Name = 'cs1_10_decals30' }, - ['245650140'] = { Name = 'cs1_10_decals31' }, - ['554694579'] = { Name = 'cs1_10_decals32' }, - ['-1294787785'] = { Name = 'cs1_10_decals33' }, - ['-1014645604'] = { Name = 'cs1_10_decals34' }, - ['1162592298'] = { Name = 'cs1_10_decals35' }, - ['1475962245'] = { Name = 'cs1_10_decals36' }, - ['-370767519'] = { Name = 'cs1_10_decals37' }, - ['-158358861'] = { Name = 'cs1_10_decals38' }, - ['-1603438992'] = { Name = 'cs1_10_decals39' }, - ['1028206313'] = { Name = 'cs1_10_decals40' }, - ['1878496313'] = { Name = 'cs1_10_decals41' }, - ['-1700075105'] = { Name = 'cs1_10_decals42' }, - ['-731587310'] = { Name = 'cs1_10_decals43' }, - ['2131636838'] = { Name = 'cs1_10_decals44' }, - ['-1193204213'] = { Name = 'cs1_10_decals45' }, - ['372957377'] = { Name = 'cs1_10_decals47' }, - ['135283820'] = { Name = 'cs1_10_decals48' }, - ['-92460730'] = { Name = 'cs1_10_decals49' }, - ['1863644764'] = { Name = 'cs1_10_decals50' }, - ['-1053975928'] = { Name = 'cs1_10_decals51' }, - ['-749256997'] = { Name = 'cs1_10_decals52' }, - ['491639503'] = { Name = 'cs1_10_decals53' }, - ['788428336'] = { Name = 'cs1_10_decals54' }, - ['-1975374670'] = { Name = 'cs1_10_decals55' }, - ['-1671802654'] = { Name = 'cs1_10_decals56' }, - ['2028374523'] = { Name = 'cs1_10_decals58' }, - ['1398456036'] = { Name = 'cs1_10_decals59' }, - ['1653496815'] = { Name = 'cs1_10_decals60' }, - ['-1028570290'] = { Name = 'cs1_10_decals60a1' }, - ['112436283'] = { Name = 'cs1_10_decals61' }, - ['-186056538'] = { Name = 'cs1_10_decals62' }, - ['1954152398'] = { Name = 'cs1_10_decals63' }, - ['1647598403'] = { Name = 'cs1_10_decals64' }, - ['114664583'] = { Name = 'cs1_10_decals65' }, - ['-191430646'] = { Name = 'cs1_10_decals66' }, - ['-1690088100'] = { Name = 'cs1_10_decals67' }, - ['-1987991079'] = { Name = 'cs1_10_decals68' }, - ['1313551217'] = { Name = 'cs1_10_decals69' }, - ['-1486461874'] = { Name = 'cs1_10_decals70' }, - ['1366405812'] = { Name = 'cs1_10_decals70b' }, - ['804844917'] = { Name = 'cs1_10_decals71' }, - ['497766618'] = { Name = 'cs1_10_decals72' }, - ['-749814754'] = { Name = 'cs1_10_decals73' }, - ['-985784323'] = { Name = 'cs1_10_decals74' }, - ['1764517851'] = { Name = 'cs1_10_decals75' }, - ['1997849526'] = { Name = 'cs1_10_elec_spider_spline052b002' }, - ['1079125479'] = { Name = 'cs1_10_flag_post002' }, - ['1233962181'] = { Name = 'cs1_10_flag_post01' }, - ['1744076185'] = { Name = 'cs1_10_hd_01' }, - ['-545483194'] = { Name = 'cs1_10_hd_01a' }, - ['836637037'] = { Name = 'cs1_10_hd_02' }, - ['-76602224'] = { Name = 'cs1_10_hd_03' }, - ['326960210'] = { Name = 'cs1_10_hd_03a' }, - ['-446826382'] = { Name = 'cs1_10_hd_04' }, - ['543092335'] = { Name = 'cs1_10_hd_05' }, - ['-350977061'] = { Name = 'cs1_10_hd_06' }, - ['-687186933'] = { Name = 'cs1_10_hd_07' }, - ['-369393175'] = { Name = 'cs1_10_hd_08' }, - ['-1260218436'] = { Name = 'cs1_10_hd_09' }, - ['407657770'] = { Name = 'cs1_10_hd_10' }, - ['1526850196'] = { Name = 'cs1_10_hd_11' }, - ['939728023'] = { Name = 'cs1_10_hd_12' }, - ['-781791388'] = { Name = 'cs1_10_hd_13' }, - ['-609623062'] = { Name = 'cs1_10_hd_14' }, - ['617084449'] = { Name = 'cs1_10_hd_15' }, - ['-26629787'] = { Name = 'cs1_10_hd_16' }, - ['-1946368879'] = { Name = 'cs1_10_hd_17' }, - ['375055783'] = { Name = 'cs1_10_hd_22' }, - ['-850275434'] = { Name = 'cs1_10_hd_23' }, - ['-1086834845'] = { Name = 'cs1_10_hd_24' }, - ['2012457179'] = { Name = 'cs1_10_hd_25' }, - ['1772686406'] = { Name = 'cs1_10_hd_26' }, - ['-1783077788'] = { Name = 'cs1_10_hd_27' }, - ['-2005775912'] = { Name = 'cs1_10_hd_28' }, - ['1279381588'] = { Name = 'cs1_10_hd_30' }, - ['-1712624726'] = { Name = 'cs1_10_hd_31' }, - ['-254570735'] = { Name = 'cs1_10_hd_32_dec' }, - ['732827437'] = { Name = 'cs1_10_hd_32' }, - ['1214830650'] = { Name = 'cs1_10_hd_81' }, - ['2129282412'] = { Name = 'cs1_10_hd_85' }, - ['-40287836'] = { Name = 'cs1_10_hd_99' }, - ['1262821715'] = { Name = 'cs1_10_mountainviewp_fizz' }, - ['1120907305'] = { Name = 'cs1_10_mountainviewpoint_d' }, - ['-661632656'] = { Name = 'cs1_10_mountainviewpoint_lod' }, - ['-1022725366'] = { Name = 'cs1_10_mountainviewpoint' }, - ['1405190493'] = { Name = 'cs1_10_netting01' }, - ['768189342'] = { Name = 'cs1_10_platform_b_d' }, - ['-1166372184'] = { Name = 'cs1_10_platform_b_lod' }, - ['-8994836'] = { Name = 'cs1_10_platform_b' }, - ['1820211126'] = { Name = 'cs1_10_props_combo0501_dslod' }, - ['-544828714'] = { Name = 'cs1_10_pylon_guide_wire06' }, - ['217312688'] = { Name = 'cs1_10_pylon_guide_wire07' }, - ['-83015197'] = { Name = 'cs1_10_pylon_guide_wire08' }, - ['2015773723'] = { Name = 'cs1_10_pylon_guide_wire09' }, - ['966445093'] = { Name = 'cs1_10_pylon_guide_wire10' }, - ['-415770029'] = { Name = 'cs1_10_pylon_tense_wire06' }, - ['-101351474'] = { Name = 'cs1_10_pylon_tense_wire07' }, - ['-93224742'] = { Name = 'cs1_10_pylon_tense_wire08' }, - ['205005927'] = { Name = 'cs1_10_pylon_tense_wire09' }, - ['-265721110'] = { Name = 'cs1_10_pylon_tense_wire10' }, - ['1287895804'] = { Name = 'cs1_10_redeye' }, - ['635579383'] = { Name = 'cs1_10_retwall01_slod' }, - ['-560840151'] = { Name = 'cs1_10_retwall01' }, - ['-584013820'] = { Name = 'cs1_10_retwall018' }, - ['-254286156'] = { Name = 'cs1_10_retwall02' }, - ['1904289944'] = { Name = 'cs1_10_retwall03_lod' }, - ['-1912180217'] = { Name = 'cs1_10_retwall03_slod' }, - ['944960941'] = { Name = 'cs1_10_retwall03' }, - ['-1631191921'] = { Name = 'cs1_10_retwall04_lod' }, - ['478803256'] = { Name = 'cs1_10_retwall04_slod' }, - ['176724505'] = { Name = 'cs1_10_retwall04' }, - ['-1012822964'] = { Name = 'cs1_10_retwall05' }, - ['638275870'] = { Name = 'cs1_10_retwall06' }, - ['-1237439991'] = { Name = 'cs1_10_retwall07_lod003' }, - ['1839620179'] = { Name = 'cs1_10_retwall07' }, - ['-2029246821'] = { Name = 'cs1_10_retwall08_lod' }, - ['1071088822'] = { Name = 'cs1_10_retwall08' }, - ['489373534'] = { Name = 'cs1_10_retwall09' }, - ['852815441'] = { Name = 'cs1_10_retwall10' }, - ['-1757202644'] = { Name = 'cs1_10_retwall12' }, - ['-2074767023'] = { Name = 'cs1_10_retwall13' }, - ['-99517241'] = { Name = 'cs1_10_retwall14' }, - ['1049068982'] = { Name = 'cs1_10_retwall16' }, - ['-1288933630'] = { Name = 'cs1_10_retwall17' }, - ['-1466168459'] = { Name = 'cs1_10_retwallbroken' }, - ['-368142756'] = { Name = 'cs1_10_sign_post_01' }, - ['-129420591'] = { Name = 'cs1_10_sign_post_02' }, - ['2002563318'] = { Name = 'cs1_10_sign_post_03' }, - ['1164528912'] = { Name = 'cs1_10_sign_post_04' }, - ['1422978015'] = { Name = 'cs1_10_sign_post_05' }, - ['-274502043'] = { Name = 'cs1_10_tower01' }, - ['51320064'] = { Name = 'cs1_10_tower02' }, - ['-1023503076'] = { Name = 'cs1_10_tower03' }, - ['-784256607'] = { Name = 'cs1_10_tower04' }, - ['-1588407915'] = { Name = 'cs1_10_tower05' }, - ['1022440667'] = { Name = 'cs1_10_tyretrack01_d' }, - ['-2111317758'] = { Name = 'cs1_11_bigtenta2' }, - ['-174382383'] = { Name = 'cs1_11_cs1_fault_01' }, - ['-2101802467'] = { Name = 'cs1_11_cs1_fault_01a' }, - ['190664277'] = { Name = 'cs1_11_cs1_fault_02' }, - ['420997578'] = { Name = 'cs1_11_cs1_fault_03' }, - ['-1361046180'] = { Name = 'cs1_11_cs1_fault_04' }, - ['798529219'] = { Name = 'cs1_11_cs1_fault_05' }, - ['-1713214635'] = { Name = 'cs1_11_cs1_fault_06' }, - ['1394826712'] = { Name = 'cs1_11_cs1_fault_07' }, - ['1030042204'] = { Name = 'cs1_11_cs1_fault_08' }, - ['1716388909'] = { Name = 'cs1_11_cs1_fault_09' }, - ['-1023397048'] = { Name = 'cs1_11_cs1_fault_10' }, - ['1346129342'] = { Name = 'cs1_11_cs1_fault_11' }, - ['1567352861'] = { Name = 'cs1_11_cs1_fault_12' }, - ['1813120361'] = { Name = 'cs1_11_cs1_fault_13' }, - ['2045288726'] = { Name = 'cs1_11_cs1_fault_14' }, - ['989242159'] = { Name = 'cs1_11_cs1_fault_15' }, - ['262360205'] = { Name = 'cs1_11_cs1_fault_16' }, - ['-210989584'] = { Name = 'cs1_11_culvert_bars' }, - ['784662630'] = { Name = 'cs1_11_culvert_bars2' }, - ['-840631836'] = { Name = 'cs1_11_decals00' }, - ['-1079550615'] = { Name = 'cs1_11_decals01' }, - ['-1853816547'] = { Name = 'cs1_11_decals02' }, - ['-2076809592'] = { Name = 'cs1_11_decals03' }, - ['1948108375'] = { Name = 'cs1_11_decals04' }, - ['1725672403'] = { Name = 'cs1_11_decals05' }, - ['1502548282'] = { Name = 'cs1_11_decals06' }, - ['1260221503'] = { Name = 'cs1_11_decals07' }, - ['115667269'] = { Name = 'cs1_11_decals07aaz' }, - ['-901515220'] = { Name = 'cs1_11_decals07abz' }, - ['-697267477'] = { Name = 'cs1_11_decals08' }, - ['-928911538'] = { Name = 'cs1_11_decals09' }, - ['-1773923965'] = { Name = 'cs1_11_decals10' }, - ['-1586019054'] = { Name = 'cs1_11_decals100' }, - ['-739071480'] = { Name = 'cs1_11_decals101' }, - ['-1659913149'] = { Name = 'cs1_11_decals102' }, - ['-1353719613'] = { Name = 'cs1_11_decals103' }, - ['1570127233'] = { Name = 'cs1_11_decals104' }, - ['652136467'] = { Name = 'cs1_11_decals105' }, - ['1648477912'] = { Name = 'cs1_11_decals106' }, - ['1266784600'] = { Name = 'cs1_11_decals107' }, - ['-2134965294'] = { Name = 'cs1_11_decals108' }, - ['-1841387823'] = { Name = 'cs1_11_decals109' }, - ['-206123929'] = { Name = 'cs1_11_decals11' }, - ['-1491152467'] = { Name = 'cs1_11_decals110' }, - ['-1194822400'] = { Name = 'cs1_11_decals111' }, - ['-894723898'] = { Name = 'cs1_11_decals112' }, - ['-597803989'] = { Name = 'cs1_11_decals113' }, - ['-1007711406'] = { Name = 'cs1_11_decals114' }, - ['-714723777'] = { Name = 'cs1_11_decals115' }, - ['376614999'] = { Name = 'cs1_11_decals116' }, - ['-391654206'] = { Name = 'cs1_11_decals117' }, - ['1012890672'] = { Name = 'cs1_11_decals118' }, - ['118034820'] = { Name = 'cs1_11_decals119' }, - ['-1191094531'] = { Name = 'cs1_11_decals12' }, - ['1511736959'] = { Name = 'cs1_11_decals120' }, - ['-2007620872'] = { Name = 'cs1_11_decals121' }, - ['1401731426'] = { Name = 'cs1_11_decals122' }, - ['1773594038'] = { Name = 'cs1_11_decals123' }, - ['-1137739748'] = { Name = 'cs1_11_decals124_lod' }, - ['-1622224663'] = { Name = 'cs1_11_decals124' }, - ['1385219550'] = { Name = 'cs1_11_decals12433' }, - ['-429288626'] = { Name = 'cs1_11_decals124a1' }, - ['-719176561'] = { Name = 'cs1_11_decals125' }, - ['2094140400'] = { Name = 'cs1_11_decals126' }, - ['-1305217357'] = { Name = 'cs1_11_decals127' }, - ['-1147991691'] = { Name = 'cs1_11_decals128' }, - ['1209462584'] = { Name = 'cs1_11_decals129_lod' }, - ['-330175758'] = { Name = 'cs1_11_decals129' }, - ['-937167550'] = { Name = 'cs1_11_decals13' }, - ['1611809065'] = { Name = 'cs1_11_decals130' }, - ['1889526340'] = { Name = 'cs1_11_decals131' }, - ['1251481141'] = { Name = 'cs1_11_decals132' }, - ['1563048793'] = { Name = 'cs1_11_decals133' }, - ['-1487122500'] = { Name = 'cs1_11_decals134' }, - ['-947548146'] = { Name = 'cs1_11_decals135' }, - ['-2113174245'] = { Name = 'cs1_11_decals136' }, - ['-1814976345'] = { Name = 'cs1_11_decals137' }, - ['316122861'] = { Name = 'cs1_11_decals138' }, - ['622709625'] = { Name = 'cs1_11_decals139' }, - ['-1365818835'] = { Name = 'cs1_11_decals14' }, - ['1360371724'] = { Name = 'cs1_11_decals140' }, - ['1130038423'] = { Name = 'cs1_11_decals141' }, - ['277192429'] = { Name = 'cs1_11_decals142' }, - ['584958877'] = { Name = 'cs1_11_decals143' }, - ['202380734'] = { Name = 'cs1_11_decals144' }, - ['980677253'] = { Name = 'cs1_11_decals145' }, - ['-408531733'] = { Name = 'cs1_11_decals146' }, - ['366946652'] = { Name = 'cs1_11_decals147' }, - ['-847806483'] = { Name = 'cs1_11_decals15' }, - ['1392839434'] = { Name = 'cs1_11_decals16' }, - ['1606558852'] = { Name = 'cs1_11_decals17' }, - ['670774511'] = { Name = 'cs1_11_decals18' }, - ['1986941404'] = { Name = 'cs1_11_decals19' }, - ['-234666040'] = { Name = 'cs1_11_decals20' }, - ['54618692'] = { Name = 'cs1_11_decals21' }, - ['-731345773'] = { Name = 'cs1_11_decals22' }, - ['-408046819'] = { Name = 'cs1_11_decals23' }, - ['-657713826'] = { Name = 'cs1_11_decals24' }, - ['-310493502'] = { Name = 'cs1_11_decals25' }, - ['-1138271211'] = { Name = 'cs1_11_decals26' }, - ['-1894776345'] = { Name = 'cs1_11_decals27' }, - ['-1547490483'] = { Name = 'cs1_11_decals28' }, - ['1954565320'] = { Name = 'cs1_11_decals29' }, - ['345410522'] = { Name = 'cs1_11_decals30' }, - ['-152678278'] = { Name = 'cs1_11_decals31' }, - ['221543702'] = { Name = 'cs1_11_decals32' }, - ['-619210531'] = { Name = 'cs1_11_decals33' }, - ['-505764253'] = { Name = 'cs1_11_decals34' }, - ['-1349336620'] = { Name = 'cs1_11_decals35' }, - ['-965939320'] = { Name = 'cs1_11_decals36' }, - ['-1811019061'] = { Name = 'cs1_11_decals37' }, - ['-1084857985'] = { Name = 'cs1_11_decals38' }, - ['-1852668424'] = { Name = 'cs1_11_decals39' }, - ['-449106948'] = { Name = 'cs1_11_decals40' }, - ['-630843822'] = { Name = 'cs1_11_decals41' }, - ['-990942363'] = { Name = 'cs1_11_decals42' }, - ['-1178970885'] = { Name = 'cs1_11_decals43' }, - ['-1486180260'] = { Name = 'cs1_11_decals44' }, - ['-1647534816'] = { Name = 'cs1_11_decals45' }, - ['-1947862701'] = { Name = 'cs1_11_decals46' }, - ['1620878017'] = { Name = 'cs1_11_decals47' }, - ['-1096720651'] = { Name = 'cs1_11_decals48' }, - ['-1404650944'] = { Name = 'cs1_11_decals49' }, - ['-832436554'] = { Name = 'cs1_11_decals50' }, - ['-599154043'] = { Name = 'cs1_11_decals51' }, - ['850939745'] = { Name = 'cs1_11_decals52' }, - ['1090448366'] = { Name = 'cs1_11_decals53' }, - ['983457585'] = { Name = 'cs1_11_decals54' }, - ['1195571322'] = { Name = 'cs1_11_decals55' }, - ['2105304304'] = { Name = 'cs1_11_decals56' }, - ['195625287'] = { Name = 'cs1_11_decals57' }, - ['1643752939'] = { Name = 'cs1_11_decals58' }, - ['1876707760'] = { Name = 'cs1_11_decals59' }, - ['2026986026'] = { Name = 'cs1_11_decals60' }, - ['663467932'] = { Name = 'cs1_11_decals61' }, - ['356389633'] = { Name = 'cs1_11_decals62' }, - ['1601578872'] = { Name = 'cs1_11_decals63' }, - ['1302102981'] = { Name = 'cs1_11_decals64' }, - ['-1982137279'] = { Name = 'cs1_11_decals65' }, - ['2015910108'] = { Name = 'cs1_11_decals66' }, - ['-1768188478'] = { Name = 'cs1_11_decals67' }, - ['187203286'] = { Name = 'cs1_11_decals68' }, - ['-1055233345'] = { Name = 'cs1_11_decals69' }, - ['-1226877635'] = { Name = 'cs1_11_decals70' }, - ['1818837046'] = { Name = 'cs1_11_decals71' }, - ['2126177497'] = { Name = 'cs1_11_decals72' }, - ['1357154605'] = { Name = 'cs1_11_decals73' }, - ['1664167366'] = { Name = 'cs1_11_decals74' }, - ['909235168'] = { Name = 'cs1_11_decals75' }, - ['1206482767'] = { Name = 'cs1_11_decals76' }, - ['431954683'] = { Name = 'cs1_11_decals77' }, - ['732806872'] = { Name = 'cs1_11_decals78' }, - ['-327794610'] = { Name = 'cs1_11_decals79' }, - ['1445991084'] = { Name = 'cs1_11_decals80' }, - ['-1919745679'] = { Name = 'cs1_11_decals81' }, - ['-1614764596'] = { Name = 'cs1_11_decals82' }, - ['-2098631650'] = { Name = 'cs1_11_decals83' }, - ['219840634'] = { Name = 'cs1_11_decals84' }, - ['1757394891'] = { Name = 'cs1_11_decals85' }, - ['1894828077'] = { Name = 'cs1_11_decals86' }, - ['-95855916'] = { Name = 'cs1_11_decals87' }, - ['203161209'] = { Name = 'cs1_11_decals88' }, - ['1122626580'] = { Name = 'cs1_11_decals89' }, - ['-859731979'] = { Name = 'cs1_11_decals90' }, - ['-121970713'] = { Name = 'cs1_11_decals91' }, - ['18739373'] = { Name = 'cs1_11_decals92' }, - ['323720456'] = { Name = 'cs1_11_decals93' }, - ['495561092'] = { Name = 'cs1_11_decals94' }, - ['162628056'] = { Name = 'cs1_11_decals95' }, - ['462628251'] = { Name = 'cs1_11_decals96' }, - ['735364638'] = { Name = 'cs1_11_decals97' }, - ['1450384222'] = { Name = 'cs1_11_decals98' }, - ['1651323730'] = { Name = 'cs1_11_decals99' }, - ['-2003911291'] = { Name = 'cs1_11_dect02a' }, - ['862988395'] = { Name = 'cs1_11_drain1' }, - ['-299949405'] = { Name = 'cs1_11_emissive1_lod' }, - ['-777485346'] = { Name = 'cs1_11_emissive1' }, - ['-1619121881'] = { Name = 'cs1_11_fault_07b' }, - ['-845712949'] = { Name = 'cs1_11_fault_07b2' }, - ['1105804300'] = { Name = 'cs1_11_land_01' }, - ['-1070221145'] = { Name = 'cs1_11_land_02' }, - ['-1351641317'] = { Name = 'cs1_11_land_03' }, - ['513308011'] = { Name = 'cs1_11_land_04' }, - ['186994309'] = { Name = 'cs1_11_land_05' }, - ['-2053028993'] = { Name = 'cs1_11_land_06' }, - ['-523142690'] = { Name = 'cs1_11_land_08' }, - ['-1561329892'] = { Name = 'cs1_11_land_11' }, - ['-72605999'] = { Name = 'cs1_11_land01_02' }, - ['1927686463'] = { Name = 'cs1_11_pipe1' }, - ['110886388'] = { Name = 'cs1_11_props_tent_wspline001' }, - ['550836224'] = { Name = 'cs1_11_retaining_wall_036' }, - ['-306558328'] = { Name = 'cs1_11_retaining_wall_09' }, - ['-1043598432'] = { Name = 'cs1_11_retaining_wall_13' }, - ['602879973'] = { Name = 'cs1_11_retaining_wall_16' }, - ['-62101344'] = { Name = 'cs1_11_retaining_wall_18' }, - ['1611936522'] = { Name = 'cs1_11_retaining_wall_21' }, - ['-2139366771'] = { Name = 'cs1_11_retaining_wall_40' }, - ['56309644'] = { Name = 'cs1_11_retainwll1' }, - ['287429401'] = { Name = 'cs1_11_retainwll2' }, - ['1805501465'] = { Name = 'cs1_11_tentbridge' }, - ['240433192'] = { Name = 'cs1_11_tentcity01' }, - ['1621155007'] = { Name = 'cs1_11_tentcity02' }, - ['1230056992'] = { Name = 'cs1_11_tentcity04' }, - ['1920814137'] = { Name = 'cs1_11_tentcity043' }, - ['-1513658613'] = { Name = 'cs1_11_tentcity06' }, - ['2121799789'] = { Name = 'cs1_11_tentcity07' }, - ['-1874019306'] = { Name = 'cs1_11_tentcity08' }, - ['-628141950'] = { Name = 'cs1_11_tentcity09' }, - ['637688534'] = { Name = 'cs1_11_tentcityfizz07' }, - ['-2021099951'] = { Name = 'cs1_11_tentrailer' }, - ['-1954104067'] = { Name = 'cs1_11_tmplt03' }, - ['-1715269434'] = { Name = 'cs1_11_tunnel_dec' }, - ['2114631513'] = { Name = 'cs1_11_tunnel' }, - ['388725593'] = { Name = 'cs1_11b_barn_gnd' }, - ['-480326486'] = { Name = 'cs1_11b_bridge_sml_rail' }, - ['1506285816'] = { Name = 'cs1_11b_bridge_sml' }, - ['1292044854'] = { Name = 'cs1_11b_cable04' }, - ['-655430902'] = { Name = 'cs1_11b_cs1_build02' }, - ['-356042927'] = { Name = 'cs1_11b_culvert_01' }, - ['-656854355'] = { Name = 'cs1_11b_decals00' }, - ['-28535772'] = { Name = 'cs1_11b_decals00045' }, - ['-409874402'] = { Name = 'cs1_11b_decals01' }, - ['124325836'] = { Name = 'cs1_11b_decals02' }, - ['336374035'] = { Name = 'cs1_11b_decals03' }, - ['568247479'] = { Name = 'cs1_11b_decals04' }, - ['-1678296618'] = { Name = 'cs1_11b_decals08' }, - ['1871503618'] = { Name = 'cs1_11b_decals09' }, - ['758422940'] = { Name = 'cs1_11b_decals100' }, - ['991377761'] = { Name = 'cs1_11b_decals101' }, - ['-1982535013'] = { Name = 'cs1_11b_decals111' }, - ['2044349094'] = { Name = 'cs1_11b_decals112' }, - ['1746347808'] = { Name = 'cs1_11b_decals113' }, - ['1449493437'] = { Name = 'cs1_11b_decals114' }, - ['-795183067'] = { Name = 'cs1_11b_decals115' }, - ['-1063528408'] = { Name = 'cs1_11b_decals116' }, - ['-1355369122'] = { Name = 'cs1_11b_decals117' }, - ['-1146228009'] = { Name = 'cs1_11b_decals12' }, - ['-848792907'] = { Name = 'cs1_11b_decals122' }, - ['-1156362741'] = { Name = 'cs1_11b_decals123' }, - ['-1446925464'] = { Name = 'cs1_11b_decals124' }, - ['41835748'] = { Name = 'cs1_11b_decals126' }, - ['-267077615'] = { Name = 'cs1_11b_decals127' }, - ['-555903581'] = { Name = 'cs1_11b_decals128' }, - ['1286074678'] = { Name = 'cs1_11b_decals129' }, - ['-1309155477'] = { Name = 'cs1_11b_decals13' }, - ['2042940503'] = { Name = 'cs1_11b_decals130' }, - ['-2021267495'] = { Name = 'cs1_11b_decals131' }, - ['1478723853'] = { Name = 'cs1_11b_decals132' }, - ['1717609863'] = { Name = 'cs1_11b_decals133' }, - ['1972782066'] = { Name = 'cs1_11b_decals134' }, - ['1695078318'] = { Name = 'cs1_11b_decals13499' }, - ['-1831043458'] = { Name = 'cs1_11b_decals135' }, - ['522819354'] = { Name = 'cs1_11b_decals136' }, - ['1001574444'] = { Name = 'cs1_11b_decals138' }, - ['-641594292'] = { Name = 'cs1_11b_decals139' }, - ['-1768913286'] = { Name = 'cs1_11b_decals140' }, - ['-2135032670'] = { Name = 'cs1_11b_decals140a' }, - ['278297228'] = { Name = 'cs1_11b_decals141' }, - ['51371903'] = { Name = 'cs1_11b_decals142' }, - ['600195168'] = { Name = 'cs1_11b_decals142a' }, - ['-578677660'] = { Name = 'cs1_11b_decals144' }, - ['942918086'] = { Name = 'cs1_11b_decals145' }, - ['628270148'] = { Name = 'cs1_11b_decals146' }, - ['1153467646'] = { Name = 'cs1_11b_decals15' }, - ['1925603593'] = { Name = 'cs1_11b_decals16' }, - ['1765035493'] = { Name = 'cs1_11b_decals17' }, - ['427044454'] = { Name = 'cs1_11b_decals18' }, - ['1863998649'] = { Name = 'cs1_11b_decals20' }, - ['669863516'] = { Name = 'cs1_11b_decals25' }, - ['75532163'] = { Name = 'cs1_11b_decals27' }, - ['-1274160917'] = { Name = 'cs1_11b_decals33' }, - ['-1959262396'] = { Name = 'cs1_11b_decals37' }, - ['1901811411'] = { Name = 'cs1_11b_decals42' }, - ['126190445'] = { Name = 'cs1_11b_decals46' }, - ['950822330'] = { Name = 'cs1_11b_decals47' }, - ['-456868440'] = { Name = 'cs1_11b_decals48' }, - ['-711057573'] = { Name = 'cs1_11b_decals49' }, - ['1815997192'] = { Name = 'cs1_11b_decals50' }, - ['35526350'] = { Name = 'cs1_11b_decals51' }, - ['257405249'] = { Name = 'cs1_11b_decals52' }, - ['-793902698'] = { Name = 'cs1_11b_decals52asd' }, - ['-216270642'] = { Name = 'cs1_11b_decals54' }, - ['-1021175589'] = { Name = 'cs1_11b_decals55' }, - ['-933223593'] = { Name = 'cs1_11b_decals56' }, - ['-1632776205'] = { Name = 'cs1_11b_decals57' }, - ['-1406899488'] = { Name = 'cs1_11b_decals58' }, - ['-1676883283'] = { Name = 'cs1_11b_decals59' }, - ['-1700419801'] = { Name = 'cs1_11b_decals60' }, - ['-1917874881'] = { Name = 'cs1_11b_decals63' }, - ['2137944249'] = { Name = 'cs1_11b_decals64' }, - ['1933400151'] = { Name = 'cs1_11b_decals65' }, - ['1693629378'] = { Name = 'cs1_11b_decals66' }, - ['1459757025'] = { Name = 'cs1_11b_decals67' }, - ['684376947'] = { Name = 'cs1_11b_decals68' }, - ['904224236'] = { Name = 'cs1_11b_decals69' }, - ['625557464'] = { Name = 'cs1_11b_decals70' }, - ['-610259837'] = { Name = 'cs1_11b_decals71' }, - ['697124960'] = { Name = 'cs1_11b_decals72' }, - ['-128129540'] = { Name = 'cs1_11b_decals73' }, - ['-974913269'] = { Name = 'cs1_11b_decals74' }, - ['867261720'] = { Name = 'cs1_11b_decals75' }, - ['-505398925'] = { Name = 'cs1_11b_decals76' }, - ['260347071'] = { Name = 'cs1_11b_decals77' }, - ['1026650136'] = { Name = 'cs1_11b_decals78' }, - ['-1787714689'] = { Name = 'cs1_11b_decals82' }, - ['-603082570'] = { Name = 'cs1_11b_decals83' }, - ['-305376205'] = { Name = 'cs1_11b_decals84' }, - ['-529188471'] = { Name = 'cs1_11b_decals85' }, - ['-230761188'] = { Name = 'cs1_11b_decals86' }, - ['891380448'] = { Name = 'cs1_11b_decals87' }, - ['-960297435'] = { Name = 'cs1_11b_decals88' }, - ['429960159'] = { Name = 'cs1_11b_decals89' }, - ['-553242341'] = { Name = 'cs1_11b_decals90' }, - ['-1196268424'] = { Name = 'cs1_11b_decals91' }, - ['-1421784682'] = { Name = 'cs1_11b_decals92' }, - ['-1527333631'] = { Name = 'cs1_11b_decals93' }, - ['-2029092559'] = { Name = 'cs1_11b_decals94' }, - ['-2112161978'] = { Name = 'cs1_11b_decals95' }, - ['1953750008'] = { Name = 'cs1_11b_decals96' }, - ['713607203'] = { Name = 'cs1_11b_decals97' }, - ['1556589728'] = { Name = 'cs1_11b_decals98' }, - ['-400768188'] = { Name = 'cs1_11b_decals99' }, - ['1729299423'] = { Name = 'cs1_11b_decalsq1' }, - ['2025105186'] = { Name = 'cs1_11b_decalsq2' }, - ['1731593233'] = { Name = 'cs1_11b_decalsq3' }, - ['-780281693'] = { Name = 'cs1_11b_decalsq4' }, - ['234243623'] = { Name = 'cs1_11b_decalsx1' }, - ['731439657'] = { Name = 'cs1_11b_emmi01_lod' }, - ['-584475588'] = { Name = 'cs1_11b_emmi01' }, - ['1271788673'] = { Name = 'cs1_11b_emmi02_lod' }, - ['-345753423'] = { Name = 'cs1_11b_emmi02' }, - ['-1029834551'] = { Name = 'cs1_11b_fault02' }, - ['2075388658'] = { Name = 'cs1_11b_fault03' }, - ['-552584431'] = { Name = 'cs1_11b_fault03a' }, - ['33658661'] = { Name = 'cs1_11b_fbox01' }, - ['-1697732167'] = { Name = 'cs1_11b_fence05' }, - ['1573163701'] = { Name = 'cs1_11b_frmland007' }, - ['782440600'] = { Name = 'cs1_11b_gullywall_00' }, - ['-1527682274'] = { Name = 'cs1_11b_house_gutter01' }, - ['-315984034'] = { Name = 'cs1_11b_house_pipe01' }, - ['829543101'] = { Name = 'cs1_11b_house001' }, - ['-1015716234'] = { Name = 'cs1_11b_house01_dec003' }, - ['1249113297'] = { Name = 'cs1_11b_house01_dec006' }, - ['294377437'] = { Name = 'cs1_11b_land_01' }, - ['1237862485'] = { Name = 'cs1_11b_land_02' }, - ['1781190651'] = { Name = 'cs1_11b_land_02b' }, - ['-64148192'] = { Name = 'cs1_11b_land_03' }, - ['-2124645122'] = { Name = 'cs1_11b_land_03a' }, - ['643989898'] = { Name = 'cs1_11b_land_04' }, - ['1523903086'] = { Name = 'cs1_11b_land_05' }, - ['-1795301693'] = { Name = 'cs1_11b_land_06' }, - ['927474517'] = { Name = 'cs1_11b_land_07' }, - ['1872630788'] = { Name = 'cs1_11b_land_08' }, - ['-1553695856'] = { Name = 'cs1_11b_land_09' }, - ['864491691'] = { Name = 'cs1_11b_land_10' }, - ['1645639113'] = { Name = 'cs1_11b_land_11' }, - ['1349243508'] = { Name = 'cs1_11b_land_12' }, - ['2122329760'] = { Name = 'cs1_11b_land_13' }, - ['1825475389'] = { Name = 'cs1_11b_land_14' }, - ['-1755291552'] = { Name = 'cs1_11b_land_15' }, - ['-457835766'] = { Name = 'cs1_11b_land_16' }, - ['2136931247'] = { Name = 'cs1_11b_land01' }, - ['-1463660939'] = { Name = 'cs1_11b_land06' }, - ['-1406642889'] = { Name = 'cs1_11b_ptunnel_supp' }, - ['-830062151'] = { Name = 'cs1_11b_ptunnelcover' }, - ['-1202073049'] = { Name = 'cs1_11b_sign' }, - ['-340621789'] = { Name = 'cs1_11b_small_barn_dec' }, - ['-1861008055'] = { Name = 'cs1_11b_small_barn' }, - ['-1941064722'] = { Name = 'cs1_11b_tintractor_shed_dec' }, - ['2126145123'] = { Name = 'cs1_11b_tintractor_shed' }, - ['1095241381'] = { Name = 'cs1_11b_trk01' }, - ['1857874318'] = { Name = 'cs1_11b_trk02' }, - ['-1889113634'] = { Name = 'cs1_12_alttrk003' }, - ['336264502'] = { Name = 'cs1_12_alttrk02' }, - ['859727702'] = { Name = 'cs1_12_b01_a' }, - ['628181948'] = { Name = 'cs1_12_b01_d' }, - ['2137679139'] = { Name = 'cs1_12_b01_decal' }, - ['-253955655'] = { Name = 'cs1_12_b02_d' }, - ['1311506985'] = { Name = 'cs1_12_b02_railings' }, - ['310536815'] = { Name = 'cs1_12_b02_slod' }, - ['-824634354'] = { Name = 'cs1_12_b02' }, - ['-1828819538'] = { Name = 'cs1_12_b1_slod1' }, - ['-1768660284'] = { Name = 'cs1_12_bdecal007' }, - ['1458727479'] = { Name = 'cs1_12_bestclvrt001' }, - ['425436905'] = { Name = 'cs1_12_bridge1' }, - ['923008782'] = { Name = 'cs1_12_bridgedust' }, - ['1655845964'] = { Name = 'cs1_12_bridrockdecal' }, - ['1252744918'] = { Name = 'cs1_12_building0004' }, - ['1695717941'] = { Name = 'cs1_12_building001' }, - ['1396864657'] = { Name = 'cs1_12_building002' }, - ['-51969161'] = { Name = 'cs1_12_building003_ovr' }, - ['-769395626'] = { Name = 'cs1_12_building003' }, - ['-1364185745'] = { Name = 'cs1_12_building005' }, - ['-859832658'] = { Name = 'cs1_12_clothesdetails' }, - ['242210886'] = { Name = 'cs1_12_coastdecal_002' }, - ['908240811'] = { Name = 'cs1_12_coastdecal_004' }, - ['2100835797'] = { Name = 'cs1_12_coastdecal_008' }, - ['-1901700943'] = { Name = 'cs1_12_coastdecal_009' }, - ['-645172162'] = { Name = 'cs1_12_coastdecal_012' }, - ['1884922252'] = { Name = 'cs1_12_coastdecal_013' }, - ['741440380'] = { Name = 'cs1_12_coastdecalt007' }, - ['-399446191'] = { Name = 'cs1_12_culvert_01' }, - ['-563373833'] = { Name = 'cs1_12_decal_001' }, - ['-91296692'] = { Name = 'cs1_12_decal_001a' }, - ['-1300636637'] = { Name = 'cs1_12_decal_001b' }, - ['995388882'] = { Name = 'cs1_12_decal_001x' }, - ['256473778'] = { Name = 'cs1_12_decal_002' }, - ['1564455648'] = { Name = 'cs1_12_decal_002c' }, - ['-86617652'] = { Name = 'cs1_12_decal_003' }, - ['424742593'] = { Name = 'cs1_12_decal_005' }, - ['307205965'] = { Name = 'cs1_12_decal_005b' }, - ['-1314089831'] = { Name = 'cs1_12_decal_027' }, - ['-289963738'] = { Name = 'cs1_12_decal_066' }, - ['291721397'] = { Name = 'cs1_12_decal_07a' }, - ['-2018165421'] = { Name = 'cs1_12_decal_07b' }, - ['-2062723876'] = { Name = 'cs1_12_decal_15' }, - ['2042904138'] = { Name = 'cs1_12_decal_18' }, - ['-2012982251'] = { Name = 'cs1_12_decal_66' }, - ['-1892457869'] = { Name = 'cs1_12_decal_67' }, - ['-2118561919'] = { Name = 'cs1_12_decal_farm' }, - ['-1596909178'] = { Name = 'cs1_12_decal_farms02' }, - ['-1062539332'] = { Name = 'cs1_12_decal_farmsbig' }, - ['2145163125'] = { Name = 'cs1_12_decal_house01' }, - ['384125096'] = { Name = 'cs1_12_decal_road' }, - ['-1546361791'] = { Name = 'cs1_12_decal_rock01' }, - ['-1241806697'] = { Name = 'cs1_12_decal_rock02' }, - ['-1729017828'] = { Name = 'cs1_12_detailout' }, - ['1226165500'] = { Name = 'cs1_12_detailsadv003' }, - ['-1944902772'] = { Name = 'cs1_12_detailsadv02' }, - ['-1084956904'] = { Name = 'cs1_12_drttk_01' }, - ['1623204336'] = { Name = 'cs1_12_drttk_02' }, - ['1380877581'] = { Name = 'cs1_12_drttk_03' }, - ['117552381'] = { Name = 'cs1_12_drttk_03a' }, - ['-2078414677'] = { Name = 'cs1_12_drttk_04' }, - ['1977830454'] = { Name = 'cs1_12_drttk_05' }, - ['-261537480'] = { Name = 'cs1_12_drttk_06' }, - ['-218904135'] = { Name = 'cs1_12_drttk_11' }, - ['328719186'] = { Name = 'cs1_12_drttk_d01' }, - ['2081269387'] = { Name = 'cs1_12_fence001_ovr' }, - ['779508496'] = { Name = 'cs1_12_fence001' }, - ['922579433'] = { Name = 'cs1_12_fence002_ovr' }, - ['549568423'] = { Name = 'cs1_12_fence002' }, - ['2044126787'] = { Name = 'cs1_12_flagsdetails' }, - ['104864721'] = { Name = 'cs1_12_gdecal01a' }, - ['-361634763'] = { Name = 'cs1_12_gdecal01b' }, - ['1383936600'] = { Name = 'cs1_12_gnd_12_trk' }, - ['298835615'] = { Name = 'cs1_12_gnd_13_armco' }, - ['1810305644'] = { Name = 'cs1_12_gnd_13_clvrt' }, - ['1459471376'] = { Name = 'cs1_12_gnd_13_trk' }, - ['180592951'] = { Name = 'cs1_12_guldecal00' }, - ['358888331'] = { Name = 'cs1_12_guldecal009' }, - ['1045235785'] = { Name = 'cs1_12_guldecal01' }, - ['1888939228'] = { Name = 'cs1_12_guldecal02' }, - ['-1565699828'] = { Name = 'cs1_12_guldecal03' }, - ['1441085305'] = { Name = 'cs1_12_guldecal04' }, - ['-1924192688'] = { Name = 'cs1_12_guldecal05' }, - ['-1206879278'] = { Name = 'cs1_12_guldecal06' }, - ['-238588097'] = { Name = 'cs1_12_guldecal07' }, - ['-595508045'] = { Name = 'cs1_12_guldecal08' }, - ['-791007899'] = { Name = 'cs1_12_guldecal09' }, - ['-30931296'] = { Name = 'cs1_12_guldecal10' }, - ['1244503722'] = { Name = 'cs1_12_guldecal11' }, - ['-1509435807'] = { Name = 'cs1_12_guldecal13' }, - ['-1307230856'] = { Name = 'cs1_12_guldecal13a' }, - ['1428010122'] = { Name = 'cs1_12_guldecal14' }, - ['-2121200268'] = { Name = 'cs1_12_guldecal15' }, - ['1413673644'] = { Name = 'cs1_12_houserail_01' }, - ['1198512390'] = { Name = 'cs1_12_houserail_02' }, - ['1394339930'] = { Name = 'cs1_12_houserail_03' }, - ['1164530933'] = { Name = 'cs1_12_houserail_04' }, - ['812657411'] = { Name = 'cs1_12_houserail_05' }, - ['1322800090'] = { Name = 'cs1_12_jetty_overlay' }, - ['2133280248'] = { Name = 'cs1_12_jetty' }, - ['-529556129'] = { Name = 'cs1_12_jettyrail_01' }, - ['-93073073'] = { Name = 'cs1_12_jettyrail_02' }, - ['736670776'] = { Name = 'cs1_12_jettyrail_03' }, - ['2123005036'] = { Name = 'cs1_12_jettysteps_01' }, - ['-1993240134'] = { Name = 'cs1_12_jettysteps_02' }, - ['-1027742120'] = { Name = 'cs1_12_mnttrk01' }, - ['-24748592'] = { Name = 'cs1_12_mnttrk02' }, - ['-366162180'] = { Name = 'cs1_12_pdecal00' }, - ['84990013'] = { Name = 'cs1_12_pdecal002a' }, - ['-1056441165'] = { Name = 'cs1_12_pdecal01' }, - ['-1899489228'] = { Name = 'cs1_12_pdecal02' }, - ['763450788'] = { Name = 'cs1_12_pdecal03' }, - ['-101355891'] = { Name = 'cs1_12_pdecal05' }, - ['1968234210'] = { Name = 'cs1_12_pdecal05a' }, - ['-942962118'] = { Name = 'cs1_12_pdecal06' }, - ['-1423370487'] = { Name = 'cs1_12_rdecal_005' }, - ['-867804901'] = { Name = 'cs1_12_rdecal_006' }, - ['-587990410'] = { Name = 'cs1_12_rdecal_007' }, - ['1669594343'] = { Name = 'cs1_12_rdecal_008b' }, - ['-1323162925'] = { Name = 'cs1_12_rdecal_009' }, - ['2104691876'] = { Name = 'cs1_12_riverbed1_lod' }, - ['1062716907'] = { Name = 'cs1_12_riverbed1' }, - ['1200190187'] = { Name = 'cs1_12_rockdecal_005' }, - ['-1224571456'] = { Name = 'cs1_12_shadowdecal01' }, - ['-35548295'] = { Name = 'cs1_12_shadowdecal02' }, - ['1825480420'] = { Name = 'cs1_12_smallbridge_01' }, - ['-1761873090'] = { Name = 'cs1_12_smallbridge_02' }, - ['1901146581'] = { Name = 'cs1_12_smlbrg01_decal' }, - ['-1582519176'] = { Name = 'cs1_12_smlbrg02_decal' }, - ['2135551329'] = { Name = 'cs1_12_tarrd01' }, - ['-997754917'] = { Name = 'cs1_12_tarrd02' }, - ['436431016'] = { Name = 'cs1_12_terrain_hd_01' }, - ['-338916293'] = { Name = 'cs1_12_terrain_hd_02' }, - ['-1320609983'] = { Name = 'cs1_12_terrain_hd_03' }, - ['189778753'] = { Name = 'cs1_12_terrain_hd_04' }, - ['-746202182'] = { Name = 'cs1_12_terrain_hd_05' }, - ['-453149015'] = { Name = 'cs1_12_terrain_hd_06' }, - ['1714389263'] = { Name = 'cs1_12_terrain_hd_07' }, - ['2020091264'] = { Name = 'cs1_12_terrain_hd_08' }, - ['1082078635'] = { Name = 'cs1_12_terrain_hd_09' }, - ['-213803907'] = { Name = 'cs1_12_terrain_hd_10' }, - ['1544678940'] = { Name = 'cs1_12_terrain_hd_11' }, - ['-95278442'] = { Name = 'cs1_12_terrain_hd_13' }, - ['-309128936'] = { Name = 'cs1_12_terrain_hd_14' }, - ['1452827425'] = { Name = 'cs1_12_terrain_hd_15' }, - ['-2135588977'] = { Name = 'cs1_12_terrain_hd_16x' }, - ['-1050888008'] = { Name = 'cs1_12_terrain_hd_17' }, - ['-1289544635'] = { Name = 'cs1_12_terrain_hd_18' }, - ['498266455'] = { Name = 'cs1_12_terrain_hd_19' }, - ['-1909665019'] = { Name = 'cs1_12_terrain_hd_20' }, - ['-290122732'] = { Name = 'cs1_12_terrain_hd_21' }, - ['-43470469'] = { Name = 'cs1_12_terrain_hd_22' }, - ['1009004273'] = { Name = 'cs1_12_terrain_hd_23' }, - ['1243138778'] = { Name = 'cs1_12_terrain_hd_24' }, - ['-1198053403'] = { Name = 'cs1_12_terrain_hd_26' }, - ['316988531'] = { Name = 'cs1_12_terrain_hd_27' }, - ['555710696'] = { Name = 'cs1_12_terrain_hd_28' }, - ['2117612328'] = { Name = 'cs1_12_terrain_hd_29' }, - ['1740867375'] = { Name = 'cs1_12_terrain_hd_30' }, - ['-694623016'] = { Name = 'cs1_12_terrain_hd_31' }, - ['1132215965'] = { Name = 'cs1_12_terrain_hd_33' }, - ['770052977'] = { Name = 'cs1_12_terrain_hd_34' }, - ['-1627949674'] = { Name = 'cs1_12_terrain_hd_35' }, - ['-1991751112'] = { Name = 'cs1_12_terrain_hd_36' }, - ['1650422143'] = { Name = 'cs1_12_terrain_hd_99' }, - ['1530866151'] = { Name = 'cs1_12_traildecal_001a' }, - ['766856516'] = { Name = 'cs1_12_traildecal_002a' }, - ['-2138402344'] = { Name = 'cs1_12_traildecal01' }, - ['-1095757140'] = { Name = 'cs1_12_traildecal01a' }, - ['1265805225'] = { Name = 'cs1_12_traildecal06' }, - ['1495548684'] = { Name = 'cs1_12_traildecal07' }, - ['1446838238'] = { Name = 'cs1_12_trailz01' }, - ['528978548'] = { Name = 'cs1_12_trailz02' }, - ['1881317372'] = { Name = 'cs1_12_tunl_01b_d' }, - ['-1789482780'] = { Name = 'cs1_12_tunl_01b_lod' }, - ['-1195034483'] = { Name = 'cs1_12_tunl_01b' }, - ['1000447332'] = { Name = 'cs1_12_tunnel01_end' }, - ['-2111525240'] = { Name = 'cs1_12_tunnel01_lod' }, - ['-377406141'] = { Name = 'cs1_12_tunnel01shell_int' }, - ['-54586701'] = { Name = 'cs1_12_tunnel01sproxy_int' }, - ['-1473903654'] = { Name = 'cs1_12_tunnel01stuff_int' }, - ['-1005066311'] = { Name = 'cs1_12_tunnel02_end' }, - ['577938017'] = { Name = 'cs1_12_tunnel02shell_int' }, - ['126439381'] = { Name = 'cs1_12_tunnel02stuff_int' }, - ['-1731045468'] = { Name = 'cs1_12_tunnel03_lod' }, - ['2011046727'] = { Name = 'cs1_12_tunnel03shell_int' }, - ['982455543'] = { Name = 'cs1_12_tunnel03stuff_int' }, - ['1571990589'] = { Name = 'cs1_13__fpdecal004' }, - ['-1017317488'] = { Name = 'cs1_13__fpdecal006' }, - ['-1254892738'] = { Name = 'cs1_13__fpdecal007' }, - ['1752928578'] = { Name = 'cs1_13_alttrk01' }, - ['2115976329'] = { Name = 'cs1_13_alttrk02' }, - ['-447051353'] = { Name = 'cs1_13_armco_v01' }, - ['-2089533271'] = { Name = 'cs1_13_boathouse001' }, - ['-638915163'] = { Name = 'cs1_13_boathouse002' }, - ['1744341426'] = { Name = 'cs1_13_boathouse003' }, - ['1373101425'] = { Name = 'cs1_13_boathouse004' }, - ['1332876794'] = { Name = 'cs1_13_boatyd_drttk' }, - ['-134843765'] = { Name = 'cs1_13_culvert005' }, - ['1798619454'] = { Name = 'cs1_13_culvert01_slod1' }, - ['-1996262662'] = { Name = 'cs1_13_culvert01' }, - ['-134283653'] = { Name = 'cs1_13_culvert02_slod1' }, - ['2067912567'] = { Name = 'cs1_13_culvert02' }, - ['973154984'] = { Name = 'cs1_13_culvert03_slod' }, - ['-26354227'] = { Name = 'cs1_13_culvert03' }, - ['1902399379'] = { Name = 'cs1_13_culvert03shadbox' }, - ['-637107112'] = { Name = 'cs1_13_culvert04_slod1' }, - ['-290767288'] = { Name = 'cs1_13_culvert04' }, - ['1913027580'] = { Name = 'cs1_13_draindecal02' }, - ['-323165065'] = { Name = 'cs1_13_drttk_01' }, - ['-1082488333'] = { Name = 'cs1_13_drttk_02' }, - ['-816371284'] = { Name = 'cs1_13_drttk_03' }, - ['555633977'] = { Name = 'cs1_13_drttk_04' }, - ['61346381'] = { Name = 'cs1_13_drttk_05' }, - ['375502784'] = { Name = 'cs1_13_drttk_06' }, - ['-700646751'] = { Name = 'cs1_13_drttk_ov_01' }, - ['-1396760846'] = { Name = 'cs1_13_emissive_02_lod' }, - ['286122622'] = { Name = 'cs1_13_emissive_02' }, - ['873163565'] = { Name = 'cs1_13_emissive_lod' }, - ['-88555682'] = { Name = 'cs1_13_emissive' }, - ['-1174330474'] = { Name = 'cs1_13_garage7' }, - ['-2080124381'] = { Name = 'cs1_13_gnd_14_decal' }, - ['550667354'] = { Name = 'cs1_13_gnd_hd_01' }, - ['1999089927'] = { Name = 'cs1_13_gnd_hd_02' }, - ['1759581306'] = { Name = 'cs1_13_gnd_hd_03' }, - ['1571814888'] = { Name = 'cs1_13_gnd_hd_04' }, - ['206354997'] = { Name = 'cs1_13_house2' }, - ['208912991'] = { Name = 'cs1_13_houses' }, - ['1436526398'] = { Name = 'cs1_13_jetty_ovr' }, - ['1864675385'] = { Name = 'cs1_13_jetty' }, - ['-1353391235'] = { Name = 'cs1_13_jettypoles01' }, - ['-1584510992'] = { Name = 'cs1_13_jettypoles02' }, - ['129340481'] = { Name = 'cs1_13_jettypoles03' }, - ['972552389'] = { Name = 'cs1_13_jettypoles04' }, - ['1962798800'] = { Name = 'cs1_13_jettypoles05' }, - ['-1068912938'] = { Name = 'cs1_13_lakerock_01' }, - ['-1367667911'] = { Name = 'cs1_13_lakerock_02' }, - ['-640327187'] = { Name = 'cs1_13_lakerock_03' }, - ['1721911373'] = { Name = 'cs1_13_land_07' }, - ['-1704864319'] = { Name = 'cs1_13_metal_interior' }, - ['1745628858'] = { Name = 'cs1_13_mid_decal001' }, - ['457025538'] = { Name = 'cs1_13_millarsfishsign_slod' }, - ['1952920943'] = { Name = 'cs1_13_millarsfishsign' }, - ['-1255572891'] = { Name = 'cs1_13_props_combo0119_01_lod' }, - ['-1249341366'] = { Name = 'cs1_13_props_combo0224_01_lod' }, - ['-238842560'] = { Name = 'cs1_13_props_combo0224_02_lod' }, - ['-1019950719'] = { Name = 'cs1_13_props_combo0224_03_lod' }, - ['2126829581'] = { Name = 'cs1_13_props_wires01' }, - ['-2063604605'] = { Name = 'cs1_13_props_wires02' }, - ['1418331032'] = { Name = 'cs1_13_props_wires03' }, - ['1753230212'] = { Name = 'cs1_13_props_wires04' }, - ['-67072073'] = { Name = 'cs1_13_rail01' }, - ['1698062881'] = { Name = 'cs1_13_rail02' }, - ['1468253884'] = { Name = 'cs1_13_rail03' }, - ['331300652'] = { Name = 'cs1_13_rail04' }, - ['41000081'] = { Name = 'cs1_13_rail05' }, - ['733777876'] = { Name = 'cs1_13_screedecal01' }, - ['-1477699029'] = { Name = 'cs1_13_shore_decal01' }, - ['-1171341648'] = { Name = 'cs1_13_shore_decal02' }, - ['74928964'] = { Name = 'cs1_13_shore_decal03' }, - ['317911099'] = { Name = 'cs1_13_shore_decal04' }, - ['1306027525'] = { Name = 'cs1_13_shore_decal08' }, - ['43617700'] = { Name = 'cs1_13_slipwaypost' }, - ['1623016534'] = { Name = 'cs1_13_streambed01' }, - ['1937205706'] = { Name = 'cs1_13_streambed02' }, - ['467500975'] = { Name = 'cs1_13_terrain_hd_01' }, - ['-22744621'] = { Name = 'cs1_13_terrain_hd_011' }, - ['161209132'] = { Name = 'cs1_13_terrain_hd_02' }, - ['627216619'] = { Name = 'cs1_13_terrain_hd_03_1' }, - ['-1762397172'] = { Name = 'cs1_13_terrain_hd_03_2' }, - ['786638266'] = { Name = 'cs1_13_terrain_hd_03' }, - ['1398206113'] = { Name = 'cs1_13_terrain_hd_05' }, - ['1670035185'] = { Name = 'cs1_13_terrain_hd_05a' }, - ['1084442938'] = { Name = 'cs1_13_terrain_hd_06' }, - ['-2089113267'] = { Name = 'cs1_13_terrain_hd_07a' }, - ['469565406'] = { Name = 'cs1_13_terrain_hd_08' }, - ['-706054934'] = { Name = 'cs1_13_terrain_hd_10' }, - ['-1693377136'] = { Name = 'cs1_13_towndecal01' }, - ['-105453307'] = { Name = 'cs1_13_warehouse2' }, - ['-1487861031'] = { Name = 'cs1_13_wh2_rail' }, - ['-40891276'] = { Name = 'cs1_13mapblend' }, - ['-409196318'] = { Name = 'cs1_14_brdg1_ovrly' }, - ['-11549012'] = { Name = 'cs1_14_brdg1' }, - ['212484310'] = { Name = 'cs1_14_breakers01' }, - ['253059353'] = { Name = 'cs1_14_canriv_04' }, - ['-524385172'] = { Name = 'cs1_14_canriv_05' }, - ['999373328'] = { Name = 'cs1_14_canriv_06' }, - ['233004725'] = { Name = 'cs1_14_canriv_07' }, - ['1479603023'] = { Name = 'cs1_14_canriv_08' }, - ['-1668220766'] = { Name = 'cs1_14_canstrm_01' }, - ['-1943970475'] = { Name = 'cs1_14_cliff3' }, - ['1225414424'] = { Name = 'cs1_14_cliff7' }, - ['800236649'] = { Name = 'cs1_14_cliff8' }, - ['-1402330509'] = { Name = 'cs1_14_cliffovrly07' }, - ['-687308028'] = { Name = 'cs1_14_cs_stream' }, - ['1318361432'] = { Name = 'cs1_14_cs_stream2' }, - ['-442787736'] = { Name = 'cs1_14_cultmp' }, - ['-1551937334'] = { Name = 'cs1_14_efefe' }, - ['518631270'] = { Name = 'cs1_14_footpath020' }, - ['1983077884'] = { Name = 'cs1_14_footpath024' }, - ['-951926618'] = { Name = 'cs1_14_foreststrm2' }, - ['-45916205'] = { Name = 'cs1_14_island01' }, - ['-375780032'] = { Name = 'cs1_14_nuterr01' }, - ['-2096709609'] = { Name = 'cs1_14_nuterr03' }, - ['286110817'] = { Name = 'cs1_14_nuterr03b' }, - ['899327296'] = { Name = 'cs1_14_nuterr04' }, - ['678988540'] = { Name = 'cs1_14_nuterr05' }, - ['-1401711888'] = { Name = 'cs1_14_nuterr06' }, - ['-227446103'] = { Name = 'cs1_14_nuterr07b' }, - ['-465643964'] = { Name = 'cs1_14_nuterr07c' }, - ['-2104344786'] = { Name = 'cs1_14_nuterr09' }, - ['-322372170'] = { Name = 'cs1_14_nutrail01' }, - ['-653142456'] = { Name = 'cs1_14_nutrail02' }, - ['131544010'] = { Name = 'cs1_14_nutrail04' }, - ['-199488428'] = { Name = 'cs1_14_nutrail05' }, - ['577497331'] = { Name = 'cs1_14_nutrail06' }, - ['941036629'] = { Name = 'cs1_14_nutrail07' }, - ['1711796278'] = { Name = 'cs1_14_nutrail08' }, - ['1438699432'] = { Name = 'cs1_14_nutrail09' }, - ['-1256817134'] = { Name = 'cs1_14_nutrail11' }, - ['-2065130057'] = { Name = 'cs1_14_nutrail12' }, - ['-639711326'] = { Name = 'cs1_14_nutrail14' }, - ['-347870612'] = { Name = 'cs1_14_nutrail15' }, - ['-1115025671'] = { Name = 'cs1_14_nutrail16' }, - ['-858113155'] = { Name = 'cs1_14_nutrail23' }, - ['-610739974'] = { Name = 'cs1_14_nutrail24' }, - ['1033188932'] = { Name = 'cs1_14_ovrly01' }, - ['811539416'] = { Name = 'cs1_14_ovrly02' }, - ['367322852'] = { Name = 'cs1_14_ovrly07' }, - ['-1417276888'] = { Name = 'cs1_14_ovrly09' }, - ['953756652'] = { Name = 'cs1_14_ovrly10' }, - ['-2044213624'] = { Name = 'cs1_14_ovrly11' }, - ['1567356177'] = { Name = 'cs1_14_ovrly12' }, - ['732238212'] = { Name = 'cs1_14_ovrly13' }, - ['-4212294'] = { Name = 'cs1_14_ovrly14' }, - ['1291998270'] = { Name = 'cs1_14_ovrly15' }, - ['584417253'] = { Name = 'cs1_14_ovrly16' }, - ['-258827424'] = { Name = 'cs1_14_ovrly17' }, - ['-1468626135'] = { Name = 'cs1_14_ovrly18' }, - ['-1254841179'] = { Name = 'cs1_14_ovrly19' }, - ['-560792667'] = { Name = 'cs1_14_ovrly20' }, - ['-99241302'] = { Name = 'cs1_14_ovrly22' }, - ['357198099'] = { Name = 'cs1_14_ovrly24' }, - ['659361048'] = { Name = 'cs1_14_ovrly25' }, - ['831201684'] = { Name = 'cs1_14_ovrly26' }, - ['1121109027'] = { Name = 'cs1_14_ovrly27' }, - ['731190688'] = { Name = 'cs1_14_ovrly28' }, - ['895559992'] = { Name = 'cs1_14_ovrly29' }, - ['-586615179'] = { Name = 'cs1_14_ovrly30' }, - ['-1424026974'] = { Name = 'cs1_14_ovrly31' }, - ['-1067107026'] = { Name = 'cs1_14_ovrly32' }, - ['-1805195982'] = { Name = 'cs1_14_ovrly33' }, - ['1654718887'] = { Name = 'cs1_14_ovrly34' }, - ['2010262537'] = { Name = 'cs1_14_ovrly35' }, - ['2002308840'] = { Name = 'cs1_14_ovrly35a' }, - ['1695230541'] = { Name = 'cs1_14_ovrly35b' }, - ['1407059955'] = { Name = 'cs1_14_ovrly35c' }, - ['1178814700'] = { Name = 'cs1_14_ovrly36' }, - ['1504767943'] = { Name = 'cs1_14_ovrly37' }, - ['653658706'] = { Name = 'cs1_14_ovrly38' }, - ['1013724478'] = { Name = 'cs1_14_ovrly39' }, - ['632228596'] = { Name = 'cs1_14_ovrly40' }, - ['304407520'] = { Name = 'cs1_14_ovrly41' }, - ['67389343'] = { Name = 'cs1_14_ovrly42' }, - ['-221141702'] = { Name = 'cs1_14_ovrly43' }, - ['-599295962'] = { Name = 'cs1_14_ovrly44' }, - ['-849225125'] = { Name = 'cs1_14_ovrly45' }, - ['-1088274980'] = { Name = 'cs1_14_ovrly46' }, - ['-2014162995'] = { Name = 'cs1_14_ovrly49' }, - ['1783239481'] = { Name = 'cs1_14_ovrly51' }, - ['-311944841'] = { Name = 'cs1_14_ovrly58' }, - ['-538804628'] = { Name = 'cs1_14_ovrly59' }, - ['-183120018'] = { Name = 'cs1_14_ovrly598' }, - ['23029761'] = { Name = 'cs1_14_ovrly599' }, - ['-1090708860'] = { Name = 'cs1_14_pipe01' }, - ['-447518928'] = { Name = 'cs1_14_pipe02' }, - ['-648458436'] = { Name = 'cs1_14_pipe03' }, - ['-64115796'] = { Name = 'cs1_14_ranghut' }, - ['1525574525'] = { Name = 'cs1_14_ranghutd' }, - ['-1508774173'] = { Name = 'cs1_14_rdecal002' }, - ['-658857837'] = { Name = 'cs1_14_rghjj' }, - ['-1819020690'] = { Name = 'cs1_14_riverbddeep' }, - ['1019875567'] = { Name = 'cs1_14_riverbdshllw' }, - ['-81982582'] = { Name = 'cs1_14_riverbed01' }, - ['410601034'] = { Name = 'cs1_14_riverbed02' }, - ['-634621234'] = { Name = 'cs1_14_riverbed02b' }, - ['652010257'] = { Name = 'cs1_14_riverbed03' }, - ['-167902892'] = { Name = 'cs1_14_riverbed04' }, - ['-3878394'] = { Name = 'cs1_14_stream1' }, - ['1131472525'] = { Name = 'cs1_14_terr07b' }, - ['-217547008'] = { Name = 'cs1_14_terr11' }, - ['1273450558'] = { Name = 'cs1_14b_a_wb' }, - ['-1531586659'] = { Name = 'cs1_14b_bouldertun' }, - ['-2019466538'] = { Name = 'cs1_14b_brdg1_ovrly' }, - ['1557671830'] = { Name = 'cs1_14b_brdg1' }, - ['-1078605248'] = { Name = 'cs1_14b_canriv_01' }, - ['1848583988'] = { Name = 'cs1_14b_canriv_02' }, - ['-931537964'] = { Name = 'cs1_14b_canriv_03' }, - ['355088060'] = { Name = 'cs1_14b_canyonb005' }, - ['531244056'] = { Name = 'cs1_14b_cmouth01' }, - ['1171320933'] = { Name = 'cs1_14b_cmouth02' }, - ['941249784'] = { Name = 'cs1_14b_cmouth03' }, - ['-320291186'] = { Name = 'cs1_14b_cmouth04' }, - ['-1618896906'] = { Name = 'cs1_14b_cs1_14b_tc01' }, - ['-1097681488'] = { Name = 'cs1_14b_decal_0011' }, - ['367312518'] = { Name = 'cs1_14b_decal_0011a' }, - ['751128997'] = { Name = 'cs1_14b_decal_007' }, - ['-1296292701'] = { Name = 'cs1_14b_decal_007a' }, - ['444804385'] = { Name = 'cs1_14b_decal_008' }, - ['-1674283404'] = { Name = 'cs1_14b_decal_008c' }, - ['-61753691'] = { Name = 'cs1_14b_decal_008d' }, - ['182342590'] = { Name = 'cs1_14b_decal_008e' }, - ['189828796'] = { Name = 'cs1_14b_decal_009' }, - ['1058202399'] = { Name = 'cs1_14b_decal_011' }, - ['960621350'] = { Name = 'cs1_14b_decal_05' }, - ['503362724'] = { Name = 'cs1_14b_decal_06' }, - ['1234075634'] = { Name = 'cs1_14b_des_railing_end' }, - ['-2071645912'] = { Name = 'cs1_14b_des_railing_start' }, - ['-13282362'] = { Name = 'cs1_14b_des_train_engine' }, - ['-1537886904'] = { Name = 'cs1_14b_fcara_chassis002' }, - ['-1245652962'] = { Name = 'cs1_14b_fcara_chassis003' }, - ['308817600'] = { Name = 'cs1_14b_fconta_chassis013' }, - ['546032391'] = { Name = 'cs1_14b_fconta_chassis014' }, - ['786819003'] = { Name = 'cs1_14b_fconta_chassis015' }, - ['-382280614'] = { Name = 'cs1_14b_fconta_chassis017' }, - ['-95125867'] = { Name = 'cs1_14b_fconta_chassis018' }, - ['-2050910863'] = { Name = 'cs1_14b_fconta_chassis019' }, - ['2062122593'] = { Name = 'cs1_14b_fconta_chassis021' }, - ['94016453'] = { Name = 'cs1_14b_fconta_chassis022' }, - ['390936362'] = { Name = 'cs1_14b_fconta_chassis023' }, - ['639095999'] = { Name = 'cs1_14b_fconta_chassis024' }, - ['-262721704'] = { Name = 'cs1_14b_locoa_chassis003' }, - ['-996050405'] = { Name = 'cs1_14b_mnttrack01' }, - ['-1375548190'] = { Name = 'cs1_14b_mnttrack02' }, - ['-1147574257'] = { Name = 'cs1_14b_mnttrack03' }, - ['-2089486393'] = { Name = 'cs1_14b_mnttrack04' }, - ['-1857383566'] = { Name = 'cs1_14b_mnttrack05' }, - ['1691957904'] = { Name = 'cs1_14b_mnttrack06' }, - ['-431951397'] = { Name = 'cs1_14b_nuterr10' }, - ['137086236'] = { Name = 'cs1_14b_nutrail10' }, - ['-2046705466'] = { Name = 'cs1_14b_nutrail17' }, - ['995568498'] = { Name = 'cs1_14b_nutrail18' }, - ['-1326803005'] = { Name = 'cs1_14b_nutrail20' }, - ['1847663207'] = { Name = 'cs1_14b_ovrly_02' }, - ['1229356326'] = { Name = 'cs1_14b_ovrly_02a' }, - ['1095221429'] = { Name = 'cs1_14b_ovrly_03' }, - ['847258406'] = { Name = 'cs1_14b_ovrly_04' }, - ['631376234'] = { Name = 'cs1_14b_ovrly_05' }, - ['187163861'] = { Name = 'cs1_14b_railbg01_d' }, - ['-741716338'] = { Name = 'cs1_14b_railbg01_d2' }, - ['-404721697'] = { Name = 'cs1_14b_railbg03' }, - ['-701838220'] = { Name = 'cs1_14b_railbg04' }, - ['847113661'] = { Name = 'cs1_14b_rckcliff_03' }, - ['-588627245'] = { Name = 'cs1_14b_rckcliff_04' }, - ['-101225641'] = { Name = 'cs1_14b_refprx01_ch' }, - ['-1594070234'] = { Name = 'cs1_14b_refprx02_ch' }, - ['1179182679'] = { Name = 'cs1_14b_refprx03_ch' }, - ['2108313460'] = { Name = 'cs1_14b_refprx04_ch' }, - ['-900657850'] = { Name = 'cs1_14b_refprx05_ch' }, - ['1484321663'] = { Name = 'cs1_14b_refprx06_ch' }, - ['960083088'] = { Name = 'cs1_14b_refprx07_ch' }, - ['-972985511'] = { Name = 'cs1_14b_riverland_001' }, - ['900128769'] = { Name = 'cs1_14b_riverland' }, - ['-1746607828'] = { Name = 'cs1_14b_riverrock00' }, - ['-766290420'] = { Name = 'cs1_14b_riverrock02' }, - ['-1576351897'] = { Name = 'cs1_14b_rvrbed_01' }, - ['-816274942'] = { Name = 'cs1_14b_rvrbed_02' }, - ['927444814'] = { Name = 'cs1_14b_smallbrdg_hd' }, - ['1057017213'] = { Name = 'cs1_14b_smallbrdg_lod' }, - ['2119659647'] = { Name = 'cs1_14b_tc_debris4' }, - ['1843482515'] = { Name = 'cs1_14b_tc_debris5' }, - ['-968387093'] = { Name = 'cs1_14b_terr21a' }, - ['-144574433'] = { Name = 'cs1_14b_terr21b' }, - ['-1837840340'] = { Name = 'cs1_14b_traincrash_slod' }, - ['-1169198463'] = { Name = 'cs1_14b_tunn_ent_003' }, - ['-627359310'] = { Name = 'cs1_14b_tunn_entdc_01' }, - ['-62245692'] = { Name = 'cs1_14b_water_trncrsh' }, - ['2114584384'] = { Name = 'cs1_14b_waterblend_slod' }, - ['-70511385'] = { Name = 'cs1_14b_waterblend' }, - ['-496070126'] = { Name = 'cs1_14b_wb_ov' }, - ['-44445619'] = { Name = 'cs1_14b_wtr_trncrsh_slod' }, - ['81563134'] = { Name = 'cs1_15_barn_support' }, - ['1150431115'] = { Name = 'cs1_15_barn' }, - ['-907824369'] = { Name = 'cs1_15_bridgea_rail' }, - ['-588483223'] = { Name = 'cs1_15_bridgea' }, - ['-646694954'] = { Name = 'cs1_15_bridgeb_rail' }, - ['-910995721'] = { Name = 'cs1_15_bridgeb' }, - ['680014337'] = { Name = 'cs1_15_bridgeter_rail' }, - ['-927570067'] = { Name = 'cs1_15_bridgeter' }, - ['1979852223'] = { Name = 'cs1_15_culvert01' }, - ['1673232690'] = { Name = 'cs1_15_culvert02' }, - ['-645042988'] = { Name = 'cs1_15_culvert03' }, - ['-951072679'] = { Name = 'cs1_15_culvert04' }, - ['1579131602'] = { Name = 'cs1_15_decals01' }, - ['-2107020443'] = { Name = 'cs1_15_decals03' }, - ['-1529008052'] = { Name = 'cs1_15_decals05' }, - ['-917440205'] = { Name = 'cs1_15_decals07' }, - ['-1147773506'] = { Name = 'cs1_15_decals08' }, - ['-648668867'] = { Name = 'cs1_15_decals09' }, - ['1500256915'] = { Name = 'cs1_15_decals10' }, - ['314445112'] = { Name = 'cs1_15_decals11' }, - ['2102911594'] = { Name = 'cs1_15_decals12' }, - ['1318533030'] = { Name = 'cs1_15_lumber_sign' }, - ['1772489241'] = { Name = 'cs1_15_mnt_chiliad_hi' }, - ['1200973641'] = { Name = 'cs1_15_mnt_chiliad_hi001' }, - ['2105688964'] = { Name = 'cs1_15_mwall_01' }, - ['-1830064554'] = { Name = 'cs1_15_mwall_02' }, - ['-757231462'] = { Name = 'cs1_15_stream05_d' }, - ['772542482'] = { Name = 'cs1_15_terrain01' }, - ['1555459430'] = { Name = 'cs1_15_terrain02' }, - ['326720217'] = { Name = 'cs1_15_terrain03' }, - ['1373279928'] = { Name = 'cs1_15_terrain03b' }, - ['1077982331'] = { Name = 'cs1_15_terrain04' }, - ['566540217'] = { Name = 'cs1_15_terrain04b' }, - ['473787465'] = { Name = 'cs1_15_terrain05' }, - ['-1752025623'] = { Name = 'cs1_15_terrain05b' }, - ['-266923011'] = { Name = 'cs1_15_terrain06' }, - ['956310978'] = { Name = 'cs1_15_terrain07' }, - ['-872531745'] = { Name = 'cs1_15_track04' }, - ['374855429'] = { Name = 'cs1_15b_barn_detail' }, - ['-1984919048'] = { Name = 'cs1_15b_barn' }, - ['1428448516'] = { Name = 'cs1_15b_bridge_det1' }, - ['1834947775'] = { Name = 'cs1_15b_chimneydet1' }, - ['2065739842'] = { Name = 'cs1_15b_chimneydet2' }, - ['1416063603'] = { Name = 'cs1_15b_cs1_15_barn_d' }, - ['-1531106997'] = { Name = 'cs1_15b_culv01_det' }, - ['1986885186'] = { Name = 'cs1_15b_culv01' }, - ['-921353092'] = { Name = 'cs1_15b_det_00' }, - ['1906185627'] = { Name = 'cs1_15b_det_05' }, - ['-272449848'] = { Name = 'cs1_15b_det_05a' }, - ['-578282925'] = { Name = 'cs1_15b_det_05b' }, - ['962850995'] = { Name = 'cs1_15b_det_10a' }, - ['1766497836'] = { Name = 'cs1_15b_drugpallets_det01' }, - ['-1810762822'] = { Name = 'cs1_15b_drugpallets_det02' }, - ['-2050992361'] = { Name = 'cs1_15b_drugpallets_det03' }, - ['-1955470738'] = { Name = 'cs1_15b_drugpallets_det04' }, - ['2107393731'] = { Name = 'cs1_15b_drugpallets_det05' }, - ['651925827'] = { Name = 'cs1_15b_drugpallets_det06' }, - ['-164150905'] = { Name = 'cs1_15b_drugpallets2' }, - ['-81872760'] = { Name = 'cs1_15b_int_detail' }, - ['340492096'] = { Name = 'cs1_15b_ladder_01' }, - ['1752921900'] = { Name = 'cs1_15b_land_1' }, - ['1512397440'] = { Name = 'cs1_15b_land_2' }, - ['1275117111'] = { Name = 'cs1_15b_land_3' }, - ['-1616353915'] = { Name = 'cs1_15b_land_4' }, - ['-1854584545'] = { Name = 'cs1_15b_land_5' }, - ['-2094879622'] = { Name = 'cs1_15b_land_6' }, - ['837782141'] = { Name = 'cs1_15b_lumb_decals_1' }, - ['-1541017880'] = { Name = 'cs1_15b_lumb_decals_2' }, - ['1697870084'] = { Name = 'cs1_15b_lumb_decals_3' }, - ['1467340169'] = { Name = 'cs1_15b_lumb_decals_4' }, - ['674100966'] = { Name = 'cs1_15b_lumb_decals_5' }, - ['-1233939597'] = { Name = 'cs1_15b_lumb_decals_6' }, - ['-2112621582'] = { Name = 'cs1_15b_nuforlnd03_04_d' }, - ['-1860459794'] = { Name = 'cs1_15b_nufrld03_04_d1' }, - ['-1569569381'] = { Name = 'cs1_15b_nufrld03_04_d2' }, - ['-590841769'] = { Name = 'cs1_15b_sawm_det01' }, - ['-865642603'] = { Name = 'cs1_15b_sawm_det02' }, - ['-271835554'] = { Name = 'cs1_15b_sawm_det04' }, - ['-2087565844'] = { Name = 'cs1_15b_sawm_det05' }, - ['1899209007'] = { Name = 'cs1_15b_sawm_det06' }, - ['1907482916'] = { Name = 'cs1_15b_sawmain_01' }, - ['1676494235'] = { Name = 'cs1_15b_sawmain_02' }, - ['-481835950'] = { Name = 'cs1_15b_sawmain_03' }, - ['386608088'] = { Name = 'cs1_15b_sawmain_04' }, - ['1406054398'] = { Name = 'cs1_15b_sawmil_d_01' }, - ['-1894928317'] = { Name = 'cs1_15b_sawmil_d_01b' }, - ['-2124213010'] = { Name = 'cs1_15b_sawmil_d_01c' }, - ['1851846374'] = { Name = 'cs1_15b_sawmil_d_01d' }, - ['-363665716'] = { Name = 'cs1_15b_sawmil_d_01g' }, - ['-1287358288'] = { Name = 'cs1_15b_sawmil_d_01h' }, - ['1519407279'] = { Name = 'cs1_15b_sawmill_00' }, - ['130853673'] = { Name = 'cs1_15b_sawmill_01' }, - ['2016556089'] = { Name = 'cs1_15b_sawmill_014' }, - ['1717538964'] = { Name = 'cs1_15b_sawmill_015' }, - ['-1818891520'] = { Name = 'cs1_15b_sawmill_016' }, - ['885817808'] = { Name = 'cs1_15b_sawmill_02_b' }, - ['1195648703'] = { Name = 'cs1_15b_sawmill_02_c' }, - ['-1276772355'] = { Name = 'cs1_15b_sawmill_02_d' }, - ['1165697833'] = { Name = 'cs1_15b_sawmill_02_e' }, - ['-1876379517'] = { Name = 'cs1_15b_sawmill_02_f' }, - ['2095092211'] = { Name = 'cs1_15b_sawmill_02_i' }, - ['-650851686'] = { Name = 'cs1_15b_sawmill_02_k' }, - ['-663762676'] = { Name = 'cs1_15b_sawmill_02_m' }, - ['269072455'] = { Name = 'cs1_15b_sawmill_02_q' }, - ['1514589376'] = { Name = 'cs1_15b_sawmill_02_r' }, - ['1804496719'] = { Name = 'cs1_15b_sawmill_02_s' }, - ['1897496001'] = { Name = 'cs1_15b_sawmill_03' }, - ['-1518606715'] = { Name = 'cs1_15b_sawmill_04' }, - ['1178356470'] = { Name = 'cs1_15b_sawmill_04b' }, - ['187248053'] = { Name = 'cs1_15b_sawmill_05_det' }, - ['1321482519'] = { Name = 'cs1_15b_sawmill_05' }, - ['1933705746'] = { Name = 'cs1_15b_sawmill_07' }, - ['-250413646'] = { Name = 'cs1_15b_sawmill_08' }, - ['1652916032'] = { Name = 'cs1_15b_sawmill_08a' }, - ['-630665122'] = { Name = 'cs1_15b_sawmill_09' }, - ['-1939262584'] = { Name = 'cs1_15b_sawmill_10' }, - ['-1404437981'] = { Name = 'cs1_15b_sawmill_11_bdgrl' }, - ['2115540711'] = { Name = 'cs1_15b_sawmill_11' }, - ['-492970000'] = { Name = 'cs1_15b_sawmill_13' }, - ['990273920'] = { Name = 'cs1_15b_sheddet1' }, - ['756078460'] = { Name = 'cs1_15b_smll_detail_00_a' }, - ['276831835'] = { Name = 'cs1_15b_smll_detail_00_c' }, - ['-233774723'] = { Name = 'cs1_15b_smll_detail_00_d' }, - ['-2102354167'] = { Name = 'cs1_15b_smll_detail_01_a' }, - ['1508887964'] = { Name = 'cs1_15b_smll_detail_01_b' }, - ['1671553280'] = { Name = 'cs1_15b_smll_detail_01_c' }, - ['-2048767886'] = { Name = 'cs1_15b_smll_detail_01' }, - ['315902771'] = { Name = 'cs1_15b_smll_detail_016' }, - ['-1083497784'] = { Name = 'cs1_15b_smll_detail_02_a' }, - ['-621684267'] = { Name = 'cs1_15b_smll_detail_02_c' }, - ['-324371130'] = { Name = 'cs1_15b_smll_detail_02_d' }, - ['-1384343642'] = { Name = 'cs1_15b_smll_detail_02' }, - ['-2139751975'] = { Name = 'cs1_15b_smll_detail_03_b' }, - ['1777945796'] = { Name = 'cs1_15b_smll_detail_03_c' }, - ['-1083541595'] = { Name = 'cs1_15b_smll_detail_03_e' }, - ['1294930736'] = { Name = 'cs1_15b_smll_detail_03_f' }, - ['-617385197'] = { Name = 'cs1_15b_smll_detail_03' }, - ['-1480055865'] = { Name = 'cs1_15b_smll_detail_04_a' }, - ['-1032595170'] = { Name = 'cs1_15b_smll_detail_04_c' }, - ['-734626653'] = { Name = 'cs1_15b_smll_detail_04_d' }, - ['1596291833'] = { Name = 'cs1_15b_smll_detail_04' }, - ['-1643141637'] = { Name = 'cs1_15b_smll_detail_08_a' }, - ['18541584'] = { Name = 'cs1_15b_smll_detail_08_c' }, - ['1647193649'] = { Name = 'cs1_15b_smll_detail_08_d' }, - ['1426723817'] = { Name = 'cs1_15b_smll_detail_08_e' }, - ['-979208932'] = { Name = 'cs1_15b_smll_detail_08_f' }, - ['-1199219998'] = { Name = 'cs1_15b_smll_detail_08_g' }, - ['2094457730'] = { Name = 'cs1_15b_smll_detail_08_j' }, - ['644888234'] = { Name = 'cs1_15b_smll_detail_08_l' }, - ['436936160'] = { Name = 'cs1_15b_smll_detail_08_m' }, - ['-504561526'] = { Name = 'cs1_15b_smll_detail_08' }, - ['806848150'] = { Name = 'cs1_15b_smll_detail_10_c' }, - ['-2008238341'] = { Name = 'cs1_15b_smll_detail_10_d' }, - ['-1760340856'] = { Name = 'cs1_15b_smll_detail_10_g' }, - ['995007728'] = { Name = 'cs1_15b_smll_detail_10_n' }, - ['1024734723'] = { Name = 'cs1_15b_smll_detail_10' }, - ['2007506180'] = { Name = 'cs1_15b_smll_detail_11_a' }, - ['-629153102'] = { Name = 'cs1_15b_smll_detail_11_b' }, - ['730239720'] = { Name = 'cs1_15b_smll_detail_11' }, - ['-1904328979'] = { Name = 'cs1_15b_smll_detail_13_a' }, - ['2103418032'] = { Name = 'cs1_15b_smll_detail_13_b' }, - ['-655462987'] = { Name = 'cs1_15b_smll_detail_13' }, - ['62037693'] = { Name = 'cs1_15b_smll_detail_14_a' }, - ['235189089'] = { Name = 'cs1_15b_smll_detail_14_b' }, - ['541546470'] = { Name = 'cs1_15b_smll_detail_14_c' }, - ['-1840104462'] = { Name = 'cs1_15b_smll_detail_14_d' }, - ['-1383861675'] = { Name = 'cs1_15b_smll_detail_14_f' }, - ['1071617810'] = { Name = 'cs1_15b_smll_detail_14_g' }, - ['-971519992'] = { Name = 'cs1_15b_smll_detail_14' }, - ['-2058707080'] = { Name = 'cs1_15b_smll_detail_15_c' }, - ['1949049906'] = { Name = 'cs1_15b_smll_detail_15' }, - ['1578432384'] = { Name = 'cs1_15b_smll_detail_16' }, - ['919382256'] = { Name = 'cs1_15b_smll_detail_17' }, - ['-1989169145'] = { Name = 'cs1_15b_smll_detail_lads01' }, - ['-1481184107'] = { Name = 'cs1_15b_smll_detail_lads02' }, - ['-232887086'] = { Name = 'cs1_15b_terraindet1' }, - ['1168118740'] = { Name = 'cs1_15b_terraindet2' }, - ['1467856783'] = { Name = 'cs1_15b_terraindet3' }, - ['-1454089413'] = { Name = 'cs1_15b_terraindet4' }, - ['-746079773'] = { Name = 'cs1_15b_wallmr' }, - ['-1048947322'] = { Name = 'cs1_15c__decal_03' }, - ['-814419589'] = { Name = 'cs1_15c__decal_04' }, - ['-677073756'] = { Name = 'cs1_15c__decal_cliff' }, - ['1394437791'] = { Name = 'cs1_15c_antennea' }, - ['-1048173991'] = { Name = 'cs1_15c_brgbit03' }, - ['1429115722'] = { Name = 'cs1_15c_cable_00' }, - ['-1009323875'] = { Name = 'cs1_15c_cable_01' }, - ['354960480'] = { Name = 'cs1_15c_clt_lgs_001' }, - ['1631324785'] = { Name = 'cs1_15c_cult_barn_2' }, - ['814229498'] = { Name = 'cs1_15c_cult_barn_o' }, - ['-1305876480'] = { Name = 'cs1_15c_cult_barn' }, - ['2100951239'] = { Name = 'cs1_15c_cult_cloth_1' }, - ['1404085685'] = { Name = 'cs1_15c_cult_cloth_2' }, - ['-1178057746'] = { Name = 'cs1_15c_cult_gate_1' }, - ['349421996'] = { Name = 'cs1_15c_cult_gate_3_o' }, - ['2015801548'] = { Name = 'cs1_15c_cult_ground_o' }, - ['-967611332'] = { Name = 'cs1_15c_cult_guard_1' }, - ['-1840643030'] = { Name = 'cs1_15c_cult_guard_2' }, - ['-1601658713'] = { Name = 'cs1_15c_cult_guard_3' }, - ['2065475953'] = { Name = 'cs1_15c_cult_hut_1_o' }, - ['1947781348'] = { Name = 'cs1_15c_cult_hut_1' }, - ['-1788428292'] = { Name = 'cs1_15c_cult_hut_2_o' }, - ['-1951500277'] = { Name = 'cs1_15c_cult_hut_2' }, - ['-2135798568'] = { Name = 'cs1_15c_cult_hut_3_o' }, - ['1921271223'] = { Name = 'cs1_15c_cult_hut_3' }, - ['159276701'] = { Name = 'cs1_15c_cult_hut_4_o' }, - ['-1455869152'] = { Name = 'cs1_15c_cult_hut_4' }, - ['-236404662'] = { Name = 'cs1_15c_cult_hut_5_o' }, - ['-1645601662'] = { Name = 'cs1_15c_cult_hut_5' }, - ['-1191492642'] = { Name = 'cs1_15c_cult_hut_69_o' }, - ['-341541937'] = { Name = 'cs1_15c_cult_hut_8_o' }, - ['-216873262'] = { Name = 'cs1_15c_cult_hut_8' }, - ['-2115245175'] = { Name = 'cs1_15c_cult_ivy_7' }, - ['-690044843'] = { Name = 'cs1_15c_cult_logs_2' }, - ['-1116314441'] = { Name = 'cs1_15c_cult_spkrs_1' }, - ['-512943173'] = { Name = 'cs1_15c_cult_steps1' }, - ['1122066862'] = { Name = 'cs1_15c_cult_stock1' }, - ['-1109665887'] = { Name = 'cs1_15c_cult_stock2' }, - ['1811788774'] = { Name = 'cs1_15c_cult_stock3' }, - ['1479445576'] = { Name = 'cs1_15c_cult_stock4' }, - ['-2020054245'] = { Name = 'cs1_15c_cult_stock5' }, - ['116713938'] = { Name = 'cs1_15c_cult_stock6' }, - ['-197016468'] = { Name = 'cs1_15c_cult_stock7' }, - ['519440598'] = { Name = 'cs1_15c_cult_wmill_1' }, - ['816884811'] = { Name = 'cs1_15c_cult_wmill_2' }, - ['325742943'] = { Name = 'cs1_15c_cult_wmill_3' }, - ['-683289378'] = { Name = 'cs1_15c_cult_wtow_1_o' }, - ['-1206142583'] = { Name = 'cs1_15c_cult_wtow_1' }, - ['-1109474033'] = { Name = 'cs1_15c_cult_wtow_2' }, - ['-982363078'] = { Name = 'cs1_15c_cult_wtow_3' }, - ['-288029051'] = { Name = 'cs1_15c_cultcliff_d' }, - ['1746956826'] = { Name = 'cs1_15c_culvert_dd' }, - ['1668805674'] = { Name = 'cs1_15c_culvert005' }, - ['412376676'] = { Name = 'cs1_15c_culvert006' }, - ['1188772593'] = { Name = 'cs1_15c_culvert007' }, - ['1641405916'] = { Name = 'cs1_15c_culvert2' }, - ['-1282919929'] = { Name = 'cs1_15c_culvertwall' }, - ['-1667576752'] = { Name = 'cs1_15c_dd_culvert' }, - ['-796676549'] = { Name = 'cs1_15c_dd_culvert002' }, - ['-1771664815'] = { Name = 'cs1_15c_dd_culvert002b' }, - ['563318071'] = { Name = 'cs1_15c_decal_01' }, - ['1414066849'] = { Name = 'cs1_15c_decal_02' }, - ['-360308967'] = { Name = 'cs1_15c_decal_05' }, - ['-42515205'] = { Name = 'cs1_15c_decal_06' }, - ['2012917972'] = { Name = 'cs1_15c_decalb_01' }, - ['1773999193'] = { Name = 'cs1_15c_decalb_02' }, - ['-404765905'] = { Name = 'cs1_15c_frrd02' }, - ['-457392919'] = { Name = 'cs1_15c_frrd03' }, - ['-739435702'] = { Name = 'cs1_15c_frrd04' }, - ['1480099214'] = { Name = 'cs1_15c_ftrk03' }, - ['-1635020233'] = { Name = 'cs1_15c_ftrk04' }, - ['-1128083803'] = { Name = 'cs1_15c_ftrk05' }, - ['-142654447'] = { Name = 'cs1_15c_ftrk08' }, - ['-1514659708'] = { Name = 'cs1_15c_ftrk09' }, - ['2098024591'] = { Name = 'cs1_15c_ftrk10' }, - ['-255560998'] = { Name = 'cs1_15c_ghh_69' }, - ['-481768150'] = { Name = 'cs1_15c_hut_070' }, - ['-1934989179'] = { Name = 'cs1_15c_hut_det' }, - ['1891737529'] = { Name = 'cs1_15c_l_11' }, - ['2133408900'] = { Name = 'cs1_15c_l_12' }, - ['1893507051'] = { Name = 'cs1_15c_l_13' }, - ['1135297929'] = { Name = 'cs1_15c_l_14' }, - ['1492004670'] = { Name = 'cs1_15c_land0022' }, - ['690188647'] = { Name = 'cs1_15c_land013333' }, - ['1722411540'] = { Name = 'cs1_15c_land02' }, - ['514644507'] = { Name = 'cs1_15c_land03' }, - ['-78703776'] = { Name = 'cs1_15c_land05' }, - ['243255674'] = { Name = 'cs1_15c_land05b' }, - ['995894046'] = { Name = 'cs1_15c_land05c' }, - ['928450575'] = { Name = 'cs1_15c_land33' }, - ['-1216825568'] = { Name = 'cs1_15c_lb_00' }, - ['-885924218'] = { Name = 'cs1_15c_lb_01' }, - ['-1188545933'] = { Name = 'cs1_15c_lb_02' }, - ['1857398159'] = { Name = 'cs1_15c_lb_03' }, - ['-493115773'] = { Name = 'cs1_15c_missionculvert' }, - ['-1520526498'] = { Name = 'cs1_15c_missionculvert2' }, - ['-1150461319'] = { Name = 'cs1_15c_mr_detail' }, - ['1262263814'] = { Name = 'cs1_15c_mr_rails' }, - ['1246136473'] = { Name = 'cs1_15c_mr_rails2' }, - ['2026628515'] = { Name = 'cs1_15c_mr_rails3' }, - ['1720795438'] = { Name = 'cs1_15c_mr_rails4' }, - ['329423694'] = { Name = 'cs1_15c_mr_rails5' }, - ['1096873674'] = { Name = 'cs1_15c_mr_rails6' }, - ['1658589231'] = { Name = 'cs1_15c_ovrly02' }, - ['-445656863'] = { Name = 'cs1_15c_ovrly02b' }, - ['-882314000'] = { Name = 'cs1_15c_retwalb002' }, - ['1225289769'] = { Name = 'cs1_15c_retwalb003' }, - ['100919801'] = { Name = 'cs1_15c_retwalb010' }, - ['-904494144'] = { Name = 'cs1_15c_slipdecal16' }, - ['1114697762'] = { Name = 'cs1_15c_trk09' }, - ['-999256755'] = { Name = 'cs1_15c_trk13_dcl' }, - ['-105875790'] = { Name = 'cs1_15c_trk13' }, - ['-507853109'] = { Name = 'cs1_15c_trk16' }, - ['1705485908'] = { Name = 'cs1_15c_tunl_01b_d' }, - ['895596743'] = { Name = 'cs1_15c_tunl_01b' }, - ['-1513684054'] = { Name = 'cs1_15c_tunl_01b001' }, - ['-1349229098'] = { Name = 'cs1_16_bikehire' }, - ['-791372275'] = { Name = 'cs1_16_cable_02' }, - ['223910225'] = { Name = 'cs1_16_cable_railings_a' }, - ['918842408'] = { Name = 'cs1_16_cable_railings_b' }, - ['553795748'] = { Name = 'cs1_16_cable_railings_c' }, - ['49129279'] = { Name = 'cs1_16_cable_railings' }, - ['1825871626'] = { Name = 'cs1_16_cable_tarmac' }, - ['1354613695'] = { Name = 'cs1_16_cable' }, - ['770090991'] = { Name = 'cs1_16_carpark_d' }, - ['279246450'] = { Name = 'cs1_16_copbillboard' }, - ['-1496746610'] = { Name = 'cs1_16_dcl_forpth_04' }, - ['645016583'] = { Name = 'cs1_16_emissive_slod' }, - ['-739401417'] = { Name = 'cs1_16_emissive' }, - ['265828076'] = { Name = 'cs1_16_fence_01' }, - ['2118023015'] = { Name = 'cs1_16_forroad2' }, - ['-657617746'] = { Name = 'cs1_16_frstlnd01' }, - ['-427349983'] = { Name = 'cs1_16_frstlnd02' }, - ['1267528227'] = { Name = 'cs1_16_frstlnd03' }, - ['748141621'] = { Name = 'cs1_16_glue_01' }, - ['-451891928'] = { Name = 'cs1_16_glue_02' }, - ['114946234'] = { Name = 'cs1_16_glue_03' }, - ['1051739663'] = { Name = 'cs1_16_hedge_rnd_a_sm_decr002' }, - ['1664978464'] = { Name = 'cs1_16_hedge_rnd_a_smr001' }, - ['-1250211721'] = { Name = 'cs1_16_helidecal' }, - ['2092099097'] = { Name = 'cs1_16_lodge_03_ovr' }, - ['1674045572'] = { Name = 'cs1_16_lodge_03_ovr01' }, - ['1439779991'] = { Name = 'cs1_16_lodge_03_ovr02' }, - ['957879077'] = { Name = 'cs1_16_lodge_03_ovr03' }, - ['-2106934516'] = { Name = 'cs1_16_lodge_ground_ovr' }, - ['493527916'] = { Name = 'cs1_16_lodge_lights' }, - ['732004594'] = { Name = 'cs1_16_lodge_woodrails' }, - ['150786064'] = { Name = 'cs1_16_lodge' }, - ['-1878664611'] = { Name = 'cs1_16_police_building' }, - ['-316372447'] = { Name = 'cs1_16_police_dec' }, - ['-1009891630'] = { Name = 'cs1_16_police_det_fizz' }, - ['-1535667780'] = { Name = 'cs1_16_police_details' }, - ['1171181612'] = { Name = 'cs1_16_police_tarmac' }, - ['-842271910'] = { Name = 'cs1_16_roadz04' }, - ['-1821344084'] = { Name = 'cs1_16_roadz05' }, - ['-2128946687'] = { Name = 'cs1_16_roadz06' }, - ['1161302532'] = { Name = 'cs1_16_sheriff_con_sign_d' }, - ['-341451465'] = { Name = 'cs1_16_sheriff_e_dummy' }, - ['1253895058'] = { Name = 'cs1_16_sheriff2_windows' }, - ['-1776434031'] = { Name = 'cs1_16_signage' }, - ['-1788229762'] = { Name = 'cs1_16_str_bridge2' }, - ['-1026186667'] = { Name = 'cs1_16_str_bridge3' }, - ['1284655385'] = { Name = 'cs1_16_struct_bridge' }, - ['-459683126'] = { Name = 'cs1_16_structure_a' }, - ['459667598'] = { Name = 'cs1_16_structure_b_railings' }, - ['-164008443'] = { Name = 'cs1_16_structure_b' }, - ['2115245904'] = { Name = 'cs1_16_structure_bb' }, - ['1243591009'] = { Name = 'cs1_16_weed_01' }, - ['1756950163'] = { Name = 'cs1_16_weed_02' }, - ['-442865576'] = { Name = 'cs1_16_weed_03' }, - ['-732936764'] = { Name = 'cs1_16_weed_04' }, - ['477887679'] = { Name = 'cs1_lod_08_slod3' }, - ['1057364270'] = { Name = 'cs1_lod_14_slod3' }, - ['1895792488'] = { Name = 'cs1_lod_14b_slod3' }, - ['450498068'] = { Name = 'cs1_lod_15_slod3' }, - ['-1561123356'] = { Name = 'cs1_lod_15b_slod3' }, - ['141389683'] = { Name = 'cs1_lod_15c_slod3' }, - ['12343246'] = { Name = 'cs1_lod_16_slod3' }, - ['-623287818'] = { Name = 'cs1_lod_riva_slod3' }, - ['1009076235'] = { Name = 'cs1_lod_rivb_slod3' }, - ['380132802'] = { Name = 'cs1_lod_roadsa_slod3' }, - ['1638163755'] = { Name = 'cs1_lod2_01_7_slod3' }, - ['2078865856'] = { Name = 'cs1_lod2_09_slod3' }, - ['-766129007'] = { Name = 'cs1_lod2_emissive_slod3' }, - ['1554295200'] = { Name = 'cs1_lod3_terrain_slod3_01' }, - ['1307249709'] = { Name = 'cs1_lod3_terrain_slod3_02' }, - ['992601771'] = { Name = 'cs1_lod3_terrain_slod3_03' }, - ['711410982'] = { Name = 'cs1_lod3_terrain_slod3_04' }, - ['1683863838'] = { Name = 'cs1_lod3_terrain_slod3_05' }, - ['1444945059'] = { Name = 'cs1_lod3_terrain_slod3_06' }, - ['-852086952'] = { Name = 'cs1_railway_br01_rail' }, - ['1224894275'] = { Name = 'cs1_railway_br01' }, - ['-497325064'] = { Name = 'cs1_railway_br02_rail' }, - ['465833159'] = { Name = 'cs1_railway_br02' }, - ['-1639853105'] = { Name = 'cs1_railway_br03_rail' }, - ['747417176'] = { Name = 'cs1_railway_br03' }, - ['-1157144066'] = { Name = 'cs1_railway_t01' }, - ['1749597310'] = { Name = 'cs1_railway_t02' }, - ['1451432179'] = { Name = 'cs1_railway_t03' }, - ['-2073135927'] = { Name = 'cs1_railway_t04' }, - ['1930678804'] = { Name = 'cs1_railway_t05' }, - ['565784416'] = { Name = 'cs1_railway_t06' }, - ['244812061'] = { Name = 'cs1_railway_t07' }, - ['1028187775'] = { Name = 'cs1_railway_t08' }, - ['-399164323'] = { Name = 'cs1_railway_t09' }, - ['173764949'] = { Name = 'cs1_railway_t10' }, - ['884688404'] = { Name = 'cs1_railway_t11' }, - ['1667375969'] = { Name = 'cs1_railway_t12' }, - ['2108664256'] = { Name = 'cs1_railwyb_int_slod1' }, - ['1534072704'] = { Name = 'cs1_railwyb_shadow_ext' }, - ['1385455931'] = { Name = 'cs1_railwyb_shadow_int_lod' }, - ['348769469'] = { Name = 'cs1_railwyb_steps' }, - ['-2109567732'] = { Name = 'cs1_railwyb_stepsground' }, - ['1286502999'] = { Name = 'cs1_railwyb_trk02' }, - ['696038380'] = { Name = 'cs1_railwyb_trk04' }, - ['1376584972'] = { Name = 'cs1_railwyb_trk06' }, - ['2126634613'] = { Name = 'cs1_railwyb_trk08' }, - ['1072514934'] = { Name = 'cs1_railwyb_trk1' }, - ['1838094141'] = { Name = 'cs1_railwyb_trk1int' }, - ['-1675460641'] = { Name = 'cs1_railwyb_trk3' }, - ['536220620'] = { Name = 'cs1_railwyb_trk4int' }, - ['10963179'] = { Name = 'cs1_railwyb_trk5' }, - ['-646707159'] = { Name = 'cs1_railwyb_trk6int' }, - ['-587497068'] = { Name = 'cs1_railwyb_trk7' }, - ['1323558243'] = { Name = 'cs1_railwyb_trk8' }, - ['1228770240'] = { Name = 'cs1_railwyb_trkint2' }, - ['1837028418'] = { Name = 'cs1_railwyb_trkint3' }, - ['-1160646937'] = { Name = 'cs1_railwyb_trkint5' }, - ['177071451'] = { Name = 'cs1_railwyb_tunnel_1_dec' }, - ['-909928979'] = { Name = 'cs1_railwyb_tunnel_1_wires' }, - ['1401939921'] = { Name = 'cs1_railwyb_tunnel_1' }, - ['236813934'] = { Name = 'cs1_railwyb_tunnel_2_dec' }, - ['1173783198'] = { Name = 'cs1_railwyb_tunnel_2_wires' }, - ['1096106844'] = { Name = 'cs1_railwyb_tunnel_2' }, - ['-184001033'] = { Name = 'cs1_railwyb_tunnel_3_dec' }, - ['-131087152'] = { Name = 'cs1_railwyb_tunnel_3_wires' }, - ['-383315199'] = { Name = 'cs1_railwyb_tunnel_3' }, - ['1735914352'] = { Name = 'cs1_railwyb_tunnel_4_dec' }, - ['869628881'] = { Name = 'cs1_railwyb_tunnel_4_wires' }, - ['-571933563'] = { Name = 'cs1_railwyb_tunnel_4' }, - ['1701724765'] = { Name = 'cs1_railwyb_tunnel_5_dec' }, - ['215169147'] = { Name = 'cs1_railwyb_tunnel_5_wires' }, - ['333768828'] = { Name = 'cs1_railwyb_tunnel_5' }, - ['298041609'] = { Name = 'cs1_railwyb_tunnel_6_dec' }, - ['-2013580455'] = { Name = 'cs1_railwyb_tunnel_6_wires' }, - ['-91376178'] = { Name = 'cs1_railwyb_tunnel_6' }, - ['201572558'] = { Name = 'cs1_railwyb_tunnel_reflect1' }, - ['728563616'] = { Name = 'cs1_railwyb_tunnel_reflect2' }, - ['-1194485149'] = { Name = 'cs1_railwyb_tunnel_reflect3' }, - ['-956057905'] = { Name = 'cs1_railwyb_tunnel_reflect4' }, - ['-698854024'] = { Name = 'cs1_railwyb_tunnel_reflect5' }, - ['-940820324'] = { Name = 'cs1_railwyb_tunnel_reflect6' }, - ['1136919711'] = { Name = 'cs1_railwyc_1_slod1' }, - ['1098775905'] = { Name = 'cs1_railwyc_2_slod1' }, - ['225028467'] = { Name = 'cs1_railwyc_3_slod1' }, - ['-846109309'] = { Name = 'cs1_railwyc_trk01_lod' }, - ['-775861882'] = { Name = 'cs1_railwyc_trk01' }, - ['-150180113'] = { Name = 'cs1_railwyc_trk02_lod' }, - ['677050040'] = { Name = 'cs1_railwyc_trk02' }, - ['1423027071'] = { Name = 'cs1_railwyc_trk03_lod' }, - ['-1282667236'] = { Name = 'cs1_railwyc_trk03' }, - ['-350354789'] = { Name = 'cs1_railwyc_trk04_lod' }, - ['214974371'] = { Name = 'cs1_railwyc_trk04' }, - ['489415085'] = { Name = 'cs1_railwyc_trk05_lod' }, - ['450550712'] = { Name = 'cs1_railwyc_trk05' }, - ['1412294154'] = { Name = 'cs1_railwyc_trk06_lod' }, - ['1299726578'] = { Name = 'cs1_railwyc_trk06' }, - ['-10208023'] = { Name = 'cs1_railwyc_trk07_lod' }, - ['-57696478'] = { Name = 'cs1_railwyc_trk07' }, - ['-1201094887'] = { Name = 'cs1_railwyc_trk08_lod' }, - ['836995529'] = { Name = 'cs1_railwyc_trk08' }, - ['995923637'] = { Name = 'cs1_railwyc_trk09_lod' }, - ['1060152419'] = { Name = 'cs1_railwyc_trk09' }, - ['-884979505'] = { Name = 'cs1_rdprops_cblb_00' }, - ['-581505796'] = { Name = 'cs1_rdprops_cblb_01' }, - ['-257682550'] = { Name = 'cs1_rdprops_cblb_02' }, - ['41531189'] = { Name = 'cs1_rdprops_cblb_03' }, - ['-1497169963'] = { Name = 'cs1_rdprops_cblb_04' }, - ['1878757959'] = { Name = 'cs1_rdprops_cblb_05' }, - ['-1438218532'] = { Name = 'cs1_rdprops_cblb_06' }, - ['670257862'] = { Name = 'cs1_rdprops_pb_mot_w002' }, - ['-1064203661'] = { Name = 'cs1_rdprops_pb_vantim01_dslod' }, - ['673923696'] = { Name = 'cs1_rdprops_pb_wi137' }, - ['1307778'] = { Name = 'cs1_rdprops_pb_wi151' }, - ['1437926274'] = { Name = 'cs1_rdprops_pb_wi851' }, - ['1339686023'] = { Name = 'cs1_rdprops_pb_wii137' }, - ['-2013770070'] = { Name = 'cs1_rdprops_pb_wire_em01' }, - ['1917920092'] = { Name = 'cs1_rdprops_pb_wire_em02' }, - ['729028003'] = { Name = 'cs1_rdprops_pb_wire_em03' }, - ['98159215'] = { Name = 'cs1_rdprops_pb_wire_em04' }, - ['1323621508'] = { Name = 'cs1_rdprops_pb_wire_em05' }, - ['958640386'] = { Name = 'cs1_rdprops_pb_wire_em06' }, - ['-767925455'] = { Name = 'cs1_rdprops_pb_wire_em07' }, - ['-857843591'] = { Name = 'cs1_rdprops_pb_wire_em08' }, - ['-167695682'] = { Name = 'cs1_rdprops_pb_wire_em09' }, - ['1359045021'] = { Name = 'cs1_rdprops_pb_wire_em10' }, - ['-2048078989'] = { Name = 'cs1_rdprops_pb_wire_em11' }, - ['2006855382'] = { Name = 'cs1_rdprops_pb_wire_em12' }, - ['506985483'] = { Name = 'cs1_rdprops_pb_wire_em13' }, - ['167629719'] = { Name = 'cs1_rdprops_pb_wire_em14' }, - ['1122616686'] = { Name = 'cs1_rdprops_pb_wire_em15' }, - ['746625180'] = { Name = 'cs1_rdprops_pb_wire_em16' }, - ['-681546147'] = { Name = 'cs1_rdprops_pb_wire_em17' }, - ['-955134528'] = { Name = 'cs1_rdprops_pb_wire_em18' }, - ['-667851809'] = { Name = 'cs1_rdprops_pb_wire_em20' }, - ['-256142089'] = { Name = 'cs1_rdprops_pb_wire_em22' }, - ['-1800610601'] = { Name = 'cs1_rdprops_pb_wire_em23' }, - ['-1628049047'] = { Name = 'cs1_rdprops_pb_wire_em24' }, - ['-1455389186'] = { Name = 'cs1_rdprops_pb_wire_em25' }, - ['-1011303698'] = { Name = 'cs1_rdprops_pb_wire_em26' }, - ['2003378756'] = { Name = 'cs1_rdprops_pb_wire_em27' }, - ['1239041843'] = { Name = 'cs1_rdprops_pb_wire_em28' }, - ['-1135867835'] = { Name = 'cs1_rdprops_pb_wspline_em027' }, - ['1710835662'] = { Name = 'cs1_rdprops_pb_wspline077' }, - ['983101710'] = { Name = 'cs1_rdprops_pb_wspline079' }, - ['-2035389300'] = { Name = 'cs1_rdprops_pb_wspline080' }, - ['-1674963069'] = { Name = 'cs1_rdprops_pb_wspline081' }, - ['-10363407'] = { Name = 'cs1_rdprops_pb_wspline084' }, - ['-896339148'] = { Name = 'cs1_rdprops_pb_wspline093' }, - ['-445142787'] = { Name = 'cs1_rdprops_pb_wspline095' }, - ['772389408'] = { Name = 'cs1_rdprops_pb_wspline096' }, - ['1257731067'] = { Name = 'cs1_rdprops_pb_wspline098' }, - ['1010620038'] = { Name = 'cs1_rdprops_pb_wspline099' }, - ['-124046747'] = { Name = 'cs1_rdprops_pb_wspline100' }, - ['782540407'] = { Name = 'cs1_rdprops_pb_wspline101' }, - ['-218323164'] = { Name = 'cs1_rdprops_pb_wspline105' }, - ['-515439687'] = { Name = 'cs1_rdprops_pb_wspline106' }, - ['-1721240580'] = { Name = 'cs1_rdprops_pb_wspline107' }, - ['1987096078'] = { Name = 'cs1_rdprops_pb_wspline108' }, - ['1249072364'] = { Name = 'cs1_rdprops_pb_wspline111' }, - ['951234923'] = { Name = 'cs1_rdprops_pb_wspline112' }, - ['1861295591'] = { Name = 'cs1_rdprops_pb_wspline113' }, - ['-243588355'] = { Name = 'cs1_rdprops_pb_wspline116' }, - ['338585699'] = { Name = 'cs1_rdprops_pb_wspline118' }, - ['-1438870347'] = { Name = 'cs1_rdprops_pb_wspline119' }, - ['911455497'] = { Name = 'cs1_rdprops_pb_wspline121' }, - ['-1669037703'] = { Name = 'cs1_rdprops_pb_wspline123' }, - ['-107562084'] = { Name = 'cs1_rdprops_pb_wspline125' }, - ['-355918335'] = { Name = 'cs1_rdprops_pb_wspline126' }, - ['1802805078'] = { Name = 'cs1_rdprops_pb_wspline127' }, - ['-995700291'] = { Name = 'cs1_rdprops_pb_wspline129' }, - ['424868148'] = { Name = 'cs1_rdprops_pb_wspline131' }, - ['101175966'] = { Name = 'cs1_rdprops_pb_wspline132' }, - ['-182570805'] = { Name = 'cs1_rdprops_pb_wspline133' }, - ['-420834204'] = { Name = 'cs1_rdprops_pb_wspline134' }, - ['-1392533365'] = { Name = 'cs1_rdprops_pb_wspline135' }, - ['-1613363656'] = { Name = 'cs1_rdprops_pb_wspline136' }, - ['417462350'] = { Name = 'cs1_rdprops_pb_wspline137' }, - ['187915505'] = { Name = 'cs1_rdprops_pb_wspline138' }, - ['-1951015432'] = { Name = 'cs1_rdprops_pb_wspline139' }, - ['-652008486'] = { Name = 'cs1_rdprops_shape017x' }, - ['1871483815'] = { Name = 'cs1_rdprops_tele_wire02' }, - ['-2128726326'] = { Name = 'cs1_rdprops_tele_wire03' }, - ['-663367572'] = { Name = 'cs1_rdprops_tele_wire10' }, - ['-293405562'] = { Name = 'cs1_rdprops_tele_wire11' }, - ['-1821619099'] = { Name = 'cs1_rdprops_wire_072' }, - ['2115183027'] = { Name = 'cs1_rdprops_wire_073' }, - ['1850245662'] = { Name = 'cs1_rdprops_wire_074' }, - ['-1186523118'] = { Name = 'cs1_rdprops_wire_075' }, - ['1816464577'] = { Name = 'cs1_rdprops_wire_e075' }, - ['-557001673'] = { Name = 'cs1_rdprops_wire_hi_01' }, - ['-820562740'] = { Name = 'cs1_rdprops_wire_hi_02' }, - ['710994782'] = { Name = 'cs1_rdprops_wire_hi_03' }, - ['479350721'] = { Name = 'cs1_rdprops_wire_hi_04' }, - ['97788485'] = { Name = 'cs1_rdprops_wire_hi_05' }, - ['-168787330'] = { Name = 'cs1_rdprops_wire_hi_06' }, - ['1746265803'] = { Name = 'cs1_rdprops_wire_hi_07' }, - ['1666964823'] = { Name = 'cs1_rdprops_wire_hi_08' }, - ['1301918163'] = { Name = 'cs1_rdprops_wire_hi_09' }, - ['-306854774'] = { Name = 'cs1_rdprops_wire_hi_10' }, - ['599797914'] = { Name = 'cs1_rdprops_wire_hi_11' }, - ['-2114458360'] = { Name = 'cs1_rdprops_wire_hi_12' }, - ['500435413'] = { Name = 'cs1_rdprops_wire_poly035' }, - ['-971551843'] = { Name = 'cs1_rdprops_wire_poly045' }, - ['-203577559'] = { Name = 'cs1_rdprops_wire_poly046' }, - ['-503446678'] = { Name = 'cs1_rdprops_wire_poly047' }, - ['-1541761968'] = { Name = 'cs1_rdprops_wire_poly050' }, - ['-1225737732'] = { Name = 'cs1_rdprops_wire_poly051' }, - ['1452079406'] = { Name = 'cs1_rdprops_wire_poly057' }, - ['-1666246742'] = { Name = 'cs1_rdprops_wire_spline_091' }, - ['-2139726015'] = { Name = 'cs1_rdprops_wire_spline_093' }, - ['1854585706'] = { Name = 'cs1_rdprops_wire_spline_094' }, - ['-804676844'] = { Name = 'cs1_rdprops_wire_spline028' }, - ['38305681'] = { Name = 'cs1_rdprops_wire_spline029' }, - ['-1457005991'] = { Name = 'cs1_rdprops_wire_spline029b002' }, - ['-439072959'] = { Name = 'cs1_rdprops_wire_spline030' }, - ['1417080209'] = { Name = 'cs1_rdprops_wire_spline034b002' }, - ['-943336733'] = { Name = 'cs1_rdprops_wire_spline035b002' }, - ['-13014043'] = { Name = 'cs1_rdprops_wire_spline036b003' }, - ['513291660'] = { Name = 'cs1_rdprops_wire_spline066' }, - ['142805346'] = { Name = 'cs1_rdprops_wire_spline067' }, - ['2050190529'] = { Name = 'cs1_rdprops_wire_spline068' }, - ['-1160741170'] = { Name = 'cs1_rdprops_wire_spline070' }, - ['-1465787791'] = { Name = 'cs1_rdprops_wire_spline071' }, - ['-1164824091'] = { Name = 'cs1_rdprops_wire_spline071b' }, - ['-540817228'] = { Name = 'cs1_rdprops_wire_spline074' }, - ['-218075347'] = { Name = 'cs1_rdprops_wire_spline077' }, - ['683236002'] = { Name = 'cs1_rdprops_wire_spline078' }, - ['2147456329'] = { Name = 'cs1_rdprops_wire_spline081' }, - ['928416764'] = { Name = 'cs1_rdprops_wire_spline082' }, - ['1284025952'] = { Name = 'cs1_rdprops_wire_spline083' }, - ['1301065768'] = { Name = 'cs1_rdprops_wire_spline084' }, - ['-729172644'] = { Name = 'cs1_rdprops_wire_test_ac017' }, - ['-2004314887'] = { Name = 'cs1_rdprops_wiree074' }, - ['-1058368971'] = { Name = 'cs1_roads_armco_08_lod' }, - ['-493449974'] = { Name = 'cs1_roads_armco_brdg_nrt_01' }, - ['435780559'] = { Name = 'cs1_roads_armco_brdg_nrt_02' }, - ['666305074'] = { Name = 'cs1_roads_armcojl2_02' }, - ['1972696768'] = { Name = 'cs1_roads_armcojl2' }, - ['-1210222300'] = { Name = 'cs1_roads_armcojl3_02' }, - ['-1453401049'] = { Name = 'cs1_roads_armcojl3_03' }, - ['1691571517'] = { Name = 'cs1_roads_armcojl3' }, - ['615429520'] = { Name = 'cs1_roads_armcojlz_02' }, - ['-952264116'] = { Name = 'cs1_roads_armcojlz' }, - ['1613005668'] = { Name = 'cs1_roads_bdge_dcl_01b' }, - ['1577042512'] = { Name = 'cs1_roads_decals_01b' }, - ['-1260720411'] = { Name = 'cs1_roads_decals_02b' }, - ['-1776635547'] = { Name = 'cs1_roads_decals_02c' }, - ['-107349918'] = { Name = 'cs1_roads_decals_02e' }, - ['-365012561'] = { Name = 'cs1_roads_decals_02f' }, - ['995825993'] = { Name = 'cs1_roads_pb_01_r1_01_ovly' }, - ['1848923972'] = { Name = 'cs1_roads_pb_01_r1_01' }, - ['-1647998477'] = { Name = 'cs1_roads_pb_01_r1_02_ovly' }, - ['616121423'] = { Name = 'cs1_roads_pb_01_r1_02' }, - ['434833966'] = { Name = 'cs1_roads_pb_01_r1_03_ovly' }, - ['931424741'] = { Name = 'cs1_roads_pb_01_r1_03' }, - ['-307747281'] = { Name = 'cs1_roads_pb_01_r2_01_ovly' }, - ['717866268'] = { Name = 'cs1_roads_pb_01_r2_01' }, - ['1497634363'] = { Name = 'cs1_roads_pb_01_r2_02_ovly' }, - ['89651769'] = { Name = 'cs1_roads_pb_01_r2_03' }, - ['-778692470'] = { Name = 'cs1_roads_pb_01_r3_01_ovly' }, - ['645908845'] = { Name = 'cs1_roads_pb_01_r3_01' }, - ['-1425922449'] = { Name = 'cs1_roads_pb_01_r3_02_ovly' }, - ['1489350136'] = { Name = 'cs1_roads_pb_01_r3_02' }, - ['-1286569480'] = { Name = 'cs1_roads_pb_01_r3_03_ovly' }, - ['-660066881'] = { Name = 'cs1_roads_pb_01_r3_03' }, - ['-1936546272'] = { Name = 'cs1_roads_pb_01_r3_04_ovly' }, - ['-1042677725'] = { Name = 'cs1_roads_pb_01_r3_04' }, - ['-1529106413'] = { Name = 'cs1_roads_pb_01_r4_02_ovly' }, - ['-55442626'] = { Name = 'cs1_roads_pb_01_r4_02' }, - ['1622619093'] = { Name = 'cs1_roads_pb_01_r4_02a_ovly' }, - ['1034009392'] = { Name = 'cs1_roads_pb_01_r4_03_ovly' }, - ['1852335785'] = { Name = 'cs1_roads_pb_01_r4_03' }, - ['149499090'] = { Name = 'cs1_roads_pb_01_r4_04_ovrly' }, - ['1562231828'] = { Name = 'cs1_roads_pb_01_r4_04' }, - ['-267678066'] = { Name = 'cs1_roads_pb_dcl_rd_jn1' }, - ['-385297464'] = { Name = 'cs1_roads_pb_dec01' }, - ['473443023'] = { Name = 'cs1_roads_pb_junc_01' }, - ['-747058828'] = { Name = 'cs1_roads_pb_tiredcls_ent_01' }, - ['985794821'] = { Name = 'cs1_roads_pbdst_land_01' }, - ['2122027135'] = { Name = 'cs1_roads_pbdst_land_02' }, - ['-985101531'] = { Name = 'cs1_roads_ph01' }, - ['684752529'] = { Name = 'cs1_roads_ph01b' }, - ['187122495'] = { Name = 'cs1_roads_ph01c' }, - ['203430099'] = { Name = 'cs1_roads_ph05' }, - ['-963483542'] = { Name = 'cs1_roads_phc_rd_swtbc_strt005' }, - ['1603269462'] = { Name = 'cs1_roads_phc_roadz02' }, - ['812848413'] = { Name = 'cs1_roads_phc_roadz03' }, - ['152833579'] = { Name = 'cs1_roads_rd_dcl_jn_02' }, - ['-1209150967'] = { Name = 'cs1_roads_rd_isnd_02' }, - ['843519861'] = { Name = 'cs1_roads_rd_jo_dcl_05' }, - ['1882242106'] = { Name = 'cs1_roads_rd_sign_002' }, - ['-1688358044'] = { Name = 'cs1_roads_rd_sign_01' }, - ['1574018367'] = { Name = 'cs1_roads_rd_sng_2' }, - ['1276248062'] = { Name = 'cs1_roads_rd_sng_3b01' }, - ['-1708897106'] = { Name = 'cs1_roads_roadz01' }, - ['114123555'] = { Name = 'cs1_roads_rum_strip_02' }, - ['-177553314'] = { Name = 'cs1_roads_rum_strip_03' }, - ['-1088783362'] = { Name = 'cs1_roads_wallret_01' }, - ['-1940384134'] = { Name = 'cs1_roads_wallret_02' }, - ['1702086774'] = { Name = 'cs1_roads_wallret_03' }, - ['-1674496528'] = { Name = 'cs1_roads_wallret_04' }, - ['-718230290'] = { Name = 'cs1_roads_wallret003' }, - ['759683534'] = { Name = 'cs1_roadsa_armco_05' }, - ['-170945975'] = { Name = 'cs1_roadsa_armcojl_lod' }, - ['1568261962'] = { Name = 'cs1_roadsa_armcojl' }, - ['1176301106'] = { Name = 'cs1_roadsa_bdg_dcl_01' }, - ['1357013571'] = { Name = 'cs1_roadsa_bdg_dcl_5' }, - ['1127204574'] = { Name = 'cs1_roadsa_bdg_dcl_6' }, - ['2101095738'] = { Name = 'cs1_roadsa_cst_dcl_01' }, - ['1533274622'] = { Name = 'cs1_roadsa_cst_dcl_02' }, - ['1732260364'] = { Name = 'cs1_roadsa_dcl_jn_01' }, - ['293794957'] = { Name = 'cs1_roadsa_dcl_sdd' }, - ['827094469'] = { Name = 'cs1_roadsa_flap_sup_01' }, - ['75138757'] = { Name = 'cs1_roadsa_flappy_stp_01_w' }, - ['-991305470'] = { Name = 'cs1_roadsa_flappybase_02' }, - ['525122596'] = { Name = 'cs1_roadsa_flappybase_3' }, - ['-306099627'] = { Name = 'cs1_roadsa_m04b' }, - ['165394080'] = { Name = 'cs1_roadsa_ncumasign1' }, - ['-109963827'] = { Name = 'cs1_roadsa_ncumasign2' }, - ['199357469'] = { Name = 'cs1_roadsa_rd_sgn_02' }, - ['-459168379'] = { Name = 'cs1_roadsa_rd_sgn_04' }, - ['-218128729'] = { Name = 'cs1_roadsa_rd_sng_03' }, - ['-45567175'] = { Name = 'cs1_roadsa_rd_sng_04' }, - ['1187005751'] = { Name = 'cs1_roadsa_rd_sng_3b' }, - ['-2144730991'] = { Name = 'cs1_roadsa_stop_bdcl' }, - ['-2014120123'] = { Name = 'cs1_roadsa00' }, - ['562309729'] = { Name = 'cs1_roadsa01' }, - ['811976740'] = { Name = 'cs1_roadsa02' }, - ['1040245594'] = { Name = 'cs1_roadsa03' }, - ['-930547600'] = { Name = 'cs1_roadsa04' }, - ['700033310'] = { Name = 'cs1_roadsa05_d' }, - ['867403730'] = { Name = 'cs1_roadsa05_side01' }, - ['485644880'] = { Name = 'cs1_roadsa05_side02' }, - ['1443843209'] = { Name = 'cs1_roadsa05_side03' }, - ['1517657163'] = { Name = 'cs1_roadsa05' }, - ['1748679860'] = { Name = 'cs1_roadsa06_d' }, - ['-1901849959'] = { Name = 'cs1_roadsa06_side01' }, - ['-1437840919'] = { Name = 'cs1_roadsa06_side02' }, - ['1544891772'] = { Name = 'cs1_roadsa06_side03' }, - ['1707848439'] = { Name = 'cs1_roadsa06' }, - ['1995986256'] = { Name = 'cs1_roadsa07' }, - ['-1819341187'] = { Name = 'cs1_roadsa09' }, - ['-1478347861'] = { Name = 'cs1_roadsa10' }, - ['2038126302'] = { Name = 'cs1_roadsa11' }, - ['-1941144448'] = { Name = 'cs1_roadsa12' }, - ['792427319'] = { Name = 'cs2_01__decal001' }, - ['1172383802'] = { Name = 'cs2_01_bb_global_hd' }, - ['-86863031'] = { Name = 'cs2_01_bridge_05_ovr' }, - ['-777987573'] = { Name = 'cs2_01_bridge_05' }, - ['-1531575764'] = { Name = 'cs2_01_bridge_fizz01' }, - ['-1958084256'] = { Name = 'cs2_01_bridge' }, - ['1445137254'] = { Name = 'cs2_01_clothshop_obja' }, - ['770681773'] = { Name = 'cs2_01_clothshop' }, - ['-1832723667'] = { Name = 'cs2_01_clshop_lite_emiss' }, - ['-1591192280'] = { Name = 'cs2_01_decal_02' }, - ['-1805093582'] = { Name = 'cs2_01_decal_carpark' }, - ['-1882628976'] = { Name = 'cs2_01_desert_house_004_dec' }, - ['-1118163597'] = { Name = 'cs2_01_desert_house_004_dec2' }, - ['71772186'] = { Name = 'cs2_01_desert_house2_dec1' }, - ['454055340'] = { Name = 'cs2_01_desert_house2_dec2' }, - ['1929479565'] = { Name = 'cs2_01_desert_house2_dec3' }, - ['-1750576174'] = { Name = 'cs2_01_deshous_2' }, - ['1293336240'] = { Name = 'cs2_01_deshous_3' }, - ['-2072529103'] = { Name = 'cs2_01_deshous1' }, - ['-1331982472'] = { Name = 'cs2_01_deshous4' }, - ['903047763'] = { Name = 'cs2_01_doorglass005' }, - ['475687200'] = { Name = 'cs2_01_doorglass01' }, - ['-711061957'] = { Name = 'cs2_01_ed_barn_01' }, - ['-1170945493'] = { Name = 'cs2_01_ed_fruit_dec' }, - ['-1139484893'] = { Name = 'cs2_01_ed_fruitshop_ovr' }, - ['-1253124969'] = { Name = 'cs2_01_ed_fruitshop' }, - ['425634674'] = { Name = 'cs2_01_ed_gs_01' }, - ['1161447730'] = { Name = 'cs2_01_ed_gs_ovr_01' }, - ['383806591'] = { Name = 'cs2_01_ed_gs_ovr_02' }, - ['-884157095'] = { Name = 'cs2_01_ed_gs_ovr_09' }, - ['922328525'] = { Name = 'cs2_01_ed_gs_ovr_10' }, - ['-303546491'] = { Name = 'cs2_01_feedstore_decal' }, - ['804734036'] = { Name = 'cs2_01_feedstore_grounddcl' }, - ['595967615'] = { Name = 'cs2_01_feedstore' }, - ['-1989855777'] = { Name = 'cs2_01_frmland01' }, - ['1435782802'] = { Name = 'cs2_01_frmland03' }, - ['48738446'] = { Name = 'cs2_01_garden_a' }, - ['232022418'] = { Name = 'cs2_01_garden_b_d' }, - ['324620649'] = { Name = 'cs2_01_garden_b' }, - ['1336834606'] = { Name = 'cs2_01_garden_c_dec' }, - ['1403071077'] = { Name = 'cs2_01_garden_dec' }, - ['-1750837932'] = { Name = 'cs2_01_gardens_a_d' }, - ['-1384077013'] = { Name = 'cs2_01_gas_obj1' }, - ['-2124263173'] = { Name = 'cs2_01_gas_obj2' }, - ['1918413817'] = { Name = 'cs2_01_gas_stop_ovr' }, - ['1162163552'] = { Name = 'cs2_01_gas_stop' }, - ['-2038553432'] = { Name = 'cs2_01_ground_det1' }, - ['339551708'] = { Name = 'cs2_01_ground' }, - ['1733808062'] = { Name = 'cs2_01_house5' }, - ['-1931309079'] = { Name = 'cs2_01_land02' }, - ['-674703964'] = { Name = 'cs2_01_land04_o' }, - ['-1452685065'] = { Name = 'cs2_01_land04' }, - ['1908244593'] = { Name = 'cs2_01_lds_bw_garden_a_dec' }, - ['1302780361'] = { Name = 'cs2_01_lds_bw_house_d' }, - ['704825452'] = { Name = 'cs2_01_markets_dec' }, - ['-92746238'] = { Name = 'cs2_01_markets_dec2' }, - ['-1886525161'] = { Name = 'cs2_01_markets_obj1b' }, - ['101767523'] = { Name = 'cs2_01_markets_obj2a' }, - ['16724284'] = { Name = 'cs2_01_markets' }, - ['1189588132'] = { Name = 'cs2_01_markets2_obj1b' }, - ['430373999'] = { Name = 'cs2_01_markets2_obj2a' }, - ['1261917982'] = { Name = 'cs2_01_markets2' }, - ['1678215358'] = { Name = 'cs2_01_markets3' }, - ['782933509'] = { Name = 'cs2_01_markets4' }, - ['-383599949'] = { Name = 'cs2_01_obj_group1a' }, - ['149220827'] = { Name = 'cs2_01_obj_group2a' }, - ['-237354770'] = { Name = 'cs2_01_obj_group3b' }, - ['1979698891'] = { Name = 'cs2_01_obj_group4b' }, - ['1681927276'] = { Name = 'cs2_01_obj_group5b' }, - ['1205280930'] = { Name = 'cs2_01_obj_group6' }, - ['966624303'] = { Name = 'cs2_01_obj_group7' }, - ['1910752515'] = { Name = 'cs2_01_obj_group8a' }, - ['-1983961995'] = { Name = 'cs2_01_obj_group9' }, - ['-903785216'] = { Name = 'cs2_01_obj_ladder_02' }, - ['-17057073'] = { Name = 'cs2_01_obj_ladder' }, - ['713450210'] = { Name = 'cs2_01_roadditch1' }, - ['-1836170284'] = { Name = 'cs2_01_shop_dec1' }, - ['-2084067769'] = { Name = 'cs2_01_shop_dec2' }, - ['960729400'] = { Name = 'cs2_01_shop_dec3' }, - ['-1103616004'] = { Name = 'cs2_01_shps1_dec' }, - ['1634668100'] = { Name = 'cs2_01_sm_shed' }, - ['1942822166'] = { Name = 'cs2_01_sm' }, - ['-296252013'] = { Name = 'cs2_01_streampipe' }, - ['-1038933703'] = { Name = 'cs2_01_sup_decal' }, - ['544946009'] = { Name = 'cs2_01_super_sidedoors' }, - ['1315428494'] = { Name = 'cs2_01_weed01' }, - ['1616084065'] = { Name = 'cs2_01_weed02' }, - ['1374740380'] = { Name = 'cs2_01_weed03' }, - ['-69651602'] = { Name = 'cs2_01_weed04' }, - ['-308570381'] = { Name = 'cs2_01_weed05' }, - ['388885015'] = { Name = 'cs2_01_weed06' }, - ['-95768279'] = { Name = 'cs2_01_weed11' }, - ['-685020437'] = { Name = 'cs2_01_weed12' }, - ['-1281383468'] = { Name = 'cs2_01_weed14' }, - ['573090990'] = { Name = 'cs2_02_airp_sign' }, - ['945587311'] = { Name = 'cs2_02_airstrip_dec_003' }, - ['1654380781'] = { Name = 'cs2_02_airstrip_dec_004' }, - ['93405186'] = { Name = 'cs2_02_bales_002' }, - ['-331377291'] = { Name = 'cs2_02_bdec_01c' }, - ['-1557542598'] = { Name = 'cs2_02_bdec_06' }, - ['1155369871'] = { Name = 'cs2_02_bdec_18' }, - ['1131508731'] = { Name = 'cs2_02_bdec_25' }, - ['-954139420'] = { Name = 'cs2_02_bdec_25a' }, - ['-1337899144'] = { Name = 'cs2_02_bdec_30i' }, - ['184614134'] = { Name = 'cs2_02_bdec_30j' }, - ['-1491977989'] = { Name = 'cs2_02_bdec_46' }, - ['-27236462'] = { Name = 'cs2_02_bdec_48' }, - ['-2143720630'] = { Name = 'cs2_02_bdec_49' }, - ['1695436258'] = { Name = 'cs2_02_bdec_49b' }, - ['1287313383'] = { Name = 'cs2_02_bdec_56b' }, - ['360355534'] = { Name = 'cs2_02_bdec_57' }, - ['-1365301146'] = { Name = 'cs2_02_bent_barrel' }, - ['1124690726'] = { Name = 'cs2_02_brick_pform002' }, - ['-1567136776'] = { Name = 'cs2_02_brick_pform01' }, - ['1311227420'] = { Name = 'cs2_02_bridge13' }, - ['1393758288'] = { Name = 'cs2_02_bridge13b' }, - ['1873628754'] = { Name = 'cs2_02_cloth_004_lod' }, - ['-1863575437'] = { Name = 'cs2_02_cloth_007_lod' }, - ['-767389015'] = { Name = 'cs2_02_cs1_11b_house01_dec006' }, - ['1075232008'] = { Name = 'cs2_02_ditchfence' }, - ['-1662104041'] = { Name = 'cs2_02_drttrk1' }, - ['1734664965'] = { Name = 'cs2_02_drttrk2' }, - ['909246624'] = { Name = 'cs2_02_drttrk3' }, - ['-1567735'] = { Name = 'cs2_02_drttrk4' }, - ['1795837382'] = { Name = 'cs2_02_drttrk4a' }, - ['316029413'] = { Name = 'cs2_02_drttrk5' }, - ['476957972'] = { Name = 'cs2_02_drttrk6' }, - ['-1929439419'] = { Name = 'cs2_02_dtrk_brdg015' }, - ['1055547895'] = { Name = 'cs2_02_emissive_lod' }, - ['-342830861'] = { Name = 'cs2_02_emissive' }, - ['-176223160'] = { Name = 'cs2_02_emissive2_lod' }, - ['-1565295821'] = { Name = 'cs2_02_emissive2' }, - ['-1542771718'] = { Name = 'cs2_02_emissive3_lod' }, - ['-1810244096'] = { Name = 'cs2_02_emissive3' }, - ['1167254092'] = { Name = 'cs2_02_fbox01' }, - ['-665397564'] = { Name = 'cs2_02_fdec_02d' }, - ['-1010039947'] = { Name = 'cs2_02_fence_001' }, - ['-2024805850'] = { Name = 'cs2_02_fence035' }, - ['-573504644'] = { Name = 'cs2_02_field_dec01' }, - ['-267999257'] = { Name = 'cs2_02_field_dec02' }, - ['1472954571'] = { Name = 'cs2_02_field_rocks' }, - ['-1595320034'] = { Name = 'cs2_02_fnc_mesh001' }, - ['1317123148'] = { Name = 'cs2_02_fnc_mesh002' }, - ['-336236747'] = { Name = 'cs2_02_fnc_mesh004' }, - ['-634467416'] = { Name = 'cs2_02_fnc_mesh005' }, - ['-2011486334'] = { Name = 'cs2_02_fnc_mesh006' }, - ['1976664815'] = { Name = 'cs2_02_fnc_mesh007' }, - ['883639638'] = { Name = 'cs2_02_freshplough_01' }, - ['-257511577'] = { Name = 'cs2_02_frmland01' }, - ['-11252542'] = { Name = 'cs2_02_frmland02' }, - ['1539720336'] = { Name = 'cs2_02_frmland02b' }, - ['2105945161'] = { Name = 'cs2_02_frmland02b001' }, - ['-1107359488'] = { Name = 'cs2_02_frmland02c' }, - ['2070262232'] = { Name = 'cs2_02_frmland02x001' }, - ['1696438359'] = { Name = 'cs2_02_frmland03' }, - ['1945089531'] = { Name = 'cs2_02_frmland04' }, - ['698130770'] = { Name = 'cs2_02_frmland05' }, - ['1865475573'] = { Name = 'cs2_02_frmland05b' }, - ['-1008816290'] = { Name = 'cs2_02_g_silo_xtra' }, - ['1244162708'] = { Name = 'cs2_02_glue_01' }, - ['1080317708'] = { Name = 'cs2_02_glue_02' }, - ['-351490982'] = { Name = 'cs2_02_glue_03' }, - ['-409779356'] = { Name = 'cs2_02_grainsilos_a001' }, - ['1189428729'] = { Name = 'cs2_02_grainsilos001' }, - ['-112577501'] = { Name = 'cs2_02_hangar_detail' }, - ['2091558338'] = { Name = 'cs2_02_hanger_desk' }, - ['1782063243'] = { Name = 'cs2_02_hanger_filing_cab' }, - ['-269703656'] = { Name = 'cs2_02_haybale_stack_01' }, - ['-49856435'] = { Name = 'cs2_02_haybale_stack_02' }, - ['-1396662335'] = { Name = 'cs2_02_haybale_stack_03' }, - ['-1154073428'] = { Name = 'cs2_02_haybale_stack_04' }, - ['-923936741'] = { Name = 'cs2_02_haybale_stack_05' }, - ['-702811529'] = { Name = 'cs2_02_haybale_stack_06' }, - ['1702532315'] = { Name = 'cs2_02_house_gutter01' }, - ['-364229291'] = { Name = 'cs2_02_house001' }, - ['1247417556'] = { Name = 'cs2_02_house01_dec003' }, - ['1203996278'] = { Name = 'cs2_02_irr_003' }, - ['1266869633'] = { Name = 'cs2_02_irr_003w' }, - ['302563417'] = { Name = 'cs2_02_irr_004_grill01' }, - ['252679439'] = { Name = 'cs2_02_irr_004' }, - ['469236192'] = { Name = 'cs2_02_irr_004w' }, - ['2103308714'] = { Name = 'cs2_02_irr_005' }, - ['1136101534'] = { Name = 'cs2_02_irr_01_grill01' }, - ['-1551033515'] = { Name = 'cs2_02_irr_01' }, - ['261461307'] = { Name = 'cs2_02_irr_01w' }, - ['-1180765842'] = { Name = 'cs2_02_irr_03_grill01' }, - ['865911952'] = { Name = 'cs2_02_irr_05w' }, - ['1136225453'] = { Name = 'cs2_02_irr_2weed' }, - ['1674370945'] = { Name = 'cs2_02_irr_3weed' }, - ['2012015880'] = { Name = 'cs2_02_irr_5weed' }, - ['1936491040'] = { Name = 'cs2_02_irr_5weed001' }, - ['-2055068085'] = { Name = 'cs2_02_irr_5weed002' }, - ['1942586070'] = { Name = 'cs2_02_irr_5weed003' }, - ['1228926761'] = { Name = 'cs2_02_irrtemp_01' }, - ['-1901331956'] = { Name = 'cs2_02_irrtemp_04' }, - ['1946004720'] = { Name = 'cs2_02_landnew1' }, - ['1884075748'] = { Name = 'cs2_02_ndec_03' }, - ['1948630390'] = { Name = 'cs2_02_ndec_12' }, - ['923071049'] = { Name = 'cs2_02_ndec_23a' }, - ['1828702447'] = { Name = 'cs2_02_pipe_19' }, - ['917416974'] = { Name = 'cs2_02_pipe_broken' }, - ['-1614951693'] = { Name = 'cs2_02_pipe_broken002' }, - ['2129132562'] = { Name = 'cs2_02_pipe20' }, - ['348427698'] = { Name = 'cs2_02_pipedept_rocks' }, - ['-1928143863'] = { Name = 'cs2_02_pipedept_shed' }, - ['-571778269'] = { Name = 'cs2_02_pipeglue03' }, - ['165387976'] = { Name = 'cs2_02_plastic_01' }, - ['-183347022'] = { Name = 'cs2_02_plasticdec_01' }, - ['533484485'] = { Name = 'cs2_02_polytunnels_09' }, - ['2142377131'] = { Name = 'cs2_02_polytunnels_14' }, - ['469757180'] = { Name = 'cs2_02_polytunnels_22' }, - ['1090471767'] = { Name = 'cs2_02_pt_hoops' }, - ['-1332300422'] = { Name = 'cs2_02_pt_plastic01' }, - ['352560891'] = { Name = 'cs2_02_pt_plastic01a' }, - ['1847417137'] = { Name = 'cs2_02_pt_plastic01f' }, - ['-1691645276'] = { Name = 'cs2_02_pt_plastic02' }, - ['-855937469'] = { Name = 'cs2_02_pt_plastic03' }, - ['1689493029'] = { Name = 'cs2_02_pt_plastic04' }, - ['-1822131322'] = { Name = 'cs2_02_pt_plastic05' }, - ['8886041'] = { Name = 'cs2_02_pt_support06' }, - ['1291125122'] = { Name = 'cs2_02_pt_support06a' }, - ['831133817'] = { Name = 'cs2_02_roadditch004' }, - ['934356167'] = { Name = 'cs2_02_roadditch005' }, - ['796136813'] = { Name = 'cs2_02_roadditch015' }, - ['-1354542223'] = { Name = 'cs2_02_rubbish_pile' }, - ['2073940961'] = { Name = 'cs2_02_ruined_barn' }, - ['-725256682'] = { Name = 'cs2_02_shed_ovrly003' }, - ['845090772'] = { Name = 'cs2_02_shed002' }, - ['-2134109532'] = { Name = 'cs2_02_shed1_bits001' }, - ['-2098601691'] = { Name = 'cs2_02_shed1_decals001' }, - ['518784056'] = { Name = 'cs2_02_signs2' }, - ['1608943267'] = { Name = 'cs2_02_small_hanger' }, - ['2078933270'] = { Name = 'cs2_02_sml_farm_barn' }, - ['-1866082745'] = { Name = 'cs2_02_sml_farm_shed' }, - ['-234970500'] = { Name = 'cs2_02_sml_frm_drttrk_a' }, - ['-400519488'] = { Name = 'cs2_02_sml_frm_drttrk_b' }, - ['2092322224'] = { Name = 'cs2_02_sml_shed' }, - ['-1276538214'] = { Name = 'cs2_02_sml_sheddec' }, - ['-1349731891'] = { Name = 'cs2_02_smll_shelter' }, - ['-1504791082'] = { Name = 'cs2_02_temp_store' }, - ['969405412'] = { Name = 'cs2_02_temp_trailer' }, - ['-528461076'] = { Name = 'cs2_02_track_overlays008' }, - ['-1844291007'] = { Name = 'cs2_02_track_overlays010' }, - ['-605032965'] = { Name = 'cs2_02_track_overlays014' }, - ['-1557882148'] = { Name = 'cs2_02_tunnel_cloth_25_lod' }, - ['1127079112'] = { Name = 'cs2_02_waterpdec_02' }, - ['1111526197'] = { Name = 'cs2_02_waterpipe_009' }, - ['749953407'] = { Name = 'cs2_02_waterpipe_010' }, - ['443890947'] = { Name = 'cs2_02_waterpipe_011' }, - ['-488400539'] = { Name = 'cs2_02_waterpipe_02' }, - ['1265396293'] = { Name = 'cs2_02_waterpipe_03' }, - ['-1367535775'] = { Name = 'cs2_02_waterpipe_03d' }, - ['1899214295'] = { Name = 'cs2_02_waterpipe_04' }, - ['1201356951'] = { Name = 'cs2_02_waterpipe_04d' }, - ['669557566'] = { Name = 'cs2_02_waterpipe_05' }, - ['498241234'] = { Name = 'cs2_02_waterpipe_06' }, - ['308738107'] = { Name = 'cs2_02_waterpipe_07' }, - ['-124009307'] = { Name = 'cs2_02_waterpipe_08' }, - ['-666457501'] = { Name = 'cs2_02_weed_01' }, - ['-421673071'] = { Name = 'cs2_02_weed_02' }, - ['-190618852'] = { Name = 'cs2_02_weed_03' }, - ['1011761551'] = { Name = 'cs2_02_wetfield_01' }, - ['878221878'] = { Name = 'cs2_02_wetfield_01d' }, - ['-2114089259'] = { Name = 'cs2_02_wood_posts' }, - ['1534418931'] = { Name = 'cs2_02_wpipes_01' }, - ['1554211407'] = { Name = 'cs2_02_wpipes_02' }, - ['920622792'] = { Name = 'cs2_02_wpipes_03' }, - ['1200437283'] = { Name = 'cs2_02_wpipes_04' }, - ['610070979'] = { Name = 'cs2_02_wpipes_05' }, - ['-1241344748'] = { Name = 'cs2_02_wpipes_06' }, - ['943261415'] = { Name = 'cs2_03__armco_end_12' }, - ['1238862394'] = { Name = 'cs2_03__brgrail_01' }, - ['872229096'] = { Name = 'cs2_03_armco_right_glue' }, - ['1334430499'] = { Name = 'cs2_03_barn_002_a' }, - ['1085587731'] = { Name = 'cs2_03_barn_002' }, - ['1623503812'] = { Name = 'cs2_03_barn001_ovr' }, - ['-347727313'] = { Name = 'cs2_03_barn001' }, - ['-1004841278'] = { Name = 'cs2_03_barn03_a' }, - ['1410544716'] = { Name = 'cs2_03_barn03' }, - ['1011939887'] = { Name = 'cs2_03_bigbrdge1' }, - ['-107839253'] = { Name = 'cs2_03_brdg1' }, - ['-2107260221'] = { Name = 'cs2_03_brick_pform008' }, - ['1935211718'] = { Name = 'cs2_03_brick_pform01' }, - ['648757316'] = { Name = 'cs2_03_bridge_03_shad' }, - ['-612535782'] = { Name = 'cs2_03_bridge_03' }, - ['-1239369911'] = { Name = 'cs2_03_bridge_shad03_slod1' }, - ['933660346'] = { Name = 'cs2_03_bridgerail_01' }, - ['-1521556979'] = { Name = 'cs2_03_bridgerail_02' }, - ['-1675571279'] = { Name = 'cs2_03_bridgerail_03' }, - ['-122042845'] = { Name = 'cs2_03_brokengate01' }, - ['-1727724782'] = { Name = 'cs2_03_burntovly' }, - ['-304014782'] = { Name = 'cs2_03_catshed_filler01' }, - ['578100013'] = { Name = 'cs2_03_cattleshade03_a' }, - ['-1657784408'] = { Name = 'cs2_03_cattleshade03' }, - ['102288761'] = { Name = 'cs2_03_cattleshed01' }, - ['-94404824'] = { Name = 'cs2_03_channel_water' }, - ['1550203565'] = { Name = 'cs2_03_concplnth' }, - ['-718333615'] = { Name = 'cs2_03_crop_sml_008' }, - ['-411255316'] = { Name = 'cs2_03_crop_sml_009' }, - ['1023535573'] = { Name = 'cs2_03_crop_sml_010' }, - ['1320324406'] = { Name = 'cs2_03_crop_sml_011' }, - ['1634972344'] = { Name = 'cs2_03_crop_sml_012' }, - ['-512347453'] = { Name = 'cs2_03_crop_sml_013' }, - ['-214444474'] = { Name = 'cs2_03_crop_sml_014' }, - ['97975172'] = { Name = 'cs2_03_crop_sml_015' }, - ['395812609'] = { Name = 'cs2_03_crop_sml_016' }, - ['-1062604505'] = { Name = 'cs2_03_crop_sml_017' }, - ['1195099250'] = { Name = 'cs2_03_culvert02' }, - ['-332107999'] = { Name = 'cs2_03_culvert1' }, - ['-1251441280'] = { Name = 'cs2_03_dcl_rd_join_01' }, - ['-955875505'] = { Name = 'cs2_03_decal_001' }, - ['158121720'] = { Name = 'cs2_03_decal1' }, - ['-1403989447'] = { Name = 'cs2_03_desfrmhsend_02' }, - ['-477708124'] = { Name = 'cs2_03_desfrmhsend_03' }, - ['-1865999578'] = { Name = 'cs2_03_desfrmhsend_04' }, - ['-936113665'] = { Name = 'cs2_03_desfrmhsend_05' }, - ['-648696766'] = { Name = 'cs2_03_desfrmhsend_06' }, - ['745689722'] = { Name = 'cs2_03_desfrmhsend_07' }, - ['1051784951'] = { Name = 'cs2_03_desfrmhsend_08' }, - ['1024816108'] = { Name = 'cs2_03_desfrmhsend_09' }, - ['-1801923630'] = { Name = 'cs2_03_desfrmhsend_1' }, - ['-1047560710'] = { Name = 'cs2_03_desfrmhsend_11' }, - ['-2084634022'] = { Name = 'cs2_03_desfrmhsend_12' }, - ['165558336'] = { Name = 'cs2_03_desfrmhsstrt' }, - ['1059772523'] = { Name = 'cs2_03_drain_t03w' }, - ['1299725938'] = { Name = 'cs2_03_drain3_grid01' }, - ['-447558503'] = { Name = 'cs2_03_drainage_jun1w' }, - ['-401342494'] = { Name = 'cs2_03_drainage_junct_shdw' }, - ['390576244'] = { Name = 'cs2_03_drainage_junct_shdw001' }, - ['636933586'] = { Name = 'cs2_03_drainage_junct_shdw002' }, - ['1731180013'] = { Name = 'cs2_03_drainage_junct001' }, - ['-284951851'] = { Name = 'cs2_03_drainage_tmplt003' }, - ['1455955598'] = { Name = 'cs2_03_drainagewide_03' }, - ['1480289393'] = { Name = 'cs2_03_draingrll001' }, - ['-762322664'] = { Name = 'cs2_03_draingrll002' }, - ['-2143798166'] = { Name = 'cs2_03_draingrll003' }, - ['1540053324'] = { Name = 'cs2_03_drttrk03' }, - ['817103646'] = { Name = 'cs2_03_drttrk04' }, - ['642313800'] = { Name = 'cs2_03_drttrk05' }, - ['-1494323311'] = { Name = 'cs2_03_drttrk06' }, - ['-1799173318'] = { Name = 'cs2_03_drttrk07' }, - ['-1986284308'] = { Name = 'cs2_03_drttrk08' }, - ['-1821074801'] = { Name = 'cs2_03_drttrk1' }, - ['1776043867'] = { Name = 'cs2_03_drttrk2' }, - ['-874399838'] = { Name = 'cs2_03_emissive_lod' }, - ['1580969984'] = { Name = 'cs2_03_emissive' }, - ['-1921634635'] = { Name = 'cs2_03_emissive002_lod' }, - ['-963236916'] = { Name = 'cs2_03_emissive02' }, - ['1484829460'] = { Name = 'cs2_03_farm_burnt_slod' }, - ['525240746'] = { Name = 'cs2_03_farm_grp3_winfire00' }, - ['1210054181'] = { Name = 'cs2_03_farm_grp3_winsmoke00' }, - ['1136394147'] = { Name = 'cs2_03_farm_slod' }, - ['-1070155493'] = { Name = 'cs2_03_farmsign_01' }, - ['-769630994'] = { Name = 'cs2_03_farmsign_02' }, - ['2063771268'] = { Name = 'cs2_03_field_dec_06' }, - ['-499784214'] = { Name = 'cs2_03_field_dec01' }, - ['-1325759627'] = { Name = 'cs2_03_field_dec01a' }, - ['-103312082'] = { Name = 'cs2_03_field_dec01b' }, - ['-1520997342'] = { Name = 'cs2_03_field_dec02' }, - ['-1886764920'] = { Name = 'cs2_03_field_dec03' }, - ['-617064477'] = { Name = 'cs2_03_field_dec04' }, - ['-1268250045'] = { Name = 'cs2_03_field_dec05' }, - ['-895538974'] = { Name = 'cs2_03_field_dec05a' }, - ['1584750183'] = { Name = 'cs2_03_field_dec07' }, - ['-2117163759'] = { Name = 'cs2_03_field_dec08' }, - ['-1031676737'] = { Name = 'cs2_03_fl3_grill001' }, - ['415989429'] = { Name = 'cs2_03_fmhse_vfx_parent' }, - ['-1031867995'] = { Name = 'cs2_03_fmhse_vfx_parent001' }, - ['-1807477456'] = { Name = 'cs2_03_fmhse_vfx_parent002' }, - ['-399262450'] = { Name = 'cs2_03_fmhse_vfx_parent003' }, - ['-1306439446'] = { Name = 'cs2_03_fmhse_vfx_parent004' }, - ['-79011013'] = { Name = 'cs2_03_fmhse_vfx_parent005' }, - ['-707061667'] = { Name = 'cs2_03_fmhse_vfx_parent006' }, - ['-195930801'] = { Name = 'cs2_03_fmhse_vfx_parent007' }, - ['-819918099'] = { Name = 'cs2_03_fmhse_vfx_parent008' }, - ['404561120'] = { Name = 'cs2_03_fmhse_vfx_parent009' }, - ['989324901'] = { Name = 'cs2_03_fmhse_vfx_parent010' }, - ['-1278093285'] = { Name = 'cs2_03_fmhse_vfx_parent011' }, - ['-1485815976'] = { Name = 'cs2_03_fmhse_vfx_parent012' }, - ['-1867116060'] = { Name = 'cs2_03_fmhse_vfx_parent013' }, - ['-2115013549'] = { Name = 'cs2_03_fmhse_vfx_parent014' }, - ['-995755589'] = { Name = 'cs2_03_fmhse_vfx_parent015' }, - ['-2134434564'] = { Name = 'cs2_03_frm005' }, - ['-286674634'] = { Name = 'cs2_03_frm01_int_lod' }, - ['-330125695'] = { Name = 'cs2_03_frm01_ovly' }, - ['-443038002'] = { Name = 'cs2_03_frm01_windows_lod' }, - ['403326683'] = { Name = 'cs2_03_frm01_windows' }, - ['-1729474944'] = { Name = 'cs2_03_frm01' }, - ['1858297200'] = { Name = 'cs2_03_frm02_ovly' }, - ['1970767771'] = { Name = 'cs2_03_frm03' }, - ['-1493505383'] = { Name = 'cs2_03_frm04' }, - ['1589309938'] = { Name = 'cs2_03_frmbnt_det01' }, - ['879009094'] = { Name = 'cs2_03_frmbnt_det02' }, - ['-878114240'] = { Name = 'cs2_03_frmburnt01' }, - ['-101947706'] = { Name = 'cs2_03_frmburnt02' }, - ['-1609290903'] = { Name = 'cs2_03_frmland1' }, - ['1310613275'] = { Name = 'cs2_03_frmland12' }, - ['2118903769'] = { Name = 'cs2_03_frmland2' }, - ['1803567682'] = { Name = 'cs2_03_frmland3' }, - ['1760640292'] = { Name = 'cs2_03_frmland4' }, - ['1462540699'] = { Name = 'cs2_03_frmland5' }, - ['-1035780990'] = { Name = 'cs2_03_frmland6_dcl' }, - ['1968231931'] = { Name = 'cs2_03_frmland6' }, - ['585150752'] = { Name = 'cs2_03_frmland7' }, - ['1605905098'] = { Name = 'cs2_03_frmland8' }, - ['1266135730'] = { Name = 'cs2_03_frmland8b' }, - ['-2044168278'] = { Name = 'cs2_03_frmland9' }, - ['-340778799'] = { Name = 'cs2_03_frmtrk05' }, - ['-1457170826'] = { Name = 'cs2_03_glue_01' }, - ['1926621656'] = { Name = 'cs2_03_glue_02' }, - ['1150881119'] = { Name = 'cs2_03_glue_03' }, - ['-1551283362'] = { Name = 'cs2_03_glue_04' }, - ['1410346093'] = { Name = 'cs2_03_glue_05' }, - ['-258841233'] = { Name = 'cs2_03_glue_08' }, - ['-912296881'] = { Name = 'cs2_03_grainsilos_dec' }, - ['-146701665'] = { Name = 'cs2_03_grainsilos' }, - ['-383627714'] = { Name = 'cs2_03_haystack001' }, - ['-1275927584'] = { Name = 'cs2_03_haystack002' }, - ['-592135087'] = { Name = 'cs2_03_irr_005w' }, - ['-354908598'] = { Name = 'cs2_03_irr_01weed' }, - ['1911933755'] = { Name = 'cs2_03_irr_1weed' }, - ['-1510741500'] = { Name = 'cs2_03_irr_2weed' }, - ['-89604507'] = { Name = 'cs2_03_irr_3weed' }, - ['-2013269392'] = { Name = 'cs2_03_irr_4weed' }, - ['-204335713'] = { Name = 'cs2_03_irr_5weed' }, - ['-1894564192'] = { Name = 'cs2_03_land01' }, - ['-1655317723'] = { Name = 'cs2_03_land02' }, - ['1782707454'] = { Name = 'cs2_03_land03' }, - ['1318444857'] = { Name = 'cs2_03_props_combo_dslod' }, - ['-403802279'] = { Name = 'cs2_03_ranch008_temp' }, - ['-490592519'] = { Name = 'cs2_03_rd_dec1' }, - ['445058012'] = { Name = 'cs2_03_s_tank_frm1' }, - ['-3939911'] = { Name = 'cs2_03_shed002' }, - ['-804978116'] = { Name = 'cs2_03_shed003' }, - ['1296825528'] = { Name = 'cs2_03_shed004' }, - ['-1920841590'] = { Name = 'cs2_03_shel_roof_005' }, - ['1875344579'] = { Name = 'cs2_03_shelter_002' }, - ['457123875'] = { Name = 'cs2_03_shittank_a' }, - ['-856911448'] = { Name = 'cs2_03_shittank_ladder_02' }, - ['97107144'] = { Name = 'cs2_03_shittank_ladder01' }, - ['1832630528'] = { Name = 'cs2_03_shittank' }, - ['-732144519'] = { Name = 'cs2_03_signs01' }, - ['-436142142'] = { Name = 'cs2_03_signs02' }, - ['415184416'] = { Name = 'cs2_03_silo_002_ladder' }, - ['892363859'] = { Name = 'cs2_03_silo_002_ovr' }, - ['-1301837731'] = { Name = 'cs2_03_silo_002' }, - ['1039425572'] = { Name = 'cs2_03_silo_ladder_10' }, - ['-1361206594'] = { Name = 'cs2_03_silo_ladder10' }, - ['-1637416495'] = { Name = 'cs2_03_silo_ladder11' }, - ['1779655388'] = { Name = 'cs2_03_silos_dec' }, - ['-2117521020'] = { Name = 'cs2_03_silos_pipe01' }, - ['-1773043014'] = { Name = 'cs2_03_silos_pipe01b' }, - ['-927515855'] = { Name = 'cs2_03_silos_sign001' }, - ['1829494195'] = { Name = 'cs2_03_silos' }, - ['277389680'] = { Name = 'cs2_03_sluice_ladr' }, - ['-535128328'] = { Name = 'cs2_03_sluicetest' }, - ['-267000568'] = { Name = 'cs2_03_stable2_o' }, - ['-2119268230'] = { Name = 'cs2_03_stables' }, - ['1220401235'] = { Name = 'cs2_03_stubble031' }, - ['-571833698'] = { Name = 'cs2_03_stubble033' }, - ['-273930719'] = { Name = 'cs2_03_stubble034' }, - ['39734149'] = { Name = 'cs2_03_stubble035' }, - ['279078925'] = { Name = 'cs2_03_stubble036' }, - ['989412526'] = { Name = 'cs2_03_stubble037' }, - ['-1167474963'] = { Name = 'cs2_03_stubble040' }, - ['-457763961'] = { Name = 'cs2_03_stubble041' }, - ['352646178'] = { Name = 'cs2_03_stubble042' }, - ['-982349022'] = { Name = 'cs2_03_trough_small_01' }, - ['-1291033002'] = { Name = 'cs2_03_trough_small_02' }, - ['-231889854'] = { Name = 'cs2_03_tunl_fizz01' }, - ['-1089454584'] = { Name = 'cs2_03_tunl_fizz02' }, - ['270244177'] = { Name = 'cs2_03_tunnel11' }, - ['-549539738'] = { Name = 'cs2_03_tunnel11b' }, - ['-1982692816'] = { Name = 'cs2_03_wall001' }, - ['-2052752938'] = { Name = 'cs2_03_wall002' }, - ['1399690599'] = { Name = 'cs2_03_wall005' }, - ['765872597'] = { Name = 'cs2_03_wall006' }, - ['529444262'] = { Name = 'cs2_03_wall007' }, - ['123029347'] = { Name = 'cs2_03_waterpipe_008' }, - ['1502604531'] = { Name = 'cs2_03_waterpipe_010' }, - ['1709475228'] = { Name = 'cs2_03_waterpipe_012' }, - ['745777695'] = { Name = 'cs2_03_weed_01' }, - ['1060196250'] = { Name = 'cs2_03_weed_02' }, - ['-803704474'] = { Name = 'cs2_03_weed_03' }, - ['-488696077'] = { Name = 'cs2_03_weed_04' }, - ['-206948215'] = { Name = 'cs2_03_weed_05' }, - ['-1405706229'] = { Name = 'cs2_03_windmill_dummy_01' }, - ['1998447572'] = { Name = 'cs2_03_windmill_lod' }, - ['194214649'] = { Name = 'cs2_03_wire_support' }, - ['331842022'] = { Name = 'cs2_03_wpipes_002' }, - ['-1162171862'] = { Name = 'cs2_03_wpipes_01' }, - ['1696181688'] = { Name = 'cs2_04_barn01' }, - ['-265960498'] = { Name = 'cs2_04_barn02' }, - ['545039483'] = { Name = 'cs2_04_barn03' }, - ['-757659343'] = { Name = 'cs2_04_barn04' }, - ['872744202'] = { Name = 'cs2_04_barndet01' }, - ['-1049616418'] = { Name = 'cs2_04_barndet02' }, - ['-820856029'] = { Name = 'cs2_04_barndet03' }, - ['-1662298411'] = { Name = 'cs2_04_barndet04' }, - ['-1432030648'] = { Name = 'cs2_04_barndet05' }, - ['829751270'] = { Name = 'cs2_04_barndet06' }, - ['1776025784'] = { Name = 'cs2_04_barns_o' }, - ['-1851357300'] = { Name = 'cs2_04_bhack_d' }, - ['-2060261324'] = { Name = 'cs2_04_bhack' }, - ['-2103726506'] = { Name = 'cs2_04_branches-' }, - ['-1201477264'] = { Name = 'cs2_04_carwash_building_dec' }, - ['998228192'] = { Name = 'cs2_04_carwash_building' }, - ['622645954'] = { Name = 'cs2_04_carwash_bunting_1' }, - ['1376529572'] = { Name = 'cs2_04_carwash_bunting_2' }, - ['1085377007'] = { Name = 'cs2_04_carwash_bunting_3' }, - ['1843913819'] = { Name = 'cs2_04_carwash_bunting_4' }, - ['1312000182'] = { Name = 'cs2_04_carwash_forecourt_dec' }, - ['-1263999656'] = { Name = 'cs2_04_carwash_forecourta_dec' }, - ['6033873'] = { Name = 'cs2_04_ch2_02b_juicestand_ovl' }, - ['-833131649'] = { Name = 'cs2_04_deadtree01' }, - ['1466312516'] = { Name = 'cs2_04_doghut_a_d' }, - ['-1372630536'] = { Name = 'cs2_04_doghut_a' }, - ['-360243802'] = { Name = 'cs2_04_doghut_b_d' }, - ['1668463740'] = { Name = 'cs2_04_doghut_b' }, - ['-580858370'] = { Name = 'cs2_04_drain_suprt005' }, - ['837809951'] = { Name = 'cs2_04_drain_suprt007' }, - ['1613278014'] = { Name = 'cs2_04_drain_suprt01' }, - ['136290271'] = { Name = 'cs2_04_drain_suprt011' }, - ['-843994368'] = { Name = 'cs2_04_drain_suprt012' }, - ['-478554480'] = { Name = 'cs2_04_drain_suprt013' }, - ['1793123684'] = { Name = 'cs2_04_drain_suprt015' }, - ['824046047'] = { Name = 'cs2_04_drain_suprt016' }, - ['1193352677'] = { Name = 'cs2_04_drain_suprt017' }, - ['-1542465595'] = { Name = 'cs2_04_drain_suprt018' }, - ['-550513573'] = { Name = 'cs2_04_emissive_barn' }, - ['-453438187'] = { Name = 'cs2_04_emissive_barnlod' }, - ['-555078165'] = { Name = 'cs2_04_emissive_gas' }, - ['1645698227'] = { Name = 'cs2_04_emissive_gaslod' }, - ['1996323258'] = { Name = 'cs2_04_farmtrack00' }, - ['1294727354'] = { Name = 'cs2_04_farmtrack00a' }, - ['-2094211'] = { Name = 'cs2_04_farmtrack01' }, - ['364918589'] = { Name = 'cs2_04_farmtrack02' }, - ['343764826'] = { Name = 'cs2_04_farmtrack03a' }, - ['1085378887'] = { Name = 'cs2_04_field_d_01' }, - ['762866385'] = { Name = 'cs2_04_field_d_02' }, - ['570348510'] = { Name = 'cs2_04_field_d_03' }, - ['-748535053'] = { Name = 'cs2_04_frmland2' }, - ['-389270487'] = { Name = 'cs2_04_frmland2a' }, - ['-970446729'] = { Name = 'cs2_04_frmland3' }, - ['-825566219'] = { Name = 'cs2_04_glue_01' }, - ['-1543272857'] = { Name = 'cs2_04_glue_02' }, - ['829062472'] = { Name = 'cs2_04_grapesign' }, - ['1450234590'] = { Name = 'cs2_04_haybale01' }, - ['74788536'] = { Name = 'cs2_04_haybale02' }, - ['635040129'] = { Name = 'cs2_04_haybale04' }, - ['921136261'] = { Name = 'cs2_04_juicestand' }, - ['-1181569975'] = { Name = 'cs2_04_land_01_d' }, - ['-1553391122'] = { Name = 'cs2_04_land_01' }, - ['-566552687'] = { Name = 'cs2_04_land_02' }, - ['267680515'] = { Name = 'cs2_04_land_03' }, - ['149317593'] = { Name = 'cs2_04_land_03a' }, - ['849238054'] = { Name = 'cs2_04_land_04_dcl003' }, - ['1166671357'] = { Name = 'cs2_04_land_04_dcl004' }, - ['-1792375435'] = { Name = 'cs2_04_land_04' }, - ['1654099246'] = { Name = 'cs2_04_land_04a' }, - ['1014958747'] = { Name = 'cs2_04_log_stack' }, - ['-1288552061'] = { Name = 'cs2_04_log_stack001' }, - ['-795902915'] = { Name = 'cs2_04_log_stack002' }, - ['832618078'] = { Name = 'cs2_04_log_stack003' }, - ['1268952568'] = { Name = 'cs2_04_logging_d01' }, - ['-1941208028'] = { Name = 'cs2_04_polytunl_poles01' }, - ['-1402435711'] = { Name = 'cs2_04_polytunnels_01' }, - ['-1904465871'] = { Name = 'cs2_04_refproxy_02' }, - ['-593509253'] = { Name = 'cs2_04_refproxy_03' }, - ['-109248971'] = { Name = 'cs2_04_refproxy_04' }, - ['-922542782'] = { Name = 'cs2_04_refproxy_05' }, - ['1173886762'] = { Name = 'cs2_04_refproxy_06' }, - ['1352454362'] = { Name = 'cs2_04_roadside_decal_a' }, - ['2064196799'] = { Name = 'cs2_04_shed002' }, - ['1763023715'] = { Name = 'cs2_04_sign03' }, - ['21177128'] = { Name = 'cs2_04_signneon_lod' }, - ['-1539913351'] = { Name = 'cs2_04_signneon' }, - ['-1028576883'] = { Name = 'cs2_04_signs02' }, - ['2144243307'] = { Name = 'cs2_04_stubble01' }, - ['-1390593992'] = { Name = 'cs2_04_stubble015' }, - ['-1613980265'] = { Name = 'cs2_04_stubble016' }, - ['-1316765435'] = { Name = 'cs2_04_stubble017' }, - ['-785383315'] = { Name = 'cs2_04_stubble018' }, - ['-10396465'] = { Name = 'cs2_04_stubble019' }, - ['-49149708'] = { Name = 'cs2_04_stubble02' }, - ['1180525162'] = { Name = 'cs2_04_stubble020' }, - ['411600577'] = { Name = 'cs2_04_stubble021' }, - ['-1785921336'] = { Name = 'cs2_04_stubble022' }, - ['-1488673737'] = { Name = 'cs2_04_stubble023' }, - ['317488005'] = { Name = 'cs2_04_stubble024' }, - ['-362159200'] = { Name = 'cs2_04_stubble03' }, - ['1193993509'] = { Name = 'cs2_04_stubble031' }, - ['914342863'] = { Name = 'cs2_04_stubble032' }, - ['868007497'] = { Name = 'cs2_04_stubble033' }, - ['-1288553166'] = { Name = 'cs2_04_stubble034' }, - ['-1585931841'] = { Name = 'cs2_04_stubble035' }, - ['248018013'] = { Name = 'cs2_04_stubble036' }, - ['-50212656'] = { Name = 'cs2_04_stubble037' }, - ['1758505060'] = { Name = 'cs2_04_stubble038' }, - ['1519586281'] = { Name = 'cs2_04_stubble039' }, - ['-644267521'] = { Name = 'cs2_04_stubble04' }, - ['-433871836'] = { Name = 'cs2_04_stubble040' }, - ['-691651495'] = { Name = 'cs2_04_stubble05' }, - ['912849877'] = { Name = 'cs2_04_stubble06' }, - ['1430276131'] = { Name = 'cs2_04_stubble12' }, - ['1738337500'] = { Name = 'cs2_04_stubble13' }, - ['836403544'] = { Name = 'cs2_04_stubble14' }, - ['-1909938362'] = { Name = 'cs2_04_watertank01' }, - ['485084846'] = { Name = 'cs2_04_weed_02' }, - ['-1105194724'] = { Name = 'cs2_04_weed_03' }, - ['-866007076'] = { Name = 'cs2_05_barn01_o' }, - ['-297503601'] = { Name = 'cs2_05_barn01' }, - ['-1547443603'] = { Name = 'cs2_05_barn02_o' }, - ['-2141808459'] = { Name = 'cs2_05_barn02' }, - ['-78665011'] = { Name = 'cs2_05_barn03_o' }, - ['-861327015'] = { Name = 'cs2_05_barn03' }, - ['-553921026'] = { Name = 'cs2_05_barn04' }, - ['1867071116'] = { Name = 'cs2_05_barn05_o' }, - ['656795217'] = { Name = 'cs2_05_barn05' }, - ['765600670'] = { Name = 'cs2_05_brick_pform01' }, - ['-426568319'] = { Name = 'cs2_05_brick_pform02' }, - ['1874557778'] = { Name = 'cs2_05_bridge_1' }, - ['255318503'] = { Name = 'cs2_05_bridge_decal001' }, - ['1945994158'] = { Name = 'cs2_05_bridge_w' }, - ['-1874374009'] = { Name = 'cs2_05_bridge2' }, - ['-908346793'] = { Name = 'cs2_05_bridgefizz01' }, - ['-92063325'] = { Name = 'cs2_05_build2_o_02' }, - ['1725016042'] = { Name = 'cs2_05_build2_o' }, - ['1677571757'] = { Name = 'cs2_05_culvert006' }, - ['1475664966'] = { Name = 'cs2_05_culvert01' }, - ['-355809585'] = { Name = 'cs2_05_d00' }, - ['-1012369273'] = { Name = 'cs2_05_d01' }, - ['-705946350'] = { Name = 'cs2_05_d02' }, - ['-172951437'] = { Name = 'cs2_05_decal_003' }, - ['237808006'] = { Name = 'cs2_05_decal_008' }, - ['-886312022'] = { Name = 'cs2_05_draingrll' }, - ['395225693'] = { Name = 'cs2_05_fnc_mesh001' }, - ['165875462'] = { Name = 'cs2_05_fnc_mesh002' }, - ['1949950898'] = { Name = 'cs2_05_fnc_mesh003' }, - ['1854805582'] = { Name = 'cs2_05_frmdecs00' }, - ['148980446'] = { Name = 'cs2_05_frmdecs01a' }, - ['1183825482'] = { Name = 'cs2_05_frmdecs01b' }, - ['1230554076'] = { Name = 'cs2_05_frmdecs01c' }, - ['53264281'] = { Name = 'cs2_05_frmdecs02' }, - ['-1443197658'] = { Name = 'cs2_05_frmdecs03' }, - ['1037426148'] = { Name = 'cs2_05_frmland1_dec01' }, - ['-1926656783'] = { Name = 'cs2_05_frmland1_ed' }, - ['-423418386'] = { Name = 'cs2_05_frmland1' }, - ['-201801639'] = { Name = 'cs2_05_frmland2' }, - ['-826558539'] = { Name = 'cs2_05_glue_01' }, - ['-1075406325'] = { Name = 'cs2_05_glue_02' }, - ['931605833'] = { Name = 'cs2_05_glue_02a' }, - ['694030583'] = { Name = 'cs2_05_glue_02b' }, - ['1413211826'] = { Name = 'cs2_05_glue_02c' }, - ['1173998126'] = { Name = 'cs2_05_glue_02d' }, - ['1421523016'] = { Name = 'cs2_05_grainsilo_a_xtra' }, - ['1709228198'] = { Name = 'cs2_05_grainsilo_a' }, - ['1947510660'] = { Name = 'cs2_05_grainsilo_ad1' }, - ['-187245302'] = { Name = 'cs2_05_grainsilo_d1' }, - ['554305623'] = { Name = 'cs2_05_grainsilo' }, - ['-804318029'] = { Name = 'cs2_05_grainsiloxtra' }, - ['508438839'] = { Name = 'cs2_05_grainsiloxtra2' }, - ['256936760'] = { Name = 'cs2_05_grainsiloxtra3' }, - ['-1055343610'] = { Name = 'cs2_05_gs_ground_o' }, - ['1468943420'] = { Name = 'cs2_05_gs_ground' }, - ['1515235929'] = { Name = 'cs2_05_haystacks' }, - ['-1044607949'] = { Name = 'cs2_05_haystacks02' }, - ['-259654433'] = { Name = 'cs2_05_house' }, - ['-1313579127'] = { Name = 'cs2_05_irr_006' }, - ['445788531'] = { Name = 'cs2_05_irr_009' }, - ['1993751669'] = { Name = 'cs2_05_irripipes01' }, - ['-323250846'] = { Name = 'cs2_05_ladder_003_lod' }, - ['498692875'] = { Name = 'cs2_05_ladder_003' }, - ['269342644'] = { Name = 'cs2_05_ladder_004' }, - ['-1052558816'] = { Name = 'cs2_05_ladder_005' }, - ['-235860076'] = { Name = 'cs2_05_ladder_01' }, - ['-1916529378'] = { Name = 'cs2_05_ladder_010' }, - ['-544884576'] = { Name = 'cs2_05_ladder_011' }, - ['-247440363'] = { Name = 'cs2_05_ladder_012' }, - ['1327222579'] = { Name = 'cs2_05_land01_dec' }, - ['-15530268'] = { Name = 'cs2_05_land01' }, - ['1398049879'] = { Name = 'cs2_05_land09_d' }, - ['1441503778'] = { Name = 'cs2_05_land09_da1' }, - ['739919488'] = { Name = 'cs2_05_land09_da2' }, - ['1902596377'] = { Name = 'cs2_05_land09_da3' }, - ['1738620301'] = { Name = 'cs2_05_land09_da4' }, - ['713868125'] = { Name = 'cs2_05_land09_da5' }, - ['540192425'] = { Name = 'cs2_05_land09_da6' }, - ['1571411903'] = { Name = 'cs2_05_land09_da623' }, - ['-579481231'] = { Name = 'cs2_05_land09_desert' }, - ['901272869'] = { Name = 'cs2_05_land09_g_culv' }, - ['-1507371770'] = { Name = 'cs2_05_land09' }, - ['-108068334'] = { Name = 'cs2_05_land09b_desert' }, - ['1940519183'] = { Name = 'cs2_05_land09b' }, - ['1016972828'] = { Name = 'cs2_05_littlewall' }, - ['1887942973'] = { Name = 'cs2_05_pipesnolod' }, - ['-1111701560'] = { Name = 'cs2_05_plane_crash_lod' }, - ['2018517429'] = { Name = 'cs2_05_plane_crash' }, - ['169528046'] = { Name = 'cs2_05_plastic019' }, - ['-1240979918'] = { Name = 'cs2_05_prkdetails' }, - ['972577570'] = { Name = 'cs2_05_puddle_dec' }, - ['2081961474'] = { Name = 'cs2_05_retaining_walld_003' }, - ['-1667959053'] = { Name = 'cs2_05_retaining_walld_004' }, - ['534803735'] = { Name = 'cs2_05_retwall' }, - ['-1391176642'] = { Name = 'cs2_05_retwalldec' }, - ['259277810'] = { Name = 'cs2_05_roadditch015' }, - ['-2022206706'] = { Name = 'cs2_05_shed01' }, - ['866855113'] = { Name = 'cs2_05_signs' }, - ['-475596062'] = { Name = 'cs2_05_silo_ladr_01' }, - ['967524399'] = { Name = 'cs2_05_silobuild_details' }, - ['-266095510'] = { Name = 'cs2_05_silobuild_nolod' }, - ['-377869464'] = { Name = 'cs2_05_silobuild_rails' }, - ['375370588'] = { Name = 'cs2_05_silobuild' }, - ['-1442532779'] = { Name = 'cs2_05_track008' }, - ['-1182916237'] = { Name = 'cs2_05_track01' }, - ['-496897234'] = { Name = 'cs2_05_track06' }, - ['237849296'] = { Name = 'cs2_05_track07' }, - ['-599579549'] = { Name = 'cs2_05_trainhouse_dec' }, - ['-812678922'] = { Name = 'cs2_05_trainhouse' }, - ['1355703271'] = { Name = 'cs2_05_wall002' }, - ['-845132415'] = { Name = 'cs2_05_waterpipe_01' }, - ['-565705143'] = { Name = 'cs2_05_watertank01' }, - ['-458428082'] = { Name = 'cs2_05_weeds01' }, - ['1995085259'] = { Name = 'cs2_05_weeds02' }, - ['-2009614235'] = { Name = 'cs2_05_weeds03' }, - ['-1651449065'] = { Name = 'cs2_05_weeds04' }, - ['-1775553587'] = { Name = 'cs2_05_xing_01' }, - ['-1877912206'] = { Name = 'cs2_06_b1' }, - ['750554822'] = { Name = 'cs2_06_b2' }, - ['-831543758'] = { Name = 'cs2_06_beach2' }, - ['98211083'] = { Name = 'cs2_06_beach5' }, - ['1384951406'] = { Name = 'cs2_06_beach7' }, - ['-1937864353'] = { Name = 'cs2_06_clusster_01' }, - ['-1860288782'] = { Name = 'cs2_06_clutter04' }, - ['-271007067'] = { Name = 'cs2_06_clutter045' }, - ['1543296176'] = { Name = 'cs2_06_clutter05' }, - ['1838381021'] = { Name = 'cs2_06_clutter06' }, - ['-1246099415'] = { Name = 'cs2_06_clutter07' }, - ['-941118332'] = { Name = 'cs2_06_clutter08' }, - ['-1841020610'] = { Name = 'cs2_06_clutter09' }, - ['-544613788'] = { Name = 'cs2_06_clutter10' }, - ['1585666141'] = { Name = 'cs2_06_clutter11' }, - ['-1532502523'] = { Name = 'cs2_06_clutter32' }, - ['1398455152'] = { Name = 'cs2_06_clutter33' }, - ['-2126637262'] = { Name = 'cs2_06_clutter34' }, - ['-1341590329'] = { Name = 'cs2_06_clutter35' }, - ['1676763065'] = { Name = 'cs2_06_clutter41' }, - ['-1379798187'] = { Name = 'cs2_06_clutter42' }, - ['1045795970'] = { Name = 'cs2_06_clutter43' }, - ['49788031'] = { Name = 'cs2_06_decal_04' }, - ['-668016922'] = { Name = 'cs2_06_decal_08' }, - ['-437224855'] = { Name = 'cs2_06_decal_09' }, - ['352343984'] = { Name = 'cs2_06_decal_10' }, - ['1118515973'] = { Name = 'cs2_06_decal_11' }, - ['-1654264935'] = { Name = 'cs2_06_decal_20' }, - ['-1353384033'] = { Name = 'cs2_06_decal_20b' }, - ['-1902490110'] = { Name = 'cs2_06_decal_21' }, - ['14299780'] = { Name = 'cs2_06_decal_22' }, - ['-231369413'] = { Name = 'cs2_06_decal_23' }, - ['-911490012'] = { Name = 'cs2_06_decal_25' }, - ['671416533'] = { Name = 'cs2_06_decal_26' }, - ['431711298'] = { Name = 'cs2_06_decal_27' }, - ['-1570720329'] = { Name = 'cs2_06_jk_00' }, - ['1092383536'] = { Name = 'cs2_06_jk_01' }, - ['1340018869'] = { Name = 'cs2_06_jk_02' }, - ['-313995035'] = { Name = 'cs2_06_lakebed_d_00' }, - ['-19237880'] = { Name = 'cs2_06_lakebed_d_01' }, - ['-1966634016'] = { Name = 'cs2_06_lakebed_d_02' }, - ['-1213995596'] = { Name = 'cs2_06_lakebed_d_03' }, - ['1675312676'] = { Name = 'cs2_06_lakebed_d_04' }, - ['1846629008'] = { Name = 'cs2_06_lakebed_d_05' }, - ['-1769621839'] = { Name = 'cs2_06_lakebed_d_05b' }, - ['-341655595'] = { Name = 'cs2_06_lakebed_d_05bb' }, - ['-2139687077'] = { Name = 'cs2_06_lakebed_d_06' }, - ['451128370'] = { Name = 'cs2_06_lakebed_d_08' }, - ['627949894'] = { Name = 'cs2_06_lakebed_d_09' }, - ['-1515565303'] = { Name = 'cs2_06_lakebed_d_10' }, - ['-1278284970'] = { Name = 'cs2_06_lakebed_d_11' }, - ['-813653319'] = { Name = 'cs2_06_lakebed_d_13' }, - ['-263509803'] = { Name = 'cs2_06_lakebed_d_13b' }, - ['74109204'] = { Name = 'cs2_06_lakebed_d_13c' }, - ['-1051851180'] = { Name = 'cs2_06_lakebed_d_14' }, - ['383562096'] = { Name = 'cs2_06_lakebed_d_16' }, - ['140383347'] = { Name = 'cs2_06_lakebed_d_17' }, - ['873950181'] = { Name = 'cs2_06_lakebed_d_18' }, - ['1364567445'] = { Name = 'cs2_06_lakebed_d_19' }, - ['1530509329'] = { Name = 'cs2_06_lakebed_d_20' }, - ['1294932988'] = { Name = 'cs2_06_lakebed_d_21' }, - ['586073980'] = { Name = 'cs2_06_lakebed_d_22' }, - ['840656337'] = { Name = 'cs2_06_lakebed_d_23' }, - ['544719498'] = { Name = 'cs2_06_lakebed_d_24' }, - ['357149742'] = { Name = 'cs2_06_lakebed_d_25' }, - ['56297553'] = { Name = 'cs2_06_lakebed_d_26' }, - ['-85592217'] = { Name = 'cs2_06_lakebed_d_27' }, - ['-309535563'] = { Name = 'cs2_06_lakebed_d_28' }, - ['-559792416'] = { Name = 'cs2_06_lakebed_d_29' }, - ['105615830'] = { Name = 'cs2_06_lakebed_d_30' }, - ['381235885'] = { Name = 'cs2_06_lakebed_d_31' }, - ['99782944'] = { Name = 'cs2_06_lakebed_d_32' }, - ['591055792'] = { Name = 'cs2_06_lakebed_d_33' }, - ['-797694428'] = { Name = 'cs2_06_lakebed_d_34' }, - ['-1089633449'] = { Name = 'cs2_06_lakebed_d_35' }, - ['-44892191'] = { Name = 'cs2_06_lakebed_d_36' }, - ['-376874930'] = { Name = 'cs2_06_lakebed_d_37' }, - ['-1749633878'] = { Name = 'cs2_06_lakebed_d_38' }, - ['1658342106'] = { Name = 'cs2_06_lakebed_d_39' }, - ['-1257115976'] = { Name = 'cs2_06_lakebed_d_40' }, - ['2136179516'] = { Name = 'cs2_06_lakebed_d_41' }, - ['-1914101657'] = { Name = 'cs2_06_lakebed_d_42' }, - ['2122875306'] = { Name = 'cs2_06_lakebed_d_43' }, - ['-1872878251'] = { Name = 'cs2_06_lakebed_d_44' }, - ['-356132317'] = { Name = 'cs2_06_lakebed_d_45' }, - ['-55280128'] = { Name = 'cs2_06_lakebed_d_46' }, - ['-919726348'] = { Name = 'cs2_06_lakebed_d_47' }, - ['592890692'] = { Name = 'cs2_06_lakebed_d_48' }, - ['899772377'] = { Name = 'cs2_06_lakebed_d_49' }, - ['1865342343'] = { Name = 'cs2_06_lakebed_d_50' }, - ['813326271'] = { Name = 'cs2_06_lakebed_d_51' }, - ['505395978'] = { Name = 'cs2_06_lakebed_d_52' }, - ['227187168'] = { Name = 'cs2_06_lakebed_d_53' }, - ['-69962124'] = { Name = 'cs2_06_lakebed_d_54' }, - ['-676581852'] = { Name = 'cs2_06_lakebed_d_55' }, - ['-974222679'] = { Name = 'cs2_06_lakebed_d_56' }, - ['-1267767381'] = { Name = 'cs2_06_lakebed_d_57' }, - ['-1565735898'] = { Name = 'cs2_06_lakebed_d_58' }, - ['-386117680'] = { Name = 'cs2_06_lakebed_d_60' }, - ['-173348563'] = { Name = 'cs2_06_lakebed_d_61' }, - ['-1015446325'] = { Name = 'cs2_06_lakebed_d_62' }, - ['-171579041'] = { Name = 'cs2_06_lakebed_d_63' }, - ['-1009744523'] = { Name = 'cs2_06_lakebed_d_64' }, - ['-771612200'] = { Name = 'cs2_06_lakebed_d_65' }, - ['-1105069544'] = { Name = 'cs2_06_lakebed_d_66' }, - ['-1938581828'] = { Name = 'cs2_06_lakebed_d_67' }, - ['-1700187353'] = { Name = 'cs2_06_lakebed_d_68' }, - ['1732103249'] = { Name = 'cs2_06_lakebed_d_69' }, - ['-1795511458'] = { Name = 'cs2_06_lakebed_d_70' }, - ['1768444902'] = { Name = 'cs2_06_lakebed_d_71' }, - ['2007691371'] = { Name = 'cs2_06_lakebed_d_72' }, - ['-1930683667'] = { Name = 'cs2_06_lakebed_d_73' }, - ['-1624916128'] = { Name = 'cs2_06_lakebed_d_74' }, - ['-1604468272'] = { Name = 'cs2_06_lakebed_d_75' }, - ['-1297848739'] = { Name = 'cs2_06_lakebed_d_76' }, - ['-1009547077'] = { Name = 'cs2_06_lakebed_d_77' }, - ['-703517386'] = { Name = 'cs2_06_lakebed_d_78' }, - ['-952201323'] = { Name = 'cs2_06_lakebed_d_79' }, - ['-304068152'] = { Name = 'cs2_06_lakebed_d_80' }, - ['-1011813018'] = { Name = 'cs2_06_lakebed_d_81' }, - ['-764243219'] = { Name = 'cs2_06_lakebed_d_82' }, - ['1081896699'] = { Name = 'cs2_06_lakebed_d_83' }, - ['1294927996'] = { Name = 'cs2_06_lakebed_d_84' }, - ['618641346'] = { Name = 'cs2_06_lakebed_d_85' }, - ['843534993'] = { Name = 'cs2_06_lakebed_d_86' }, - ['-1786111695'] = { Name = 'cs2_06_lakebed_d_87' }, - ['-1506231666'] = { Name = 'cs2_06_lakebed_d_88' }, - ['1494949972'] = { Name = 'cs2_06_lakebed_d_89' }, - ['-1483126489'] = { Name = 'cs2_06_lakebed_d_90' }, - ['37846650'] = { Name = 'cs2_06_lakebed_d_91' }, - ['-730324248'] = { Name = 'cs2_06_lakebed_d_92' }, - ['-1640089995'] = { Name = 'cs2_06_lakebed_d_93' }, - ['-1870128375'] = { Name = 'cs2_06_lakebed_d_94' }, - ['-220438521'] = { Name = 'cs2_06_lakebed_rcks_00' }, - ['495334746'] = { Name = 'cs2_06_lakebed_rcks_01' }, - ['1850824431'] = { Name = 'cs2_06_lakebed_rcks_02' }, - ['1074395745'] = { Name = 'cs2_06_lakebed_rcks_03' }, - ['1571625956'] = { Name = 'cs2_06_lkb_00' }, - ['1866645263'] = { Name = 'cs2_06_lkb_01' }, - ['-966660788'] = { Name = 'cs2_06_lkb_02' }, - ['-807075750'] = { Name = 'cs2_06_lkb_03' }, - ['-1696328111'] = { Name = 'cs2_06_lkb_04' }, - ['-1262859779'] = { Name = 'cs2_06_lkb_05' }, - ['592652185'] = { Name = 'cs2_06_lkb_06' }, - ['1033722925'] = { Name = 'cs2_06_lkb_07' }, - ['113208946'] = { Name = 'cs2_06_lkb_08' }, - ['352258801'] = { Name = 'cs2_06_lkb_09' }, - ['1982385147'] = { Name = 'cs2_06_lkb_10' }, - ['-1605243153'] = { Name = 'cs2_06_lkbed_00' }, - ['-1347973734'] = { Name = 'cs2_06_lkbed_01' }, - ['-1566215262'] = { Name = 'cs2_06_lkbed_02' }, - ['-1321725753'] = { Name = 'cs2_06_lkbed_03' }, - ['-2043626823'] = { Name = 'cs2_06_lkbed_04' }, - ['-1746248148'] = { Name = 'cs2_06_lkbed_05' }, - ['1332628785'] = { Name = 'cs2_06_lkbed_06' }, - ['1511809677'] = { Name = 'cs2_06_lkbed_07' }, - ['854168616'] = { Name = 'cs2_06_lkbed_08' }, - ['1034987958'] = { Name = 'cs2_06_lkbed_09' }, - ['-1664718588'] = { Name = 'cs2_06_lkbed_10' }, - ['-1357640289'] = { Name = 'cs2_06_lkbed_11' }, - ['2016288724'] = { Name = 'cs2_06_lkbed_12' }, - ['-2123287974'] = { Name = 'cs2_06_lkbed_13' }, - ['1253328093'] = { Name = 'cs2_06_lkbed_14' }, - ['-1783247966'] = { Name = 'cs2_06_props_lod' }, - ['1500304176'] = { Name = 'cs2_06_refprox_01' }, - ['1244148903'] = { Name = 'cs2_06_refprox_02' }, - ['870909993'] = { Name = 'cs2_06_refprox_03' }, - ['649194939'] = { Name = 'cs2_06_refprox_04' }, - ['266846247'] = { Name = 'cs2_06_refprox_05' }, - ['-312935678'] = { Name = 'cs2_06_refprox_07' }, - ['-1425803675'] = { Name = 'cs2_06_refprox_09' }, - ['197735626'] = { Name = 'cs2_06_refprox_13' }, - ['98445552'] = { Name = 'cs2_06_refprox_14' }, - ['576446955'] = { Name = 'cs2_06_refprox_16' }, - ['-199621272'] = { Name = 'cs2_06_refprox_17' }, - ['389907771'] = { Name = 'cs2_06_rks_00' }, - ['-1745615198'] = { Name = 'cs2_06_rks_01' }, - ['-1515740663'] = { Name = 'cs2_06_rks_02' }, - ['-1131294755'] = { Name = 'cs2_06_rks_03' }, - ['-899912846'] = { Name = 'cs2_06_rks_04' }, - ['-1744173370'] = { Name = 'cs2_06_rks_05' }, - ['-1510890859'] = { Name = 'cs2_06_rks_06' }, - ['-1134571663'] = { Name = 'cs2_06_rks_07' }, - ['-898733170'] = { Name = 'cs2_06_rks_08' }, - ['-551316232'] = { Name = 'cs2_06_rks_09' }, - ['987583598'] = { Name = 'cs2_06_rks_10' }, - ['1282865057'] = { Name = 'cs2_06_rks_11' }, - ['1513657124'] = { Name = 'cs2_06_rks_12' }, - ['-701527312'] = { Name = 'cs2_06_rks_13' }, - ['-940970395'] = { Name = 'cs2_06_rks_14' }, - ['193885613'] = { Name = 'cs2_06_rks_15' }, - ['-447796945'] = { Name = 'cs2_06_rks_16' }, - ['-1627775866'] = { Name = 'cs2_06_rks_17' }, - ['-1999638478'] = { Name = 'cs2_06_rks_18' }, - ['-1276721569'] = { Name = 'cs2_06_rks_19' }, - ['1830584680'] = { Name = 'cs2_06_rks_20' }, - ['-1019531868'] = { Name = 'cs2_06_rks_21' }, - ['-746926557'] = { Name = 'cs2_06_rks_22' }, - ['431872680'] = { Name = 'cs2_06_rks_23' }, - ['673642362'] = { Name = 'cs2_06_rks_24' }, - ['1068541545'] = { Name = 'cs2_06_rks_25' }, - ['845646807'] = { Name = 'cs2_06_rks_26' }, - ['-1540493470'] = { Name = 'cs2_06_rks_27' }, - ['-2032683850'] = { Name = 'cs2_06_rks_28' }, - ['2036963802'] = { Name = 'cs2_06_rks_29' }, - ['1186313067'] = { Name = 'cs2_06_rks_30' }, - ['-1791438736'] = { Name = 'cs2_06_rks_31' }, - ['1870281298'] = { Name = 'cs2_06_terrain00' }, - ['1837544259'] = { Name = 'cs2_06_terrain19' }, - ['587529760'] = { Name = 'cs2_06_wall_004' }, - ['1577800932'] = { Name = 'cs2_06_woodenpier' }, - ['-842211310'] = { Name = 'cs2_06b_b_rks_00' }, - ['161142685'] = { Name = 'cs2_06b_b_rks_01' }, - ['-1302714067'] = { Name = 'cs2_06b_b_rks_02' }, - ['-317907326'] = { Name = 'cs2_06b_b_rks_03' }, - ['382628356'] = { Name = 'cs2_06b_b_rks_04' }, - ['1319395759'] = { Name = 'cs2_06b_b_rks_05' }, - ['1082312044'] = { Name = 'cs2_06b_b_rks_06' }, - ['835758088'] = { Name = 'cs2_06b_b_rks_07' }, - ['606604471'] = { Name = 'cs2_06b_b_rks_08' }, - ['1311400147'] = { Name = 'cs2_06b_b_rks_09' }, - ['1418687317'] = { Name = 'cs2_06b_b_rks_10' }, - ['-357064793'] = { Name = 'cs2_06b_b_rks_11' }, - ['-116310950'] = { Name = 'cs2_06b_b_rks_12' }, - ['-1354291005'] = { Name = 'cs2_06b_b_rks_13' }, - ['-40385177'] = { Name = 'cs2_06b_b_rks_14' }, - ['-690849831'] = { Name = 'cs2_06b_b_rks_15' }, - ['-1532783748'] = { Name = 'cs2_06b_b_rks_16' }, - ['2052996850'] = { Name = 'cs2_06b_b_rks_17' }, - ['-941008377'] = { Name = 'cs2_06b_b_rks_18' }, - ['2111489515'] = { Name = 'cs2_06b_b_rks_19' }, - ['1061274906'] = { Name = 'cs2_06b_b_rks_20' }, - ['-1082970585'] = { Name = 'cs2_06b_b1_rks_00' }, - ['75924935'] = { Name = 'cs2_06b_boat03' }, - ['675891327'] = { Name = 'cs2_06b_cs2_06_b_lkbed_00' }, - ['-1463629452'] = { Name = 'cs2_06b_cs2_06_b_lkbed_01' }, - ['1671614581'] = { Name = 'cs2_06b_cs2_06_b_lkbed_02z' }, - ['1593456100'] = { Name = 'cs2_06b_cs2_06_b_lkbed_04' }, - ['678381807'] = { Name = 'cs2_06b_cs2_06_b_lkbed_05' }, - ['-2073821001'] = { Name = 'cs2_06b_cs2_06_b_lkbed_07' }, - ['-1776966630'] = { Name = 'cs2_06b_cs2_06_b_lkbed_08' }, - ['-880916136'] = { Name = 'cs2_06b_cs2_06_b_lkbed_08bb' }, - ['2031822575'] = { Name = 'cs2_06b_cs2_06_b_lkbed_08cc' }, - ['-1385548054'] = { Name = 'cs2_06b_cs2_06_clutter00' }, - ['1664098935'] = { Name = 'cs2_06b_cs2_06_clutter01' }, - ['-1847099419'] = { Name = 'cs2_06b_cs2_06_clutter02' }, - ['1199729436'] = { Name = 'cs2_06b_cs2_06_clutter03' }, - ['-302256987'] = { Name = 'cs2_06b_cs2_06_clutter40' }, - ['1951016621'] = { Name = 'cs2_06b_dec_00' }, - ['1667466464'] = { Name = 'cs2_06b_dec_01' }, - ['1478520410'] = { Name = 'cs2_06b_dec_02' }, - ['-683807613'] = { Name = 'cs2_06b_dec_03' }, - ['-896281809'] = { Name = 'cs2_06b_dec_04' }, - ['-1145490054'] = { Name = 'cs2_06b_dec_05' }, - ['-1377560112'] = { Name = 'cs2_06b_dec_06' }, - ['279666545'] = { Name = 'cs2_06b_dec_07' }, - ['-12731242'] = { Name = 'cs2_06b_dec_08' }, - ['-736336300'] = { Name = 'cs2_06b_dec_09' }, - ['81282199'] = { Name = 'cs2_06b_dec_10' }, - ['-2059156116'] = { Name = 'cs2_06b_dec_11' }, - ['863609305'] = { Name = 'cs2_06b_dec_12' }, - ['832413217'] = { Name = 'cs2_06b_dec_13' }, - ['1607432836'] = { Name = 'cs2_06b_dec_14' }, - ['-127063131'] = { Name = 'cs2_06b_dec_15' }, - ['1242779376'] = { Name = 'cs2_06b_dec_16' }, - ['717819996'] = { Name = 'cs2_06b_dec_17' }, - ['1023128769'] = { Name = 'cs2_06b_dec_18' }, - ['-1055933205'] = { Name = 'cs2_06b_dec_19' }, - ['-1481307318'] = { Name = 'cs2_06b_dec_20' }, - ['-706254930'] = { Name = 'cs2_06b_dec_21' }, - ['-1021787631'] = { Name = 'cs2_06b_dec_22' }, - ['12860775'] = { Name = 'cs2_06b_dec_23' }, - ['-290547396'] = { Name = 'cs2_06b_dec_24' }, - ['484242840'] = { Name = 'cs2_06b_dec_25' }, - ['176443623'] = { Name = 'cs2_06b_dec_26' }, - ['1890000167'] = { Name = 'cs2_06b_dec_27' }, - ['-1774950335'] = { Name = 'cs2_06b_dec_28' }, - ['-2064497219'] = { Name = 'cs2_06b_dec_29' }, - ['-694817145'] = { Name = 'cs2_06b_dec_30' }, - ['1425894232'] = { Name = 'cs2_06b_dec_31' }, - ['2068232170'] = { Name = 'cs2_06b_dec_32' }, - ['-1987029891'] = { Name = 'cs2_06b_dec_33' }, - ['-1903457202'] = { Name = 'cs2_06b_lkd_00' }, - ['1912755004'] = { Name = 'cs2_06b_lkd_01' }, - ['1624879339'] = { Name = 'cs2_06b_lkd_02' }, - ['1384584262'] = { Name = 'cs2_06b_lkd_03' }, - ['1160247684'] = { Name = 'cs2_06b_lkd_04' }, - ['922377513'] = { Name = 'cs2_06b_lkd_05' }, - ['1044507572'] = { Name = 'cs2_06b_lkd_06' }, - ['802442969'] = { Name = 'cs2_06b_lkd_07' }, - ['275910677'] = { Name = 'cs2_06b_lkd_08' }, - ['48198896'] = { Name = 'cs2_06b_lkd_09' }, - ['345248973'] = { Name = 'cs2_06b_lkd_10' }, - ['1103785785'] = { Name = 'cs2_06b_lkd_11' }, - ['225314429'] = { Name = 'cs2_06b_lkd_12' }, - ['918837545'] = { Name = 'cs2_06b_lkd_13' }, - ['-385008196'] = { Name = 'cs2_06b_lkd_14' }, - ['-768602110'] = { Name = 'cs2_06b_lkd_15' }, - ['-1111981008'] = { Name = 'cs2_06b_refprox_01' }, - ['211132845'] = { Name = 'cs2_06b_refprox_02' }, - ['483148314'] = { Name = 'cs2_06b_refprox_03' }, - ['1878190182'] = { Name = 'cs2_06b_refprox_04' }, - ['36801765'] = { Name = 'cs2_06b_refprox_05' }, - ['1269735390'] = { Name = 'cs2_06b_refprox_06' }, - ['1406119968'] = { Name = 'cs2_06b_refprox_07' }, - ['-1625700681'] = { Name = 'cs2_06b_refprox_08' }, - ['-156482436'] = { Name = 'cs2_06c_c_rks_00' }, - ['81191121'] = { Name = 'cs2_06c_c_rks_01' }, - ['-1540743307'] = { Name = 'cs2_06c_c_rks_02' }, - ['-1304708200'] = { Name = 'cs2_06c_c_rks_03' }, - ['802010814'] = { Name = 'cs2_06c_c_rks_04' }, - ['1057248555'] = { Name = 'cs2_06c_c_rks_05' }, - ['1296101796'] = { Name = 'cs2_06c_c_rks_06' }, - ['-361681914'] = { Name = 'cs2_06c_c_rks_07' }, - ['-2059443808'] = { Name = 'cs2_06c_c_rks_08' }, - ['579836998'] = { Name = 'cs2_06c_c_rks_09' }, - ['458198114'] = { Name = 'cs2_06c_c_rks_10' }, - ['1309274582'] = { Name = 'cs2_06c_c_rks_11' }, - ['-254396560'] = { Name = 'cs2_06c_c_rks_13' }, - ['1793076106'] = { Name = 'cs2_06c_c_rks_14' }, - ['-1188411363'] = { Name = 'cs2_06c_c_rks_15' }, - ['-1904938317'] = { Name = 'cs2_06c_c_rks_16' }, - ['1557434227'] = { Name = 'cs2_06c_c_rks_17' }, - ['68836864'] = { Name = 'cs2_06c_c_rks_18' }, - ['308411023'] = { Name = 'cs2_06c_c_rks_19' }, - ['510300600'] = { Name = 'cs2_06c_c_rks_20' }, - ['1336767549'] = { Name = 'cs2_06c_c_rks_21' }, - ['-463770454'] = { Name = 'cs2_06c_cargoplane_iplgroup' }, - ['382594959'] = { Name = 'cs2_06c_cargoplane_iplgroup2' }, - ['1790883643'] = { Name = 'cs2_06c_cargoplane_skin_decals' }, - ['-1441135958'] = { Name = 'cs2_06c_clutter046' }, - ['785615923'] = { Name = 'cs2_06c_clutter047' }, - ['2025315099'] = { Name = 'cs2_06c_cs2_06_clutter37' }, - ['1323272043'] = { Name = 'cs2_06c_cs2_06_clutter38' }, - ['-2145373501'] = { Name = 'cs2_06c_jnk_012' }, - ['-1339487166'] = { Name = 'cs2_06c_jnk_02' }, - ['1258570226'] = { Name = 'cs2_06c_jnk_03' }, - ['-113074572'] = { Name = 'cs2_06c_jnk_06' }, - ['-63282012'] = { Name = 'cs2_06c_jnk_11' }, - ['751955877'] = { Name = 'cs2_06c_lakebed_d_00' }, - ['-1183020800'] = { Name = 'cs2_06c_lakebed_d_01' }, - ['-950164286'] = { Name = 'cs2_06c_lakebed_d_02' }, - ['1274326506'] = { Name = 'cs2_06c_lakebed_d_03' }, - ['1479394908'] = { Name = 'cs2_06c_lakebed_d_04' }, - ['1732797585'] = { Name = 'cs2_06c_lakebed_d_05' }, - ['-175636206'] = { Name = 'cs2_06c_lakebed_d_06' }, - ['-1799602308'] = { Name = 'cs2_06c_lakebed_d_07' }, - ['-1593583605'] = { Name = 'cs2_06c_lakebed_d_08' }, - ['-1339951545'] = { Name = 'cs2_06c_lakebed_d_09' }, - ['-1406176778'] = { Name = 'cs2_06c_lakebed_d_10' }, - ['-1589617640'] = { Name = 'cs2_06c_lakebed_d_11' }, - ['-1886734163'] = { Name = 'cs2_06c_lakebed_d_12' }, - ['-81195036'] = { Name = 'cs2_06c_lakebed_d_13' }, - ['1751673441'] = { Name = 'cs2_06c_lakebed_d_14' }, - ['1587435213'] = { Name = 'cs2_06c_lakebed_d_15' }, - ['1276359096'] = { Name = 'cs2_06c_lakebed_d_16' }, - ['-880398177'] = { Name = 'cs2_06c_lakebed_d_17' }, - ['-1037033997'] = { Name = 'cs2_06c_lakebed_d_18' }, - ['385927059'] = { Name = 'cs2_06c_lakebed_d_19' }, - ['-1583064128'] = { Name = 'cs2_06c_lakebed_d_20' }, - ['-1843479371'] = { Name = 'cs2_06c_lakebed_d_21' }, - ['2078380091'] = { Name = 'cs2_06c_lakebed_d_22' }, - ['-1916366776'] = { Name = 'cs2_06c_lkbed_00' }, - ['-1609222939'] = { Name = 'cs2_06c_lkbed_01' }, - ['1800588129'] = { Name = 'cs2_06c_lkbed_02' }, - ['2103996300'] = { Name = 'cs2_06c_lkbed_03' }, - ['1199375286'] = { Name = 'cs2_06c_lkbed_04' }, - ['1488430635'] = { Name = 'cs2_06c_lkbed_05' }, - ['-1311090593'] = { Name = 'cs2_06c_lkbed_06' }, - ['-1004798750'] = { Name = 'cs2_06c_lkbed_07' }, - ['-1909812992'] = { Name = 'cs2_06c_lkbed_08' }, - ['-1602669155'] = { Name = 'cs2_06c_lkbed_09' }, - ['1238534505'] = { Name = 'cs2_06c_lkbed_10' }, - ['1477944819'] = { Name = 'cs2_06c_lkbed_11' }, - ['-715382662'] = { Name = 'cs2_06c_lkbed_12' }, - ['1152188186'] = { Name = 'cs2_06c_lkbed_13' }, - ['318708671'] = { Name = 'cs2_06c_lkbed_14' }, - ['202247645'] = { Name = 'cs2_06c_lkbed_15' }, - ['-1988458284'] = { Name = 'cs2_06c_lkbed_16' }, - ['-1698288789'] = { Name = 'cs2_06c_lkbed_17' }, - ['-383858689'] = { Name = 'cs2_06c_lkbed_18' }, - ['-154049692'] = { Name = 'cs2_06c_lkbed_19' }, - ['-2080015738'] = { Name = 'cs2_06c_lkbed_20' }, - ['-1705412783'] = { Name = 'cs2_06c_refprox_01' }, - ['1753453478'] = { Name = 'cs2_06c_refprox_02' }, - ['-1529934788'] = { Name = 'cs2_06c_refprox_03' }, - ['-1295472593'] = { Name = 'cs2_06c_refprox_04' }, - ['-1050753701'] = { Name = 'cs2_06c_refprox_05' }, - ['-810851852'] = { Name = 'cs2_06c_refprox_06' }, - ['-336946574'] = { Name = 'cs2_06c_refprox_07' }, - ['-234969446'] = { Name = 'cs2_06c_refprox_08' }, - ['138957613'] = { Name = 'cs2_06c_refprox_09' }, - ['1847643513'] = { Name = 'cs2_06c_rks11' }, - ['1907464894'] = { Name = 'cs2_08_animboxmain' }, - ['566904397'] = { Name = 'cs2_08_bridge_dec1' }, - ['-426726049'] = { Name = 'cs2_08_bridge' }, - ['-1461646553'] = { Name = 'cs2_08_carport_supp' }, - ['-2065326706'] = { Name = 'cs2_08_carport' }, - ['-1760948330'] = { Name = 'cs2_08_cj_boatlod' }, - ['886305665'] = { Name = 'cs2_08_coast_01' }, - ['654071762'] = { Name = 'cs2_08_coast_02' }, - ['-1462150262'] = { Name = 'cs2_08_coast_03' }, - ['-338927249'] = { Name = 'cs2_08_coast_05' }, - ['-577321724'] = { Name = 'cs2_08_coast_06' }, - ['-531355329'] = { Name = 'cs2_08_crowman' }, - ['1618579581'] = { Name = 'cs2_08_culvert004' }, - ['418302713'] = { Name = 'cs2_08_culvert01' }, - ['-188153170'] = { Name = 'cs2_08_culvert03' }, - ['-450145069'] = { Name = 'cs2_08_decal_a2_decal001' }, - ['-1657782495'] = { Name = 'cs2_08_decal_cbot_01' }, - ['-731310132'] = { Name = 'cs2_08_decal_ctop_01' }, - ['372685450'] = { Name = 'cs2_08_decal01' }, - ['134553127'] = { Name = 'cs2_08_decal02' }, - ['-346759960'] = { Name = 'cs2_08_foam_01' }, - ['-117147577'] = { Name = 'cs2_08_foam_02' }, - ['-477180584'] = { Name = 'cs2_08_foam_03' }, - ['-245339909'] = { Name = 'cs2_08_foam_04' }, - ['23401261'] = { Name = 'cs2_08_garden' }, - ['283401669'] = { Name = 'cs2_08_generic01a' }, - ['-834711011'] = { Name = 'cs2_08_generic02_tag' }, - ['656071565'] = { Name = 'cs2_08_generic02' }, - ['-1964126497'] = { Name = 'cs2_08_house_01' }, - ['-623566556'] = { Name = 'cs2_08_house_emmi01_lod' }, - ['-1983550665'] = { Name = 'cs2_08_house_emmi01' }, - ['-282709839'] = { Name = 'cs2_08_house_fnce_01' }, - ['2041456411'] = { Name = 'cs2_08_house08decal' }, - ['762563858'] = { Name = 'cs2_08_inletdcl04' }, - ['-1206408448'] = { Name = 'cs2_08_inletdcl3top' }, - ['143597418'] = { Name = 'cs2_08_isl_dec' }, - ['-245074291'] = { Name = 'cs2_08_island' }, - ['-1030360673'] = { Name = 'cs2_08_land01' }, - ['-876903446'] = { Name = 'cs2_08_land02' }, - ['2020109340'] = { Name = 'cs2_08_land024_d' }, - ['247876486'] = { Name = 'cs2_08_land024b_d' }, - ['209806109'] = { Name = 'cs2_08_land029_d' }, - ['-519983498'] = { Name = 'cs2_08_land03' }, - ['822103774'] = { Name = 'cs2_08_land032_d1' }, - ['-311376044'] = { Name = 'cs2_08_land04' }, - ['967420827'] = { Name = 'cs2_08_land05_decal001' }, - ['-71605271'] = { Name = 'cs2_08_land05' }, - ['1218575793'] = { Name = 'cs2_08_land06' }, - ['375068964'] = { Name = 'cs2_08_land07' }, - ['1159624366'] = { Name = 'cs2_08_land08' }, - ['316445227'] = { Name = 'cs2_08_land09' }, - ['1847414291'] = { Name = 'cs2_08_land10' }, - ['2086791836'] = { Name = 'cs2_08_land11' }, - ['1370002730'] = { Name = 'cs2_08_land12' }, - ['1608790433'] = { Name = 'cs2_08_land13' }, - ['893770853'] = { Name = 'cs2_08_land14' }, - ['1133017322'] = { Name = 'cs2_08_land15' }, - ['1652684368'] = { Name = 'cs2_08_land30_d' }, - ['1807870562'] = { Name = 'cs2_08_lighthouserailing' }, - ['-901274751'] = { Name = 'cs2_08_lighthsglass_lod' }, - ['40087631'] = { Name = 'cs2_08_lighthsglass' }, - ['687028424'] = { Name = 'cs2_08_lightmw_d' }, - ['-1992024636'] = { Name = 'cs2_08_lightmw' }, - ['463943828'] = { Name = 'cs2_08_planks' }, - ['210820645'] = { Name = 'cs2_08_railingtowater' }, - ['1360082015'] = { Name = 'cs2_08_rckdecal' }, - ['522349430'] = { Name = 'cs2_08_rckdecal01' }, - ['1313562626'] = { Name = 'cs2_08_rckdecal01a' }, - ['441475546'] = { Name = 'cs2_08_rckdecal06' }, - ['178766473'] = { Name = 'cs2_08_rckdecal07' }, - ['-1777739437'] = { Name = 'cs2_08_rckdecal08' }, - ['-1002228283'] = { Name = 'cs2_08_rckdecal09' }, - ['1797588050'] = { Name = 'cs2_08_rckdecal12' }, - ['1650124285'] = { Name = 'cs2_08_rckdecal12a' }, - ['1719932281'] = { Name = 'cs2_08_ret_wall_00' }, - ['-1353308384'] = { Name = 'cs2_08_ret_wall_01' }, - ['-1334294943'] = { Name = 'cs2_08_road_accessd' }, - ['1918994968'] = { Name = 'cs2_08_road_accessd001_lod' }, - ['-1836971562'] = { Name = 'cs2_08_road01' }, - ['1648326658'] = { Name = 'cs2_08_roadb' }, - ['554591989'] = { Name = 'cs2_08_sea_uw_dec_00' }, - ['-983421026'] = { Name = 'cs2_08_sea_uw_dec_02' }, - ['907481358'] = { Name = 'cs2_08_sea_uw_dec_03' }, - ['1795521258'] = { Name = 'cs2_08_sea_uw_dec_04' }, - ['1504368693'] = { Name = 'cs2_08_sea_uw_dec_05' }, - ['209960416'] = { Name = 'cs2_08_sea_uw_dec_06' }, - ['-1534235147'] = { Name = 'cs2_08_sea_uw_dec_07' }, - ['-851643158'] = { Name = 'cs2_08_sea_uw_rocks_00' }, - ['725720675'] = { Name = 'cs2_08_sea_uw1_00' }, - ['-2020157684'] = { Name = 'cs2_08_sea_uw1_02' }, - ['962330676'] = { Name = 'cs2_08_sea_uw2_00' }, - ['1820976783'] = { Name = 'cs2_08_sea_uw2_01' }, - ['1708841265'] = { Name = 'cs2_08_sea_uw2_02' }, - ['-1937430907'] = { Name = 'cs2_08_sea_uw2_03' }, - ['-2049959653'] = { Name = 'cs2_08_sea_uw2_04' }, - ['-1187053576'] = { Name = 'cs2_08_sea_uw2_05' }, - ['-1572548092'] = { Name = 'cs2_08_sea_uw2_06' }, - ['1948266458'] = { Name = 'cs2_08_sea_uw2_07_lod' }, - ['-1114961772'] = { Name = 'cs2_08_sea_uw2_07' }, - ['-997982088'] = { Name = 'cs2_08_sea_uw2_08_lod' }, - ['-289281279'] = { Name = 'cs2_08_sea_uw2_08' }, - ['-2112622796'] = { Name = 'cs2_08_sea_uw2b_02' }, - ['1347029921'] = { Name = 'cs2_08_sea_uw2b_03' }, - ['405132611'] = { Name = 'cs2_08_sea_uwdecb_04' }, - ['596413195'] = { Name = 'cs2_08_signs01' }, - ['1160028668'] = { Name = 'cs2_08_stepstowater_d' }, - ['-1844131725'] = { Name = 'cs2_08_stepstowater' }, - ['1538045633'] = { Name = 'cs2_08_trailretainer_001' }, - ['1959717125'] = { Name = 'cs2_08_trailretainer_002' }, - ['1023278432'] = { Name = 'cs2_08_trailsteps_001' }, - ['404566943'] = { Name = 'cs2_08_trailsteps_003' }, - ['-1814391348'] = { Name = 'cs2_08_trk01_dcl' }, - ['-658569328'] = { Name = 'cs2_08_trk01b_dcl' }, - ['-146328017'] = { Name = 'cs2_08_trunkbarrier' }, - ['-269290972'] = { Name = 'cs2_08_wallsupports' }, - ['1953798243'] = { Name = 'cs2_08_wretainer' }, - ['76411658'] = { Name = 'cs2_09_armco' }, - ['-153396377'] = { Name = 'cs2_09_armco2' }, - ['-1664450327'] = { Name = 'cs2_09_boathouse_base' }, - ['-717517221'] = { Name = 'cs2_09_boats_dec' }, - ['1111746670'] = { Name = 'cs2_09_boats_det' }, - ['2135852471'] = { Name = 'cs2_09_boats' }, - ['-753572837'] = { Name = 'cs2_09_brace1' }, - ['537591297'] = { Name = 'cs2_09_brace2' }, - ['-293266698'] = { Name = 'cs2_09_brace3' }, - ['565215564'] = { Name = 'cs2_09_brace4' }, - ['265182600'] = { Name = 'cs2_09_brace5' }, - ['-720017385'] = { Name = 'cs2_09_brace6' }, - ['209303233'] = { Name = 'cs2_09_build001_ovr001' }, - ['265420602'] = { Name = 'cs2_09_building002' }, - ['2134599897'] = { Name = 'cs2_09_building4_det' }, - ['-1044711887'] = { Name = 'cs2_09_building4' }, - ['517672876'] = { Name = 'cs2_09_creekbridge_d' }, - ['211523497'] = { Name = 'cs2_09_creekbridge_shdw' }, - ['572766676'] = { Name = 'cs2_09_creekbridge' }, - ['817315237'] = { Name = 'cs2_09_cs_09_tarp01_s' }, - ['-1587594681'] = { Name = 'cs2_09_cs_09_tarp01_sl' }, - ['-1295258630'] = { Name = 'cs2_09_cs2_9_drain002' }, - ['1107913597'] = { Name = 'cs2_09_cs2_9_drain1' }, - ['1032098994'] = { Name = 'cs2_09_decal01' }, - ['1536556453'] = { Name = 'cs2_09_decal02_b_dd' }, - ['-1123176061'] = { Name = 'cs2_09_decal02_dd' }, - ['1254272814'] = { Name = 'cs2_09_decal02' }, - ['451928222'] = { Name = 'cs2_09_decal03_dd' }, - ['1414578762'] = { Name = 'cs2_09_decal03' }, - ['-291126948'] = { Name = 'cs2_09_decal03b' }, - ['-1211801274'] = { Name = 'cs2_09_decal04_dd' }, - ['-1673835822'] = { Name = 'cs2_09_decal04b_dd' }, - ['600301064'] = { Name = 'cs2_09_decal05_dd' }, - ['-617758805'] = { Name = 'cs2_09_decal08_lod' }, - ['886309729'] = { Name = 'cs2_09_decal08' }, - ['-352654340'] = { Name = 'cs2_09_decal11b' }, - ['1607980572'] = { Name = 'cs2_09_decal12' }, - ['114901979'] = { Name = 'cs2_09_dock' }, - ['-1381538112'] = { Name = 'cs2_09_docksweed' }, - ['-1324305538'] = { Name = 'cs2_09_emis1_lod' }, - ['1828911569'] = { Name = 'cs2_09_emissive' }, - ['873771840'] = { Name = 'cs2_09_erosiontube_dd01' }, - ['-441916335'] = { Name = 'cs2_09_erosiontube013' }, - ['-856707943'] = { Name = 'cs2_09_foam_01' }, - ['-1170897115'] = { Name = 'cs2_09_foam_02' }, - ['962659714'] = { Name = 'cs2_09_foam_03' }, - ['-464726826'] = { Name = 'cs2_09_glue_02' }, - ['-1691827569'] = { Name = 'cs2_09_glue_03' }, - ['-924312051'] = { Name = 'cs2_09_glue_04' }, - ['707420292'] = { Name = 'cs2_09_glue_06' }, - ['1091115029'] = { Name = 'cs2_09_inletrck2' }, - ['-251245995'] = { Name = 'cs2_09_island_hut_d' }, - ['1035108517'] = { Name = 'cs2_09_island_hut' }, - ['-69834761'] = { Name = 'cs2_09_jetty_ovr001' }, - ['-578137453'] = { Name = 'cs2_09_jettymr' }, - ['-1692280307'] = { Name = 'cs2_09_land01_d' }, - ['1145883224'] = { Name = 'cs2_09_land01_d001' }, - ['-1821861993'] = { Name = 'cs2_09_land01_road' }, - ['1808661511'] = { Name = 'cs2_09_land01' }, - ['1000086436'] = { Name = 'cs2_09_land02' }, - ['-1718309822'] = { Name = 'cs2_09_land023_02_d' }, - ['-2108467067'] = { Name = 'cs2_09_land023_d' }, - ['1484805460'] = { Name = 'cs2_09_land03' }, - ['1589203720'] = { Name = 'cs2_09_land04_decal' }, - ['1723068859'] = { Name = 'cs2_09_land04' }, - ['1007524975'] = { Name = 'cs2_09_land05' }, - ['-1946071782'] = { Name = 'cs2_09_land06_02_d' }, - ['-488479111'] = { Name = 'cs2_09_land06_d' }, - ['1421965715'] = { Name = 'cs2_09_land06_road' }, - ['1243363468'] = { Name = 'cs2_09_land06' }, - ['-1682744391'] = { Name = 'cs2_09_land07' }, - ['-785172100'] = { Name = 'cs2_09_land08_d' }, - ['974592106'] = { Name = 'cs2_09_land08_gully_d' }, - ['1876624393'] = { Name = 'cs2_09_land08' }, - ['2133369508'] = { Name = 'cs2_09_land09' }, - ['542043075'] = { Name = 'cs2_09_land10' }, - ['367510715'] = { Name = 'cs2_09_land11_decal' }, - ['212845753'] = { Name = 'cs2_09_land11' }, - ['653195575'] = { Name = 'cs2_09_land12' }, - ['-899651958'] = { Name = 'cs2_09_land13_decal' }, - ['-115139168'] = { Name = 'cs2_09_land13' }, - ['-1967373041'] = { Name = 'cs2_09_land14_d' }, - ['57225772'] = { Name = 'cs2_09_land14' }, - ['754954829'] = { Name = 'cs2_09_land14b_d' }, - ['1055983126'] = { Name = 'cs2_09_land15_decal' }, - ['1601432128'] = { Name = 'cs2_09_land15' }, - ['834539221'] = { Name = 'cs2_09_land16' }, - ['-1070802049'] = { Name = 'cs2_09_ret_wall_01' }, - ['-2063243983'] = { Name = 'cs2_09_ret_wall_02' }, - ['1391034618'] = { Name = 'cs2_09_ret_wall_03' }, - ['1872663110'] = { Name = 'cs2_09_retaining_wall_12' }, - ['1264404932'] = { Name = 'cs2_09_retaining_wall_13' }, - ['956898124'] = { Name = 'cs2_09_retaining_wall_21' }, - ['-803010080'] = { Name = 'cs2_09_retaining_walla001' }, - ['-1047633182'] = { Name = 'cs2_09_retaining_wallb_005' }, - ['-536883256'] = { Name = 'cs2_09_retaining_walld_001' }, - ['-229706650'] = { Name = 'cs2_09_retaining_walld_002' }, - ['-877024976'] = { Name = 'cs2_09_retwall002' }, - ['1379796083'] = { Name = 'cs2_09_sea_beachline_decal' }, - ['2088344092'] = { Name = 'cs2_09_sea_brace3_d' }, - ['636803673'] = { Name = 'cs2_09_sea_brace4_d' }, - ['243100071'] = { Name = 'cs2_09_sea_uw_00' }, - ['-533033694'] = { Name = 'cs2_09_sea_uw_01' }, - ['-1979958658'] = { Name = 'cs2_09_sea_uw_02_lod' }, - ['-345529476'] = { Name = 'cs2_09_sea_uw_02' }, - ['-1138899735'] = { Name = 'cs2_09_sea_uw_03' }, - ['-680133735'] = { Name = 'cs2_09_sea_uw_04' }, - ['-1456529652'] = { Name = 'cs2_09_sea_uw_05' }, - ['-1203061437'] = { Name = 'cs2_09_sea_uw_06' }, - ['-2066852281'] = { Name = 'cs2_09_sea_uw_07' }, - ['-1817119732'] = { Name = 'cs2_09_sea_uw_08' }, - ['1853467038'] = { Name = 'cs2_09_sea_uw_09' }, - ['-1436770225'] = { Name = 'cs2_09_sea_uw_10' }, - ['-1658911276'] = { Name = 'cs2_09_sea_uw_11' }, - ['-938452042'] = { Name = 'cs2_09_sea_uw_12' }, - ['880438476'] = { Name = 'cs2_09_sea_uw_13_lod' }, - ['2022653105'] = { Name = 'cs2_09_sea_uw_13' }, - ['850715730'] = { Name = 'cs2_09_sea_uw_14_lod' }, - ['1768201820'] = { Name = 'cs2_09_sea_uw_14' }, - ['-2061893616'] = { Name = 'cs2_09_sea_uw_15_lod' }, - ['-1822821818'] = { Name = 'cs2_09_sea_uw_15' }, - ['2134034936'] = { Name = 'cs2_09_sea_uw_16' }, - ['-1905953956'] = { Name = 'cs2_09_sea_uw_decals00' }, - ['-2145921343'] = { Name = 'cs2_09_sea_uw_decals01' }, - ['817903639'] = { Name = 'cs2_09_sea_uw_decals02' }, - ['612999082'] = { Name = 'cs2_09_sea_uw_decals03' }, - ['1576211068'] = { Name = 'cs2_09_sea_uw_decals04' }, - ['-845516343'] = { Name = 'cs2_09_sea_uw_decals05' }, - ['-2106008697'] = { Name = 'cs2_09_sea_uw_decals06' }, - ['1948663522'] = { Name = 'cs2_09_sea_uw_decals07' }, - ['183495799'] = { Name = 'cs2_09_sea_uw_decals08' }, - ['-159267941'] = { Name = 'cs2_09_sea_uw_decals09' }, - ['1766991962'] = { Name = 'cs2_09_sea_uw_decals10' }, - ['-1150923647'] = { Name = 'cs2_09_sea_uw_decals11' }, - ['-1802207522'] = { Name = 'cs2_09_sea_uw_decals12' }, - ['1591284584'] = { Name = 'cs2_09_sea_uw_decals13' }, - ['-1476319817'] = { Name = 'cs2_09_sea_uw_decals14' }, - ['307100243'] = { Name = 'cs2_09_sea_uw_decals15' }, - ['-881202008'] = { Name = 'cs2_09_sea_uw_decals16' }, - ['-1781235362'] = { Name = 'cs2_09_sea_uw_decals17' }, - ['-477324187'] = { Name = 'cs2_09_sea_uw_decals18' }, - ['-235062970'] = { Name = 'cs2_09_sea_uw_decals19' }, - ['248803764'] = { Name = 'cs2_09_sea_uw_decals20' }, - ['-49328598'] = { Name = 'cs2_09_sea_uw_decals21' }, - ['-1416877279'] = { Name = 'cs2_09_sea_uw_decals22' }, - ['-1714288723'] = { Name = 'cs2_09_sea_uw_decals23' }, - ['971491294'] = { Name = 'cs2_09_sea_uw_decals24' }, - ['-467788724'] = { Name = 'cs2_09_sea_uw_decals25' }, - ['307755199'] = { Name = 'cs2_09_sea_uw_decals26' }, - ['-1800881776'] = { Name = 'cs2_09_slip_decal002' }, - ['1660895535'] = { Name = 'cs2_09_sml_farm_shed' }, - ['-671756706'] = { Name = 'cs2_09_smll_farmhse_c' }, - ['36877523'] = { Name = 'cs2_09_surfacerock' }, - ['-1825722687'] = { Name = 'cs2_09_weed_01' }, - ['503137370'] = { Name = 'cs2_09_weed_03' }, - ['171349756'] = { Name = 'cs2_09_woodbits01' }, - ['1107920581'] = { Name = 'cs2_09_woodbits04' }, - ['-1340668998'] = { Name = 'cs2_09_wretainer01' }, - ['-1451526485'] = { Name = 'cs2_09_wretainer02' }, - ['16000371'] = { Name = 'cs2_09_wretainer04' }, - ['369133250'] = { Name = 'cs2_09b_armco_01' }, - ['-322522033'] = { Name = 'cs2_09b_armco_02' }, - ['1066228187'] = { Name = 'cs2_09b_armco_03' }, - ['-1214658034'] = { Name = 'cs2_09b_armco_04' }, - ['1716987786'] = { Name = 'cs2_09b_armco_05' }, - ['1410630405'] = { Name = 'cs2_09b_armco_06' }, - ['-1899235213'] = { Name = 'cs2_09b_armco_07' }, - ['224523677'] = { Name = 'cs2_09b_armco_08' }, - ['-82620160'] = { Name = 'cs2_09b_armco_09' }, - ['-1516797641'] = { Name = 'cs2_09b_cs_09b_emissive' }, - ['1352005601'] = { Name = 'cs2_09b_decals_01' }, - ['702458483'] = { Name = 'cs2_09b_decals_02' }, - ['-316526353'] = { Name = 'cs2_09b_decals_03' }, - ['-556559278'] = { Name = 'cs2_09b_decals_04' }, - ['-2133993392'] = { Name = 'cs2_09b_decals_05' }, - ['1929919685'] = { Name = 'cs2_09b_decals_06' }, - ['-2006063216'] = { Name = 'cs2_09b_decals_08' }, - ['-1854863790'] = { Name = 'cs2_09b_decals_10' }, - ['-661318503'] = { Name = 'cs2_09b_decals_11' }, - ['-1241591955'] = { Name = 'cs2_09b_decals_12' }, - ['-49554042'] = { Name = 'cs2_09b_decals_13' }, - ['1640459209'] = { Name = 'cs2_09b_emissive_lod' }, - ['443843198'] = { Name = 'cs2_09b_erotube_01' }, - ['-1689123785'] = { Name = 'cs2_09b_erotube_02' }, - ['-917053376'] = { Name = 'cs2_09b_erotube_03' }, - ['-1070805524'] = { Name = 'cs2_09b_erotube_04' }, - ['-308500273'] = { Name = 'cs2_09b_erotube_05' }, - ['1918415429'] = { Name = 'cs2_09b_erotube_06' }, - ['225397855'] = { Name = 'cs2_09b_fence_01' }, - ['405365203'] = { Name = 'cs2_09b_fence_02' }, - ['1073918357'] = { Name = 'cs2_09b_fence_05' }, - ['1371034880'] = { Name = 'cs2_09b_fence_06' }, - ['1535010956'] = { Name = 'cs2_09b_fence_07' }, - ['1737261224'] = { Name = 'cs2_09b_fence_08' }, - ['2034902051'] = { Name = 'cs2_09b_fence_09' }, - ['-227207285'] = { Name = 'cs2_09b_fence_10' }, - ['196364809'] = { Name = 'cs2_09b_fence_11' }, - ['1632325147'] = { Name = 'cs2_09b_glue_01' }, - ['-185469594'] = { Name = 'cs2_09b_glue_07' }, - ['1394731946'] = { Name = 'cs2_09b_hut01' }, - ['-587839047'] = { Name = 'cs2_09b_land01_d' }, - ['623806021'] = { Name = 'cs2_09b_land01' }, - ['-1657644544'] = { Name = 'cs2_09b_land02_d' }, - ['333538255'] = { Name = 'cs2_09b_land02' }, - ['81730753'] = { Name = 'cs2_09b_land022_d' }, - ['-433059731'] = { Name = 'cs2_09b_land03' }, - ['1837770078'] = { Name = 'cs2_09b_land04_d' }, - ['-149837264'] = { Name = 'cs2_09b_land04' }, - ['188745269'] = { Name = 'cs2_09b_land05_d' }, - ['-912470201'] = { Name = 'cs2_09b_land05' }, - ['2062654973'] = { Name = 'cs2_09b_land06_d' }, - ['1290327517'] = { Name = 'cs2_09b_land06' }, - ['1591867855'] = { Name = 'cs2_09b_land07' }, - ['808393834'] = { Name = 'cs2_09b_land08' }, - ['38715562'] = { Name = 'cs2_09b_land09' }, - ['-1041031437'] = { Name = 'cs2_09b_tower01_frame' }, - ['-581891342'] = { Name = 'cs2_09b_tower01' }, - ['-786455435'] = { Name = 'cs2_09b_weed_02' }, - ['-1152150398'] = { Name = 'cs2_10_beach01_d' }, - ['256852792'] = { Name = 'cs2_10_beach01b_d' }, - ['1590650662'] = { Name = 'cs2_10_beach02_d' }, - ['872696121'] = { Name = 'cs2_10_beach02b_d' }, - ['-1334138803'] = { Name = 'cs2_10_beach03_d' }, - ['-2108002528'] = { Name = 'cs2_10_beach04_d' }, - ['1239657132'] = { Name = 'cs2_10_beach1' }, - ['1538477643'] = { Name = 'cs2_10_beach2' }, - ['-1504713849'] = { Name = 'cs2_10_beach3' }, - ['957614349'] = { Name = 'cs2_10_beach4' }, - ['-1839907950'] = { Name = 'cs2_10_beach5' }, - ['603479311'] = { Name = 'cs2_10_brdgeplatform_01_lod' }, - ['-113162928'] = { Name = 'cs2_10_brdgeplatform_01' }, - ['537918355'] = { Name = 'cs2_10_coastrock005' }, - ['-1230560769'] = { Name = 'cs2_10_coastrock020' }, - ['-1617857580'] = { Name = 'cs2_10_coastrock029' }, - ['-1725175475'] = { Name = 'cs2_10_coastrock041' }, - ['191221183'] = { Name = 'cs2_10_coastrock047' }, - ['-1509342869'] = { Name = 'cs2_10_coastrock066' }, - ['-1036721888'] = { Name = 'cs2_10_coastrocka01' }, - ['-1814166413'] = { Name = 'cs2_10_coastrocka02' }, - ['-213630078'] = { Name = 'cs2_10_coastrocka03' }, - ['385354473'] = { Name = 'cs2_10_coastrocka05' }, - ['1219292754'] = { Name = 'cs2_10_coastrocka06' }, - ['-1547250215'] = { Name = 'cs2_10_concrete' }, - ['-550849825'] = { Name = 'cs2_10_corrielake_lod' }, - ['-1156070353'] = { Name = 'cs2_10_corrielake_water' }, - ['-1915525643'] = { Name = 'cs2_10_culvert01' }, - ['2082849434'] = { Name = 'cs2_10_culvert02' }, - ['-14628734'] = { Name = 'cs2_10_culvert03' }, - ['-1852047407'] = { Name = 'cs2_10_foam_01' }, - ['2137086812'] = { Name = 'cs2_10_foam_02' }, - ['-634056438'] = { Name = 'cs2_10_foam_03' }, - ['184021647'] = { Name = 'cs2_10_foam_04' }, - ['-974690201'] = { Name = 'cs2_10_foam_05' }, - ['-327502443'] = { Name = 'cs2_10_foam_06' }, - ['-577693786'] = { Name = 'cs2_10_foam_07' }, - ['-1221866780'] = { Name = 'cs2_10_foam_08' }, - ['-975214517'] = { Name = 'cs2_10_foam_09' }, - ['-1192234787'] = { Name = 'cs2_10_foam_10' }, - ['576062455'] = { Name = 'cs2_10_glue_01' }, - ['-1006713018'] = { Name = 'cs2_10_glue_02' }, - ['-571016394'] = { Name = 'cs2_10_glue_03' }, - ['-392884094'] = { Name = 'cs2_10_glue_04' }, - ['-84192648'] = { Name = 'cs2_10_land01' }, - ['1168861143'] = { Name = 'cs2_10_land02' }, - ['525802287'] = { Name = 'cs2_10_land03' }, - ['1753492880'] = { Name = 'cs2_10_land04' }, - ['-497361683'] = { Name = 'cs2_10_land05_d' }, - ['835371030'] = { Name = 'cs2_10_land05' }, - ['-2099449075'] = { Name = 'cs2_10_land05b_d' }, - ['-250134848'] = { Name = 'cs2_10_land06' }, - ['-1150823582'] = { Name = 'cs2_10_land07' }, - ['71689501'] = { Name = 'cs2_10_land08' }, - ['-561276503'] = { Name = 'cs2_10_land09' }, - ['37645122'] = { Name = 'cs2_10_land10' }, - ['-827002267'] = { Name = 'cs2_10_land11_d_b' }, - ['-1802498073'] = { Name = 'cs2_10_land11' }, - ['-1752033809'] = { Name = 'cs2_10_land12' }, - ['-1461438317'] = { Name = 'cs2_10_land13' }, - ['-1151935112'] = { Name = 'cs2_10_land14' }, - ['-1114250762'] = { Name = 'cs2_10_land15' }, - ['289595645'] = { Name = 'cs2_10_mast_base' }, - ['-1600115913'] = { Name = 'cs2_10_nland01_d' }, - ['-2078999202'] = { Name = 'cs2_10_nland03_d' }, - ['-485520592'] = { Name = 'cs2_10_nland04_d' }, - ['10270561'] = { Name = 'cs2_10_nland05_d' }, - ['-607327457'] = { Name = 'cs2_10_nland06_d' }, - ['-332143945'] = { Name = 'cs2_10_nland07_d' }, - ['1335610100'] = { Name = 'cs2_10_pool001' }, - ['586670504'] = { Name = 'cs2_10_pool01_lod' }, - ['-1555537623'] = { Name = 'cs2_10_rckdecal02' }, - ['2035879243'] = { Name = 'cs2_10_rckdecal03' }, - ['-1770272880'] = { Name = 'cs2_10_rckdecal05' }, - ['1816326943'] = { Name = 'cs2_10_rckdecal06' }, - ['224343385'] = { Name = 'cs2_10_rckdecal08' }, - ['-1320485959'] = { Name = 'cs2_10_retaining_wall_new_01' }, - ['-1172588226'] = { Name = 'cs2_10_retainwallnew_01_lod' }, - ['-151882287'] = { Name = 'cs2_10_sea_00_lod' }, - ['1583763023'] = { Name = 'cs2_10_sea_02_lod' }, - ['-626922531'] = { Name = 'cs2_10_sea_03_lod' }, - ['1513749979'] = { Name = 'cs2_10_sea_04_lod' }, - ['-77238582'] = { Name = 'cs2_10_sea_05_lod' }, - ['1870523372'] = { Name = 'cs2_10_sea_06_lod' }, - ['1139959993'] = { Name = 'cs2_10_sea_07_lod' }, - ['-382705409'] = { Name = 'cs2_10_sea_cs2_10_duster_lod' }, - ['-1410973081'] = { Name = 'cs2_10_sea_duster1' }, - ['179174997'] = { Name = 'cs2_10_sea_rocks_lod' }, - ['-2037955469'] = { Name = 'cs2_10_sea_rubble' }, - ['962669262'] = { Name = 'cs2_10_sea_shipwreck_lod' }, - ['2056618673'] = { Name = 'cs2_10_sea_shipwreck' }, - ['813283948'] = { Name = 'cs2_10_sea_sub_00' }, - ['-172276520'] = { Name = 'cs2_10_sea_sub_01' }, - ['-1858308062'] = { Name = 'cs2_10_sea_sweed1' }, - ['-1876315387'] = { Name = 'cs2_10_sea_uw_dec_00' }, - ['-947543620'] = { Name = 'cs2_10_sea_uw_dec_01' }, - ['-1665971176'] = { Name = 'cs2_10_sea_uw_dec_02' }, - ['1194467611'] = { Name = 'cs2_10_sea_uw_dec_04' }, - ['1709989519'] = { Name = 'cs2_10_sea_uw_dec_05' }, - ['1940257282'] = { Name = 'cs2_10_sea_uw_dec_06' }, - ['-109771358'] = { Name = 'cs2_10_sea_uw_dec_07' }, - ['121348399'] = { Name = 'cs2_10_sea_uw_dec_08' }, - ['637656763'] = { Name = 'cs2_10_sea_uw_dec_09' }, - ['-877353366'] = { Name = 'cs2_10_sea_uw_dec_10' }, - ['90184132'] = { Name = 'cs2_10_sea_uw_dec_11' }, - ['-148275885'] = { Name = 'cs2_10_sea_uw_dec_12' }, - ['550359199'] = { Name = 'cs2_10_sea_uw_dec_13' }, - ['460899829'] = { Name = 'cs2_10_sea_uw_dec_14' }, - ['271232977'] = { Name = 'cs2_10_sea_uw_dec_15' }, - ['-40301906'] = { Name = 'cs2_10_sea_uw_dec_16' }, - ['726099466'] = { Name = 'cs2_10_sea_uw_dec_17' }, - ['426426961'] = { Name = 'cs2_10_sea_uw_dec_18' }, - ['1456880935'] = { Name = 'cs2_10_sea_uw_dec_19' }, - ['1198530371'] = { Name = 'cs2_10_sea_uw_dec_20' }, - ['-709098751'] = { Name = 'cs2_10_sea_uw1_00' }, - ['829045344'] = { Name = 'cs2_10_sea_uw1_02' }, - ['493884012'] = { Name = 'cs2_10_sea_uw1_03' }, - ['-1899989749'] = { Name = 'cs2_10_sea_uw1_04' }, - ['2029865349'] = { Name = 'cs2_10_sea_uw1_05' }, - ['1797369294'] = { Name = 'cs2_10_sea_uw1_06' }, - ['-624161235'] = { Name = 'cs2_10_sea_uw1_07' }, - ['-1992685819'] = { Name = 'cs2_10_sea_uw2_00' }, - ['-540724194'] = { Name = 'cs2_10_sea_uw2_03' }, - ['-838889325'] = { Name = 'cs2_10_sea_uw2_04' }, - ['1317605800'] = { Name = 'cs2_10_sea_uw2_05' }, - ['2127295021'] = { Name = 'cs2_10_sea_uw2_06' }, - ['1914198214'] = { Name = 'cs2_10_sea_uw2_07' }, - ['429303744'] = { Name = 'cs2_10_sea_uw2_08' }, - ['-1718933589'] = { Name = 'cs2_10_sea_uw2_09' }, - ['-1788666837'] = { Name = 'cs2_10_sea_uw2_10' }, - ['-596235692'] = { Name = 'cs2_10_sea_uw2_11' }, - ['46167784'] = { Name = 'cs2_10_sea_uw2_12' }, - ['694633525'] = { Name = 'cs2_10_sea_uw2_15' }, - ['935059678'] = { Name = 'cs2_10_sea_uw2_16' }, - ['384868168'] = { Name = 'cs2_10_sea_uw2_17' }, - ['622869415'] = { Name = 'cs2_10_sea_uw2_18' }, - ['-372980479'] = { Name = 'cs2_10_sea_uw2_19' }, - ['-1574029663'] = { Name = 'cs2_10_sea_uw2_20' }, - ['-19730451'] = { Name = 'cs2_10_sea_uw2_21' }, - ['-316388208'] = { Name = 'cs2_10_sea_uw2_22' }, - ['-632871210'] = { Name = 'cs2_10_sea_uw2_23' }, - ['-939425205'] = { Name = 'cs2_10_sea_uw2_24' }, - ['-1868984364'] = { Name = 'cs2_10_sea_uwrocks_00' }, - ['2044093006'] = { Name = 'cs2_10_sea_uwrocks_01' }, - ['1778959027'] = { Name = 'cs2_10_sea_uwrocks_02' }, - ['1468276138'] = { Name = 'cs2_10_sea_uwrocks_04' }, - ['-1329695661'] = { Name = 'cs2_10_sea_wrk07' }, - ['-1740324004'] = { Name = 'cs2_10_sea_wrk08' }, - ['-781010661'] = { Name = 'cs2_10_sea_wrk10' }, - ['-1339271539'] = { Name = 'cs2_10_slod1_culvert' }, - ['-251816620'] = { Name = 'cs2_10_substation_slod' }, - ['252769930'] = { Name = 'cs2_10_substation' }, - ['-562918615'] = { Name = 'cs2_10_trailfnc_001' }, - ['-764972273'] = { Name = 'cs2_10_trailfnc_002' }, - ['-1054879616'] = { Name = 'cs2_10_trailfnc_003' }, - ['-1225147340'] = { Name = 'cs2_10_trailfnc_004' }, - ['1883287235'] = { Name = 'cs2_10_trailfnc_007' }, - ['2107181432'] = { Name = 'cs2_10_trailfnc_base_001' }, - ['-1420532498'] = { Name = 'cs2_10_trailfnc_base_002' }, - ['-1728135101'] = { Name = 'cs2_10_trailfnc_base_003' }, - ['-677888651'] = { Name = 'cs2_10_trailfnc_base_005' }, - ['-203098610'] = { Name = 'cs2_10_trailfnc_base_007' }, - ['-850729350'] = { Name = 'cs2_10_trailretainer_001' }, - ['533793669'] = { Name = 'cs2_10_trailretainer_003' }, - ['-778094851'] = { Name = 'cs2_10_weed_01' }, - ['-2094294505'] = { Name = 'cs2_10_weed_02' }, - ['-1292273230'] = { Name = 'cs2_10_weed_03' }, - ['1143434281'] = { Name = 'cs2_11_armco_wood' }, - ['-1775380459'] = { Name = 'cs2_11_armco_wood01' }, - ['1638330120'] = { Name = 'cs2_11_armco_wood02' }, - ['-1216099658'] = { Name = 'cs2_11_armco' }, - ['656187983'] = { Name = 'cs2_11_build_emmi01_lod' }, - ['787090600'] = { Name = 'cs2_11_build_emmi01' }, - ['-939084176'] = { Name = 'cs2_11_coastdecal01' }, - ['-1245310481'] = { Name = 'cs2_11_coastdecal02' }, - ['729611611'] = { Name = 'cs2_11_coastdecal03' }, - ['-1428915188'] = { Name = 'cs2_11_coastdecal04' }, - ['1964365687'] = { Name = 'cs2_11_coastrock006' }, - ['-881261512'] = { Name = 'cs2_11_coastrock009' }, - ['-1627741304'] = { Name = 'cs2_11_coastrock014' }, - ['-205172100'] = { Name = 'cs2_11_coastrock020' }, - ['229475916'] = { Name = 'cs2_11_coastrock026' }, - ['-1341076404'] = { Name = 'cs2_11_coastrock031' }, - ['-1246080041'] = { Name = 'cs2_11_coastrock045' }, - ['2122376549'] = { Name = 'cs2_11_coastrock049' }, - ['-1674338626'] = { Name = 'cs2_11_coastrock062' }, - ['-204157445'] = { Name = 'cs2_11_coastrock067' }, - ['1516903480'] = { Name = 'cs2_11_coastrock072' }, - ['-1287401978'] = { Name = 'cs2_11_coastrock076' }, - ['-1782084086'] = { Name = 'cs2_11_coastrock080' }, - ['-406965770'] = { Name = 'cs2_11_coastrock081' }, - ['-1504157544'] = { Name = 'cs2_11_corrierock' }, - ['753175926'] = { Name = 'cs2_11_dd_culvert' }, - ['-1014991186'] = { Name = 'cs2_11_decal020' }, - ['-404220964'] = { Name = 'cs2_11_decal2' }, - ['-101074945'] = { Name = 'cs2_11_decal3' }, - ['745998276'] = { Name = 'cs2_11_foam_01' }, - ['579171381'] = { Name = 'cs2_11_foam_02' }, - ['1346981736'] = { Name = 'cs2_11_foam_03' }, - ['93885054'] = { Name = 'cs2_11_footbridge002_slod1' }, - ['2112882691'] = { Name = 'cs2_11_footbridge01_slod1' }, - ['291011066'] = { Name = 'cs2_11_footbridge01' }, - ['-1911852190'] = { Name = 'cs2_11_footbridge02' }, - ['-1926772878'] = { Name = 'cs2_11_ftbdge02rails' }, - ['-1358281244'] = { Name = 'cs2_11_ftbridge_rails01' }, - ['1054895182'] = { Name = 'cs2_11_gasstation_a' }, - ['962401524'] = { Name = 'cs2_11_gasstation_awire' }, - ['-584111891'] = { Name = 'cs2_11_gasstation_b' }, - ['574998969'] = { Name = 'cs2_11_gasstation_bwire' }, - ['299962956'] = { Name = 'cs2_11_gasstation_d' }, - ['402090516'] = { Name = 'cs2_11_gasstion_a_poles_lod' }, - ['-408315337'] = { Name = 'cs2_11_gasstion_a_poles' }, - ['-873067045'] = { Name = 'cs2_11_gasstion_b_lod' }, - ['-474049055'] = { Name = 'cs2_11_gasstion_b_poles' }, - ['1599095109'] = { Name = 'cs2_11_gasstionb_rail' }, - ['-525546181'] = { Name = 'cs2_11_gavdecal_01' }, - ['1719785719'] = { Name = 'cs2_11_gavdecal_03' }, - ['799271736'] = { Name = 'cs2_11_gavdecal_04' }, - ['527977185'] = { Name = 'cs2_11_gavdecal_07' }, - ['21163419'] = { Name = 'cs2_11_glue_02' }, - ['-864410758'] = { Name = 'cs2_11_inlet01' }, - ['-910723807'] = { Name = 'cs2_11_inlet01coast_d' }, - ['155843367'] = { Name = 'cs2_11_land01' }, - ['305603184'] = { Name = 'cs2_11_land010' }, - ['33391101'] = { Name = 'cs2_11_land011' }, - ['-652937340'] = { Name = 'cs2_11_land02_d' }, - ['-1683447838'] = { Name = 'cs2_11_land02' }, - ['-1192640164'] = { Name = 'cs2_11_land03_d6' }, - ['-369091852'] = { Name = 'cs2_11_land03_decal1' }, - ['1837286295'] = { Name = 'cs2_11_land03' }, - ['1960130196'] = { Name = 'cs2_11_land04_decal001' }, - ['2135189274'] = { Name = 'cs2_11_land04' }, - ['1333899587'] = { Name = 'cs2_11_land05_d' }, - ['1356663372'] = { Name = 'cs2_11_land05' }, - ['1620552129'] = { Name = 'cs2_11_land06' }, - ['404396232'] = { Name = 'cs2_11_land07' }, - ['-203860327'] = { Name = 'cs2_11_land08_d8' }, - ['702102597'] = { Name = 'cs2_11_land08' }, - ['1809432673'] = { Name = 'cs2_11_land09' }, - ['-1577470102'] = { Name = 'cs2_11_market_dec' }, - ['-1760132770'] = { Name = 'cs2_11_newdecal01' }, - ['267609129'] = { Name = 'cs2_11_prereflect_dummy' }, - ['-874599360'] = { Name = 'cs2_11_prereflect_prox' }, - ['1155842485'] = { Name = 'cs2_11_refprox_08' }, - ['-841624679'] = { Name = 'cs2_11_refprox_09' }, - ['-621274213'] = { Name = 'cs2_11_sea_marina_xr_rocks_03_lod' }, - ['-12053838'] = { Name = 'cs2_11_sea_uw_dec_00' }, - ['1674337209'] = { Name = 'cs2_11_sea_uw_dec_02' }, - ['1912666146'] = { Name = 'cs2_11_sea_uw_dec_03' }, - ['1144200327'] = { Name = 'cs2_11_sea_uw_dec_04' }, - ['-1463589462'] = { Name = 'cs2_11_sea_uw_dec_06' }, - ['830029088'] = { Name = 'cs2_11_sea_uw_decb_00' }, - ['578756396'] = { Name = 'cs2_11_sea_uw_decb_01' }, - ['885539774'] = { Name = 'cs2_11_sea_uw_decb_02' }, - ['-1222639933'] = { Name = 'cs2_11_sea_uw1_00_lod' }, - ['1171063091'] = { Name = 'cs2_11_sea_uw1_00' }, - ['-51412718'] = { Name = 'cs2_11_sea_uw1_00bb_lod' }, - ['2092959329'] = { Name = 'cs2_11_sea_uw1_00bb' }, - ['1601062536'] = { Name = 'cs2_11_sea_uw1_00bc_lod' }, - ['-1351455803'] = { Name = 'cs2_11_sea_uw1_00bc' }, - ['882091158'] = { Name = 'cs2_11_sea_uw1_01_lod' }, - ['2074045655'] = { Name = 'cs2_11_sea_uw1_01' }, - ['-729576440'] = { Name = 'cs2_11_sea_uw1_02_lod' }, - ['1783220780'] = { Name = 'cs2_11_sea_uw1_02' }, - ['-1548103277'] = { Name = 'cs2_11_sea_uw1_03_cc_d' }, - ['103267014'] = { Name = 'cs2_11_sea_uw1_03_d' }, - ['-686156265'] = { Name = 'cs2_11_sea_uw1_03_lod' }, - ['538981850'] = { Name = 'cs2_11_sea_uw1_03' }, - ['1387599726'] = { Name = 'cs2_11_sea_uw1_03bb_d' }, - ['-966601320'] = { Name = 'cs2_11_sea_uw2_00' }, - ['703405231'] = { Name = 'cs2_11_sea_uw2_06' }, - ['1412198701'] = { Name = 'cs2_11_sea_uw2_07' }, - ['1181603248'] = { Name = 'cs2_11_sea_uw2_08' }, - ['1888889348'] = { Name = 'cs2_11_sea_uw2_09' }, - ['149739879'] = { Name = 'cs2_11_sea_uw2_10' }, - ['1460106651'] = { Name = 'cs2_11_sea_uw2_11' }, - ['-345924015'] = { Name = 'cs2_11_sea_uw2_12' }, - ['71684161'] = { Name = 'cs2_11_sea_uw2_13' }, - ['470613967'] = { Name = 'cs2_11_sea_uw2_14' }, - ['-505345160'] = { Name = 'cs2_11_sea_uw2_15' }, - ['-852598253'] = { Name = 'cs2_11_sea_uw2_17' }, - ['1625721221'] = { Name = 'cs2_11_sea_uw2_18' }, - ['-1365695255'] = { Name = 'cs2_11_sea_uw2_19' }, - ['234283603'] = { Name = 'cs2_11_sea_uw2_20' }, - ['-1233013938'] = { Name = 'cs2_11_sea_uw2_21' }, - ['2043585629'] = { Name = 'cs2_11_sea_uw2_22_lod' }, - ['-933734661'] = { Name = 'cs2_11_sea_uw2_22' }, - ['81147930'] = { Name = 'cs2_11_sea_uw2_23_lod' }, - ['-788109225'] = { Name = 'cs2_11_sea_uw2_23' }, - ['1013210493'] = { Name = 'cs2_11_sea_uw2_24_lod' }, - ['1690505170'] = { Name = 'cs2_11_sea_uw2_24' }, - ['-1250383451'] = { Name = 'cs2_11_shark_sign_legs' }, - ['1110126753'] = { Name = 'cs2_11_shark_sign_ovl' }, - ['-1859753111'] = { Name = 'cs2_11_shark_sign' }, - ['-736300681'] = { Name = 'cs2_11_trailrrefs' }, - ['-846196102'] = { Name = 'cs2_11_weed_02' }, - ['-1964208848'] = { Name = 'cs2_11_weed_03' }, - ['1112539596'] = { Name = 'cs2_11_weldshed_d' }, - ['1858656008'] = { Name = 'cs2_11_wire01' }, - ['2107602101'] = { Name = 'cs2_11_wire02' }, - ['312975047'] = { Name = 'cs2_11_wire03' }, - ['544291418'] = { Name = 'cs2_11_wire04' }, - ['254806794'] = { Name = 'cs2_11_woodbits01' }, - ['-1611080203'] = { Name = 'cs2_11_woodbits013' }, - ['1685173644'] = { Name = 'cs2_11_woodbits03' }, - ['747521402'] = { Name = 'cs2_11_woodbits04' }, - ['986964485'] = { Name = 'cs2_11_woodbits05' }, - ['-1993244993'] = { Name = 'cs2_11_woodbits06' }, - ['1464310508'] = { Name = 'cs2_11_woodbits07' }, - ['-169551764'] = { Name = 'cs2_11_woodbits08' }, - ['362518713'] = { Name = 'cs2_11_woodbits10' }, - ['690569172'] = { Name = 'cs2_11_woodbits11' }, - ['1528538040'] = { Name = 'cs2_11_woodbits12' }, - ['1304607615'] = { Name = 'cs2_29_bio_depts' }, - ['-807038535'] = { Name = 'cs2_29_bio_det00' }, - ['434939334'] = { Name = 'cs2_29_bio_det01' }, - ['-2048143543'] = { Name = 'cs2_29_bio_det02_a' }, - ['664027413'] = { Name = 'cs2_29_bio_det02' }, - ['-44176215'] = { Name = 'cs2_29_bio_det03' }, - ['-717711535'] = { Name = 'cs2_29_bio_det04_a' }, - ['185632782'] = { Name = 'cs2_29_bio_det04' }, - ['947397556'] = { Name = 'cs2_29_bio_det05_a' }, - ['1893094300'] = { Name = 'cs2_29_bio_det05' }, - ['2121690844'] = { Name = 'cs2_29_bio_det06' }, - ['1411226155'] = { Name = 'cs2_29_bio_det07' }, - ['1660621271'] = { Name = 'cs2_29_bio_det08_a' }, - ['1641723301'] = { Name = 'cs2_29_bio_det08' }, - ['2019285419'] = { Name = 'cs2_29_bio_det08b' }, - ['391954748'] = { Name = 'cs2_29_bio_det09_a' }, - ['-2090403659'] = { Name = 'cs2_29_bio_det09' }, - ['-1137629851'] = { Name = 'cs2_29_bio_det10_a' }, - ['-285947349'] = { Name = 'cs2_29_bio_det10' }, - ['-311447986'] = { Name = 'cs2_29_bio_det11_a' }, - ['-1856860436'] = { Name = 'cs2_29_bio_det11' }, - ['-1627575743'] = { Name = 'cs2_29_bio_det12' }, - ['1082552052'] = { Name = 'cs2_29_bio_det13_a' }, - ['-1379383337'] = { Name = 'cs2_29_bio_det13' }, - ['-216322410'] = { Name = 'cs2_29_bio_det14_a' }, - ['-1170612038'] = { Name = 'cs2_29_bio_det14' }, - ['-577501136'] = { Name = 'cs2_29_bio_det15_a' }, - ['1480924370'] = { Name = 'cs2_29_bio_det15' }, - ['1408763353'] = { Name = 'cs2_29_bio_det16_a' }, - ['1723054511'] = { Name = 'cs2_29_bio_det16' }, - ['1739137873'] = { Name = 'cs2_29_bio_det17_a' }, - ['1953551657'] = { Name = 'cs2_29_bio_det17' }, - ['1570898466'] = { Name = 'cs2_29_bio_det18_a' }, - ['-2060028236'] = { Name = 'cs2_29_bio_det18' }, - ['2091205977'] = { Name = 'cs2_29_bio_det19_a' }, - ['1066658632'] = { Name = 'cs2_29_bio_det19' }, - ['-339351917'] = { Name = 'cs2_29_bio_det20_a' }, - ['986768702'] = { Name = 'cs2_29_bio_det20' }, - ['137068532'] = { Name = 'cs2_29_bio_det21' }, - ['-1658027724'] = { Name = 'cs2_29_bio_det22_a' }, - ['358816355'] = { Name = 'cs2_29_bio_det22' }, - ['1883428427'] = { Name = 'cs2_29_bio_det23_a' }, - ['-784764580'] = { Name = 'cs2_29_bio_det24_a' }, - ['-238333132'] = { Name = 'cs2_29_bio_det24' }, - ['655904981'] = { Name = 'cs2_29_bio_det27_a' }, - ['-1766220554'] = { Name = 'cs2_29_bio_det27' }, - ['-1508557907'] = { Name = 'cs2_29_bio_det28' }, - ['1622244945'] = { Name = 'cs2_29_bio_ent_details' }, - ['1426649'] = { Name = 'cs2_29_bio_ent' }, - ['-532970120'] = { Name = 'cs2_29_bio_entgrass' }, - ['1975591262'] = { Name = 'cs2_29_bio_fence' }, - ['293688493'] = { Name = 'cs2_29_bio_grass_d' }, - ['1617660238'] = { Name = 'cs2_29_bio_main_garage' }, - ['-2051874269'] = { Name = 'cs2_29_bio_main_grge_rail' }, - ['-1423308592'] = { Name = 'cs2_29_bio_main_steps' }, - ['-673084529'] = { Name = 'cs2_29_bio_main' }, - ['-1208108076'] = { Name = 'cs2_29_bio_maina' }, - ['166322095'] = { Name = 'cs2_29_bio_mainb' }, - ['-609713363'] = { Name = 'cs2_29_bio_mainc' }, - ['-331668398'] = { Name = 'cs2_29_bio_maind' }, - ['1884302458'] = { Name = 'cs2_29_bio_maine' }, - ['-1024405062'] = { Name = 'cs2_29_bio_mainf' }, - ['538039963'] = { Name = 'cs2_29_bio_maingl' }, - ['-771297953'] = { Name = 'cs2_29_bio_rewall' }, - ['-1681225022'] = { Name = 'cs2_29_bio_wall' }, - ['1455365087'] = { Name = 'cs2_29_bio_water' }, - ['705897241'] = { Name = 'cs2_29_biolab_d' }, - ['1005176368'] = { Name = 'cs2_29_biolab116' }, - ['2018495383'] = { Name = 'cs2_29_biolab122' }, - ['1379139416'] = { Name = 'cs2_29_biolab123' }, - ['-1817630071'] = { Name = 'cs2_29_biolab126_rail01' }, - ['-2055238090'] = { Name = 'cs2_29_biolab126_rail02' }, - ['-2081559960'] = { Name = 'cs2_29_biolab126_railb01' }, - ['1097358785'] = { Name = 'cs2_29_biolab126' }, - ['-1023341959'] = { Name = 'cs2_29_biolab126b' }, - ['-665307865'] = { Name = 'cs2_29_biolab126c' }, - ['-470244633'] = { Name = 'cs2_29_biolab127' }, - ['-259885038'] = { Name = 'cs2_29_biolab127a_a' }, - ['-1965146058'] = { Name = 'cs2_29_biolab127b_a' }, - ['2129825209'] = { Name = 'cs2_29_biolab127d' }, - ['184722266'] = { Name = 'cs2_29_biolab135_a' }, - ['-1847430048'] = { Name = 'cs2_29_biolab135' }, - ['-1702802691'] = { Name = 'cs2_29_biolab135a' }, - ['1270295914'] = { Name = 'cs2_29_biolab135b' }, - ['-2135895555'] = { Name = 'cs2_29_biolab136' }, - ['1819602964'] = { Name = 'cs2_29_biolab144_rail' }, - ['-1710356417'] = { Name = 'cs2_29_biolab144' }, - ['-479599992'] = { Name = 'cs2_29_biolab144a' }, - ['-718780923'] = { Name = 'cs2_29_biolab144b' }, - ['30693334'] = { Name = 'cs2_29_biolab146' }, - ['1956024251'] = { Name = 'cs2_29_biolab146b' }, - ['2133185135'] = { Name = 'cs2_29_biolab147' }, - ['-800800646'] = { Name = 'cs2_29_biolab147a' }, - ['1500607934'] = { Name = 'cs2_29_biolab148_a' }, - ['-1854900476'] = { Name = 'cs2_29_biolab148' }, - ['1982434617'] = { Name = 'cs2_29_biolab148b' }, - ['635076041'] = { Name = 'cs2_29_biolab149_a' }, - ['1655052656'] = { Name = 'cs2_29_biolab149' }, - ['1685715645'] = { Name = 'cs2_29_biolab94' }, - ['-1107920450'] = { Name = 'cs2_29_biolab94a' }, - ['-1696124000'] = { Name = 'cs2_29_biolab94c' }, - ['458080031'] = { Name = 'cs2_29_biolabobs' }, - ['179117563'] = { Name = 'cs2_29_biotemp_fiz' }, - ['921198322'] = { Name = 'cs2_29_biotemp' }, - ['1773951908'] = { Name = 'cs2_29_cp01' }, - ['2070937355'] = { Name = 'cs2_29_cp02' }, - ['-1928808333'] = { Name = 'cs2_29_cp02c' }, - ['-205151507'] = { Name = 'cs2_29_cp02f_1' }, - ['1314805789'] = { Name = 'cs2_29_cp02f_2' }, - ['1612708768'] = { Name = 'cs2_29_cp02f_3' }, - ['1568698333'] = { Name = 'cs2_29_cpbarrier_01' }, - ['1406870969'] = { Name = 'cs2_29_cs2_base' }, - ['309800599'] = { Name = 'cs2_29_cs2_chem_aly' }, - ['182740057'] = { Name = 'cs2_29_cs5_3_ladder_002' }, - ['430703084'] = { Name = 'cs2_29_cs5_3_ladder_003' }, - ['-130564352'] = { Name = 'cs2_29_cs5_3_ladder_004' }, - ['83515525'] = { Name = 'cs2_29_cs5_3_ladder_005' }, - ['-741673433'] = { Name = 'cs2_29_cs5_3_ladder_006' }, - ['-503803262'] = { Name = 'cs2_29_cs5_3_ladder_007' }, - ['-1739260092'] = { Name = 'cs2_29_cs5_3_ladder_008' }, - ['1770891282'] = { Name = 'cs2_29_cs5_3_ladder_01' }, - ['3387313'] = { Name = 'cs2_29_emissive_lod' }, - ['71848858'] = { Name = 'cs2_29_emissive' }, - ['-953353819'] = { Name = 'cs2_29_hrail_01' }, - ['-942987450'] = { Name = 'cs2_29_hrail_02a' }, - ['-1168089080'] = { Name = 'cs2_29_hrail_03' }, - ['-1303425050'] = { Name = 'cs2_29_hrail_04' }, - ['1610558275'] = { Name = 'cs2_29_hrail_05' }, - ['592687597'] = { Name = 'cs2_29_hrail_08' }, - ['420846961'] = { Name = 'cs2_29_hrail_09' }, - ['-1868987257'] = { Name = 'cs2_29_hrail_10' }, - ['-474273079'] = { Name = 'cs2_29_hrail_11' }, - ['-1256960644'] = { Name = 'cs2_29_hrail_12' }, - ['516956406'] = { Name = 'cs2_29_hrail_13' }, - ['-267500685'] = { Name = 'cs2_29_hrail_14' }, - ['1129048557'] = { Name = 'cs2_29_hrail_15' }, - ['345050232'] = { Name = 'cs2_29_hrail_16' }, - ['434797323'] = { Name = 'cs2_29_hrailb_12' }, - ['-859364695'] = { Name = 'cs2_29_humane_sign' }, - ['795131435'] = { Name = 'cs2_29_int_fake' }, - ['-1330342322'] = { Name = 'cs2_29_mainsign_lod' }, - ['-1937653535'] = { Name = 'cs2_29_mainsign' }, - ['-876762737'] = { Name = 'cs2_29_newsteps' }, - ['-889747551'] = { Name = 'cs2_29_newstepsb' }, - ['-1661094910'] = { Name = 'cs2_29_props_combo01_slod' }, - ['-1055627043'] = { Name = 'cs2_29_props_elec_wire_bl063' }, - ['-1362808324'] = { Name = 'cs2_29_rail432' }, - ['-1645362819'] = { Name = 'cs2_29_weed' }, - ['1621945719'] = { Name = 'cs2_30_beach_g1' }, - ['-44721723'] = { Name = 'cs2_30_beach2_g' }, - ['-1990312628'] = { Name = 'cs2_30_beacha' }, - ['-675980807'] = { Name = 'cs2_30_beachb' }, - ['-596024447'] = { Name = 'cs2_30_beachc' }, - ['-1312092635'] = { Name = 'cs2_30_beachd' }, - ['590672888'] = { Name = 'cs2_30_bh_clfc_g' }, - ['125620339'] = { Name = 'cs2_30_biopipe' }, - ['-505173175'] = { Name = 'cs2_30_chem_grill_ipl_group' }, - ['-1424450986'] = { Name = 'cs2_30_clabsweed_01' }, - ['-640288816'] = { Name = 'cs2_30_clabsweed_02' }, - ['637437038'] = { Name = 'cs2_30_clabtube_01' }, - ['876159203'] = { Name = 'cs2_30_clabtube_02' }, - ['-2086289461'] = { Name = 'cs2_30_clabtube_03' }, - ['-1855497394'] = { Name = 'cs2_30_clabtube_04' }, - ['-580979908'] = { Name = 'cs2_30_clabtube_05' }, - ['1931222712'] = { Name = 'cs2_30_clabtube_06' }, - ['812512329'] = { Name = 'cs2_30_cliff_top_ga' }, - ['-326460920'] = { Name = 'cs2_30_cliff_topb_g' }, - ['-628629497'] = { Name = 'cs2_30_foam_01' }, - ['656570639'] = { Name = 'cs2_30_foam_02' }, - ['-120611734'] = { Name = 'cs2_30_foam_03' }, - ['-1312715185'] = { Name = 'cs2_30_foam_04' }, - ['360797645'] = { Name = 'cs2_30_foam_05' }, - ['1594747153'] = { Name = 'cs2_30_foam_06' }, - ['-999037974'] = { Name = 'cs2_30_land_a_d' }, - ['183078476'] = { Name = 'cs2_30_land_a' }, - ['-1342065890'] = { Name = 'cs2_30_land_aa' }, - ['909269109'] = { Name = 'cs2_30_land_ab_d' }, - ['-1770954620'] = { Name = 'cs2_30_land_b_d' }, - ['421276337'] = { Name = 'cs2_30_land_b' }, - ['333362796'] = { Name = 'cs2_30_land_c_d' }, - ['-1733187110'] = { Name = 'cs2_30_land_c' }, - ['177272480'] = { Name = 'cs2_30_land_ca' }, - ['1551561560'] = { Name = 'cs2_30_land_dc_00' }, - ['-895805383'] = { Name = 'cs2_30_land_e_d' }, - ['-1111198721'] = { Name = 'cs2_30_land_e' }, - ['781318683'] = { Name = 'cs2_30_sea_alg1' }, - ['305938800'] = { Name = 'cs2_30_sea_alg2' }, - ['1173755843'] = { Name = 'cs2_30_sea_beach_underwater_03' }, - ['1300042801'] = { Name = 'cs2_30_sea_beach_uw_01_lod' }, - ['-1907329477'] = { Name = 'cs2_30_sea_beach_uw_01' }, - ['-571490721'] = { Name = 'cs2_30_sea_beach_uw_02_lod' }, - ['412125885'] = { Name = 'cs2_30_sea_beach_uw_02' }, - ['-1864700306'] = { Name = 'cs2_30_sea_ch2_30_wreck005' }, - ['2061307517'] = { Name = 'cs2_30_sea_ch2_30_wreck4' }, - ['2017952160'] = { Name = 'cs2_30_sea_ch2_30_wreck4dx' }, - ['1393494965'] = { Name = 'cs2_30_sea_ch2_30_wreck4dx001' }, - ['571792618'] = { Name = 'cs2_30_sea_ch2_30_wreck7' }, - ['-995698595'] = { Name = 'cs2_30_sea_coral_fan_flat_1' }, - ['1857793156'] = { Name = 'cs2_30_sea_coral_fan_flat_2' }, - ['314181836'] = { Name = 'cs2_30_sea_coral_fan_p_l' }, - ['-2094448634'] = { Name = 'cs2_30_sea_coral_fan_p_l003' }, - ['-1764198208'] = { Name = 'cs2_30_sea_coral_fan_p_l2' }, - ['1920305685'] = { Name = 'cs2_30_sea_coralglu004' }, - ['-1233882518'] = { Name = 'cs2_30_sea_coralrk1' }, - ['-1386445202'] = { Name = 'cs2_30_sea_coralrock_006' }, - ['-692856548'] = { Name = 'cs2_30_sea_coralrock_007' }, - ['284609957'] = { Name = 'cs2_30_sea_coralrock_008' }, - ['-1171906559'] = { Name = 'cs2_30_sea_coralrock_009' }, - ['-2005800232'] = { Name = 'cs2_30_sea_coralrock_01' }, - ['-1603245254'] = { Name = 'cs2_30_sea_coralrock_010' }, - ['1920569165'] = { Name = 'cs2_30_sea_coralrock_011' }, - ['2109973985'] = { Name = 'cs2_30_sea_coralrock_012' }, - ['-836450654'] = { Name = 'cs2_30_sea_coralrock_013' }, - ['1659334701'] = { Name = 'cs2_30_sea_coralrock_014' }, - ['891131034'] = { Name = 'cs2_30_sea_coralrock_015' }, - ['1082829684'] = { Name = 'cs2_30_sea_coralrock_016' }, - ['-1833250865'] = { Name = 'cs2_30_sea_coralrock_017' }, - ['303779478'] = { Name = 'cs2_30_sea_coralrock_018' }, - ['372442716'] = { Name = 'cs2_30_sea_coralrock_02' }, - ['1106337240'] = { Name = 'cs2_30_sea_coralrock_03' }, - ['101954055'] = { Name = 'cs2_30_sea_coraltb' }, - ['-2085504947'] = { Name = 'cs2_30_sea_coralvs' }, - ['-1497596140'] = { Name = 'cs2_30_sea_cs2_30_wreck1' }, - ['-1810966087'] = { Name = 'cs2_30_sea_cs2_30_wreck2' }, - ['1781958153'] = { Name = 'cs2_30_sea_cs2_30_wreck3' }, - ['-537460392'] = { Name = 'cs2_30_sea_underwater_03_lod' }, - ['2052398356'] = { Name = 'cs2_30_sea_uw_dec_00' }, - ['-2003322471'] = { Name = 'cs2_30_sea_uw_dec_01' }, - ['-794310216'] = { Name = 'cs2_30_sea_uw_dec_02' }, - ['-437849034'] = { Name = 'cs2_30_sea_uw_dec_03' }, - ['-1405288221'] = { Name = 'cs2_30_sea_uw_dec_04' }, - ['-1014812817'] = { Name = 'cs2_30_sea_uw_dec_05' }, - ['118568562'] = { Name = 'cs2_30_sea_uw_dec_06' }, - ['-239203380'] = { Name = 'cs2_30_sea_uw_dec_07' }, - ['729612105'] = { Name = 'cs2_30_sea_uw_dec_08' }, - ['373478613'] = { Name = 'cs2_30_sea_uw_dec_09' }, - ['1640262403'] = { Name = 'cs2_30_sea_uw_dec_10' }, - ['2141863340'] = { Name = 'cs2_30_sea_uw_dec_11b' }, - ['-946817498'] = { Name = 'cs2_30_sea_uw_dec_16' }, - ['1614590897'] = { Name = 'cs2_30_sea_uw1_01' }, - ['-868168026'] = { Name = 'cs2_30_sea_uw2_00' }, - ['-1813389831'] = { Name = 'cs2_30_sea_uw2_03' }, - ['-1586005740'] = { Name = 'cs2_30_sea_uw2_04' }, - ['795317490'] = { Name = 'cs2_30_sea_uw2_05' }, - ['1025388639'] = { Name = 'cs2_30_sea_uw2_06' }, - ['1317950271'] = { Name = 'cs2_30_sea_uw2_07' }, - ['-380041002'] = { Name = 'cs2_30_sea_uw2_09' }, - ['737741445'] = { Name = 'cs2_30_sea_uw2_10' }, - ['-281702145'] = { Name = 'cs2_30_sea_uw2_11' }, - ['576354120'] = { Name = 'cs2_30_sea_uw2_12' }, - ['-750659308'] = { Name = 'cs2_30_sea_uw2_13' }, - ['93437367'] = { Name = 'cs2_30_sea_uw2_14' }, - ['-1475607895'] = { Name = 'cs2_30_sea_uw2_15' }, - ['-681123490'] = { Name = 'cs2_30_sea_uw2_16' }, - ['-1935127582'] = { Name = 'cs2_30_sea_uw2_17' }, - ['-1102827751'] = { Name = 'cs2_30_sea_uw2_18' }, - ['-1886727777'] = { Name = 'cs2_30_sea_uw2_19' }, - ['-1174479938'] = { Name = 'cs2_30_sea_uwd_1' }, - ['1895942597'] = { Name = 'cs2_30_sea_uwd_2' }, - ['1034875910'] = { Name = 'cs2_30_sea_uwrock001' }, - ['1749375830'] = { Name = 'cs2_30_seaweed_long_l' }, - ['2053177229'] = { Name = 'cs2_30_seaweed_long_m' }, - ['974352352'] = { Name = 'cs2_30_seaweed_long_m001' }, - ['1708452841'] = { Name = 'cs2_30_temprocks_b' }, - ['1494419998'] = { Name = 'cs2_30_tunnel_blocker' }, - ['-1486168872'] = { Name = 'cs2_30_tunnel_det_00' }, - ['-1734000819'] = { Name = 'cs2_30_tunnel_det_01' }, - ['1811736061'] = { Name = 'cs2_30_tunnel_det_02' }, - ['1562298433'] = { Name = 'cs2_30_tunnel_det_03' }, - ['795634885'] = { Name = 'cs2_30_tunnel_det_04' }, - ['565137739'] = { Name = 'cs2_30_tunnel_det_05' }, - ['1409168876'] = { Name = 'cs2_30_tunnel_det_06' }, - ['1144559201'] = { Name = 'cs2_30_tunnel_det_07' }, - ['-930570497'] = { Name = 'cs2_30_tunnel_det_08' }, - ['-624442499'] = { Name = 'cs2_30_tunnel_det_09' }, - ['-910122333'] = { Name = 'cs2_30_tunnel_det_10' }, - ['-1149958644'] = { Name = 'cs2_30_tunnel_det_11' }, - ['-1381700984'] = { Name = 'cs2_30_tunnel_det_12' }, - ['-1797932822'] = { Name = 'cs2_30_tunnel_det_13' }, - ['448463752'] = { Name = 'cs2_lod_06_slod3' }, - ['1864222152'] = { Name = 'cs2_lod_1234_slod3' }, - ['1025240158'] = { Name = 'cs2_lod_5_9_slod3' }, - ['-1249720446'] = { Name = 'cs2_lod_emissive_4_20_slod3' }, - ['1324450085'] = { Name = 'cs2_lod_emissive_5_20_slod3' }, - ['-1005114730'] = { Name = 'cs2_lod_emissive_6_21_slod3' }, - ['-1049611463'] = { Name = 'cs2_lod_rb2_slod3' }, - ['-1448673002'] = { Name = 'cs2_lod_roads_slod3' }, - ['2086891416'] = { Name = 'cs2_lod_roadsb_slod3' }, - ['690462484'] = { Name = 'cs2_lod2_emissive_4_21_slod3' }, - ['-815004394'] = { Name = 'cs2_lod2_emissive_6_21_slod3' }, - ['1007938532'] = { Name = 'cs2_lod2_rc_slod3' }, - ['-390583941'] = { Name = 'cs2_lod2_roadsa_slod03' }, - ['-952191192'] = { Name = 'cs2_lod2_slod3_08' }, - ['-1659148126'] = { Name = 'cs2_lod2_slod3_10' }, - ['-1457315554'] = { Name = 'cs2_lod2_slod3_10a' }, - ['-1361703913'] = { Name = 'cs2_lod2_slod3_11' }, - ['1152130587'] = { Name = 'cs2_railway_b10_legs_a_slod' }, - ['-2065905048'] = { Name = 'cs2_railway_b10_legs_a' }, - ['1312913261'] = { Name = 'cs2_railway_b10_legs_b_slod' }, - ['-1290262818'] = { Name = 'cs2_railway_b10_legs_b' }, - ['-176527921'] = { Name = 'cs2_railway_b10_rail_a' }, - ['-1874486425'] = { Name = 'cs2_railway_b10_rail_b' }, - ['-1576583446'] = { Name = 'cs2_railway_b10_rail_c' }, - ['1019180120'] = { Name = 'cs2_railway_b10_rail_d' }, - ['243374045'] = { Name = 'cs2_railway_b10_rail_e' }, - ['-124777279'] = { Name = 'cs2_railway_b10' }, - ['-1242527194'] = { Name = 'cs2_railway_b11_legs_a_slod' }, - ['-1689678976'] = { Name = 'cs2_railway_b11_legs_a' }, - ['963107896'] = { Name = 'cs2_railway_b11_legs_b_slod' }, - ['-903157438'] = { Name = 'cs2_railway_b11_legs_b' }, - ['966631425'] = { Name = 'cs2_railway_b11_legs_c_slod' }, - ['-1132900897'] = { Name = 'cs2_railway_b11_legs_c' }, - ['-821908057'] = { Name = 'cs2_railway_b11_rail_a' }, - ['-1202356147'] = { Name = 'cs2_railway_b11_rail_b' }, - ['-1430985432'] = { Name = 'cs2_railway_b11_rail_c' }, - ['-1692121593'] = { Name = 'cs2_railway_b11_rail_d' }, - ['-2049238155'] = { Name = 'cs2_railway_b11_rail_e' }, - ['1949792302'] = { Name = 'cs2_railway_b11_rail_f' }, - ['110012606'] = { Name = 'cs2_railway_b11' }, - ['-385350490'] = { Name = 'cs2_railway_b12_legs' }, - ['-783641419'] = { Name = 'cs2_railway_b12_rail' }, - ['354207194'] = { Name = 'cs2_railway_b12' }, - ['-1558185522'] = { Name = 'cs2_railway_b13_legs' }, - ['1592564161'] = { Name = 'cs2_railway_b13_rail' }, - ['653879699'] = { Name = 'cs2_railway_b13' }, - ['-564914209'] = { Name = 'cs2_railway_b14_legs' }, - ['768062287'] = { Name = 'cs2_railway_b14_rail' }, - ['-791331504'] = { Name = 'cs2_railway_b14' }, - ['-1212679181'] = { Name = 'cs2_railway_brg11lamp' }, - ['838223452'] = { Name = 'cs2_railway_brgov_00' }, - ['479468440'] = { Name = 'cs2_railway_brgov_01' }, - ['1333887346'] = { Name = 'cs2_railway_brgov_02' }, - ['1385105285'] = { Name = 'cs2_railway_brgov_07' }, - ['-1554405095'] = { Name = 'cs2_railway_brgov_08' }, - ['1971965306'] = { Name = 'cs2_railway_brgov_09' }, - ['-2076897323'] = { Name = 'cs2_railway_t01' }, - ['-1921113497'] = { Name = 'cs2_railway_t02' }, - ['-1617705326'] = { Name = 'cs2_railway_t03' }, - ['720952666'] = { Name = 'cs2_railway_t04' }, - ['-1652131643'] = { Name = 'cs2_railwyb_brg01_railing' }, - ['-1774077797'] = { Name = 'cs2_railwyb_brg01' }, - ['-1629552390'] = { Name = 'cs2_railwyb_brgov' }, - ['-1198651569'] = { Name = 'cs2_railwyb_t_06' }, - ['-1241217052'] = { Name = 'cs2_railwyb_t_16' }, - ['-848906640'] = { Name = 'cs2_railwyb_t_18' }, - ['733607013'] = { Name = 'cs2_railwyb_t_20' }, - ['192328671'] = { Name = 'cs2_railwyb_t_22' }, - ['-1224373506'] = { Name = 'cs2_railwyb_t_24' }, - ['-1840201323'] = { Name = 'cs2_railwyb_t_26' }, - ['2131630864'] = { Name = 'cs2_railwyb_t_28' }, - ['-880216953'] = { Name = 'cs2_railwyc_br06_d' }, - ['-1025083163'] = { Name = 'cs2_railwyc_br07_d' }, - ['-1293278656'] = { Name = 'cs2_railwyc_br08_d' }, - ['-2020945881'] = { Name = 'cs2_railwyc_brg01' }, - ['-150425807'] = { Name = 'cs2_railwyc_brg02' }, - ['-458421638'] = { Name = 'cs2_railwyc_brg03' }, - ['-762911202'] = { Name = 'cs2_railwyc_brg04' }, - ['-834609774'] = { Name = 'cs2_railwyc_brg05' }, - ['149735821'] = { Name = 'cs2_railwyc_brg06_overlay' }, - ['1205194954'] = { Name = 'cs2_railwyc_brg06' }, - ['-2065007604'] = { Name = 'cs2_railwyc_brg07_overlay' }, - ['653496070'] = { Name = 'cs2_railwyc_brg07' }, - ['1294225438'] = { Name = 'cs2_railwyc_brg08_overlay' }, - ['346679923'] = { Name = 'cs2_railwyc_brg08' }, - ['41338381'] = { Name = 'cs2_railwyc_brg09' }, - ['-383546074'] = { Name = 'cs2_railwyc_brgov_04' }, - ['-1187707203'] = { Name = 'cs2_railwyc_t01' }, - ['-494511777'] = { Name = 'cs2_railwyc_t02' }, - ['1083315565'] = { Name = 'cs2_railwyc_t03' }, - ['1833004747'] = { Name = 'cs2_railwyc_t04' }, - ['866158297'] = { Name = 'cs2_rdprops_aviation_ball' }, - ['1259566649'] = { Name = 'cs2_rdprops_ballwire107' }, - ['961598132'] = { Name = 'cs2_rdprops_ballwire108' }, - ['610707680'] = { Name = 'cs2_rdprops_ballwire109' }, - ['1743728892'] = { Name = 'cs2_rdprops_ballwire110' }, - ['2040386649'] = { Name = 'cs2_rdprops_ballwire111' }, - ['-1941636697'] = { Name = 'cs2_rdprops_ballwire112' }, - ['235371822'] = { Name = 'cs2_rdprops_ballwire113' }, - ['210977452'] = { Name = 'cs2_rdprops_cs2_wires41' }, - ['48901978'] = { Name = 'cs2_rdprops_cs2_wires42' }, - ['43591428'] = { Name = 'cs2_rdprops_cs2_wires51' }, - ['1929283537'] = { Name = 'cs2_rdprops_cs2_wires59' }, - ['-1063960612'] = { Name = 'cs2_rdprops_elec_wir09' }, - ['1045262038'] = { Name = 'cs2_rdprops_elec_wire005' }, - ['-868647962'] = { Name = 'cs2_rdprops_elec_wire03' }, - ['829875101'] = { Name = 'cs2_rdprops_elec_wire052' }, - ['541606208'] = { Name = 'cs2_rdprops_elec_wire053' }, - ['65374331'] = { Name = 'cs2_rdprops_elec_wire055' }, - ['-372026281'] = { Name = 'cs2_rdprops_elec_wire056' }, - ['1384614012'] = { Name = 'cs2_rdprops_elec_wire07' }, - ['-60863727'] = { Name = 'cs2_rdprops_elec_wires_sp196' }, - ['1422425070'] = { Name = 'cs2_rdprops_elec_wires_sp197' }, - ['519901272'] = { Name = 'cs2_rdprops_elec_wires_sp198' }, - ['1496515779'] = { Name = 'cs2_rdprops_elec_wires_sp199' }, - ['798190549'] = { Name = 'cs2_rdprops_elec_wires_sp200' }, - ['1271317936'] = { Name = 'cs2_rdprops_ewl_01' }, - ['347494746'] = { Name = 'cs2_rdprops_pylon_wire_sp106' }, - ['1000955379'] = { Name = 'cs2_rdprops_pylon_wire244' }, - ['-916489883'] = { Name = 'cs2_rdprops_pylon_wire246' }, - ['1337886245'] = { Name = 'cs2_rdprops_pylon_wire247' }, - ['1585456040'] = { Name = 'cs2_rdprops_pylon_wire248' }, - ['126547095'] = { Name = 'cs2_rdprops_pylon_wire250' }, - ['-180072438'] = { Name = 'cs2_rdprops_pylon_wire251' }, - ['-1839101354'] = { Name = 'cs2_rdprops_pylon_wire252' }, - ['-1074034587'] = { Name = 'cs2_rdprops_roadsa_p_wire06' }, - ['-514761246'] = { Name = 'cs2_rdprops_roadsa_p_wire195' }, - ['355893403'] = { Name = 'cs2_rdprops_roadsa_p_wire195b' }, - ['1122360313'] = { Name = 'cs2_rdprops_roadsa_p_wire195c' }, - ['-2095283135'] = { Name = 'cs2_rdprops_roadsa_p_wire201' }, - ['2120525212'] = { Name = 'cs2_rdprops_roadsa_p_wire201b' }, - ['-1943322327'] = { Name = 'cs2_rdprops_roadsa_p_wire201c' }, - ['703038452'] = { Name = 'cs2_rdprops_roadsa_p_wire203c' }, - ['-1415715578'] = { Name = 'cs2_rdprops_roadsa_p_wire89' }, - ['1702978512'] = { Name = 'cs2_rdprops_roadsa_p_wire89b' }, - ['30645366'] = { Name = 'cs2_rdprops_roadsa_p_wire89c' }, - ['716324284'] = { Name = 'cs2_rdprops_w_med_02' }, - ['334303282'] = { Name = 'cs2_rdprops_w_med_03' }, - ['-836631399'] = { Name = 'cs2_rdprops_w_med_04' }, - ['969595885'] = { Name = 'cs2_rdprops_w_med_05' }, - ['1658433034'] = { Name = 'cs2_rdprops_w_med_06' }, - ['1293320836'] = { Name = 'cs2_rdprops_w_med_07' }, - ['-2074185453'] = { Name = 'cs2_rdprops_w_med_08' }, - ['1921043800'] = { Name = 'cs2_rdprops_w_med_09' }, - ['1335690438'] = { Name = 'cs2_rdprops_w_med_e010' }, - ['-1724184820'] = { Name = 'cs2_rdprops_w_thin_01' }, - ['-1310312350'] = { Name = 'cs2_rdprops_w_thin_02' }, - ['80240165'] = { Name = 'cs2_rdprops_w_thin_03' }, - ['259683209'] = { Name = 'cs2_rdprops_w_thin_04' }, - ['-1890979042'] = { Name = 'cs2_rdprops_w_thin_05' }, - ['1636833195'] = { Name = 'cs2_rdprops_w_thin_06' }, - ['-1144861669'] = { Name = 'cs2_rdprops_w_thin_07' }, - ['-965156473'] = { Name = 'cs2_rdprops_w_thin_08' }, - ['1389361707'] = { Name = 'cs2_rdprops_w_thin_09' }, - ['-242653338'] = { Name = 'cs2_rdprops_w_thin_e010' }, - ['-1953955992'] = { Name = 'cs2_rdprops_wire00' }, - ['117372498'] = { Name = 'cs2_rdprops_wire03' }, - ['-1735911070'] = { Name = 'cs2_rdprops_wire06' }, - ['169152707'] = { Name = 'cs2_roads_01' }, - ['486651548'] = { Name = 'cs2_roads_02' }, - ['-156603922'] = { Name = 'cs2_roads_03' }, - ['-958297507'] = { Name = 'cs2_roads_04' }, - ['-1351655711'] = { Name = 'cs2_roads_12' }, - ['-478901009'] = { Name = 'cs2_roads_20' }, - ['-251254766'] = { Name = 'cs2_roads_21' }, - ['-1489448'] = { Name = 'cs2_roads_22' }, - ['-1919590098'] = { Name = 'cs2_roads_24' }, - ['989576188'] = { Name = 'cs2_roads_25' }, - ['-2072865190'] = { Name = 'cs2_roads_26_a' }, - ['1209325102'] = { Name = 'cs2_roads_26' }, - ['-950905689'] = { Name = 'cs2_roads_27' }, - ['-689245224'] = { Name = 'cs2_roads_28' }, - ['1674907054'] = { Name = 'cs2_roads_29' }, - ['-1137263252'] = { Name = 'cs2_roads_30' }, - ['-1389125786'] = { Name = 'cs2_roads_31' }, - ['-814685216'] = { Name = 'cs2_roads_32' }, - ['1332700123'] = { Name = 'cs2_roads_33' }, - ['-736141920'] = { Name = 'cs2_roads_armco_01' }, - ['2109911284'] = { Name = 'cs2_roads_armco_02' }, - ['-1497660711'] = { Name = 'cs2_roads_armco_03' }, - ['-504432321'] = { Name = 'cs2_roads_armco_04' }, - ['-1571620360'] = { Name = 'cs2_roads_armco_05' }, - ['1918704141'] = { Name = 'cs2_roads_armco_06' }, - ['1974935745'] = { Name = 'cs2_roads_armco_07' }, - ['-874001115'] = { Name = 'cs2_roads_armco_08' }, - ['-613651410'] = { Name = 'cs2_roads_armco_09' }, - ['-576950382'] = { Name = 'cs2_roads_armco_10' }, - ['247058892'] = { Name = 'cs2_roads_armco_11' }, - ['-1074088881'] = { Name = 'cs2_roads_armco_12' }, - ['-182641005'] = { Name = 'cs2_roads_armco_13' }, - ['610663716'] = { Name = 'cs2_roads_armco_14' }, - ['-189915743'] = { Name = 'cs2_roads_armco_15' }, - ['523989691'] = { Name = 'cs2_roads_armco_16' }, - ['1476682832'] = { Name = 'cs2_roads_armco_17' }, - ['43891072'] = { Name = 'cs2_roads_armco_18' }, - ['931210058'] = { Name = 'cs2_roads_armco_19' }, - ['-1116426741'] = { Name = 'cs2_roads_armco_20' }, - ['257249743'] = { Name = 'cs2_roads_armco_21' }, - ['-322696019'] = { Name = 'cs2_roads_armco_22' }, - ['851450024'] = { Name = 'cs2_roads_armco_23' }, - ['1108752212'] = { Name = 'cs2_roads_armco_24' }, - ['1213514705'] = { Name = 'cs2_roads_armco_25' }, - ['1704197711'] = { Name = 'cs2_roads_armco_26' }, - ['1761346847'] = { Name = 'cs2_roads_armco_27' }, - ['2000527778'] = { Name = 'cs2_roads_armco_28' }, - ['-1591708317'] = { Name = 'cs2_roads_armco_29' }, - ['-2071741698'] = { Name = 'cs2_roads_armco_30' }, - ['-1835804902'] = { Name = 'cs2_roads_armco_31' }, - ['-2074297684'] = { Name = 'cs2_roads_armco_32' }, - ['-1371632013'] = { Name = 'cs2_roads_armco_33' }, - ['-1618185973'] = { Name = 'cs2_roads_armco_34' }, - ['-918076284'] = { Name = 'cs2_roads_armco_35' }, - ['-1157224446'] = { Name = 'cs2_roads_armco_36' }, - ['80362377'] = { Name = 'cs2_roads_armco_37' }, - ['-158949630'] = { Name = 'cs2_roads_armco_38' }, - ['84360191'] = { Name = 'cs2_roads_armco_39' }, - ['-1524729073'] = { Name = 'cs2_roads_armco_40' }, - ['-601724646'] = { Name = 'cs2_roads_armco_41' }, - ['-833041017'] = { Name = 'cs2_roads_armco_42' }, - ['-139583439'] = { Name = 'cs2_roads_armco_43' }, - ['-371489652'] = { Name = 'cs2_roads_armco_44' }, - ['-137682841'] = { Name = 'cs2_roads_armco_45' }, - ['-367753990'] = { Name = 'cs2_roads_armco_46' }, - ['619117214'] = { Name = 'cs2_roads_armco_47' }, - ['394878947'] = { Name = 'cs2_roads_armco_48' }, - ['1090695897'] = { Name = 'cs2_roads_armco_49' }, - ['973317123'] = { Name = 'cs2_roads_armco_50' }, - ['-547033405'] = { Name = 'cs2_roads_armco_51' }, - ['-857519680'] = { Name = 'cs2_roads_armco_52' }, - ['53917286'] = { Name = 'cs2_roads_armco_53' }, - ['-243789079'] = { Name = 'cs2_roads_armco_54' }, - ['-1161812634'] = { Name = 'cs2_roads_armco_55' }, - ['-1483997422'] = { Name = 'cs2_roads_armco_56' }, - ['-564532071'] = { Name = 'cs2_roads_armco_57' }, - ['-870823914'] = { Name = 'cs2_roads_armco_58' }, - ['-874506827'] = { Name = 'cs2_roads_back01' }, - ['-43419449'] = { Name = 'cs2_roads_back02' }, - ['-290792630'] = { Name = 'cs2_roads_back03' }, - ['-1963774665'] = { Name = 'cs2_roads_bdg_dcl_01' }, - ['-1682023424'] = { Name = 'cs2_roads_elec_wire_s184' }, - ['-1509724022'] = { Name = 'cs2_roads_elec_wire_s185' }, - ['2025690623'] = { Name = 'cs2_roads_elec_wire_s186' }, - ['1855127990'] = { Name = 'cs2_roads_elec_wire_s187' }, - ['-2142395093'] = { Name = 'cs2_roads_elec_wire_s188' }, - ['-791624144'] = { Name = 'cs2_roads_elec_wire_s189' }, - ['904008625'] = { Name = 'cs2_roads_elec_wire_s190' }, - ['496258585'] = { Name = 'cs2_roads_elec_wire_s284' }, - ['1805022459'] = { Name = 'cs2_roads_elec_wire_s484' }, - ['658406157'] = { Name = 'cs2_roads_elec_wire_spline184' }, - ['-558798348'] = { Name = 'cs2_roads_elec_wire_spline185' }, - ['46314006'] = { Name = 'cs2_roads_elec_wire_spline186' }, - ['1137621888'] = { Name = 'cs2_roads_elec_wire_yy184' }, - ['1648785133'] = { Name = 'cs2_roads_elec_wire984' }, - ['-1589066337'] = { Name = 'cs2_roads_elec_wre785' }, - ['-1335265412'] = { Name = 'cs2_roads_fw_08_dcl' }, - ['-539294237'] = { Name = 'cs2_roads_fw_08' }, - ['1367206183'] = { Name = 'cs2_roads_fw_09' }, - ['-1022882323'] = { Name = 'cs2_roads_fw_10_dcl' }, - ['-1896611597'] = { Name = 'cs2_roads_fw_10_dcl02' }, - ['-1114394815'] = { Name = 'cs2_roads_fw_10' }, - ['-1428157986'] = { Name = 'cs2_roads_fw_11' }, - ['-1382163195'] = { Name = 'cs2_roads_fw_12_dcl' }, - ['-1152734541'] = { Name = 'cs2_roads_fw_12' }, - ['-106825249'] = { Name = 'cs2_roads_fw_9_dcl' }, - ['-1248894815'] = { Name = 'cs2_roads_fwy_sg_4' }, - ['1130320481'] = { Name = 'cs2_roads_fwy_sgn_05' }, - ['1646495902'] = { Name = 'cs2_roads_junc1' }, - ['-668238606'] = { Name = 'cs2_roads_junc1dcl' }, - ['2043163838'] = { Name = 'cs2_roads_junct_dcl01' }, - ['1735561235'] = { Name = 'cs2_roads_junct_dcl02' }, - ['5849570'] = { Name = 'cs2_roads_junct_dcl03' }, - ['601557221'] = { Name = 'cs2_roads_junct_dcl05' }, - ['303621473'] = { Name = 'cs2_roads_junct_dcl06' }, - ['-1039317689'] = { Name = 'cs2_roads_junct_dcl08' }, - ['152523610'] = { Name = 'cs2_roads_junct_dcl09' }, - ['320005613'] = { Name = 'cs2_roads_junct_dcl10' }, - ['-491813481'] = { Name = 'cs2_roads_junct_dcl11' }, - ['399083843'] = { Name = 'cs2_roads_railngs_1d' }, - ['714770658'] = { Name = 'cs2_roads_sign_01' }, - ['1471472406'] = { Name = 'cs2_roads_sign_02' }, - ['-667327459'] = { Name = 'cs2_roads_sign_03' }, - ['44611839'] = { Name = 'cs2_roads_sign_04' }, - ['-175169844'] = { Name = 'cs2_roads_sign_05' }, - ['517828968'] = { Name = 'cs2_roads_sign_06' }, - ['-1676514352'] = { Name = 'cs2_roads_sign_07' }, - ['-1920414019'] = { Name = 'cs2_roads_sign_08' }, - ['-1130779426'] = { Name = 'cs2_roads_sign_09' }, - ['-1105579773'] = { Name = 'cs2_roads_sign_10' }, - ['-1292920274'] = { Name = 'cs2_roads_sign_11' }, - ['-450527591'] = { Name = 'cs2_roads_sign_12' }, - ['-814525643'] = { Name = 'cs2_roads_sign_13' }, - ['-2132330978'] = { Name = 'cs2_roads_sign_14' }, - ['3323047'] = { Name = 'cs2_roads_sign_15' }, - ['-361461461'] = { Name = 'cs2_roads_sign_16' }, - ['500068318'] = { Name = 'cs2_roads_sign_17' }, - ['-24542816'] = { Name = 'cs2_roads_tele_pole_wire_01' }, - ['359497617'] = { Name = 'cs2_roads_tele_pole_wirm01' }, - ['1588236810'] = { Name = 'cs2_roads_tele_pole_wirm03' }, - ['1894332039'] = { Name = 'cs2_roads_tele_pole_wirm04' }, - ['-866652825'] = { Name = 'cs2_roads_tele_pole_wirm05' }, - ['-1768586781'] = { Name = 'cs2_roads_tele_pole_wirm06' }, - ['1023423389'] = { Name = 'cs2_roads_tele_wiren00' }, - ['-482213854'] = { Name = 'cs2_roads_tele_wiren01' }, - ['1507978592'] = { Name = 'cs2_roads_tele_wiren02' }, - ['1653562106'] = { Name = 'cs2_roads_wires_elec_heavy01' }, - ['1096296648'] = { Name = 'cs2_roads_wires_elec_stan01' }, - ['1338656172'] = { Name = 'cs2_roads_wires_elec_stan02' }, - ['646640422'] = { Name = 'cs2_roads_wires_elec_stan06' }, - ['-1289614250'] = { Name = 'cs2_roads_wires_elec_stan07' }, - ['-1050892085'] = { Name = 'cs2_roads_wires_elec_stan08' }, - ['-810695315'] = { Name = 'cs2_roads_wires_elec_stan09' }, - ['-1822996099'] = { Name = 'cs2_roads_wires_elec_stan12' }, - ['-2035371988'] = { Name = 'cs2_roads_wires_elec_stan14' }, - ['1541167752'] = { Name = 'cs2_roads_wires_elec_stan15' }, - ['675303151'] = { Name = 'cs2_roads_wires_tele_heavy02' }, - ['846881635'] = { Name = 'cs2_roads_wires_tele_heavy03' }, - ['-2128215907'] = { Name = 'cs2_roads_wires_tele_heavy05' }, - ['1509241404'] = { Name = 'cs2_roads_wires_tele_heavy06' }, - ['1814812329'] = { Name = 'cs2_roads_wires_tele_heavy07' }, - ['-852649781'] = { Name = 'cs2_roads_wires_tele_heavy08' }, - ['-555533258'] = { Name = 'cs2_roads_wires_tele_heavy09' }, - ['-435794996'] = { Name = 'cs2_roads_wires_tele_heavy10' }, - ['-675434693'] = { Name = 'cs2_roads_wires_tele_heavy11' }, - ['802742124'] = { Name = 'cs2_roads_wires_tele_heavy12' }, - ['434779023'] = { Name = 'cs2_roads_wires_tele_heavy13' }, - ['1394943492'] = { Name = 'cs2_roads_wires_tele_heavy14' }, - ['1020066132'] = { Name = 'cs2_roads_wires_tele_heavy15' }, - ['1893884286'] = { Name = 'cs2_roads_wires_tele_heavy16' }, - ['1661846997'] = { Name = 'cs2_roads_wires_tele_heavy17' }, - ['-2039313250'] = { Name = 'cs2_roads_wires_tele_heavy19' }, - ['1472547668'] = { Name = 'cs2_roads_wires_tele_heavy20' }, - ['92972768'] = { Name = 'cs2_roads_wires_tele_heavy21' }, - ['1021416845'] = { Name = 'cs2_roads_wires_tele_heavy22' }, - ['169910501'] = { Name = 'cs2_roads_wires_tele_stan02' }, - ['1004536927'] = { Name = 'cs2_roads_wires_tele_stan04' }, - ['1468677043'] = { Name = 'cs2_roads_wires_tele_stan05' }, - ['840855772'] = { Name = 'cs2_roads_wires_tele_stan07' }, - ['-1296961019'] = { Name = 'cs2_roads_wires_tele_stan08' }, - ['2096161774'] = { Name = 'cs2_roadsa_dcl_sign_002' }, - ['357092809'] = { Name = 'cs2_roadsa_hw_04' }, - ['923865433'] = { Name = 'cs2_roadsa_hw_05' }, - ['1208529732'] = { Name = 'cs2_roadsa_hw_06' }, - ['971118327'] = { Name = 'cs2_roadsa_hw_07' }, - ['1823505555'] = { Name = 'cs2_roadsa_hw_08' }, - ['-1058361165'] = { Name = 'cs2_roadsa_paleto_welcome' }, - ['-1518196061'] = { Name = 'cs2_roadsa_sign_mid_01' }, - ['1399719759'] = { Name = 'cs2_roadsa_sign_mid_02_lod' }, - ['1005770622'] = { Name = 'cs2_roadsa_sign_mid_03' }, - ['2026162899'] = { Name = 'cs2_roadsa_signfw_01' }, - ['-1667124038'] = { Name = 'cs2_roadsa_testroads00' }, - ['-160634801'] = { Name = 'cs2_roadsa_testroads01' }, - ['-902688806'] = { Name = 'cs2_roadsa_testroads02' }, - ['-739302572'] = { Name = 'cs2_roadsa_testroads03' }, - ['1667869034'] = { Name = 'cs2_roadsb_05' }, - ['1217229750'] = { Name = 'cs2_roadsb_06' }, - ['978835275'] = { Name = 'cs2_roadsb_07' }, - ['740866797'] = { Name = 'cs2_roadsb_08' }, - ['501882480'] = { Name = 'cs2_roadsb_09' }, - ['933583306'] = { Name = 'cs2_roadsb_10' }, - ['1231617361'] = { Name = 'cs2_roadsb_11' }, - ['1006559873'] = { Name = 'cs2_roadsb_13' }, - ['307269413'] = { Name = 'cs2_roadsb_14' }, - ['458498348'] = { Name = 'cs2_roadsb_15' }, - ['1897057448'] = { Name = 'cs2_roadsb_16' }, - ['2127718439'] = { Name = 'cs2_roadsb_17' }, - ['1686713237'] = { Name = 'cs2_roadsb_18' }, - ['-1286287065'] = { Name = 'cs2_roadsb_19' }, - ['-1898179709'] = { Name = 'cs2_roadsb_armco_11' }, - ['875257379'] = { Name = 'cs2_roadsb_armco_12' }, - ['-1420115463'] = { Name = 'cs2_roadsb_armco_13a' }, - ['1602628173'] = { Name = 'cs2_roadsb_armco_13b' }, - ['1319667858'] = { Name = 'cs2_roadsb_armco_13c' }, - ['-319406101'] = { Name = 'cs2_roadsb_armco_14a' }, - ['-44015425'] = { Name = 'cs2_roadsb_armco_14b' }, - ['-1200597280'] = { Name = 'cs2_roadsb_armco_14c' }, - ['1574510659'] = { Name = 'cs2_roadsb_armco_15a' }, - ['-1151411371'] = { Name = 'cs2_roadsb_armco_15b' }, - ['-86749837'] = { Name = 'cs2_roadsb_armco_16a' }, - ['203583503'] = { Name = 'cs2_roadsb_armco_16b' }, - ['-1679650919'] = { Name = 'cs2_roadsb_armco_16c' }, - ['-1380535487'] = { Name = 'cs2_roadsb_armco_16d' }, - ['934201487'] = { Name = 'cs2_roadsb_armco_17a' }, - ['654616379'] = { Name = 'cs2_roadsb_armco_17b' }, - ['-1321742515'] = { Name = 'cs2_roadsb_bard_wir00' }, - ['-738093856'] = { Name = 'cs2_roadsb_bard_wir02' }, - ['106232198'] = { Name = 'cs2_roadsb_bard_wir03' }, - ['2032310218'] = { Name = 'cs2_roadsb_cowsign_slod' }, - ['876290973'] = { Name = 'cs2_roadsb_cowsign' }, - ['933086027'] = { Name = 'cs2_roadsb_cs2_roads_wire008' }, - ['1768850887'] = { Name = 'cs2_roadsb_cs2_roads_wire008b' }, - ['2058922075'] = { Name = 'cs2_roadsb_cs2_roads_wire008c' }, - ['788369650'] = { Name = 'cs2_roadsb_cs2_roads_wire008e' }, - ['2049559135'] = { Name = 'cs2_roadsb_cs2_roads_wire04' }, - ['-739873523'] = { Name = 'cs2_roadsb_elec_wire_spline185' }, - ['1779767660'] = { Name = 'cs2_roadsb_elec_wire_spline186' }, - ['502933349'] = { Name = 'cs2_roadsb_elec_wire_spline467' }, - ['202671002'] = { Name = 'cs2_roadsb_elec_wire_spline468' }, - ['-2006156212'] = { Name = 'cs2_roadsb_elec_wire_spline469' }, - ['-253757311'] = { Name = 'cs2_roadsb_elec_wire_spline470' }, - ['-1861161583'] = { Name = 'cs2_roadsb_elec_wire_swire467' }, - ['1532133909'] = { Name = 'cs2_roadsb_elec_wire_swire468' }, - ['576950332'] = { Name = 'cs2_roadsb_elec_wire_swire469' }, - ['1372285871'] = { Name = 'cs2_roadsb_elec_wire_swire470' }, - ['444813811'] = { Name = 'cs2_roadsb_fencepls00' }, - ['1289238148'] = { Name = 'cs2_roadsb_fencepls01' }, - ['-830092366'] = { Name = 'cs2_roadsb_fencepls02a' }, - ['359389561'] = { Name = 'cs2_roadsb_fencepls02b' }, - ['-1694805185'] = { Name = 'cs2_roadsb_fw_05' }, - ['-1330807133'] = { Name = 'cs2_roadsb_fw_06' }, - ['-426415494'] = { Name = 'cs2_roadsb_fw_07' }, - ['1863076719'] = { Name = 'cs2_roadsb_fw_brdg2_d' }, - ['-2061106992'] = { Name = 'cs2_roadsb_fw_brdg2' }, - ['-1688471873'] = { Name = 'cs2_roadsb_fwy_sgn_01_lod' }, - ['-2020352531'] = { Name = 'cs2_roadsb_fwy_sgn_01' }, - ['-1961904452'] = { Name = 'cs2_roadsb_fwy_sgn_02_lod' }, - ['-1985093087'] = { Name = 'cs2_roadsb_fwy_sgn_02' }, - ['-143263033'] = { Name = 'cs2_roadsb_heavy25_lcy' }, - ['1249448949'] = { Name = 'cs2_roadsb_junc2' }, - ['992085611'] = { Name = 'cs2_roadsb_junc2a' }, - ['-258246922'] = { Name = 'cs2_roadsb_junct_dcl01' }, - ['-2084594372'] = { Name = 'cs2_roadsb_junct_dcl02' }, - ['-1805500799'] = { Name = 'cs2_roadsb_junct_dcl03' }, - ['1196270681'] = { Name = 'cs2_roadsb_junct_dcl04' }, - ['-1307608613'] = { Name = 'cs2_roadsb_junct_dcl05' }, - ['1824812870'] = { Name = 'cs2_roadsb_junct_dcl06' }, - ['897188018'] = { Name = 'cs2_roadsb_junct_dcl07' }, - ['284571535'] = { Name = 'cs2_roadsb_junct_dcl08' }, - ['1528155113'] = { Name = 'cs2_roadsb_junct_dcl09' }, - ['700279313'] = { Name = 'cs2_roadsb_junct_dcl10' }, - ['470535854'] = { Name = 'cs2_roadsb_junct_dcl11' }, - ['-579972748'] = { Name = 'cs2_roadsb_junct_dcl12' }, - ['-822365041'] = { Name = 'cs2_roadsb_junct_dcl13' }, - ['-1101053286'] = { Name = 'cs2_roadsb_laby_6' }, - ['-59771529'] = { Name = 'cs2_roadsb_pylon_wire244c001' }, - ['-2088296469'] = { Name = 'cs2_roadsb_pylon_wire245' }, - ['-1572869813'] = { Name = 'cs2_roadsb_railngs_1' }, - ['1880720639'] = { Name = 'cs2_roadsb_railngs_2' }, - ['2108956724'] = { Name = 'cs2_roadsb_railngs_3' }, - ['-19160435'] = { Name = 'cs2_roadsb_railngs_4' }, - ['1545755929'] = { Name = 'cs2_roadsb_railngs_5' }, - ['1799879524'] = { Name = 'cs2_roadsb_railngs_6' }, - ['950834734'] = { Name = 'cs2_roadsb_railngs_7' }, - ['502459328'] = { Name = 'cs2_roadsb_rd_sign_002' }, - ['1788094629'] = { Name = 'cs2_roadsb_sign_01' }, - ['-2136611431'] = { Name = 'cs2_roadsb_sign_010' }, - ['-1177364494'] = { Name = 'cs2_roadsb_sign_013' }, - ['-1864534729'] = { Name = 'cs2_roadsb_sign_02' }, - ['-1204468758'] = { Name = 'cs2_roadsb_sign_03' }, - ['-330847218'] = { Name = 'cs2_roadsb_sign_04' }, - ['-1547986185'] = { Name = 'cs2_roadsb_sign_05' }, - ['-906959007'] = { Name = 'cs2_roadsb_sign_06' }, - ['454068583'] = { Name = 'cs2_roadsb_sign_07' }, - ['-145571296'] = { Name = 'cs2_roadsb_sign_09' }, - ['971982984'] = { Name = 'cs2_roadsb_sign_11' }, - ['-526739996'] = { Name = 'cs2_roadsb_sign_12' }, - ['85483231'] = { Name = 'cs2_roadsb_sign_14' }, - ['-684950131'] = { Name = 'cs2_roadsb_testroads04' }, - ['-1585302635'] = { Name = 'cs2_roadsb_tmpd_01' }, - ['1025088240'] = { Name = 'cs2_roadsb_tnlend' }, - ['1437755488'] = { Name = 'cs2_roadsb_tnlend2' }, - ['-2065612065'] = { Name = 'cs2_roadsb_tnnlroad' }, - ['1936063291'] = { Name = 'cs2_roadsb_tnnlroad2' }, - ['1227138745'] = { Name = 'cs2_roadsb_tnnlroad3' }, - ['1361310539'] = { Name = 'cs2_roadsb_tnnlroadol' }, - ['-736272240'] = { Name = 'cs2_roadsb_tnnlroadol2' }, - ['1785105700'] = { Name = 'cs2_roadsb_tnnlroadol3' }, - ['1926202680'] = { Name = 'cs2_roadsb_tun_ec_01' }, - ['1592155498'] = { Name = 'cs2_roadsb_tun_ec_02' }, - ['-1718337210'] = { Name = 'cs2_roadsb_tun_gavgub1' }, - ['-949183242'] = { Name = 'cs2_roadsb_tun_gavgub2' }, - ['219981913'] = { Name = 'cs2_roadsb_tun_gavgub3' }, - ['-733595162'] = { Name = 'cs2_roadsb_tun_gavi_01' }, - ['-646167470'] = { Name = 'cs2_roadsb_tun_gavi_02' }, - ['-1349029747'] = { Name = 'cs2_roadsb_tun_gavi_03' }, - ['1101588898'] = { Name = 'cs2_roadsb_tun_gavi_dcl_01' }, - ['-1724470701'] = { Name = 'cs2_roadsb_tun_gavi_dcl_3' }, - ['537529881'] = { Name = 'cs2_roadsb_tun_gavi_dcl2' }, - ['2099800945'] = { Name = 'cs2_roadsb_tunshadowbox' }, - ['2071822846'] = { Name = 'cs2_roadsb_wire_1117' }, - ['1249482681'] = { Name = 'cs2_roadsb_wire_se1' }, - ['-1585927692'] = { Name = 'cs2_roadsb_wire_se118' }, - ['2015654670'] = { Name = 'cs2_roadsb_wire_se2' }, - ['-150062363'] = { Name = 'cs2_roadsb_wire_settlement001' }, - ['-1450335818'] = { Name = 'cs2_roadsb_wire_spline104' }, - ['-854890319'] = { Name = 'cs2_roadsb_wire_spline106' }, - ['-2010095876'] = { Name = 'cs2_roadsb_wire_spline107' }, - ['1903047032'] = { Name = 'cs2_roadsb_wire_spline108' }, - ['-1669658735'] = { Name = 'cs2_roadsb_wire_spline109' }, - ['61986593'] = { Name = 'cs2_roadsb_wire_spline114' }, - ['905198501'] = { Name = 'cs2_roadsb_wire_spline115' }, - ['-880744772'] = { Name = 'cs2_roadsb_wire_spline117' }, - ['-1161673409'] = { Name = 'cs2_roadsb_wire_spline118' }, - ['-325670677'] = { Name = 'cs2_roadsb_wire_spline119' }, - ['-240504970'] = { Name = 'cs2_roadsb_wire_spline121' }, - ['953588040'] = { Name = 'cs2_roadsb_wires_19_lcy' }, - ['-628515434'] = { Name = 'cs2_roadsb_wires_elec_light02' }, - ['-1256162737'] = { Name = 'cs2_roadsb_wires_elec_stan10' }, - ['1240671194'] = { Name = 'cs2_roadsb_wires_elec_stan16' }, - ['945914039'] = { Name = 'cs2_roadsb_wires_elec_stan17' }, - ['1855384865'] = { Name = 'cs2_roadsb_wires_elec_stan18' }, - ['186902993'] = { Name = 'cs2_roadsb_wires_elec_stan20' }, - ['-548957671'] = { Name = 'cs2_roadsb_wires_elec_stan21' }, - ['1998930394'] = { Name = 'cs2_roadsb_wires_elec_stan22' }, - ['-1937085276'] = { Name = 'cs2_roadsb_wires_elec_stan23' }, - ['-767002593'] = { Name = 'cs2_roadsb_wires_elec_stan24' }, - ['1973370570'] = { Name = 'cs2_roadsb_wires_elec_stan27' }, - ['2068892205'] = { Name = 'cs2_roadsb_wires_elec_stan28' }, - ['-1964938930'] = { Name = 'cs2_roadsb_wires_elec_stan29' }, - ['-1693153088'] = { Name = 'cs2_roadsb_wires_elec_stan30' }, - ['535117521'] = { Name = 'cs2_roadsb_wires_tele_heavy23' }, - ['1227788643'] = { Name = 'cs2_roadsb_wires_tele_heavy24' }, - ['1569372631'] = { Name = 'cs2_roadsb_wires_tele_heavy26' }, - ['1865440546'] = { Name = 'cs2_roadsb_wires_tele_heavy27' }, - ['958066936'] = { Name = 'cs2_roadsb_wires_tele_heavy28' }, - ['1254986845'] = { Name = 'cs2_roadsb_wires_tele_heavy29' }, - ['-1806817659'] = { Name = 'cs2_roadsb_wires_tele_heavy30' }, - ['-2029450245'] = { Name = 'cs2_roadsb_wires_tele_heavy31' }, - ['-494812437'] = { Name = 'cs2_roadsb_wires_tele_heavy32' }, - ['298099056'] = { Name = 'cs2_roadsb_wires_tele_heavy33' }, - ['1227198509'] = { Name = 'cs2_roadsb_wires_tele_heavy36' }, - ['2070312110'] = { Name = 'cs2_roadsb_wires_tele_heavy37' }, - ['1492824023'] = { Name = 'cs2_roadsb_wires_tele_heavy39' }, - ['-156535099'] = { Name = 'cs2_roadsb_wires_tele_stan12' }, - ['-1034482147'] = { Name = 'cs2_roadsb_wires_tele_stan14' }, - ['157689233'] = { Name = 'cs2_roadsb_ws008' }, - ['-619525909'] = { Name = 'cs2_roadsb_ws009' }, - ['-1941799448'] = { Name = 'cs2_roadsb_wspline008' }, - ['1421831662'] = { Name = 'cs3_01__deci1_b' }, - ['579176827'] = { Name = 'cs3_01__deci1_c' }, - ['1183812620'] = { Name = 'cs3_01__deci1_c001' }, - ['-1487180447'] = { Name = 'cs3_01__deci1' }, - ['-362892615'] = { Name = 'cs3_01__deci1b' }, - ['1447402879'] = { Name = 'cs3_01_armco00' }, - ['1684486594'] = { Name = 'cs3_01_armco01' }, - ['1907905636'] = { Name = 'cs3_01_armco02' }, - ['-208990134'] = { Name = 'cs3_01_beach1' }, - ['106542567'] = { Name = 'cs3_01_beach2' }, - ['-1108695822'] = { Name = 'cs3_01_beach3' }, - ['1277644548'] = { Name = 'cs3_01_cj_boatlod' }, - ['487752277'] = { Name = 'cs3_01_coast02' }, - ['792995512'] = { Name = 'cs3_01_coast03' }, - ['1405743043'] = { Name = 'cs3_01_coast05' }, - ['1012953194'] = { Name = 'cs3_01_coast05db01' }, - ['1992177063'] = { Name = 'cs3_01_coast06' }, - ['-1532183106'] = { Name = 'cs3_01_coast06b' }, - ['1763124345'] = { Name = 'cs3_01_coast06db' }, - ['-1902300474'] = { Name = 'cs3_01_coast06dcl' }, - ['568655426'] = { Name = 'cs3_01_deci8' }, - ['-292076832'] = { Name = 'cs3_01_deci8a' }, - ['-325151818'] = { Name = 'cs3_01_deci9' }, - ['176502107'] = { Name = 'cs3_01_dirttrack_008' }, - ['-951868655'] = { Name = 'cs3_01_foam_01_lod' }, - ['-1805806095'] = { Name = 'cs3_01_foam_01' }, - ['1615745550'] = { Name = 'cs3_01_foam_03_lod' }, - ['2023087718'] = { Name = 'cs3_01_foam_03' }, - ['98643335'] = { Name = 'cs3_01_foam_04_lod' }, - ['1574709491'] = { Name = 'cs3_01_foam_04' }, - ['1971882220'] = { Name = 'cs3_01_foam_05_lod' }, - ['1277298047'] = { Name = 'cs3_01_foam_05' }, - ['1203890020'] = { Name = 'cs3_01_foam_07_lod' }, - ['1127084951'] = { Name = 'cs3_01_foam_07' }, - ['406860217'] = { Name = 'cs3_01_foam_08_lod' }, - ['-184559816'] = { Name = 'cs3_01_foam_08' }, - ['-1941421918'] = { Name = 'cs3_01_mugu1' }, - ['-1671363974'] = { Name = 'cs3_01_props_combo0224_dslod' }, - ['-1130565606'] = { Name = 'cs3_01_rd_jn_dcl_01' }, - ['343159752'] = { Name = 'cs3_01_rd_jn_dclb_01' }, - ['-561716943'] = { Name = 'cs3_01_retwal1' }, - ['-1320810828'] = { Name = 'cs3_01_retwal2' }, - ['525427940'] = { Name = 'cs3_01_sea_07_lod' }, - ['-1148651508'] = { Name = 'cs3_01_sea_10_lod' }, - ['1856117204'] = { Name = 'cs3_01_sea_12_lod' }, - ['-333937024'] = { Name = 'cs3_01_sea_13_lod' }, - ['-1282591865'] = { Name = 'cs3_01_sea_14_lod' }, - ['1069812397'] = { Name = 'cs3_01_sea_16_lod' }, - ['1183266085'] = { Name = 'cs3_01_sea_cs3_01_uw1_00' }, - ['743392904'] = { Name = 'cs3_01_sea_cs3_01_uw1_00b' }, - ['-54320738'] = { Name = 'cs3_01_sea_cs3_01_uw1_01' }, - ['1778514970'] = { Name = 'cs3_01_sea_cs3_01_uw1_02' }, - ['543484129'] = { Name = 'cs3_01_sea_cs3_01_uw1_03' }, - ['260294431'] = { Name = 'cs3_01_sea_cs3_01_uw1_04' }, - ['1326804108'] = { Name = 'cs3_01_sea_cs3_01_uw1_04a' }, - ['-1235512116'] = { Name = 'cs3_01_sea_cs3_01_uw1_05' }, - ['-934496082'] = { Name = 'cs3_01_sea_cs3_01_uw1_06' }, - ['-617390469'] = { Name = 'cs3_01_sea_cs3_01_uw1_07' }, - ['1843037131'] = { Name = 'cs3_01_sea_cs3_01_uw1_08' }, - ['2091917686'] = { Name = 'cs3_01_sea_cs3_01_uw1_09' }, - ['-1267789809'] = { Name = 'cs3_01_sea_cs3_01_uw1_10' }, - ['190103009'] = { Name = 'cs3_01_sea_cs3_01_uw1_11' }, - ['417749252'] = { Name = 'cs3_01_sea_cs3_01_uw1_12' }, - ['1606084268'] = { Name = 'cs3_01_sea_cs3_01_uw1_13' }, - ['-296713255'] = { Name = 'cs3_01_sea_cs3_01_uw1_14' }, - ['1141911383'] = { Name = 'cs3_01_sea_cs3_01_uw1_15' }, - ['1390267634'] = { Name = 'cs3_01_sea_cs3_01_uw1_16' }, - ['1290813727'] = { Name = 'cs3_01_sea_cs3_01_uw1_17' }, - ['1792113889'] = { Name = 'cs3_01_sea_cs3_01_uw1_18' }, - ['814909540'] = { Name = 'cs3_01_sea_cs3_01_uw1_19' }, - ['-1053739012'] = { Name = 'cs3_01_sea_cs3_01_uw1_20' }, - ['163105034'] = { Name = 'cs3_01_sea_cs3_01_uw1_21' }, - ['445541045'] = { Name = 'cs3_01_sea_cs3_01_uw1_22' }, - ['-1914372282'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_00' }, - ['2059819273'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_01' }, - ['-1574590577'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_02' }, - ['-1889795588'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_03' }, - ['-1012241768'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_04' }, - ['-1295923001'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_05' }, - ['-652667531'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_06' }, - ['-393759602'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_07' }, - ['-699264989'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_08' }, - ['222002677'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_09' }, - ['638692429'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_10' }, - ['348981696'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_11' }, - ['647671131'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_12' }, - ['960221853'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_13' }, - ['-2109119305'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_17' }, - ['1687235119'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_20' }, - ['1999097692'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_21' }, - ['-1743974098'] = { Name = 'cs3_01_sea_cs3_1_uw_dec_22' }, - ['1088467999'] = { Name = 'cs3_01_sea_cs3_1_uwdecals01' }, - ['212814777'] = { Name = 'cs3_01_sea_cs3_1_uwdecals02' }, - ['389832915'] = { Name = 'cs3_01_sea_cs3_1_uwdecals03' }, - ['-400194906'] = { Name = 'cs3_01_sea_cs3_1_uwdecals04' }, - ['-88660023'] = { Name = 'cs3_01_sea_cs3_1_uwdecals05' }, - ['-447218421'] = { Name = 'cs3_01_sea_cs3_1_uwdecals06' }, - ['-919689394'] = { Name = 'cs3_01_sea_props_ph' }, - ['1231786704'] = { Name = 'cs3_01_si' }, - ['-1246816639'] = { Name = 'cs3_01_trl01' }, - ['-396264475'] = { Name = 'cs3_01_trl02' }, - ['-644751802'] = { Name = 'cs3_01_trl03' }, - ['-1552365931'] = { Name = 'cs3_02__decal002' }, - ['1269427481'] = { Name = 'cs3_02_coast04' }, - ['671614756'] = { Name = 'cs3_02_culv_1' }, - ['531560050'] = { Name = 'cs3_02_culv_9' }, - ['-769463577'] = { Name = 'cs3_02_decf_01' }, - ['-1292915583'] = { Name = 'cs3_02_decf_03' }, - ['-1060550604'] = { Name = 'cs3_02_decf_04' }, - ['-1650032145'] = { Name = 'cs3_02_decf_06' }, - ['1122356347'] = { Name = 'cs3_02_decf_09' }, - ['-487681579'] = { Name = 'cs3_02_decf_09b' }, - ['-862892240'] = { Name = 'cs3_02_decf_10' }, - ['-432438656'] = { Name = 'cs3_02_decf_11' }, - ['-1116429823'] = { Name = 'cs3_02_decf_53_nnn' }, - ['-1737815038'] = { Name = 'cs3_02_decr04' }, - ['-4851148'] = { Name = 'cs3_02_decr1' }, - ['-349999022'] = { Name = 'cs3_02_decr112' }, - ['-1223038723'] = { Name = 'cs3_02_decr2' }, - ['-104607834'] = { Name = 'cs3_02_decr33' }, - ['1860942324'] = { Name = 'cs3_02_decr37' }, - ['276561162'] = { Name = 'cs3_02_decr39' }, - ['-1762294414'] = { Name = 'cs3_02_decr41' }, - ['-691361694'] = { Name = 'cs3_02_decr5' }, - ['-1818786394'] = { Name = 'cs3_02_decr65' }, - ['801553918'] = { Name = 'cs3_02_decr66' }, - ['7038420'] = { Name = 'cs3_02_decr86' }, - ['-1389650422'] = { Name = 'cs3_02_decr86b' }, - ['-461033636'] = { Name = 'cs3_02_decr91' }, - ['997023019'] = { Name = 'cs3_02_decr92' }, - ['1160802481'] = { Name = 'cs3_02_decr93' }, - ['1199796833'] = { Name = 'cs3_02_decr93a' }, - ['1556399040'] = { Name = 'cs3_02_decz01' }, - ['-51510368'] = { Name = 'cs3_02_decz02' }, - ['1864951828'] = { Name = 'cs3_02_decz03' }, - ['653125120'] = { Name = 'cs3_02_drain1' }, - ['-594835245'] = { Name = 'cs3_02_footp1' }, - ['1326840549'] = { Name = 'cs3_02_lnd01' }, - ['895600509'] = { Name = 'cs3_02_lnd02' }, - ['1685562792'] = { Name = 'cs3_02_lnd03' }, - ['1487834646'] = { Name = 'cs3_02_lnd04' }, - ['-2016580525'] = { Name = 'cs3_02_lnd05' }, - ['68716954'] = { Name = 'cs3_02_refprox1_ch' }, - ['1233014521'] = { Name = 'cs3_02_refprox2_ch' }, - ['826328676'] = { Name = 'cs3_02_refprox3_ch' }, - ['-1209588062'] = { Name = 'cs3_02_retwalb007' }, - ['418123829'] = { Name = 'cs3_02_retwalb1' }, - ['-810815792'] = { Name = 'cs3_02_retwalb11' }, - ['-41920162'] = { Name = 'cs3_02_retwalb3' }, - ['265027061'] = { Name = 'cs3_02_retwalb4' }, - ['668820186'] = { Name = 'cs3_02_trail07' }, - ['79043724'] = { Name = 'cs3_02_trail08' }, - ['1491780504'] = { Name = 'cs3_02_trail11' }, - ['-1462165675'] = { Name = 'cs3_02_trailz1' }, - ['-550171632'] = { Name = 'cs3_02_trailz2' }, - ['-710616605'] = { Name = 'cs3_02_trck_007' }, - ['-1889811570'] = { Name = 'cs3_02_trck_011' }, - ['450833942'] = { Name = 'cs3_02_trck032' }, - ['1260146434'] = { Name = 'cs3_02_trck417' }, - ['683870840'] = { Name = 'cs3_02_trck419' }, - ['-664508196'] = { Name = 'cs3_02_trck420' }, - ['-757703228'] = { Name = 'cs3_02_trck422' }, - ['498791308'] = { Name = 'cs3_02_trck425' }, - ['231560113'] = { Name = 'cs3_02_trck426' }, - ['1789430650'] = { Name = 'cs3_02_trck430' }, - ['778202507'] = { Name = 'cs3_02_trck440' }, - ['-331323068'] = { Name = 'cs3_02_trck445' }, - ['1720501167'] = { Name = 'cs3_03__decal001' }, - ['789632180'] = { Name = 'cs3_03__decal002' }, - ['-1434202576'] = { Name = 'cs3_03_bwall_01' }, - ['1287459492'] = { Name = 'cs3_03_bwall_02' }, - ['41365217'] = { Name = 'cs3_03_ctrack01' }, - ['272157284'] = { Name = 'cs3_03_ctrack02' }, - ['1630858343'] = { Name = 'cs3_03_ctrack03' }, - ['-283670494'] = { Name = 'cs3_03_ctrack04' }, - ['1184905022'] = { Name = 'cs3_03_ctrack05' }, - ['-1468071571'] = { Name = 'cs3_03_dec00' }, - ['-846083182'] = { Name = 'cs3_03_dec02' }, - ['91405127'] = { Name = 'cs3_03_dec03' }, - ['1223803460'] = { Name = 'cs3_03_dec07' }, - ['993011393'] = { Name = 'cs3_03_dec08' }, - ['-705811760'] = { Name = 'cs3_03_dec0829' }, - ['203969314'] = { Name = 'cs3_03_dec088' }, - ['148601697'] = { Name = 'cs3_03_dec1' }, - ['456713663'] = { Name = 'cs3_03_dec10' }, - ['-328300501'] = { Name = 'cs3_03_dec11' }, - ['-22467424'] = { Name = 'cs3_03_dec12' }, - ['-1030507414'] = { Name = 'cs3_03_dec13' }, - ['-1475412127'] = { Name = 'cs3_03_dec15' }, - ['-2049852697'] = { Name = 'cs3_03_dec17' }, - ['-19929266'] = { Name = 'cs3_03_dec2' }, - ['1663765158'] = { Name = 'cs3_03_dec23' }, - ['-580747501'] = { Name = 'cs3_03_dec24' }, - ['-972009361'] = { Name = 'cs3_03_dec25' }, - ['-32358286'] = { Name = 'cs3_03_dec26' }, - ['-1337711401'] = { Name = 'cs3_03_dec27' }, - ['-497186551'] = { Name = 'cs3_03_dec28' }, - ['-1957799476'] = { Name = 'cs3_03_dec30' }, - ['-1727564482'] = { Name = 'cs3_03_dec31' }, - ['-1615527271'] = { Name = 'cs3_03_dec32' }, - ['-1116520939'] = { Name = 'cs3_03_dec33' }, - ['-1507110522'] = { Name = 'cs3_03_decal005' }, - ['1666501594'] = { Name = 'cs3_03_decal008' }, - ['-1952270403'] = { Name = 'cs3_03_deco01' }, - ['710636844'] = { Name = 'cs3_03_deco02' }, - ['1059233466'] = { Name = 'cs3_03_deco03' }, - ['1308179559'] = { Name = 'cs3_03_deco04' }, - ['1553455524'] = { Name = 'cs3_03_deco05' }, - ['1461045276'] = { Name = 'cs3_03_deco05a' }, - ['-1598457043'] = { Name = 'cs3_03_decw_01' }, - ['-2132715692'] = { Name = 'cs3_03_decy_02' }, - ['-424615733'] = { Name = 'cs3_03_overlooka_rl' }, - ['-380692517'] = { Name = 'cs3_03_overlooka' }, - ['549737699'] = { Name = 'cs3_03_overlookasign' }, - ['-431191095'] = { Name = 'cs3_03_overlookb_rl' }, - ['1317102142'] = { Name = 'cs3_03_overlookb' }, - ['-1868064336'] = { Name = 'cs3_03_overlookbsign' }, - ['-1084092248'] = { Name = 'cs3_03_refprox1_ch' }, - ['-1653794587'] = { Name = 'cs3_03_refprox2_ch' }, - ['-297282684'] = { Name = 'cs3_03_refprox3_ch' }, - ['-1684690428'] = { Name = 'cs3_03_rivside1' }, - ['-1396583095'] = { Name = 'cs3_03_terr01' }, - ['-676582627'] = { Name = 'cs3_03_terr02' }, - ['697978616'] = { Name = 'cs3_03_terr03' }, - ['-263955379'] = { Name = 'cs3_03_terr04' }, - ['-977991889'] = { Name = 'cs3_03_terr05' }, - ['509589635'] = { Name = 'cs3_03_terr06' }, - ['1882840118'] = { Name = 'cs3_03_terr07' }, - ['2117360009'] = { Name = 'cs3_03_terr07a' }, - ['-1910145145'] = { Name = 'cs3_03_track02' }, - ['1540987632'] = { Name = 'cs3_03_track03' }, - ['1772074620'] = { Name = 'cs3_03_track04' }, - ['960288183'] = { Name = 'cs3_03_track05' }, - ['-978129303'] = { Name = 'cs3_03_track06' }, - ['-42888108'] = { Name = 'cs3_03_tunn_ent_004' }, - ['591798215'] = { Name = 'cs3_03_tunn_entdc_002' }, - ['-116144519'] = { Name = 'cs3_03_tunnold_01' }, - ['-375299246'] = { Name = 'cs3_03_waltmp' }, - ['447747416'] = { Name = 'cs3_04_brg_01' }, - ['-527734046'] = { Name = 'cs3_04_brg_02_shadowproxy' }, - ['167670765'] = { Name = 'cs3_04_brg_02' }, - ['1133737112'] = { Name = 'cs3_04_bus_decals' }, - ['281621968'] = { Name = 'cs3_04_bus' }, - ['-2009075874'] = { Name = 'cs3_04_cover010' }, - ['-1449709044'] = { Name = 'cs3_04_cover011' }, - ['-428150858'] = { Name = 'cs3_04_cover4' }, - ['-229510836'] = { Name = 'cs3_04_cover4o' }, - ['-1704236793'] = { Name = 'cs3_04_cs6_01_weldshed005' }, - ['-82432770'] = { Name = 'cs3_04_cs6_01_weldshed005b' }, - ['1975683296'] = { Name = 'cs3_04_decal_struc' }, - ['1133502331'] = { Name = 'cs3_04_decal1' }, - ['519181888'] = { Name = 'cs3_04_decal3' }, - ['1789832632'] = { Name = 'cs3_04_decal6' }, - ['1150774275'] = { Name = 'cs3_04_decalground' }, - ['1571071221'] = { Name = 'cs3_04_decalx1' }, - ['1264451688'] = { Name = 'cs3_04_decalx2' }, - ['353637329'] = { Name = 'cs3_04_decalx3' }, - ['2037767955'] = { Name = 'cs3_04_decalz1' }, - ['-2006745874'] = { Name = 'cs3_04_decalz2' }, - ['-1845850084'] = { Name = 'cs3_04_decalz3' }, - ['-1242503137'] = { Name = 'cs3_04_des_meth_grp1_slod' }, - ['-977613479'] = { Name = 'cs3_04_des_meth_grp1' }, - ['1705919316'] = { Name = 'cs3_04_des_meth_grp2_slod' }, - ['-1214336735'] = { Name = 'cs3_04_des_meth_grp2' }, - ['96501767'] = { Name = 'cs3_04_des_meth_grp3_slod' }, - ['-1444145732'] = { Name = 'cs3_04_des_meth_grp3' }, - ['-413758206'] = { Name = 'cs3_04_des_methrl_grp1' }, - ['-1549204060'] = { Name = 'cs3_04_des_methrl_grp2' }, - ['-1814075887'] = { Name = 'cs3_04_des_methrl_grp3' }, - ['-1159588532'] = { Name = 'cs3_04_details_rocks' }, - ['1088965832'] = { Name = 'cs3_04_details_stage' }, - ['1663375650'] = { Name = 'cs3_04_elec_light002' }, - ['87490825'] = { Name = 'cs3_04_elec_stand002' }, - ['786669817'] = { Name = 'cs3_04_emissive_1_lod' }, - ['1739294432'] = { Name = 'cs3_04_emissive_1' }, - ['985642560'] = { Name = 'cs3_04_emissive_2_lod' }, - ['-1614317801'] = { Name = 'cs3_04_emissive_2' }, - ['-1222091669'] = { Name = 'cs3_04_emissive_3_lod' }, - ['-1979102309'] = { Name = 'cs3_04_emissive_3' }, - ['-2045298695'] = { Name = 'cs3_04_hoarder' }, - ['350673446'] = { Name = 'cs3_04_house01' }, - ['-1636845801'] = { Name = 'cs3_04_house01b' }, - ['725878500'] = { Name = 'cs3_04_house02' }, - ['-1949724545'] = { Name = 'cs3_04_house02b' }, - ['407293631'] = { Name = 'cs3_04_junction_ovr_01' }, - ['-36577003'] = { Name = 'cs3_04_land_01' }, - ['-745894777'] = { Name = 'cs3_04_land_02' }, - ['1874314471'] = { Name = 'cs3_04_land_03' }, - ['2104516696'] = { Name = 'cs3_04_land_04' }, - ['-1048904374'] = { Name = 'cs3_04_mainbuilding3_a' }, - ['-1468361835'] = { Name = 'cs3_04_motel_detail001' }, - ['-646826016'] = { Name = 'cs3_04_motel' }, - ['732105446'] = { Name = 'cs3_04_props_combo01_01_lod' }, - ['-116023746'] = { Name = 'cs3_04_signs' }, - ['1469972865'] = { Name = 'cs3_04_signs02' }, - ['-1568941429'] = { Name = 'cs3_04_stage' }, - ['918854543'] = { Name = 'cs3_04_statc013' }, - ['924623273'] = { Name = 'cs3_04_t_h_tot004' }, - ['-1916445839'] = { Name = 'cs3_04_tel_hvy003' }, - ['-1367120706'] = { Name = 'cs3_04_tel_stand002' }, - ['-357132556'] = { Name = 'cs3_04_tlr_006' }, - ['-356372594'] = { Name = 'cs3_04_tlrbits_02' }, - ['1988346463'] = { Name = 'cs3_04_tlrbrn_01' }, - ['-1851456499'] = { Name = 'cs3_04_tlrtmp_01' }, - ['-1818517624'] = { Name = 'cs3_04_tlrtmp_013' }, - ['-1275076528'] = { Name = 'cs3_04_tlrtmp_015' }, - ['-1241887533'] = { Name = 'cs3_04_tlrtmp_04' }, - ['-1153236047'] = { Name = 'cs3_04_tlrtmp_05_rails' }, - ['-1010898852'] = { Name = 'cs3_04_tlrtmp_05' }, - ['-534077133'] = { Name = 'cs3_04_tlrtmp_07' }, - ['-19669371'] = { Name = 'cs3_04_tlrtmp_08' }, - ['1058465466'] = { Name = 'cs3_04_tlrtmp_12' }, - ['969102172'] = { Name = 'cs3_04_trailerparka_emis_lod' }, - ['-544221017'] = { Name = 'cs3_04_trailerparka_emis' }, - ['-48832766'] = { Name = 'cs3_04_trailerparka_grp1_slod' }, - ['-736557803'] = { Name = 'cs3_04_trailerparka_grp1' }, - ['398084602'] = { Name = 'cs3_04_trailerparka_grp2_slod' }, - ['-826869167'] = { Name = 'cs3_04_trailerparka_grp2' }, - ['-2095960936'] = { Name = 'cs3_04_trailerparkb_emis_lod' }, - ['-235126220'] = { Name = 'cs3_04_trailerparkb_emis' }, - ['-926579616'] = { Name = 'cs3_04_trailerparkb_grp1_slod' }, - ['-992160669'] = { Name = 'cs3_04_trailerparkb_grp1' }, - ['-1532508245'] = { Name = 'cs3_04_trailerparkb_grp2_slod' }, - ['494863798'] = { Name = 'cs3_04_trailerparkb_grp2' }, - ['-1028444972'] = { Name = 'cs3_04_trailerparkc_emis_lod' }, - ['-1623987236'] = { Name = 'cs3_04_trailerparkc_emis' }, - ['232144571'] = { Name = 'cs3_04_trailerparkc_grp1_slod' }, - ['-1947677186'] = { Name = 'cs3_04_trailerparkc_grp1' }, - ['-67023238'] = { Name = 'cs3_04_trailerparkc_grp2_slod' }, - ['2116465274'] = { Name = 'cs3_04_trailerparkc_grp2' }, - ['-68429379'] = { Name = 'cs3_04_trailerparkd_emis_lod' }, - ['-979814820'] = { Name = 'cs3_04_trailerparkd_emis' }, - ['1432781793'] = { Name = 'cs3_04_trailerparkd_grp1_slod' }, - ['-1458026428'] = { Name = 'cs3_04_trailerparkd_grp1' }, - ['1331696972'] = { Name = 'cs3_04_trailerparkd_grp2_slod' }, - ['-1208785414'] = { Name = 'cs3_04_trailerparkd_grp2' }, - ['-1036532055'] = { Name = 'cs3_04_trailerparke_grp1_slod' }, - ['-359328265'] = { Name = 'cs3_04_trailerparke_grp1' }, - ['1006482630'] = { Name = 'cs3_04_trailerparke_grp2_slod' }, - ['-128470660'] = { Name = 'cs3_04_trailerparke_grp2' }, - ['208937166'] = { Name = 'cs3_04_trck_002' }, - ['-1233067311'] = { Name = 'cs3_04_trck_002a' }, - ['-585567635'] = { Name = 'cs3_04_trck_03' }, - ['-877998191'] = { Name = 'cs3_04_trck_04' }, - ['-907402402'] = { Name = 'cs3_04_trckw_01' }, - ['-584540290'] = { Name = 'cs3_04_trckw_02b' }, - ['-1155938969'] = { Name = 'cs3_04_trland_01_dec' }, - ['-2128094823'] = { Name = 'cs3_04_trland_01' }, - ['-1290682948'] = { Name = 'cs3_04_trland_01b' }, - ['-96619885'] = { Name = 'cs3_04_trucks_dec' }, - ['1411553813'] = { Name = 'cs3_04_trucks' }, - ['1089670916'] = { Name = 'cs3_04_van_dec' }, - ['-693102825'] = { Name = 'cs3_05_brdge_shdw' }, - ['53831776'] = { Name = 'cs3_05_cm_rckgrp_05' }, - ['963427398'] = { Name = 'cs3_05_creek_brdg01' }, - ['1086059882'] = { Name = 'cs3_05_crk_bdg01_rl' }, - ['1172477879'] = { Name = 'cs3_05_crk_bdg02_rl' }, - ['-711403883'] = { Name = 'cs3_05_crk_bdg03_rl' }, - ['1859453547'] = { Name = 'cs3_05_crk_bdg04_rl' }, - ['1903210'] = { Name = 'cs3_05_crk_bdg05_rl' }, - ['192327470'] = { Name = 'cs3_05_crk_brdg005' }, - ['-1624621808'] = { Name = 'cs3_05_crk_brdg02' }, - ['-1994387204'] = { Name = 'cs3_05_crk_brdg03' }, - ['-130548590'] = { Name = 'cs3_05_crk_brdg04_dcl' }, - ['2061464699'] = { Name = 'cs3_05_crk_brdg04' }, - ['-317783535'] = { Name = 'cs3_05_cs3_06_rivrok_001' }, - ['1533402813'] = { Name = 'cs3_05_cs3_06_rivrok_002' }, - ['-351673556'] = { Name = 'cs3_05_cvrdbrdg_grime' }, - ['88352786'] = { Name = 'cs3_05_cvrdbrdg_main001' }, - ['-268485052'] = { Name = 'cs3_05_cvrdbrdg_sprt' }, - ['1410611204'] = { Name = 'cs3_05_dirttrck_01' }, - ['1726733747'] = { Name = 'cs3_05_dirttrck_02' }, - ['448808297'] = { Name = 'cs3_05_dirttrck_03' }, - ['-484969910'] = { Name = 'cs3_05_dirttrck_03b' }, - ['142909682'] = { Name = 'cs3_05_dirttrck_04' }, - ['1025051166'] = { Name = 'cs3_05_dirttrck_05' }, - ['752904617'] = { Name = 'cs3_05_dirttrck_06' }, - ['1667094183'] = { Name = 'cs3_05_dirttrck_07' }, - ['-2042717080'] = { Name = 'cs3_05_dirttrck_09' }, - ['-1927895408'] = { Name = 'cs3_05_dirttrck_10' }, - ['-1211171840'] = { Name = 'cs3_05_dirttrck_11' }, - ['-434799483'] = { Name = 'cs3_05_dirttrck_11b' }, - ['-1567305332'] = { Name = 'cs3_05_dirttrck_12' }, - ['-1732395530'] = { Name = 'cs3_05_dirttrck_13' }, - ['-2117627894'] = { Name = 'cs3_05_dirttrck_14' }, - ['2133369569'] = { Name = 'cs3_05_dirttrck_14a' }, - ['-858019999'] = { Name = 'cs3_05_dirttrck_20' }, - ['-1644492728'] = { Name = 'cs3_05_glue_01' }, - ['-801248051'] = { Name = 'cs3_05_glue_02' }, - ['1558062874'] = { Name = 'cs3_05_land09' }, - ['-809602829'] = { Name = 'cs3_05_pref_prx_hd4' }, - ['-477186142'] = { Name = 'cs3_05_prerefproc_02' }, - ['-74530911'] = { Name = 'cs3_05_prerefproc_04_hd' }, - ['-1260824008'] = { Name = 'cs3_05_prerefproc_05' }, - ['-2073387381'] = { Name = 'cs3_05_prerefproc_05b' }, - ['-777579565'] = { Name = 'cs3_05_prerefproc_07' }, - ['1020182735'] = { Name = 'cs3_05_prerefprochd_02' }, - ['-2123418490'] = { Name = 'cs3_05_prerefprochd_02d' }, - ['1548150482'] = { Name = 'cs3_05_prerefprochd_05b' }, - ['-2077251819'] = { Name = 'cs3_05_prerefprox_02a' }, - ['-1819360281'] = { Name = 'cs3_05_prerefprox_03' }, - ['-984832158'] = { Name = 'cs3_05_prerefprox_04' }, - ['-919822254'] = { Name = 'cs3_05_prerefprox_07b' }, - ['305483785'] = { Name = 'cs3_05_prerefprox4_02' }, - ['498399290'] = { Name = 'cs3_05_prerefproxhd_02a' }, - ['1197400761'] = { Name = 'cs3_05_prerefproxhd_03' }, - ['1973436219'] = { Name = 'cs3_05_prerefproxhd_04' }, - ['2116571211'] = { Name = 'cs3_05_prerefproxhd_07' }, - ['-406024788'] = { Name = 'cs3_05_prerefprx_02c' }, - ['-794278725'] = { Name = 'cs3_05_prerefprx_09' }, - ['-691350440'] = { Name = 'cs3_05_prerefprx_10' }, - ['-660149516'] = { Name = 'cs3_05_prerefprxhd_02c' }, - ['-687141854'] = { Name = 'cs3_05_prerefprxhd_09' }, - ['1458572618'] = { Name = 'cs3_05_prerefprxhd_10' }, - ['-952152896'] = { Name = 'cs3_05_prfprox_hd_07b' }, - ['1286446080'] = { Name = 'cs3_05_prrefproxhd_006' }, - ['-877537235'] = { Name = 'cs3_05_prrefproxhd_05' }, - ['834829958'] = { Name = 'cs3_05_prrefprx_02d' }, - ['-1910208448'] = { Name = 'cs3_05_prrefprx_04_01' }, - ['320815800'] = { Name = 'cs3_05_rckinsert03' }, - ['-125530749'] = { Name = 'cs3_05_rckinsert05' }, - ['1340202621'] = { Name = 'cs3_05_rckinsert05a' }, - ['690712272'] = { Name = 'cs3_05_rckinsert06' }, - ['-1830108843'] = { Name = 'cs3_05_rds_dtjnc_d08' }, - ['1580527026'] = { Name = 'cs3_05_refproc_06' }, - ['262820004'] = { Name = 'cs3_05_riv_rck_b1' }, - ['612366927'] = { Name = 'cs3_05_riv_rck_b2' }, - ['-2053568777'] = { Name = 'cs3_05_riv_rck_grpa1' }, - ['901837767'] = { Name = 'cs3_05_riv_rck_grpa6a' }, - ['658134714'] = { Name = 'cs3_05_riv_rck_grpa6b' }, - ['-1852449245'] = { Name = 'cs3_05_river02' }, - ['1671798516'] = { Name = 'cs3_05_river02b' }, - ['-384627440'] = { Name = 'cs3_05_river03' }, - ['1240102846'] = { Name = 'cs3_05_river03b' }, - ['-1938016701'] = { Name = 'cs3_05_river04_01' }, - ['-1497142575'] = { Name = 'cs3_05_river04_02' }, - ['399960727'] = { Name = 'cs3_05_river04' }, - ['1554674749'] = { Name = 'cs3_05_river05' }, - ['-1099706125'] = { Name = 'cs3_05_river05a' }, - ['-1264206505'] = { Name = 'cs3_05_river05b' }, - ['-1564468852'] = { Name = 'cs3_05_river05c' }, - ['-789940760'] = { Name = 'cs3_05_river05d' }, - ['1286214965'] = { Name = 'cs3_05_river06_d' }, - ['1265816014'] = { Name = 'cs3_05_river06' }, - ['740633472'] = { Name = 'cs3_05_river06b' }, - ['-1375146931'] = { Name = 'cs3_05_river06b001' }, - ['-1495552698'] = { Name = 'cs3_05_rivrapidrk_01' }, - ['-1188322567'] = { Name = 'cs3_05_rockdec_01' }, - ['-932363908'] = { Name = 'cs3_05_rockdec_02' }, - ['-1115804758'] = { Name = 'cs3_05_rockdec_03' }, - ['-1940746246'] = { Name = 'cs3_05_rockdec_03a' }, - ['-817836241'] = { Name = 'cs3_05_rockdec_04' }, - ['-653008171'] = { Name = 'cs3_05_rockdec_05' }, - ['-355891648'] = { Name = 'cs3_05_rockdec_06' }, - ['114802268'] = { Name = 'cs3_05_rockdec_07' }, - ['378953177'] = { Name = 'cs3_05_rockdec_08' }, - ['2104208550'] = { Name = 'cs3_05_rockdec_10' }, - ['-1989032782'] = { Name = 'cs3_05_rockdec_11' }, - ['-1757978563'] = { Name = 'cs3_05_rockdec_12' }, - ['-1464138952'] = { Name = 'cs3_05_rockdec_13' }, - ['-144793470'] = { Name = 'cs3_05_rockdec_15' }, - ['322103724'] = { Name = 'cs3_05_rockdec_15b' }, - ['-1822004667'] = { Name = 'cs3_05_rockdec_15c' }, - ['624360498'] = { Name = 'cs3_05_rockdec_16' }, - ['1656025'] = { Name = 'cs3_05_rockdec_16b' }, - ['921673639'] = { Name = 'cs3_05_rockdec_17' }, - ['1155152764'] = { Name = 'cs3_05_rockdec_18' }, - ['-541227514'] = { Name = 'cs3_05_rockdec_18b' }, - ['1349014168'] = { Name = 'cs3_05_rockdec_19' }, - ['2089102329'] = { Name = 'cs3_05_rockdec_20' }, - ['-968618084'] = { Name = 'cs3_05_rockglly_01' }, - ['-1485602886'] = { Name = 'cs3_05_rocks_riv05' }, - ['1204799601'] = { Name = 'cs3_05_rural1' }, - ['-369977952'] = { Name = 'cs3_05_rural1de' }, - ['-1574626363'] = { Name = 'cs3_05_rvrbldr_2_lod' }, - ['14833032'] = { Name = 'cs3_05_rvrbldr_2' }, - ['784150845'] = { Name = 'cs3_05_rvrbldr_3' }, - ['-1320025376'] = { Name = 'cs3_05_smllrk003' }, - ['1804786383'] = { Name = 'cs3_05_smllrk02' }, - ['2030372944'] = { Name = 'cs3_05_tmpbdg03_rl' }, - ['-1843943989'] = { Name = 'cs3_05_tmpbrdge03' }, - ['-147858408'] = { Name = 'cs3_05_trevor_trail_decal001' }, - ['953286635'] = { Name = 'cs3_05_water06_grp1_slod' }, - ['1003798720'] = { Name = 'cs3_05_water06_grp1' }, - ['-1133441918'] = { Name = 'cs3_05_water06_grp2_slod' }, - ['1302029389'] = { Name = 'cs3_05_water06_grp2' }, - ['1717634787'] = { Name = 'cs3_05_water07_grp1_slod' }, - ['103470340'] = { Name = 'cs3_05_water07_grp1' }, - ['-676518811'] = { Name = 'cs3_05_water07_grp2_slod' }, - ['1741920340'] = { Name = 'cs3_05_water07_grp2' }, - ['1465738852'] = { Name = 'cs3_05_watermesh01' }, - ['1090861492'] = { Name = 'cs3_05_watermesh02' }, - ['851942713'] = { Name = 'cs3_05_watermesh03' }, - ['-1312318745'] = { Name = 'cs3_05_watermesh04' }, - ['403531633'] = { Name = 'cs3_05_watermesh05' }, - ['-1791893068'] = { Name = 'cs3_05_watermesh08' }, - ['1845093914'] = { Name = 'cs3_05_xdec_29' }, - ['537264495'] = { Name = 'cs3_06_06_land_05' }, - ['1793450684'] = { Name = 'cs3_06_cliff2_dcl' }, - ['254692509'] = { Name = 'cs3_06_cliffter_dcl01' }, - ['1699205786'] = { Name = 'cs3_06_cs_dcl' }, - ['1941062350'] = { Name = 'cs3_06_cs3_01_dtrack_009' }, - ['-1821740530'] = { Name = 'cs3_06_cs3_newtrkdcl_014' }, - ['1020312744'] = { Name = 'cs3_06_culvert_02_shdw' }, - ['135511537'] = { Name = 'cs3_06_culvert001' }, - ['-1245275816'] = { Name = 'cs3_06_culvert004' }, - ['1495327471'] = { Name = 'cs3_06_culvert005b_sm' }, - ['1935038199'] = { Name = 'cs3_06_culvert02' }, - ['1557277167'] = { Name = 'cs3_06_culvert03' }, - ['-1987305654'] = { Name = 'cs3_06_culvt001_shdw' }, - ['-1968048529'] = { Name = 'cs3_06_dcl_04' }, - ['-542089618'] = { Name = 'cs3_06_dcl_07c' }, - ['836519101'] = { Name = 'cs3_06_dcl_08' }, - ['203127400'] = { Name = 'cs3_06_dcl_10' }, - ['-1930888187'] = { Name = 'cs3_06_dcl_13' }, - ['-1855290104'] = { Name = 'cs3_06_dcl_15' }, - ['-37921372'] = { Name = 'cs3_06_dcl_18' }, - ['260407604'] = { Name = 'cs3_06_dcl_19' }, - ['1900111106'] = { Name = 'cs3_06_dcl_20' }, - ['1543518848'] = { Name = 'cs3_06_dcl_21' }, - ['438253503'] = { Name = 'cs3_06_dcl_31' }, - ['1285561540'] = { Name = 'cs3_06_dcl_37' }, - ['-784066523'] = { Name = 'cs3_06_dcl_37c' }, - ['-256876158'] = { Name = 'cs3_06_dcl_42' }, - ['-571524096'] = { Name = 'cs3_06_dcl_43' }, - ['59901765'] = { Name = 'cs3_06_dcl_45' }, - ['1089042501'] = { Name = 'cs3_06_foam_01' }, - ['850582488'] = { Name = 'cs3_06_foam_02' }, - ['91521372'] = { Name = 'cs3_06_foam_03' }, - ['2064739480'] = { Name = 'cs3_06_foam_04' }, - ['1781582551'] = { Name = 'cs3_06_foam_05' }, - ['1608889921'] = { Name = 'cs3_06_foam_06' }, - ['1310069410'] = { Name = 'cs3_06_foam_07' }, - ['-995033130'] = { Name = 'cs3_06_foam_08' }, - ['-1763138490'] = { Name = 'cs3_06_foam_09' }, - ['960249692'] = { Name = 'cs3_06_jet_refprox_ch' }, - ['288324276'] = { Name = 'cs3_06_jetty_overlay' }, - ['-1214243121'] = { Name = 'cs3_06_jetty_refprox' }, - ['-1300438693'] = { Name = 'cs3_06_jetty' }, - ['1421098258'] = { Name = 'cs3_06_land_02' }, - ['1190015'] = { Name = 'cs3_06_land_02a' }, - ['-1528663523'] = { Name = 'cs3_06_land_02b' }, - ['-1756773836'] = { Name = 'cs3_06_land_03' }, - ['-1886656940'] = { Name = 'cs3_06_land_03b' }, - ['-1374883910'] = { Name = 'cs3_06_land_04' }, - ['869216260'] = { Name = 'cs3_06_land_06b' }, - ['641438941'] = { Name = 'cs3_06_land_06e' }, - ['286111166'] = { Name = 'cs3_06_land_07' }, - ['-194593484'] = { Name = 'cs3_06_land_07b' }, - ['1119345105'] = { Name = 'cs3_06_land_07c' }, - ['-1429230616'] = { Name = 'cs3_06_land_b_005' }, - ['-993431597'] = { Name = 'cs3_06_land_b_02' }, - ['1308721733'] = { Name = 'cs3_06_land_b_03' }, - ['2032851095'] = { Name = 'cs3_06_land_b_04' }, - ['1398188288'] = { Name = 'cs3_06_lightdcls_01' }, - ['-961161850'] = { Name = 'cs3_06_nubbin_dcls07' }, - ['-349855295'] = { Name = 'cs3_06_nubbin_dcls13' }, - ['-1542450285'] = { Name = 'cs3_06_nubbin_dcls17' }, - ['-1378703588'] = { Name = 'cs3_06_nubbin_dcls18' }, - ['783407269'] = { Name = 'cs3_06_nubbin_dcls18l' }, - ['-429222105'] = { Name = 'cs3_06_nubbin_dcls20' }, - ['936600204'] = { Name = 'cs3_06_nubtrckdcl' }, - ['798712671'] = { Name = 'cs3_06_props_06b17_01_lod' }, - ['1474775248'] = { Name = 'cs3_06_refprox02_ch' }, - ['-186736019'] = { Name = 'cs3_06_refprox02b_ch' }, - ['1543402631'] = { Name = 'cs3_06_refprox04_ch' }, - ['-1652235546'] = { Name = 'cs3_06_refprox05_ch' }, - ['290398786'] = { Name = 'cs3_06_refprox06_ch' }, - ['1103323207'] = { Name = 'cs3_06_refprox07_ch' }, - ['-913798406'] = { Name = 'cs3_06_refprox08_ch' }, - ['-1159973821'] = { Name = 'cs3_06_refprox09_ch' }, - ['1516361536'] = { Name = 'cs3_06_refprox11_ch' }, - ['-56811616'] = { Name = 'cs3_06_refprox12_ch' }, - ['-83292679'] = { Name = 'cs3_06_sea_cargoplane_a' }, - ['-738874754'] = { Name = 'cs3_06_sea_cargoplane_dcl001' }, - ['-459519530'] = { Name = 'cs3_06_sea_cargoplane_lod' }, - ['390692112'] = { Name = 'cs3_06_sea_cargoplane' }, - ['-1396685004'] = { Name = 'cs3_06_sea_cargoplane2_dcl01' }, - ['-1173012613'] = { Name = 'cs3_06_sea_cargoplane2_lod' }, - ['892633046'] = { Name = 'cs3_06_sea_cargoplane2' }, - ['1823547169'] = { Name = 'cs3_06_sea_shipwreck_lod' }, - ['-885340866'] = { Name = 'cs3_06_sea_shipwreck' }, - ['-1212458409'] = { Name = 'cs3_06_sea_uw_001_lod' }, - ['-1197684252'] = { Name = 'cs3_06_sea_uw_001' }, - ['-1487630186'] = { Name = 'cs3_06_sea_uw_002_lod' }, - ['-900174501'] = { Name = 'cs3_06_sea_uw_002' }, - ['1515261262'] = { Name = 'cs3_06_sea_uw_003' }, - ['1679040724'] = { Name = 'cs3_06_sea_uw_004' }, - ['1976747089'] = { Name = 'cs3_06_sea_uw_005' }, - ['-1387292844'] = { Name = 'cs3_06_sea_uw_006_lod' }, - ['-1820262483'] = { Name = 'cs3_06_sea_uw_006' }, - ['-1803550277'] = { Name = 'cs3_06_sea_uw_007' }, - ['839329833'] = { Name = 'cs3_06_sea_uw_008_lod' }, - ['-1512364943'] = { Name = 'cs3_06_sea_uw_008' }, - ['-1072277273'] = { Name = 'cs3_06_sea_uw_009' }, - ['404903677'] = { Name = 'cs3_06_sea_uw_010_lod' }, - ['1241738119'] = { Name = 'cs3_06_sea_uw_010' }, - ['1003212568'] = { Name = 'cs3_06_sea_uw_011' }, - ['-2016952625'] = { Name = 'cs3_06_sea_uw_012_lod' }, - ['613261468'] = { Name = 'cs3_06_sea_uw_012' }, - ['1716690051'] = { Name = 'cs3_06_sea_uw_013_lod' }, - ['-1874167784'] = { Name = 'cs3_06_sea_uw_013' }, - ['-302808388'] = { Name = 'cs3_06_sea_uw_014_lod' }, - ['-2096570987'] = { Name = 'cs3_06_sea_uw_014' }, - ['1824502019'] = { Name = 'cs3_06_sea_uw_015' }, - ['1657182222'] = { Name = 'cs3_06_sea_uwdec_00' }, - ['-1324927854'] = { Name = 'cs3_06_sea_uwdec_01' }, - ['-2091820765'] = { Name = 'cs3_06_sea_uwdec_02' }, - ['-1115533944'] = { Name = 'cs3_06_sea_uwdec_03' }, - ['-884872953'] = { Name = 'cs3_06_sea_uwdec_04' }, - ['-653261661'] = { Name = 'cs3_06_sea_uwdec_05' }, - ['-420306840'] = { Name = 'cs3_06_sea_uwdec_06' }, - ['113106942'] = { Name = 'cs3_06_sea_uwdec_07' }, - ['343374705'] = { Name = 'cs3_06_sea_uwdec_08' }, - ['573806325'] = { Name = 'cs3_06_sea_uwdec_09' }, - ['-700025572'] = { Name = 'cs3_06_sea_uwdec_10' }, - ['1927392848'] = { Name = 'cs3_06_sea_uwdec_11' }, - ['2102117156'] = { Name = 'cs3_06_sea_uwdec_12' }, - ['-1912642421'] = { Name = 'cs3_06_sea_uwdec_13' }, - ['666867725'] = { Name = 'cs3_06_sea_uwdec_14' }, - ['982269350'] = { Name = 'cs3_06_sea_uwdec_15' }, - ['1145196818'] = { Name = 'cs3_06_sea_uwdec_16' }, - ['-520385918'] = { Name = 'cs3_06_sea_uwdec_17' }, - ['-1794587501'] = { Name = 'cs3_06_track_dcl_011' }, - ['-1211605529'] = { Name = 'cs3_06_trackdcl_01' }, - ['1818314522'] = { Name = 'cs3_06_trackdcl_02' }, - ['-1776772472'] = { Name = 'cs3_06_trackdcl_03' }, - ['1312066241'] = { Name = 'cs3_06_trackdcl_04' }, - ['1610231372'] = { Name = 'cs3_06_trackdcl_05' }, - ['-35641111'] = { Name = 'cs3_06_wetwater01' }, - ['864326709'] = { Name = 'cs3_06_wetwater02' }, - ['273369879'] = { Name = 'cs3_06_woodenstruc1' }, - ['-1810164065'] = { Name = 'cs3_07_barrack02' }, - ['-2114358692'] = { Name = 'cs3_07_barrack03' }, - ['430140673'] = { Name = 'cs3_07_barrail_01' }, - ['-1823514537'] = { Name = 'cs3_07_barrail_02' }, - ['637797826'] = { Name = 'cs3_07_barrail_03' }, - ['1357667218'] = { Name = 'cs3_07_barrail_04' }, - ['1655897887'] = { Name = 'cs3_07_barrail_05' }, - ['-1129139447'] = { Name = 'cs3_07_barrail_06' }, - ['-822847604'] = { Name = 'cs3_07_barrail_07' }, - ['-648647600'] = { Name = 'cs3_07_barrail_08' }, - ['644630346'] = { Name = 'cs3_07_bridgede2' }, - ['340543538'] = { Name = 'cs3_07_bridgeframe01' }, - ['704213900'] = { Name = 'cs3_07_bridgeframe02' }, - ['1065787046'] = { Name = 'cs3_07_bridgeframe03' }, - ['1296644651'] = { Name = 'cs3_07_bridgeframe04' }, - ['-53640899'] = { Name = 'cs3_07_cfnclink_00' }, - ['1268457175'] = { Name = 'cs3_07_cfnclink_01' }, - ['1500625540'] = { Name = 'cs3_07_cfnclink_02' }, - ['491405938'] = { Name = 'cs3_07_cfnclink_03' }, - ['796387021'] = { Name = 'cs3_07_cfnclink_04' }, - ['2026731895'] = { Name = 'cs3_07_cfnclink_05' }, - ['183180724'] = { Name = 'cs3_07_cfnclink_06' }, - ['-498840473'] = { Name = 'cs3_07_cfnclink_07' }, - ['-190942949'] = { Name = 'cs3_07_cfnclink_08' }, - ['-1043395715'] = { Name = 'cs3_07_cfnclink_09' }, - ['1238243925'] = { Name = 'cs3_07_cfnclink_10' }, - ['-1741703401'] = { Name = 'cs3_07_cfnclink_11' }, - ['-1502784622'] = { Name = 'cs3_07_cfnclink_12' }, - ['739598056'] = { Name = 'cs3_07_cfnclink_13' }, - ['970193509'] = { Name = 'cs3_07_cfnclink_14' }, - ['141334423'] = { Name = 'cs3_07_cfnclink_15' }, - ['372126490'] = { Name = 'cs3_07_cfnclink_16' }, - ['-484455170'] = { Name = 'cs3_07_cfnclink_17' }, - ['-254121869'] = { Name = 'cs3_07_cfnclink_18' }, - ['-1081801271'] = { Name = 'cs3_07_cfnclink_19' }, - ['428718277'] = { Name = 'cs3_07_cfnclink_20' }, - ['-824040593'] = { Name = 'cs3_07_cfnclink_21' }, - ['554125240'] = { Name = 'cs3_07_cfnclink_22' }, - ['-117016649'] = { Name = 'cs3_07_cfnclink_23' }, - ['-1036383713'] = { Name = 'cs3_07_cfnclink_24' }, - ['-1670758784'] = { Name = 'cs3_07_cfnclink_25' }, - ['-440544986'] = { Name = 'cs3_07_cfnclink_26' }, - ['31131988'] = { Name = 'cs3_07_cfnclink_27' }, - ['940799428'] = { Name = 'cs3_07_cfnclink_28' }, - ['1583301211'] = { Name = 'cs3_07_cfnclink_29' }, - ['-386247061'] = { Name = 'cs3_07_cfnclink_30' }, - ['-616875283'] = { Name = 'cs3_07_cfnclink_31' }, - ['-964882063'] = { Name = 'cs3_07_cfnclink_32' }, - ['-1370463976'] = { Name = 'cs3_07_cfnclink_33' }, - ['-1601256043'] = { Name = 'cs3_07_cfnclink_34' }, - ['-1849317373'] = { Name = 'cs3_07_cfnclink_35' }, - ['-2079650674'] = { Name = 'cs3_07_cfnclink_36' }, - ['-24575600'] = { Name = 'cs3_07_cfnclink_37' }, - ['810280213'] = { Name = 'cs3_07_cfnclink_38' }, - ['1645168795'] = { Name = 'cs3_07_cfnclink_39' }, - ['1208619829'] = { Name = 'cs3_07_cfnclink_40' }, - ['1994911984'] = { Name = 'cs3_07_cfnclink_41' }, - ['1753568299'] = { Name = 'cs3_07_cfnclink_42' }, - ['342862909'] = { Name = 'cs3_07_cfnclink_43' }, - ['43124866'] = { Name = 'cs3_07_cfnclink_44' }, - ['867494599'] = { Name = 'cs3_07_cfnclink_45' }, - ['1452224635'] = { Name = 'cs3_07_cfnclink_46' }, - ['579109473'] = { Name = 'cs3_07_ctbuil_01_o' }, - ['-1257119757'] = { Name = 'cs3_07_emissive01_lod' }, - ['-1939882693'] = { Name = 'cs3_07_emissive01' }, - ['-1695975957'] = { Name = 'cs3_07_emissive02_lod' }, - ['1990562247'] = { Name = 'cs3_07_emissive02' }, - ['117823111'] = { Name = 'cs3_07_emissive03_lod' }, - ['-350356810'] = { Name = 'cs3_07_emissive03' }, - ['-1653093531'] = { Name = 'cs3_07_emissive04_lod' }, - ['-590324197'] = { Name = 'cs3_07_emissive04' }, - ['1924182075'] = { Name = 'cs3_07_emissive05_lod' }, - ['320621234'] = { Name = 'cs3_07_emissive05' }, - ['-1493225354'] = { Name = 'cs3_07_emissive06_lod' }, - ['-1095392794'] = { Name = 'cs3_07_emissive06' }, - ['1031841365'] = { Name = 'cs3_07_emissive07_lod' }, - ['-124086865'] = { Name = 'cs3_07_emissive07' }, - ['1770088508'] = { Name = 'cs3_07_emissive08_lod' }, - ['573040841'] = { Name = 'cs3_07_emissive08' }, - ['1136191648'] = { Name = 'cs3_07_emissive09_lod' }, - ['1541790788'] = { Name = 'cs3_07_emissive09' }, - ['1302790286'] = { Name = 'cs3_07_emissive10_lod' }, - ['-1269633392'] = { Name = 'cs3_07_emissive10' }, - ['-1132310711'] = { Name = 'cs3_07_emissive11_lod' }, - ['1227200567'] = { Name = 'cs3_07_emissive11' }, - ['1157572431'] = { Name = 'cs3_07_emissive12_lod' }, - ['1490466713'] = { Name = 'cs3_07_emissive12' }, - ['-1811514724'] = { Name = 'cs3_07_emissive13_lod' }, - ['-125864216'] = { Name = 'cs3_07_emissive13' }, - ['1227764233'] = { Name = 'cs3_07_emissive14_lod' }, - ['-970157501'] = { Name = 'cs3_07_emissive14' }, - ['-1808711872'] = { Name = 'cs3_07_emissive15_lod' }, - ['-1671807329'] = { Name = 'cs3_07_emissive15' }, - ['-240601603'] = { Name = 'cs3_07_emissive16_lod' }, - ['-357082280'] = { Name = 'cs3_07_emissive16' }, - ['501318819'] = { Name = 'cs3_07_fence_bet00' }, - ['40062371'] = { Name = 'cs3_07_fence_bet01' }, - ['319942400'] = { Name = 'cs3_07_fence_bet02' }, - ['1452111354'] = { Name = 'cs3_07_fence_bet03' }, - ['-422570371'] = { Name = 'cs3_07_fence_bet04' }, - ['-1462537971'] = { Name = 'cs3_07_fire_01_o' }, - ['1083810594'] = { Name = 'cs3_07_fire_01' }, - ['-1026806512'] = { Name = 'cs3_07_fire_frame' }, - ['97966808'] = { Name = 'cs3_07_fire_rail1' }, - ['1569267764'] = { Name = 'cs3_07_fuel_01_o' }, - ['-1080183449'] = { Name = 'cs3_07_fuel_01' }, - ['2026301391'] = { Name = 'cs3_07_fuel_02_o' }, - ['-1855924078'] = { Name = 'cs3_07_fuel_02' }, - ['-1354470840'] = { Name = 'cs3_07_fuelcable2' }, - ['-2096164386'] = { Name = 'cs3_07_fuelcable3' }, - ['-1194361420'] = { Name = 'cs3_07_fuelmetal2' }, - ['-2100031042'] = { Name = 'cs3_07_fuelmetal3' }, - ['395387977'] = { Name = 'cs3_07_glue_01' }, - ['1784728043'] = { Name = 'cs3_07_glue_02' }, - ['-317894846'] = { Name = 'cs3_07_glue_03' }, - ['-840625934'] = { Name = 'cs3_07_glue_04' }, - ['-527714753'] = { Name = 'cs3_07_glue_05' }, - ['852974293'] = { Name = 'cs3_07_glue_06' }, - ['-1507507857'] = { Name = 'cs3_07_glue_07' }, - ['-1204951680'] = { Name = 'cs3_07_glue_08' }, - ['-1987606476'] = { Name = 'cs3_07_glue_09' }, - ['-1338190102'] = { Name = 'cs3_07_glue_10' }, - ['42498948'] = { Name = 'cs3_07_glue_11' }, - ['-1864361935'] = { Name = 'cs3_07_glue_12' }, - ['1423155225'] = { Name = 'cs3_07_glue_13' }, - ['-1183782574'] = { Name = 'cs3_07_glue_15' }, - ['1269468615'] = { Name = 'cs3_07_glue_16' }, - ['832723283'] = { Name = 'cs3_07_glue_17' }, - ['1072723439'] = { Name = 'cs3_07_glue_18' }, - ['2006082966'] = { Name = 'cs3_07_glue_19' }, - ['-1216911785'] = { Name = 'cs3_07_glue_21' }, - ['-1516256600'] = { Name = 'cs3_07_glue_22' }, - ['694995520'] = { Name = 'cs3_07_glue_23' }, - ['265721620'] = { Name = 'cs3_07_glue_24' }, - ['2088497249'] = { Name = 'cs3_07_glue_25' }, - ['1924848863'] = { Name = 'cs3_07_glue_26' }, - ['-429472715'] = { Name = 'cs3_07_glue_27' }, - ['2122616231'] = { Name = 'cs3_07_graffiti' }, - ['1338748618'] = { Name = 'cs3_07_gsides_06_o' }, - ['1753604634'] = { Name = 'cs3_07_hanger04_rail1' }, - ['-1605790103'] = { Name = 'cs3_07_hanger04' }, - ['675013684'] = { Name = 'cs3_07_hanger05_rail1' }, - ['-443703056'] = { Name = 'cs3_07_hanger05' }, - ['1037040879'] = { Name = 'cs3_07_hangera_03_o' }, - ['-2106773332'] = { Name = 'cs3_07_hangera_03' }, - ['-1389186467'] = { Name = 'cs3_07_hangeraframe1' }, - ['-1744467965'] = { Name = 'cs3_07_hangeraframe2' }, - ['1232505552'] = { Name = 'cs3_07_hangerapipe' }, - ['-183996176'] = { Name = 'cs3_07_hangerbits_01' }, - ['-835935455'] = { Name = 'cs3_07_hangerbits_02' }, - ['-888955697'] = { Name = 'cs3_07_hangerbits_03' }, - ['-228627578'] = { Name = 'cs3_07_hangerbits_04' }, - ['-534165734'] = { Name = 'cs3_07_hangerbits_05' }, - ['67145416'] = { Name = 'cs3_07_hangerbits_06' }, - ['1285496635'] = { Name = 'cs3_07_hangerc_01_o' }, - ['-1558071347'] = { Name = 'cs3_07_hangerc_01' }, - ['-2036250162'] = { Name = 'cs3_07_hangerd_01_o' }, - ['-640252027'] = { Name = 'cs3_07_hangerd_01' }, - ['-1483774613'] = { Name = 'cs3_07_hangerdmetal1' }, - ['1363589339'] = { Name = 'cs3_07_hangerdmetal2' }, - ['-1323139667'] = { Name = 'cs3_07_hangerdpipes1' }, - ['-1630283504'] = { Name = 'cs3_07_hangerdpipes2' }, - ['835878075'] = { Name = 'cs3_07_hangerdpipes3' }, - ['665039048'] = { Name = 'cs3_07_hangerdstruts1' }, - ['-393060666'] = { Name = 'cs3_07_hangger007_o' }, - ['-834690405'] = { Name = 'cs3_07_hangger04_a_detail' }, - ['-272399847'] = { Name = 'cs3_07_hangger04_b_detail' }, - ['131266333'] = { Name = 'cs3_07_hangger04_o' }, - ['-826360440'] = { Name = 'cs3_07_hangger05_a_detail' }, - ['1049762872'] = { Name = 'cs3_07_hangger05_b_detail' }, - ['692727223'] = { Name = 'cs3_07_hangrail01' }, - ['1248948229'] = { Name = 'cs3_07_hangrail02' }, - ['-637071562'] = { Name = 'cs3_07_hangrail03' }, - ['-90812332'] = { Name = 'cs3_07_hangrail04' }, - ['895174109'] = { Name = 'cs3_07_hangrail05' }, - ['-417289879'] = { Name = 'cs3_07_hangrail06' }, - ['-809108820'] = { Name = 'cs3_07_hangrail07' }, - ['-1049600511'] = { Name = 'cs3_07_hangrail08' }, - ['-1405406313'] = { Name = 'cs3_07_hangrail09' }, - ['-1526094868'] = { Name = 'cs3_07_hangrail10' }, - ['-1975947700'] = { Name = 'cs3_07_hangrail11' }, - ['-2137487989'] = { Name = 'cs3_07_hangrail12_l1' }, - ['412224255'] = { Name = 'cs3_07_hangrail12' }, - ['1874540880'] = { Name = 'cs3_07_hangrail13' }, - ['2113820118'] = { Name = 'cs3_07_hangrail14' }, - ['-12363698'] = { Name = 'cs3_07_hangrail15' }, - ['221934652'] = { Name = 'cs3_07_hangrail16' }, - ['616017632'] = { Name = 'cs3_07_hangroofbeam00' }, - ['1920977527'] = { Name = 'cs3_07_hangroofbeam01' }, - ['1094019035'] = { Name = 'cs3_07_hangroofbeam02' }, - ['253723568'] = { Name = 'cs3_07_hangroofbeam03' }, - ['-389105905'] = { Name = 'cs3_07_hangroofbeam04' }, - ['924570536'] = { Name = 'cs3_07_hangroofbeam05' }, - ['-212841454'] = { Name = 'cs3_07_hangroofbeam06' }, - ['28043465'] = { Name = 'cs3_07_hangroofbeam07' }, - ['-1877670499'] = { Name = 'cs3_07_hangroofbeam08' }, - ['-1640521246'] = { Name = 'cs3_07_hangroofbeam09' }, - ['-77439662'] = { Name = 'cs3_07_hangroofbeam10' }, - ['-452185946'] = { Name = 'cs3_07_hangroofbeam11' }, - ['-692218871'] = { Name = 'cs3_07_hangroofbeam12' }, - ['847203211'] = { Name = 'cs3_07_hangroofbeam13' }, - ['-1588319945'] = { Name = 'cs3_07_hangroofbeam14' }, - ['-1820488310'] = { Name = 'cs3_07_hangroofbeam15' }, - ['65531485'] = { Name = 'cs3_07_hangroofbeam16' }, - ['2116739813'] = { Name = 'cs3_07_hangroofbeam17' }, - ['-347154300'] = { Name = 'cs3_07_hd1_lad1' }, - ['-1756790071'] = { Name = 'cs3_07_ladder_00' }, - ['694910770'] = { Name = 'cs3_07_ladders_01a' }, - ['320950942'] = { Name = 'cs3_07_ladders_01b' }, - ['409490451'] = { Name = 'cs3_07_ladders_02' }, - ['1194406308'] = { Name = 'cs3_07_ladders_03' }, - ['67480398'] = { Name = 'cs3_07_ladders_04' }, - ['683930826'] = { Name = 'cs3_07_ladders_05' }, - ['-546381279'] = { Name = 'cs3_07_ladders_06' }, - ['-701116497'] = { Name = 'cs3_07_ladders_07' }, - ['1506793237'] = { Name = 'cs3_07_ladders_08' }, - ['846301273'] = { Name = 'cs3_07_ladders_09' }, - ['-1034606806'] = { Name = 'cs3_07_ladders_10' }, - ['-1357676377'] = { Name = 'cs3_07_ladders_11' }, - ['2005569934'] = { Name = 'cs3_07_ladders_12' }, - ['-1387725558'] = { Name = 'cs3_07_ladders_13' }, - ['1398851899'] = { Name = 'cs3_07_ladders_14' }, - ['-2078102850'] = { Name = 'cs3_07_ladders_15' }, - ['803406400'] = { Name = 'cs3_07_ladders_16' }, - ['1683258141'] = { Name = 'cs3_07_metalbits01' }, - ['-1651544682'] = { Name = 'cs3_07_metalbits02' }, - ['-847105146'] = { Name = 'cs3_07_mil_apartment' }, - ['1709963512'] = { Name = 'cs3_07_mil_apt_detail' }, - ['-292133050'] = { Name = 'cs3_07_mil_decals00' }, - ['-1127513167'] = { Name = 'cs3_07_mil_decals01' }, - ['-1839518003'] = { Name = 'cs3_07_mil_decals02' }, - ['-509194906'] = { Name = 'cs3_07_mil_decals03' }, - ['1055983606'] = { Name = 'cs3_07_mil_decals04' }, - ['1286775673'] = { Name = 'cs3_07_mil_decals05' }, - ['1879665190'] = { Name = 'cs3_07_mil_decals07' }, - ['99063264'] = { Name = 'cs3_07_mil_decals08' }, - ['-1437965245'] = { Name = 'cs3_07_mil_decals10' }, - ['1987574943'] = { Name = 'cs3_07_mil_decals11' }, - ['-2068473574'] = { Name = 'cs3_07_mil_decals12' }, - ['1391080836'] = { Name = 'cs3_07_mil_decals13' }, - ['1665193521'] = { Name = 'cs3_07_mil_decals14' }, - ['1182866582'] = { Name = 'cs3_07_mil_decals15' }, - ['1422113051'] = { Name = 'cs3_07_mil_decals16' }, - ['590763517'] = { Name = 'cs3_07_mil_decals17' }, - ['-1950962029'] = { Name = 'cs3_07_mil_runway00' }, - ['-1690219096'] = { Name = 'cs3_07_mil_runway01' }, - ['-1459099339'] = { Name = 'cs3_07_mil_runway02' }, - ['-1792228997'] = { Name = 'cs3_07_mil_runway03' }, - ['-1296958331'] = { Name = 'cs3_07_mil_runway04' }, - ['1084725366'] = { Name = 'cs3_07_mil_runway05' }, - ['1818357738'] = { Name = 'cs3_07_mil_runway07' }, - ['-99382449'] = { Name = 'cs3_07_mil_runway08' }, - ['146712741'] = { Name = 'cs3_07_mil_runway09' }, - ['209727856'] = { Name = 'cs3_07_mil_runway12' }, - ['-151943601'] = { Name = 'cs3_07_mil_runway13' }, - ['622216626'] = { Name = 'cs3_07_milrd_010_1' }, - ['851763471'] = { Name = 'cs3_07_milrd_010_2' }, - ['1365057087'] = { Name = 'cs3_07_milrd_010_3' }, - ['-1523792419'] = { Name = 'cs3_07_milrd_010_4' }, - ['-614750812'] = { Name = 'cs3_07_milrd_010' }, - ['1688333754'] = { Name = 'cs3_07_mpgates_01' }, - ['1304936454'] = { Name = 'cs3_07_mpgates_02' }, - ['-523446413'] = { Name = 'cs3_07_mpool_01_o' }, - ['-1894430227'] = { Name = 'cs3_07_mpool_01' }, - ['386506495'] = { Name = 'cs3_07_mpool_metal1' }, - ['615201346'] = { Name = 'cs3_07_mpool_metal2' }, - ['-327726633'] = { Name = 'cs3_07_mpool_metal3' }, - ['257186835'] = { Name = 'cs3_07_mpool_pipes' }, - ['1617689241'] = { Name = 'cs3_07_pilots_01_o' }, - ['1924782290'] = { Name = 'cs3_07_pilots_02_metal' }, - ['1878656201'] = { Name = 'cs3_07_pilots_02_o' }, - ['-1316307790'] = { Name = 'cs3_07_pilots_02' }, - ['-43328329'] = { Name = 'cs3_07_props_v_tower_milo_lod' }, - ['586786597'] = { Name = 'cs3_07_props_wire_021' }, - ['-371149616'] = { Name = 'cs3_07_props_wire_022' }, - ['-649129043'] = { Name = 'cs3_07_props_wire_023' }, - ['-1233728003'] = { Name = 'cs3_07_props_wire_024' }, - ['-1548998552'] = { Name = 'cs3_07_props_wire_025' }, - ['-1796633885'] = { Name = 'cs3_07_props_wire_026' }, - ['717966954'] = { Name = 'cs3_07_pub38_1' }, - ['227677176'] = { Name = 'cs3_07_pub38_2' }, - ['2039031425'] = { Name = 'cs3_07_pub38' }, - ['1405767512'] = { Name = 'cs3_07_rail1' }, - ['1654189301'] = { Name = 'cs3_07_rail2' }, - ['666041502'] = { Name = 'cs3_07_roadfence01' }, - ['1907273207'] = { Name = 'cs3_07_roadfence01b' }, - ['-277141122'] = { Name = 'cs3_07_roadfence01c' }, - ['602935911'] = { Name = 'cs3_07_roadfence01e' }, - ['984694761'] = { Name = 'cs3_07_roadfence01f' }, - ['253162906'] = { Name = 'cs3_07_roadfence01f001' }, - ['2012649175'] = { Name = 'cs3_07_roadfence15' }, - ['785319049'] = { Name = 'cs3_07_roadfence19' }, - ['-756953704'] = { Name = 'cs3_07_roadfence20' }, - ['-614228399'] = { Name = 'cs3_07_runlight_b_' }, - ['-1978019169'] = { Name = 'cs3_07_runlight_g_' }, - ['-1614506552'] = { Name = 'cs3_07_runlight_r_' }, - ['943765690'] = { Name = 'cs3_07_runlight_y_' }, - ['712129756'] = { Name = 'cs3_07_sec_04_o' }, - ['-2037939199'] = { Name = 'cs3_07_sec02_posts' }, - ['-1277996457'] = { Name = 'cs3_07_secutiry00' }, - ['1703425474'] = { Name = 'cs3_07_secutiry01' }, - ['-1349989946'] = { Name = 'cs3_07_secutiry02' }, - ['1632546131'] = { Name = 'cs3_07_secutiry03' }, - ['1067318946'] = { Name = 'cs3_07_shang_01_o' }, - ['884550290'] = { Name = 'cs3_07_shang_01' }, - ['727110268'] = { Name = 'cs3_07_shangcable1' }, - ['-1921401623'] = { Name = 'cs3_07_shangmetal1' }, - ['1120282499'] = { Name = 'cs3_07_shangmetal2' }, - ['-56741744'] = { Name = 'cs3_07_shangpipes1' }, - ['-296919169'] = { Name = 'cs3_07_smallhangrail01' }, - ['478821368'] = { Name = 'cs3_07_smallhangrail02' }, - ['-251632954'] = { Name = 'cs3_07_smallhangrail033' }, - ['937554599'] = { Name = 'cs3_07_smallhangrail04' }, - ['-7670236'] = { Name = 'cs3_07_stripde' }, - ['-90148135'] = { Name = 'cs3_07_support001' }, - ['769773093'] = { Name = 'cs3_07_tankpark01' }, - ['-372265924'] = { Name = 'cs3_07_temp_decal' }, - ['-1863072579'] = { Name = 'cs3_07_temp1' }, - ['-1081302546'] = { Name = 'cs3_07_temp2' }, - ['1966476610'] = { Name = 'cs3_07_temp3' }, - ['-1577621820'] = { Name = 'cs3_07_temp4' }, - ['559342973'] = { Name = 'cs3_07_temp5' }, - ['1019774408'] = { Name = 'cs3_07_tower_o' }, - ['246063305'] = { Name = 'cs3_07_tower1_masts' }, - ['-764347450'] = { Name = 'cs3_07_tower1' }, - ['-32460250'] = { Name = 'cs3_07_tower2_o' }, - ['381219248'] = { Name = 'cs3_07_tower3_ladder' }, - ['1753884690'] = { Name = 'cs3_07_tower3' }, - ['87174649'] = { Name = 'cs3_07_tower3cross01' }, - ['-755807876'] = { Name = 'cs3_07_tower3cross02' }, - ['518447458'] = { Name = 'cs3_07_tower3cross03' }, - ['-190804778'] = { Name = 'cs3_07_tower3cross04' }, - ['-512573405'] = { Name = 'cs3_07_tower3main' }, - ['751899647'] = { Name = 'cs3_07_tower3rail01' }, - ['987344912'] = { Name = 'cs3_07_tower3rail02' }, - ['1346624228'] = { Name = 'cs3_07_tower3rail03' }, - ['1650032399'] = { Name = 'cs3_07_tower3rail04' }, - ['-143125462'] = { Name = 'cs3_07_toweraerials' }, - ['-1372812273'] = { Name = 'cs3_07_towerdoor_dummy' }, - ['-1562907030'] = { Name = 'cs3_07_v_interior' }, - ['-698996498'] = { Name = 'cs3_07_v_liftshell' }, - ['504208548'] = { Name = 'cs3_07_wtower01' }, - ['667988010'] = { Name = 'cs3_07_wtower02' }, - ['998987679'] = { Name = 'cs3_07_wtower03' }, - ['-1461557918'] = { Name = 'cs3_07_wtowermain01' }, - ['1610044301'] = { Name = 'cs3_07_wtowermain02' }, - ['-1246667462'] = { Name = 'cs3_07_x_lad00' }, - ['-2004811046'] = { Name = 'cs3_07_x_lad01' }, - ['-740517488'] = { Name = 'cs3_07_x_lad02' }, - ['-972685853'] = { Name = 'cs3_07_x_lad03' }, - ['-289747124'] = { Name = 'cs3_07_x_lad04' }, - ['-28434538'] = { Name = 'cs3_07_xx_01' }, - ['-467244217'] = { Name = 'cs3_07_xx_02' }, - ['-772782373'] = { Name = 'cs3_07_xx_03' }, - ['-1751952862'] = { Name = 'cs3_07_xx_04' }, - ['-951701113'] = { Name = 'cs3_07_xx_05' }, - ['2094832821'] = { Name = 'cs3_07_xx_06' }, - ['-1433765872'] = { Name = 'cs3_07_xx_07' }, - ['2036536774'] = { Name = 'cs3_07_xx_08' }, - ['-1496190813'] = { Name = 'cs3_07_xx_09' }, - ['1878522564'] = { Name = 'cs3_07_xx_10' }, - ['1563612474'] = { Name = 'cs3_07_xx_11' }, - ['1149510621'] = { Name = 'cs3_07_xx_12' }, - ['1109663517'] = { Name = 'cs3_07_xx_13' }, - ['1246277474'] = { Name = 'cs3_07_xx_14' }, - ['890078444'] = { Name = 'cs3_07_xx_15' }, - ['2056753159'] = { Name = 'cs3_07_xx_16' }, - ['-1333693567'] = { Name = 'cs3_08_bridge00' }, - ['969213363'] = { Name = 'cs3_08_carpark' }, - ['907656806'] = { Name = 'cs3_08_coastdecal01a' }, - ['560633320'] = { Name = 'cs3_08_coastdecal02a' }, - ['915748314'] = { Name = 'cs3_08_coastdecal03' }, - ['416061876'] = { Name = 'cs3_08_decalsfloor' }, - ['1577392946'] = { Name = 'cs3_08_deci_hk2' }, - ['-346699916'] = { Name = 'cs3_08_decif_05' }, - ['-1306634998'] = { Name = 'cs3_08_decif_09' }, - ['-916127121'] = { Name = 'cs3_08_decif_10' }, - ['-833960131'] = { Name = 'cs3_08_decif_10x' }, - ['1935511904'] = { Name = 'cs3_08_decif_10z' }, - ['1314172232'] = { Name = 'cs3_08_decit_01' }, - ['-668909345'] = { Name = 'cs3_08_decit_07' }, - ['-1131181628'] = { Name = 'cs3_08_decit_09' }, - ['1532676276'] = { Name = 'cs3_08_decit_10' }, - ['1148623596'] = { Name = 'cs3_08_decit_12' }, - ['-1595140089'] = { Name = 'cs3_08_decit_12a1' }, - ['-1347078759'] = { Name = 'cs3_08_decit_12a2' }, - ['1689663016'] = { Name = 'cs3_08_decit_12srt1' }, - ['-109050624'] = { Name = 'cs3_08_decit_15' }, - ['1610175205'] = { Name = 'cs3_08_decit_22' }, - ['-726421788'] = { Name = 'cs3_08_decit_6a' }, - ['-1970978791'] = { Name = 'cs3_08_decit_new' }, - ['-965365798'] = { Name = 'cs3_08_decl1' }, - ['-1272378559'] = { Name = 'cs3_08_decl2' }, - ['865045000'] = { Name = 'cs3_08_decl3' }, - ['1053680450'] = { Name = 'cs3_08_decl3a12' }, - ['-560670663'] = { Name = 'cs3_08_decs' }, - ['-1546538592'] = { Name = 'cs3_08_decsa1' }, - ['2123010766'] = { Name = 'cs3_08_dect_07x' }, - ['142327646'] = { Name = 'cs3_08_decz02' }, - ['313578440'] = { Name = 'cs3_08_decz03' }, - ['723682127'] = { Name = 'cs3_08_decz13' }, - ['1001874318'] = { Name = 'cs3_08_deczx01' }, - ['-689506614'] = { Name = 'cs3_08_dune003' }, - ['1286264893'] = { Name = 'cs3_08_garage1' }, - ['-1916588924'] = { Name = 'cs3_08_hookies_00_roof' }, - ['677382445'] = { Name = 'cs3_08_hookies_00' }, - ['878736602'] = { Name = 'cs3_08_hookies_009' }, - ['-1699648050'] = { Name = 'cs3_08_hookies_01' }, - ['-2081734590'] = { Name = 'cs3_08_hookies_02' }, - ['1969529653'] = { Name = 'cs3_08_hookies_03' }, - ['-243885221'] = { Name = 'cs3_08_hookies_04' }, - ['1646165161'] = { Name = 'cs3_08_hookies_05' }, - ['1272205333'] = { Name = 'cs3_08_hookies_06' }, - ['1052947954'] = { Name = 'cs3_08_hookies_07' }, - ['1763893390'] = { Name = 'cs3_08_hookiesdecals1' }, - ['497972987'] = { Name = 'cs3_08_hookiesfish002' }, - ['-241630267'] = { Name = 'cs3_08_land03b' }, - ['1579018447'] = { Name = 'cs3_08_milrd_003' }, - ['-1507264284'] = { Name = 'cs3_08_milrd_004' }, - ['-1438135747'] = { Name = 'cs3_08_props_cs3_08_cable_00' }, - ['1819004550'] = { Name = 'cs3_08_props_cs3_08_cable_01' }, - ['454667235'] = { Name = 'cs3_08_props_cs3_08_cable_02' }, - ['1222969209'] = { Name = 'cs3_08_props_cs3_08_cable_03' }, - ['85410175'] = { Name = 'cs3_08_rails00' }, - ['-88462139'] = { Name = 'cs3_08_rails01' }, - ['-393508760'] = { Name = 'cs3_08_rails02' }, - ['-531793940'] = { Name = 'cs3_08_rails03' }, - ['-845688191'] = { Name = 'cs3_08_rails04' }, - ['-1009729805'] = { Name = 'cs3_08_rails05' }, - ['-1490713187'] = { Name = 'cs3_08_rails06' }, - ['868392677'] = { Name = 'cs3_08_rails07' }, - ['1123302728'] = { Name = 'cs3_08_rails08' }, - ['1340397353'] = { Name = 'cs3_08_rails09' }, - ['-265258999'] = { Name = 'cs3_08_rails10' }, - ['-2024757685'] = { Name = 'cs3_08_rails11' }, - ['-1777253428'] = { Name = 'cs3_08_rails12' }, - ['-1224735315'] = { Name = 'cs3_08_rails13' }, - ['-878629137'] = { Name = 'cs3_08_rails14' }, - ['-630272886'] = { Name = 'cs3_08_rails15' }, - ['1569232890'] = { Name = 'cs3_08_rails16_lod' }, - ['-398170059'] = { Name = 'cs3_08_rails16' }, - ['1843950463'] = { Name = 'cs3_08_rails17' }, - ['42376381'] = { Name = 'cs3_08_rails18' }, - ['288373264'] = { Name = 'cs3_08_rails19' }, - ['-1223162175'] = { Name = 'cs3_08_rails20' }, - ['706735319'] = { Name = 'cs3_08_rails21' }, - ['400115786'] = { Name = 'cs3_08_rails22' }, - ['2046266501'] = { Name = 'cs3_08_rails23' }, - ['-406984688'] = { Name = 'cs3_08_rails24' }, - ['-814368896'] = { Name = 'cs3_08_rails25' }, - ['-1120136435'] = { Name = 'cs3_08_rails26' }, - ['1077811475'] = { Name = 'cs3_08_rails27' }, - ['-1324844378'] = { Name = 'cs3_08_rails28' }, - ['-1814937542'] = { Name = 'cs3_08_rails29' }, - ['257640679'] = { Name = 'cs3_08_rails30' }, - ['1510235708'] = { Name = 'cs3_08_rails31' }, - ['-340557416'] = { Name = 'cs3_08_rails32' }, - ['1778449973'] = { Name = 'cs3_08_rails34' }, - ['-1800711287'] = { Name = 'cs3_08_rails35' }, - ['1178023586'] = { Name = 'cs3_08_rails36' }, - ['467558913'] = { Name = 'cs3_08_rails37' }, - ['-299858298'] = { Name = 'cs3_08_rails38' }, - ['-984501015'] = { Name = 'cs3_08_rails39' }, - ['911840755'] = { Name = 'cs3_08_rails40' }, - ['604064304'] = { Name = 'cs3_08_rampblend' }, - ['435992229'] = { Name = 'cs3_08_rd_jn_08' }, - ['1398938305'] = { Name = 'cs3_08_rock_det01' }, - ['-1495201947'] = { Name = 'cs3_08_tarmacedge' }, - ['1769285999'] = { Name = 'cs3_08_terr00' }, - ['-1892846369'] = { Name = 'cs3_08_terr01' }, - ['537007754'] = { Name = 'cs3_08_terr02' }, - ['773436089'] = { Name = 'cs3_08_terr03' }, - ['1147395917'] = { Name = 'cs3_08_terr04' }, - ['1386118082'] = { Name = 'cs3_08_terr05' }, - ['1011732253'] = { Name = 'cs3_08_terr06' }, - ['1223321686'] = { Name = 'cs3_08_terr07' }, - ['-284773228'] = { Name = 'cs3_08_terr08' }, - ['-45723373'] = { Name = 'cs3_08_terr09' }, - ['-1603332466'] = { Name = 'cs3_08_terr10' }, - ['-835849717'] = { Name = 'cs3_08_terr11' }, - ['-1036854763'] = { Name = 'cs3_08_terr12' }, - ['1679725162'] = { Name = 'cs3_08_terr12b' }, - ['1492977575'] = { Name = 'cs3_08_terr13' }, - ['-2017696475'] = { Name = 'cs3_08_terr14' }, - ['1980088760'] = { Name = 'cs3_08_terr15' }, - ['-1986598698'] = { Name = 'cs3_08_terr16' }, - ['2130695080'] = { Name = 'cs3_08_terr17' }, - ['890781658'] = { Name = 'cs3_08_terr18' }, - ['575576647'] = { Name = 'cs3_08_terr19' }, - ['-1827411940'] = { Name = 'cs3_08_toiletblock_roof' }, - ['-1573730327'] = { Name = 'cs3_08_toiletblock' }, - ['-1551659736'] = { Name = 'cs3_08_wtb_01_g001' }, - ['105435841'] = { Name = 'cs3_08_wtb_01_g003' }, - ['617287621'] = { Name = 'cs3_08_wtb_01_g006' }, - ['824551546'] = { Name = 'cs3_08_wtb_01_g007' }, - ['-2023795476'] = { Name = 'cs3_08_wtb_01_g008' }, - ['-1796149233'] = { Name = 'cs3_08_wtb_01_g009' }, - ['338222965'] = { Name = 'cs3_08_wtb_1' }, - ['-170941757'] = { Name = 'cs3_08_wtb_2' }, - ['1016522892'] = { Name = 'cs3_08_wtb_walk_002' }, - ['-1277372654'] = { Name = 'cs3_08_wtb_walk_003' }, - ['-451561077'] = { Name = 'cs3_08_wtb_walk_007' }, - ['1550639251'] = { Name = 'cs3_08_wtbw_006' }, - ['-457349346'] = { Name = 'cs3_08_wtf_3_g' }, - ['-704771459'] = { Name = 'cs3_08_wtf_build007_g' }, - ['1041270505'] = { Name = 'cs3_08_wtf_build007' }, - ['1744437198'] = { Name = 'cs3_08_wtf_build01_g' }, - ['187211372'] = { Name = 'cs3_08_wtf_build01' }, - ['-796436371'] = { Name = 'cs3_08_wtf_entrance_g' }, - ['1457467007'] = { Name = 'cs3_08_wtf3_walk002' }, - ['-460253359'] = { Name = 'cs3_08_wtf3_walk01' }, - ['-991060055'] = { Name = 'cs3_08_wtp_track' }, - ['27068621'] = { Name = 'cs3_08_zrock003_dec' }, - ['1261734363'] = { Name = 'cs3_08_zrock003' }, - ['-546121692'] = { Name = 'cs3_08b_decbuf_01' }, - ['-2051398476'] = { Name = 'cs3_08b_decbuf_02' }, - ['-228033912'] = { Name = 'cs3_08b_deci1' }, - ['443566743'] = { Name = 'cs3_08b_deci2' }, - ['-373431342'] = { Name = 'cs3_08b_deci6a' }, - ['1359099794'] = { Name = 'cs3_08b_deci8' }, - ['-1012843503'] = { Name = 'cs3_08b_decl01' }, - ['299456628'] = { Name = 'cs3_08b_decl02' }, - ['966666237'] = { Name = 'cs3_08b_decl08' }, - ['-239139843'] = { Name = 'cs3_08b_decl08r' }, - ['647528958'] = { Name = 'cs3_08b_decl09' }, - ['-1373858716'] = { Name = 'cs3_08b_decl10' }, - ['-1768916225'] = { Name = 'cs3_08b_decrs01' }, - ['-2046601014'] = { Name = 'cs3_08b_decrs01t' }, - ['1690703723'] = { Name = 'cs3_08b_decrs02' }, - ['469861847'] = { Name = 'cs3_08b_decrs04' }, - ['1110299183'] = { Name = 'cs3_08b_decrs06' }, - ['-387178583'] = { Name = 'cs3_08b_decrs07' }, - ['1460338403'] = { Name = 'cs3_08b_decz01' }, - ['-2102241743'] = { Name = 'cs3_08b_decz04' }, - ['-1864306034'] = { Name = 'cs3_08b_decz05' }, - ['1731108650'] = { Name = 'cs3_08b_decz06' }, - ['-1211482184'] = { Name = 'cs3_08b_decz1a' }, - ['-1732213611'] = { Name = 'cs3_08b_decz2a' }, - ['-1056832272'] = { Name = 'cs3_08b_decz44x' }, - ['-294016011'] = { Name = 'cs3_08b_terr00' }, - ['-557577078'] = { Name = 'cs3_08b_terr01' }, - ['1352527932'] = { Name = 'cs3_08b_terr02' }, - ['1119310959'] = { Name = 'cs3_08b_terr03' }, - ['890059035'] = { Name = 'cs3_08b_terr04' }, - ['635017908'] = { Name = 'cs3_08b_terr05' }, - ['-1484448243'] = { Name = 'cs3_08b_terr06' }, - ['-1973623875'] = { Name = 'cs3_08b_terr07' }, - ['-1985927976'] = { Name = 'cs3_08c_decal_a1' }, - ['-1485930632'] = { Name = 'cs3_08c_decif_01' }, - ['-1314876452'] = { Name = 'cs3_08c_decif_02' }, - ['-759900720'] = { Name = 'cs3_08c_decif_05' }, - ['441503823'] = { Name = 'cs3_08c_decif_05a' }, - ['823328211'] = { Name = 'cs3_08c_decif_05b' }, - ['-246377669'] = { Name = 'cs3_08c_decif_07' }, - ['1375556411'] = { Name = 'cs3_08c_decif_12' }, - ['1652163156'] = { Name = 'cs3_08c_hillsdecal05' }, - ['766642012'] = { Name = 'cs3_08c_ind_01_p_01' }, - ['1063529152'] = { Name = 'cs3_08c_ind_01_p_02' }, - ['-1839411024'] = { Name = 'cs3_08c_ind_01_p_03' }, - ['-1544850483'] = { Name = 'cs3_08c_ind_01_p_04' }, - ['40808654'] = { Name = 'cs3_08c_ind_01_p_05' }, - ['1704596285'] = { Name = 'cs3_08c_indwaste_00_rl01' }, - ['1989326130'] = { Name = 'cs3_08c_indwaste_00_rl02' }, - ['1946520785'] = { Name = 'cs3_08c_indwaste_00' }, - ['-922161467'] = { Name = 'cs3_08c_indwaste_01_rl021' }, - ['-765404296'] = { Name = 'cs3_08c_indwaste_01_rl0211' }, - ['1814410504'] = { Name = 'cs3_08c_indwaste_01_rl023' }, - ['1534333861'] = { Name = 'cs3_08c_indwaste_01_rl024' }, - ['-1884586989'] = { Name = 'cs3_08c_indwaste_01_rl025' }, - ['86861593'] = { Name = 'cs3_08c_indwaste_01_rl026' }, - ['-2118375362'] = { Name = 'cs3_08c_indwaste_01' }, - ['-2128000701'] = { Name = 'cs3_08c_land02_tar_d' }, - ['1853409584'] = { Name = 'cs3_08c_pathdec' }, - ['-1643423392'] = { Name = 'cs3_08c_terra_00' }, - ['-802341469'] = { Name = 'cs3_08c_terra_01' }, - ['1919517213'] = { Name = 'cs3_08c_terra_02' }, - ['-1529846038'] = { Name = 'cs3_08c_terra_03' }, - ['1834186737'] = { Name = 'cs3_08c_terra_04' }, - ['-2015777539'] = { Name = 'cs3_08c_terra_05' }, - ['1349893686'] = { Name = 'cs3_08c_terra_06' }, - ['994481112'] = { Name = 'cs3_08c_terra_07' }, - ['-1846492869'] = { Name = 'cs3_08c_terra_08' }, - ['-1476661935'] = { Name = 'cs3_08c_terra_09' }, - ['217855600'] = { Name = 'cs3_08c_terra_10' }, - ['1131790172'] = { Name = 'cs3_08c_terra_det_08' }, - ['360146000'] = { Name = 'cs3_08c_terra_det_12' }, - ['616401267'] = { Name = 'cs3_08c_wtbw_1' }, - ['-1637819690'] = { Name = 'cs3_08d_decbuf_03' }, - ['-2068240501'] = { Name = 'cs3_08d_decbuf_05' }, - ['1701144804'] = { Name = 'cs3_08d_decbuf_07' }, - ['-334503044'] = { Name = 'cs3_08d_declr_1' }, - ['-2022551612'] = { Name = 'cs3_08d_decp1' }, - ['-1526386356'] = { Name = 'cs3_08d_decw01' }, - ['1350764617'] = { Name = 'cs3_08d_decw03' }, - ['1092994983'] = { Name = 'cs3_08d_decz01' }, - ['-108382095'] = { Name = 'cs3_08d_decz02' }, - ['-335897262'] = { Name = 'cs3_08d_decz03' }, - ['364179654'] = { Name = 'cs3_08d_decz04' }, - ['-881339813'] = { Name = 'cs3_08d_featy03_ov' }, - ['-73523116'] = { Name = 'cs3_08d_featy06_ov' }, - ['-792343860'] = { Name = 'cs3_08d_object026_ov' }, - ['-187095268'] = { Name = 'cs3_08d_ovrly15' }, - ['1213550099'] = { Name = 'cs3_08d_ovrly17' }, - ['1549594838'] = { Name = 'cs3_08d_ovrly20' }, - ['2107257120'] = { Name = 'cs3_08d_terra_00' }, - ['-874656346'] = { Name = 'cs3_08d_terra_01' }, - ['-650057620'] = { Name = 'cs3_08d_terra_02' }, - ['1896552442'] = { Name = 'cs3_08d_terra_03' }, - ['2131801093'] = { Name = 'cs3_08d_terra_04' }, - ['-849948528'] = { Name = 'cs3_08d_terra_05' }, - ['-611128056'] = { Name = 'cs3_08d_terra_06' }, - ['1470096672'] = { Name = 'cs3_08d_terra_07' }, - ['635109783'] = { Name = 'cs3_08d_terra_08' }, - ['-1809785307'] = { Name = 'cs3_08d_terra_09' }, - ['161574634'] = { Name = 'cs3_08d_terra_dec_14' }, - ['-1673574125'] = { Name = 'cs3_08e_decit_01' }, - ['231517232'] = { Name = 'cs3_08e_decit_06' }, - ['-529118224'] = { Name = 'cs3_08e_decit_14' }, - ['1316924818'] = { Name = 'cs3_08e_decit_14r' }, - ['50008313'] = { Name = 'cs3_08e_decit_16' }, - ['886043810'] = { Name = 'cs3_08e_decit_17' }, - ['468667880'] = { Name = 'cs3_08e_decit_17s' }, - ['660986318'] = { Name = 'cs3_08e_decit_18' }, - ['-122651772'] = { Name = 'cs3_08e_decit_20' }, - ['-369435111'] = { Name = 'cs3_08e_decit_21' }, - ['191832321'] = { Name = 'cs3_08e_decit_22' }, - ['1629655018'] = { Name = 'cs3_08e_decix_1' }, - ['531509243'] = { Name = 'cs3_08e_decl03' }, - ['-1615351824'] = { Name = 'cs3_08e_decl04' }, - ['-1922692275'] = { Name = 'cs3_08e_decl05' }, - ['1890046417'] = { Name = 'cs3_08e_decl06' }, - ['1710865525'] = { Name = 'cs3_08e_decl07' }, - ['1456866437'] = { Name = 'cs3_08e_decq_1' }, - ['-504427653'] = { Name = 'cs3_08e_decq01' }, - ['-591497527'] = { Name = 'cs3_08e_decq01a' }, - ['1411280856'] = { Name = 'cs3_08e_decq02' }, - ['2014820298'] = { Name = 'cs3_08e_decq03' }, - ['18050451'] = { Name = 'cs3_08e_decx10e' }, - ['1901749921'] = { Name = 'cs3_08e_decz02' }, - ['1117063447'] = { Name = 'cs3_08e_decz03' }, - ['633163624'] = { Name = 'cs3_08e_decz05' }, - ['-247110023'] = { Name = 'cs3_08e_decz09' }, - ['-572708395'] = { Name = 'cs3_08e_decz09a' }, - ['-1840830582'] = { Name = 'cs3_08e_decz10' }, - ['-1111899513'] = { Name = 'cs3_08e_decz10e' }, - ['1406470296'] = { Name = 'cs3_08e_terr_00' }, - ['1167748131'] = { Name = 'cs3_08e_terr_01' }, - ['728840145'] = { Name = 'cs3_08e_terr_02' }, - ['490216287'] = { Name = 'cs3_08e_terr_03' }, - ['250969818'] = { Name = 'cs3_08e_terr_04' }, - ['-256818606'] = { Name = 'cs3_08e_terr_05' }, - ['74279342'] = { Name = 'cs3_08e_terr_06' }, - ['-190395871'] = { Name = 'cs3_08e_terr_07' }, - ['-940707640'] = { Name = 'cs3_08e_terr_09' }, - ['-1300738771'] = { Name = 'cs3_08e_terr_10' }, - ['-985959757'] = { Name = 'cs3_08e_terr_11' }, - ['-646071088'] = { Name = 'cs3_08f__decal002' }, - ['650570607'] = { Name = 'cs3_08f_creek1' }, - ['-1634864157'] = { Name = 'cs3_08f_decallll' }, - ['1471023073'] = { Name = 'cs3_08f_decals12' }, - ['1878866047'] = { Name = 'cs3_08f_decals13' }, - ['-995445984'] = { Name = 'cs3_08f_decals14a' }, - ['686107216'] = { Name = 'cs3_08f_decals16' }, - ['340641741'] = { Name = 'cs3_08f_deci6' }, - ['1504258073'] = { Name = 'cs3_08f_decu01' }, - ['1620398367'] = { Name = 'cs3_08f_decu01a' }, - ['1930007031'] = { Name = 'cs3_08f_fence1' }, - ['-291534547'] = { Name = 'cs3_08f_fence2' }, - ['-1351124214'] = { Name = 'cs3_08f_insert02' }, - ['1416731481'] = { Name = 'cs3_08f_lnd_03' }, - ['1720336266'] = { Name = 'cs3_08f_lnd_04' }, - ['190974263'] = { Name = 'cs3_08f_lnd_07' }, - ['-357414952'] = { Name = 'cs3_08f_lnd_09' }, - ['883255605'] = { Name = 'cs3_08f_ovrly01' }, - ['1228706403'] = { Name = 'cs3_08f_ovrly02' }, - ['1085693779'] = { Name = 'cs3_08f_ovrly23' }, - ['-2035086604'] = { Name = 'cs3_08f_spineb01' }, - ['-1141934740'] = { Name = 'cs3_08f_spineb02' }, - ['-1439575567'] = { Name = 'cs3_08f_spineb03' }, - ['-546489241'] = { Name = 'cs3_08f_spineb04' }, - ['-844719910'] = { Name = 'cs3_08f_spineb05' }, - ['-488062114'] = { Name = 'cs3_08f_spineb06' }, - ['420949946'] = { Name = 'cs3_08f_spineb07' }, - ['106203701'] = { Name = 'cs3_08f_spineb08' }, - ['1337241153'] = { Name = 'cs3_08f_watertank_det' }, - ['2089032637'] = { Name = 'cs3_08f_watertank' }, - ['440310001'] = { Name = 'cs3_08g__decal001' }, - ['813891296'] = { Name = 'cs3_08g_dec1_081' }, - ['-655579020'] = { Name = 'cs3_08g_decb_08d' }, - ['1620544024'] = { Name = 'cs3_08g_decbuf_08' }, - ['722332967'] = { Name = 'cs3_08g_decbuf_08a' }, - ['880717183'] = { Name = 'cs3_08g_decs00' }, - ['2110537753'] = { Name = 'cs3_08g_decs01' }, - ['-1403150933'] = { Name = 'cs3_08g_decs02' }, - ['1919396272'] = { Name = 'cs3_08g_decs05' }, - ['392393653'] = { Name = 'cs3_08g_decs07' }, - ['1249821259'] = { Name = 'cs3_08g_fence_20' }, - ['-1532630849'] = { Name = 'cs3_08g_ovrly01' }, - ['-1962512899'] = { Name = 'cs3_08g_ovrly01a' }, - ['-2075396525'] = { Name = 'cs3_08g_spined01' }, - ['-536564289'] = { Name = 'cs3_08g_spined02' }, - ['-842135214'] = { Name = 'cs3_08g_spined03' }, - ['-1153637324'] = { Name = 'cs3_08g_spined04' }, - ['-1452326759'] = { Name = 'cs3_08g_spined05' }, - ['53179408'] = { Name = 'cs3_08g_spined06' }, - ['-1170959882'] = { Name = 'cs3_lod_1_slod3' }, - ['-1657672551'] = { Name = 'cs3_lod_2_slod3' }, - ['-499816223'] = { Name = 'cs3_lod_emissive_slod3' }, - ['807570789'] = { Name = 'cs3_lod_s3_01' }, - ['742092746'] = { Name = 'cs3_lod_s3_05a' }, - ['1929297312'] = { Name = 'cs3_lod_s3_06a' }, - ['-2135271145'] = { Name = 'cs3_lod_s3_06b' }, - ['-359289552'] = { Name = 'cs3_lod_water_slod3_01' }, - ['-44182848'] = { Name = 'cs3_lod_water_slod3_02' }, - ['254047821'] = { Name = 'cs3_lod_water_slod3_03' }, - ['-401294547'] = { Name = 'cs3_railway_brg01_dec' }, - ['-1324036755'] = { Name = 'cs3_railway_brg01_railing' }, - ['-1664803570'] = { Name = 'cs3_railway_brg01' }, - ['-978336673'] = { Name = 'cs3_railway_brg02_railing' }, - ['-1426802323'] = { Name = 'cs3_railway_brg02' }, - ['-783023358'] = { Name = 'cs3_railway_brg03_railings_lod' }, - ['20791952'] = { Name = 'cs3_railway_brg03_railings' }, - ['-2118555857'] = { Name = 'cs3_railway_brg03' }, - ['1205468672'] = { Name = 'cs3_railway_dec03' }, - ['1471323573'] = { Name = 'cs3_railway_dec04' }, - ['-560035744'] = { Name = 'cs3_railway_des_railing_int' }, - ['-595969832'] = { Name = 'cs3_railway_endint' }, - ['1094384075'] = { Name = 'cs3_railway_railstuffint' }, - ['-395408091'] = { Name = 'cs3_railway_railtrack_int1' }, - ['-156685926'] = { Name = 'cs3_railway_railtrack_int2' }, - ['-503480137'] = { Name = 'cs3_railway_railtrack_int3' }, - ['-206298076'] = { Name = 'cs3_railway_railtrack_int4' }, - ['1169144792'] = { Name = 'cs3_railway_railtrack_intdec2' }, - ['1508893784'] = { Name = 'cs3_railway_railtrack_intdec3' }, - ['1122448971'] = { Name = 'cs3_railway_railtrack_intdec4' }, - ['483911285'] = { Name = 'cs3_railway_track01' }, - ['253872905'] = { Name = 'cs3_railway_track02' }, - ['1097641886'] = { Name = 'cs3_railway_track03' }, - ['1638133772'] = { Name = 'cs3_railway_track04' }, - ['1369526279'] = { Name = 'cs3_railway_track05' }, - ['-2082655102'] = { Name = 'cs3_railway_track06' }, - ['1981946124'] = { Name = 'cs3_railway_track07' }, - ['-1469514343'] = { Name = 'cs3_railway_track08' }, - ['-1427176799'] = { Name = 'cs3_railway_track09' }, - ['405986887'] = { Name = 'cs3_railway_track10' }, - ['663911690'] = { Name = 'cs3_railway_track11' }, - ['1625704266'] = { Name = 'cs3_railway_tun_ligts00' }, - ['286193494'] = { Name = 'cs3_railway_tun_ligts007' }, - ['-490431806'] = { Name = 'cs3_railway_tun_ligts008' }, - ['-1713993497'] = { Name = 'cs3_railway_tun_ligts009' }, - ['441367068'] = { Name = 'cs3_railway_tun_ligts01' }, - ['-209863892'] = { Name = 'cs3_railway_tun_ligts010' }, - ['-1667940697'] = { Name = 'cs3_railway_tun_ligts02' }, - ['-1949917942'] = { Name = 'cs3_railway_tun_ligts03' }, - ['-1237454344'] = { Name = 'cs3_railway_tun_ligts04' }, - ['-1486072747'] = { Name = 'cs3_railway_tun_ligts05' }, - ['-778393423'] = { Name = 'cs3_railway_tun_ligts06' }, - ['-1117091459'] = { Name = 'cs3_railway_tunnel_int_dc1' }, - ['-480979631'] = { Name = 'cs3_railway_tunnel_int_dc2' }, - ['-689914779'] = { Name = 'cs3_railway_tunnel_int_dc3' }, - ['-451979070'] = { Name = 'cs3_railway_tunnel_int_dc4' }, - ['-1720711356'] = { Name = 'cs3_railway_tunnel_int_shell' }, - ['667496682'] = { Name = 'cs3_railway_tunnel_int_shell2' }, - ['427725909'] = { Name = 'cs3_railway_tunnel_int_shell3' }, - ['-153399545'] = { Name = 'cs3_railway_tunnel_int_shell4' }, - ['-1127982151'] = { Name = 'cs3_railway_tunnelend1' }, - ['-209303228'] = { Name = 'cs3_railway_tunnelend2' }, - ['462398186'] = { Name = 'cs4_01_armcoend_01' }, - ['1237778264'] = { Name = 'cs4_01_armcoend_02' }, - ['2131618273'] = { Name = 'cs4_01_armcoend_03' }, - ['-1486603627'] = { Name = 'cs4_01_armcoend_05' }, - ['-892337808'] = { Name = 'cs4_01_armcoend_07' }, - ['1090224866'] = { Name = 'cs4_01_bb' }, - ['-919360274'] = { Name = 'cs4_01_bb1' }, - ['497079747'] = { Name = 'cs4_01_bb3' }, - ['-1271624951'] = { Name = 'cs4_01_billbd_001' }, - ['-1007077319'] = { Name = 'cs4_01_billbd_01' }, - ['-1462555349'] = { Name = 'cs4_01_brdgsup' }, - ['-1158931208'] = { Name = 'cs4_01_build_01' }, - ['-1760338717'] = { Name = 'cs4_01_build_det' }, - ['104591598'] = { Name = 'cs4_01_d26' }, - ['394435017'] = { Name = 'cs4_01_dbh_03' }, - ['2111202927'] = { Name = 'cs4_01_dbh_04' }, - ['1843480197'] = { Name = 'cs4_01_dbh_05' }, - ['1159233632'] = { Name = 'cs4_01_drivway_ov01' }, - ['-1505921163'] = { Name = 'cs4_01_drivway' }, - ['1878562707'] = { Name = 'cs4_01_emissive_lod' }, - ['1500324831'] = { Name = 'cs4_01_emissive' }, - ['984055777'] = { Name = 'cs4_01_erotub_01' }, - ['141597556'] = { Name = 'cs4_01_erotub_02' }, - ['2068152604'] = { Name = 'cs4_01_erotub_03' }, - ['-1445778629'] = { Name = 'cs4_01_factgnd_01' }, - ['-1787690375'] = { Name = 'cs4_01_factgnd_02' }, - ['-1697535039'] = { Name = 'cs4_01_gas_canisters' }, - ['670740431'] = { Name = 'cs4_01_gas_dets' }, - ['-336476574'] = { Name = 'cs4_01_gas_dets2' }, - ['-198127011'] = { Name = 'cs4_01_glue_02' }, - ['-428919078'] = { Name = 'cs4_01_glue_03' }, - ['-1886549740'] = { Name = 'cs4_01_glue_04' }, - ['32632287'] = { Name = 'cs4_01_glue_05' }, - ['-1365948637'] = { Name = 'cs4_01_glue_06' }, - ['-1427501211'] = { Name = 'cs4_01_layby_wall' }, - ['-1428052870'] = { Name = 'cs4_01_rdecal01' }, - ['-834638150'] = { Name = 'cs4_01_rdecal01b' }, - ['-1164360727'] = { Name = 'cs4_01_rdecal02' }, - ['-814256731'] = { Name = 'cs4_01_rdecal03' }, - ['-517402392'] = { Name = 'cs4_01_rdecal05' }, - ['372894942'] = { Name = 'cs4_01_rsl_mr_bb' }, - ['-453764749'] = { Name = 'cs4_01_silo_dets' }, - ['-2099114124'] = { Name = 'cs4_01_silo' }, - ['-480971701'] = { Name = 'cs4_01_ttbrdg_01' }, - ['-1379563219'] = { Name = 'cs4_01_ttbrdg_02' }, - ['-1353131505'] = { Name = 'cs4_01_weeds_01' }, - ['847878690'] = { Name = 'cs4_02_247_sign_ovr' }, - ['1787860179'] = { Name = 'cs4_02_247branding' }, - ['719725701'] = { Name = 'cs4_02_airplanes' }, - ['-1324747829'] = { Name = 'cs4_02_amco_jnt_01' }, - ['-1062367786'] = { Name = 'cs4_02_armco_008' }, - ['-722028952'] = { Name = 'cs4_02_armco_009' }, - ['-249139269'] = { Name = 'cs4_02_armco_010' }, - ['1229199720'] = { Name = 'cs4_02_armco_ditch_a001' }, - ['645221218'] = { Name = 'cs4_02_bb_247' }, - ['-1976676780'] = { Name = 'cs4_02_bb1' }, - ['-1736840469'] = { Name = 'cs4_02_bb2' }, - ['-1671840708'] = { Name = 'cs4_02_billbd002' }, - ['1344021442'] = { Name = 'cs4_02_billbd005' }, - ['-54564681'] = { Name = 'cs4_02_brrier_001' }, - ['175866931'] = { Name = 'cs4_02_brrier_002' }, - ['429793912'] = { Name = 'cs4_02_brrier_003' }, - ['928603630'] = { Name = 'cs4_02_brrier_004' }, - ['-979404168'] = { Name = 'cs4_02_brrier_006' }, - ['-748382718'] = { Name = 'cs4_02_brrier_007' }, - ['674979810'] = { Name = 'cs4_02_brriermr' }, - ['-1414544219'] = { Name = 'cs4_02_build11' }, - ['784994930'] = { Name = 'cs4_02_building08_dec' }, - ['-1322032541'] = { Name = 'cs4_02_cs_brrier_005' }, - ['-2100443145'] = { Name = 'cs4_02_culvert01' }, - ['1824139815'] = { Name = 'cs4_02_dbh_rocks01' }, - ['-1750171621'] = { Name = 'cs4_02_dbh_rocks02' }, - ['-1990925476'] = { Name = 'cs4_02_dbh_rocks03' }, - ['264949978'] = { Name = 'cs4_02_decalground' }, - ['419116288'] = { Name = 'cs4_02_details' }, - ['553781920'] = { Name = 'cs4_02_dt_tm_g' }, - ['563253121'] = { Name = 'cs4_02_dtrack_04_d' }, - ['1240267216'] = { Name = 'cs4_02_emissive001_lod' }, - ['-1793810296'] = { Name = 'cs4_02_emissive01' }, - ['801907834'] = { Name = 'cs4_02_emissive02_lod' }, - ['-1949659660'] = { Name = 'cs4_02_emissive02' }, - ['66417844'] = { Name = 'cs4_02_emissive02b_lod' }, - ['1536129940'] = { Name = 'cs4_02_emissive02b' }, - ['-1542376091'] = { Name = 'cs4_02_emissive03_lod' }, - ['1355847681'] = { Name = 'cs4_02_emissive03' }, - ['-1545831709'] = { Name = 'cs4_02_emissive04_lod' }, - ['-1491450733'] = { Name = 'cs4_02_emissive04' }, - ['99929759'] = { Name = 'cs4_02_erosiontube005' }, - ['-1849106304'] = { Name = 'cs4_02_erosiontube01' }, - ['589014608'] = { Name = 'cs4_02_erotub_004' }, - ['585366067'] = { Name = 'cs4_02_erotub_02' }, - ['314661358'] = { Name = 'cs4_02_erotub_03' }, - ['316148030'] = { Name = 'cs4_02_gas_dets' }, - ['893604133'] = { Name = 'cs4_02_gashouses' }, - ['179077922'] = { Name = 'cs4_02_glue_01' }, - ['-147104704'] = { Name = 'cs4_02_glue_02' }, - ['449291092'] = { Name = 'cs4_02_glue_03' }, - ['126385366'] = { Name = 'cs4_02_glue_04' }, - ['-464669087'] = { Name = 'cs4_02_glue_06' }, - ['1998047215'] = { Name = 'cs4_02_glue_ytool' }, - ['1092327678'] = { Name = 'cs4_02_glue01' }, - ['-1728820246'] = { Name = 'cs4_02_glue013' }, - ['1344780206'] = { Name = 'cs4_02_glue03' }, - ['74162231'] = { Name = 'cs4_02_glue06' }, - ['-1236487823'] = { Name = 'cs4_02_hanger_decal' }, - ['-1117818433'] = { Name = 'cs4_02_hanger' }, - ['-61549402'] = { Name = 'cs4_02_hrdstand_01_g' }, - ['733795938'] = { Name = 'cs4_02_hrdstand_01' }, - ['1964206350'] = { Name = 'cs4_02_hrdstand_02' }, - ['-1089489933'] = { Name = 'cs4_02_hse__se_a_decal0010303' }, - ['-1022861842'] = { Name = 'cs4_02_hse__se_c_dec0505' }, - ['627110465'] = { Name = 'cs4_02_hse__se_d_dec0202' }, - ['-1821650583'] = { Name = 'cs4_02_joshbog_d' }, - ['1343048369'] = { Name = 'cs4_02_joshbog_g' }, - ['656489756'] = { Name = 'cs4_02_joshbog' }, - ['-1646246705'] = { Name = 'cs4_02_joshbog001' }, - ['-1821637434'] = { Name = 'cs4_02_jtnp_sign00' }, - ['-1521440625'] = { Name = 'cs4_02_jtnp_sign01' }, - ['-1755575134'] = { Name = 'cs4_02_jtnp_sign02' }, - ['-1518753571'] = { Name = 'cs4_02_jtnp_sign03' }, - ['1269503376'] = { Name = 'cs4_02_jtnp_signawn00' }, - ['25100601'] = { Name = 'cs4_02_jtnp_signawn01' }, - ['809524923'] = { Name = 'cs4_02_jtnp_signawn02' }, - ['-464402721'] = { Name = 'cs4_02_jtnp_signawn03' }, - ['-234659262'] = { Name = 'cs4_02_jtnp_signawn04' }, - ['-926675004'] = { Name = 'cs4_02_jtnp_signawn05' }, - ['-683758407'] = { Name = 'cs4_02_jtnp_signawn06' }, - ['-735992201'] = { Name = 'cs4_02_jtnp_signawn07' }, - ['-497597726'] = { Name = 'cs4_02_jtnp_signawn08' }, - ['-2061073879'] = { Name = 'cs4_02_jtnp_signdir01' }, - ['-1760090614'] = { Name = 'cs4_02_jtnp_signdir02' }, - ['-1769364995'] = { Name = 'cs4_02_ladder_det' }, - ['1720813135'] = { Name = 'cs4_02_land01_d' }, - ['1818817615'] = { Name = 'cs4_02_land01' }, - ['1192733101'] = { Name = 'cs4_02_land02' }, - ['2047542161'] = { Name = 'cs4_02_land03_glue' }, - ['-1710960762'] = { Name = 'cs4_02_land03' }, - ['-1497186985'] = { Name = 'cs4_02_land04_barrier' }, - ['-1595718228'] = { Name = 'cs4_02_land04_d' }, - ['-2097673270'] = { Name = 'cs4_02_land04_g_b' }, - ['-1713784935'] = { Name = 'cs4_02_land04_g' }, - ['-2026558636'] = { Name = 'cs4_02_land04_grass01' }, - ['2038468587'] = { Name = 'cs4_02_land04_grass02' }, - ['-579117067'] = { Name = 'cs4_02_land04_rocks' }, - ['-1049973779'] = { Name = 'cs4_02_land04_rocksb' }, - ['-1564548870'] = { Name = 'cs4_02_land04' }, - ['837155877'] = { Name = 'cs4_02_land041_d' }, - ['174210497'] = { Name = 'cs4_02_land04a_rocks' }, - ['-979277480'] = { Name = 'cs4_02_land04a' }, - ['-511318535'] = { Name = 'cs4_02_land05_barrier' }, - ['251397798'] = { Name = 'cs4_02_land05_d' }, - ['504062397'] = { Name = 'cs4_02_land05_rocks' }, - ['584273192'] = { Name = 'cs4_02_land05_rocksb' }, - ['146451672'] = { Name = 'cs4_02_land05' }, - ['176056389'] = { Name = 'cs4_02_land05a' }, - ['1910028957'] = { Name = 'cs4_02_land06_g' }, - ['1443710844'] = { Name = 'cs4_02_land06' }, - ['-396583904'] = { Name = 'cs4_02_land06rocks' }, - ['1982955881'] = { Name = 'cs4_02_land07_ed' }, - ['1903981763'] = { Name = 'cs4_02_land07_g' }, - ['-1285990767'] = { Name = 'cs4_02_land07_rocks' }, - ['1697310135'] = { Name = 'cs4_02_land07' }, - ['2027627084'] = { Name = 'cs4_02_land08_d' }, - ['-1406164118'] = { Name = 'cs4_02_land08_rockg' }, - ['-824186674'] = { Name = 'cs4_02_land08_rocks' }, - ['1045403649'] = { Name = 'cs4_02_land08' }, - ['2103225385'] = { Name = 'cs4_02_land09_barrier' }, - ['-2102020746'] = { Name = 'cs4_02_land09_ed' }, - ['1847385198'] = { Name = 'cs4_02_land09_g' }, - ['-389699286'] = { Name = 'cs4_02_land09_rocks' }, - ['-1144810773'] = { Name = 'cs4_02_land09' }, - ['1842277118'] = { Name = 'cs4_02_land10_g' }, - ['-1691331764'] = { Name = 'cs4_02_land10_tg' }, - ['771749550'] = { Name = 'cs4_02_land10' }, - ['-424082398'] = { Name = 'cs4_02_land11_dg' }, - ['-840930575'] = { Name = 'cs4_02_land11_g' }, - ['393051042'] = { Name = 'cs4_02_land11_hs' }, - ['-1760966464'] = { Name = 'cs4_02_land11' }, - ['273988330'] = { Name = 'cs4_02_land12_dg' }, - ['1678938934'] = { Name = 'cs4_02_land12_g' }, - ['1230810471'] = { Name = 'cs4_02_land12' }, - ['1666047280'] = { Name = 'cs4_02_land13_g' }, - ['981340074'] = { Name = 'cs4_02_land13' }, - ['1955694438'] = { Name = 'cs4_02_land14_g' }, - ['1692492912'] = { Name = 'cs4_02_land14' }, - ['-672142291'] = { Name = 'cs4_02_land15_g' }, - ['161951057'] = { Name = 'cs4_02_land15' }, - ['-1965566493'] = { Name = 'cs4_02_land15b' }, - ['-1024211430'] = { Name = 'cs4_02_land15c' }, - ['1048133370'] = { Name = 'cs4_02_land16_g2' }, - ['1514294918'] = { Name = 'cs4_02_land16' }, - ['349726862'] = { Name = 'cs4_02_land16b' }, - ['-1143696587'] = { Name = 'cs4_02_land17_g' }, - ['1698456698'] = { Name = 'cs4_02_land17' }, - ['-293266680'] = { Name = 'cs4_02_land17b' }, - ['549650307'] = { Name = 'cs4_02_land17c' }, - ['868975001'] = { Name = 'cs4_02_land18' }, - ['-1545714203'] = { Name = 'cs4_02_mrgassta_dtl' }, - ['665469667'] = { Name = 'cs4_02_mrgassta_int' }, - ['-184331189'] = { Name = 'cs4_02_mrgasstation_ovr' }, - ['804796717'] = { Name = 'cs4_02_mrgasstation' }, - ['-824180254'] = { Name = 'cs4_02_newd01' }, - ['-50700778'] = { Name = 'cs4_02_newd02' }, - ['729969020'] = { Name = 'cs4_02_newd02b' }, - ['-1421854045'] = { Name = 'cs4_02_newd03' }, - ['1081606310'] = { Name = 'cs4_02_nmall00_dec' }, - ['1053163722'] = { Name = 'cs4_02_nmall00_dtl' }, - ['-75435845'] = { Name = 'cs4_02_nmall00_fiz' }, - ['-1611053851'] = { Name = 'cs4_02_nmall00_int' }, - ['1806766519'] = { Name = 'cs4_02_nmall00' }, - ['1255625308'] = { Name = 'cs4_02_nmall014' }, - ['555416712'] = { Name = 'cs4_02_nmall02' }, - ['1867618220'] = { Name = 'cs4_02_nmall04_g' }, - ['-628560027'] = { Name = 'cs4_02_nmall05' }, - ['-1739920307'] = { Name = 'cs4_02_raildecal01' }, - ['2010469496'] = { Name = 'cs4_02_rcplantb' }, - ['1619879137'] = { Name = 'cs4_02_retainwall01' }, - ['1310900236'] = { Name = 'cs4_02_retainwall02' }, - ['1159441918'] = { Name = 'cs4_02_retainwall03' }, - ['2076728204'] = { Name = 'cs4_02_retwal01' }, - ['-1005144067'] = { Name = 'cs4_02_retwall' }, - ['-1662497425'] = { Name = 'cs4_02_retwall002' }, - ['-453031573'] = { Name = 'cs4_02_retwall01' }, - ['738846764'] = { Name = 'cs4_02_retwall01b' }, - ['-80100255'] = { Name = 'cs4_02_roofdetails' }, - ['-1519997623'] = { Name = 'cs4_02_saljunk_01_g' }, - ['254891688'] = { Name = 'cs4_02_saljunk_01' }, - ['136184640'] = { Name = 'cs4_02_smll_hse_a_dec' }, - ['1020100034'] = { Name = 'cs4_02_smll_hse_a' }, - ['934406076'] = { Name = 'cs4_02_statcvan009' }, - ['-269115266'] = { Name = 'cs4_02_statcvan023a002' }, - ['-595775911'] = { Name = 'cs4_02_statcvan023e' }, - ['-1472626215'] = { Name = 'cs4_02_stuntcrash' }, - ['-1304998276'] = { Name = 'cs4_02_sy_walla_g' }, - ['1393211040'] = { Name = 'cs4_02_sy_walla' }, - ['1089081951'] = { Name = 'cs4_02_sy_wallb' }, - ['819950154'] = { Name = 'cs4_02_sy_wallc' }, - ['-703598956'] = { Name = 'cs4_02_sydoor004' }, - ['134047419'] = { Name = 'cs4_02_syentbldg001' }, - ['179093458'] = { Name = 'cs4_02_temp_desk' }, - ['-2033209834'] = { Name = 'cs4_02_terrain' }, - ['1443903572'] = { Name = 'cs4_02_tlrtmp_08' }, - ['204002219'] = { Name = 'cs4_02_trailer_10' }, - ['-595898059'] = { Name = 'cs4_02_trailer_dets' }, - ['1883529662'] = { Name = 'cs4_02_trailer_fnc' }, - ['-1448108180'] = { Name = 'cs4_02_tt_lights' }, - ['331692360'] = { Name = 'cs4_02_weed_01' }, - ['-636533343'] = { Name = 'cs4_02_weed_03' }, - ['-919559196'] = { Name = 'cs4_02_weed_04' }, - ['-1114927974'] = { Name = 'cs4_02_weed_05' }, - ['1812860569'] = { Name = 'cs4_02_weed002' }, - ['-547359425'] = { Name = 'cs4_02_weed003' }, - ['-846704240'] = { Name = 'cs4_02_weed004' }, - ['1394957512'] = { Name = 'cs4_02_weed005' }, - ['-1626835827'] = { Name = 'cs4_02_weed006' }, - ['-1932931056'] = { Name = 'cs4_02_weed007' }, - ['-2039341811'] = { Name = 'cs4_02_weed01' }, - ['1532232931'] = { Name = 'cs4_03_antnn' }, - ['-222538388'] = { Name = 'cs4_03_armco00' }, - ['1214808159'] = { Name = 'cs4_03_armco01' }, - ['1587653841'] = { Name = 'cs4_03_armco02' }, - ['611563738'] = { Name = 'cs4_03_armco03' }, - ['909335641'] = { Name = 'cs4_03_armco04' }, - ['-1832978414'] = { Name = 'cs4_03_autoshop_a' }, - ['1688607713'] = { Name = 'cs4_03_autoshop_d' }, - ['-908411994'] = { Name = 'cs4_03_autoshop' }, - ['1849149686'] = { Name = 'cs4_03_barn02' }, - ['-390028842'] = { Name = 'cs4_03_bb1' }, - ['-630520533'] = { Name = 'cs4_03_bb2' }, - ['-955720089'] = { Name = 'cs4_03_bb3' }, - ['1190878798'] = { Name = 'cs4_03_bb4' }, - ['1246391335'] = { Name = 'cs4_03_beach_01' }, - ['-31271975'] = { Name = 'cs4_03_beach_02' }, - ['-1307494554'] = { Name = 'cs4_03_beach_02a' }, - ['-270846134'] = { Name = 'cs4_03_beach_03' }, - ['-64415154'] = { Name = 'cs4_03_beach_03a_water' }, - ['-1221770498'] = { Name = 'cs4_03_beach_03a' }, - ['2102555981'] = { Name = 'cs4_03_beach_wood01' }, - ['2098568709'] = { Name = 'cs4_03_beachwood02' }, - ['-1713612910'] = { Name = 'cs4_03_beachwood04' }, - ['-1708249343'] = { Name = 'cs4_03_billboard_06' }, - ['-120533686'] = { Name = 'cs4_03_billboards' }, - ['1633400291'] = { Name = 'cs4_03_blends_01' }, - ['788386084'] = { Name = 'cs4_03_blends_02' }, - ['1508523535'] = { Name = 'cs4_03_brdg_1' }, - ['1806262669'] = { Name = 'cs4_03_brdg_2' }, - ['-261324053'] = { Name = 'cs4_03_brdg_rails_01_lod' }, - ['1358632226'] = { Name = 'cs4_03_brdg_rails_01' }, - ['871727919'] = { Name = 'cs4_03_brdg_rails_02_lod' }, - ['224366056'] = { Name = 'cs4_03_brdg_rails_02' }, - ['1613400944'] = { Name = 'cs4_03_brdgsup001' }, - ['1485497129'] = { Name = 'cs4_03_bridge_1d' }, - ['-1087273773'] = { Name = 'cs4_03_bridge_1d002' }, - ['2138839859'] = { Name = 'cs4_03_decal_1' }, - ['-2012082963'] = { Name = 'cs4_03_decal_1a' }, - ['-1771099961'] = { Name = 'cs4_03_decal_2b' }, - ['-2069822165'] = { Name = 'cs4_03_decal_2c' }, - ['-1691561324'] = { Name = 'cs4_03_decal_3' }, - ['-1394117111'] = { Name = 'cs4_03_decal_4' }, - ['-1833516636'] = { Name = 'cs4_03_decal_5' }, - ['-1521391911'] = { Name = 'cs4_03_decal_6' }, - ['-299370363'] = { Name = 'cs4_03_decal_7' }, - ['-634786833'] = { Name = 'cs4_03_dishes' }, - ['-246639520'] = { Name = 'cs4_03_emissive_lod' }, - ['706444570'] = { Name = 'cs4_03_emissive' }, - ['1738925471'] = { Name = 'cs4_03_fastfood_d' }, - ['1531984373'] = { Name = 'cs4_03_fastfood' }, - ['630722592'] = { Name = 'cs4_03_garage_a' }, - ['-88622512'] = { Name = 'cs4_03_garage_d' }, - ['-915147649'] = { Name = 'cs4_03_garage' }, - ['-1622219690'] = { Name = 'cs4_03_gassign' }, - ['-856346311'] = { Name = 'cs4_03_glue_02' }, - ['-662910908'] = { Name = 'cs4_03_glue_04' }, - ['-1086155312'] = { Name = 'cs4_03_glue_05' }, - ['-278043392'] = { Name = 'cs4_03_hardware_a' }, - ['-1164488780'] = { Name = 'cs4_03_hardware' }, - ['-1734720672'] = { Name = 'cs4_03_hoarder' }, - ['518072783'] = { Name = 'cs4_03_hut01' }, - ['67011480'] = { Name = 'cs4_03_hut1_g' }, - ['-1593249204'] = { Name = 'cs4_03_ladder_obj' }, - ['-879167424'] = { Name = 'cs4_03_land04_a' }, - ['977744106'] = { Name = 'cs4_03_land04_a1' }, - ['-2006191605'] = { Name = 'cs4_03_land04_g' }, - ['978316165'] = { Name = 'cs4_03_land05_d' }, - ['-781442579'] = { Name = 'cs4_03_land05_d2' }, - ['-233459147'] = { Name = 'cs4_03_land066_a' }, - ['338839933'] = { Name = 'cs4_03_landtubes' }, - ['-1941914915'] = { Name = 'cs4_03_liquor_sign' }, - ['-976318556'] = { Name = 'cs4_03_mainbuilding3_a' }, - ['2119193404'] = { Name = 'cs4_03_market_a' }, - ['-1745975688'] = { Name = 'cs4_03_market_d' }, - ['1235249629'] = { Name = 'cs4_03_market_l' }, - ['-681384395'] = { Name = 'cs4_03_market' }, - ['-579018438'] = { Name = 'cs4_03_market1_a' }, - ['-1040045387'] = { Name = 'cs4_03_market1_d' }, - ['339826911'] = { Name = 'cs4_03_market1' }, - ['-985735279'] = { Name = 'cs4_03_marketground_a' }, - ['1084520462'] = { Name = 'cs4_03_marketground' }, - ['905914370'] = { Name = 'cs4_03_parking_a' }, - ['881291775'] = { Name = 'cs4_03_pst' }, - ['22612995'] = { Name = 'cs4_03_shack_a' }, - ['915050694'] = { Name = 'cs4_03_shack' }, - ['458900499'] = { Name = 'cs4_03_shack-01_fizz' }, - ['1962014499'] = { Name = 'cs4_03_shack-02_fizz' }, - ['308957495'] = { Name = 'cs4_03_tower' }, - ['868964314'] = { Name = 'cs4_03_trail_7' }, - ['-1686159662'] = { Name = 'cs4_03_trailer_a' }, - ['1092153397'] = { Name = 'cs4_03_trailer' }, - ['-1330155329'] = { Name = 'cs4_03_warehouse_a' }, - ['166372136'] = { Name = 'cs4_03_warehouse_d' }, - ['167430596'] = { Name = 'cs4_03_warehouse' }, - ['1813001768'] = { Name = 'cs4_03_weeds_a1' }, - ['1640438655'] = { Name = 'cs4_03_yucca_sign' }, - ['1647368380'] = { Name = 'cs4_03q_trail_7o' }, - ['546574527'] = { Name = 'cs4_04_abanclub_details' }, - ['900850041'] = { Name = 'cs4_04_abanclub_details2' }, - ['669664746'] = { Name = 'cs4_04_abanclub_details3' }, - ['333155681'] = { Name = 'cs4_04_abanclub' }, - ['157506956'] = { Name = 'cs4_04_barrier' }, - ['1766287396'] = { Name = 'cs4_04_bb_hd_2' }, - ['1501238951'] = { Name = 'cs4_04_bb_hd' }, - ['-221294210'] = { Name = 'cs4_04_beach_1' }, - ['-1618957602'] = { Name = 'cs4_04_beach_2' }, - ['-1926592974'] = { Name = 'cs4_04_beach_3' }, - ['-1143708795'] = { Name = 'cs4_04_beach_4' }, - ['947281099'] = { Name = 'cs4_04_beach_5' }, - ['937843627'] = { Name = 'cs4_04_beach_6' }, - ['-450906593'] = { Name = 'cs4_04_beach_7' }, - ['1746043424'] = { Name = 'cs4_04_decal_01' }, - ['-1763909708'] = { Name = 'cs4_04_decal_02' }, - ['-611915509'] = { Name = 'cs4_04_decal_03' }, - ['-361232659'] = { Name = 'cs4_04_decal_04' }, - ['-1088802766'] = { Name = 'cs4_04_decal_05' }, - ['-1912855471'] = { Name = 'cs4_04_decal_06_lod' }, - ['-848933686'] = { Name = 'cs4_04_decal_06' }, - ['-1979318853'] = { Name = 'cs4_04_decal_07_lod' }, - ['851187576'] = { Name = 'cs4_04_decal_07' }, - ['196822718'] = { Name = 'cs4_04_decal_08_lod' }, - ['1089188823'] = { Name = 'cs4_04_decal_08' }, - ['813409866'] = { Name = 'cs4_04_decal_09_lod' }, - ['369843731'] = { Name = 'cs4_04_decal_09' }, - ['-154069085'] = { Name = 'cs4_04_decal_10' }, - ['-776942237'] = { Name = 'cs4_04_decal_11' }, - ['-2074660171'] = { Name = 'cs4_04_decal_12' }, - ['-1374091724'] = { Name = 'cs4_04_decal_13' }, - ['-543200960'] = { Name = 'cs4_04_decal_14' }, - ['-1698996355'] = { Name = 'cs4_04_decal_15' }, - ['754680831'] = { Name = 'cs4_04_decal_16' }, - ['1997412387'] = { Name = 'cs4_04_decal_17' }, - ['-1454900074'] = { Name = 'cs4_04_decal_18' }, - ['74953460'] = { Name = 'cs4_04_decal_19' }, - ['-1155584619'] = { Name = 'cs4_04_decal_20_lod' }, - ['-1866487267'] = { Name = 'cs4_04_decal_20' }, - ['-1564559966'] = { Name = 'cs4_04_decal_202' }, - ['1046865622'] = { Name = 'cs4_04_desert_house_004_d' }, - ['940589876'] = { Name = 'cs4_04_desert_house' }, - ['-1460841362'] = { Name = 'cs4_04_details' }, - ['1541412200'] = { Name = 'cs4_04_details02' }, - ['1268134213'] = { Name = 'cs4_04_emissive_lod' }, - ['1360076409'] = { Name = 'cs4_04_emissive' }, - ['1618010572'] = { Name = 'cs4_04_extras_lod' }, - ['502651650'] = { Name = 'cs4_04_extras' }, - ['1176522171'] = { Name = 'cs4_04_fish_01' }, - ['808395225'] = { Name = 'cs4_04_fish_02' }, - ['1354752989'] = { Name = 'cs4_04_frame_01' }, - ['-1107035351'] = { Name = 'cs4_04_frame_01b_lod' }, - ['-1959413940'] = { Name = 'cs4_04_frame_01b' }, - ['-1901248961'] = { Name = 'cs4_04_frame_01d' }, - ['-896355159'] = { Name = 'cs4_04_frame_02c' }, - ['1944758834'] = { Name = 'cs4_04_frame_03' }, - ['-1425490555'] = { Name = 'cs4_04_frame_03a_lod' }, - ['-872204626'] = { Name = 'cs4_04_frame_03a' }, - ['-756750319'] = { Name = 'cs4_04_frame_04' }, - ['-1725099604'] = { Name = 'cs4_04_house_obj' }, - ['839480373'] = { Name = 'cs4_04_marinasign' }, - ['1352304157'] = { Name = 'cs4_04_mebar' }, - ['-652432226'] = { Name = 'cs4_04_props_lod' }, - ['567620726'] = { Name = 'cs4_04_refprox_07' }, - ['-719033438'] = { Name = 'cs4_04_roks' }, - ['-1967034464'] = { Name = 'cs4_04_struct' }, - ['1925638435'] = { Name = 'cs4_04_stuntj' }, - ['-1250529391'] = { Name = 'cs4_04_tank' }, - ['1173717752'] = { Name = 'cs4_04_tank02' }, - ['-1764214667'] = { Name = 'cs4_05_airfd_4grs' }, - ['849090017'] = { Name = 'cs4_05_airfld_1' }, - ['1326796499'] = { Name = 'cs4_05_airfld_2' }, - ['1479303425'] = { Name = 'cs4_05_airfld_3' }, - ['1800669012'] = { Name = 'cs4_05_airfld_4' }, - ['826336055'] = { Name = 'cs4_05_airfld3da1' }, - ['1420678865'] = { Name = 'cs4_05_airfld4da02' }, - ['-1179545801'] = { Name = 'cs4_05_airsign_railings' }, - ['1232526059'] = { Name = 'cs4_05_airsign' }, - ['537628278'] = { Name = 'cs4_05_buswreck' }, - ['410834954'] = { Name = 'cs4_05_chopshop001_d' }, - ['-201865149'] = { Name = 'cs4_05_chopshop001' }, - ['59243781'] = { Name = 'cs4_05_con_tower_rail' }, - ['294885011'] = { Name = 'cs4_05_con_tower' }, - ['-1114960848'] = { Name = 'cs4_05_emissive_lod' }, - ['-87132795'] = { Name = 'cs4_05_emissive' }, - ['163235331'] = { Name = 'cs4_05_hanger01' }, - ['-1503953480'] = { Name = 'cs4_05_htrail1' }, - ['-802237488'] = { Name = 'cs4_05_sdw_decal' }, - ['1182487712'] = { Name = 'cs4_05_signs_pole' }, - ['214623845'] = { Name = 'cs4_05_signs' }, - ['-1617227128'] = { Name = 'cs4_05_tower_dets' }, - ['1658865961'] = { Name = 'cs4_05_weeds_01' }, - ['949054987'] = { Name = 'cs4_06_bigh_rails' }, - ['-1225896531'] = { Name = 'cs4_06_bighouse_decal' }, - ['1327405660'] = { Name = 'cs4_06_bighouse' }, - ['-1954828839'] = { Name = 'cs4_06_build_014' }, - ['-1192134816'] = { Name = 'cs4_06_build_2o001' }, - ['-1882478699'] = { Name = 'cs4_06_build_5' }, - ['-1787319301'] = { Name = 'cs4_06_build_5o' }, - ['-1640414096'] = { Name = 'cs4_06_build_6' }, - ['-1337562998'] = { Name = 'cs4_06_build_7' }, - ['-1265120115'] = { Name = 'cs4_06_build_8_rails1' }, - ['-496195530'] = { Name = 'cs4_06_build_8_rails2' }, - ['1118834015'] = { Name = 'cs4_06_build_8' }, - ['-1923651925'] = { Name = 'cs4_06_build_8a_rails2_lod' }, - ['1771351428'] = { Name = 'cs4_06_cover012' }, - ['-373549657'] = { Name = 'cs4_06_cover10a' }, - ['5545214'] = { Name = 'cs4_06_cover11_o' }, - ['741295135'] = { Name = 'cs4_06_cover11' }, - ['-1171698966'] = { Name = 'cs4_06_cover2' }, - ['2103830495'] = { Name = 'cs4_06_cover2b' }, - ['-1763566885'] = { Name = 'cs4_06_cover2o' }, - ['-1055902008'] = { Name = 'cs4_06_cover3_2' }, - ['-1360555401'] = { Name = 'cs4_06_cover3_3' }, - ['1601279352'] = { Name = 'cs4_06_cover3' }, - ['1468044381'] = { Name = 'cs4_06_cover3o' }, - ['106754863'] = { Name = 'cs4_06_cover4o' }, - ['101249959'] = { Name = 'cs4_06_cover5o' }, - ['-1157148538'] = { Name = 'cs4_06_cover6a_trls' }, - ['251135581'] = { Name = 'cs4_06_cover6a' }, - ['-449695022'] = { Name = 'cs4_06_cover6b' }, - ['266862721'] = { Name = 'cs4_06_cover7o' }, - ['1885225560'] = { Name = 'cs4_06_cover8o' }, - ['376901150'] = { Name = 'cs4_06_cover9a_rails' }, - ['-1054841786'] = { Name = 'cs4_06_cover9a' }, - ['-1293760565'] = { Name = 'cs4_06_cover9b' }, - ['49931820'] = { Name = 'cs4_06_coverwall' }, - ['-1790671127'] = { Name = 'cs4_06_coverwall22' }, - ['-1229407305'] = { Name = 'cs4_06_croop001' }, - ['1951540984'] = { Name = 'cs4_06_decal_terrain' }, - ['2059298290'] = { Name = 'cs4_06_decal004' }, - ['1019449168'] = { Name = 'cs4_06_decal03' }, - ['1971119538'] = { Name = 'cs4_06_detail01' }, - ['605420624'] = { Name = 'cs4_06_details01' }, - ['-1475521149'] = { Name = 'cs4_06_emm_00_lod' }, - ['-516996438'] = { Name = 'cs4_06_emm_00' }, - ['1671163798'] = { Name = 'cs4_06_emm_01_lod' }, - ['-143888604'] = { Name = 'cs4_06_emm_01' }, - ['1648312718'] = { Name = 'cs4_06_emm_02_lod' }, - ['95095713'] = { Name = 'cs4_06_emm_02' }, - ['-681424859'] = { Name = 'cs4_06_emm_03_lod' }, - ['434844705'] = { Name = 'cs4_06_emm_03' }, - ['731847875'] = { Name = 'cs4_06_emm_04_lod' }, - ['-1176767488'] = { Name = 'cs4_06_emm_04' }, - ['975684304'] = { Name = 'cs4_06_emm_05_lod' }, - ['-929066617'] = { Name = 'cs4_06_emm_05' }, - ['-921696780'] = { Name = 'cs4_06_emm_06_lod' }, - ['-564019957'] = { Name = 'cs4_06_emm_06' }, - ['-72081668'] = { Name = 'cs4_06_glue' }, - ['-1836844716'] = { Name = 'cs4_06_glue1' }, - ['-2068423239'] = { Name = 'cs4_06_glue2' }, - ['-1379920424'] = { Name = 'cs4_06_land01' }, - ['-1898625437'] = { Name = 'cs4_06_land01a' }, - ['344744815'] = { Name = 'cs4_06_land02' }, - ['809112109'] = { Name = 'cs4_06_land03_d' }, - ['175066933'] = { Name = 'cs4_06_land03' }, - ['347336422'] = { Name = 'cs4_06_land04_d' }, - ['-556042230'] = { Name = 'cs4_06_land04' }, - ['1956291466'] = { Name = 'cs4_06_land05' }, - ['-1957971469'] = { Name = 'cs4_06_lighting01' }, - ['1905821325'] = { Name = 'cs4_06_lighting02' }, - ['-1612094674'] = { Name = 'cs4_06_lighting03' }, - ['-1775546446'] = { Name = 'cs4_06_lighting04' }, - ['-1200384958'] = { Name = 'cs4_06_lighting05' }, - ['-422678281'] = { Name = 'cs4_06_lighting06' }, - ['-399622707'] = { Name = 'cs4_06_meth_rails' }, - ['11380093'] = { Name = 'cs4_06_meth_slod' }, - ['-454659988'] = { Name = 'cs4_06_meth01c' }, - ['1406229301'] = { Name = 'cs4_06_methlbovly' }, - ['521954756'] = { Name = 'cs4_06_motel_01' }, - ['139737140'] = { Name = 'cs4_06_motel_02' }, - ['-115296330'] = { Name = 'cs4_06_motel_crprk' }, - ['-2040856448'] = { Name = 'cs4_06_motelbase_rails' }, - ['-1739235580'] = { Name = 'cs4_06_motelbase' }, - ['-1509186116'] = { Name = 'cs4_06_motelbase008' }, - ['-134329928'] = { Name = 'cs4_06_motelbase009' }, - ['1422157140'] = { Name = 'cs4_06_motelbase2' }, - ['-1955206203'] = { Name = 'cs4_06_motelcvr1' }, - ['1828584758'] = { Name = 'cs4_06_moteldetail002' }, - ['-1084244638'] = { Name = 'cs4_06_moteldetail01' }, - ['-631839943'] = { Name = 'cs4_06_motelroom01' }, - ['-862107706'] = { Name = 'cs4_06_motelroom02' }, - ['925703396'] = { Name = 'cs4_06_motelroom03' }, - ['563868102'] = { Name = 'cs4_06_motelroom04' }, - ['-36001212'] = { Name = 'cs4_06_motelroom05' }, - ['-264892677'] = { Name = 'cs4_06_motelroom06' }, - ['1585547869'] = { Name = 'cs4_06_motl_ovly00_lod' }, - ['-594528334'] = { Name = 'cs4_06_motl_ovly00' }, - ['-1236341968'] = { Name = 'cs4_06_motl_ovly01' }, - ['941059775'] = { Name = 'cs4_06_motl_ovly02' }, - ['566837795'] = { Name = 'cs4_06_motl_ovly03' }, - ['326739332'] = { Name = 'cs4_06_motl_ovly04' }, - ['221550842'] = { Name = 'cs4_06_motl_ovly05' }, - ['1858657317'] = { Name = 'cs4_06_motl_ovly06' }, - ['-1384070146'] = { Name = 'cs4_06_neonsign_lod' }, - ['1655856215'] = { Name = 'cs4_06_neonsign' }, - ['-1414653859'] = { Name = 'cs4_06_pave' }, - ['-523157973'] = { Name = 'cs4_06_signageb' }, - ['-1571966314'] = { Name = 'cs4_06_smallhouse' }, - ['-1578582290'] = { Name = 'cs4_06_water' }, - ['-665116549'] = { Name = 'cs4_06_weed' }, - ['499855988'] = { Name = 'cs4_06_weeds' }, - ['-619301697'] = { Name = 'cs4_06_weeds2' }, - ['-331622646'] = { Name = 'cs4_06_weeds3' }, - ['-1568554089'] = { Name = 'cs4_06_weeds4' }, - ['-1681021795'] = { Name = 'cs4_06_wreckage_brand' }, - ['-890490064'] = { Name = 'cs4_07_build_1' }, - ['-1100244853'] = { Name = 'cs4_07_build_10' }, - ['-1597382940'] = { Name = 'cs4_07_build_2' }, - ['-171241723'] = { Name = 'cs4_07_build_2d' }, - ['1214983804'] = { Name = 'cs4_07_build_3' }, - ['618162007'] = { Name = 'cs4_07_build_5' }, - ['2007572951'] = { Name = 'cs4_07_build_5o' }, - ['-634924553'] = { Name = 'cs4_07_build_7' }, - ['-337545878'] = { Name = 'cs4_07_build_8' }, - ['-691355773'] = { Name = 'cs4_07_build_coop' }, - ['-1670942330'] = { Name = 'cs4_07_car1' }, - ['-1844922225'] = { Name = 'cs4_07_details' }, - ['-283402324'] = { Name = 'cs4_07_glue_01' }, - ['-666275320'] = { Name = 'cs4_07_glue_02' }, - ['-875128755'] = { Name = 'cs4_07_gun1' }, - ['-2079213241'] = { Name = 'cs4_07_gun1o001' }, - ['-1762248720'] = { Name = 'cs4_07_gunsign' }, - ['-1727725688'] = { Name = 'cs4_07_land01' }, - ['-1820265000'] = { Name = 'cs4_07_land01o' }, - ['20118310'] = { Name = 'cs4_07_land01o002_lod' }, - ['-1780731512'] = { Name = 'cs4_07_land01o2' }, - ['-1349451993'] = { Name = 'cs4_07_land01olod' }, - ['-1519602195'] = { Name = 'cs4_07_land2' }, - ['1671491486'] = { Name = 'cs4_07_land2o_b_lod' }, - ['-60050272'] = { Name = 'cs4_07_land2o_lod' }, - ['-1388927589'] = { Name = 'cs4_07_land2o' }, - ['-1766352765'] = { Name = 'cs4_07_land3' }, - ['-864414267'] = { Name = 'cs4_07_n_emm_lod' }, - ['-1008130700'] = { Name = 'cs4_07_n_emm' }, - ['596540879'] = { Name = 'cs4_07_n_emm01_lod' }, - ['43777778'] = { Name = 'cs4_07_n_emm01' }, - ['-2092672124'] = { Name = 'cs4_07_n_emm02_lod' }, - ['-1932192922'] = { Name = 'cs4_07_n_emm02' }, - ['352952096'] = { Name = 'cs4_07_n_emm03_lod' }, - ['-1628522599'] = { Name = 'cs4_07_n_emm03' }, - ['-1143958209'] = { Name = 'cs4_07_officedetails001' }, - ['989254138'] = { Name = 'cs4_07_parking' }, - ['-1937439804'] = { Name = 'cs4_07_planks' }, - ['604055968'] = { Name = 'cs4_07_q_emm_lod' }, - ['643683684'] = { Name = 'cs4_07_q_emm' }, - ['-482162080'] = { Name = 'cs4_07_q2_emm_lod' }, - ['-919455991'] = { Name = 'cs4_07_q2_emm' }, - ['1024301851'] = { Name = 'cs4_07_q3_emm_lod' }, - ['-1908729225'] = { Name = 'cs4_07_q3_emm' }, - ['-1082798138'] = { Name = 'cs4_07_q4_emm_lod' }, - ['-997006093'] = { Name = 'cs4_07_q4_emm' }, - ['-244722705'] = { Name = 'cs4_07_q6_emm_lod' }, - ['128699884'] = { Name = 'cs4_07_q6_emm' }, - ['16472247'] = { Name = 'cs4_07_q6_emm01_lod' }, - ['696257464'] = { Name = 'cs4_07_q6_emm01' }, - ['505284944'] = { Name = 'cs4_07_q6_emm02_lod' }, - ['-1893083382'] = { Name = 'cs4_07_q6_emm02' }, - ['1557028451'] = { Name = 'cs4_07_q6_emm03_lod' }, - ['2096312989'] = { Name = 'cs4_07_q6_emm03' }, - ['-229603276'] = { Name = 'cs4_07_railings' }, - ['-832987823'] = { Name = 'cs4_07_railings2' }, - ['-1136264918'] = { Name = 'cs4_07_railings3' }, - ['-996598338'] = { Name = 'cs4_07_rails_lod' }, - ['1939687127'] = { Name = 'cs4_07_rocks1' }, - ['-1487950285'] = { Name = 'cs4_07_rocks2' }, - ['1531924256'] = { Name = 'cs4_07_salesigns' }, - ['1638670722'] = { Name = 'cs4_07_shop001' }, - ['448880274'] = { Name = 'cs4_07_signs3' }, - ['533194907'] = { Name = 'cs4_07_signs4' }, - ['242075111'] = { Name = 'cs4_07_signs5' }, - ['-1720895447'] = { Name = 'cs4_07_signsnew3' }, - ['576544876'] = { Name = 'cs4_07_statc12' }, - ['182212749'] = { Name = 'cs4_07_statc12a' }, - ['835331676'] = { Name = 'cs4_07_statc12o' }, - ['755920184'] = { Name = 'cs4_07_trail_011' }, - ['1322758346'] = { Name = 'cs4_07_trail_012' }, - ['1934199637'] = { Name = 'cs4_07_trail_3' }, - ['-214234306'] = { Name = 'cs4_07_trail_4' }, - ['628223915'] = { Name = 'cs4_07_trail_5' }, - ['576641169'] = { Name = 'cs4_07_trail_5o' }, - ['-944819169'] = { Name = 'cs4_07_trail_6' }, - ['-2019580243'] = { Name = 'cs4_07_trail_6o' }, - ['-1175381853'] = { Name = 'cs4_07_trail_7' }, - ['-1854621449'] = { Name = 'cs4_07_trail_7o' }, - ['-426364848'] = { Name = 'cs4_07_weed_01' }, - ['-655518465'] = { Name = 'cs4_07_weed_02' }, - ['693652912'] = { Name = 'cs4_08_4sale_sign' }, - ['-541595634'] = { Name = 'cs4_08_detailsb' }, - ['1912376473'] = { Name = 'cs4_08_detailsc' }, - ['633081791'] = { Name = 'cs4_08_emm_00_lod' }, - ['-146868904'] = { Name = 'cs4_08_emm_00' }, - ['-2031805772'] = { Name = 'cs4_08_emm_01_lod' }, - ['1108183800'] = { Name = 'cs4_08_emm_01' }, - ['536485506'] = { Name = 'cs4_08_emm_02_lod' }, - ['1402220037'] = { Name = 'cs4_08_emm_02' }, - ['-1742476675'] = { Name = 'cs4_08_emm_03_lod' }, - ['-1637104717'] = { Name = 'cs4_08_emm_03' }, - ['-1611949681'] = { Name = 'cs4_08_emm_04_lod' }, - ['-1339463890'] = { Name = 'cs4_08_emm_04' }, - ['230938297'] = { Name = 'cs4_08_emm_05_lod' }, - ['1527823602'] = { Name = 'cs4_08_emm_05' }, - ['-1046214587'] = { Name = 'cs4_08_emm_06_lod' }, - ['1221007455'] = { Name = 'cs4_08_emm_06' }, - ['1736475688'] = { Name = 'cs4_08_emm_07_lod' }, - ['-1229654983'] = { Name = 'cs4_08_emm_07' }, - ['2099608430'] = { Name = 'cs4_08_emm_08_lod' }, - ['-1526574892'] = { Name = 'cs4_08_emm_08' }, - ['-225723884'] = { Name = 'cs4_08_glue' }, - ['-716227880'] = { Name = 'cs4_08_land_1' }, - ['-426582689'] = { Name = 'cs4_08_land_2' }, - ['-1587162358'] = { Name = 'cs4_08_land_6' }, - ['1143759535'] = { Name = 'cs4_08_land_6o' }, - ['-143261963'] = { Name = 'cs4_08_land_o' }, - ['1420727282'] = { Name = 'cs4_08_q_stairs' }, - ['-407220476'] = { Name = 'cs4_08_q' }, - ['-1354015243'] = { Name = 'cs4_08_q2' }, - ['-1232879585'] = { Name = 'cs4_08_rocks_2' }, - ['-2005729755'] = { Name = 'cs4_08_rocks_2a' }, - ['-1279514846'] = { Name = 'cs4_08_rocks' }, - ['1101906367'] = { Name = 'cs4_08_tr2' }, - ['1910529165'] = { Name = 'cs4_08_traielrs3_o001' }, - ['1316272175'] = { Name = 'cs4_08_trailer2_o' }, - ['-383205632'] = { Name = 'cs4_08_trailers005' }, - ['1822262678'] = { Name = 'cs4_08_trailers1_o' }, - ['1296063215'] = { Name = 'cs4_08_trailers1_railing' }, - ['-424352664'] = { Name = 'cs4_08_trailers1_rls' }, - ['-51083388'] = { Name = 'cs4_08_trailers1_rls2' }, - ['-1080369913'] = { Name = 'cs4_08_trailers1' }, - ['-144454500'] = { Name = 'cs4_08_trailers2' }, - ['714617596'] = { Name = 'cs4_08_trailers3' }, - ['1546087972'] = { Name = 'cs4_08_trailers4_o' }, - ['460494001'] = { Name = 'cs4_08_trailers4' }, - ['1548062940'] = { Name = 'cs4_08_trailers4b' }, - ['1269923513'] = { Name = 'cs4_08_trailers4shed' }, - ['228500648'] = { Name = 'cs4_08_trailers5_o' }, - ['-437361003'] = { Name = 'cs4_08_trailers5_rls' }, - ['1293809671'] = { Name = 'cs4_08_trailers5' }, - ['-555099304'] = { Name = 'cs4_08_trailers6_2rl' }, - ['1706939242'] = { Name = 'cs4_08_trailers6_d' }, - ['246101585'] = { Name = 'cs4_08_trailers6_rl' }, - ['-1096805318'] = { Name = 'cs4_08_trailers6_stairs' }, - ['1661281237'] = { Name = 'cs4_08_trailers6' }, - ['587173005'] = { Name = 'cs4_08_trailers66_rls' }, - ['-1857641542'] = { Name = 'cs4_08_trailers7_o' }, - ['2018075251'] = { Name = 'cs4_08_trailers8_o' }, - ['-356307181'] = { Name = 'cs4_08_trailers8_rl' }, - ['-2088999741'] = { Name = 'cs4_08_trailers8' }, - ['1632562065'] = { Name = 'cs4_08_trailers9_o' }, - ['2025934669'] = { Name = 'cs4_08_trailers9' }, - ['1750752668'] = { Name = 'cs4_08_weed' }, - ['-1953112047'] = { Name = 'cs4_09_armco_02' }, - ['-422156310'] = { Name = 'cs4_09_bdg1' }, - ['-1316707390'] = { Name = 'cs4_09_beams' }, - ['803668445'] = { Name = 'cs4_09_bilbrd_01' }, - ['-836943093'] = { Name = 'cs4_09_billbd_01_2' }, - ['651392374'] = { Name = 'cs4_09_billbd_01_d' }, - ['691125563'] = { Name = 'cs4_09_billbd_01' }, - ['-1544761399'] = { Name = 'cs4_09_build02' }, - ['2085930498'] = { Name = 'cs4_09_build02o' }, - ['-963615993'] = { Name = 'cs4_09_build11_rails' }, - ['-755158719'] = { Name = 'cs4_09_build11' }, - ['-1674329694'] = { Name = 'cs4_09_building002' }, - ['-1068555919'] = { Name = 'cs4_09_cover02' }, - ['782793702'] = { Name = 'cs4_09_cover2o' }, - ['-1871382919'] = { Name = 'cs4_09_decal001_lod' }, - ['-1101997518'] = { Name = 'cs4_09_decal001' }, - ['-808455438'] = { Name = 'cs4_09_em_00_lod' }, - ['2021723169'] = { Name = 'cs4_09_em_00' }, - ['919117607'] = { Name = 'cs4_09_em_01_lod' }, - ['-2009158756'] = { Name = 'cs4_09_em_01' }, - ['-263371131'] = { Name = 'cs4_09_em_02_lod' }, - ['-722975506'] = { Name = 'cs4_09_em_02' }, - ['736903811'] = { Name = 'cs4_09_em_03_lod' }, - ['-473242957'] = { Name = 'cs4_09_em_03' }, - ['1250864016'] = { Name = 'cs4_09_firestation_g001' }, - ['1926654500'] = { Name = 'cs4_09_firestation001' }, - ['1316094335'] = { Name = 'cs4_09_glue_01' }, - ['-2077725461'] = { Name = 'cs4_09_glue_02' }, - ['1985583924'] = { Name = 'cs4_09_land007' }, - ['2064426138'] = { Name = 'cs4_09_land008' }, - ['-200429248'] = { Name = 'cs4_09_land01_g001_lod' }, - ['1933771109'] = { Name = 'cs4_09_land01_g001' }, - ['1706042862'] = { Name = 'cs4_09_land02_d_lod' }, - ['-791533649'] = { Name = 'cs4_09_land02_d' }, - ['-1195836996'] = { Name = 'cs4_09_land03' }, - ['2104312887'] = { Name = 'cs4_09_land04_dec' }, - ['-280002233'] = { Name = 'cs4_09_land04_dec001_lod' }, - ['1928195623'] = { Name = 'cs4_09_land04' }, - ['140880483'] = { Name = 'cs4_09_land05_blend' }, - ['1570292605'] = { Name = 'cs4_09_land05' }, - ['1431139076'] = { Name = 'cs4_09_land05o_lod' }, - ['-3901208'] = { Name = 'cs4_09_land05o' }, - ['293612361'] = { Name = 'cs4_09_land06' }, - ['-1448148507'] = { Name = 'cs4_09_rails_00' }, - ['1448341236'] = { Name = 'cs4_09_railsa_lod' }, - ['524606230'] = { Name = 'cs4_09_railsa' }, - ['1043809244'] = { Name = 'cs4_09_rr_01' }, - ['874524590'] = { Name = 'cs4_09_rr_02' }, - ['-1997524836'] = { Name = 'cs4_09_sandy_shores_sign2' }, - ['250155808'] = { Name = 'cs4_09_sign001' }, - ['803918835'] = { Name = 'cs4_09_trailer_a_g' }, - ['-682656898'] = { Name = 'cs4_09_trailer_a' }, - ['-1926460091'] = { Name = 'cs4_10_247_emissive_dummy' }, - ['507333880'] = { Name = 'cs4_10_247_ovr001' }, - ['421396427'] = { Name = 'cs4_10_247' }, - ['-1763290008'] = { Name = 'cs4_10_ant_details' }, - ['292776155'] = { Name = 'cs4_10_ant_details01' }, - ['-544406257'] = { Name = 'cs4_10_ant_details02' }, - ['40219222'] = { Name = 'cs4_10_antenna_d' }, - ['-1904424043'] = { Name = 'cs4_10_antenna' }, - ['1962837466'] = { Name = 'cs4_10_bar_details01' }, - ['-894590003'] = { Name = 'cs4_10_bar' }, - ['-906205556'] = { Name = 'cs4_10_barbers_e_dummy' }, - ['-1712761168'] = { Name = 'cs4_10_decal_gas_station001' }, - ['1353697175'] = { Name = 'cs4_10_decal_gas_terrain' }, - ['-1301818654'] = { Name = 'cs4_10_decal_medc1' }, - ['1592611855'] = { Name = 'cs4_10_decal_medterc1' }, - ['1003687339'] = { Name = 'cs4_10_decal_store' }, - ['-229519445'] = { Name = 'cs4_10_decals_builds02' }, - ['-503624072'] = { Name = 'cs4_10_decals_trailer003' }, - ['126573100'] = { Name = 'cs4_10_decals_trailer02' }, - ['434118530'] = { Name = 'cs4_10_decaltrailer' }, - ['-442088732'] = { Name = 'cs4_10_detail_sign' }, - ['487465074'] = { Name = 'cs4_10_details_block01' }, - ['-364065174'] = { Name = 'cs4_10_details' }, - ['1111005048'] = { Name = 'cs4_10_detailspark' }, - ['618345108'] = { Name = 'cs4_10_dinner' }, - ['2083220407'] = { Name = 'cs4_10_dinnerint' }, - ['-1832726235'] = { Name = 'cs4_10_em_01_lod' }, - ['-1595865086'] = { Name = 'cs4_10_em_01' }, - ['-598404420'] = { Name = 'cs4_10_em_011' }, - ['-100116762'] = { Name = 'cs4_10_em_02_lod' }, - ['2134379593'] = { Name = 'cs4_10_em_02_lod001' }, - ['-130632020'] = { Name = 'cs4_10_em_02' }, - ['626710366'] = { Name = 'cs4_10_em_03_lod' }, - ['114840559'] = { Name = 'cs4_10_em_03' }, - ['1302975065'] = { Name = 'cs4_10_em_05_lod' }, - ['1569915223'] = { Name = 'cs4_10_em_05' }, - ['-1615986685'] = { Name = 'cs4_10_em_06_lod' }, - ['-1290949541'] = { Name = 'cs4_10_em_06' }, - ['-1184759631'] = { Name = 'cs4_10_em_07b_lod' }, - ['2054150691'] = { Name = 'cs4_10_em_07b' }, - ['1878595764'] = { Name = 'cs4_10_em_10_lod' }, - ['97506634'] = { Name = 'cs4_10_em_10' }, - ['-1845934937'] = { Name = 'cs4_10_em02_lod' }, - ['1978399671'] = { Name = 'cs4_10_em02' }, - ['81177474'] = { Name = 'cs4_10_emissign_lodn' }, - ['-1317882769'] = { Name = 'cs4_10_emissign' }, - ['460093487'] = { Name = 'cs4_10_emissive_lod' }, - ['-1426342691'] = { Name = 'cs4_10_emissive' }, - ['631805804'] = { Name = 'cs4_10_garage_01' }, - ['884001511'] = { Name = 'cs4_10_garage' }, - ['-683605629'] = { Name = 'cs4_10_garage01' }, - ['-174113217'] = { Name = 'cs4_10_garage02' }, - ['1866722145'] = { Name = 'cs4_10_gas_station' }, - ['2118053318'] = { Name = 'cs4_10_glue_01a' }, - ['-98998563'] = { Name = 'cs4_10_glue_02a' }, - ['-1214984691'] = { Name = 'cs4_10_glue_03a' }, - ['499980572'] = { Name = 'cs4_10_glue_04a' }, - ['1922154868'] = { Name = 'cs4_10_glue_05a' }, - ['-1360939148'] = { Name = 'cs4_10_house01' }, - ['1275261896'] = { Name = 'cs4_10_house2' }, - ['500504429'] = { Name = 'cs4_10_house3' }, - ['796408499'] = { Name = 'cs4_10_house4' }, - ['-2096666124'] = { Name = 'cs4_10_medicalc' }, - ['-2060945936'] = { Name = 'cs4_10_railings' }, - ['637746795'] = { Name = 'cs4_10_railings2' }, - ['-469509655'] = { Name = 'cs4_10_rails' }, - ['-582656997'] = { Name = 'cs4_10_ralings2' }, - ['-1637223080'] = { Name = 'cs4_10_sh_rls00' }, - ['1269774743'] = { Name = 'cs4_10_sh_rls022' }, - ['1459807879'] = { Name = 'cs4_10_sh_rls03' }, - ['1375660754'] = { Name = 'cs4_10_sheriff_e_dummy' }, - ['1068386828'] = { Name = 'cs4_10_sheriff_e_lod' }, - ['-1287420176'] = { Name = 'cs4_10_sheriff_st_rails2lod' }, - ['2029920098'] = { Name = 'cs4_10_sheriff_station' }, - ['-1052354530'] = { Name = 'cs4_10_sheriff_wind_lod' }, - ['-1831519059'] = { Name = 'cs4_10_sheriff_windows' }, - ['-1580159359'] = { Name = 'cs4_10_sign_rest' }, - ['-683596539'] = { Name = 'cs4_10_store' }, - ['-641387932'] = { Name = 'cs4_10_tattoo' }, - ['1649689118'] = { Name = 'cs4_10_terrain_gas' }, - ['397330660'] = { Name = 'cs4_10_terrain_medic_ovly' }, - ['8672541'] = { Name = 'cs4_10_terrain_medic' }, - ['1975418828'] = { Name = 'cs4_10_terrain_sheriff' }, - ['1028715031'] = { Name = 'cs4_10_terrain01' }, - ['876797947'] = { Name = 'cs4_10_terrain02' }, - ['-283889609'] = { Name = 'cs4_10_trailer_em_b_win' }, - ['953468486'] = { Name = 'cs4_10_trailer_em' }, - ['-2062363770'] = { Name = 'cs4_10_trailer_em001_lod_b_win' }, - ['-719087221'] = { Name = 'cs4_10_trailer_em001_lod' }, - ['-969606429'] = { Name = 'cs4_10_trailer002' }, - ['-2105809433'] = { Name = 'cs4_10_trailer003b_b_win' }, - ['-10123193'] = { Name = 'cs4_10_trailer003b_details' }, - ['2071524813'] = { Name = 'cs4_10_trailer003b_rails' }, - ['-598965564'] = { Name = 'cs4_10_trailer003b_windows' }, - ['-923434404'] = { Name = 'cs4_10_trailer003b' }, - ['962792103'] = { Name = 'cs4_10_traileranim' }, - ['-57654255'] = { Name = 'cs4_10_trailertrash_dummy' }, - ['-935292684'] = { Name = 'cs4_10_trailertrash_lod' }, - ['1125350320'] = { Name = 'cs4_10_trevorfake_hd' }, - ['-2065683499'] = { Name = 'cs4_10_trevweeds' }, - ['-1093344540'] = { Name = 'cs4_10_trvrtlr_colswap' }, - ['-200166522'] = { Name = 'cs4_10_v_38_barbers_lod' }, - ['2103568138'] = { Name = 'cs4_10_v_sheriff_milo_lod' }, - ['256868763'] = { Name = 'cs4_11_armc_02' }, - ['1960961523'] = { Name = 'cs4_11_awning' }, - ['840284527'] = { Name = 'cs4_11_barn02' }, - ['1053887546'] = { Name = 'cs4_11_barrier01' }, - ['-791160926'] = { Name = 'cs4_11_billb_uniteas' }, - ['-934076442'] = { Name = 'cs4_11_bld01sign' }, - ['1729204490'] = { Name = 'cs4_11_brr_002' }, - ['635138642'] = { Name = 'cs4_11_brrier_01' }, - ['606768514'] = { Name = 'cs4_11_brrier4' }, - ['-2139733588'] = { Name = 'cs4_11_build01_d' }, - ['-2137045097'] = { Name = 'cs4_11_build01' }, - ['-2064072192'] = { Name = 'cs4_11_build02_d' }, - ['1170821612'] = { Name = 'cs4_11_build02' }, - ['1561087687'] = { Name = 'cs4_11_build03_g' }, - ['1007828606'] = { Name = 'cs4_11_build03' }, - ['1821444465'] = { Name = 'cs4_11_cvana' }, - ['-439027499'] = { Name = 'cs4_11_cvn_r' }, - ['2035256974'] = { Name = 'cs4_11_emis1_lod' }, - ['877808318'] = { Name = 'cs4_11_emis1' }, - ['1121150912'] = { Name = 'cs4_11_emis2' }, - ['-1181602087'] = { Name = 'cs4_11_emis3_lod' }, - ['756300866'] = { Name = 'cs4_11_emis3' }, - ['-2147063227'] = { Name = 'cs4_11_emismr_lod' }, - ['180878965'] = { Name = 'cs4_11_emismr' }, - ['1958096763'] = { Name = 'cs4_11_emismr2_lod' }, - ['-2085338380'] = { Name = 'cs4_11_emismr2' }, - ['395534035'] = { Name = 'cs4_11_ems2_lod' }, - ['551923123'] = { Name = 'cs4_11_glue_01' }, - ['-2084965542'] = { Name = 'cs4_11_glue_03' }, - ['1374432709'] = { Name = 'cs4_11_hrdstn01' }, - ['1606011232'] = { Name = 'cs4_11_hrdstn02' }, - ['-1532036283'] = { Name = 'cs4_11_jt_sgn1' }, - ['-1022765374'] = { Name = 'cs4_11_jtnp_sgn' }, - ['-997376034'] = { Name = 'cs4_11_land_01' }, - ['1781467939'] = { Name = 'cs4_11_land_02' }, - ['2088546238'] = { Name = 'cs4_11_land_03' }, - ['-975289724'] = { Name = 'cs4_11_land_04' }, - ['-651138776'] = { Name = 'cs4_11_land_05' }, - ['1131003289'] = { Name = 'cs4_11_land_06' }, - ['1155317887'] = { Name = 'cs4_11_land_07' }, - ['1512470623'] = { Name = 'cs4_11_nr_00' }, - ['-1254955555'] = { Name = 'cs4_11_overlooka' }, - ['1520350287'] = { Name = 'cs4_11_overlookasign' }, - ['-1739081280'] = { Name = 'cs4_11_ovr_rails' }, - ['961320796'] = { Name = 'cs4_11_props_bulbw018' }, - ['1795881688'] = { Name = 'cs4_11_props_bulbw019' }, - ['898536430'] = { Name = 'cs4_11_props_cm93190_hvstd' }, - ['-1630434222'] = { Name = 'cs4_11_props_e_wire013' }, - ['-1935972378'] = { Name = 'cs4_11_props_e_wire014' }, - ['1964488927'] = { Name = 'cs4_11_props_e_wire016' }, - ['-235949439'] = { Name = 'cs4_11_props_e_wire017' }, - ['-475720212'] = { Name = 'cs4_11_props_e_wire018' }, - ['-1102132404'] = { Name = 'cs4_11_props_e_wire019' }, - ['1126778499'] = { Name = 'cs4_11_props_e_wire020' }, - ['1441229823'] = { Name = 'cs4_11_props_e_wire021' }, - ['1713638536'] = { Name = 'cs4_11_props_e_wire022' }, - ['-345827588'] = { Name = 'cs4_11_props_e_wire024' }, - ['-1758398789'] = { Name = 'cs4_11_props_mountwire006' }, - ['1237801941'] = { Name = 'cs4_11_props_mountwire007' }, - ['-1051478364'] = { Name = 'cs4_11_props_mountwire012' }, - ['-417496517'] = { Name = 'cs4_11_props_mountwire013' }, - ['1946273337'] = { Name = 'cs4_11_props_mountwire01c001' }, - ['-1220324263'] = { Name = 'cs4_11_props_mountwire01d001' }, - ['664587029'] = { Name = 'cs4_11_props_mountwire01e001' }, - ['-1924182156'] = { Name = 'cs4_11_props_mountwire020' }, - ['730337209'] = { Name = 'cs4_11_props_propsmountwire019' }, - ['-960040041'] = { Name = 'cs4_11_props_sal_emissive' }, - ['1487710136'] = { Name = 'cs4_11_props_sallightwire' }, - ['2145065583'] = { Name = 'cs4_11_propsmountwire01b001' }, - ['1776355738'] = { Name = 'cs4_11_pst' }, - ['1201231170'] = { Name = 'cs4_11_rc_rails' }, - ['914050093'] = { Name = 'cs4_11_rcplantc001' }, - ['-898993166'] = { Name = 'cs4_11_retwall02' }, - ['-1450945189'] = { Name = 'cs4_11_sal_cvana_d' }, - ['17728622'] = { Name = 'cs4_11_sal_cvana_g' }, - ['200940302'] = { Name = 'cs4_11_sal_cvana' }, - ['-292637873'] = { Name = 'cs4_11_saljunk_01' }, - ['539222631'] = { Name = 'cs4_11_salm_drt_g' }, - ['599410811'] = { Name = 'cs4_11_salm_drt_g1' }, - ['1455474672'] = { Name = 'cs4_11_salm_drt_g1lod' }, - ['905374964'] = { Name = 'cs4_11_salm_drt_g2' }, - ['-168918799'] = { Name = 'cs4_11_salm_drt_g2lod' }, - ['1957201841'] = { Name = 'cs4_11_salm_drt_glod' }, - ['655497131'] = { Name = 'cs4_11_salship' }, - ['-2132784043'] = { Name = 'cs4_11_salv_barrier' }, - ['1578836216'] = { Name = 'cs4_11_salvationm' }, - ['-968427613'] = { Name = 'cs4_11_salvtruck_g' }, - ['251669336'] = { Name = 'cs4_11_salvtruck' }, - ['-1327211925'] = { Name = 'cs4_11_trailer2' }, - ['-548372639'] = { Name = 'cs4_11_trailer2d' }, - ['-857089250'] = { Name = 'cs4_11_truckstop_dec' }, - ['1679893977'] = { Name = 'cs4_11_truckstop_sign' }, - ['111012742'] = { Name = 'cs4_11_truckstop' }, - ['1604762609'] = { Name = 'cs4_11_weed_003' }, - ['374753611'] = { Name = 'cs4_11_weed_01' }, - ['1177626880'] = { Name = 'cs4_11_weed_02' }, - ['-247023604'] = { Name = 'cs4_11_weeds_002' }, - ['-474211081'] = { Name = 'cs4_11_weeds_003' }, - ['-695438114'] = { Name = 'cs4_11_weeds_01' }, - ['1428818914'] = { Name = 'cs4_12_armcoend_01' }, - ['-923503655'] = { Name = 'cs4_12_armcoend_05' }, - ['483136388'] = { Name = 'cs4_12_bb1' }, - ['714026762'] = { Name = 'cs4_12_bb2' }, - ['-2142086513'] = { Name = 'cs4_12_bb3' }, - ['-1911785981'] = { Name = 'cs4_12_bb4' }, - ['1733816625'] = { Name = 'cs4_12_billbd_01' }, - ['480598989'] = { Name = 'cs4_12_billbd_02' }, - ['1304706570'] = { Name = 'cs4_12_billbd_03' }, - ['-281509644'] = { Name = 'cs4_12_billbd_04' }, - ['1969168577'] = { Name = 'cs4_12_cncbrdg01' }, - ['-1222503825'] = { Name = 'cs4_12_erotub_01' }, - ['-938429364'] = { Name = 'cs4_12_erotub_02' }, - ['450845160'] = { Name = 'cs4_12_erotub_03' }, - ['-1346337864'] = { Name = 'cs4_12_erotub_04' }, - ['-1977567111'] = { Name = 'cs4_12_erotub_06' }, - ['2018940133'] = { Name = 'cs4_12_erotub_07' }, - ['1564496005'] = { Name = 'cs4_12_erotub_mr2' }, - ['307856661'] = { Name = 'cs4_12_glue_03' }, - ['610085148'] = { Name = 'cs4_12_glue_04' }, - ['1718241301'] = { Name = 'cs4_12_land_01_g' }, - ['1432713675'] = { Name = 'cs4_12_land_01' }, - ['-1234698005'] = { Name = 'cs4_12_land_02_1g' }, - ['-1976612702'] = { Name = 'cs4_12_land_02_g' }, - ['1779409707'] = { Name = 'cs4_12_land_02' }, - ['848454429'] = { Name = 'cs4_12_land_02b_g' }, - ['-525839697'] = { Name = 'cs4_12_land_03_d' }, - ['-338418763'] = { Name = 'cs4_12_nd_wall_04' }, - ['427654919'] = { Name = 'cs4_12_nd_wall_05' }, - ['1061505690'] = { Name = 'cs4_12_nd_wall_06' }, - ['-366238015'] = { Name = 'cs4_12_retainwall01' }, - ['-652606306'] = { Name = 'cs4_12_retainwall04' }, - ['474462772'] = { Name = 'cs4_12_rock_002' }, - ['1822304559'] = { Name = 'cs4_12_rock_01b001' }, - ['731808700'] = { Name = 'cs4_12_tt_watert_ovr' }, - ['-816139547'] = { Name = 'cs4_12_tt_watert' }, - ['1152072959'] = { Name = 'cs4_12_tt_watrl01' }, - ['1732411953'] = { Name = 'cs4_12_tt_watrl02' }, - ['1696611413'] = { Name = 'cs4_12_watert_dets' }, - ['1474872810'] = { Name = 'cs4_12_weed_01' }, - ['1241164302'] = { Name = 'cs4_12_weed_02' }, - ['342146787'] = { Name = 'cs4_12_weed_03' }, - ['951711666'] = { Name = 'cs4_13_alphasign' }, - ['1497213760'] = { Name = 'cs4_13_animal_ark_sign_b' }, - ['2142679702'] = { Name = 'cs4_13_animal_ark_sign_em' }, - ['-1842049283'] = { Name = 'cs4_13_animal_ark_sign' }, - ['659838201'] = { Name = 'cs4_13_ark_skip' }, - ['1875981204'] = { Name = 'cs4_13_armco00' }, - ['1511262234'] = { Name = 'cs4_13_armco01' }, - ['1401191167'] = { Name = 'cs4_13_armco02' }, - ['1102993267'] = { Name = 'cs4_13_armco03' }, - ['-364140397'] = { Name = 'cs4_13_armco04' }, - ['-669940705'] = { Name = 'cs4_13_armco05' }, - ['-773785670'] = { Name = 'cs4_13_armco06' }, - ['629087993'] = { Name = 'cs4_13_armco08' }, - ['1388902796'] = { Name = 'cs4_13_armco09' }, - ['99377332'] = { Name = 'cs4_13_armco11' }, - ['-1675391712'] = { Name = 'cs4_13_armco12' }, - ['-1438439073'] = { Name = 'cs4_13_armco13' }, - ['1086281305'] = { Name = 'cs4_13_armco14' }, - ['-1342523022'] = { Name = 'cs4_13_bdh_00007_d' }, - ['856559177'] = { Name = 'cs4_13_bdh_01_d' }, - ['-654310387'] = { Name = 'cs4_13_bdh_01' }, - ['385133393'] = { Name = 'cs4_13_bdh_02_d' }, - ['198142379'] = { Name = 'cs4_13_bdh_02' }, - ['122751284'] = { Name = 'cs4_13_bdh_03_d' }, - ['1733697723'] = { Name = 'cs4_13_bdh_03' }, - ['357912657'] = { Name = 'cs4_13_bdh_04_d' }, - ['1476690456'] = { Name = 'cs4_13_bdh_04' }, - ['1818638926'] = { Name = 'cs4_13_bdh_06_d' }, - ['1421015925'] = { Name = 'cs4_13_bdh_06' }, - ['-1348095659'] = { Name = 'cs4_13_bdh_07' }, - ['1048186323'] = { Name = 'cs4_13_bdh_07b' }, - ['-1330992421'] = { Name = 'cs4_13_bilbrd_01' }, - ['841546978'] = { Name = 'cs4_13_billbd_005' }, - ['545159008'] = { Name = 'cs4_13_billbd_01' }, - ['-938588547'] = { Name = 'cs4_13_billbd_02' }, - ['-1238129976'] = { Name = 'cs4_13_billbd_03' }, - ['-2128004940'] = { Name = 'cs4_13_billbd_04' }, - ['-1884840887'] = { Name = 'cs4_13_build_01_b' }, - ['-1271798087'] = { Name = 'cs4_13_build_01_b001' }, - ['302177697'] = { Name = 'cs4_13_build_01_fiz' }, - ['-355411821'] = { Name = 'cs4_13_build_01' }, - ['-806182185'] = { Name = 'cs4_13_build_02' }, - ['-683466180'] = { Name = 'cs4_13_build_03_g' }, - ['972727015'] = { Name = 'cs4_13_build_conv001' }, - ['854987998'] = { Name = 'cs4_13_build_conv002' }, - ['554332427'] = { Name = 'cs4_13_build_conv003' }, - ['3288923'] = { Name = 'cs4_13_build_conv004' }, - ['-325089226'] = { Name = 'cs4_13_build_conv005' }, - ['-568661203'] = { Name = 'cs4_13_build_conv006' }, - ['-877869487'] = { Name = 'cs4_13_build_conv007' }, - ['-947995147'] = { Name = 'cs4_13_build_conv008' }, - ['872887404'] = { Name = 'cs4_13_build_conv01' }, - ['1090863272'] = { Name = 'cs4_13_conv_00_fiz' }, - ['823927649'] = { Name = 'cs4_13_conv_00_grille' }, - ['-1281278663'] = { Name = 'cs4_13_conv_00' }, - ['-968285545'] = { Name = 'cs4_13_conv_01_fiz' }, - ['535557766'] = { Name = 'cs4_13_conv_01_grille' }, - ['-1527275546'] = { Name = 'cs4_13_conv_01' }, - ['-1680082686'] = { Name = 'cs4_13_conv_02_fiz' }, - ['916442835'] = { Name = 'cs4_13_conv_02_grille' }, - ['-1255751612'] = { Name = 'cs4_13_conv_02' }, - ['1161315160'] = { Name = 'cs4_13_conv_03_fiz' }, - ['1820746960'] = { Name = 'cs4_13_conv_03_grille' }, - ['1750574759'] = { Name = 'cs4_13_conv_03' }, - ['1966906819'] = { Name = 'cs4_13_conv_04_fiz' }, - ['398764326'] = { Name = 'cs4_13_conv_04_grille' }, - ['1518963467'] = { Name = 'cs4_13_conv_04' }, - ['-748898545'] = { Name = 'cs4_13_conv_05_fiz' }, - ['-1835524275'] = { Name = 'cs4_13_conv_05_grille' }, - ['-1947046436'] = { Name = 'cs4_13_conv_05' }, - ['2060774599'] = { Name = 'cs4_13_decal_boat_02' }, - ['839874260'] = { Name = 'cs4_13_desert_house_10_d' }, - ['1054791363'] = { Name = 'cs4_13_desert_house_10_xtra' }, - ['-97409929'] = { Name = 'cs4_13_desert_house_10' }, - ['-1397030649'] = { Name = 'cs4_13_desert_house_9_dec' }, - ['1037388480'] = { Name = 'cs4_13_desert_house_9_xtra' }, - ['983985616'] = { Name = 'cs4_13_desert_house_9' }, - ['1295992633'] = { Name = 'cs4_13_emissive_a_lod' }, - ['569037394'] = { Name = 'cs4_13_emissive_a' }, - ['1082462666'] = { Name = 'cs4_13_emissive_b_lod' }, - ['861500719'] = { Name = 'cs4_13_emissive_b' }, - ['254275022'] = { Name = 'cs4_13_emissive_c_lod' }, - ['1028884775'] = { Name = 'cs4_13_emissive_c' }, - ['-319868396'] = { Name = 'cs4_13_emissive_d_lod' }, - ['1336225226'] = { Name = 'cs4_13_emissive_d' }, - ['2030111499'] = { Name = 'cs4_13_emissive_e_lod' }, - ['-923197328'] = { Name = 'cs4_13_emissive_e' }, - ['56553726'] = { Name = 'cs4_13_emissive_lod' }, - ['-1126590283'] = { Name = 'cs4_13_emissive' }, - ['-766810179'] = { Name = 'cs4_13_glue_01' }, - ['-1014674895'] = { Name = 'cs4_13_glue_02' }, - ['-1165182912'] = { Name = 'cs4_13_glue_03' }, - ['963294714'] = { Name = 'cs4_13_glue_06' }, - ['-227268594'] = { Name = 'cs4_13_glue_07' }, - ['788152544'] = { Name = 'cs4_13_gm_weeds' }, - ['-1716711416'] = { Name = 'cs4_13_gnd_01' }, - ['-151263332'] = { Name = 'cs4_13_gndtrk_01' }, - ['1394308576'] = { Name = 'cs4_13_gnt00' }, - ['1638470395'] = { Name = 'cs4_13_gnt01' }, - ['-518680094'] = { Name = 'cs4_13_gnt02' }, - ['-161825684'] = { Name = 'cs4_13_gnt03' }, - ['193193662'] = { Name = 'cs4_13_gnt04' }, - ['-1879620296'] = { Name = 'cs4_13_highlogo' }, - ['1759636465'] = { Name = 'cs4_13_house_wall_dec' }, - ['1971587821'] = { Name = 'cs4_13_house_wall' }, - ['-1884513979'] = { Name = 'cs4_13_land_01_ov' }, - ['550556671'] = { Name = 'cs4_13_land_01_ov1_lod' }, - ['-453535359'] = { Name = 'cs4_13_land_nmalll_ov' }, - ['-1515432155'] = { Name = 'cs4_13_mal_drain' }, - ['135582351'] = { Name = 'cs4_13_malrd_01' }, - ['-296015247'] = { Name = 'cs4_13_mine' }, - ['126022362'] = { Name = 'cs4_13_minileft_d' }, - ['1616621306'] = { Name = 'cs4_13_minileft' }, - ['-295748308'] = { Name = 'cs4_13_minimain_d' }, - ['1719884476'] = { Name = 'cs4_13_minimain' }, - ['-1129575831'] = { Name = 'cs4_13_miniright_d' }, - ['-1887845111'] = { Name = 'cs4_13_miniright' }, - ['1026682010'] = { Name = 'cs4_13_nmall017' }, - ['803721734'] = { Name = 'cs4_13_nmall018' }, - ['382152130'] = { Name = 'cs4_13_nmall15_d' }, - ['-465940667'] = { Name = 'cs4_13_nmall15' }, - ['243664525'] = { Name = 'cs4_13_props_cs4_13_wspline_035' }, - ['-1828492629'] = { Name = 'cs4_13_props_wire_035' }, - ['1984674972'] = { Name = 'cs4_13_props_wspline_00' }, - ['1125275178'] = { Name = 'cs4_13_props_wspline_01' }, - ['1388901783'] = { Name = 'cs4_13_props_wspline_02' }, - ['525110943'] = { Name = 'cs4_13_props_wspline_03' }, - ['831894321'] = { Name = 'cs4_13_props_wspline_04' }, - ['923713067'] = { Name = 'cs4_13_props_wspline_05' }, - ['1239278537'] = { Name = 'cs4_13_props_wspline_06' }, - ['610343120'] = { Name = 'cs4_13_props_wspline_08' }, - ['-295883587'] = { Name = 'cs4_13_props_wspline_09' }, - ['240478025'] = { Name = 'cs4_13_props_wspline_10' }, - ['1414034210'] = { Name = 'cs4_13_props_wspline_11' }, - ['-226807915'] = { Name = 'cs4_13_props_wspline_12' }, - ['586092656'] = { Name = 'cs4_13_props_wspline_14' }, - ['-1925487353'] = { Name = 'cs4_13_props_wspline_15' }, - ['786045922'] = { Name = 'cs4_13_retaining00' }, - ['-445839095'] = { Name = 'cs4_13_retaining01' }, - ['-215210873'] = { Name = 'cs4_13_retaining02' }, - ['1477242439'] = { Name = 'cs4_13_retaining03' }, - ['1702070548'] = { Name = 'cs4_13_retaining04' }, - ['1016477530'] = { Name = 'cs4_13_retaining05' }, - ['1247269597'] = { Name = 'cs4_13_retaining06' }, - ['-1822235406'] = { Name = 'cs4_13_retaining07' }, - ['-1589215047'] = { Name = 'cs4_13_retaining08' }, - ['-463487813'] = { Name = 'cs4_13_retwall002' }, - ['-793865457'] = { Name = 'cs4_13_rn02' }, - ['514369634'] = { Name = 'cs4_13_rr_a' }, - ['-100982823'] = { Name = 'cs4_13_rural3gr' }, - ['1063130831'] = { Name = 'cs4_13_rural3grde' }, - ['717269458'] = { Name = 'cs4_13_shed' }, - ['-495872921'] = { Name = 'cs4_13_shed1' }, - ['1455983164'] = { Name = 'cs4_13_shk01' }, - ['-133408659'] = { Name = 'cs4_13_silpbarrier_01' }, - ['-1624955232'] = { Name = 'cs4_13_silpbarrier_03' }, - ['-2121685037'] = { Name = 'cs4_13_sixfigure' }, - ['1491400804'] = { Name = 'cs4_13_sprunk' }, - ['1060397479'] = { Name = 'cs4_13_stargazplat' }, - ['310176075'] = { Name = 'cs4_13_tmptrlr_02' }, - ['2110504939'] = { Name = 'cs4_13_tmptrlr_07' }, - ['-1373000781'] = { Name = 'cs4_13_trailerboat_01' }, - ['-1095772512'] = { Name = 'cs4_13_trailerboat_det' }, - ['-318974399'] = { Name = 'cs4_13_trailerboat_dr' }, - ['-1809131934'] = { Name = 'cs4_13_trailerweed_003' }, - ['-2088422121'] = { Name = 'cs4_13_trailerweed_004' }, - ['-1339322777'] = { Name = 'cs4_13_trailerweed_005' }, - ['-1571654991'] = { Name = 'cs4_13_trailerweed_006' }, - ['-863615204'] = { Name = 'cs4_13_trailerweed_007' }, - ['-1093391432'] = { Name = 'cs4_13_trailerweed_008' }, - ['-1320151424'] = { Name = 'cs4_13_trailerweed_01' }, - ['789033015'] = { Name = 'cs4_13_trlr_01_fiz' }, - ['-210963046'] = { Name = 'cs4_13_trlr_02_fiz' }, - ['-466057001'] = { Name = 'cs4_13_trlr_03_fiz' }, - ['1579401527'] = { Name = 'cs4_13_upnatomclassic' }, - ['899561346'] = { Name = 'cs4_13_wall00' }, - ['-313841959'] = { Name = 'cs4_13_wall01' }, - ['394623821'] = { Name = 'cs4_13_wall02' }, - ['-897982153'] = { Name = 'cs4_13_wall03' }, - ['-1130216056'] = { Name = 'cs4_13_wall04' }, - ['-1311494164'] = { Name = 'cs4_13_wall05' }, - ['-1546193227'] = { Name = 'cs4_13_weed_01' }, - ['-1331195818'] = { Name = 'cs4_13_weed_02' }, - ['-797519884'] = { Name = 'cs4_13_weed_03' }, - ['-325187522'] = { Name = 'cs4_13_weed_05' }, - ['-2101227556'] = { Name = 'cs4_13_wr' }, - ['-2103975920'] = { Name = 'cs4_14_armco00' }, - ['-1180479954'] = { Name = 'cs4_14_armco01' }, - ['1735731659'] = { Name = 'cs4_14_armco02' }, - ['497849915'] = { Name = 'cs4_14_armco03' }, - ['1279161182'] = { Name = 'cs4_14_armco04' }, - ['-2106073136'] = { Name = 'cs4_14_armco05' }, - ['750859364'] = { Name = 'cs4_14_armco06' }, - ['-488562519'] = { Name = 'cs4_14_armco07' }, - ['-519037689'] = { Name = 'cs4_14_armco08' }, - ['-883404293'] = { Name = 'cs4_14_bilbrd_01' }, - ['-735548757'] = { Name = 'cs4_14_billbd_006' }, - ['1655756398'] = { Name = 'cs4_14_billbd_01' }, - ['-1767621032'] = { Name = 'cs4_14_billbd_02' }, - ['-2046124763'] = { Name = 'cs4_14_billbd_03' }, - ['-1260815993'] = { Name = 'cs4_14_billboard' }, - ['1789775082'] = { Name = 'cs4_14_cs_brrier' }, - ['-82213003'] = { Name = 'cs4_14_emissive_slod' }, - ['163860622'] = { Name = 'cs4_14_emissive' }, - ['-2006260844'] = { Name = 'cs4_14_erotub_mr' }, - ['-1540541302'] = { Name = 'cs4_14_erotub_mr2' }, - ['-1945597273'] = { Name = 'cs4_14_glue_01' }, - ['742055514'] = { Name = 'cs4_14_glue' }, - ['-1399374147'] = { Name = 'cs4_14_hickbar_anim' }, - ['-1713440165'] = { Name = 'cs4_14_hickbar_det' }, - ['-343370477'] = { Name = 'cs4_14_hickbar_land' }, - ['1427163518'] = { Name = 'cs4_14_hickbar_land02' }, - ['711342809'] = { Name = 'cs4_14_hickbar_ov' }, - ['-1776680267'] = { Name = 'cs4_14_hickbar' }, - ['525612766'] = { Name = 'cs4_14_hut_g' }, - ['-1639840584'] = { Name = 'cs4_14_hut' }, - ['-1046219318'] = { Name = 'cs4_14_jtnp_sign' }, - ['-1877754070'] = { Name = 'cs4_14_land_01' }, - ['1927906518'] = { Name = 'cs4_14_land_02' }, - ['-1414039951'] = { Name = 'cs4_14_land_03' }, - ['-1640473741'] = { Name = 'cs4_14_land_04' }, - ['-908414281'] = { Name = 'cs4_14_land_05' }, - ['-1147464136'] = { Name = 'cs4_14_land_06' }, - ['-176649742'] = { Name = 'cs4_14_land_07' }, - ['-416289439'] = { Name = 'cs4_14_land_08' }, - ['505862990'] = { Name = 'cs4_14_land_09' }, - ['1858698654'] = { Name = 'cs4_14_land_10' }, - ['303721399'] = { Name = 'cs4_14_land_11_ed' }, - ['-1693726276'] = { Name = 'cs4_14_land_11_g' }, - ['-1513067605'] = { Name = 'cs4_14_land_11' }, - ['605092718'] = { Name = 'cs4_14_land_11a' }, - ['-56240683'] = { Name = 'cs4_14_ldb10_glu' }, - ['-1811329558'] = { Name = 'cs4_14_pipe_01' }, - ['1634266680'] = { Name = 'cs4_14_plywoodpile_01' }, - ['-74200229'] = { Name = 'cs4_14_props_tspline_002' }, - ['-723008890'] = { Name = 'cs4_14_props_twire_02' }, - ['-1875625696'] = { Name = 'cs4_14_props_twire_03' }, - ['1976173644'] = { Name = 'cs4_14_props_twire_04' }, - ['-1951682541'] = { Name = 'cs4_14_props_twire_05' }, - ['-2088853575'] = { Name = 'cs4_14_props_twire_06' }, - ['964594610'] = { Name = 'cs4_14_props_twire_07' }, - ['-1626122526'] = { Name = 'cs4_14_props_twire_08' }, - ['1424638601'] = { Name = 'cs4_14_props_twire_09' }, - ['-673168681'] = { Name = 'cs4_14_props_twire_10' }, - ['1128470935'] = { Name = 'cs4_14_props_twire_11' }, - ['1962474754'] = { Name = 'cs4_14_props_twire_12' }, - ['519262456'] = { Name = 'cs4_14_props_twire_13' }, - ['1350972445'] = { Name = 'cs4_14_props_twire_14' }, - ['-1273332980'] = { Name = 'cs4_14_props_twire_15' }, - ['-2099210087'] = { Name = 'cs4_14_props_twire_16' }, - ['-806210885'] = { Name = 'cs4_14_props_twire_17' }, - ['-1583655410'] = { Name = 'cs4_14_props_twire_18' }, - ['1260466483'] = { Name = 'cs4_14_props_twire_20' }, - ['71508856'] = { Name = 'cs4_14_props_twire_21' }, - ['1451182063'] = { Name = 'cs4_14_props_twire_22' }, - ['780662785'] = { Name = 'cs4_14_props_twire_23' }, - ['567143220'] = { Name = 'cs4_14_retainwallmr' }, - ['-910655297'] = { Name = 'cs4_14_rock_01' }, - ['-1109530322'] = { Name = 'cs4_14_rock_02' }, - ['-1349497709'] = { Name = 'cs4_14_rock_03' }, - ['1182215798'] = { Name = 'cs4_14_rock_12' }, - ['864357914'] = { Name = 'cs4_14_rock_12b' }, - ['457186733'] = { Name = 'cs4_14_rsl_mr_bb1' }, - ['1214674937'] = { Name = 'cs4_14_rsl_mr_bb2' }, - ['916771958'] = { Name = 'cs4_14_rsl_mr_bb3' }, - ['-1481992760'] = { Name = 'cs4_14_tmp_trlr_002' }, - ['900116526'] = { Name = 'cs4_14_trlr_01' }, - ['1589344742'] = { Name = 'cs4_14_wall' }, - ['-572207067'] = { Name = 'cs4_14_wall00' }, - ['-1414435909'] = { Name = 'cs4_14_wall01' }, - ['-2124736753'] = { Name = 'cs4_14_wall02' }, - ['1766319929'] = { Name = 'cs4_14_wall03' }, - ['1134795761'] = { Name = 'cs4_14_wall04' }, - ['99098751'] = { Name = 'cs4_14_wall05' }, - ['1475298440'] = { Name = 'cs4_14_wall06' }, - ['-2033332638'] = { Name = 'cs4_14_weed' }, - ['899449633'] = { Name = 'cs4_lod_01_slod3' }, - ['-1139005491'] = { Name = 'cs4_lod_02_slod3' }, - ['1995638650'] = { Name = 'cs4_lod_em_b_slod3' }, - ['-32229604'] = { Name = 'cs4_lod_em_c_slod3' }, - ['-1523375433'] = { Name = 'cs4_lod_em_d_slod3' }, - ['848139608'] = { Name = 'cs4_lod_em_e_slod3' }, - ['690703715'] = { Name = 'cs4_lod_em_f_slod3' }, - ['1963880846'] = { Name = 'cs4_lod_em_slod3' }, - ['514237963'] = { Name = 'cs4_railway_trk01' }, - ['840160080'] = { Name = 'cs4_railway_trk02a' }, - ['-570873020'] = { Name = 'cs4_railway_trk02b' }, - ['-164438245'] = { Name = 'cs4_railway_trk03a' }, - ['538784495'] = { Name = 'cs4_railway_trk03b' }, - ['-661380418'] = { Name = 'cs4_railway_trk04a' }, - ['-351287371'] = { Name = 'cs4_railway_trk04b' }, - ['2027412016'] = { Name = 'cs4_railway_trk05' }, - ['599012285'] = { Name = 'cs4_railway_trk06a' }, - ['360093506'] = { Name = 'cs4_railway_trk06b' }, - ['1969510600'] = { Name = 'cs4_railway_trk07a' }, - ['-2068088970'] = { Name = 'cs4_railway_trk07b' }, - ['785171995'] = { Name = 'cs4_railway_trk08' }, - ['-1780966304'] = { Name = 'cs4_railwayb_brg01' }, - ['1366496186'] = { Name = 'cs4_railwayb_brg02' }, - ['1068986431'] = { Name = 'cs4_railwayb_brg03' }, - ['-71061011'] = { Name = 'cs4_railwayb_brg04_refl' }, - ['2046256322'] = { Name = 'cs4_railwayb_brg04' }, - ['-270364849'] = { Name = 'cs4_railwayb_brg05_refl' }, - ['1816480094'] = { Name = 'cs4_railwayb_brg05' }, - ['1757037402'] = { Name = 'cs4_railwayb_brg1_refl' }, - ['-777018769'] = { Name = 'cs4_railwayb_brg2_refl' }, - ['954004673'] = { Name = 'cs4_railwayb_brg3_refl' }, - ['-1263144029'] = { Name = 'cs4_railwayb_int_trk013' }, - ['317345262'] = { Name = 'cs4_railwayb_trk010_refl' }, - ['-1411356273'] = { Name = 'cs4_railwayb_trk010a' }, - ['-10205363'] = { Name = 'cs4_railwayb_trk010b_refl' }, - ['-1172339191'] = { Name = 'cs4_railwayb_trk010b' }, - ['-802328459'] = { Name = 'cs4_railwayb_trk011_refl' }, - ['1959735458'] = { Name = 'cs4_railwayb_trk011' }, - ['-1938378701'] = { Name = 'cs4_railwayb_trk012_refl' }, - ['-1835439050'] = { Name = 'cs4_railwayb_trk012' }, - ['1917007355'] = { Name = 'cs4_railwayb_trk014_refl' }, - ['-1625619143'] = { Name = 'cs4_railwayb_trk014' }, - ['1280104178'] = { Name = 'cs4_railwayb_trk015_refl' }, - ['-1144373609'] = { Name = 'cs4_railwayb_trk015' }, - ['1945662346'] = { Name = 'cs4_railwayb_trk016_refl' }, - ['-908272964'] = { Name = 'cs4_railwayb_trk016' }, - ['32989636'] = { Name = 'cs4_railwayb_trk08_refl' }, - ['1303696906'] = { Name = 'cs4_railwayb_trk08a' }, - ['952233326'] = { Name = 'cs4_railwayb_trk08b_refl' }, - ['1550021479'] = { Name = 'cs4_railwayb_trk08b' }, - ['-1087135021'] = { Name = 'cs4_railwayb_trk09_refl' }, - ['-1631192129'] = { Name = 'cs4_railwayb_trk09a' }, - ['887049065'] = { Name = 'cs4_railwayb_trk09b_refl' }, - ['-1871159516'] = { Name = 'cs4_railwayb_trk09b' }, - ['496734670'] = { Name = 'cs4_railwayb_tunnel_dec' }, - ['1194022318'] = { Name = 'cs4_railwayb_tunnel_details' }, - ['-1827627049'] = { Name = 'cs4_railwayb_tunnel_ext' }, - ['-1768584124'] = { Name = 'cs4_railwayb_tunnel_int' }, - ['830025102'] = { Name = 'cs4_railwayb_tunnel_refl' }, - ['-556072256'] = { Name = 'cs4_railwayb_tunnelint_refl' }, - ['218470509'] = { Name = 'cs4_rd_props_xwere67' }, - ['-791790722'] = { Name = 'cs4_rd_props_xwire01' }, - ['-1048732451'] = { Name = 'cs4_rd_props_xwire02' }, - ['-923915326'] = { Name = 'cs4_rd_props_xwire03' }, - ['-1161588883'] = { Name = 'cs4_rd_props_xwire04' }, - ['-461774119'] = { Name = 'cs4_rd_props_xwire05' }, - ['-702134734'] = { Name = 'cs4_rd_props_xwire06' }, - ['-1590109096'] = { Name = 'cs4_rd_props_xwire07' }, - ['1940422968'] = { Name = 'cs4_rd_props_xwire08' }, - ['1052088147'] = { Name = 'cs4_rd_props_xwire09' }, - ['907772615'] = { Name = 'cs4_rd_props_xwire10' }, - ['-1823195849'] = { Name = 'cs4_rd_props_xwire11' }, - ['-1596336062'] = { Name = 'cs4_rd_props_xwire12' }, - ['-268863876'] = { Name = 'cs4_rd_props_xwire13' }, - ['2105872793'] = { Name = 'cs4_rd_props_xwire14' }, - ['-695254100'] = { Name = 'cs4_rd_props_xwire15' }, - ['-331256048'] = { Name = 'cs4_rd_props_xwire16' }, - ['-1021076267'] = { Name = 'cs4_rd_props_xwire17' }, - ['-790808504'] = { Name = 'cs4_rd_props_xwire18' }, - ['493015378'] = { Name = 'cs4_rd_props_xwire19' }, - ['2032929283'] = { Name = 'cs4_rd_props_xwire20' }, - ['-964385617'] = { Name = 'cs4_rd_props_xwire21' }, - ['-708754648'] = { Name = 'cs4_rd_props_xwire22' }, - ['-1124560485'] = { Name = 'cs4_rd_props_xwire23' }, - ['-757875375'] = { Name = 'cs4_rd_props_xwire24' }, - ['460770966'] = { Name = 'cs4_rd_props_xwire25' }, - ['691563033'] = { Name = 'cs4_rd_props_xwire26' }, - ['-171834579'] = { Name = 'cs4_rd_props_xwire27' }, - ['195243759'] = { Name = 'cs4_rd_props_xwire28' }, - ['1346648116'] = { Name = 'cs4_rd_props_xwire29' }, - ['-1106536067'] = { Name = 'cs4_rd_props_xwire30' }, - ['-996825455'] = { Name = 'cs4_rd_props_xwire31' }, - ['-1838759372'] = { Name = 'cs4_rd_props_xwire32' }, - ['-1468273058'] = { Name = 'cs4_rd_props_xwire33' }, - ['1994525483'] = { Name = 'cs4_rd_props_xwire34' }, - ['-1565433139'] = { Name = 'cs4_rd_props_xwire35' }, - ['2029457241'] = { Name = 'cs4_rd_props_xwire36' }, - ['-2025346054'] = { Name = 'cs4_rd_props_xwire37' }, - ['1803449448'] = { Name = 'cs4_rd_props_xwire38' }, - ['996774975'] = { Name = 'cs4_rd_props_xwire39' }, - ['-1541380409'] = { Name = 'cs4_rd_props_xwire40' }, - ['-1652991623'] = { Name = 'cs4_rd_props_xwire41' }, - ['-1885749830'] = { Name = 'cs4_rd_props_xwire42' }, - ['1388069884'] = { Name = 'cs4_rd_props_xwire43' }, - ['1140565627'] = { Name = 'cs4_rd_props_xwire44' }, - ['1027643653'] = { Name = 'cs4_rd_props_xwire45' }, - ['784923694'] = { Name = 'cs4_rd_props_xwire46' }, - ['448975906'] = { Name = 'cs4_rd_props_xwire47' }, - ['-176518766'] = { Name = 'cs4_rd_props_xwire48' }, - ['-415961849'] = { Name = 'cs4_rd_props_xwire49' }, - ['-1234106360'] = { Name = 'cs4_rd_props_xwire50' }, - ['-599567444'] = { Name = 'cs4_rd_props_xwire51' }, - ['-1910425751'] = { Name = 'cs4_rd_props_xwire52' }, - ['2142247559'] = { Name = 'cs4_rd_props_xwire53' }, - ['-1317667310'] = { Name = 'cs4_rd_props_xwire54' }, - ['2080281384'] = { Name = 'cs4_rd_props_xwire55' }, - ['-1372489843'] = { Name = 'cs4_rd_props_xwire56' }, - ['-1617667501'] = { Name = 'cs4_rd_props_xwire57' }, - ['1371356838'] = { Name = 'cs4_rd_props_xwire58' }, - ['855179550'] = { Name = 'cs4_rd_props_xwire59' }, - ['-777732209'] = { Name = 'cs4_rd_props_xwire60' }, - ['-1542232979'] = { Name = 'cs4_rd_props_xwire61' }, - ['1917944042'] = { Name = 'cs4_rd_props_xwire62' }, - ['-725104983'] = { Name = 'cs4_rd_props_xwire63' }, - ['44343906'] = { Name = 'cs4_rd_props_xwire64' }, - ['-229965393'] = { Name = 'cs4_rd_props_xwire65' }, - ['805403931'] = { Name = 'cs4_rd_props_xwire66' }, - ['522115926'] = { Name = 'cs4_rd_props_xwire67' }, - ['1269445748'] = { Name = 'cs4_rd_props_xwire68' }, - ['982291001'] = { Name = 'cs4_rd_props_xwire69' }, - ['1971654045'] = { Name = 'cs4_rd_props_xwire70' }, - ['-2091931342'] = { Name = 'cs4_rd_props_xwire71' }, - ['1762555056'] = { Name = 'cs4_rd_props_xwire72' }, - ['918261771'] = { Name = 'cs4_rd_props_xwire73' }, - ['1317650343'] = { Name = 'cs4_rd_props_xwire74' }, - ['1013980024'] = { Name = 'cs4_rd_props_xwire75' }, - ['1107240598'] = { Name = 'cs4_rd_props_xwire76' }, - ['264389141'] = { Name = 'cs4_rd_props_xwire77' }, - ['531882488'] = { Name = 'cs4_rd_props_xwire78' }, - ['-177304210'] = { Name = 'cs4_rd_props_xwire79' }, - ['-1491275260'] = { Name = 'cs4_rd_props_xwire80' }, - ['2028148113'] = { Name = 'cs4_rd_props_xwire81' }, - ['-1972094797'] = { Name = 'cs4_rd_props_xwire82' }, - ['2085067870'] = { Name = 'cs4_rd_props_xwire83' }, - ['1370965822'] = { Name = 'cs4_rd_props_xwire84' }, - ['1667328658'] = { Name = 'cs4_rd_props_xwire85' }, - ['897093313'] = { Name = 'cs4_rd_props_xwire86' }, - ['1190113711'] = { Name = 'cs4_rd_props_xwire87' }, - ['416273768'] = { Name = 'cs4_rd_props_xwire88' }, - ['710801540'] = { Name = 'cs4_rd_props_xwire89' }, - ['-2105629360'] = { Name = 'cs4_rd_props_xwire90' }, - ['1870430028'] = { Name = 'cs4_rd_props_xwire91' }, - ['1496732352'] = { Name = 'cs4_rd_props_xwire92' }, - ['1239528471'] = { Name = 'cs4_rd_props_xwire93' }, - ['899845017'] = { Name = 'cs4_rd_props_xwire94' }, - ['1183133026'] = { Name = 'cs4_rd_props_xwire95' }, - ['810221806'] = { Name = 'cs4_rd_props_xwire96' }, - ['490658510'] = { Name = 'cs4_rd_props_xwire97' }, - ['251477579'] = { Name = 'cs4_rd_props_xwire98' }, - ['-134475703'] = { Name = 'cs4_rd_props_xwire99' }, - ['-536304417'] = { Name = 'cs4_roads_05' }, - ['-767915709'] = { Name = 'cs4_roads_06' }, - ['1330283401'] = { Name = 'cs4_roads_07' }, - ['-2130417924'] = { Name = 'cs4_roads_08' }, - ['-61319190'] = { Name = 'cs4_roads_13' }, - ['166589205'] = { Name = 'cs4_roads_14' }, - ['648490119'] = { Name = 'cs4_roads_15' }, - ['894552540'] = { Name = 'cs4_roads_16' }, - ['-333170822'] = { Name = 'cs4_roads_17' }, - ['380046463'] = { Name = 'cs4_roads_19' }, - ['601696851'] = { Name = 'cs4_roads_20' }, - ['-417287973'] = { Name = 'cs4_roads_21' }, - ['1208766149'] = { Name = 'cs4_roads_brg_01_rail' }, - ['-1755716938'] = { Name = 'cs4_roads_brg_01' }, - ['-1047143323'] = { Name = 'cs4_roads_dec01' }, - ['-1345111840'] = { Name = 'cs4_roads_dec02' }, - ['17698972'] = { Name = 'cs4_roads_dtjnc_d01' }, - ['1272587827'] = { Name = 'cs4_roads_dtjnc_d02' }, - ['812412760'] = { Name = 'cs4_roads_dtjnc_d04' }, - ['-1121282292'] = { Name = 'cs4_roads_dtjnc_d05s' }, - ['1775952428'] = { Name = 'cs4_roads_dtjnc_d07' }, - ['-1559623848'] = { Name = 'cs4_roads_runoff_01_ovr' }, - ['-1469524569'] = { Name = 'cs4_roads_runoff_02_ovr' }, - ['-1838872159'] = { Name = 'cs4_roads_runoff_03_ovr' }, - ['66654625'] = { Name = 'cs4_roads_sign_01' }, - ['364295452'] = { Name = 'cs4_roads_sign_02' }, - ['883159710'] = { Name = 'cs4_roads_sign_03' }, - ['-891216102'] = { Name = 'cs4_roads_sign_04' }, - ['18353031'] = { Name = 'cs4_roads_sign_05' }, - ['508662471'] = { Name = 'cs4_roads_slpr_02' }, - ['-1771960037'] = { Name = 'cs4_roadsb_12' }, - ['-936095764'] = { Name = 'cs4_roadsb_dtjnc_d01' }, - ['-1331879746'] = { Name = 'cs4_roadsb_dtjnc_d02' }, - ['493517399'] = { Name = 'cs4_roadsb_dtjnc_d04' }, - ['218880410'] = { Name = 'cs4_roadsb_dtjnc_d05' }, - ['1429105122'] = { Name = 'cs4_roadsb_dtjnc_d07' }, - ['1187237133'] = { Name = 'cs4_roadsb_dtjnc_d08' }, - ['-52687346'] = { Name = 'cs4_roadsb_sign_01' }, - ['663970684'] = { Name = 'cs4_roadsb_sign_02' }, - ['432916465'] = { Name = 'cs4_roadsb_sign_03' }, - ['-698611600'] = { Name = 'cs4_roadsb00' }, - ['124611218'] = { Name = 'cs4_roadsb01' }, - ['-114045409'] = { Name = 'cs4_roadsb02' }, - ['-1558961703'] = { Name = 'cs4_roadsb03' }, - ['-820676133'] = { Name = 'cs4_roadsb04' }, - ['-1060643520'] = { Name = 'cs4_roadsb05' }, - ['1787900116'] = { Name = 'cs4_roadsb06' }, - ['1543279531'] = { Name = 'cs4_roadsb07' }, - ['-998611907'] = { Name = 'cs4_roadsb08' }, - ['-1296383810'] = { Name = 'cs4_roadsb09' }, - ['1213913364'] = { Name = 'cs4_roadsb091' }, - ['-350341280'] = { Name = 'cs4_roadsb10' }, - ['-69707564'] = { Name = 'cs4_roadsb11' }, - ['274530781'] = { Name = 'cs4_roadsb13' }, - ['583902910'] = { Name = 'cs4_roadsb14' }, - ['907791706'] = { Name = 'cs4_roadsb15' }, - ['1194422149'] = { Name = 'cs4_roadsb16' }, - ['1752871447'] = { Name = 'cs4_roadsb17' }, - ['2097273637'] = { Name = 'cs4_roadsb18' }, - ['-1892450424'] = { Name = 'cs4_roadsb19' }, - ['-543777499'] = { Name = 'cs4_roadsb20' }, - ['-305579638'] = { Name = 'cs4_roadsb21' }, - ['-1154558898'] = { Name = 'cs4_roadsb22' }, - ['-914460435'] = { Name = 'cs4_roadsb23' }, - ['-346437127'] = { Name = 'cs5_1_billboard-bravado' }, - ['247831804'] = { Name = 'cs5_1_billboard-gnd_desert' }, - ['-762319973'] = { Name = 'cs5_1_billboard-slod' }, - ['306599860'] = { Name = 'cs5_1_billboard-uranium' }, - ['-1684711481'] = { Name = 'cs5_1_cs5_01_ds01' }, - ['826966835'] = { Name = 'cs5_1_cs5_01_ds03' }, - ['1083711950'] = { Name = 'cs5_1_cs5_01_ds04' }, - ['-1162930694'] = { Name = 'cs5_1_cs5_01_ds06' }, - ['-737064770'] = { Name = 'cs5_1_cs5_01_ds07' }, - ['-260243051'] = { Name = 'cs5_1_cs5_01_ds09' }, - ['-320015759'] = { Name = 'cs5_1_cs5_01_ds10' }, - ['2130286212'] = { Name = 'cs5_1_cs5_01_ds11' }, - ['-1740519148'] = { Name = 'cs5_1_cs5_01_ds12' }, - ['-1434161767'] = { Name = 'cs5_1_cs5_01_ds13' }, - ['662988703'] = { Name = 'cs5_1_cs5_01_ds14' }, - ['-1245641702'] = { Name = 'cs5_1_cs5_01_ds15' }, - ['-751878410'] = { Name = 'cs5_1_cs5_01_ds16' }, - ['1152292605'] = { Name = 'cs5_1_cs5_01_ds172' }, - ['338280678'] = { Name = 'cs5_1_cs5_01_ds19' }, - ['1014372150'] = { Name = 'cs5_1_cs5_01_ds20' }, - ['-1457917828'] = { Name = 'cs5_1_cs5_01_ds22' }, - ['-1152019205'] = { Name = 'cs5_1_cs5_01_ds23' }, - ['-1643521444'] = { Name = 'cs5_1_cs5_01_ds25' }, - ['178959304'] = { Name = 'cs5_1_cs5_01_ds26' }, - ['-299369789'] = { Name = 'cs5_1_cs5_01_ds28' }, - ['-3236336'] = { Name = 'cs5_1_cs5_01_ds29' }, - ['-1810446466'] = { Name = 'cs5_1_cs5_01_ds30' }, - ['1884782592'] = { Name = 'cs5_1_cs5_01_ds32' }, - ['-2103565171'] = { Name = 'cs5_1_cs5_01_ds33' }, - ['-626502488'] = { Name = 'cs5_1_cs5_01_ds34' }, - ['-185497286'] = { Name = 'cs5_1_cs5_01_ds35' }, - ['-1088709233'] = { Name = 'cs5_1_cs5_01_ds36' }, - ['-1478299774'] = { Name = 'cs5_1_cs5_01_ds38' }, - ['2071141411'] = { Name = 'cs5_1_cs5_01_ds40' }, - ['2108760223'] = { Name = 'cs5_1_cs5_01_ds41' }, - ['-1743923880'] = { Name = 'cs5_1_cs5_01_ds42' }, - ['1653467737'] = { Name = 'cs5_1_cs5_01_ds44' }, - ['884477614'] = { Name = 'cs5_1_cs5_01_ds45' }, - ['-1008489213'] = { Name = 'cs5_1_cs5_01_ds46' }, - ['-1303770672'] = { Name = 'cs5_1_cs5_01_ds47' }, - ['-159411654'] = { Name = 'cs5_1_cs5_01_ds48' }, - ['348114618'] = { Name = 'cs5_1_cs5_01_ds49' }, - ['953786633'] = { Name = 'cs5_1_cs5_01_ds50' }, - ['338515973'] = { Name = 'cs5_1_cs5_01_ds52' }, - ['782273687'] = { Name = 'cs5_1_cs5_01_ds53' }, - ['-2114636993'] = { Name = 'cs5_1_cs5_01_ds54' }, - ['-1807558694'] = { Name = 'cs5_1_cs5_01_ds55' }, - ['1700755988'] = { Name = 'cs5_1_cs5_01_ds56' }, - ['2007375521'] = { Name = 'cs5_1_cs5_01_ds57' }, - ['-1501987685'] = { Name = 'cs5_1_cs5_01_ds58' }, - ['-1270278082'] = { Name = 'cs5_1_cs5_01_ds59' }, - ['-239892938'] = { Name = 'cs5_1_cs5_01_ds61' }, - ['-1184983667'] = { Name = 'cs5_1_cs5_01_ds62' }, - ['-413830790'] = { Name = 'cs5_1_cs5_01_ds63' }, - ['-1662067546'] = { Name = 'cs5_1_cs5_01_ds64' }, - ['-895830011'] = { Name = 'cs5_1_cs5_01_ds65' }, - ['1504040513'] = { Name = 'cs5_1_cs5_01_ds66' }, - ['-2013744410'] = { Name = 'cs5_1_cs5_01_ds67' }, - ['1045569434'] = { Name = 'cs5_1_cs5_01_ds68' }, - ['-496506713'] = { Name = 'cs5_1_cs5_01_ds70' }, - ['-794704613'] = { Name = 'cs5_1_cs5_01_ds71' }, - ['-949669214'] = { Name = 'cs5_1_cs5_01_ds72' }, - ['1349047644'] = { Name = 'cs5_1_cst_01' }, - ['-22629927'] = { Name = 'cs5_1_cst_02' }, - ['-2104313421'] = { Name = 'cs5_1_cst_03' }, - ['1017826967'] = { Name = 'cs5_1_cst_03b' }, - ['-1591306375'] = { Name = 'cs5_1_cst_rocks002' }, - ['599014868'] = { Name = 'cs5_1_cst_rocks1' }, - ['-467454840'] = { Name = 'cs5_1_cst_rocks1b' }, - ['1635445118'] = { Name = 'cs5_1_drain1' }, - ['1289311720'] = { Name = 'cs5_1_foam_01' }, - ['1584429334'] = { Name = 'cs5_1_foam_02' }, - ['1732643521'] = { Name = 'cs5_1_foam_03' }, - ['2060333521'] = { Name = 'cs5_1_foam_04' }, - ['329638786'] = { Name = 'cs5_1_foam_05' }, - ['952866259'] = { Name = 'cs5_1_hil_barrier' }, - ['-1608217902'] = { Name = 'cs5_1_hil_barrier1' }, - ['-1576127546'] = { Name = 'cs5_1_land_01' }, - ['-658824929'] = { Name = 'cs5_1_land_02' }, - ['-978715907'] = { Name = 'cs5_1_land_03' }, - ['-879491387'] = { Name = 'cs5_1_land_04' }, - ['-1243817129'] = { Name = 'cs5_1_land_05' }, - ['-1841382084'] = { Name = 'cs5_1_land_06_d' }, - ['-383696417'] = { Name = 'cs5_1_land_06' }, - ['-648109478'] = { Name = 'cs5_1_land_07' }, - ['2113203084'] = { Name = 'cs5_1_land_08' }, - ['1873760001'] = { Name = 'cs5_1_land_09' }, - ['1023666899'] = { Name = 'cs5_1_land_10' }, - ['1246561637'] = { Name = 'cs5_1_land_11' }, - ['-1985936372'] = { Name = 'cs5_1_land_12' }, - ['-1745706833'] = { Name = 'cs5_1_land_13' }, - ['1845120187'] = { Name = 'cs5_1_land_14' }, - ['2084497732'] = { Name = 'cs5_1_land_15' }, - ['388821713'] = { Name = 'cs5_1_land_16_d' }, - ['-767781566'] = { Name = 'cs5_1_land_16' }, - ['-525848039'] = { Name = 'cs5_1_land_17' }, - ['-1217273939'] = { Name = 'cs5_1_land_18' }, - ['-689812225'] = { Name = 'cs5_1_land_19_d' }, - ['-987464942'] = { Name = 'cs5_1_land_19' }, - ['1868741122'] = { Name = 'cs5_1_land_19b' }, - ['-1997668586'] = { Name = 'cs5_1_land_20' }, - ['1920554399'] = { Name = 'cs5_1_land_20b' }, - ['868387180'] = { Name = 'cs5_1_land_20c_d' }, - ['-1948874659'] = { Name = 'cs5_1_land_20c' }, - ['1451072936'] = { Name = 'cs5_1_land_20d' }, - ['1939854458'] = { Name = 'cs5_1_land_21' }, - ['-777297105'] = { Name = 'cs5_1_retaining_wall004' }, - ['1855904592'] = { Name = 'cs5_1_retaining_wall011' }, - ['-592431243'] = { Name = 'cs5_1_retaining_wall019' }, - ['1575728770'] = { Name = 'cs5_1_retaining_wall040' }, - ['641581623'] = { Name = 'cs5_1_retwall005' }, - ['-709609457'] = { Name = 'cs5_1_retwall01' }, - ['-342498350'] = { Name = 'cs5_1_retwall03' }, - ['-1453905162'] = { Name = 'cs5_1_sea_hatch_dec' }, - ['-896794569'] = { Name = 'cs5_1_sea_hatch_emissive' }, - ['257792428'] = { Name = 'cs5_1_sea_hatch' }, - ['1701783235'] = { Name = 'cs5_1_sea_lod_01' }, - ['1396802152'] = { Name = 'cs5_1_sea_lod_02' }, - ['1235907244'] = { Name = 'cs5_1_sea_shipwreck_lod' }, - ['1087236395'] = { Name = 'cs5_1_sea_shipwreck' }, - ['1746442586'] = { Name = 'cs5_1_sea_uw_dec_00' }, - ['-707169058'] = { Name = 'cs5_1_sea_uw_dec_01' }, - ['-1012608907'] = { Name = 'cs5_1_sea_uw_dec_02' }, - ['-1602385369'] = { Name = 'cs5_1_sea_uw_dec_03' }, - ['252929873'] = { Name = 'cs5_1_sea_uw_dec_04' }, - ['-526710171'] = { Name = 'cs5_1_sea_uw_dec_05' }, - ['1309074735'] = { Name = 'cs5_1_sea_uw_dec_06' }, - ['1018184322'] = { Name = 'cs5_1_sea_uw_dec_07' }, - ['988430070'] = { Name = 'cs5_1_sea_uw_dec_08' }, - ['660346842'] = { Name = 'cs5_1_sea_uw_dec_09' }, - ['258892427'] = { Name = 'cs5_1_sea_uw_dec_10' }, - ['-439414963'] = { Name = 'cs5_1_sea_uw_dec_11' }, - ['-200234032'] = { Name = 'cs5_1_sea_uw_dec_12' }, - ['-936881152'] = { Name = 'cs5_1_sea_uw_dec_13' }, - ['-572096644'] = { Name = 'cs5_1_sea_uw_dec_14' }, - ['-1737927294'] = { Name = 'cs5_1_sea_uw1_00' }, - ['901976111'] = { Name = 'cs5_1_sea_uw1_02' }, - ['766561201'] = { Name = 'cs5_1_sea_uw1_02b' }, - ['8660402'] = { Name = 'cs5_1_sea_uw1_03' }, - ['1981687323'] = { Name = 'cs5_1_sea_uw2_00' }, - ['-886943710'] = { Name = 'cs5_1_sea_uw2_01' }, - ['-638620228'] = { Name = 'cs5_1_sea_uw2_02' }, - ['-1325556775'] = { Name = 'cs5_1_sea_uw2_03' }, - ['-1117539163'] = { Name = 'cs5_1_sea_uw2_04' }, - ['377480912'] = { Name = 'cs5_1_sea_uw2_05' }, - ['-1530821803'] = { Name = 'cs5_1_sea_uw2_06' }, - ['-133355029'] = { Name = 'cs5_1_sea_uw2_07' }, - ['138857054'] = { Name = 'cs5_1_sea_uw2_08' }, - ['1576498638'] = { Name = 'cs5_1_sea_uw2_09' }, - ['1476061933'] = { Name = 'cs5_1_sea_uw2_10' }, - ['-1620051498'] = { Name = 'cs5_1_sea_uw2_11' }, - ['-1924213356'] = { Name = 'cs5_1_sea_uw2_12' }, - ['1928732899'] = { Name = 'cs5_1_sea_uw2_13' }, - ['1891376239'] = { Name = 'cs5_1_sea_uw2_14' }, - ['2085794736'] = { Name = 'cs5_1_sea_uw2_15' }, - ['1857525882'] = { Name = 'cs5_1_sea_uw2_16' }, - ['-1460433679'] = { Name = 'cs5_1_sea_uw2_17' }, - ['-885796495'] = { Name = 'cs5_1_sea_uw2_18' }, - ['54051194'] = { Name = 'cs5_1_sea_uw2_19' }, - ['-458881691'] = { Name = 'cs5_1_sea_uw2_20' }, - ['832249489'] = { Name = 'cs5_2_bridge2_sd' }, - ['573831672'] = { Name = 'cs5_2_bridge2' }, - ['-871098133'] = { Name = 'cs5_2_culvert02_slod1' }, - ['-1135397022'] = { Name = 'cs5_2_culvert02' }, - ['1494777321'] = { Name = 'cs5_2_culvert03_slod1' }, - ['579961821'] = { Name = 'cs5_2_culvert03' }, - ['-349940721'] = { Name = 'cs5_2_land02' }, - ['-1560329342'] = { Name = 'cs5_2_land029_d' }, - ['-284790536'] = { Name = 'cs5_2_land029' }, - ['18264185'] = { Name = 'cs5_2_land06_d' }, - ['-1573600719'] = { Name = 'cs5_2_land06' }, - ['-215643353'] = { Name = 'cs5_2_land08_d' }, - ['-1783873585'] = { Name = 'cs5_2_land08_glue' }, - ['2049470997'] = { Name = 'cs5_2_land08' }, - ['-1193326644'] = { Name = 'cs5_2_land09_d' }, - ['1819399848'] = { Name = 'cs5_2_land09' }, - ['-1838994133'] = { Name = 'cs5_2_land09b' }, - ['-1599813202'] = { Name = 'cs5_2_land09c' }, - ['2071920483'] = { Name = 'cs5_2_land09d' }, - ['1462758846'] = { Name = 'cs5_2_land10_02_d' }, - ['1381995913'] = { Name = 'cs5_2_land10_03_d' }, - ['-779030659'] = { Name = 'cs5_2_land10_d' }, - ['-602622776'] = { Name = 'cs5_2_land10' }, - ['1321084183'] = { Name = 'cs5_2_land10b' }, - ['1561051570'] = { Name = 'cs5_2_land10c' }, - ['-1521298881'] = { Name = 'cs5_2_land10d' }, - ['-907276169'] = { Name = 'cs5_2_land11' }, - ['-1864759407'] = { Name = 'cs5_2_land12_02_d' }, - ['-1024172257'] = { Name = 'cs5_2_land12_d' }, - ['12221971'] = { Name = 'cs5_2_land12' }, - ['910239522'] = { Name = 'cs5_2_land13_d' }, - ['-301934432'] = { Name = 'cs5_2_land13' }, - ['-2016179133'] = { Name = 'cs5_2_land14' }, - ['1914796035'] = { Name = 'cs5_2_land16_d' }, - ['-1492202823'] = { Name = 'cs5_2_land16' }, - ['-851896563'] = { Name = 'cs5_2_land17' }, - ['1249612180'] = { Name = 'cs5_2_land18' }, - ['-2132083086'] = { Name = 'cs5_2_land19' }, - ['1579096864'] = { Name = 'cs5_2_land21_02_d' }, - ['539085533'] = { Name = 'cs5_2_land21_d' }, - ['514014592'] = { Name = 'cs5_2_land21' }, - ['210934111'] = { Name = 'cs5_2_land22' }, - ['-1651835752'] = { Name = 'cs5_2_land23_d' }, - ['-94866197'] = { Name = 'cs5_2_land23' }, - ['-1814003943'] = { Name = 'cs5_2_land24_d' }, - ['2046948412'] = { Name = 'cs5_2_land24' }, - ['1748258977'] = { Name = 'cs5_2_land25' }, - ['-1794093742'] = { Name = 'cs5_2_land27_d' }, - ['510342010'] = { Name = 'cs5_2_land27_refprox' }, - ['1171229656'] = { Name = 'cs5_2_land27' }, - ['384397799'] = { Name = 'cs5_2_land27b' }, - ['1575925779'] = { Name = 'cs5_2_sea_uw_dec_00' }, - ['1279562943'] = { Name = 'cs5_2_sea_uw_dec_01' }, - ['2040196971'] = { Name = 'cs5_2_sea_uw_dec_02' }, - ['1739082630'] = { Name = 'cs5_2_sea_uw_dec_03' }, - ['-523485748'] = { Name = 'cs5_2_sea_uw_dec_07' }, - ['-800744257'] = { Name = 'cs5_2_sea_uw_dec_08' }, - ['-36964405'] = { Name = 'cs5_2_sea_uw_dec_09' }, - ['6258326'] = { Name = 'cs5_2_sea_uw_dec_10' }, - ['313107242'] = { Name = 'cs5_2_sea_uw_dec_11' }, - ['-2111503801'] = { Name = 'cs5_2_sea_uw_dec_12' }, - ['1895096295'] = { Name = 'cs5_2_sea_uw_dec_13' }, - ['2111207850'] = { Name = 'cs5_2_sea_uw_dec_14' }, - ['1268585784'] = { Name = 'cs5_2_sea_uw_dec_15' }, - ['1501278453'] = { Name = 'cs5_2_sea_uw_dec_16' }, - ['655969329'] = { Name = 'cs5_2_sea_uw_dec_17' }, - ['85126958'] = { Name = 'cs5_2_sea_uw1_04_lod' }, - ['-942516067'] = { Name = 'cs5_2_sea_uw1_04' }, - ['-754598822'] = { Name = 'cs5_2_sea_uw2_01' }, - ['-1043654171'] = { Name = 'cs5_2_sea_uw2_02' }, - ['-372243508'] = { Name = 'cs5_2_sea_uw2_04_lod' }, - ['-1768668288'] = { Name = 'cs5_2_sea_uw2_04' }, - ['1753178408'] = { Name = 'cs5_2_sea_uw2_04b_lod' }, - ['2016776477'] = { Name = 'cs5_2_sea_uw2_04b' }, - ['288148546'] = { Name = 'cs5_2_sea_uw2_05_lod' }, - ['1674239466'] = { Name = 'cs5_2_sea_uw2_05' }, - ['-1731668701'] = { Name = 'cs5_2_sea_uw2_05b' }, - ['649889453'] = { Name = 'cs5_2_sea_uw2_06_lod' }, - ['1377581709'] = { Name = 'cs5_2_sea_uw2_06' }, - ['-49967007'] = { Name = 'cs5_2_sea_uw2_07' }, - ['1941929427'] = { Name = 'cs5_2_sea_uw2_08' }, - ['476270364'] = { Name = 'cs5_2_sea_uw2_09' }, - ['-734739948'] = { Name = 'cs5_2_sea_uw2_10' }, - ['290864214'] = { Name = 'cs5_2_sea_uw2_13' }, - ['462180546'] = { Name = 'cs5_2_sea_uw2_14' }, - ['1453278951'] = { Name = 'cs5_2_sea_uw2_15' }, - ['-4876011'] = { Name = 'cs5_2_sea_uw2_16' }, - ['878314077'] = { Name = 'cs5_2_sea_uw2_17' }, - ['1185130224'] = { Name = 'cs5_2_sea_uw2_18' }, - ['-1650404111'] = { Name = 'cs5_2_sea_uw2_19' }, - ['-1155363120'] = { Name = 'cs5_2_sea_uw2_22' }, - ['1916982702'] = { Name = 'cs5_2_shoredcl02' }, - ['493235194'] = { Name = 'cs5_2_shoredcl03' }, - ['183240454'] = { Name = 'cs5_2_shoredcl04' }, - ['1372787923'] = { Name = 'cs5_2_shoredcl05' }, - ['1066168390'] = { Name = 'cs5_2_shoredcl06' }, - ['-478365660'] = { Name = 'cs5_2_shoredcl07' }, - ['-767650392'] = { Name = 'cs5_2_shoredcl08' }, - ['-132685479'] = { Name = 'cs5_2_shoredcl09' }, - ['1634823870'] = { Name = 'cs5_3_bars00' }, - ['858722874'] = { Name = 'cs5_3_bars01' }, - ['-34723915'] = { Name = 'cs5_3_bars02' }, - ['1314506895'] = { Name = 'cs5_3_bars03' }, - ['-337348900'] = { Name = 'cs5_3_building1_decal' }, - ['-635831188'] = { Name = 'cs5_3_building2_decal' }, - ['-618467648'] = { Name = 'cs5_3_cablemesh_new' }, - ['935381874'] = { Name = 'cs5_3_chim01' }, - ['-444979482'] = { Name = 'cs5_3_chim02' }, - ['208908980'] = { Name = 'cs5_3_chimney1_decal' }, - ['-393941066'] = { Name = 'cs5_3_cliff_01' }, - ['-1129703423'] = { Name = 'cs5_3_cliff_02' }, - ['-304829878'] = { Name = 'cs5_3_cliffroks01' }, - ['654646446'] = { Name = 'cs5_3_cliffroks03' }, - ['289009940'] = { Name = 'cs5_3_cliffroks04' }, - ['1017366507'] = { Name = 'cs5_3_cliffroks05' }, - ['884848671'] = { Name = 'cs5_3_cliffroks06' }, - ['-66077648'] = { Name = 'cs5_3_craneladder01' }, - ['1336501106'] = { Name = 'cs5_3_craneladder02' }, - ['-153405450'] = { Name = 'cs5_3_craneladder03_lod002' }, - ['566790065'] = { Name = 'cs5_3_craneladder03' }, - ['1017175127'] = { Name = 'cs5_3_cs5_03_decs01' }, - ['-2041942107'] = { Name = 'cs5_3_cs5_03_decs08' }, - ['-75704016'] = { Name = 'cs5_3_cs5_03_decs10' }, - ['809648826'] = { Name = 'cs5_3_cs5_03_decs11' }, - ['917111617'] = { Name = 'cs5_3_cs5_03_decs11b' }, - ['-455136267'] = { Name = 'cs5_3_cs5_03_decs13' }, - ['116977704'] = { Name = 'cs5_3_cs5_03_decs15' }, - ['2074564991'] = { Name = 'cs5_3_cs5_03_decs17' }, - ['1524704251'] = { Name = 'cs5_3_cs5_03_decs20' }, - ['1688899712'] = { Name = 'cs5_3_cs5_03_glue_03' }, - ['-1269961475'] = { Name = 'cs5_3_cs5_03_pipes01' }, - ['1550892352'] = { Name = 'cs5_3_cs5_03_pipes02' }, - ['-1438394139'] = { Name = 'cs5_3_cs5_03_pipes03' }, - ['1997435515'] = { Name = 'cs5_3_cs5_03_pipes04' }, - ['-1775487025'] = { Name = 'cs5_3_decal_p1' }, - ['1638105305'] = { Name = 'cs5_3_detaillow_02b' }, - ['-1330659396'] = { Name = 'cs5_3_detaillow_03' }, - ['2074228502'] = { Name = 'cs5_3_detaillow_04b' }, - ['842240986'] = { Name = 'cs5_3_detaillow_05b' }, - ['-1344818061'] = { Name = 'cs5_3_dock_rtg_002' }, - ['1128017461'] = { Name = 'cs5_3_entrancesigns_a' }, - ['1367001778'] = { Name = 'cs5_3_entrancesigns_b' }, - ['1788378349'] = { Name = 'cs5_3_entrancesigns_c' }, - ['-1594072487'] = { Name = 'cs5_3_glue01' }, - ['-1491962172'] = { Name = 'cs5_3_grnddcls01' }, - ['1123462790'] = { Name = 'cs5_3_grnddcls02' }, - ['825756425'] = { Name = 'cs5_3_grnddcls03' }, - ['1602381725'] = { Name = 'cs5_3_grnddcls04' }, - ['1306444886'] = { Name = 'cs5_3_grnddcls05' }, - ['168508592'] = { Name = 'cs5_3_grnddcls06' }, - ['1590973423'] = { Name = 'cs5_3_grounddec12' }, - ['-247957231'] = { Name = 'cs5_3_grounddec18' }, - ['1795451739'] = { Name = 'cs5_3_grounddec20' }, - ['866778164'] = { Name = 'cs5_3_groundh_02' }, - ['570120411'] = { Name = 'cs5_3_groundh_03' }, - ['767090920'] = { Name = 'cs5_3_groundh00' }, - ['1041093833'] = { Name = 'cs5_3_gully' }, - ['-1640585198'] = { Name = 'cs5_3_ladder_01' }, - ['-1026268985'] = { Name = 'cs5_3_mainshadprox02' }, - ['-1607918735'] = { Name = 'cs5_3_mainshadprox03' }, - ['1689822353'] = { Name = 'cs5_3_mainshadprox04' }, - ['-1301102588'] = { Name = 'cs5_3_mainshadprox05' }, - ['1459063055'] = { Name = 'cs5_3_mainshadprox07' }, - ['1418495025'] = { Name = 'cs5_3_mainshadprox08' }, - ['1657938108'] = { Name = 'cs5_3_mainshadprox09' }, - ['2144360840'] = { Name = 'cs5_3_mainshadprox10' }, - ['-1926400958'] = { Name = 'cs5_3_mainshadprox11' }, - ['-998153495'] = { Name = 'cs5_3_mainshadprox12' }, - ['1908981113'] = { Name = 'cs5_3_mainshadprox13' }, - ['1195796589'] = { Name = 'cs5_3_mainshadprox15' }, - ['-265906399'] = { Name = 'cs5_3_morbars_f' }, - ['-410899595'] = { Name = 'cs5_3_morbars_f1' }, - ['-1281000242'] = { Name = 'cs5_3_nupits00' }, - ['874839559'] = { Name = 'cs5_3_nupits01' }, - ['-162425213'] = { Name = 'cs5_3_nutower_g03a_details' }, - ['-611503111'] = { Name = 'cs5_3_nutower_g03b_details' }, - ['500408593'] = { Name = 'cs5_3_nutower_g04_cap1' }, - ['269550988'] = { Name = 'cs5_3_nutower_g04_cap2' }, - ['-706796832'] = { Name = 'cs5_3_nutower_g04_frame1' }, - ['-207462810'] = { Name = 'cs5_3_nutower_g04_frame2' }, - ['-1421735320'] = { Name = 'cs5_3_nutower_g04_tower1' }, - ['245092634'] = { Name = 'cs5_3_nutower_g04_tower2' }, - ['-842039247'] = { Name = 'cs5_3_nutower_g084_b' }, - ['-1366516131'] = { Name = 'cs5_3_nutower_g084_detailsa' }, - ['-1996041648'] = { Name = 'cs5_3_nutower_g084_detailsa001' }, - ['-877668189'] = { Name = 'cs5_3_nutower_g084_detailsc' }, - ['76500217'] = { Name = 'cs5_3_nutower_g10_details' }, - ['-1268294435'] = { Name = 'cs5_3_nutower_g14_cap' }, - ['-1481280388'] = { Name = 'cs5_3_nutower_g14_frame' }, - ['1791529952'] = { Name = 'cs5_3_nutower_g14' }, - ['-442363083'] = { Name = 'cs5_3_nutower_g15b_details' }, - ['900482668'] = { Name = 'cs5_3_nutower_g21b_details' }, - ['-376172194'] = { Name = 'cs5_3_nutower_g21c_details' }, - ['95321306'] = { Name = 'cs5_3_nutower_g42_cap' }, - ['-1900012260'] = { Name = 'cs5_3_nutower_g42_frame' }, - ['-447641124'] = { Name = 'cs5_3_nutower_g42' }, - ['2038910472'] = { Name = 'cs5_3_nutower_g43a_details' }, - ['657139723'] = { Name = 'cs5_3_nutower_g43b_details' }, - ['638275959'] = { Name = 'cs5_3_nutower_g49c_details' }, - ['-2012281785'] = { Name = 'cs5_3_nutower_g72_details' }, - ['-1511011801'] = { Name = 'cs5_3_nutower_g73b_details' }, - ['122243500'] = { Name = 'cs5_3_nutower_g78_details' }, - ['717870849'] = { Name = 'cs5_3_officin_2' }, - ['1213239822'] = { Name = 'cs5_3_officin_4' }, - ['1100825848'] = { Name = 'cs5_3_pit_1' }, - ['1397205097'] = { Name = 'cs5_3_pit_1453' }, - ['-141114792'] = { Name = 'cs5_3_plant1_decal_a' }, - ['-1629220620'] = { Name = 'cs5_3_plant1_decal_c' }, - ['-496657553'] = { Name = 'cs5_3_plant2_decal' }, - ['195647034'] = { Name = 'cs5_3_plant3_decal' }, - ['83475346'] = { Name = 'cs5_3_plant4_decal' }, - ['-881892214'] = { Name = 'cs5_3_plantlights_10' }, - ['-2028905525'] = { Name = 'cs5_3_plantlights_12' }, - ['-1687956466'] = { Name = 'cs5_3_plantmain_1' }, - ['-647467068'] = { Name = 'cs5_3_plantmain_1a' }, - ['-1447726927'] = { Name = 'cs5_3_plantmain_2' }, - ['708440504'] = { Name = 'cs5_3_plantmain_3' }, - ['-815039951'] = { Name = 'cs5_3_plantmain_342' }, - ['-315317648'] = { Name = 'cs5_3_plantmain_3a' }, - ['461445431'] = { Name = 'cs5_3_plantmain_detail_3' }, - ['-561515270'] = { Name = 'cs5_3_plantmain1_rail01' }, - ['1880692766'] = { Name = 'cs5_3_plantmain1_rail02' }, - ['491242134'] = { Name = 'cs5_3_plantmain2_rail01' }, - ['-1668574554'] = { Name = 'cs5_3_plantretainwall_1' }, - ['1022288781'] = { Name = 'cs5_3_plantsigns_5' }, - ['844649191'] = { Name = 'cs5_3_ppbldg012' }, - ['-1260518848'] = { Name = 'cs5_3_ppbldg0156' }, - ['913723033'] = { Name = 'cs5_3_ppl018_rail02' }, - ['-100459691'] = { Name = 'cs5_3_ppl018' }, - ['102851430'] = { Name = 'cs5_3_ppl019_rail01' }, - ['206880760'] = { Name = 'cs5_3_ppl019' }, - ['-504683797'] = { Name = 'cs5_3_ppla8_a_c' }, - ['-993413781'] = { Name = 'cs5_3_ppla8_a001' }, - ['-1201085041'] = { Name = 'cs5_3_ppla8_b001' }, - ['1467461477'] = { Name = 'cs5_3_pplant028' }, - ['1335043063'] = { Name = 'cs5_3_pplant028sups01' }, - ['-1383604257'] = { Name = 'cs5_3_pplant028sups02' }, - ['-1153860798'] = { Name = 'cs5_3_pplant028sups03' }, - ['1706445794'] = { Name = 'cs5_3_pplant029' }, - ['1044995558'] = { Name = 'cs5_3_pplant16_a' }, - ['1948617690'] = { Name = 'cs5_3_pplant16' }, - ['683379803'] = { Name = 'cs5_3_pplant16a_a' }, - ['-1954852391'] = { Name = 'cs5_3_pplant16a_b' }, - ['197453058'] = { Name = 'cs5_3_pplant16a' }, - ['1693596757'] = { Name = 'cs5_3_pplant16arail02' }, - ['-575895338'] = { Name = 'cs5_3_pplant16b' }, - ['-1193167101'] = { Name = 'cs5_3_pplant16brails03' }, - ['1536097195'] = { Name = 'cs5_3_pplant16c_details' }, - ['253389745'] = { Name = 'cs5_3_pplant16c' }, - ['-1141803587'] = { Name = 'cs5_3_pplant16rail01' }, - ['1113902025'] = { Name = 'cs5_3_pplh18_rail03' }, - ['816261198'] = { Name = 'cs5_3_pplh18_rail04' }, - ['-445075519'] = { Name = 'cs5_3_pplh18' }, - ['-1557073818'] = { Name = 'cs5_3_pplh19_a' }, - ['-1787603733'] = { Name = 'cs5_3_pplh19_b' }, - ['1221704617'] = { Name = 'cs5_3_pplh19_c' }, - ['1487493996'] = { Name = 'cs5_3_pplh19_d' }, - ['124139755'] = { Name = 'cs5_3_pplh19_e' }, - ['1333423437'] = { Name = 'cs5_3_pplh19b_rail002' }, - ['1511948953'] = { Name = 'cs5_3_pplh19b_rail003' }, - ['1809131014'] = { Name = 'cs5_3_pplh19b_rail004' }, - ['-1767605340'] = { Name = 'cs5_3_pplh19b_rail005' }, - ['-558890465'] = { Name = 'cs5_3_pplh19b_rail01' }, - ['815819523'] = { Name = 'cs5_3_pplh20' }, - ['-507784972'] = { Name = 'cs5_3_pwrst_dtls01' }, - ['-135922360'] = { Name = 'cs5_3_pwrst_dtls02' }, - ['595875148'] = { Name = 'cs5_3_pwrst_dtls03' }, - ['-738538321'] = { Name = 'cs5_3_pwrst_dtls0353' }, - ['760178914'] = { Name = 'cs5_3_pwrst_dtls04' }, - ['1058081893'] = { Name = 'cs5_3_pwrst_dtls05' }, - ['1352839048'] = { Name = 'cs5_3_pwrst_dtls06' }, - ['1518060346'] = { Name = 'cs5_3_pwrst_dtls07' }, - ['1812620887'] = { Name = 'cs5_3_pwrst_dtls08' }, - ['-1783055945'] = { Name = 'cs5_3_pwrst_dtls09' }, - ['1913929711'] = { Name = 'cs5_3_pwrst_dtls10' }, - ['-1059955350'] = { Name = 'cs5_3_pwrst_dtls11' }, - ['-1840250778'] = { Name = 'cs5_3_pwrst_dtls12' }, - ['-1495127670'] = { Name = 'cs5_3_pwrst_dtls13' }, - ['505801791'] = { Name = 'cs5_3_pwrst_dtls14_lod' }, - ['-122401491'] = { Name = 'cs5_3_pwrst_dtls14' }, - ['192901827'] = { Name = 'cs5_3_pwrst_dtls15' }, - ['-582642096'] = { Name = 'cs5_3_pwrst_dtls16' }, - ['-363057027'] = { Name = 'cs5_3_pwrst_dtls17' }, - ['1008686074'] = { Name = 'cs5_3_pwrst_dtls18' }, - ['583884972'] = { Name = 'cs5_3_pwrst1_dtls01' }, - ['2956140'] = { Name = 'cs5_3_pwrst1_dtls02' }, - ['-998792190'] = { Name = 'cs5_3_pwrst1_dtls03' }, - ['315736245'] = { Name = 'cs5_3_pwrst1_dtls04' }, - ['-369922311'] = { Name = 'cs5_3_pwrst1_dtls05' }, - ['-1219524174'] = { Name = 'cs5_3_pwrst1_dtls06' }, - ['-530752559'] = { Name = 'cs5_3_pwrst1_dtls07' }, - ['-296978513'] = { Name = 'cs5_3_pwrst1_dtls08' }, - ['1954546712'] = { Name = 'cs5_3_pwrst1_dtls09' }, - ['1237659579'] = { Name = 'cs5_3_pwrst1_dtls10' }, - ['-58157757'] = { Name = 'cs5_3_pwrst1_dtls11' }, - ['761427702'] = { Name = 'cs5_3_pwrst1_dtls12' }, - ['-535110552'] = { Name = 'cs5_3_pwrst1_dtls13' }, - ['248363469'] = { Name = 'cs5_3_pwrst1_dtls14' }, - ['-976017447'] = { Name = 'cs5_3_pwrst1_dtls15' }, - ['-1282374828'] = { Name = 'cs5_3_pwrst1_dtls16' }, - ['-844548215'] = { Name = 'cs5_3_pwrst1_dtls17' }, - ['-1150905596'] = { Name = 'cs5_3_pwrst1_dtls18' }, - ['-1365804698'] = { Name = 'cs5_3_pwrst1_dtls19' }, - ['-906481102'] = { Name = 'cs5_3_pwrst1_dtls20' }, - ['-1069670722'] = { Name = 'cs5_3_pwrst1_dtls21' }, - ['-1384416967'] = { Name = 'cs5_3_pwrst1_dtls22' }, - ['2085558013'] = { Name = 'cs5_3_pwrst1_dtls23' }, - ['1868299543'] = { Name = 'cs5_3_pwrst1_dtls24' }, - ['1618304842'] = { Name = 'cs5_3_pwrst1_dtls25' }, - ['1306966573'] = { Name = 'cs5_3_pwrst1_dtls26' }, - ['556490927'] = { Name = 'cs5_3_pwrst1_dtls27' }, - ['408309509'] = { Name = 'cs5_3_pwrst1_dtls28' }, - ['96184784'] = { Name = 'cs5_3_pwrst1_dtls29' }, - ['304791962'] = { Name = 'cs5_3_pwrst1_dtls30' }, - ['-603531949'] = { Name = 'cs5_3_pwrst1_dtls31' }, - ['-1029627833'] = { Name = 'cs5_3_pwrstfizrail01' }, - ['-1261271894'] = { Name = 'cs5_3_pwrstfizrail02' }, - ['607773871'] = { Name = 'cs5_3_pwrstfizrail03' }, - ['301678642'] = { Name = 'cs5_3_pwrstfizrail04' }, - ['1069784002'] = { Name = 'cs5_3_pwrstfizrail05' }, - ['1839069046'] = { Name = 'cs5_3_pwrstfizrail06' }, - ['1532056285'] = { Name = 'cs5_3_pwrstfizrail07' }, - ['-1994346885'] = { Name = 'cs5_3_pwrstfizrail08' }, - ['1993148884'] = { Name = 'cs5_3_pwrstfizrail09' }, - ['190657318'] = { Name = 'cs5_3_pwrstfizrail10' }, - ['-511254670'] = { Name = 'cs5_3_pwrstfizrail11' }, - ['-288065011'] = { Name = 'cs5_3_pwrstfizrail12' }, - ['-1113450583'] = { Name = 'cs5_3_pwrstfizrail13' }, - ['-887967094'] = { Name = 'cs5_3_pwrstfizrail14' }, - ['-1596695026'] = { Name = 'cs5_3_pwrstfizrail15' }, - ['1956906414'] = { Name = 'cs5_3_pwrstfizrail16' }, - ['-2106154669'] = { Name = 'cs5_3_pwrstfizrail17' }, - ['1477266561'] = { Name = 'cs5_3_pwrstfizrail18' }, - ['1708845084'] = { Name = 'cs5_3_pwrstfizrail19' }, - ['1085906614'] = { Name = 'cs5_3_pwrstfizrail20' }, - ['1317878365'] = { Name = 'cs5_3_pwrstfizrail21' }, - ['339461563'] = { Name = 'cs5_3_pwrstfizrail22' }, - ['568877332'] = { Name = 'cs5_3_pwrstfizrail23' }, - ['-140637056'] = { Name = 'cs5_3_pwrstfizrail24' }, - ['-535077389'] = { Name = 'cs5_3_pwrstfizrail25' }, - ['-372149921'] = { Name = 'cs5_3_pwrstfizrail26' }, - ['-1148873528'] = { Name = 'cs5_3_pwrstfizrail27' }, - ['-986404826'] = { Name = 'cs5_3_pwrstfizrail28' }, - ['-1761358907'] = { Name = 'cs5_3_pwrstfizrail29' }, - ['-1727313796'] = { Name = 'cs5_3_pwrstfizrail30' }, - ['-1422005023'] = { Name = 'cs5_3_pwrstfizrail31' }, - ['889454707'] = { Name = 'cs5_3_pwrstfizrail32' }, - ['1196533006'] = { Name = 'cs5_3_pwrstfizrail33' }, - ['1948384942'] = { Name = 'cs5_3_pwrstfizrail34' }, - ['278312857'] = { Name = 'cs5_3_pwrstfizrail36' }, - ['723152032'] = { Name = 'cs5_3_pwrstfizrail38' }, - ['-1250590380'] = { Name = 'cs5_3_pwrstfizrail39' }, - ['-1623304854'] = { Name = 'cs5_3_pwrstfizrail40' }, - ['-1871726643'] = { Name = 'cs5_3_pwrstfizrail41' }, - ['2108756560'] = { Name = 'cs5_3_pwrstfizrail42' }, - ['-654587676'] = { Name = 'cs5_3_pwrstfizrail43' }, - ['-934172784'] = { Name = 'cs5_3_pwrstfizrail44' }, - ['-1249312257'] = { Name = 'cs5_3_pwrstfizrail45' }, - ['850721881'] = { Name = 'cs5_3_pwrstfizrail46' }, - ['565533274'] = { Name = 'cs5_3_pwrstfizrail47' }, - ['276248542'] = { Name = 'cs5_3_pwrstfizrail48' }, - ['1800924574'] = { Name = 'cs5_3_pwrstfizrail49' }, - ['1274654670'] = { Name = 'cs5_3_pwrstfizrail50' }, - ['949750035'] = { Name = 'cs5_3_pwrstfizrail51' }, - ['-1505237915'] = { Name = 'cs5_3_pwrstfizrail52' }, - ['-1826570729'] = { Name = 'cs5_3_pwrstfizrail53' }, - ['-2101142180'] = { Name = 'cs5_3_pwrstfizrail54' }, - ['-274598120'] = { Name = 'cs5_3_pwrstfizrail55' }, - ['-572435561'] = { Name = 'cs5_3_pwrstfizrail56' }, - ['22802121'] = { Name = 'cs5_3_rail' }, - ['-913535017'] = { Name = 'cs5_3_railshadprox01' }, - ['-750345397'] = { Name = 'cs5_3_railshadprox02' }, - ['-1541487364'] = { Name = 'cs5_3_railshadprox03' }, - ['-1111361470'] = { Name = 'cs5_3_railshadprox04' }, - ['510015853'] = { Name = 'cs5_3_railshadprox05' }, - ['-385004104'] = { Name = 'cs5_3_railshadprox12' }, - ['-1840340932'] = { Name = 'cs5_3_railshadprox13' }, - ['-1229565653'] = { Name = 'cs5_3_railter_01' }, - ['-387435122'] = { Name = 'cs5_3_railter_02' }, - ['1896799809'] = { Name = 'cs5_3_rddec003' }, - ['1138197459'] = { Name = 'cs5_3_rddec004' }, - ['193066984'] = { Name = 'cs5_3_sea_seabed00' }, - ['-1909785280'] = { Name = 'cs5_3_sea_seabed01' }, - ['2131386111'] = { Name = 'cs5_3_sea_seabed02' }, - ['1638343737'] = { Name = 'cs5_3_sea_seabed03' }, - ['1389856410'] = { Name = 'cs5_3_sea_seabed04' }, - ['-926694314'] = { Name = 'cs5_3_sea_seabed05_lod' }, - ['-1220915366'] = { Name = 'cs5_3_sea_seabed05' }, - ['-1727393030'] = { Name = 'cs5_3_sea_seabed06' }, - ['-1986235361'] = { Name = 'cs5_3_sea_seabed07' }, - ['2103925685'] = { Name = 'cs5_3_sea_seabed08' }, - ['-263896721'] = { Name = 'cs5_3_sea_seabed09' }, - ['-1983296516'] = { Name = 'cs5_3_sea_uw_decals00' }, - ['1906875327'] = { Name = 'cs5_3_sea_uw_decals01' }, - ['-2032220629'] = { Name = 'cs5_3_sea_uw_decals02' }, - ['-853421392'] = { Name = 'cs5_3_sea_uw_decals03' }, - ['-525272626'] = { Name = 'cs5_3_sea_uw_decals04' }, - ['-1464989239'] = { Name = 'cs5_3_sea_uw_decals05' }, - ['-1134972640'] = { Name = 'cs5_3_sea_uw_decals06' }, - ['87933671'] = { Name = 'cs5_3_sea_uw_decals07' }, - ['449768969'] = { Name = 'cs5_3_sea_uw_decals08' }, - ['58015578'] = { Name = 'cs5_3_sea_uw_decals09' }, - ['587202383'] = { Name = 'cs5_3_sea_uw_decals10' }, - ['1497623510'] = { Name = 'cs5_3_sea_uw_decals11' }, - ['912860705'] = { Name = 'cs5_3_sea_uw_decals13' }, - ['-1538554137'] = { Name = 'cs5_3_seawd02' }, - ['-1406036875'] = { Name = 'cs5_3_seaweed01' }, - ['-1152109890'] = { Name = 'cs5_3_seaweed02' }, - ['-1451946240'] = { Name = 'cs5_3_seaweed03' }, - ['-661066425'] = { Name = 'cs5_3_seaweed04' }, - ['-958248486'] = { Name = 'cs5_3_seaweed05' }, - ['-196238160'] = { Name = 'cs5_3_seaweed06' }, - ['1055122474'] = { Name = 'cs5_3_shadprox_plat01' }, - ['296520124'] = { Name = 'cs5_3_shadprox_plat02' }, - ['662409918'] = { Name = 'cs5_3_shltrsups01' }, - ['1421471034'] = { Name = 'cs5_3_shltrsups02' }, - ['-1637449586'] = { Name = 'cs5_3_shltrsups03' }, - ['-1174964928'] = { Name = 'cs5_3_smoke_dummy00' }, - ['-1783072761'] = { Name = 'cs5_3_smoke_dummy001' }, - ['404309106'] = { Name = 'cs5_3_ss_dirt2_' }, - ['423817294'] = { Name = 'cs5_3_ss_dirt2_001' }, - ['-1580236439'] = { Name = 'cs5_3_ss_dirt2_002' }, - ['-1885905671'] = { Name = 'cs5_3_ss_dirt2_003' }, - ['-966505838'] = { Name = 'cs5_3_ss_dirt2_004' }, - ['-734566856'] = { Name = 'cs5_3_ss_dirt2_005' }, - ['2094544763'] = { Name = 'cs5_3_ss_dirt2_006' }, - ['1247826572'] = { Name = 'cs5_3_ss_dirt2_007' }, - ['-1657079744'] = { Name = 'cs5_3_ss_dirt2_008' }, - ['-54933519'] = { Name = 'cs5_3_tank_white01_dec001' }, - ['1091817636'] = { Name = 'cs5_3_tank_white01_dec002' }, - ['1569098125'] = { Name = 'cs5_3_tank_white01_dec004' }, - ['-2143695117'] = { Name = 'cs5_3_tank_white01_dec006' }, - ['-1203749121'] = { Name = 'cs5_3_tank_white01_dec008' }, - ['-1180436975'] = { Name = 'cs5_3_tank_white01_details' }, - ['-242596876'] = { Name = 'cs5_3_tank_white01' }, - ['1916376129'] = { Name = 'cs5_3_tankblue_01' }, - ['1236312717'] = { Name = 'cs5_3_tankblueldr_01' }, - ['999949920'] = { Name = 'cs5_3_tankblueldr_02' }, - ['774826886'] = { Name = 'cs5_3_tankblueldr_03' }, - ['79122836'] = { Name = 'cs5_3_tnkbasedec004' }, - ['1535987016'] = { Name = 'cs5_3_tower_gant_' }, - ['-1547320675'] = { Name = 'cs5_3_tower_gant_01' }, - ['2074298068'] = { Name = 'cs5_3_tower_gant_017' }, - ['1700338240'] = { Name = 'cs5_3_tower_gant_018' }, - ['1460349225'] = { Name = 'cs5_3_tower_gant_02' }, - ['1212386202'] = { Name = 'cs5_3_tower_gant_03' }, - ['2041474671'] = { Name = 'cs5_3_tower_gant_04' }, - ['-355905373'] = { Name = 'cs5_3_tower_gant_05' }, - ['-1643497690'] = { Name = 'cs5_3_tower_gant_06' }, - ['-1893918388'] = { Name = 'cs5_3_tower_gant_07' }, - ['-1049362951'] = { Name = 'cs5_3_tower_gant_08' }, - ['919627952'] = { Name = 'cs5_3_tower_gant_09' }, - ['-651679771'] = { Name = 'cs5_3_tower_gant_10' }, - ['518206302'] = { Name = 'cs5_3_tower_gant_11' }, - ['329522400'] = { Name = 'cs5_3_tower_gant_12' }, - ['-341881645'] = { Name = 'cs5_3_tower_gant_13' }, - ['-1723258840'] = { Name = 'cs5_3_tower_gant_14' }, - ['-940079740'] = { Name = 'cs5_3_tower_gant_15' }, - ['-169385629'] = { Name = 'cs5_3_tower_gant_16' }, - ['-1819370317'] = { Name = 'cs5_3_tower_gant_19' }, - ['-865525966'] = { Name = 'cs5_3_turb01' }, - ['983661473'] = { Name = 'cs5_3_turb02' }, - ['-1494707142'] = { Name = 'cs5_3_turbine1_decal' }, - ['1789124711'] = { Name = 'cs5_3_turbine2_decal' }, - ['-1571821265'] = { Name = 'cs5_3_turbine3_decal' }, - ['-791695404'] = { Name = 'cs5_4_barrier_01' }, - ['-1011772008'] = { Name = 'cs5_4_barrier_02' }, - ['-1259112420'] = { Name = 'cs5_4_barrier_03' }, - ['943586995'] = { Name = 'cs5_4_barrier_04' }, - ['-53803058'] = { Name = 'cs5_4_barrier_06' }, - ['-300225942'] = { Name = 'cs5_4_barrier_07' }, - ['1122470808'] = { Name = 'cs5_4_cs5_04_barriersmr' }, - ['544300149'] = { Name = 'cs5_4_cs5_04_emissive_lod' }, - ['986334808'] = { Name = 'cs5_4_cs5_04_emissive' }, - ['-2140853502'] = { Name = 'cs5_4_cs5_04_kfrl' }, - ['-810191908'] = { Name = 'cs5_4_cs5_04_mazebillboard' }, - ['1827843696'] = { Name = 'cs5_4_cs5_04_mazebillboardg' }, - ['1448352205'] = { Name = 'cs5_4_decal_001' }, - ['1432888757'] = { Name = 'cs5_4_decal' }, - ['280619597'] = { Name = 'cs5_4_decals_02' }, - ['587493803'] = { Name = 'cs5_4_decals_02a' }, - ['332354369'] = { Name = 'cs5_4_decals_02b' }, - ['1404284587'] = { Name = 'cs5_4_land_016' }, - ['189484241'] = { Name = 'cs5_4_land_016a' }, - ['-1478556166'] = { Name = 'cs5_4_land_016c' }, - ['-1495191381'] = { Name = 'cs5_4_land_10' }, - ['-1213882579'] = { Name = 'cs5_4_land_10b' }, - ['-933379939'] = { Name = 'cs5_4_land_10c' }, - ['1641395128'] = { Name = 'cs5_4_land01b_004_rcks' }, - ['1187287611'] = { Name = 'cs5_4_land01b_03_rocks' }, - ['883422540'] = { Name = 'cs5_4_land01b_21_rocks' }, - ['1925546019'] = { Name = 'cs5_4_props_train_ipl01_slod' }, - ['-213703583'] = { Name = 'cs5_4_q_1_dtls' }, - ['245332890'] = { Name = 'cs5_4_q_1_o' }, - ['-430531550'] = { Name = 'cs5_4_q_1' }, - ['1735537544'] = { Name = 'cs5_4_q_2_detail' }, - ['-1140432402'] = { Name = 'cs5_4_q_2_ladder' }, - ['-101702545'] = { Name = 'cs5_4_q_2_o' }, - ['247044562'] = { Name = 'cs5_4_q_2_rail' }, - ['-8646928'] = { Name = 'cs5_4_q_2_rail2' }, - ['1844374460'] = { Name = 'cs5_4_q_2_railb' }, - ['1513669712'] = { Name = 'cs5_4_q_2_railc' }, - ['317846872'] = { Name = 'cs5_4_q_2' }, - ['1972552621'] = { Name = 'cs5_4_q_3a_detail' }, - ['327394033'] = { Name = 'cs5_4_q_3a_hd' }, - ['-1675859649'] = { Name = 'cs5_4_q_3a_rail' }, - ['1275004922'] = { Name = 'cs5_4_q_3a' }, - ['-381892866'] = { Name = 'cs5_4_q_3b_hd' }, - ['-1480376447'] = { Name = 'cs5_4_q_3b' }, - ['-217212506'] = { Name = 'cs5_4_q_3d_detail' }, - ['2136972748'] = { Name = 'cs5_4_q_3d_hd' }, - ['1155804579'] = { Name = 'cs5_4_q_3d_rail' }, - ['-2068317845'] = { Name = 'cs5_4_q_3d' }, - ['-757576483'] = { Name = 'cs5_4_q_3e_detail' }, - ['832545327'] = { Name = 'cs5_4_q_3e_hd' }, - ['-1762026002'] = { Name = 'cs5_4_q_3e' }, - ['-1169697367'] = { Name = 'cs5_4_q_3f_detail' }, - ['-105822788'] = { Name = 'cs5_4_q_3f_hd' }, - ['-553019612'] = { Name = 'cs5_4_q_3f_ladder1' }, - ['-1546841281'] = { Name = 'cs5_4_q_3f_rail' }, - ['426106918'] = { Name = 'cs5_4_q_3f_rail2' }, - ['190661653'] = { Name = 'cs5_4_q_3f_rail3' }, - ['-861107885'] = { Name = 'cs5_4_q_3f' }, - ['1572378862'] = { Name = 'cs5_4_q_3g_detail' }, - ['-886838156'] = { Name = 'cs5_4_q_3g_detailb' }, - ['-653672310'] = { Name = 'cs5_4_q_3g_hd' }, - ['-554029586'] = { Name = 'cs5_4_q_3g' }, - ['908925044'] = { Name = 'cs5_4_q_3h_detail' }, - ['-2068801657'] = { Name = 'cs5_4_q_3h_hd' }, - ['-1475559400'] = { Name = 'cs5_4_q_3h' }, - ['-1432349015'] = { Name = 'cs5_4_q_3i_hd' }, - ['-1169988475'] = { Name = 'cs5_4_q_3i' }, - ['-504742713'] = { Name = 'cs5_4_q_conv1' }, - ['-1011154839'] = { Name = 'cs5_4_q_conv2' }, - ['914122218'] = { Name = 'cs5_4_q_conv3' }, - ['673859910'] = { Name = 'cs5_4_q_conv4' }, - ['217191126'] = { Name = 'cs5_4_q_conv5' }, - ['2123986467'] = { Name = 'cs5_4_q_conv6' }, - ['-99980041'] = { Name = 'cs5_4_q_conv7' }, - ['-2016999310'] = { Name = 'cs5_4_q_conv8' }, - ['-783017077'] = { Name = 'cs5_4_q_conv9' }, - ['382083083'] = { Name = 'cs5_4_q_convb001' }, - ['-385071976'] = { Name = 'cs5_4_q_convb002' }, - ['1340972771'] = { Name = 'cs5_4_q_sign' }, - ['1405069249'] = { Name = 'cs5_4_qbolts' }, - ['-516750148'] = { Name = 'cs5_4_qry_g_002' }, - ['1499655170'] = { Name = 'cs5_4_qry_g_1' }, - ['-954644623'] = { Name = 'cs5_4_qry_g_3' }, - ['-656971027'] = { Name = 'cs5_4_qry_g_4' }, - ['-80052171'] = { Name = 'cs5_4_qryter_01_g' }, - ['-1923933932'] = { Name = 'cs5_4_qryter_01_g1' }, - ['21923687'] = { Name = 'cs5_4_qryter_01' }, - ['-1603578666'] = { Name = 'cs5_4_qryter_02_g' }, - ['839706851'] = { Name = 'cs5_4_qryter_02' }, - ['-2136452386'] = { Name = 'cs5_4_qryter_023' }, - ['-1910333167'] = { Name = 'cs5_4_qryter_03' }, - ['-786372489'] = { Name = 'cs5_4_qryter_04_g' }, - ['658765306'] = { Name = 'cs5_4_qryter_04_g1' }, - ['-2098689379'] = { Name = 'cs5_4_qryter_04' }, - ['-52887940'] = { Name = 'cs5_4_qryter_05' }, - ['326455669'] = { Name = 'cs5_4_qryter_06_g' }, - ['-1176001550'] = { Name = 'cs5_4_qryter_06_g1' }, - ['-543964174'] = { Name = 'cs5_4_qryter_06' }, - ['1195053891'] = { Name = 'cs5_4_qryter_07' }, - ['-1802790373'] = { Name = 'cs5_4_qryter_08_g' }, - ['2013066438'] = { Name = 'cs5_4_qryter_08' }, - ['1058953285'] = { Name = 'cs5_4_qryter_09_g' }, - ['-1315215358'] = { Name = 'cs5_4_qryter_09' }, - ['-1970243353'] = { Name = 'cs5_4_qryter_10_g' }, - ['755397818'] = { Name = 'cs5_4_qryter_10' }, - ['-529986184'] = { Name = 'cs5_4_qryter_11_g' }, - ['662206'] = { Name = 'cs5_4_qryter_11' }, - ['-528934343'] = { Name = 'cs5_4_qryter_12_g' }, - ['830340517'] = { Name = 'cs5_4_qryter_12' }, - ['-1644521326'] = { Name = 'cs5_4_qryter_13_g' }, - ['1404125707'] = { Name = 'cs5_4_qryter_13' }, - ['-836007952'] = { Name = 'cs5_4_qryter_14_g' }, - ['100214428'] = { Name = 'cs5_4_qryter_14' }, - ['1073050204'] = { Name = 'cs5_4_qryter_15_g' }, - ['944999248'] = { Name = 'cs5_4_qryter_15' }, - ['1077183403'] = { Name = 'cs5_4_qryter_16_g' }, - ['1788178387'] = { Name = 'cs5_4_qryter_16' }, - ['-1630851009'] = { Name = 'cs5_4_qryter_17_g' }, - ['1283367630'] = { Name = 'cs5_4_qryter_17_g1' }, - ['-1315668520'] = { Name = 'cs5_4_qryter_17' }, - ['1682651574'] = { Name = 'cs5_4_qryter_18_g' }, - ['-1697427370'] = { Name = 'cs5_4_qryter_18' }, - ['2099061183'] = { Name = 'cs5_4_qryter_19_g' }, - ['-1508972855'] = { Name = 'cs5_4_qryter_19' }, - ['1514739793'] = { Name = 'cs5_4_qryter_20_g' }, - ['-1227552967'] = { Name = 'cs5_4_qryter_20' }, - ['-384056647'] = { Name = 'cs5_4_qryter_21_g' }, - ['145009367'] = { Name = 'cs5_4_qryter_21' }, - ['-241895740'] = { Name = 'cs5_4_qryter_22_g' }, - ['441601586'] = { Name = 'cs5_4_qryter_22' }, - ['-339509595'] = { Name = 'cs5_4_qryter4_wire' }, - ['-1306245924'] = { Name = 'cs5_4_qrytrk_01' }, - ['-1612996533'] = { Name = 'cs5_4_qrytrk_02' }, - ['-1768321593'] = { Name = 'cs5_4_qrytrk_03' }, - ['688632784'] = { Name = 'cs5_4_qrytrk_04_piece' }, - ['-2047087484'] = { Name = 'cs5_4_qrytrk_04' }, - ['1967016713'] = { Name = 'cs5_4_qrytrk_05' }, - ['-1552278565'] = { Name = 'cs5_4_qrytrk_06_subd' }, - ['1535514521'] = { Name = 'cs5_4_qrytrk_06' }, - ['1220506124'] = { Name = 'cs5_4_qrytrk_07' }, - ['-952078488'] = { Name = 'cs5_4_qrytrk_08' }, - ['-722269491'] = { Name = 'cs5_4_qrytrk_09' }, - ['1116627610'] = { Name = 'cs5_4_qrytrk_10' }, - ['877905445'] = { Name = 'cs5_4_qrytrk_11' }, - ['1885027891'] = { Name = 'cs5_4_qrytrk_12' }, - ['1612029352'] = { Name = 'cs5_4_qrytrk_13' }, - ['-1982336724'] = { Name = 'cs5_4_qrytrk_14' }, - ['2074825939'] = { Name = 'cs5_4_qrytrk_15' }, - ['-1275574936'] = { Name = 'cs5_4_qrytrk_16' }, - ['-311117728'] = { Name = 'cs5_4_qrytrk_17' }, - ['-540861187'] = { Name = 'cs5_4_qrytrk_18' }, - ['183661403'] = { Name = 'cs5_4_qrytrk_19' }, - ['179044594'] = { Name = 'cs5_4_qrytrk_20' }, - ['549596446'] = { Name = 'cs5_4_qrytrk_21' }, - ['-371310757'] = { Name = 'cs5_4_qrytrk_22' }, - ['940727230'] = { Name = 'cs5_4_qrytrk_23' }, - ['1939067588'] = { Name = 'cs5_4_qrytrk_24' }, - ['36828888'] = { Name = 'cs5_4_qrytrk_25_subd' }, - ['-1980891272'] = { Name = 'cs5_4_qrytrk_25' }, - ['250972553'] = { Name = 'cs5_4_qrytrk_26' }, - ['624735767'] = { Name = 'cs5_4_qrytrk_27' }, - ['-1063523113'] = { Name = 'cs5_4_qrytrk_28' }, - ['310453092'] = { Name = 'cs5_4_qyell_rail01' }, - ['144838566'] = { Name = 'cs5_4_qyell_rail02' }, - ['-1108936143'] = { Name = 'cs5_4_qyell_rail03' }, - ['-1809406287'] = { Name = 'cs5_4_qyell_rail04' }, - ['267328941'] = { Name = 'cs5_4_railsegment' }, - ['-1116131777'] = { Name = 'cs5_4_rockslidewire' }, - ['1114274601'] = { Name = 'cs5_lod_02_slod3' }, - ['549273264'] = { Name = 'cs5_lod_1_4_slod3' }, - ['426638029'] = { Name = 'cs5_lod_rd_slod3' }, - ['-1156763232'] = { Name = 'cs5_rd_props_avi_ballb' }, - ['852854733'] = { Name = 'cs5_rd_props_ch3_01_spline_wire028' }, - ['1692593127'] = { Name = 'cs5_rd_props_ch3_01_spline_wire029' }, - ['2088606820'] = { Name = 'cs5_rd_props_ch3_01_spline_wire030' }, - ['-2034257688'] = { Name = 'cs5_rd_props_ch3_01_spline_wire031' }, - ['-1858845231'] = { Name = 'cs5_rd_props_ch3_01_spline_wire032' }, - ['-1418495409'] = { Name = 'cs5_rd_props_ch3_01_spline_wire033' }, - ['1065001567'] = { Name = 'cs5_rd_props_ch3_01_spline_wire034' }, - ['299353882'] = { Name = 'cs5_rd_props_ch3_01_spline_wire035' }, - ['-1274049459'] = { Name = 'cs5_rd_props_ch3_01_substn_swire19' }, - ['961003153'] = { Name = 'cs5_rd_props_ch3substn_w019' }, - ['-735513159'] = { Name = 'cs5_rd_props_ch3substn_w021' }, - ['-2064130550'] = { Name = 'cs5_rd_props_cs5_rd_aviation_wi_008' }, - ['859880093'] = { Name = 'cs5_rd_props_cs5_rd_aviation_wi_009' }, - ['-1394102507'] = { Name = 'cs5_rd_props_cs5_rd_aviation_wi_010' }, - ['754593596'] = { Name = 'cs5_rd_props_cs5_rd_aviation_wi_011' }, - ['1469361571'] = { Name = 'cs5_rd_props_cs5_wire_115' }, - ['-1445539286'] = { Name = 'cs5_rd_props_cs5_wire_117' }, - ['1932027086'] = { Name = 'cs5_rd_props_cs5_wire_119' }, - ['1212415161'] = { Name = 'cs5_rd_props_cs5_wire_217' }, - ['-1400908854'] = { Name = 'cs5_rd_props_cs5_wire_elec_119' }, - ['280802612'] = { Name = 'cs5_rd_props_cs5_wire_spline_117' }, - ['-442671370'] = { Name = 'cs5_rd_props_cs5_wire_spline_118' }, - ['-197133253'] = { Name = 'cs5_rd_props_cs5_wire_spline_119' }, - ['-1456380749'] = { Name = 'cs5_rd_props_cs5_wire_spline_120' }, - ['2051114708'] = { Name = 'cs5_rd_props_cs5_wire_spline_121' }, - ['1038168747'] = { Name = 'cs5_rd_props_cs5_wire118' }, - ['-84234138'] = { Name = 'cs5_rd_props_cs5_wire32d001' }, - ['32170822'] = { Name = 'cs5_rd_props_cs5_wire32e001' }, - ['1785980426'] = { Name = 'cs5_rd_props_new_w101' }, - ['1503609953'] = { Name = 'cs5_rd_props_new_w102' }, - ['-1341198021'] = { Name = 'cs5_rd_props_new_w106' }, - ['-1916949351'] = { Name = 'cs5_rd_props_new_w107' }, - ['174171619'] = { Name = 'cs5_rd_props_new_w108' }, - ['-134807282'] = { Name = 'cs5_rd_props_new_w109' }, - ['-1438622398'] = { Name = 'cs5_rd_props_new_w110' }, - ['-179735601'] = { Name = 'cs5_rd_props_new_w111' }, - ['187441280'] = { Name = 'cs5_rd_props_new_w128' }, - ['1398026443'] = { Name = 'cs5_rd_props_new_w129' }, - ['1085836440'] = { Name = 'cs5_rd_props_new_w130' }, - ['1354639333'] = { Name = 'cs5_rd_props_pr_wire032' }, - ['264716489'] = { Name = 'cs5_rd_props_prison_sp028' }, - ['1189392131'] = { Name = 'cs5_rd_props_prison_sp029' }, - ['-24882206'] = { Name = 'cs5_rd_props_prison_spline020' }, - ['-2119837109'] = { Name = 'cs5_rd_props_prison_spline028' }, - ['-1812234506'] = { Name = 'cs5_rd_props_prison_spline029' }, - ['-1545562436'] = { Name = 'cs5_rd_props_prison_spline031' }, - ['-937926869'] = { Name = 'cs5_rd_props_prison_spline033' }, - ['1007437585'] = { Name = 'cs5_rd_props_prison_spline034' }, - ['191391178'] = { Name = 'cs5_rd_props_prison_spline039' }, - ['557814424'] = { Name = 'cs5_rd_props_prison_spline042' }, - ['-368073671'] = { Name = 'cs5_rd_props_prison_spline045' }, - ['1480163471'] = { Name = 'cs5_rd_props_prison_spline047' }, - ['1169251195'] = { Name = 'cs5_rd_props_prison_spline048' }, - ['870004687'] = { Name = 'cs5_rd_props_prison_spline049' }, - ['1847995784'] = { Name = 'cs5_rd_props_prison_spline050' }, - ['1542687011'] = { Name = 'cs5_rd_props_prison_spline051' }, - ['1237804231'] = { Name = 'cs5_rd_props_prison_spline052' }, - ['932692072'] = { Name = 'cs5_rd_props_prison_spline053' }, - ['319944829'] = { Name = 'cs5_rd_props_prison_spline060' }, - ['-448324376'] = { Name = 'cs5_rd_props_prison_spline061' }, - ['1211232657'] = { Name = 'cs5_rd_props_prison_spline099' }, - ['235778034'] = { Name = 'cs5_rd_props_prison_w099' }, - ['167459098'] = { Name = 'cs5_rd_props_prison_w330' }, - ['-853128648'] = { Name = 'cs5_rd_props_prison_wire329' }, - ['-1208494783'] = { Name = 'cs5_rd_props_qspline00' }, - ['1872413832'] = { Name = 'cs5_rd_props_qspline03' }, - ['366315353'] = { Name = 'cs5_rd_props_qu_wire8' }, - ['1886422555'] = { Name = 'cs5_rd_props_qua_wire_07b' }, - ['818945631'] = { Name = 'cs5_rd_props_quarry_wire_009' }, - ['-1301832212'] = { Name = 'cs5_rd_props_quarry_wire_010' }, - ['-1841044626'] = { Name = 'cs5_rd_props_quarry_wire_spline009' }, - ['1106453482'] = { Name = 'cs5_rd_props_quarry_wire_spline010' }, - ['1152971478'] = { Name = 'cs5_rd_props_quarry_wire009' }, - ['678560102'] = { Name = 'cs5_rd_props_spline00' }, - ['983868875'] = { Name = 'cs5_rd_props_spline01' }, - ['1407113279'] = { Name = 'cs5_rd_props_spline02' }, - ['1711832210'] = { Name = 'cs5_rd_props_spline03' }, - ['1881379016'] = { Name = 'cs5_rd_props_spline04' }, - ['-1650824267'] = { Name = 'cs5_rd_props_spline06' }, - ['-942292945'] = { Name = 'cs5_rd_props_spline09' }, - ['-1112886887'] = { Name = 'cs5_rd_props_spline10' }, - ['1047409442'] = { Name = 'cs5_rd_props_spline11' }, - ['1325454407'] = { Name = 'cs5_rd_props_spline12' }, - ['-1539408191'] = { Name = 'cs5_rd_props_spline17' }, - ['1040723774'] = { Name = 'cs5_rd_props_spline21' }, - ['1733362127'] = { Name = 'cs5_rd_props_spline25' }, - ['-2053554593'] = { Name = 'cs5_rd_props_spline26' }, - ['-1130910713'] = { Name = 'cs5_rd_props_spline27' }, - ['-1906978944'] = { Name = 'cs5_rd_props_spline28' }, - ['1076541675'] = { Name = 'cs5_rd_props_spline30' }, - ['2113877223'] = { Name = 'cs5_rd_props_spline33' }, - ['462811074'] = { Name = 'cs5_rd_props_spline35' }, - ['-1444967337'] = { Name = 'cs5_rd_props_spline36' }, - ['-802683150'] = { Name = 'cs5_rd_props_spln_leg00' }, - ['-574774755'] = { Name = 'cs5_rd_props_spln_leg01' }, - ['1000168923'] = { Name = 'cs5_rd_props_spln_leg02' }, - ['1231550832'] = { Name = 'cs5_rd_props_spln_leg03' }, - ['984112141'] = { Name = 'cs5_rd_props_spln_leg04' }, - ['1223882914'] = { Name = 'cs5_rd_props_spln_leg05' }, - ['-2110592247'] = { Name = 'cs5_rd_props_spln_leg06' }, - ['623653141'] = { Name = 'cs5_rd_props_spln_leg07' }, - ['1584735118'] = { Name = 'cs5_rd_props_spln_leg08' }, - ['1957318648'] = { Name = 'cs5_rd_props_spln_leg09' }, - ['-1701046125'] = { Name = 'cs5_rd_props_spln_leg10' }, - ['-1403405298'] = { Name = 'cs5_rd_props_spln_leg11' }, - ['-1338522678'] = { Name = 'cs5_rd_props_spln_leg12' }, - ['-1039243401'] = { Name = 'cs5_rd_props_spln_leg13' }, - ['-745174395'] = { Name = 'cs5_rd_props_spln_leg14' }, - ['-446747112'] = { Name = 'cs5_rd_props_spln_leg15' }, - ['140604440'] = { Name = 'cs5_rd_props_spln_leg16' }, - ['749026463'] = { Name = 'cs5_rd_props_spln_leg18' }, - ['-161820661'] = { Name = 'cs5_rd_props_spln_leg19' }, - ['1044406525'] = { Name = 'cs5_rd_props_spln_leg20' }, - ['827377438'] = { Name = 'cs5_rd_props_spln_leg21' }, - ['589212346'] = { Name = 'cs5_rd_props_spln_leg22' }, - ['350490181'] = { Name = 'cs5_rd_props_spln_leg23' }, - ['-2045251437'] = { Name = 'cs5_rd_props_spln_leg24' }, - ['2001883912'] = { Name = 'cs5_rd_props_spln_leg25' }, - ['-1091345819'] = { Name = 'cs5_rd_props_spln_leg28' }, - ['-1317812378'] = { Name = 'cs5_rd_props_spln_leg29' }, - ['-1493518404'] = { Name = 'cs5_rd_props_spln_leg30' }, - ['-1736664384'] = { Name = 'cs5_rd_props_spln_leg31' }, - ['-1525402645'] = { Name = 'cs5_rd_props_spln_leg32' }, - ['-1764649114'] = { Name = 'cs5_rd_props_spln_leg33' }, - ['-1082660686'] = { Name = 'cs5_rd_props_spln_leg34' }, - ['-1321317313'] = { Name = 'cs5_rd_props_spln_leg35' }, - ['1273364880'] = { Name = 'cs5_rd_props_spln_leg37' }, - ['-1975189939'] = { Name = 'cs5_rd_props_spln_leg39' }, - ['105309511'] = { Name = 'cs5_rd_props_spln_leg40' }, - ['-1082665046'] = { Name = 'cs5_rd_props_spln_leg41' }, - ['-69628025'] = { Name = 'cs5_rd_props_splnb_00' }, - ['814184674'] = { Name = 'cs5_rd_props_splnb_01' }, - ['508908670'] = { Name = 'cs5_rd_props_splnb_02' }, - ['1157505487'] = { Name = 'cs5_rd_props_splnb_03' }, - ['-1300235059'] = { Name = 'cs5_rd_props_splnb_04' }, - ['1734436501'] = { Name = 'cs5_rd_props_splnb_05' }, - ['1427816968'] = { Name = 'cs5_rd_props_splnb_06' }, - ['-615854498'] = { Name = 'cs5_rd_props_splnb_07' }, - ['-912708869'] = { Name = 'cs5_rd_props_splnb_08' }, - ['859206652'] = { Name = 'cs5_rd_props_splnb_11' }, - ['83203963'] = { Name = 'cs5_rd_props_splnb_12' }, - ['1438923031'] = { Name = 'cs5_rd_props_splnb_13' }, - ['679108228'] = { Name = 'cs5_rd_props_splnb_14' }, - ['-378609558'] = { Name = 'cs5_rd_props_splnb_15' }, - ['-1137703443'] = { Name = 'cs5_rd_props_splnb_16' }, - ['283684705'] = { Name = 'cs5_rd_props_splnb_17' }, - ['-547435446'] = { Name = 'cs5_rd_props_splnb_18' }, - ['-1524672560'] = { Name = 'cs5_rd_props_splnb_19' }, - ['-1941102500'] = { Name = 'cs5_rd_props_splnb_20' }, - ['1110281246'] = { Name = 'cs5_rd_props_splnb_21' }, - ['-1337399089'] = { Name = 'cs5_rd_props_splnb_23' }, - ['1106742314'] = { Name = 'cs5_rd_props_splnb_24' }, - ['148437734'] = { Name = 'cs5_rd_props_splnc_09' }, - ['1685008661'] = { Name = 'cs5_rd_props_splnc_10' }, - ['1398935291'] = { Name = 'cs5_rd_props_splnc_11' }, - ['-79995253'] = { Name = 'cs5_rd_props_splnc_17' }, - ['-1896708613'] = { Name = 'cs5_rd_props_splnc_18' }, - ['-39989276'] = { Name = 'cs5_rd_props_splnc_21' }, - ['6182261'] = { Name = 'cs5_rd_props_splnc_23' }, - ['-320229748'] = { Name = 'cs5_rd_props_splnc_25' }, - ['-1021093120'] = { Name = 'cs5_rd_props_splnc_27' }, - ['-710803459'] = { Name = 'cs5_rd_props_splnc_28' }, - ['-1519899143'] = { Name = 'cs5_rd_props_wire_919' }, - ['-699859141'] = { Name = 'cs5_roads_01' }, - ['-1562437528'] = { Name = 'cs5_roads_02' }, - ['-185189227'] = { Name = 'cs5_roads_03' }, - ['-1432404049'] = { Name = 'cs5_roads_04_lod' }, - ['-1025222542'] = { Name = 'cs5_roads_04' }, - ['292746638'] = { Name = 'cs5_roads_05' }, - ['-502393147'] = { Name = 'cs5_roads_06' }, - ['399573582'] = { Name = 'cs5_roads_07' }, - ['-926685315'] = { Name = 'cs5_roads_10' }, - ['-1737750834'] = { Name = 'cs5_roads_11' }, - ['-1508466141'] = { Name = 'cs5_roads_12' }, - ['1613496432'] = { Name = 'cs5_roads_armco_002' }, - ['1904550642'] = { Name = 'cs5_roads_armco_003' }, - ['1377639825'] = { Name = 'cs5_roads_armco_01' }, - ['-1726910218'] = { Name = 'cs5_roads_armco_01a' }, - ['-1141903051'] = { Name = 'cs5_roads_armco_02' }, - ['-950580119'] = { Name = 'cs5_roads_armco_02a' }, - ['-1375447714'] = { Name = 'cs5_roads_armco_03' }, - ['-78925015'] = { Name = 'cs5_roads_armco_03a' }, - ['412625544'] = { Name = 'cs5_roads_armco_04' }, - ['-1491823916'] = { Name = 'cs5_roads_armco_04a' }, - ['174558759'] = { Name = 'cs5_roads_armco_05' }, - ['-1256378975'] = { Name = 'cs5_roads_armco_05a' }, - ['2121187397'] = { Name = 'cs5_roads_armco_05b' }, - ['1965450147'] = { Name = 'cs5_roads_armco_06' }, - ['1986244391'] = { Name = 'cs5_roads_armco_06a' }, - ['1725220608'] = { Name = 'cs5_roads_armco_07' }, - ['-774464254'] = { Name = 'cs5_roads_armco_08' }, - ['184054038'] = { Name = 'cs5_roads_armco_08a' }, - ['-47065719'] = { Name = 'cs5_roads_armco_08b' }, - ['1008234884'] = { Name = 'cs5_roads_armco_09' }, - ['-957978669'] = { Name = 'cs5_roads_armco_09a' }, - ['-1202435409'] = { Name = 'cs5_roads_armco_09b' }, - ['2035771001'] = { Name = 'cs5_roads_armco_10' }, - ['1952213501'] = { Name = 'cs5_roads_armco_10a' }, - ['1276185581'] = { Name = 'cs5_roads_armco_11' }, - ['-713085543'] = { Name = 'cs5_roads_armco_11a' }, - ['-1556526834'] = { Name = 'cs5_roads_armco_11b' }, - ['1554754850'] = { Name = 'cs5_roads_armco_12' }, - ['1296244247'] = { Name = 'cs5_roads_armco_12a' }, - ['2013361043'] = { Name = 'cs5_roads_armco_12b' }, - ['794579588'] = { Name = 'cs5_roads_armco_13' }, - ['-989950244'] = { Name = 'cs5_roads_armco_13a' }, - ['-762304001'] = { Name = 'cs5_roads_armco_13b' }, - ['-1347628245'] = { Name = 'cs5_roads_armco_14' }, - ['766939018'] = { Name = 'cs5_roads_armco_14a' }, - ['703857121'] = { Name = 'cs5_roads_bdg_sgn_01' }, - ['-1377276448'] = { Name = 'cs5_roads_bdg_sgn_1lod' }, - ['501334526'] = { Name = 'cs5_roads_bill01' }, - ['-812338089'] = { Name = 'cs5_roads_billbrd_001' }, - ['591027105'] = { Name = 'cs5_roads_billbrd_002' }, - ['-1221196922'] = { Name = 'cs5_roads_billbrd_006' }, - ['1650743780'] = { Name = 'cs5_roads_billbrd_007' }, - ['1926363839'] = { Name = 'cs5_roads_billbrd_008' }, - ['1886219778'] = { Name = 'cs5_roads_billbrdgraffiti' }, - ['-1333647082'] = { Name = 'cs5_roads_bridge_01_raila' }, - ['-1631320678'] = { Name = 'cs5_roads_bridge_01_railb' }, - ['186965594'] = { Name = 'cs5_roads_bridge_01_railc' }, - ['-110675233'] = { Name = 'cs5_roads_bridge_01_raild' }, - ['-1651478462'] = { Name = 'cs5_roads_bridge_01' }, - ['-51685123'] = { Name = 'cs5_roads_bridge_02_raila' }, - ['-301188289'] = { Name = 'cs5_roads_bridge_02_railb' }, - ['1890817673'] = { Name = 'cs5_roads_bridge_02' }, - ['-1099619123'] = { Name = 'cs5_roads_bridge01_strsb_lod' }, - ['-1279531646'] = { Name = 'cs5_roads_chev_01' }, - ['1580563284'] = { Name = 'cs5_roads_cs5_roadbrg_01' }, - ['-520026569'] = { Name = 'cs5_roads_decal002' }, - ['-1467563293'] = { Name = 'cs5_roads_drtj_01' }, - ['-281948104'] = { Name = 'cs5_roads_drtj_02' }, - ['-505596529'] = { Name = 'cs5_roads_drtj_03' }, - ['218926065'] = { Name = 'cs5_roads_drtj_04' }, - ['-21041326'] = { Name = 'cs5_roads_drtj_05' }, - ['1213039222'] = { Name = 'cs5_roads_drtj_06' }, - ['979035793'] = { Name = 'cs5_roads_drtj_07' }, - ['-1640297804'] = { Name = 'cs5_roads_fwy_01' }, - ['-1396365368'] = { Name = 'cs5_roads_fwy_02' }, - ['-681870092'] = { Name = 'cs5_roads_fwy_03' }, - ['-451798943'] = { Name = 'cs5_roads_fwy_04' }, - ['329479543'] = { Name = 'cs5_roads_fwy_05' }, - ['566694338'] = { Name = 'cs5_roads_fwy_06' }, - ['-1669440631'] = { Name = 'cs5_roads_fwy_sgn_01' }, - ['-829210710'] = { Name = 'cs5_roads_fwy_sgn_02' }, - ['-1856123631'] = { Name = 'cs5_roads_p_01' }, - ['1823474614'] = { Name = 'cs5_roads_p_03' }, - ['-361529541'] = { Name = 'cs5_roads_p_05' }, - ['260393314'] = { Name = 'cs5_roads_p_06' }, - ['-769683117'] = { Name = 'cs5_roads_rail_01' }, - ['-2137395643'] = { Name = 'cs5_roads_rail_02' }, - ['1819067883'] = { Name = 'cs5_roads_rail_03' }, - ['-1655789650'] = { Name = 'cs5_roads_rail_04' }, - ['899831895'] = { Name = 'cs5_roads_rail_06' }, - ['1669968961'] = { Name = 'cs5_roads_rail_07' }, - ['1387729564'] = { Name = 'cs5_roads_rail_08' }, - ['1898008432'] = { Name = 'cs5_roads_rail_09' }, - ['-506046176'] = { Name = 'cs5_roads_rail_bridge01_rl' }, - ['-1157908253'] = { Name = 'cs5_roads_rail_bridge01_strsa' }, - ['1639646819'] = { Name = 'cs5_roads_rail_bridge01_strsb' }, - ['-448773208'] = { Name = 'cs5_roads_rail_bridge01' }, - ['-835627316'] = { Name = 'cs5_roads_railsegment' }, - ['-651918872'] = { Name = 'cs5_roads_sign_01' }, - ['-294933386'] = { Name = 'cs5_roads_sign_02' }, - ['-55949069'] = { Name = 'cs5_roads_sign_03' }, - ['225766024'] = { Name = 'cs5_roads_sign_04' }, - ['607524862'] = { Name = 'cs5_roads_sign_05' }, - ['1430878760'] = { Name = 'cs5_roads_sign_06' }, - ['1813161914'] = { Name = 'cs5_roads_sign_07' }, - ['2025210113'] = { Name = 'cs5_roads_sign_08' }, - ['-1895535203'] = { Name = 'cs5_roads_sign_09' }, - ['1357803654'] = { Name = 'cs5_roads_sign_10' }, - ['1722653700'] = { Name = 'cs5_roads_sign_11' }, - ['1251894258'] = { Name = 'cs5_roads_sign_12' }, - ['1605340692'] = { Name = 'cs5_roads_sign_13' }, - ['1828858041'] = { Name = 'cs5_roads_sign_14' }, - ['37339589'] = { Name = 'cs5_roads_sign_16b' }, - ['-1006176479'] = { Name = 'cs5_roads_sng_bdgdcl_002' }, - ['1928606944'] = { Name = 'cs5_roads_sng_bdgdcl_01' }, - ['-1750757272'] = { Name = 'cs6_01_04d_glue' }, - ['-135951076'] = { Name = 'cs6_01_247_market_bar' }, - ['1437145256'] = { Name = 'cs6_01_247_market_det' }, - ['1207875184'] = { Name = 'cs6_01_247_market_det2' }, - ['876878136'] = { Name = 'cs6_01_247_market_emi_lod' }, - ['2121923632'] = { Name = 'cs6_01_247_market_emi' }, - ['864380569'] = { Name = 'cs6_01_247_market_ovr' }, - ['-343081070'] = { Name = 'cs6_01_247_market_railing' }, - ['-17142059'] = { Name = 'cs6_01_247_market_stair' }, - ['-511505627'] = { Name = 'cs6_01_247_market' }, - ['-723612599'] = { Name = 'cs6_01_deci1' }, - ['782090182'] = { Name = 'cs6_01_deci2' }, - ['1211855617'] = { Name = 'cs6_01_deci4' }, - ['1611373159'] = { Name = 'cs6_01_dt_1' }, - ['-177934694'] = { Name = 'cs6_01_gas_billbd003' }, - ['-956460596'] = { Name = 'cs6_01_gas_billbd004' }, - ['452303368'] = { Name = 'cs6_01_gas_bldng_decal' }, - ['338661660'] = { Name = 'cs6_01_gas_bldng_doors001' }, - ['-1190160187'] = { Name = 'cs6_01_gas_bldng004' }, - ['1091882474'] = { Name = 'cs6_01_gas_bldng005_emi_lod' }, - ['679295275'] = { Name = 'cs6_01_gas_bldng005_emi' }, - ['121779497'] = { Name = 'cs6_01_gas_bldng005' }, - ['362074574'] = { Name = 'cs6_01_gas_bldng006' }, - ['-470978944'] = { Name = 'cs6_01_gas_bldng007' }, - ['-2065623944'] = { Name = 'cs6_01_gas_fence004' }, - ['-1617278486'] = { Name = 'cs6_01_gas_fence005' }, - ['-64152297'] = { Name = 'cs6_01_gas_grnd_d003' }, - ['860097340'] = { Name = 'cs6_01_gas_grnd_d004' }, - ['1795704951'] = { Name = 'cs6_01_gas_grnddecal' }, - ['1866796138'] = { Name = 'cs6_01_gas_rocks004' }, - ['2102569093'] = { Name = 'cs6_01_gas_rocks005' }, - ['1297205376'] = { Name = 'cs6_01_gas_rocks006' }, - ['-1222644766'] = { Name = 'cs6_01_gas_rwire002' }, - ['36424886'] = { Name = 'cs6_01_gas013' }, - ['275147051'] = { Name = 'cs6_01_gas014' }, - ['-1855198432'] = { Name = 'cs6_01_gas015' }, - ['873312357'] = { Name = 'cs6_01_gas017' }, - ['1334448575'] = { Name = 'cs6_01_ike_branding' }, - ['-679174660'] = { Name = 'cs6_01_land01_decal' }, - ['-293660412'] = { Name = 'cs6_01_land01' }, - ['-1553759538'] = { Name = 'cs6_01_land02' }, - ['-744892437'] = { Name = 'cs6_01_liq_decal' }, - ['-327789727'] = { Name = 'cs6_01_liq_detail' }, - ['-527914076'] = { Name = 'cs6_01_liq_main' }, - ['468860463'] = { Name = 'cs6_01_mot_grnd' }, - ['1603784981'] = { Name = 'cs6_01_mot_tube01' }, - ['1372927376'] = { Name = 'cs6_01_mot_tube02' }, - ['-1676031468'] = { Name = 'cs6_01_mot_tube03' }, - ['-1906823535'] = { Name = 'cs6_01_mot_tube04' }, - ['-1098469247'] = { Name = 'cs6_01_motel_d2' }, - ['-1517781477'] = { Name = 'cs6_01_motel_off_d' }, - ['-603050948'] = { Name = 'cs6_01_motel_off_dtl' }, - ['1188272114'] = { Name = 'cs6_01_motel_off_e_lod' }, - ['1942067854'] = { Name = 'cs6_01_motel_off_e' }, - ['513039472'] = { Name = 'cs6_01_motel_off' }, - ['-1603703180'] = { Name = 'cs6_01_motel_rm_emi_lod' }, - ['331361638'] = { Name = 'cs6_01_motel_rm1_d' }, - ['2085106188'] = { Name = 'cs6_01_motel_rm1_dtl' }, - ['2062850003'] = { Name = 'cs6_01_motel_rm1_emi_lod' }, - ['96889767'] = { Name = 'cs6_01_motel_rm1_emi' }, - ['520006906'] = { Name = 'cs6_01_motel_rm1' }, - ['980504106'] = { Name = 'cs6_01_motel_rm2_d' }, - ['-1002886127'] = { Name = 'cs6_01_motel_rm2_dtl' }, - ['-1659383872'] = { Name = 'cs6_01_motel_rm2_emi' }, - ['238357351'] = { Name = 'cs6_01_motel_rm2' }, - ['-1142974064'] = { Name = 'cs6_01_motel_rm3_d' }, - ['865584051'] = { Name = 'cs6_01_motel_rm3_dtl' }, - ['1233502575'] = { Name = 'cs6_01_motel_rm3_emi_lod' }, - ['-507201671'] = { Name = 'cs6_01_motel_rm3_emi' }, - ['-1029671901'] = { Name = 'cs6_01_motel_rm3' }, - ['2032934637'] = { Name = 'cs6_01_motel_rm4_d' }, - ['-829528696'] = { Name = 'cs6_01_motel_rm4_dtl' }, - ['-1319251554'] = { Name = 'cs6_01_motel_rm4' }, - ['1451908637'] = { Name = 'cs6_01_motel_rm5_d' }, - ['-304795478'] = { Name = 'cs6_01_motel_rm5_dtl' }, - ['-416072348'] = { Name = 'cs6_01_motel_rm5' }, - ['1969055136'] = { Name = 'cs6_01_motel_sign' }, - ['1426642046'] = { Name = 'cs6_01_motel_wall01' }, - ['116536653'] = { Name = 'cs6_01_motelpslabs' }, - ['593693015'] = { Name = 'cs6_01_paves1' }, - ['-1943471680'] = { Name = 'cs6_01_paves1dec' }, - ['920990711'] = { Name = 'cs6_01_road1' }, - ['-733946190'] = { Name = 'cs6_01_tmp_trailr01_emi_lod' }, - ['1559943929'] = { Name = 'cs6_01_tmp_trailr01_emi' }, - ['1180935684'] = { Name = 'cs6_01_tmp_trailr01' }, - ['927204263'] = { Name = 'cs6_01_tmp_trailr02_emi_lod' }, - ['-1598708797'] = { Name = 'cs6_01_tmp_trailr02_emi001' }, - ['582180508'] = { Name = 'cs6_01_tmp_trailr02' }, - ['-2063444593'] = { Name = 'cs6_01_tmp_trailr03_emi_lod' }, - ['-1538386958'] = { Name = 'cs6_01_tmp_trailr03_emi' }, - ['845020657'] = { Name = 'cs6_01_tmp_trailr03' }, - ['-1755948692'] = { Name = 'cs6_01_tmp_trailr04_emi_lod' }, - ['-754590724'] = { Name = 'cs6_01_tmp_trailr04_emi' }, - ['-1221654635'] = { Name = 'cs6_01_tmp_trailr04' }, - ['-1986007389'] = { Name = 'cs6_01_tmp_trailr05_emi_lod' }, - ['-1935372608'] = { Name = 'cs6_01_tmp_trailr05_emi' }, - ['-931059143'] = { Name = 'cs6_01_tmp_trailr05' }, - ['-1896248098'] = { Name = 'cs6_01_weldshed008_emi_lod' }, - ['-292461221'] = { Name = 'cs6_01_weldshed008_emi' }, - ['1778518740'] = { Name = 'cs6_01_weldshed008' }, - ['2074979883'] = { Name = 'cs6_01_weldshed009' }, - ['987929466'] = { Name = 'cs6_01_weldshed010' }, - ['1268333799'] = { Name = 'cs6_01_weldshed011' }, - ['-840154749'] = { Name = 'cs6_01_weldshed012' }, - ['-946333043'] = { Name = 'cs6_02_brrier_01' }, - ['895874603'] = { Name = 'cs6_02_brrier_02' }, - ['622024070'] = { Name = 'cs6_02_brrier_03' }, - ['531581562'] = { Name = 'cs6_02_brrier_04' }, - ['727540182'] = { Name = 'cs6_02_brrier_05' }, - ['-1054110352'] = { Name = 'cs6_02_brrier_06' }, - ['-830330851'] = { Name = 'cs6_02_brrier_07' }, - ['1687508037'] = { Name = 'cs6_02_brrier_08' }, - ['1947136824'] = { Name = 'cs6_02_brrier_09' }, - ['59412885'] = { Name = 'cs6_02_brrier_10' }, - ['967966179'] = { Name = 'cs6_02_brrier_11' }, - ['77960135'] = { Name = 'cs6_02_brrier_12' }, - ['919402517'] = { Name = 'cs6_02_brrier_13' }, - ['1696027817'] = { Name = 'cs6_02_brrier_14' }, - ['323563790'] = { Name = 'cs6_02_brrier_15' }, - ['-530496101'] = { Name = 'cs6_02_brrier_20' }, - ['1689961393'] = { Name = 'cs6_02_cnst_poles' }, - ['-1585003027'] = { Name = 'cs6_02_con1_g' }, - ['-2016892454'] = { Name = 'cs6_02_concreteblocks' }, - ['1893534575'] = { Name = 'cs6_02_const_01_rail' }, - ['-693599186'] = { Name = 'cs6_02_const_01' }, - ['-264722251'] = { Name = 'cs6_02_const_02_bar' }, - ['1156440251'] = { Name = 'cs6_02_const_02' }, - ['14226160'] = { Name = 'cs6_02_const_03_bar' }, - ['-1686270515'] = { Name = 'cs6_02_const_03' }, - ['1208618352'] = { Name = 'cs6_02_const_04_bara' }, - ['1926062838'] = { Name = 'cs6_02_const_04_barb' }, - ['-1292588395'] = { Name = 'cs6_02_const_04_pipe' }, - ['-1218209259'] = { Name = 'cs6_02_const_04_yel' }, - ['200535736'] = { Name = 'cs6_02_const_04' }, - ['760829066'] = { Name = 'cs6_02_const_05_bar01' }, - ['1687569155'] = { Name = 'cs6_02_const_05_bar02' }, - ['-773457251'] = { Name = 'cs6_02_const_05' }, - ['-671217774'] = { Name = 'cs6_02_const_06_bara' }, - ['156527174'] = { Name = 'cs6_02_const_06_barb' }, - ['1185490998'] = { Name = 'cs6_02_const_06_pipe' }, - ['-912467965'] = { Name = 'cs6_02_const_06_rail' }, - ['-973253615'] = { Name = 'cs6_02_const_06_yel' }, - ['-1080568319'] = { Name = 'cs6_02_const_06' }, - ['-988745544'] = { Name = 'cs6_02_const_07_rail' }, - ['1717478292'] = { Name = 'cs6_02_const_07' }, - ['1680449322'] = { Name = 'cs6_02_const_08' }, - ['-2001049525'] = { Name = 'cs6_02_const_09' }, - ['1911797570'] = { Name = 'cs6_02_const_10' }, - ['1008618404'] = { Name = 'cs6_02_const_11' }, - ['1280568335'] = { Name = 'cs6_02_const_12' }, - ['1802475967'] = { Name = 'cs6_02_const_14_bar' }, - ['698249032'] = { Name = 'cs6_02_deci1a' }, - ['327965272'] = { Name = 'cs6_02_glue_01' }, - ['574257076'] = { Name = 'cs6_02_glue_02' }, - ['-270429437'] = { Name = 'cs6_02_glue_03' }, - ['1894520074'] = { Name = 'cs6_02_glue_04' }, - ['2123346001'] = { Name = 'cs6_02_glue_05' }, - ['-1065764356'] = { Name = 'cs6_02_mtx_01' }, - ['-1772020745'] = { Name = 'cs6_02_mxt_02_g' }, - ['169222073'] = { Name = 'cs6_02_mxt_02' }, - ['1100591492'] = { Name = 'cs6_02_mxt_04_g' }, - ['629855906'] = { Name = 'cs6_02_mxt_04' }, - ['1256792418'] = { Name = 'cs6_02_mxt_06' }, - ['-523157948'] = { Name = 'cs6_02_mxt_06g' }, - ['-1441004470'] = { Name = 'cs6_02_mxt_07_d' }, - ['1018594557'] = { Name = 'cs6_02_mxt_07' }, - ['1719130239'] = { Name = 'cs6_02_mxt_08' }, - ['-367534175'] = { Name = 'cs6_02_mxt_09' }, - ['745074858'] = { Name = 'cs6_02_mxt_10_g' }, - ['1888578434'] = { Name = 'cs6_02_mxt_10' }, - ['-131271720'] = { Name = 'cs6_02_mxt_11_d' }, - ['1475131953'] = { Name = 'cs6_02_mxt_11' }, - ['438181388'] = { Name = 'cs6_02_mxt_12_g_patch' }, - ['728952374'] = { Name = 'cs6_02_mxt_12_g' }, - ['-1481254462'] = { Name = 'cs6_02_mxt_12' }, - ['1472759139'] = { Name = 'cs6_02_mxt_bd_01' }, - ['1227401696'] = { Name = 'cs6_02_mxt_bd_016' }, - ['-1603037512'] = { Name = 'cs6_02_mxt_bd_02' }, - ['-769721842'] = { Name = 'cs6_02_mxt_bd_03' }, - ['-78721935'] = { Name = 'cs6_02_mxt_bd_04' }, - ['2020871662'] = { Name = 'cs6_02_mxt_bd_04a' }, - ['-1361300599'] = { Name = 'cs6_02_mxt_bd_05' }, - ['163998048'] = { Name = 'cs6_02_mxt_bd_07' }, - ['1428356336'] = { Name = 'cs6_02_mxt_bd_15' }, - ['2018518621'] = { Name = 'cs6_02_mxt_bd_15a' }, - ['932559486'] = { Name = 'cs6_02_mxt_bdw_01' }, - ['-455830884'] = { Name = 'cs6_02_mxt_stand03' }, - ['-478572574'] = { Name = 'cs6_02_mxt_stand06' }, - ['457945752'] = { Name = 'cs6_02_mxt_std6' }, - ['1503091697'] = { Name = 'cs6_02_mxt_track_01' }, - ['1003036757'] = { Name = 'cs6_02_mxt_track_02' }, - ['734167112'] = { Name = 'cs6_02_mxt_track_03' }, - ['1791421284'] = { Name = 'cs6_02_mxt_tube007' }, - ['1757865820'] = { Name = 'cs6_02_mxt_tube008' }, - ['1304697344'] = { Name = 'cs6_02_mxtlnd_01d' }, - ['-33194765'] = { Name = 'cs6_02_silo_temp' }, - ['-724544991'] = { Name = 'cs6_02_ttrack01_dec' }, - ['1128314010'] = { Name = 'cs6_02_ttrack01' }, - ['-12601079'] = { Name = 'cs6_02_ttrack11' }, - ['677743444'] = { Name = 'cs6_02_ttrack12' }, - ['1521250273'] = { Name = 'cs6_02_ttrack13' }, - ['-1656556259'] = { Name = 'cs6_02_ttrack14' }, - ['947596159'] = { Name = 'cs6_02_ttrack15' }, - ['-2133377978'] = { Name = 'cs6_02_ttrack16' }, - ['1804669370'] = { Name = 'cs6_02_ttrack17' }, - ['591298538'] = { Name = 'cs6_02_ttrack26' }, - ['-1504512160'] = { Name = 'cs6_02_weed_01' }, - ['1956451317'] = { Name = 'cs6_02_weed_02' }, - ['-1980612961'] = { Name = 'cs6_02_weed_03' }, - ['462500733'] = { Name = 'cs6_02_wtf_con01d' }, - ['-112280487'] = { Name = 'cs6_02_wtp_con002' }, - ['1320773421'] = { Name = 'cs6_02_wtp_con003' }, - ['-826415308'] = { Name = 'cs6_02_wtp_con004' }, - ['-1122941989'] = { Name = 'cs6_02_wtp_con005' }, - ['-171163476'] = { Name = 'cs6_02_wtp_con005a' }, - ['-1303695793'] = { Name = 'cs6_02_wtp_con006' }, - ['-1604744596'] = { Name = 'cs6_02_wtp_con007' }, - ['-1966882874'] = { Name = 'cs6_02_wtp_con01' }, - ['-716417838'] = { Name = 'cs6_02_wtp_con02' }, - ['2111462579'] = { Name = 'cs6_02_wtp_tub_g' }, - ['1249798653'] = { Name = 'cs6_03_003' }, - ['-1290762221'] = { Name = 'cs6_03_003b' }, - ['-956363975'] = { Name = 'cs6_03_02gasmc_d06' }, - ['-553633483'] = { Name = 'cs6_03_02gasmc03' }, - ['-1468423147'] = { Name = 'cs6_03_05gasmc01' }, - ['273974936'] = { Name = 'cs6_03_bb' }, - ['-1212561295'] = { Name = 'cs6_03_bigsign01' }, - ['358283549'] = { Name = 'cs6_03_billboardrs' }, - ['-869337251'] = { Name = 'cs6_03_ch6_05_officedetails001' }, - ['902306969'] = { Name = 'cs6_03_crmd3_map_prox' }, - ['-200306307'] = { Name = 'cs6_03_decal_01' }, - ['1700328462'] = { Name = 'cs6_03_decal_02' }, - ['-440240937'] = { Name = 'cs6_03_decal_03' }, - ['-1699013621'] = { Name = 'cs6_03_decal_03a' }, - ['134805165'] = { Name = 'cs6_03_decal_03b' }, - ['-1024315593'] = { Name = 'cs6_03_decal_04' }, - ['-1389624405'] = { Name = 'cs6_03_decal_05' }, - ['520710000'] = { Name = 'cs6_03_decal_06' }, - ['930781254'] = { Name = 'cs6_03_decal_07' }, - ['-1439236671'] = { Name = 'cs6_03_decal_08' }, - ['-1762863315'] = { Name = 'cs6_03_decal_09' }, - ['1219344792'] = { Name = 'cs6_03_decal_10' }, - ['-829884980'] = { Name = 'cs6_03_decals_house' }, - ['-1448143001'] = { Name = 'cs6_03_ds07_frame' }, - ['-119684498'] = { Name = 'cs6_03_ds07' }, - ['-2090822466'] = { Name = 'cs6_03_dtrack2' }, - ['-1840149169'] = { Name = 'cs6_03_emissive_1_lod' }, - ['2066685422'] = { Name = 'cs6_03_emissive_1' }, - ['1499846972'] = { Name = 'cs6_03_garagemain' }, - ['-1944351167'] = { Name = 'cs6_03_garagemc_lot_d' }, - ['-719454909'] = { Name = 'cs6_03_garagemc_lot' }, - ['-668335014'] = { Name = 'cs6_03_garaget_beam' }, - ['-433244070'] = { Name = 'cs6_03_garaget' }, - ['-896371277'] = { Name = 'cs6_03_gasmc_d02' }, - ['-1379746796'] = { Name = 'cs6_03_gasmc_d04' }, - ['591898396'] = { Name = 'cs6_03_gasmc_d05' }, - ['1836726944'] = { Name = 'cs6_03_gasmc600_beam' }, - ['-912949993'] = { Name = 'cs6_03_gasmc600_emi_lod' }, - ['1619256034'] = { Name = 'cs6_03_gasmc600_emi' }, - ['2003613328'] = { Name = 'cs6_03_gasmc600' }, - ['1296186556'] = { Name = 'cs6_03_gasmc708' }, - ['248137403'] = { Name = 'cs6_03_gasmc805' }, - ['-519523706'] = { Name = 'cs6_03_glue_02' }, - ['-768404261'] = { Name = 'cs6_03_glue_03' }, - ['793693973'] = { Name = 'cs6_03_glue_06' }, - ['-282759563'] = { Name = 'cs6_03_house01_d1' }, - ['1901293376'] = { Name = 'cs6_03_house02_glue' }, - ['-598888439'] = { Name = 'cs6_03_house02' }, - ['1100922771'] = { Name = 'cs6_03_house02l_d1' }, - ['275665407'] = { Name = 'cs6_03_house02l_d1a' }, - ['573044082'] = { Name = 'cs6_03_house02l_d1b' }, - ['-588551430'] = { Name = 'cs6_03_house02l_d1c' }, - ['-1693689629'] = { Name = 'cs6_03_house02l' }, - ['1542787525'] = { Name = 'cs6_03_housemc01_d' }, - ['-52091796'] = { Name = 'cs6_03_housemc01_d2' }, - ['-20541580'] = { Name = 'cs6_03_housemc01_emi_lod' }, - ['-1789005517'] = { Name = 'cs6_03_housemc01_emi' }, - ['-1828466145'] = { Name = 'cs6_03_housemc01_ex' }, - ['-1931403972'] = { Name = 'cs6_03_housemc01' }, - ['-805526670'] = { Name = 'cs6_03_housemc02' }, - ['-564370992'] = { Name = 'cs6_03_housemc0d_ex' }, - ['386392787'] = { Name = 'cs6_03_land01' }, - ['-178675849'] = { Name = 'cs6_03_land02' }, - ['59980778'] = { Name = 'cs6_03_land03' }, - ['-1446748811'] = { Name = 'cs6_03_lot_decals' }, - ['1677834412'] = { Name = 'cs6_03_moteldecal01' }, - ['1250526652'] = { Name = 'cs6_03_moteldecal02' }, - ['-2019491862'] = { Name = 'cs6_03_moteldecal03' }, - ['476931171'] = { Name = 'cs6_03_moteldetails' }, - ['1682403747'] = { Name = 'cs6_03_motellotmc' }, - ['-2093600692'] = { Name = 'cs6_03_motelmain_beam' }, - ['-245283505'] = { Name = 'cs6_03_motelmain_emi_lod' }, - ['-448155518'] = { Name = 'cs6_03_motelmain_emi' }, - ['2051280754'] = { Name = 'cs6_03_motelmain' }, - ['1259831609'] = { Name = 'cs6_03_motelsignmc' }, - ['-11233302'] = { Name = 'cs6_03_officedecal01' }, - ['1483229720'] = { Name = 'cs6_03_officedecal02' }, - ['-1128026349'] = { Name = 'cs6_03_officedetails' }, - ['-1657873291'] = { Name = 'cs6_03_officeposters' }, - ['1888375985'] = { Name = 'cs6_03_parkdecal_a' }, - ['-1451254793'] = { Name = 'cs6_03_parkdecal' }, - ['1989688730'] = { Name = 'cs6_03_parkdecal02' }, - ['-532438069'] = { Name = 'cs6_03_parking_lot' }, - ['-2105992084'] = { Name = 'cs6_03_radio_frame01' }, - ['-980180320'] = { Name = 'cs6_03_radio_frame02' }, - ['560042944'] = { Name = 'cs6_03_radio_power' }, - ['2012062992'] = { Name = 'cs6_03_radio_sta_dec' }, - ['-280569792'] = { Name = 'cs6_03_radio_sta' }, - ['-1646575838'] = { Name = 'cs6_03_radio1dec' }, - ['1349678685'] = { Name = 'cs6_03_rdio_sta_fizz' }, - ['1011073294'] = { Name = 'cs6_03_shop_beams' }, - ['-1716309088'] = { Name = 'cs6_03_shop' }, - ['-1780988826'] = { Name = 'cs6_03_shops_decal1' }, - ['315967096'] = { Name = 'cs6_03_shopsmc03_beamsa' }, - ['553444039'] = { Name = 'cs6_03_shopsmc03_beamsb' }, - ['-166114505'] = { Name = 'cs6_03_shopsmc03' }, - ['-28179138'] = { Name = 'cs6_03_tk12' }, - ['793880021'] = { Name = 'cs6_03_trailmc_emi_lod' }, - ['1560655721'] = { Name = 'cs6_03_trailmc_emi' }, - ['1831182356'] = { Name = 'cs6_03_trailmc' }, - ['-186962584'] = { Name = 'cs6_03_trailmc02' }, - ['-560398108'] = { Name = 'cs6_03_trailmc03' }, - ['1361319947'] = { Name = 'cs6_03_usedcarmc_d' }, - ['-1981393180'] = { Name = 'cs6_03_usedcarmc001_emi_lod' }, - ['-1842227671'] = { Name = 'cs6_03_usedcarmc001_emi' }, - ['-349865507'] = { Name = 'cs6_03_usedcarmc001' }, - ['873674129'] = { Name = 'cs6_03_usedlotmc_d001' }, - ['-1854895831'] = { Name = 'cs6_03_usedlotmc_d002_e_lod' }, - ['1779755080'] = { Name = 'cs6_03_usedlotmc_d002_emi' }, - ['30101762'] = { Name = 'cs6_03_usedlotmc_d002' }, - ['-393567562'] = { Name = 'cs6_03_usedlotmc' }, - ['2013324229'] = { Name = 'cs6_03_weed_02' }, - ['1235814166'] = { Name = 'cs6_03_weed_03' }, - ['-1837852500'] = { Name = 'cs6_03_weed_04' }, - ['-1894543233'] = { Name = 'cs6_04_antenna_d' }, - ['-742829495'] = { Name = 'cs6_04_antenna' }, - ['-90934242'] = { Name = 'cs6_04_canmod014' }, - ['-1681985266'] = { Name = 'cs6_04_canmod02' }, - ['-956414052'] = { Name = 'cs6_04_canmod06' }, - ['-236118663'] = { Name = 'cs6_04_canmod08' }, - ['-1539374813'] = { Name = 'cs6_04_canroof_ladder008' }, - ['-1343350662'] = { Name = 'cs6_04_canroof_ladder010' }, - ['-1040073567'] = { Name = 'cs6_04_canroof_ladder011' }, - ['1121599048'] = { Name = 'cs6_04_canroof_ladder012' }, - ['1314215230'] = { Name = 'cs6_04_canroof_ladder013' }, - ['-1610090334'] = { Name = 'cs6_04_canroof_ladder014' }, - ['-1811621823'] = { Name = 'cs6_04_canroof_ladder03' }, - ['-1505067828'] = { Name = 'cs6_04_canroof_ladder04' }, - ['1888555354'] = { Name = 'cs6_04_canroof_ladder05' }, - ['-2100316713'] = { Name = 'cs6_04_canroof_ladder06' }, - ['-553488837'] = { Name = 'cs6_04_canroof_ladder07' }, - ['-249982371'] = { Name = 'cs6_04_canroof_ladder08' }, - ['-1149982944'] = { Name = 'cs6_04_canroof_ladder09' }, - ['-1505887009'] = { Name = 'cs6_04_canroof_ladder9' }, - ['-1225759311'] = { Name = 'cs6_04_canroof' }, - ['-1592460689'] = { Name = 'cs6_04_decal_01' }, - ['-834517691'] = { Name = 'cs6_04_decal_ant' }, - ['-717581105'] = { Name = 'cs6_04_deci01' }, - ['1012065022'] = { Name = 'cs6_04_deci02' }, - ['830786914'] = { Name = 'cs6_04_deci03' }, - ['2026888187'] = { Name = 'cs6_04_deci04' }, - ['235931257'] = { Name = 'cs6_04_deci05' }, - ['171179665'] = { Name = 'cs6_04_deci06' }, - ['-1667619997'] = { Name = 'cs6_04_deci07' }, - ['-441436790'] = { Name = 'cs6_04_deci08' }, - ['-672261626'] = { Name = 'cs6_04_deci09' }, - ['-1235364946'] = { Name = 'cs6_04_deci10' }, - ['-1833202582'] = { Name = 'cs6_04_deci11' }, - ['1508285121'] = { Name = 'cs6_04_deci12' }, - ['-936216745'] = { Name = 'cs6_04_deci13' }, - ['-225072058'] = { Name = 'cs6_04_draingully003' }, - ['137196040'] = { Name = 'cs6_04_draingully2' }, - ['94025177'] = { Name = 'cs6_04_elbase00' }, - ['-275957966'] = { Name = 'cs6_04_elbasedec019' }, - ['232659694'] = { Name = 'cs6_04_elgnddec015' }, - ['864935741'] = { Name = 'cs6_04_emissive_lod' }, - ['2019390332'] = { Name = 'cs6_04_emissive' }, - ['-1973545523'] = { Name = 'cs6_04_glue_02' }, - ['2014015784'] = { Name = 'cs6_04_glue_03' }, - ['-1352572973'] = { Name = 'cs6_04_glue_04' }, - ['-1717357481'] = { Name = 'cs6_04_glue_05' }, - ['483321338'] = { Name = 'cs6_04_grating' }, - ['-680610067'] = { Name = 'cs6_04_hball01' }, - ['-564269280'] = { Name = 'cs6_04_j6_road06' }, - ['1370446615'] = { Name = 'cs6_04_land05_details' }, - ['-763754760'] = { Name = 'cs6_04_land2' }, - ['605590948'] = { Name = 'cs6_04_land6_dd' }, - ['824594158'] = { Name = 'cs6_04_land8_d' }, - ['1143821166'] = { Name = 'cs6_04_lockup01' }, - ['-1371020943'] = { Name = 'cs6_04_lockup01b' }, - ['551357646'] = { Name = 'cs6_04_lockup02' }, - ['-628005613'] = { Name = 'cs6_04_mainblock' }, - ['1193643034'] = { Name = 'cs6_04_mainrails1' }, - ['827089000'] = { Name = 'cs6_04_mainrails2' }, - ['596821237'] = { Name = 'cs6_04_mainrails3' }, - ['285515733'] = { Name = 'cs6_04_mainrails4' }, - ['517040684'] = { Name = 'cs6_04_mr_rails1' }, - ['397717498'] = { Name = 'cs6_04_mr_rails10' }, - ['1117521384'] = { Name = 'cs6_04_mr_rails11' }, - ['1764654821'] = { Name = 'cs6_04_mr_rails2' }, - ['879498593'] = { Name = 'cs6_04_mr_rails3' }, - ['1740864531'] = { Name = 'cs6_04_mr_rails4' }, - ['839192727'] = { Name = 'cs6_04_mr_rails5' }, - ['2109024250'] = { Name = 'cs6_04_mr_rails6' }, - ['1457510988'] = { Name = 'cs6_04_mr_rails7' }, - ['-1631655411'] = { Name = 'cs6_04_mr_rails8' }, - ['1897139896'] = { Name = 'cs6_04_mr_rails9' }, - ['-1019681568'] = { Name = 'cs6_04_mr_walks' }, - ['1449847106'] = { Name = 'cs6_04_mr_walks3' }, - ['1219579343'] = { Name = 'cs6_04_mr_walks4' }, - ['1924178381'] = { Name = 'cs6_04_mr_walks5' }, - ['961413170'] = { Name = 'cs6_04_newcut' }, - ['774202467'] = { Name = 'cs6_04_newcut01' }, - ['-1067022105'] = { Name = 'cs6_04_newcut02' }, - ['477741324'] = { Name = 'cs6_04_newcut04' }, - ['412864423'] = { Name = 'cs6_04_pris_dec00' }, - ['556589257'] = { Name = 'cs6_04_pris_dec01' }, - ['770964051'] = { Name = 'cs6_04_pris_dec02' }, - ['1086234600'] = { Name = 'cs6_04_pris_dec03' }, - ['1332559173'] = { Name = 'cs6_04_pris_dec04' }, - ['1547982579'] = { Name = 'cs6_04_pris_dec05' }, - ['1706650077'] = { Name = 'cs6_04_pris_dec06' }, - ['2005536126'] = { Name = 'cs6_04_pris_dec07' }, - ['-2129387374'] = { Name = 'cs6_04_pris_dec08' }, - ['-1828862875'] = { Name = 'cs6_04_pris_dec09' }, - ['-1899315981'] = { Name = 'cs6_04_pris_dec10' }, - ['-1726164585'] = { Name = 'cs6_04_pris_dec11' }, - ['-1453886964'] = { Name = 'cs6_04_pris_dec12' }, - ['-1681664287'] = { Name = 'cs6_04_pris_dec13' }, - ['-1244394751'] = { Name = 'cs6_04_pris_dec14' }, - ['-936792148'] = { Name = 'cs6_04_pris_dec15' }, - ['-793329466'] = { Name = 'cs6_04_pris_dec16' }, - ['-486447781'] = { Name = 'cs6_04_pris_dec17' }, - ['-48785009'] = { Name = 'cs6_04_pris_dec18' }, - ['227097202'] = { Name = 'cs6_04_pris_dec19' }, - ['1231827859'] = { Name = 'cs6_04_pris_dec20' }, - ['1059004153'] = { Name = 'cs6_04_pris_dec21' }, - ['1285732868'] = { Name = 'cs6_04_pris_dec22' }, - ['848594408'] = { Name = 'cs6_04_pris_dec23' }, - ['542564717'] = { Name = 'cs6_04_pris_dec24' }, - ['369609935'] = { Name = 'cs6_04_pris_dec25' }, - ['-1060495467'] = { Name = 'cs6_04_prison_det' }, - ['-740949308'] = { Name = 'cs6_04_prison07' }, - ['1614683386'] = { Name = 'cs6_04_prison13' }, - ['-1068828592'] = { Name = 'cs6_04_prison130' }, - ['1843771465'] = { Name = 'cs6_04_prison14' }, - ['1545056515'] = { Name = 'cs6_04_prison149' }, - ['-785772902'] = { Name = 'cs6_04_prison150' }, - ['877063495'] = { Name = 'cs6_04_prison19_rail' }, - ['100624510'] = { Name = 'cs6_04_prison19' }, - ['-21747737'] = { Name = 'cs6_04_prison20_rail' }, - ['-1011686206'] = { Name = 'cs6_04_prison20' }, - ['-1398314552'] = { Name = 'cs6_04_prisoncp04' }, - ['468859408'] = { Name = 'cs6_04_prisonterrain01' }, - ['-284237854'] = { Name = 'cs6_04_prisonterrain02' }, - ['-1065844042'] = { Name = 'cs6_04_prisonterrain03' }, - ['408466037'] = { Name = 'cs6_04_prisonterrain07' }, - ['-1671619924'] = { Name = 'cs6_04_prisontower1' }, - ['-1306225777'] = { Name = 'cs6_04_prisontower10' }, - ['1876607400'] = { Name = 'cs6_04_prisontower2' }, - ['1636640013'] = { Name = 'cs6_04_prisontower3' }, - ['1399851219'] = { Name = 'cs6_04_prisontower4' }, - ['1159293990'] = { Name = 'cs6_04_prisontower5' }, - ['1486066462'] = { Name = 'cs6_04_prisontower6' }, - ['1255274395'] = { Name = 'cs6_04_prisontower7' }, - ['1007606293'] = { Name = 'cs6_04_prisontower8' }, - ['-2119821570'] = { Name = 'cs6_04_props_cables045' }, - ['-1829232655'] = { Name = 'cs6_04_props_cables045a' }, - ['1304897981'] = { Name = 'cs6_04_props_cables055' }, - ['-1755890464'] = { Name = 'cs6_04_props_cables056' }, - ['-1700737899'] = { Name = 'cs6_04_props_subst_cable44x' }, - ['1176464052'] = { Name = 'cs6_04_props_substn_cables013' }, - ['-1649134155'] = { Name = 'cs6_04_props_wire_116' }, - ['-1000406262'] = { Name = 'cs6_04_props_wire_117' }, - ['1932300748'] = { Name = 'cs6_04_props_wire078' }, - ['-718896410'] = { Name = 'cs6_04_pwalkway04' }, - ['-622333235'] = { Name = 'cs6_04_railsside1' }, - ['-1207063271'] = { Name = 'cs6_04_railsside2' }, - ['-132246652'] = { Name = 'cs6_04_railstop1' }, - ['1258338632'] = { Name = 'cs6_04_railstop2' }, - ['484171007'] = { Name = 'cs6_04_railstop3' }, - ['-1254257220'] = { Name = 'cs6_04_railstop4' }, - ['734859097'] = { Name = 'cs6_04_reception' }, - ['710886348'] = { Name = 'cs6_04_road01' }, - ['470329119'] = { Name = 'cs6_04_road02' }, - ['-427082715'] = { Name = 'cs6_04_road03' }, - ['-920321703'] = { Name = 'cs6_04_road04' }, - ['99121887'] = { Name = 'cs6_04_road05' }, - ['1093046212'] = { Name = 'cs6_04_sat_rail01' }, - ['1793450818'] = { Name = 'cs6_04_sat_rail02' }, - ['371341760'] = { Name = 'cs6_04_sat_rail03' }, - ['123968579'] = { Name = 'cs6_04_sat_rail04' }, - ['839250311'] = { Name = 'cs6_04_sat_rail05' }, - ['603870584'] = { Name = 'cs6_04_sat_rail06' }, - ['-467582427'] = { Name = 'cs6_04_satellite_dish_concrete' }, - ['-1103789764'] = { Name = 'cs6_04_satellite_dish' }, - ['-1886641995'] = { Name = 'cs6_04_ss_dirt1_001' }, - ['-1127908569'] = { Name = 'cs6_04_ss_dirt1_002' }, - ['1943955802'] = { Name = 'cs6_04_ss_dirt1_003' }, - ['-2058286017'] = { Name = 'cs6_04_ss_dirt1_004' }, - ['550217691'] = { Name = 'cs6_04_tank_white002' }, - ['233185290'] = { Name = 'cs6_04_tankblue_002' }, - ['2112920672'] = { Name = 'cs6_04_temp_fence_01' }, - ['-1779581142'] = { Name = 'cs6_04_ter_decal' }, - ['472998003'] = { Name = 'cs6_04_water02' }, - ['1836085588'] = { Name = 'cs6_04_weed_01' }, - ['-401119556'] = { Name = 'cs6_04_weed_02' }, - ['2065894585'] = { Name = 'cs6_04_weed_03' }, - ['1553935136'] = { Name = 'cs6_05_barrier05b' }, - ['766921535'] = { Name = 'cs6_05_blarney_glue' }, - ['19077392'] = { Name = 'cs6_05_blarney' }, - ['1798407591'] = { Name = 'cs6_05_brrier_01' }, - ['1053109451'] = { Name = 'cs6_05_brrier_02' }, - ['1225146701'] = { Name = 'cs6_05_brrier_03' }, - ['-552146994'] = { Name = 'cs6_05_chump1' }, - ['959805270'] = { Name = 'cs6_05_cliff1_d' }, - ['-1146943635'] = { Name = 'cs6_05_cliff1_d01' }, - ['575344623'] = { Name = 'cs6_05_cliff1' }, - ['100970946'] = { Name = 'cs6_05_cs_dtrack_003' }, - ['1874330927'] = { Name = 'cs6_05_cs_dtrack_004' }, - ['-1655840678'] = { Name = 'cs6_05_cs_dtrack_005' }, - ['-1819751216'] = { Name = 'cs6_05_cs_dtrack_006' }, - ['1154133845'] = { Name = 'cs6_05_cs_dtrack_007' }, - ['-1021301762'] = { Name = 'cs6_05_cs_dtrack_008' }, - ['-433229012'] = { Name = 'cs6_05_cs_dtrack_010' }, - ['1983682389'] = { Name = 'cs6_05_details' }, - ['280158507'] = { Name = 'cs6_05_dirtroad9' }, - ['-1431722765'] = { Name = 'cs6_05_drtrd1' }, - ['-421217998'] = { Name = 'cs6_05_drtrd101' }, - ['-371349155'] = { Name = 'cs6_05_emissive_1_lod' }, - ['721244355'] = { Name = 'cs6_05_emissive_1' }, - ['611037035'] = { Name = 'cs6_05_emissive_2_lod' }, - ['1507241589'] = { Name = 'cs6_05_emissive_2' }, - ['-988417138'] = { Name = 'cs6_05_farm_shed' }, - ['-1589059138'] = { Name = 'cs6_05_glue_01' }, - ['-1318911590'] = { Name = 'cs6_05_glue_04' }, - ['1515148236'] = { Name = 'cs6_05_glue_05' }, - ['1210789563'] = { Name = 'cs6_05_house' }, - ['-236907710'] = { Name = 'cs6_05_house01_d' }, - ['184374081'] = { Name = 'cs6_05_house01' }, - ['-468041731'] = { Name = 'cs6_05_indfarm_det1' }, - ['-179608993'] = { Name = 'cs6_05_indfarm_det2' }, - ['1578087406'] = { Name = 'cs6_05_indfarm_det3' }, - ['1868453515'] = { Name = 'cs6_05_indfarm_det4' }, - ['2123429104'] = { Name = 'cs6_05_indfarm_det5' }, - ['333062020'] = { Name = 'cs6_05_indfarm_det6' }, - ['-1002765344'] = { Name = 'cs6_05_indfarm_frame' }, - ['-1058895367'] = { Name = 'cs6_05_indfarm_lad1' }, - ['25266958'] = { Name = 'cs6_05_indfarm_lad2' }, - ['-2063361301'] = { Name = 'cs6_05_indfarm_pipe' }, - ['-1046690088'] = { Name = 'cs6_05_indfarm' }, - ['-1808236439'] = { Name = 'cs6_05_land_ctar' }, - ['107880919'] = { Name = 'cs6_05_land05_c' }, - ['463518467'] = { Name = 'cs6_05_land05_c001' }, - ['-130644632'] = { Name = 'cs6_05_land05_d' }, - ['1083282957'] = { Name = 'cs6_05_land05_g' }, - ['1249837085'] = { Name = 'cs6_05_land05' }, - ['-562334821'] = { Name = 'cs6_05_land05b' }, - ['-433571987'] = { Name = 'cs6_05_land07' }, - ['570189776'] = { Name = 'cs6_05_land07x_g' }, - ['-2035986692'] = { Name = 'cs6_05_land07x' }, - ['-248431966'] = { Name = 'cs6_05_land10_d' }, - ['1271824724'] = { Name = 'cs6_05_land10' }, - ['-638987498'] = { Name = 'cs6_05_landwl' }, - ['-317977318'] = { Name = 'cs6_05_mcfarm_03808' }, - ['1081988163'] = { Name = 'cs6_05_mcfarm_09218_frame' }, - ['-1337268192'] = { Name = 'cs6_05_mcfarm_09218' }, - ['1736309010'] = { Name = 'cs6_05_mcfarm_10221' }, - ['-1956172288'] = { Name = 'cs6_05_mcfarm_10524_beams' }, - ['784214813'] = { Name = 'cs6_05_mcfarm_10524' }, - ['-321681157'] = { Name = 'cs6_05_mcfarm_12728' }, - ['1597775548'] = { Name = 'cs6_05_mcfarm_21579' }, - ['245050632'] = { Name = 'cs6_05_mcfarm_23150' }, - ['-864408993'] = { Name = 'cs6_05_mcfarm_25759' }, - ['1590604693'] = { Name = 'cs6_05_mcfarm_29563' }, - ['2062253366'] = { Name = 'cs6_05_mcfarm_30573' }, - ['-85736419'] = { Name = 'cs6_05_mcfarm_31179' }, - ['1246783833'] = { Name = 'cs6_05_mcfarm_31180' }, - ['490891031'] = { Name = 'cs6_05_mcfarm_d_r02' }, - ['-1050472022'] = { Name = 'cs6_05_mcfarm_roads' }, - ['-907419711'] = { Name = 'cs6_05_mcfarm_shadow' }, - ['-80936949'] = { Name = 'cs6_05_mcfarm_water_frame' }, - ['-4543365'] = { Name = 'cs6_05_mcfarm_water' }, - ['147512351'] = { Name = 'cs6_05_mockup_02_bars' }, - ['-1804658420'] = { Name = 'cs6_05_mockup_02' }, - ['-1152915779'] = { Name = 'cs6_05_mockup_04' }, - ['129952253'] = { Name = 'cs6_05_sign' }, - ['950282398'] = { Name = 'cs6_05_silo_002_d' }, - ['411634005'] = { Name = 'cs6_05_silo_002_lad' }, - ['1470378312'] = { Name = 'cs6_05_silo_002_rails' }, - ['1757531970'] = { Name = 'cs6_05_silo_002' }, - ['-607161898'] = { Name = 'cs6_05_ttrack01' }, - ['-1165710098'] = { Name = 'cs6_05_watertank_base' }, - ['-177029642'] = { Name = 'cs6_05_watertank006' }, - ['-674940874'] = { Name = 'cs6_05_weed_01' }, - ['283814528'] = { Name = 'cs6_05_weed_05' }, - ['585453173'] = { Name = 'cs6_05_weed_06' }, - ['188097091'] = { Name = 'cs6_06_cattleshed1' }, - ['1758239351'] = { Name = 'cs6_06_cul5' }, - ['1780830600'] = { Name = 'cs6_06_culvertbars' }, - ['147979052'] = { Name = 'cs6_06_culvertshadowmesh' }, - ['-1041707551'] = { Name = 'cs6_06_culvertshadowmesh003' }, - ['616026235'] = { Name = 'cs6_06_culvertshadowmesh2' }, - ['625722034'] = { Name = 'cs6_06_dec00' }, - ['-167635259'] = { Name = 'cs6_06_dec139' }, - ['2074086150'] = { Name = 'cs6_06_decals00' }, - ['1928034721'] = { Name = 'cs6_06_decals01' }, - ['1612862479'] = { Name = 'cs6_06_decals02' }, - ['1421360443'] = { Name = 'cs6_06_decals03' }, - ['1231171989'] = { Name = 'cs6_06_decals0498' }, - ['1529861424'] = { Name = 'cs6_06_decals0499' }, - ['-112785830'] = { Name = 'cs6_06_decals05' }, - ['1257951953'] = { Name = 'cs6_06_decals0555' }, - ['662233789'] = { Name = 'cs6_06_decals06' }, - ['-73364727'] = { Name = 'cs6_06_decals07' }, - ['698738451'] = { Name = 'cs6_06_decals08' }, - ['64245752'] = { Name = 'cs6_06_decals11' }, - ['302181461'] = { Name = 'cs6_06_decals12' }, - ['-1879676882'] = { Name = 'cs6_06_decals13' }, - ['645174584'] = { Name = 'cs6_06_decals14' }, - ['878588171'] = { Name = 'cs6_06_decals15' }, - ['1259888255'] = { Name = 'cs6_06_decals16' }, - ['-1517546659'] = { Name = 'cs6_06_decals17' }, - ['1333215549'] = { Name = 'cs6_06_decals17a' }, - ['1934887158'] = { Name = 'cs6_06_decals17c' }, - ['-1271025472'] = { Name = 'cs6_06_decals18' }, - ['-361039122'] = { Name = 'cs6_06_decals18a' }, - ['-1767672676'] = { Name = 'cs6_06_decals20' }, - ['199845571'] = { Name = 'cs6_06_decals20a' }, - ['2068233699'] = { Name = 'cs6_06_decals22' }, - ['-1792304705'] = { Name = 'cs6_06_decals2299' }, - ['1401745008'] = { Name = 'cs6_06_decals23' }, - ['-258342648'] = { Name = 'cs6_06_decals2322' }, - ['-574684458'] = { Name = 'cs6_06_decals24' }, - ['671815533'] = { Name = 'cs6_06_decals25' }, - ['1082476641'] = { Name = 'cs6_06_decals26' }, - ['-974845643'] = { Name = 'cs6_06_decalsa00' }, - ['-1399990649'] = { Name = 'cs6_06_decalsa01' }, - ['172823048'] = { Name = 'cs6_06_decalsa02' }, - ['555958196'] = { Name = 'cs6_06_decalsa03' }, - ['-474430240'] = { Name = 'cs6_06_decalsa04' }, - ['-242786179'] = { Name = 'cs6_06_decalsa05' }, - ['2017684979'] = { Name = 'cs6_06_decalsa06' }, - ['1171032326'] = { Name = 'cs6_06_decalsa07' }, - ['748967606'] = { Name = 'cs6_06_decalsa08' }, - ['979300907'] = { Name = 'cs6_06_decalsa09' }, - ['1442626062'] = { Name = 'cs6_06_decalsa10' }, - ['1215045357'] = { Name = 'cs6_06_decalsa11' }, - ['1308666386'] = { Name = 'cs6_06_decalsa12' }, - ['-433687153'] = { Name = 'cs6_06_decalsa98' }, - ['1947734388'] = { Name = 'cs6_06_decalsa99' }, - ['-901839810'] = { Name = 'cs6_06_emissive01_lod' }, - ['1806143881'] = { Name = 'cs6_06_emissive01' }, - ['1349435266'] = { Name = 'cs6_06_emissive02_lod' }, - ['2036837641'] = { Name = 'cs6_06_emissive02' }, - ['-1383379649'] = { Name = 'cs6_06_farmhouse_a' }, - ['1993301960'] = { Name = 'cs6_06_farmhouse_d' }, - ['1282433636'] = { Name = 'cs6_06_farmhouse_railing' }, - ['-537867771'] = { Name = 'cs6_06_farmhouse' }, - ['1820067451'] = { Name = 'cs6_06_feedstore' }, - ['-1794869135'] = { Name = 'cs6_06_glue_01' }, - ['867415505'] = { Name = 'cs6_06_glue_02' }, - ['511447354'] = { Name = 'cs6_06_growtunnelground' }, - ['-809886272'] = { Name = 'cs6_06_jbarns_d' }, - ['1394217100'] = { Name = 'cs6_06_jbarns' }, - ['-1837544751'] = { Name = 'cs6_06_jbillboard' }, - ['-344460040'] = { Name = 'cs6_06_jcrop' }, - ['365543649'] = { Name = 'cs6_06_jcrop001' }, - ['-787335305'] = { Name = 'cs6_06_jcrop002' }, - ['56007675'] = { Name = 'cs6_06_jcrop003' }, - ['889683804'] = { Name = 'cs6_06_jcrop004' }, - ['249377548'] = { Name = 'cs6_06_jcrop005' }, - ['19568551'] = { Name = 'cs6_06_jcrop006' }, - ['1918466563'] = { Name = 'cs6_06_jcrop007' }, - ['1691213548'] = { Name = 'cs6_06_jcrop008' }, - ['1175757178'] = { Name = 'cs6_06_jcrop009' }, - ['-125463947'] = { Name = 'cs6_06_jcrop010' }, - ['1839426082'] = { Name = 'cs6_06_jhouse_beam' }, - ['-205740421'] = { Name = 'cs6_06_jhouse_d' }, - ['-1527799821'] = { Name = 'cs6_06_jhouse_detail' }, - ['-963649079'] = { Name = 'cs6_06_jhouse' }, - ['1158079405'] = { Name = 'cs6_06_jstorage_d' }, - ['-1589949133'] = { Name = 'cs6_06_jstorage_frame' }, - ['1183751109'] = { Name = 'cs6_06_jstorage' }, - ['1721357078'] = { Name = 'cs6_06_land_01' }, - ['-354538538'] = { Name = 'cs6_06_land_01aa' }, - ['169646621'] = { Name = 'cs6_06_land_03' }, - ['1034191152'] = { Name = 'cs6_06_land_05' }, - ['1894737861'] = { Name = 'cs6_06_land_06' }, - ['1629636651'] = { Name = 'cs6_06_land_07' }, - ['-424258735'] = { Name = 'cs6_06_land_08' }, - ['-1734461662'] = { Name = 'cs6_06_land_09' }, - ['726669249'] = { Name = 'cs6_06_land_09b_steps' }, - ['1676589337'] = { Name = 'cs6_06_land_09b' }, - ['-1319048817'] = { Name = 'cs6_06_land_10' }, - ['1350193223'] = { Name = 'cs6_06_missionculvert' }, - ['-18542849'] = { Name = 'cs6_06_oldrocktemplate' }, - ['-1599783914'] = { Name = 'cs6_06_polyt_det01' }, - ['557316048'] = { Name = 'cs6_06_shacks_a' }, - ['-682957833'] = { Name = 'cs6_06_shacks_d' }, - ['-1248206633'] = { Name = 'cs6_06_shacks' }, - ['156443600'] = { Name = 'cs6_06_tracks_01' }, - ['782582150'] = { Name = 'cs6_06_tracks_012' }, - ['752937707'] = { Name = 'cs6_06_tracks_03' }, - ['1894216439'] = { Name = 'cs6_06_tracks_04' }, - ['1310600549'] = { Name = 'cs6_06_tracks_05' }, - ['-850221548'] = { Name = 'cs6_06_tracks_34' }, - ['702035286'] = { Name = 'cs6_06_trough_small_01' }, - ['865093830'] = { Name = 'cs6_06_trough_small_02' }, - ['-1135391008'] = { Name = 'cs6_06_weed_02' }, - ['-239133910'] = { Name = 'cs6_08_bridge1' }, - ['134629304'] = { Name = 'cs6_08_bridge2' }, - ['-1069121894'] = { Name = 'cs6_08_bridge3_rail' }, - ['375776375'] = { Name = 'cs6_08_bridge3' }, - ['726734462'] = { Name = 'cs6_08_brig_002_d' }, - ['1052343357'] = { Name = 'cs6_08_brig_01_rail' }, - ['216954763'] = { Name = 'cs6_08_brig_01' }, - ['736999506'] = { Name = 'cs6_08_brig_02_rail' }, - ['1083789718'] = { Name = 'cs6_08_brig_04_rail' }, - ['1405456573'] = { Name = 'cs6_08_church_alpha' }, - ['-618231527'] = { Name = 'cs6_08_church' }, - ['1254084351'] = { Name = 'cs6_08_churchdets' }, - ['1254107586'] = { Name = 'cs6_08_churchshed' }, - ['-1648348813'] = { Name = 'cs6_08_churchsign' }, - ['1566537548'] = { Name = 'cs6_08_churchsteps01' }, - ['-784605433'] = { Name = 'cs6_08_churchsteps03' }, - ['-1926201652'] = { Name = 'cs6_08_cs_deserttrack_005' }, - ['1337254880'] = { Name = 'cs6_08_cs_water10_slod' }, - ['1591070267'] = { Name = 'cs6_08_cs_water10' }, - ['2123173319'] = { Name = 'cs6_08_cs_water55_slod' }, - ['-51900299'] = { Name = 'cs6_08_cs_water55' }, - ['440278307'] = { Name = 'cs6_08_cs_water9_slod' }, - ['1554522577'] = { Name = 'cs6_08_cs_water9' }, - ['-1576923171'] = { Name = 'cs6_08_culvertshadowmesh' }, - ['1310879828'] = { Name = 'cs6_08_decalmh04' }, - ['1382980825'] = { Name = 'cs6_08_decfffg456' }, - ['2120887930'] = { Name = 'cs6_08_decs01' }, - ['1822264033'] = { Name = 'cs6_08_decs02' }, - ['1541990772'] = { Name = 'cs6_08_decs03' }, - ['-714220416'] = { Name = 'cs6_08_decs05' }, - ['-1015334757'] = { Name = 'cs6_08_decs06' }, - ['-1698044103'] = { Name = 'cs6_08_decs07' }, - ['207833710'] = { Name = 'cs6_08_decs09' }, - ['770084552'] = { Name = 'cs6_08_decs10' }, - ['-1089883888'] = { Name = 'cs6_08_decs11' }, - ['-1857825403'] = { Name = 'cs6_08_decs12' }, - ['-1565591461'] = { Name = 'cs6_08_decs13' }, - ['1961893086'] = { Name = 'cs6_08_decs14' }, - ['-652680010'] = { Name = 'cs6_08_decs15' }, - ['-323987954'] = { Name = 'cs6_08_ds02' }, - ['451883659'] = { Name = 'cs6_08_ds03' }, - ['1870396759'] = { Name = 'cs6_08_ds0345' }, - ['288104197'] = { Name = 'cs6_08_ds04' }, - ['-1885955108'] = { Name = 'cs6_08_ds05' }, - ['-1473721088'] = { Name = 'cs6_08_ds07' }, - ['-695948873'] = { Name = 'cs6_08_ds08' }, - ['-526697276'] = { Name = 'cs6_08_ds13' }, - ['2042013036'] = { Name = 'cs6_08_ds133' }, - ['778721377'] = { Name = 'cs6_08_ds14' }, - ['1776358421'] = { Name = 'cs6_08_ds147' }, - ['-1717457198'] = { Name = 'cs6_08_ds17' }, - ['-2011658640'] = { Name = 'cs6_08_ds20' }, - ['-577326769'] = { Name = 'cs6_08_ds21' }, - ['-330510661'] = { Name = 'cs6_08_ds22' }, - ['1092745316'] = { Name = 'cs6_08_ds23' }, - ['-809364058'] = { Name = 'cs6_08_ds24' }, - ['145622909'] = { Name = 'cs6_08_ds25' }, - ['1816743606'] = { Name = 'cs6_08_ds27' }, - ['2049501813'] = { Name = 'cs6_08_ds28' }, - ['70306297'] = { Name = 'cs6_08_emi_church_lod' }, - ['-589025923'] = { Name = 'cs6_08_emi_church' }, - ['3412510'] = { Name = 'cs6_08_emissive001_lod' }, - ['2015701145'] = { Name = 'cs6_08_emissive001' }, - ['-930723908'] = { Name = 'cs6_08_feats_07a' }, - ['-1027982300'] = { Name = 'cs6_08_feats_07b' }, - ['-954720885'] = { Name = 'cs6_08_glue_01' }, - ['-34534592'] = { Name = 'cs6_08_glue_02' }, - ['507399098'] = { Name = 'cs6_08_glue_04' }, - ['518202814'] = { Name = 'cs6_08_gm_rubweeds017' }, - ['-513099827'] = { Name = 'cs6_08_house1' }, - ['-774882752'] = { Name = 'cs6_08_house1aw' }, - ['-1959220250'] = { Name = 'cs6_08_house1de' }, - ['1541766831'] = { Name = 'cs6_08_housedecal' }, - ['-1169924810'] = { Name = 'cs6_08_land_01' }, - ['-957516152'] = { Name = 'cs6_08_land_02' }, - ['1451562429'] = { Name = 'cs6_08_land_03' }, - ['1874544681'] = { Name = 'cs6_08_land_04' }, - ['650884671'] = { Name = 'cs6_08_land_05' }, - ['1096018767'] = { Name = 'cs6_08_land_06' }, - ['-800421574'] = { Name = 'cs6_08_land_07' }, - ['-586571080'] = { Name = 'cs6_08_land_08' }, - ['1540169793'] = { Name = 'cs6_08_land_09' }, - ['2113252026'] = { Name = 'cs6_08_mine_decals' }, - ['920857783'] = { Name = 'cs6_08_mine_rocks' }, - ['-2001020215'] = { Name = 'cs6_08_mine' }, - ['-1086803953'] = { Name = 'cs6_08_river_dec01' }, - ['-772385398'] = { Name = 'cs6_08_river_dec02' }, - ['712252195'] = { Name = 'cs6_08_rockstep' }, - ['-1773191273'] = { Name = 'cs6_08_rshouse1' }, - ['1135466802'] = { Name = 'cs6_08_steps_2' }, - ['-1884780780'] = { Name = 'cs6_08_struct08_base' }, - ['1561432715'] = { Name = 'cs6_08_struct08_beam01' }, - ['-2120983664'] = { Name = 'cs6_08_struct08_beam03' }, - ['-853660933'] = { Name = 'cs6_08_struct08_fizz' }, - ['-1823197622'] = { Name = 'cs6_08_struct08' }, - ['1528798538'] = { Name = 'cs6_08_track09' }, - ['1972426716'] = { Name = 'cs6_08_track10' }, - ['561439882'] = { Name = 'cs6_08_track1121' }, - ['-599180038'] = { Name = 'cs6_08_trailsteps' }, - ['1651002681'] = { Name = 'cs6_08_wall_1' }, - ['-1811419286'] = { Name = 'cs6_08_wall_dec' }, - ['-801432124'] = { Name = 'cs6_08_weed_01' }, - ['-1266031006'] = { Name = 'cs6_08_weed_02' }, - ['-1361192182'] = { Name = 'cs6_08_weed_03' }, - ['-1185583115'] = { Name = 'cs6_08_weed_04' }, - ['-1020385824'] = { Name = 'cs6_08_wooddec' }, - ['-1268775157'] = { Name = 'cs6_08a_cs6_08s_dirt00' }, - ['1809164496'] = { Name = 'cs6_08a_culv002' }, - ['934822038'] = { Name = 'cs6_08a_culv003' }, - ['-795224389'] = { Name = 'cs6_08a_culv1' }, - ['156393165'] = { Name = 'cs6_08a_culvert03' }, - ['386856011'] = { Name = 'cs6_08a_ds00' }, - ['-1520004868'] = { Name = 'cs6_08a_ds01' }, - ['1834066131'] = { Name = 'cs6_08a_ds02' }, - ['-765793564'] = { Name = 'cs6_08a_ds04' }, - ['1604912514'] = { Name = 'cs6_08a_ds05' }, - ['680925017'] = { Name = 'cs6_08a_ds06' }, - ['908767874'] = { Name = 'cs6_08a_ds07' }, - ['-1995089834'] = { Name = 'cs6_08a_ds08' }, - ['-1696662551'] = { Name = 'cs6_08a_ds09' }, - ['666604882'] = { Name = 'cs6_08a_ds099' }, - ['-16595589'] = { Name = 'cs6_08a_ds10' }, - ['-315874866'] = { Name = 'cs6_08a_ds11' }, - ['542595425'] = { Name = 'cs6_08a_ds111' }, - ['-484241988'] = { Name = 'cs6_08a_ds12' }, - ['1353345225'] = { Name = 'cs6_08a_ds13' }, - ['-950053323'] = { Name = 'cs6_08a_ds14' }, - ['-1223903856'] = { Name = 'cs6_08a_ds15' }, - ['-1409704086'] = { Name = 'cs6_08a_ds16' }, - ['432339711'] = { Name = 'cs6_08a_ds17' }, - ['1607927586'] = { Name = 'cs6_08a_ds19' }, - ['822618753'] = { Name = 'cs6_08a_ds20' }, - ['591433458'] = { Name = 'cs6_08a_ds21' }, - ['-1630697958'] = { Name = 'cs6_08a_ds22' }, - ['158620506'] = { Name = 'cs6_08a_ds23' }, - ['-71909409'] = { Name = 'cs6_08a_ds24' }, - ['-236670134'] = { Name = 'cs6_08a_glue_01' }, - ['33313657'] = { Name = 'cs6_08a_glue_02' }, - ['398098165'] = { Name = 'cs6_08a_glue_03' }, - ['426059000'] = { Name = 'cs6_08a_land_00_decal' }, - ['2044907544'] = { Name = 'cs6_08a_land_00' }, - ['1939401999'] = { Name = 'cs6_08a_land_01_decal' }, - ['-144585952'] = { Name = 'cs6_08a_land_01' }, - ['-966132845'] = { Name = 'cs6_08a_land_02_decal' }, - ['697347957'] = { Name = 'cs6_08a_land_02' }, - ['604983841'] = { Name = 'cs6_08a_land_03_decal' }, - ['320701071'] = { Name = 'cs6_08a_land_03' }, - ['477798474'] = { Name = 'cs6_08a_land_05_decal' }, - ['-1484838056'] = { Name = 'cs6_08a_land_05' }, - ['-1205297884'] = { Name = 'cs6_08a_land_06_decal' }, - ['-1746039755'] = { Name = 'cs6_08a_land_06' }, - ['-538695398'] = { Name = 'cs6_08a_land_06b_decal' }, - ['1734731524'] = { Name = 'cs6_08a_land_06b' }, - ['1409023421'] = { Name = 'cs6_08a_land_07_decal' }, - ['-1025842673'] = { Name = 'cs6_08a_land_07' }, - ['-1256438126'] = { Name = 'cs6_08a_land_08' }, - ['1750088603'] = { Name = 'cs6_08a_land_09_decal' }, - ['1855306118'] = { Name = 'cs6_08a_land_09' }, - ['313203733'] = { Name = 'cs6_08a_land_10_decal' }, - ['2140134546'] = { Name = 'cs6_08a_land_10' }, - ['-1567692613'] = { Name = 'cs6_08a_land_11_decal' }, - ['498531371'] = { Name = 'cs6_08a_land09' }, - ['1868667883'] = { Name = 'cs6_08a_land16' }, - ['622960770'] = { Name = 'cs6_08a_rock_01' }, - ['576979731'] = { Name = 'cs6_08a_str_d00' }, - ['287662230'] = { Name = 'cs6_08a_str_d01' }, - ['130567644'] = { Name = 'cs6_08a_str_d02' }, - ['-175199895'] = { Name = 'cs6_08a_str_d03' }, - ['-271835676'] = { Name = 'cs6_08a_str_d04' }, - ['1991130743'] = { Name = 'cs6_08a_struct01' }, - ['1718066666'] = { Name = 'cs6_08a_struct02' }, - ['1396602776'] = { Name = 'cs6_08a_struct03' }, - ['848001673'] = { Name = 'cs6_08a_struct04_beam' }, - ['1088738021'] = { Name = 'cs6_08a_struct04' }, - ['1709413960'] = { Name = 'cs6_08a_struct05_poles' }, - ['796078082'] = { Name = 'cs6_08a_struct05' }, - ['256110496'] = { Name = 'cs6_08a_struct06' }, - ['-63092333'] = { Name = 'cs6_08a_struct07' }, - ['-1219511346'] = { Name = 'cs6_08a_weed_01' }, - ['-1526098110'] = { Name = 'cs6_08a_weed_02' }, - ['-52803882'] = { Name = 'cs6_08a_weed_03' }, - ['101203855'] = { Name = 'cs6_08atrack1' }, - ['-817442291'] = { Name = 'cs6_08atrack2' }, - ['1348031524'] = { Name = 'cs6_08atrack3' }, - ['741411796'] = { Name = 'cs6_08atrack4' }, - ['53153067'] = { Name = 'cs6_09_bge2_shd_lod' }, - ['-1553720859'] = { Name = 'cs6_09_bridge2_railing' }, - ['-1823678403'] = { Name = 'cs6_09_bridge2_shd' }, - ['2045409354'] = { Name = 'cs6_09_bridge2' }, - ['-460469849'] = { Name = 'cs6_09_culvert00a' }, - ['-1225921948'] = { Name = 'cs6_09_deczi_01a' }, - ['531119063'] = { Name = 'cs6_09_deczi_01b' }, - ['579281616'] = { Name = 'cs6_09_deczi01' }, - ['-863915113'] = { Name = 'cs6_09_deczi02a' }, - ['1188227943'] = { Name = 'cs6_09_deczi03' }, - ['-536848268'] = { Name = 'cs6_09_deczi04a' }, - ['-742998047'] = { Name = 'cs6_09_deczi04b' }, - ['-1217999727'] = { Name = 'cs6_09_deczi05' }, - ['-375246585'] = { Name = 'cs6_09_deczi06' }, - ['-380467834'] = { Name = 'cs6_09_drtrd_01' }, - ['-1333947427'] = { Name = 'cs6_09_drtrd_02' }, - ['-957468864'] = { Name = 'cs6_09_land_01' }, - ['-1246917441'] = { Name = 'cs6_09_land_02' }, - ['-74980348'] = { Name = 'cs6_09_land_02b' }, - ['-1616944981'] = { Name = 'cs6_09_land_03' }, - ['-1847474896'] = { Name = 'cs6_09_land_04' }, - ['-1944798826'] = { Name = 'cs6_09_land_05' }, - ['2120097321'] = { Name = 'cs6_09_land_06' }, - ['-290322744'] = { Name = 'cs6_09_pipe002' }, - ['-589422391'] = { Name = 'cs6_09_pipe01' }, - ['1226300766'] = { Name = 'cs6_09_river1_slod' }, - ['945418830'] = { Name = 'cs6_09_river1' }, - ['-65392741'] = { Name = 'cs6_09_river2_slod' }, - ['784588578'] = { Name = 'cs6_09_river2' }, - ['699976810'] = { Name = 'cs6_10_069' }, - ['-1233814769'] = { Name = 'cs6_10_68' }, - ['1691130027'] = { Name = 'cs6_10_billbd_003' }, - ['1697049754'] = { Name = 'cs6_10_billbd_01' }, - ['1109927581'] = { Name = 'cs6_10_billbd_03' }, - ['-1334282593'] = { Name = 'cs6_10_billboard01' }, - ['-564150219'] = { Name = 'cs6_10_build1' }, - ['796549737'] = { Name = 'cs6_10_build2' }, - ['871552818'] = { Name = 'cs6_10_building_farm' }, - ['-2094860705'] = { Name = 'cs6_10_cs_brrier_004' }, - ['1820150036'] = { Name = 'cs6_10_cs_brrier_005' }, - ['-1741938579'] = { Name = 'cs6_10_cs_brrier_009' }, - ['-435340466'] = { Name = 'cs6_10_cs_brrier_010' }, - ['-205826390'] = { Name = 'cs6_10_cs_brrier_011' }, - ['1206386418'] = { Name = 'cs6_10_cs_brrier_014' }, - ['-510905796'] = { Name = 'cs6_10_cs_brrier_017' }, - ['-21205860'] = { Name = 'cs6_10_cs_brrier_018' }, - ['234556185'] = { Name = 'cs6_10_cs_brrier_019' }, - ['527964995'] = { Name = 'cs6_10_cs_brrier_020' }, - ['1370554292'] = { Name = 'cs6_10_cs_brrier_021' }, - ['1840822211'] = { Name = 'cs6_10_cs_brrier_023' }, - ['1214586400'] = { Name = 'cs6_10_decals_01' }, - ['2110458091'] = { Name = 'cs6_10_decals_02' }, - ['1678955899'] = { Name = 'cs6_10_decals_03' }, - ['728818740'] = { Name = 'cs6_10_decals_04' }, - ['-111280113'] = { Name = 'cs6_10_decals_05' }, - ['1464712177'] = { Name = 'cs6_10_decals_06' }, - ['-1122485735'] = { Name = 'cs6_10_desert_hse_2a' }, - ['1841310388'] = { Name = 'cs6_10_desert_hse_2axt' }, - ['-1851800969'] = { Name = 'cs6_10_deserthouse_007_xtra' }, - ['1330162173'] = { Name = 'cs6_10_deserthouse_007' }, - ['-716145295'] = { Name = 'cs6_10_details_farm' }, - ['-2124457081'] = { Name = 'cs6_10_details' }, - ['-566490784'] = { Name = 'cs6_10_emissive_lod' }, - ['-1711307965'] = { Name = 'cs6_10_emissive' }, - ['1870307852'] = { Name = 'cs6_10_emissive1_lod' }, - ['-235026393'] = { Name = 'cs6_10_emissive1' }, - ['-877718262'] = { Name = 'cs6_10_emissive2_lod' }, - ['-1598544491'] = { Name = 'cs6_10_emissive2' }, - ['-953946241'] = { Name = 'cs6_10_gas_rocks007' }, - ['36498559'] = { Name = 'cs6_10_gas_station' }, - ['-1545759284'] = { Name = 'cs6_10_laddera' }, - ['-1993865629'] = { Name = 'cs6_10_land01_decals' }, - ['-1084509319'] = { Name = 'cs6_10_land01_decals001' }, - ['1249649011'] = { Name = 'cs6_10_land01' }, - ['-710883717'] = { Name = 'cs6_10_land03_decals' }, - ['1771560874'] = { Name = 'cs6_10_land03' }, - ['-1953772329'] = { Name = 'cs6_10_nojoker' }, - ['1393470169'] = { Name = 'cs6_10_railing' }, - ['1099024726'] = { Name = 'cs6_10_tg' }, - ['1968791137'] = { Name = 'cs6_10_tgt' }, - ['-148745862'] = { Name = 'cs6_10_tiretrks00' }, - ['136901511'] = { Name = 'cs6_10_tiretrks01' }, - ['-462902265'] = { Name = 'cs6_10_tiretrks02' }, - ['-1277834526'] = { Name = 'cs6_10_tiretrks03' }, - ['-1040914656'] = { Name = 'cs6_10_tiretrks04' }, - ['-1785295260'] = { Name = 'cs6_10_tiretrks05' }, - ['-1588484646'] = { Name = 'cs6_10_tiretrks06' }, - ['1911277327'] = { Name = 'cs6_10_tiretrks07' }, - ['1042826250'] = { Name = 'cs6_10_weed_01' }, - ['436566929'] = { Name = 'cs6_10_weed_02' }, - ['196796156'] = { Name = 'cs6_10_weed_03' }, - ['-899192822'] = { Name = 'cs6_lod_em_slod3' }, - ['1625755713'] = { Name = 'cs6_lod_slod3_01' }, - ['1462303941'] = { Name = 'cs6_lod_slod3_02' }, - ['734406144'] = { Name = 'cs6_lod_slod3_03' }, - ['445416333'] = { Name = 'cs6_lod_slod3_04' }, - ['1767325783'] = { Name = 'cs6_rd_props_backwire030' }, - ['-2115053015'] = { Name = 'cs6_rd_props_combo_dslod' }, - ['242184401'] = { Name = 'cs6_rd_props_combo02_dslod' }, - ['-1540463829'] = { Name = 'cs6_rd_props_combo03_dslod' }, - ['266877826'] = { Name = 'cs6_rd_props_combo04_dslod' }, - ['-1284342579'] = { Name = 'cs6_rd_props_combo05_dslod' }, - ['260402204'] = { Name = 'cs6_rd_props_combo06_dslod' }, - ['1687444383'] = { Name = 'cs6_rd_props_combo07_dslod' }, - ['288585151'] = { Name = 'cs6_rd_props_combo09_dslod' }, - ['-752088566'] = { Name = 'cs6_rd_props_combo10_dslod' }, - ['-1108409148'] = { Name = 'cs6_rd_props_combo11_dslod' }, - ['859017127'] = { Name = 'cs6_rd_props_combo13_dslod' }, - ['1156837704'] = { Name = 'cs6_rd_props_combo14_dslod' }, - ['-1838879457'] = { Name = 'cs6_rd_props_combo15_dslod' }, - ['-633462745'] = { Name = 'cs6_rd_props_combo16_dslod' }, - ['1101288160'] = { Name = 'cs6_rd_props_combo17_dslod' }, - ['-246110504'] = { Name = 'cs6_rd_props_combo21_dslod' }, - ['-1476497295'] = { Name = 'cs6_rd_props_combo22_dslod' }, - ['1014104930'] = { Name = 'cs6_rd_props_combo23_dslod' }, - ['1649640931'] = { Name = 'cs6_rd_props_combo24_dslod' }, - ['-1253744992'] = { Name = 'cs6_rd_props_combo25_dslod' }, - ['999407888'] = { Name = 'cs6_rd_props_combo26_dslod' }, - ['-623269308'] = { Name = 'cs6_rd_props_combo28_dslod' }, - ['-296400018'] = { Name = 'cs6_rd_props_combo29_dslod' }, - ['920256376'] = { Name = 'cs6_rd_props_combo30_dslod' }, - ['778360570'] = { Name = 'cs6_rd_props_combo31_dslod' }, - ['-186701349'] = { Name = 'cs6_rd_props_combo32_dslod' }, - ['-152803704'] = { Name = 'cs6_rd_props_combo33_dslod' }, - ['713435846'] = { Name = 'cs6_rd_props_combo34_dslod' }, - ['475040381'] = { Name = 'cs6_rd_props_combo35_dslod' }, - ['-1247871349'] = { Name = 'cs6_rd_props_combo36_slod' }, - ['-1936252098'] = { Name = 'cs6_rd_props_combo37_dslod' }, - ['-353133910'] = { Name = 'cs6_rd_props_combo38_dslod' }, - ['-1148183669'] = { Name = 'cs6_rd_props_combo39_dslod' }, - ['970857598'] = { Name = 'cs6_rd_props_combo40_dslod' }, - ['110986942'] = { Name = 'cs6_rd_props_combo41_dslod' }, - ['-890445052'] = { Name = 'cs6_rd_props_combo42_dslod' }, - ['-49172668'] = { Name = 'cs6_rd_props_combo43_dslod' }, - ['1287664070'] = { Name = 'cs6_rd_props_combo44_dslod' }, - ['835844368'] = { Name = 'cs6_rd_props_combo46_dslod' }, - ['-740636533'] = { Name = 'cs6_rd_props_combo48_dslod' }, - ['-1781149402'] = { Name = 'cs6_rd_props_combo50_dslod' }, - ['722174797'] = { Name = 'cs6_rd_props_combo51_dslod' }, - ['1377383093'] = { Name = 'cs6_rd_props_combo53_dslod' }, - ['-2038951014'] = { Name = 'cs6_rd_props_combo54_dslod' }, - ['565294167'] = { Name = 'cs6_rd_props_combo56_dslod' }, - ['827755135'] = { Name = 'cs6_rd_props_combo57_dslod' }, - ['-2026144634'] = { Name = 'cs6_rd_props_combo58_dslod' }, - ['1162586001'] = { Name = 'cs6_rd_props_combo61_dslod' }, - ['1988792310'] = { Name = 'cs6_rd_props_combo62_dslod' }, - ['-2012592168'] = { Name = 'cs6_rd_props_combo63_dslod' }, - ['-132749966'] = { Name = 'cs6_rd_props_combo64_dslod' }, - ['143753081'] = { Name = 'cs6_rd_props_combo65_dslod' }, - ['784833887'] = { Name = 'cs6_rd_props_combo66_dslod' }, - ['-580217887'] = { Name = 'cs6_rd_props_combo67_dslod' }, - ['1299713992'] = { Name = 'cs6_rd_props_combo68_dslod' }, - ['-930926066'] = { Name = 'cs6_rd_props_combo69_dslod' }, - ['-1874268051'] = { Name = 'cs6_rd_props_combo71_dslod' }, - ['1269593611'] = { Name = 'cs6_rd_props_combo72_dslod' }, - ['2037239750'] = { Name = 'cs6_rd_props_combo73_dslod' }, - ['1279378078'] = { Name = 'cs6_rd_props_combo74_dslod' }, - ['1432013008'] = { Name = 'cs6_rd_props_combo75_dslod' }, - ['1830876645'] = { Name = 'cs6_rd_props_combo76_dslod' }, - ['-1874178381'] = { Name = 'cs6_rd_props_combo77_dslod' }, - ['-967737821'] = { Name = 'cs6_rd_props_combo78_dslod' }, - ['1425510986'] = { Name = 'cs6_rd_props_combo79_dslod' }, - ['-1640094464'] = { Name = 'cs6_rd_props_cs3_04_tel_hvy005' }, - ['-1537350029'] = { Name = 'cs6_rd_props_cs6_sp_elec_wirestand003' }, - ['-1954768016'] = { Name = 'cs6_rd_props_cs6_sp_elec_wirethin003' }, - ['-1243743587'] = { Name = 'cs6_rd_props_cs6_sp_tele_wirethin003' }, - ['-1500115701'] = { Name = 'cs6_rd_props_cs6_spline029' }, - ['869144249'] = { Name = 'cs6_rd_props_cs6_spline030' }, - ['1100722772'] = { Name = 'cs6_rd_props_cs6_spline031' }, - ['1598287268'] = { Name = 'cs6_rd_props_cs6_spline032' }, - ['-1192845084'] = { Name = 'cs6_rd_props_cs6_spline033' }, - ['-699475020'] = { Name = 'cs6_rd_props_cs6_spline034' }, - ['-1698208602'] = { Name = 'cs6_rd_props_cs6_spline039' }, - ['1583541450'] = { Name = 'cs6_rd_props_cs6_spline040' }, - ['1277708373'] = { Name = 'cs6_rd_props_cs6_spline041' }, - ['1005987825'] = { Name = 'cs6_rd_props_cs6_spline042' }, - ['39826677'] = { Name = 'cs6_rd_props_cs6_spline044' }, - ['-266727318'] = { Name = 'cs6_rd_props_cs6_spline045' }, - ['-555422212'] = { Name = 'cs6_rd_props_cs6_spline046' }, - ['1524524529'] = { Name = 'cs6_rd_props_cs6_spline047' }, - ['910925004'] = { Name = 'cs6_rd_props_cs6_spline049' }, - ['-215211858'] = { Name = 'cs6_rd_props_cs6_spline050' }, - ['239720169'] = { Name = 'cs6_rd_props_cs6_spline051' }, - ['397273521'] = { Name = 'cs6_rd_props_cs6_spline052' }, - ['-1992006163'] = { Name = 'cs6_rd_props_cs6_spline15' }, - ['636904316'] = { Name = 'cs6_rd_props_cs6wire_x030' }, - ['1406838389'] = { Name = 'cs6_rd_props_d_wire_spline030' }, - ['-1203636828'] = { Name = 'cs6_rd_props_elec_spline671' }, - ['1936092142'] = { Name = 'cs6_rd_props_elec_spline672' }, - ['-1628349921'] = { Name = 'cs6_rd_props_elec_spline672a' }, - ['1151569513'] = { Name = 'cs6_rd_props_elec_spline673' }, - ['266413285'] = { Name = 'cs6_rd_props_elec_spline674' }, - ['-461153856'] = { Name = 'cs6_rd_props_elec_wire_spl204' }, - ['-150798657'] = { Name = 'cs6_rd_props_elec_wire_spl205' }, - ['-1196457447'] = { Name = 'cs6_rd_props_elec_wire_spl206' }, - ['-894949878'] = { Name = 'cs6_rd_props_elec_wire_spl207' }, - ['-1654142066'] = { Name = 'cs6_rd_props_elec_wire_spl208' }, - ['-1355714783'] = { Name = 'cs6_rd_props_elec_wire_spl209' }, - ['-976250051'] = { Name = 'cs6_rd_props_elec_wire_spl219' }, - ['-1826933583'] = { Name = 'cs6_rd_props_elec_wire_spl220' }, - ['-2132832198'] = { Name = 'cs6_rd_props_elec_wire_spl221' }, - ['-1531783200'] = { Name = 'cs6_rd_props_elec_wire_spl223' }, - ['-915103385'] = { Name = 'cs6_rd_props_elec_wire_spl224' }, - ['81303598'] = { Name = 'cs6_rd_props_elec_wire_spl226' }, - ['-613923506'] = { Name = 'cs6_rd_props_elec_wire_spl227' }, - ['676060948'] = { Name = 'cs6_rd_props_elec_wire_spl228' }, - ['386219143'] = { Name = 'cs6_rd_props_elec_wire_spl229' }, - ['2019997286'] = { Name = 'cs6_rd_props_elec_wire_spl353' }, - ['1722880763'] = { Name = 'cs6_rd_props_elec_wire_spl354' }, - ['-1661960327'] = { Name = 'cs6_rd_props_elec_wire_spl355' }, - ['792765467'] = { Name = 'cs6_rd_props_elec_wire_spl356' }, - ['-1650458316'] = { Name = 'cs6_rd_props_elec_wire_spl357' }, - ['-1369791831'] = { Name = 'cs6_rd_props_elec_wire_spl358' }, - ['-997208301'] = { Name = 'cs6_rd_props_elec_wire_spl359' }, - ['350972965'] = { Name = 'cs6_rd_props_elec_wire_spl360' }, - ['-266755454'] = { Name = 'cs6_rd_props_elec_wire_spl362' }, - ['-1041512921'] = { Name = 'cs6_rd_props_elec_wire_spl363' }, - ['-1398039641'] = { Name = 'cs6_rd_props_elec_wire_spl364' }, - ['-1099612358'] = { Name = 'cs6_rd_props_elec_wire_spl365' }, - ['2080094780'] = { Name = 'cs6_rd_props_elec_wire_spl367' }, - ['1311956651'] = { Name = 'cs6_rd_props_elec_wire_spl368' }, - ['1619133533'] = { Name = 'cs6_rd_props_elec_wire_spl370' }, - ['1907140274'] = { Name = 'cs6_rd_props_elec_wire_spl371' }, - ['1274895188'] = { Name = 'cs6_rd_props_elec_wire_spl372' }, - ['1946135460'] = { Name = 'cs6_rd_props_elec_wire_spl373' }, - ['1237210914'] = { Name = 'cs6_rd_props_elec_wire_spl374' }, - ['1483994253'] = { Name = 'cs6_rd_props_elec_wire_spl375' }, - ['642322488'] = { Name = 'cs6_rd_props_elec_wire_spl376' }, - ['1017789690'] = { Name = 'cs6_rd_props_elec_wire_spl377' }, - ['182737263'] = { Name = 'cs6_rd_props_elec_wire_spl378' }, - ['-517208577'] = { Name = 'cs6_rd_props_elec_wire_spl379' }, - ['2047032631'] = { Name = 'cs6_rd_props_elec_wire_spl380' }, - ['1733105611'] = { Name = 'cs6_rd_props_elec_wire_spl381' }, - ['-727420292'] = { Name = 'cs6_rd_props_elec_wire_spl382' }, - ['-1453843480'] = { Name = 'cs6_rd_props_elec_wire_spl383' }, - ['-483913849'] = { Name = 'cs6_rd_props_elec_wire_spl386' }, - ['1056655136'] = { Name = 'cs6_rd_props_elec_wire_spl388' }, - ['443416306'] = { Name = 'cs6_rd_props_elec_wire_spl390' }, - ['-398648687'] = { Name = 'cs6_rd_props_elec_wire_spl391' }, - ['791208807'] = { Name = 'cs6_rd_props_elec_wire_spl619' }, - ['-372844032'] = { Name = 'cs6_rd_props_elec_wire_spl621' }, - ['-940818689'] = { Name = 'cs6_rd_props_elec_wire600' }, - ['-1869524922'] = { Name = 'cs6_rd_props_elec_wire604' }, - ['1238614728'] = { Name = 'cs6_rd_props_elec_wire608' }, - ['1006446363'] = { Name = 'cs6_rd_props_elec_wire609' }, - ['-1151654667'] = { Name = 'cs6_rd_props_elec_wire610' }, - ['-2082359805'] = { Name = 'cs6_rd_props_elec_wire614' }, - ['1296812240'] = { Name = 'cs6_rd_props_elec_wire618' }, - ['1536288092'] = { Name = 'cs6_rd_props_elec_wire619' }, - ['-957162784'] = { Name = 'cs6_rd_props_elec_wire621' }, - ['-605944670'] = { Name = 'cs6_rd_props_elec_wire622' }, - ['710779020'] = { Name = 'cs6_rd_props_elec_wire630' }, - ['2130266566'] = { Name = 'cs6_rd_props_elec_wire633' }, - ['1962979313'] = { Name = 'cs6_rd_props_elec_wire640' }, - ['1735955681'] = { Name = 'cs6_rd_props_elec_wire641' }, - ['1386212140'] = { Name = 'cs6_rd_props_elec_wire643' }, - ['776151667'] = { Name = 'cs6_rd_props_elec_wire645' }, - ['1116490501'] = { Name = 'cs6_rd_props_elec_wire648' }, - ['-188731538'] = { Name = 'cs6_rd_props_elec_wire649' }, - ['505543097'] = { Name = 'cs6_rd_props_elec_wire672' }, - ['246373076'] = { Name = 'cs6_rd_props_elec_wire673' }, - ['-482638867'] = { Name = 'cs6_rd_props_elec_wire675' }, - ['1072217402'] = { Name = 'cs6_rd_props_elec_wire676' }, - ['341108243'] = { Name = 'cs6_rd_props_elec_wire678' }, - ['252304253'] = { Name = 'cs6_rd_props_elec_wire679' }, - ['-1042461143'] = { Name = 'cs6_rd_props_elec_wire680' }, - ['1880435354'] = { Name = 'cs6_rd_props_elec_wire681' }, - ['98358823'] = { Name = 'cs6_rd_props_elec_wire683' }, - ['-1291079550'] = { Name = 'cs6_rd_props_elec_wire684' }, - ['-1455252240'] = { Name = 'cs6_rd_props_elec_wire685' }, - ['689314969'] = { Name = 'cs6_rd_props_elec_wire686' }, - ['1459681390'] = { Name = 'cs6_rd_props_elec_wire687' }, - ['-322493444'] = { Name = 'cs6_rd_props_elec_wire688' }, - ['-495186074'] = { Name = 'cs6_rd_props_elec_wire689' }, - ['1073203556'] = { Name = 'cs6_rd_props_elec_wire690' }, - ['-432531994'] = { Name = 'cs6_rd_props_elec_wire691' }, - ['1665830925'] = { Name = 'cs6_rd_props_elec_wire692' }, - ['2040315057'] = { Name = 'cs6_rd_props_elec_wire693' }, - ['-2000856334'] = { Name = 'cs6_rd_props_elec_wire694' }, - ['-1896192148'] = { Name = 'cs6_rd_props_elec_wire695' }, - ['-1371134465'] = { Name = 'cs6_rd_props_elec_wire696' }, - ['-796726664'] = { Name = 'cs6_rd_props_elec_wire698' }, - ['1613531597'] = { Name = 'cs6_rd_props_elec_wire699' }, - ['885230574'] = { Name = 'cs6_rd_props_elec_wire700' }, - ['1165372755'] = { Name = 'cs6_rd_props_elec_wire701' }, - ['-65846568'] = { Name = 'cs6_rd_props_elec_x671' }, - ['-2053425080'] = { Name = 'cs6_rd_props_elewirec_x72' }, - ['-1703066178'] = { Name = 'cs6_rd_props_newire01' }, - ['-1429739949'] = { Name = 'cs6_rd_props_newire02' }, - ['224373637'] = { Name = 'cs6_rd_props_newire03' }, - ['437109985'] = { Name = 'cs6_rd_props_newire04' }, - ['677142910'] = { Name = 'cs6_rd_props_newire05' }, - ['1182899656'] = { Name = 'cs6_rd_props_newire06' }, - ['-1001776801'] = { Name = 'cs6_rd_props_newire07' }, - ['-489892252'] = { Name = 'cs6_rd_props_newire09' }, - ['-21094061'] = { Name = 'cs6_rd_props_newirex01' }, - ['1678520338'] = { Name = 'cs6_rd_props_sitewire_spl009' }, - ['1704276996'] = { Name = 'cs6_rd_props_sitewire_spl010' }, - ['523577161'] = { Name = 'cs6_rd_props_sitewire_spl011' }, - ['268634341'] = { Name = 'cs6_rd_props_sitewire_spl012' }, - ['1179809151'] = { Name = 'cs6_rd_props_sitewire_spl015' }, - ['915658242'] = { Name = 'cs6_rd_props_sitewire_spl016' }, - ['565652909'] = { Name = 'cs6_rd_props_sitewire_spl024' }, - ['1175123540'] = { Name = 'cs6_rd_props_sitewire_spl026' }, - ['-582638393'] = { Name = 'cs6_rd_props_sitewire_spl027' }, - ['1250983771'] = { Name = 'cs6_rd_props_sitewire_spl028' }, - ['-1053779162'] = { Name = 'cs6_rd_props_sp_elec_stand004' }, - ['-1659093696'] = { Name = 'cs6_rd_props_sp_elec_thin004' }, - ['-906139449'] = { Name = 'cs6_rd_props_sp_tele_stand003' }, - ['-1742011101'] = { Name = 'cs6_rd_props_sp_tele_stand004' }, - ['-45258971'] = { Name = 'cs6_rd_props_wire_sp_el_th004' }, - ['-1167247111'] = { Name = 'cs6_rd_props_wire_sp_te_he004' }, - ['809035405'] = { Name = 'cs6_rd_props_wire_spline024' }, - ['-142281434'] = { Name = 'cs6_rd_props_wire_spline025' }, - ['-1879890432'] = { Name = 'cs6_rd_props_wire_spline029' }, - ['-572342098'] = { Name = 'cs6_rd_props_wire_spline031' }, - ['-1885297621'] = { Name = 'cs6_rd_props_wire_spline032' }, - ['-883483753'] = { Name = 'cs6_rd_props_wire_spline033' }, - ['-48431326'] = { Name = 'cs6_rd_props_wire_spline034' }, - ['1489024620'] = { Name = 'cs6_rd_props_wire_spline035' }, - ['1265277888'] = { Name = 'cs6_rd_props_wire_spline036' }, - ['-2111862487'] = { Name = 'cs6_rd_props_wire_spline037' }, - ['-1494166837'] = { Name = 'cs6_rd_props_wire_spline038' }, - ['1123225153'] = { Name = 'cs6_rd_props_wire_spline040' }, - ['-1621735670'] = { Name = 'cs6_rd_props_wire_spline042' }, - ['-532559652'] = { Name = 'cs6_rd_props_wire_spline045' }, - ['134795234'] = { Name = 'cs6_rd_props_wirecs6_x031' }, - ['1627905862'] = { Name = 'cs6_roads_00' }, - ['-898091091'] = { Name = 'cs6_roads_39' }, - ['-614967287'] = { Name = 'cs6_roads_40' }, - ['631467174'] = { Name = 'cs6_roads_41' }, - ['867895509'] = { Name = 'cs6_roads_42' }, - ['864055576'] = { Name = 'cs6_roads_99' }, - ['-2043731465'] = { Name = 'cs6_roads_99b' }, - ['1405025983'] = { Name = 'cs6_roads_armco_01' }, - ['1262378051'] = { Name = 'cs6_roads_armco_01a' }, - ['1516501646'] = { Name = 'cs6_roads_armco_01b' }, - ['1573556954'] = { Name = 'cs6_roads_armco_09' }, - ['1442165857'] = { Name = 'cs6_roads_armco_smsh_02' }, - ['194393004'] = { Name = 'cs6_roads_armcohill_01' }, - ['-512565410'] = { Name = 'cs6_roads_armcohill_02' }, - ['655944369'] = { Name = 'cs6_roads_armcohill_03' }, - ['-1175893971'] = { Name = 'cs6_roads_armorail' }, - ['973408147'] = { Name = 'cs6_roads_brd_07' }, - ['1805609671'] = { Name = 'cs6_roads_brd_08' }, - ['-2009029327'] = { Name = 'cs6_roads_brd_10' }, - ['-486778201'] = { Name = 'cs6_roads_brd_11' }, - ['-1738934372'] = { Name = 'cs6_roads_brd_12_shdw' }, - ['-203096968'] = { Name = 'cs6_roads_brd_12' }, - ['454915376'] = { Name = 'cs6_roads_brd_j7' }, - ['1892729375'] = { Name = 'cs6_roads_brj_007' }, - ['-832363378'] = { Name = 'cs6_roads_dec01' }, - ['69424338'] = { Name = 'cs6_roads_dec013' }, - ['-1155972421'] = { Name = 'cs6_roads_dec014' }, - ['-502182934'] = { Name = 'cs6_roads_dec02' }, - ['-217518631'] = { Name = 'cs6_roads_dec03' }, - ['-2072309569'] = { Name = 'cs6_roads_dec04' }, - ['-1729873519'] = { Name = 'cs6_roads_dec05' }, - ['-1431446236'] = { Name = 'cs6_roads_dec06' }, - ['-1144815793'] = { Name = 'cs6_roads_dec07' }, - ['1300341453'] = { Name = 'cs6_roads_dec08' }, - ['-1123614206'] = { Name = 'cs6_roads_dec09' }, - ['-110363625'] = { Name = 'cs6_roads_dec10' }, - ['-407021382'] = { Name = 'cs6_roads_dec11' }, - ['-685230192'] = { Name = 'cs6_roads_dec12' }, - ['385407510'] = { Name = 'cs6_roads_drd_020' }, - ['-95215413'] = { Name = 'cs6_roads_drd_022' }, - ['-1291806081'] = { Name = 'cs6_roads_drd_13a' }, - ['-2106586023'] = { Name = 'cs6_roads_drd_14' }, - ['-530724813'] = { Name = 'cs6_roads_drd_16' }, - ['-2030552355'] = { Name = 'cs6_roads_j2rd_06' }, - ['-854838255'] = { Name = 'cs6_roads_jrd_06' }, - ['663439812'] = { Name = 'cs6_roads_rbrid1_r1' }, - ['216208500'] = { Name = 'cs6_roads_rbrid1_r2' }, - ['-1715557110'] = { Name = 'cs6_roads_rbrid1' }, - ['1243031380'] = { Name = 'cs6_roads_roadbrg_01_dec' }, - ['-2130678575'] = { Name = 'cs6_roads_roadbrg_01_r1' }, - ['1382649764'] = { Name = 'cs6_roads_roadbrg_01_r2' }, - ['-102146395'] = { Name = 'cs6_roads_roadbrg_01_r3' }, - ['999782048'] = { Name = 'cs6_roads_roadbrg_01' }, - ['-214019926'] = { Name = 'cs6_roads_sign_01' }, - ['-1634986799'] = { Name = 'cs6_roads_sign_017' }, - ['265582436'] = { Name = 'cs6_roads_sign_018' }, - ['-1499285608'] = { Name = 'cs6_roads_sign_02' }, - ['-820246426'] = { Name = 'cs6_roads_sign_03' }, - ['24243473'] = { Name = 'cs6_roads_sign_04' }, - ['732971405'] = { Name = 'cs6_roads_sign_05' }, - ['-571464178'] = { Name = 'cs6_roads_sign_06' }, - ['1128689885'] = { Name = 'cs6_roads_sign_07' }, - ['956914787'] = { Name = 'cs6_roads_sign_08' }, - ['583643108'] = { Name = 'cs6_roads_sign_09' }, - ['-1659985604'] = { Name = 'cs6_roads_sign_10' }, - ['499720875'] = { Name = 'cs6_roads_sign_11' }, - ['260474406'] = { Name = 'cs6_roads_sign_12' }, - ['-2110755968'] = { Name = 'cs6_roads_sign_13' }, - ['1945554701'] = { Name = 'cs6_roads_sign_14' }, - ['1215559684'] = { Name = 'cs6_roads_sign_15' }, - ['-1888221689'] = { Name = 'cs6_roads_sign_19' }, - ['-1921318099'] = { Name = 'cs6_roads_sign_20' }, - ['835305005'] = { Name = 'cs6_roads_sign_21_lod' }, - ['-1663262224'] = { Name = 'cs6_roads_sign_21' }, - ['-1326462442'] = { Name = 'cs6_roads_sign_22' }, - ['808405135'] = { Name = 'cs6_roads_sign_23' }, - ['1132851004'] = { Name = 'cs6_roads_sign_24' }, - ['-735309686'] = { Name = 'cs6_roads_sign_25' }, - ['1507985588'] = { Name = 'cs6_roads_sign_26_lod' }, - ['-433998731'] = { Name = 'cs6_roads_sign_26' }, - ['428289365'] = { Name = 'cs6_roads_slt2' }, - ['-1133965569'] = { Name = 'cs6_roads020' }, - ['-1377504785'] = { Name = 'cs6_roads021' }, - ['-1843507740'] = { Name = 'cs6_roads08' }, - ['274544724'] = { Name = 'cs6_roadsb_armco_hill_5' }, - ['2009057979'] = { Name = 'cs6_roadsb_armco_hill_5a' }, - ['-2096766649'] = { Name = 'cs6_roadsb_armco_hill_5b' }, - ['1734759197'] = { Name = 'cs6_roadsb_armco_right010' }, - ['1900505960'] = { Name = 'cs6_roadsb_armco00' }, - ['-1812193375'] = { Name = 'cs6_roadsb_armco00a' }, - ['-1199932979'] = { Name = 'cs6_roadsb_armco01' }, - ['1185515585'] = { Name = 'cs6_roadsb_armco01a' }, - ['1170183257'] = { Name = 'cs6_roadsb_armco02' }, - ['-1319183194'] = { Name = 'cs6_roadsb_armco02a' }, - ['-1935826412'] = { Name = 'cs6_roadsb_armco03' }, - ['2044782531'] = { Name = 'cs6_roadsb_armco03a' }, - ['2027820507'] = { Name = 'cs6_roadsb_dirtrd006' }, - ['-801203686'] = { Name = 'cs6_roadsb_dirtrd006b' }, - ['-399776348'] = { Name = 'cs6_roadsb_jnct00' }, - ['-1243938557'] = { Name = 'cs6_roadsb_jnct01' }, - ['-876008225'] = { Name = 'cs6_roadsb_jnct02' }, - ['-1325500598'] = { Name = 'cs6_roadsb_jnct04' }, - ['2142737597'] = { Name = 'cs6_roadsb_jnct05' }, - ['-1803436463'] = { Name = 'cs6_roadsb_jnct06' }, - ['1713312926'] = { Name = 'cs6_roadsb_rb00' }, - ['1944104993'] = { Name = 'cs6_roadsb_rb01' }, - ['1917048453'] = { Name = 'cs6_roadsb_rba011' }, - ['-1682691739'] = { Name = 'cs6_roadsb_rba012' }, - ['-1755709053'] = { Name = 'cs6_roadsb_rd_sign_03' }, - ['1429147975'] = { Name = 'cs6_roadsb_ttrack01rd_dec' }, - ['-1934375558'] = { Name = 'cs6_roadsb00' }, - ['1645342775'] = { Name = 'cs6_roadsb03' }, - ['-1786793983'] = { Name = 'cs6_roadsb03a' }, - ['-1983970986'] = { Name = 'cs6_roadsb058_lod' }, - ['2004152760'] = { Name = 'cs6_roadsb058' }, - ['-1070900845'] = { Name = 'cs6_roadsb058a_lod' }, - ['1593870068'] = { Name = 'cs6_roadsb058a' }, - ['1132545973'] = { Name = 'cs6_roadsb079_lod' }, - ['-577618911'] = { Name = 'cs6_roadsb079' }, - ['1467982609'] = { Name = 'cs6_roadsb079a_lod' }, - ['-564374893'] = { Name = 'cs6_roadsb079a' }, - ['-1613739754'] = { Name = 'cs6_roadsb092_lod' }, - ['1340972650'] = { Name = 'cs6_roadsb092' }, - ['-2049465223'] = { Name = 'cs6_roadsb092a_lod' }, - ['1480212131'] = { Name = 'cs6_roadsb092a' }, - ['671256301'] = { Name = 'cs6_roadsb098_lod' }, - ['-1621410488'] = { Name = 'cs6_roadsb098' }, - ['1316406700'] = { Name = 'cs6_roadsb098a_lod' }, - ['-1767493666'] = { Name = 'cs6_roadsb098a' }, - ['727253986'] = { Name = 'cs6_roadsb10' }, - ['126795997'] = { Name = 'cs6_roadsb105_lod' }, - ['656904202'] = { Name = 'cs6_roadsb105' }, - ['-1120061813'] = { Name = 'cs6_roadsb105a_lod' }, - ['-1165797841'] = { Name = 'cs6_roadsb105a' }, - ['-1246778248'] = { Name = 'cs6_roadsb10a' }, - ['115489521'] = { Name = 'cs6_roadsb14' }, - ['-661365162'] = { Name = 'cs6_roadsb15' }, - ['-1588367415'] = { Name = 'cs6_roadsb16' }, - ['-2090781723'] = { Name = 'cs6_roadsb17' }, - ['-1120917618'] = { Name = 'cs6_roadsb18' }, - ['-31177076'] = { Name = 'cs6_roadsb18b' }, - ['-1057964585'] = { Name = 'cs6_roadsb20' }, - ['-1364059814'] = { Name = 'cs6_roadsb21' }, - ['-2077998017'] = { Name = 'cs6_roadsb23' }, - ['2034314873'] = { Name = 'cs6_roadsb24' }, - ['1735822052'] = { Name = 'cs6_roadsb25' }, - ['1549694132'] = { Name = 'cs6_roadsb26' }, - ['1070316431'] = { Name = 'cs6_roadsb28' }, - ['772610066'] = { Name = 'cs6_roadsb29' }, - ['302579747'] = { Name = 'cs6_roadsb30' }, - ['-1072047034'] = { Name = 'cs6_roadsb32' }, - ['-610430131'] = { Name = 'cs6_roadsb34' }, - ['1524568530'] = { Name = 'cs6_roadsb35' }, - ['610116824'] = { Name = 'cs6_roadsb39' }, - ['834101995'] = { Name = 'cs6_roadsb40' }, - ['1128859150'] = { Name = 'cs6_roadsb41' }, - ['2121768009'] = { Name = 'cs6_roadsb42_dirt' }, - ['1580415970'] = { Name = 'cs6_roadsb42' }, - ['-2071806095'] = { Name = 'cs6_roadsb42b' }, - ['-635554886'] = { Name = 'cs6_roadsb43' }, - ['-378711464'] = { Name = 'cs6_roadsb44' }, - ['387722677'] = { Name = 'cs6_roadsb46' }, - ['-1760645732'] = { Name = 'cs6_roadsb47' }, - ['-1297980221'] = { Name = 'cs6_roadsb49' }, - ['-1669318829'] = { Name = 'cs6_roadsb50' }, - ['462534008'] = { Name = 'cs6_roadsb51' }, - ['-1490973837'] = { Name = 'cs6_roadsb51b' }, - ['790903945'] = { Name = 'cs6_roadsb98' }, - ['-1028012810'] = { Name = 'cs6_roadsc_dtjnc06' }, - ['445758359'] = { Name = 'cs6_roadsc01' }, - ['743989028'] = { Name = 'cs6_roadsc04' }, - ['-813259394'] = { Name = 'cs6_roadsc07' }, - ['-1990226239'] = { Name = 'cs6_roadsc10' }, - ['797367077'] = { Name = 'cs6_roadsc15' }, - ['-1879798962'] = { Name = 'cs6_roadsc15a' }, - ['-1261710084'] = { Name = 'cs6_roadsc15b' }, - ['-633426054'] = { Name = 'cs6_roadsc20' }, - ['1976034950'] = { Name = 'cs6_roadsc23' }, - ['1672168013'] = { Name = 'cs6_roadsc26' }, - ['1187013448'] = { Name = 'cs6_roadsc26a' }, - ['1788432153'] = { Name = 'cs6_roadsc32' }, - ['-226828578'] = { Name = 'cs6_roadsc37' }, - ['-1896638511'] = { Name = 'cs6_roadsc39' }, - ['2100065063'] = { Name = 'cs6_roadsc40' }, - ['877617518'] = { Name = 'cs6_roadsc41' }, - ['-1262099879'] = { Name = 'cs6_roadsc44' }, - ['-525649377'] = { Name = 'cs6_roadsc47' }, - ['-1319603082'] = { Name = 'cs6_roadsc50' }, - ['-626374887'] = { Name = 'cs6_roadsc51' }, - ['1295756350'] = { Name = 'cs6_roadsc57' }, - ['-1988720319'] = { Name = 'csb_abigail' }, - ['-680474188'] = { Name = 'csb_agent' }, - ['117698822'] = { Name = 'csb_anita' }, - ['-1513650250'] = { Name = 'csb_anton' }, - ['-1410400252'] = { Name = 'csb_ballasog' }, - ['-2101379423'] = { Name = 'csb_bride' }, - ['-1931689897'] = { Name = 'csb_burgerdrug' }, - ['71501447'] = { Name = 'csb_car3guy1' }, - ['327394568'] = { Name = 'csb_car3guy2' }, - ['-1555576182'] = { Name = 'csb_chef' }, - ['-1369710022'] = { Name = 'csb_chef2' }, - ['-1463670378'] = { Name = 'csb_chin_goon' }, - ['-890640939'] = { Name = 'csb_cletus' }, - ['-1699520669'] = { Name = 'csb_cop' }, - ['-1538297973'] = { Name = 'csb_customer' }, - ['-1249041111'] = { Name = 'csb_denise_friend' }, - ['466359675'] = { Name = 'csb_fos_rep' }, - ['-1567723049'] = { Name = 'csb_g' }, - ['2058033618'] = { Name = 'csb_groom' }, - ['-396800478'] = { Name = 'csb_grove_str_dlr' }, - ['-325152996'] = { Name = 'csb_hao' }, - ['1863555924'] = { Name = 'csb_hugh' }, - ['-482210853'] = { Name = 'csb_imran' }, - ['1153203121'] = { Name = 'csb_jackhowitzer' }, - ['-1040164288'] = { Name = 'csb_janitor' }, - ['-1127975477'] = { Name = 'csb_maude' }, - ['-1734476390'] = { Name = 'csb_money' }, - ['1841036427'] = { Name = 'csb_mp_agent14' }, - ['1631478380'] = { Name = 'csb_mweather' }, - ['-1059388209'] = { Name = 'csb_ortega' }, - ['-199280229'] = { Name = 'csb_oscar' }, - ['1528799427'] = { Name = 'csb_paige' }, - ['1635617250'] = { Name = 'csb_popov' }, - ['793443893'] = { Name = 'csb_porndudes' }, - ['-267695653'] = { Name = 'csb_prologuedriver' }, - ['2141384740'] = { Name = 'csb_prolsec' }, - ['-1031795266'] = { Name = 'csb_ramp_gang' }, - ['-2054384456'] = { Name = 'csb_ramp_hic' }, - ['569740212'] = { Name = 'csb_ramp_hipster' }, - ['1634506681'] = { Name = 'csb_ramp_marine' }, - ['-162605104'] = { Name = 'csb_ramp_mex' }, - ['411081129'] = { Name = 'csb_rashcosvki' }, - ['776079908'] = { Name = 'csb_reporter' }, - ['-1436281204'] = { Name = 'csb_roccopelosi' }, - ['-1948177172'] = { Name = 'csb_screen_writer' }, - ['-1360365899'] = { Name = 'csb_stripper_01' }, - ['-2126242959'] = { Name = 'csb_stripper_02' }, - ['1665391897'] = { Name = 'csb_tonya' }, - ['-567724045'] = { Name = 'csb_trafficwarden' }, - ['-277325206'] = { Name = 'csb_undercover' }, - ['-548750436'] = { Name = 'csx_coastbigroc01_' }, - ['-640797613'] = { Name = 'csx_coastbigroc02_' }, - ['654364075'] = { Name = 'csx_coastbigroc03_' }, - ['1817631362'] = { Name = 'csx_coastbigroc05_' }, - ['-406418278'] = { Name = 'csx_coastboulder_00_' }, - ['318791597'] = { Name = 'csx_coastboulder_01_' }, - ['-927773644'] = { Name = 'csx_coastboulder_02_' }, - ['782451186'] = { Name = 'csx_coastboulder_03_' }, - ['-1054119912'] = { Name = 'csx_coastboulder_04_' }, - ['317753433'] = { Name = 'csx_coastboulder_05_' }, - ['-480433589'] = { Name = 'csx_coastboulder_06_' }, - ['1565626866'] = { Name = 'csx_coastboulder_07_' }, - ['2041530653'] = { Name = 'csx_coastrok1_' }, - ['2095829758'] = { Name = 'csx_coastrok2_' }, - ['1289401397'] = { Name = 'csx_coastrok3_' }, - ['-742243550'] = { Name = 'csx_coastrok4_' }, - ['-1483739285'] = { Name = 'csx_coastsmalrock_01_' }, - ['-1384485088'] = { Name = 'csx_coastsmalrock_02_' }, - ['-1319536642'] = { Name = 'csx_coastsmalrock_03_' }, - ['1491780594'] = { Name = 'csx_coastsmalrock_04_' }, - ['1919186893'] = { Name = 'csx_coastsmalrock_05_' }, - ['1167218227'] = { Name = 'csx_rvrbldr_biga_' }, - ['-1528948627'] = { Name = 'csx_rvrbldr_bigb_' }, - ['-864623042'] = { Name = 'csx_rvrbldr_bigc_' }, - ['1650293377'] = { Name = 'csx_rvrbldr_bigd_' }, - ['717851250'] = { Name = 'csx_rvrbldr_bige_' }, - ['2131079343'] = { Name = 'csx_rvrbldr_meda_' }, - ['260722846'] = { Name = 'csx_rvrbldr_medb_' }, - ['896510124'] = { Name = 'csx_rvrbldr_medc_' }, - ['411430321'] = { Name = 'csx_rvrbldr_medd_' }, - ['882972519'] = { Name = 'csx_rvrbldr_mede_' }, - ['657266943'] = { Name = 'csx_rvrbldr_smla_' }, - ['-369713785'] = { Name = 'csx_rvrbldr_smlb_' }, - ['1492875887'] = { Name = 'csx_rvrbldr_smlc_' }, - ['479461537'] = { Name = 'csx_rvrbldr_smld_' }, - ['2088222527'] = { Name = 'csx_rvrbldr_smle_' }, - ['-1576642419'] = { Name = 'csx_saltconcclustr_a_' }, - ['902952478'] = { Name = 'csx_saltconcclustr_b_' }, - ['2040565390'] = { Name = 'csx_saltconcclustr_c_' }, - ['979439400'] = { Name = 'csx_saltconcclustr_d_' }, - ['-1529421138'] = { Name = 'csx_saltconcclustr_e_' }, - ['-1790269598'] = { Name = 'csx_saltconcclustr_f_' }, - ['698273556'] = { Name = 'csx_saltconcclustr_g_' }, - ['498735401'] = { Name = 'csx_seabed_bldr1_' }, - ['-55029899'] = { Name = 'csx_seabed_bldr2_' }, - ['-2117840493'] = { Name = 'csx_seabed_bldr3_' }, - ['1414264771'] = { Name = 'csx_seabed_bldr4_' }, - ['1944107080'] = { Name = 'csx_seabed_bldr5_' }, - ['634000516'] = { Name = 'csx_seabed_bldr6_' }, - ['-799804623'] = { Name = 'csx_seabed_bldr7_' }, - ['-451109406'] = { Name = 'csx_seabed_bldr8_' }, - ['1142829680'] = { Name = 'csx_seabed_rock1_' }, - ['920918328'] = { Name = 'csx_seabed_rock2_' }, - ['333207757'] = { Name = 'csx_seabed_rock3_' }, - ['846073356'] = { Name = 'csx_seabed_rock4_' }, - ['1398822296'] = { Name = 'csx_seabed_rock5_' }, - ['1064906466'] = { Name = 'csx_seabed_rock6_' }, - ['-1694705300'] = { Name = 'csx_seabed_rock7_' }, - ['1562830845'] = { Name = 'csx_seabed_rock8_' }, - ['145037532'] = { Name = 'csx_searocks_02' }, - ['-455356086'] = { Name = 'csx_searocks_03' }, - ['-81658410'] = { Name = 'csx_searocks_04' }, - ['-1049621901'] = { Name = 'csx_searocks_05' }, - ['-677562675'] = { Name = 'csx_searocks_06' }, - ['-644710429'] = { Name = 'cuban800' }, - ['-1006919392'] = { Name = 'cutter' }, - ['2006142190'] = { Name = 'daemon' }, - ['-1404136503'] = { Name = 'daemon2' }, - ['-642633187'] = { Name = 'db_apart_01_' }, - ['-2041934003'] = { Name = 'db_apart_01d_' }, - ['1940776766'] = { Name = 'db_apart_02_' }, - ['295402572'] = { Name = 'db_apart_02d_' }, - ['1121747524'] = { Name = 'db_apart_03_' }, - ['-846675574'] = { Name = 'db_apart_03d_' }, - ['1621622270'] = { Name = 'db_apart_05_' }, - ['392650501'] = { Name = 'db_apart_05d_' }, - ['1072814506'] = { Name = 'db_apart_06' }, - ['1934122839'] = { Name = 'db_apart_06d_' }, - ['-991475533'] = { Name = 'db_apart_07_' }, - ['-318720402'] = { Name = 'db_apart_07d_' }, - ['-1111377536'] = { Name = 'db_apart_08_' }, - ['1939440479'] = { Name = 'db_apart_08d_' }, - ['-1425688059'] = { Name = 'db_apart_09_' }, - ['1028373543'] = { Name = 'db_apart_09d_' }, - ['782164302'] = { Name = 'db_apart_10_' }, - ['-1508112247'] = { Name = 'db_apart_10d_' }, - ['487282005'] = { Name = 'dcl_metro_brd_007' }, - ['-104132907'] = { Name = 'dcl_metro_brd_008' }, - ['126134856'] = { Name = 'dcl_metro_brd_009' }, - ['-2128896348'] = { Name = 'dcl_metro_brd_010' }, - ['564599047'] = { Name = 'dcl_metro_brd_3' }, - ['-1905921401'] = { Name = 'dcl_metro_brd_6' }, - ['979025719'] = { Name = 'dcl_sub1_brd_004' }, - ['-2018649636'] = { Name = 'dcl_sub1_brd_005' }, - ['-1923029694'] = { Name = 'dcl_sub1_brd_006' }, - ['1192045716'] = { Name = 'dcl_sub1_brd_2' }, - ['888637545'] = { Name = 'dcl_sub1_brd_3' }, - ['822018448'] = { Name = 'defiler' }, - ['-1944618198'] = { Name = 'des_apartmentblock_skin' }, - ['1978019907'] = { Name = 'des_aptblock_root002' }, - ['1428112696'] = { Name = 'des_cables_root' }, - ['-231068272'] = { Name = 'des_cropduster_end' }, - ['2001650193'] = { Name = 'des_cropduster_root001' }, - ['-895129411'] = { Name = 'des_cropduster_root002' }, - ['-1661629090'] = { Name = 'des_cropduster_root003' }, - ['1875784464'] = { Name = 'des_cropduster_root004' }, - ['1080775751'] = { Name = 'des_cropduster_root005' }, - ['-1516614796'] = { Name = 'des_cropduster_start' }, - ['-164138958'] = { Name = 'des_door_end' }, - ['-550193384'] = { Name = 'des_door_rig_root_skel' }, - ['1149742288'] = { Name = 'des_door_root' }, - ['1664278248'] = { Name = 'des_door_start' }, - ['383496297'] = { Name = 'des_farmhs_root1' }, - ['152638692'] = { Name = 'des_farmhs_root2' }, - ['260415929'] = { Name = 'des_farmhs_root3' }, - ['21169460'] = { Name = 'des_farmhs_root4' }, - ['-217585474'] = { Name = 'des_farmhs_root5' }, - ['-533085406'] = { Name = 'des_farmhs_root6' }, - ['-1434069061'] = { Name = 'des_farmhs_root7' }, - ['-1009448359'] = { Name = 'des_farmhs_root8' }, - ['1505762659'] = { Name = 'des_fbowl_end' }, - ['-250643457'] = { Name = 'des_fbowl_root' }, - ['-973293264'] = { Name = 'des_fbowl_start' }, - ['1886192252'] = { Name = 'des_fib_ceil_end' }, - ['2016649'] = { Name = 'des_fib_ceil_root' }, - ['-2022446287'] = { Name = 'des_fib_ceil_rootb' }, - ['579289352'] = { Name = 'des_fib_ceil_start' }, - ['1354380322'] = { Name = 'des_fib_ceil2_end' }, - ['-232326576'] = { Name = 'des_fib_ceil2_root' }, - ['63344600'] = { Name = 'des_fib_ceil2_start' }, - ['-1942657047'] = { Name = 'des_fib_frame' }, - ['168277735'] = { Name = 'des_fibstair_end' }, - ['-2125205075'] = { Name = 'des_fibstair_root' }, - ['1865929795'] = { Name = 'des_fibstair_start' }, - ['-1377728674'] = { Name = 'des_finale_tunnel_end' }, - ['-1619573432'] = { Name = 'des_finale_tunnel_root000' }, - ['-1919114861'] = { Name = 'des_finale_tunnel_root001' }, - ['1514093273'] = { Name = 'des_finale_tunnel_root002' }, - ['-1333270679'] = { Name = 'des_finale_tunnel_root003' }, - ['1437479435'] = { Name = 'des_finale_tunnel_root004' }, - ['1086547934'] = { Name = 'des_finale_tunnel_start' }, - ['-2145849767'] = { Name = 'des_finale_vault_end' }, - ['-2077472160'] = { Name = 'des_finale_vault_root001' }, - ['-1830131748'] = { Name = 'des_finale_vault_root002' }, - ['-1484713719'] = { Name = 'des_finale_vault_root003' }, - ['-1270338921'] = { Name = 'des_finale_vault_root004' }, - ['-1026892662'] = { Name = 'des_finale_vault_start' }, - ['1707864744'] = { Name = 'des_floor_end' }, - ['-1188270169'] = { Name = 'des_floor_root' }, - ['1382754157'] = { Name = 'des_floor_start' }, - ['1356597343'] = { Name = 'des_frenchdoors_end' }, - ['769435876'] = { Name = 'des_frenchdoors_root' }, - ['894717662'] = { Name = 'des_frenchdoors_rootb' }, - ['-1884098102'] = { Name = 'des_frenchdoors_start' }, - ['-936226570'] = { Name = 'des_gasstation_skin01' }, - ['-614205607'] = { Name = 'des_gasstation_skin02' }, - ['2035006214'] = { Name = 'des_gasstation_tiles_root' }, - ['-1648029991'] = { Name = 'des_glass_end' }, - ['-1920760623'] = { Name = 'des_glass_root' }, - ['779064396'] = { Name = 'des_glass_root2' }, - ['-331018248'] = { Name = 'des_glass_root3' }, - ['1508928333'] = { Name = 'des_glass_root4' }, - ['-834863596'] = { Name = 'des_glass_start' }, - ['-1604368639'] = { Name = 'des_hospitaldoors_end' }, - ['-1645426293'] = { Name = 'des_hospitaldoors_skin_root1' }, - ['-1331532042'] = { Name = 'des_hospitaldoors_skin_root2' }, - ['2037317776'] = { Name = 'des_hospitaldoors_skin_root3' }, - ['1883006647'] = { Name = 'des_hospitaldoors_start_old' }, - ['-1386607732'] = { Name = 'des_hospitaldoors_start' }, - ['-1469834270'] = { Name = 'des_jewel_cab_end' }, - ['-1425822065'] = { Name = 'des_jewel_cab_root' }, - ['-1342906936'] = { Name = 'des_jewel_cab_root2' }, - ['37228785'] = { Name = 'des_jewel_cab_start' }, - ['1097883532'] = { Name = 'des_jewel_cab2_end' }, - ['728048740'] = { Name = 'des_jewel_cab2_root' }, - ['-1762788570'] = { Name = 'des_jewel_cab2_rootb' }, - ['-1846370968'] = { Name = 'des_jewel_cab2_start' }, - ['2103335194'] = { Name = 'des_jewel_cab3_end' }, - ['1488444473'] = { Name = 'des_jewel_cab3_root' }, - ['2035340319'] = { Name = 'des_jewel_cab3_rootb' }, - ['1768229041'] = { Name = 'des_jewel_cab3_start' }, - ['-677416883'] = { Name = 'des_jewel_cab4_end' }, - ['-1087326352'] = { Name = 'des_jewel_cab4_root' }, - ['-1255152186'] = { Name = 'des_jewel_cab4_rootb' }, - ['-1880169779'] = { Name = 'des_jewel_cab4_start' }, - ['675949685'] = { Name = 'des_light_panel_end' }, - ['320658776'] = { Name = 'des_light_panel_root' }, - ['-847333257'] = { Name = 'des_light_panel_start' }, - ['782136798'] = { Name = 'des_methtrailer_skin_root001' }, - ['493867905'] = { Name = 'des_methtrailer_skin_root002' }, - ['323075877'] = { Name = 'des_methtrailer_skin_root003' }, - ['-2119055022'] = { Name = 'des_plog_decal_root' }, - ['-1261290370'] = { Name = 'des_plog_door_end' }, - ['-1610620247'] = { Name = 'des_plog_door_root' }, - ['348593192'] = { Name = 'des_plog_door_start' }, - ['916681776'] = { Name = 'des_plog_light_root' }, - ['841168031'] = { Name = 'des_plog_vent_root' }, - ['-1916240257'] = { Name = 'des_protree_root' }, - ['-1800003411'] = { Name = 'des_railing_root' }, - ['276224379'] = { Name = 'des_scaffolding_root' }, - ['-142446087'] = { Name = 'des_scaffolding_tank_root' }, - ['86372469'] = { Name = 'des_server_end' }, - ['2061278280'] = { Name = 'des_server_root' }, - ['2095956688'] = { Name = 'des_server_start' }, - ['2060859228'] = { Name = 'des_shipsink_01' }, - ['-2070066454'] = { Name = 'des_shipsink_02' }, - ['1574534483'] = { Name = 'des_shipsink_03' }, - ['1740869943'] = { Name = 'des_shipsink_04' }, - ['538345934'] = { Name = 'des_shipsink_05' }, - ['-758464577'] = { Name = 'des_showroom_end' }, - ['-477618422'] = { Name = 'des_showroom_root' }, - ['1406818453'] = { Name = 'des_showroom_root2' }, - ['-1927132376'] = { Name = 'des_showroom_root3' }, - ['1874530394'] = { Name = 'des_showroom_root4' }, - ['-1466957309'] = { Name = 'des_showroom_root5' }, - ['1670584042'] = { Name = 'des_showroom_start' }, - ['1612944167'] = { Name = 'des_smash2_root' }, - ['-1019467355'] = { Name = 'des_smash2_root005' }, - ['134656817'] = { Name = 'des_smash2_root006' }, - ['-714275462'] = { Name = 'des_smash2_root2' }, - ['-433412363'] = { Name = 'des_smash2_root3' }, - ['-69119390'] = { Name = 'des_smash2_root4' }, - ['-107554569'] = { Name = 'des_stilthouse_root' }, - ['1164737558'] = { Name = 'des_stilthouse_root2' }, - ['273813986'] = { Name = 'des_stilthouse_root3' }, - ['568702217'] = { Name = 'des_stilthouse_root4' }, - ['-625760606'] = { Name = 'des_stilthouse_root5' }, - ['-952631381'] = { Name = 'des_stilthouse_root7' }, - ['-924581117'] = { Name = 'des_stilthouse_root8' }, - ['-973406923'] = { Name = 'des_stilthouse_root9' }, - ['2056002078'] = { Name = 'des_tankercrash_01' }, - ['-744663668'] = { Name = 'des_tankerexplosion_01' }, - ['-578262686'] = { Name = 'des_tankerexplosion_02' }, - ['44931046'] = { Name = 'des_trailerparka_01' }, - ['2037646701'] = { Name = 'des_trailerparka_02' }, - ['-2021669514'] = { Name = 'des_trailerparkb_01' }, - ['1966940401'] = { Name = 'des_trailerparkb_02' }, - ['-1911238752'] = { Name = 'des_trailerparkc_01' }, - ['-2083505385'] = { Name = 'des_trailerparkc_02' }, - ['-1249907970'] = { Name = 'des_trailerparkd_01' }, - ['-1531754139'] = { Name = 'des_trailerparkd_02' }, - ['1514180713'] = { Name = 'des_trailerparke_01' }, - ['286174602'] = { Name = 'des_traincrash_root1' }, - ['894826008'] = { Name = 'des_traincrash_root2' }, - ['598954707'] = { Name = 'des_traincrash_root3' }, - ['-1546792182'] = { Name = 'des_traincrash_root4' }, - ['1511407516'] = { Name = 'des_traincrash_root5' }, - ['1179162625'] = { Name = 'des_traincrash_root6' }, - ['1822975168'] = { Name = 'des_traincrash_root7' }, - ['281603393'] = { Name = 'des_tvsmash_end' }, - ['738334011'] = { Name = 'des_tvsmash_root' }, - ['2054093856'] = { Name = 'des_tvsmash_start' }, - ['-1583068368'] = { Name = 'des_vaultdoor001_end' }, - ['1769283422'] = { Name = 'des_vaultdoor001_root001' }, - ['6671677'] = { Name = 'des_vaultdoor001_root002' }, - ['232155166'] = { Name = 'des_vaultdoor001_root003' }, - ['453280378'] = { Name = 'des_vaultdoor001_root004' }, - ['710025493'] = { Name = 'des_vaultdoor001_root005' }, - ['-808227803'] = { Name = 'des_vaultdoor001_root006' }, - ['899544058'] = { Name = 'des_vaultdoor001_skin001' }, - ['290638124'] = { Name = 'des_vaultdoor001_start' }, - ['-239841468'] = { Name = 'diablous' }, - ['1790834270'] = { Name = 'diablous2' }, - ['-1130810103'] = { Name = 'dilettante' }, - ['1682114128'] = { Name = 'dilettante2' }, - ['1033245328'] = { Name = 'dinghy' }, - ['276773164'] = { Name = 'dinghy2' }, - ['509498602'] = { Name = 'dinghy3' }, - ['867467158'] = { Name = 'dinghy4' }, - ['31209694'] = { Name = 'dirtdecals' }, - ['1445068394'] = { Name = 'divisionnoshadows' }, - ['1770332643'] = { Name = 'dloader' }, - ['-2140210194'] = { Name = 'docktrailer' }, - ['-884690486'] = { Name = 'docktug' }, - ['-901163259'] = { Name = 'dodo' }, - ['80636076'] = { Name = 'dominator' }, - ['-915704871'] = { Name = 'dominator2' }, - ['-1670998136'] = { Name = 'double_' }, - ['1829708995'] = { Name = 'dt1_00_3_ovly' }, - ['1850573068'] = { Name = 'dt1_00_3_s' }, - ['1712668192'] = { Name = 'dt1_00_3' }, - ['-489093465'] = { Name = 'dt1_00_5_tdetail00' }, - ['-728307165'] = { Name = 'dt1_00_5_tdetail01' }, - ['240442782'] = { Name = 'dt1_00_5_tdetail02' }, - ['235277827'] = { Name = 'dt1_00_5' }, - ['-1106221192'] = { Name = 'dt1_00_6_tdetail00' }, - ['-1404058633'] = { Name = 'dt1_00_6_tdetail01' }, - ['467380654'] = { Name = 'dt1_00_6' }, - ['39614759'] = { Name = 'dt1_00_8_s' }, - ['-1488043887'] = { Name = 'dt1_00_8' }, - ['-1246314174'] = { Name = 'dt1_00_bld_b_ly1' }, - ['-1094795696'] = { Name = 'dt1_00_blendmt' }, - ['1528759302'] = { Name = 'dt1_00_blnds2_tnll' }, - ['599515043'] = { Name = 'dt1_00_cables1b' }, - ['966333232'] = { Name = 'dt1_00_cables2' }, - ['-1946126469'] = { Name = 'dt1_00_decals01' }, - ['220640389'] = { Name = 'dt1_00_glue_01' }, - ['-208300766'] = { Name = 'dt1_00_glue' }, - ['415805443'] = { Name = 'dt1_00_graf02' }, - ['723997888'] = { Name = 'dt1_00_graf03' }, - ['-99782003'] = { Name = 'dt1_00_graf04' }, - ['-1191029342'] = { Name = 'dt1_00_tdecals1' }, - ['963499643'] = { Name = 'dt1_00_tdecals2' }, - ['1668950675'] = { Name = 'dt1_00_tdecals3' }, - ['182086083'] = { Name = 'dt1_00_telegraph_cables_01' }, - ['-710115480'] = { Name = 'dt1_00_telegraph_cables_02' }, - ['-1399600394'] = { Name = 'dt1_00_tram_grill__lod' }, - ['1437032877'] = { Name = 'dt1_00_tram_grill_00' }, - ['1264733475'] = { Name = 'dt1_00_tram_grill_01' }, - ['959162550'] = { Name = 'dt1_00_tram_grill_02' }, - ['727113188'] = { Name = 'dt1_00_tramlines_01' }, - ['-707906860'] = { Name = 'dt1_00_tramlines_04' }, - ['-964062133'] = { Name = 'dt1_00_tramlines_07' }, - ['-1985211003'] = { Name = 'dt1_00_tramlines_sup' }, - ['1416408390'] = { Name = 'dt1_00_weed_01' }, - ['1848008897'] = { Name = 'dt1_00_weed_03' }, - ['1125649061'] = { Name = 'dt1_00_weed_04' }, - ['1235267972'] = { Name = 'dt1_01_build' }, - ['448021852'] = { Name = 'dt1_01_detail_1' }, - ['-1199305147'] = { Name = 'dt1_01_detail' }, - ['-2118673975'] = { Name = 'dt1_01_detail2' }, - ['-1817952862'] = { Name = 'dt1_01_detail3' }, - ['1083292924'] = { Name = 'dt1_01_globe' }, - ['927947297'] = { Name = 'dt1_01_hedge_1' }, - ['235407251'] = { Name = 'dt1_01_hedge_2' }, - ['109967531'] = { Name = 'dt1_01_hedge_3' }, - ['-591616759'] = { Name = 'dt1_01_hedge_4' }, - ['769640270'] = { Name = 'dt1_01_hedge_5' }, - ['1078586402'] = { Name = 'dt1_01_hedge_6' }, - ['260115089'] = { Name = 'dt1_01_hedge_7' }, - ['-1669225296'] = { Name = 'dt1_01_hedge_d' }, - ['-668760822'] = { Name = 'dt1_01_hedge_d1' }, - ['-429317739'] = { Name = 'dt1_01_hedge_d2' }, - ['1117444611'] = { Name = 'dt1_01_hedge_d3' }, - ['-1058711922'] = { Name = 'dt1_01_hedge_d4' }, - ['-826805709'] = { Name = 'dt1_01_hedge_d5' }, - ['-1636298316'] = { Name = 'dt1_01_hedge_d6' }, - ['-63320778'] = { Name = 'dt1_01_hedge_d7' }, - ['-359325078'] = { Name = 'dt1_01_hedge' }, - ['-147731675'] = { Name = 'dt1_01_ladder1' }, - ['-818455034'] = { Name = 'dt1_01_ladder10' }, - ['-578684261'] = { Name = 'dt1_01_ladder11' }, - ['-224647985'] = { Name = 'dt1_01_ladder12' }, - ['15843706'] = { Name = 'dt1_01_ladder13' }, - ['695709616'] = { Name = 'dt1_01_ladder2' }, - ['-1717268468'] = { Name = 'dt1_01_ladder3' }, - ['-874285943'] = { Name = 'dt1_01_ladder4' }, - ['-1101506189'] = { Name = 'dt1_01_ladder5' }, - ['-259899962'] = { Name = 'dt1_01_ladder6' }, - ['-1908999883'] = { Name = 'dt1_01_ladder7' }, - ['-2139595336'] = { Name = 'dt1_01_ladder8' }, - ['-1532713456'] = { Name = 'dt1_01_ladder9' }, - ['-1906152623'] = { Name = 'dt1_01_props_l_002' }, - ['-1429592282'] = { Name = 'dt1_01_rail1' }, - ['2099104722'] = { Name = 'dt1_01_rail2' }, - ['-1903464787'] = { Name = 'dt1_01_rail3' }, - ['1720295082'] = { Name = 'dt1_01_rail4' }, - ['1913697720'] = { Name = 'dt1_01_rail5' }, - ['1129470012'] = { Name = 'dt1_01_rail6' }, - ['1434320019'] = { Name = 'dt1_01_rail7' }, - ['839366051'] = { Name = 'dt1_01_rail8' }, - ['-1188005950'] = { Name = 'dt1_02_carpark_light' }, - ['1656912546'] = { Name = 'dt1_02_carparkbits' }, - ['-1060270803'] = { Name = 'dt1_02_carparkbits2' }, - ['-1506367362'] = { Name = 'dt1_02_carparkdecal' }, - ['-1133362060'] = { Name = 'dt1_02_carparkdecal2' }, - ['-1724644174'] = { Name = 'dt1_02_carparkextras' }, - ['-1806718705'] = { Name = 'dt1_02_carparkextras2' }, - ['1567621625'] = { Name = 'dt1_02_carparkground' }, - ['277808234'] = { Name = 'dt1_02_carparkground2' }, - ['1962266605'] = { Name = 'dt1_02_carparkreflection1' }, - ['-2111870400'] = { Name = 'dt1_02_carparkreflection2' }, - ['-301056163'] = { Name = 'dt1_02_carparkshadow' }, - ['1937798143'] = { Name = 'dt1_02_carparkshell' }, - ['20578413'] = { Name = 'dt1_02_decal' }, - ['-1699025667'] = { Name = 'dt1_02_decal2' }, - ['688163214'] = { Name = 'dt1_02_decal3' }, - ['956770707'] = { Name = 'dt1_02_decal4' }, - ['1296650775'] = { Name = 'dt1_02_decal5' }, - ['1672707819'] = { Name = 'dt1_02_decal6' }, - ['-234021984'] = { Name = 'dt1_02_decal7' }, - ['34847661'] = { Name = 'dt1_02_decal8' }, - ['828668387'] = { Name = 'dt1_02_ground_ns' }, - ['949462560'] = { Name = 'dt1_02_ground' }, - ['-1215639886'] = { Name = 'dt1_02_groundb_fizz1' }, - ['-983995825'] = { Name = 'dt1_02_groundb_fizz2' }, - ['-342903009'] = { Name = 'dt1_02_groundb_fizz3' }, - ['-700412799'] = { Name = 'dt1_02_groundb_fizz4' }, - ['-1555546936'] = { Name = 'dt1_02_groundb' }, - ['1673069606'] = { Name = 'dt1_02_hedge_d' }, - ['471156634'] = { Name = 'dt1_02_hedge_d1' }, - ['895187494'] = { Name = 'dt1_02_hedge_d2' }, - ['-25654175'] = { Name = 'dt1_02_hedge_d3' }, - ['147169531'] = { Name = 'dt1_02_hedge_d4' }, - ['-1036371879'] = { Name = 'dt1_02_helipad_01' }, - ['-1325984301'] = { Name = 'dt1_02_helipad_02' }, - ['-558829242'] = { Name = 'dt1_02_helipad_03' }, - ['1773562133'] = { Name = 'dt1_02_helipad' }, - ['1673482042'] = { Name = 'dt1_02_interior1' }, - ['-1207818184'] = { Name = 'dt1_02_ivy_d' }, - ['-609941279'] = { Name = 'dt1_02_logo' }, - ['-1659086905'] = { Name = 'dt1_02_logonight' }, - ['1493671061'] = { Name = 'dt1_02_night_01' }, - ['-691767827'] = { Name = 'dt1_02_rfl_proxy' }, - ['426595940'] = { Name = 'dt1_02_w01_glue02' }, - ['-1137389950'] = { Name = 'dt1_02_w01_rail' }, - ['324596106'] = { Name = 'dt1_02_w01' }, - ['87648892'] = { Name = 'dt1_02_waterfeature' }, - ['1054487540'] = { Name = 'dt1_02_xdetails1' }, - ['-705175007'] = { Name = 'dt1_02_xdetails2' }, - ['-936556916'] = { Name = 'dt1_02_xdetails3' }, - ['-1850549852'] = { Name = 'dt1_02_xdetails4' }, - ['-2088682175'] = { Name = 'dt1_02_xdetails5' }, - ['-1029948554'] = { Name = 'dt1_02_xdetails6' }, - ['71911936'] = { Name = 'dt1_03_b2_bush2' }, - ['1302092965'] = { Name = 'dt1_03_b2_bush3' }, - ['-1139664943'] = { Name = 'dt1_03_b2_detail_02' }, - ['-590598844'] = { Name = 'dt1_03_b2_detail_02b' }, - ['-369408094'] = { Name = 'dt1_03_b2_detail_02c' }, - ['-157687585'] = { Name = 'dt1_03_b2_detail_02d' }, - ['334076798'] = { Name = 'dt1_03_b2_detail_02f' }, - ['1904795184'] = { Name = 'dt1_03_benchirefm' }, - ['1466225443'] = { Name = 'dt1_03_bollardsint' }, - ['1040499932'] = { Name = 'dt1_03_build1_ns_bl' }, - ['1267335871'] = { Name = 'dt1_03_build1_ns_bl2' }, - ['912142851'] = { Name = 'dt1_03_build1_ns_gr' }, - ['-459864870'] = { Name = 'dt1_03_build1_ns_gr2' }, - ['1372382399'] = { Name = 'dt1_03_build1_ns' }, - ['338313627'] = { Name = 'dt1_03_build1_rail1' }, - ['1998042489'] = { Name = 'dt1_03_build1_rail2_b' }, - ['-1864832773'] = { Name = 'dt1_03_build1_rail2_c' }, - ['-2139809237'] = { Name = 'dt1_03_build1_rail2' }, - ['-544600100'] = { Name = 'dt1_03_build1_rail3_b_lod' }, - ['-1373067570'] = { Name = 'dt1_03_build1_rail3_b' }, - ['-2035145051'] = { Name = 'dt1_03_build1_rail3' }, - ['-1538033934'] = { Name = 'dt1_03_build1_rail4_b' }, - ['-586001556'] = { Name = 'dt1_03_build1_rail4' }, - ['1745520960'] = { Name = 'dt1_03_build1_rail5_b' }, - ['-238781232'] = { Name = 'dt1_03_build1_rail5' }, - ['499101441'] = { Name = 'dt1_03_build1_rail6_b' }, - ['-1742452339'] = { Name = 'dt1_03_build1_rail6' }, - ['-180177302'] = { Name = 'dt1_03_build1x' }, - ['1123985070'] = { Name = 'dt1_03_build2' }, - ['1993035863'] = { Name = 'dt1_03_build2top' }, - ['-250537611'] = { Name = 'dt1_03_bush_detail01' }, - ['-2103750249'] = { Name = 'dt1_03_carparkentrance' }, - ['-1649924230'] = { Name = 'dt1_03_carparkextras' }, - ['-1555137139'] = { Name = 'dt1_03_carparkextras2' }, - ['670402269'] = { Name = 'dt1_03_carparkextras3' }, - ['1766769220'] = { Name = 'dt1_03_carparkextras3b' }, - ['383720204'] = { Name = 'dt1_03_carparkint' }, - ['-726748334'] = { Name = 'dt1_03_carparkintreflect' }, - ['1166971849'] = { Name = 'dt1_03_detail1_b' }, - ['-1944186405'] = { Name = 'dt1_03_detail1' }, - ['23657583'] = { Name = 'dt1_03_detail2' }, - ['-425337351'] = { Name = 'dt1_03_detail20' }, - ['-1065224755'] = { Name = 'dt1_03_detail2int' }, - ['-276342612'] = { Name = 'dt1_03_detail3' }, - ['-1713976596'] = { Name = 'dt1_03_detail3b' }, - ['-2001632492'] = { Name = 'dt1_03_detail3int' }, - ['1870321813'] = { Name = 'dt1_03_detail4' }, - ['1153073941'] = { Name = 'dt1_03_detail5' }, - ['-1157009487'] = { Name = 'dt1_03_detail6' }, - ['-81398814'] = { Name = 'dt1_03_detailint' }, - ['-1642196058'] = { Name = 'dt1_03_detailint2' }, - ['-1668093257'] = { Name = 'dt1_03_detailz00' }, - ['-919256069'] = { Name = 'dt1_03_detailz01' }, - ['-1099551107'] = { Name = 'dt1_03_detailz02' }, - ['55654454'] = { Name = 'dt1_03_detailz03' }, - ['-646388606'] = { Name = 'dt1_03_detailz04' }, - ['1702713169'] = { Name = 'dt1_03_gr_closed' }, - ['-1732307234'] = { Name = 'dt1_03_grnd2_udlogo' }, - ['-87130919'] = { Name = 'dt1_03_grnd2' }, - ['-822029730'] = { Name = 'dt1_03_grnd2b' }, - ['-218019333'] = { Name = 'dt1_03_mp_door' }, - ['-2132057473'] = { Name = 'dt1_03_p01' }, - ['2007257073'] = { Name = 'dt1_03_p02' }, - ['-1552767083'] = { Name = 'dt1_03_p03' }, - ['-1843985186'] = { Name = 'dt1_03_p04' }, - ['-941821847'] = { Name = 'dt1_03_p05' }, - ['-1097081369'] = { Name = 'dt1_03_p06' }, - ['1459850948'] = { Name = 'dt1_03_p07' }, - ['1607016527'] = { Name = 'dt1_03_p08' }, - ['1913046218'] = { Name = 'dt1_03_p09' }, - ['-809206548'] = { Name = 'dt1_03_p10' }, - ['-1638557169'] = { Name = 'dt1_03_p11' }, - ['-1542019695'] = { Name = 'dt1_03_p12' }, - ['-886410384'] = { Name = 'dt1_03_p13' }, - ['-1720414203'] = { Name = 'dt1_03_p14' }, - ['-1357530297'] = { Name = 'dt1_03_p15' }, - ['2113329490'] = { Name = 'dt1_03_p16' }, - ['-2076908082'] = { Name = 'dt1_03_p17' }, - ['1384317547'] = { Name = 'dt1_03_p18' }, - ['1758867217'] = { Name = 'dt1_03_p19' }, - ['-216742748'] = { Name = 'dt1_03_p20' }, - ['-470079887'] = { Name = 'dt1_03_p21' }, - ['-486188139'] = { Name = 'dt1_03_rain_blocker' }, - ['-188208284'] = { Name = 'dt1_03_shadow' }, - ['621238889'] = { Name = 'dt1_04_build_rails1' }, - ['1480442065'] = { Name = 'dt1_04_build_rails2' }, - ['47268668'] = { Name = 'dt1_04_build' }, - ['-1814517019'] = { Name = 'dt1_04_detail' }, - ['1061558755'] = { Name = 'dt1_04_hedge_d' }, - ['-1651074109'] = { Name = 'dt1_04_hedge_d2' }, - ['45675930'] = { Name = 'dt1_04_hedge' }, - ['1623143400'] = { Name = 'dt1_04_hedge2' }, - ['-718979285'] = { Name = 'dt1_05_85' }, - ['-730718452'] = { Name = 'dt1_05_b1_pipe' }, - ['-519800699'] = { Name = 'dt1_05_build1_damage_lod' }, - ['-1404869155'] = { Name = 'dt1_05_build1_damage' }, - ['-842986252'] = { Name = 'dt1_05_build1_h' }, - ['-1732012867'] = { Name = 'dt1_05_build1_repair_slod' }, - ['251575206'] = { Name = 'dt1_05_build1_repair' }, - ['-705564830'] = { Name = 'dt1_05_build1_sd' }, - ['1376006980'] = { Name = 'dt1_05_build1dt' }, - ['-958475884'] = { Name = 'dt1_05_build2_alpha1' }, - ['-662080279'] = { Name = 'dt1_05_build2_alpha2' }, - ['-1436936053'] = { Name = 'dt1_05_build2_alpha3' }, - ['-1138770922'] = { Name = 'dt1_05_build2_alpha4' }, - ['-1019746905'] = { Name = 'dt1_05_build2_h' }, - ['-1540511625'] = { Name = 'dt1_05_build2dt' }, - ['-311790659'] = { Name = 'dt1_05_carpark_details' }, - ['-442611869'] = { Name = 'dt1_05_carpark_reflect' }, - ['1258133810'] = { Name = 'dt1_05_carparkshell' }, - ['-1162162671'] = { Name = 'dt1_05_cur1' }, - ['-1701919363'] = { Name = 'dt1_05_damage_slod' }, - ['-1906414362'] = { Name = 'dt1_05_deskseta_iref' }, - ['461265833'] = { Name = 'dt1_05_deskseta_iref001' }, - ['-1888992397'] = { Name = 'dt1_05_deskseta_iref002' }, - ['863611152'] = { Name = 'dt1_05_desksetb_iref' }, - ['-628465948'] = { Name = 'dt1_05_detailsb' }, - ['1007296994'] = { Name = 'dt1_05_detailsc' }, - ['-908214958'] = { Name = 'dt1_05_detailsnight2' }, - ['-749809612'] = { Name = 'dt1_05_detailsnight3' }, - ['349448432'] = { Name = 'dt1_05_fbi_colplug' }, - ['1376363359'] = { Name = 'dt1_05_fib_cut_slod' }, - ['-1304486413'] = { Name = 'dt1_05_fib_fakelobby' }, - ['1235414028'] = { Name = 'dt1_05_fount_decal' }, - ['844471823'] = { Name = 'dt1_05_gold_b1' }, - ['-1655933957'] = { Name = 'dt1_05_gold_b2' }, - ['1188513554'] = { Name = 'dt1_05_gold_b3' }, - ['1070086388'] = { Name = 'dt1_05_gold_b4' }, - ['-379974631'] = { Name = 'dt1_05_gold_b5' }, - ['1412751821'] = { Name = 'dt1_05_gold_b6' }, - ['1089504035'] = { Name = 'dt1_05_gold' }, - ['1728807543'] = { Name = 'dt1_05_gold2_b1' }, - ['-1737857740'] = { Name = 'dt1_05_gold2_b2' }, - ['1377378089'] = { Name = 'dt1_05_gold2' }, - ['1284595816'] = { Name = 'dt1_05_gold3_b1' }, - ['1143492502'] = { Name = 'dt1_05_gold3_b2' }, - ['-996342733'] = { Name = 'dt1_05_gold3' }, - ['-438455093'] = { Name = 'dt1_05_ground_2' }, - ['-1948811060'] = { Name = 'dt1_05_ground_l' }, - ['-1706588984'] = { Name = 'dt1_05_ground_sd1' }, - ['1049412812'] = { Name = 'dt1_05_ground' }, - ['220309607'] = { Name = 'dt1_05_hc_end_slod' }, - ['-1489846171'] = { Name = 'dt1_05_hc_end' }, - ['1108689718'] = { Name = 'dt1_05_hc_remove_slod' }, - ['1474375717'] = { Name = 'dt1_05_hc_remove' }, - ['-892978012'] = { Name = 'dt1_05_hc_req_slod' }, - ['1474444852'] = { Name = 'dt1_05_hc_req' }, - ['1903427375'] = { Name = 'dt1_05_hedge' }, - ['306395849'] = { Name = 'dt1_05_hedge2' }, - ['803674397'] = { Name = 'dt1_05_hedge2b' }, - ['-1575715466'] = { Name = 'dt1_05_hedge2c' }, - ['1154794232'] = { Name = 'dt1_05_hedge2d' }, - ['26319206'] = { Name = 'dt1_05_hedge3' }, - ['1442005572'] = { Name = 'dt1_05_hedge4' }, - ['1484900125'] = { Name = 'dt1_05_hedged' }, - ['1348574815'] = { Name = 'dt1_05_hedged2' }, - ['-223992036'] = { Name = 'dt1_05_int_dec' }, - ['-1824397903'] = { Name = 'dt1_05_int_dec02' }, - ['-1602060238'] = { Name = 'dt1_05_int_dec03' }, - ['-1448895322'] = { Name = 'dt1_05_int_undpshell' }, - ['1807591416'] = { Name = 'dt1_05_interiorlodbox' }, - ['1723517941'] = { Name = 'dt1_05_lad_mc02' }, - ['2124528085'] = { Name = 'dt1_05_lad1' }, - ['1348984162'] = { Name = 'dt1_05_lad2' }, - ['1511387326'] = { Name = 'dt1_05_lad3' }, - ['737481853'] = { Name = 'dt1_05_lad4' }, - ['1018607104'] = { Name = 'dt1_05_lad5' }, - ['394161040'] = { Name = 'dt1_05_lad6' }, - ['2052248577'] = { Name = 'dt1_05_ladder_02' }, - ['278839906'] = { Name = 'dt1_05_logo_lighta' }, - ['584869597'] = { Name = 'dt1_05_logo_lightb' }, - ['1582467255'] = { Name = 'dt1_05_logos_emissive_slod' }, - ['-1374648126'] = { Name = 'dt1_05_mission_extras' }, - ['-856321985'] = { Name = 'dt1_05_office_cheap' }, - ['825494943'] = { Name = 'dt1_05_office_day' }, - ['-803212906'] = { Name = 'dt1_05_office_lobby_milo_lod' }, - ['278165231'] = { Name = 'dt1_05_office_lobbyfake_lod' }, - ['-1960428002'] = { Name = 'dt1_05_reflproxy' }, - ['1655416315'] = { Name = 'dt1_05_rubble' }, - ['-1228271647'] = { Name = 'dt1_05_temp_lightfix' }, - ['-1350636301'] = { Name = 'dt1_05_templightfix2' }, - ['-1961996479'] = { Name = 'dt1_05_top_dc02' }, - ['2035264452'] = { Name = 'dt1_05_top_dc03' }, - ['-1675419712'] = { Name = 'dt1_05_top_mc02' }, - ['1199224229'] = { Name = 'dt1_05_top_mc02dl' }, - ['-1679438348'] = { Name = 'dt1_05_walllight' }, - ['509946395'] = { Name = 'dt1_05_walllightmission' }, - ['-2047635798'] = { Name = 'dt1_06__ladder_01' }, - ['-805260446'] = { Name = 'dt1_06_b1_gluea' }, - ['-1572349967'] = { Name = 'dt1_06_b1_glueb' }, - ['-1007124560'] = { Name = 'dt1_06_b2_deca' }, - ['2012145562'] = { Name = 'dt1_06_b2_decb' }, - ['-961154583'] = { Name = 'dt1_06_b2_ns' }, - ['1557973324'] = { Name = 'dt1_06_b3_dec' }, - ['336964337'] = { Name = 'dt1_06_b3_detail' }, - ['1996323682'] = { Name = 'dt1_06_build1_1_b1' }, - ['1765466077'] = { Name = 'dt1_06_build1_1_b2' }, - ['-2130919325'] = { Name = 'dt1_06_build1_1_graf' }, - ['-1764557739'] = { Name = 'dt1_06_build1_1' }, - ['-1667465823'] = { Name = 'dt1_06_build1b_1_detail' }, - ['571420283'] = { Name = 'dt1_06_build1b_1' }, - ['-2133231996'] = { Name = 'dt1_06_build2_1' }, - ['-1919686432'] = { Name = 'dt1_06_build2_dtail10' }, - ['1650287821'] = { Name = 'dt1_06_build2_dtail2' }, - ['1345306738'] = { Name = 'dt1_06_build2_dtail3' }, - ['1312439435'] = { Name = 'dt1_06_build2_dtail5' }, - ['1026005606'] = { Name = 'dt1_06_build2_dtail6' }, - ['733247360'] = { Name = 'dt1_06_build2_dtail7' }, - ['459986669'] = { Name = 'dt1_06_build2_dtail8' }, - ['150417926'] = { Name = 'dt1_06_build2_dtail9' }, - ['1229008788'] = { Name = 'dt1_06_build2_dtaila_lod' }, - ['68757594'] = { Name = 'dt1_06_build2_dtaila' }, - ['-229702458'] = { Name = 'dt1_06_build2_dtailb' }, - ['1415706619'] = { Name = 'dt1_06_build2_railing' }, - ['-966841591'] = { Name = 'dt1_06_build3_1' }, - ['-1020950490'] = { Name = 'dt1_06_build3_window_finish' }, - ['641996521'] = { Name = 'dt1_06_build3_window_fixed' }, - ['-409180194'] = { Name = 'dt1_06_build3_window_start' }, - ['666240703'] = { Name = 'dt1_06_g1_detail' }, - ['-389493198'] = { Name = 'dt1_06_g1_r2' }, - ['1166968764'] = { Name = 'dt1_06_g1_r3' }, - ['-640631747'] = { Name = 'dt1_06_g2_detail' }, - ['1022282567'] = { Name = 'dt1_06_gd1_ns' }, - ['-185712729'] = { Name = 'dt1_06_ground1' }, - ['104751687'] = { Name = 'dt1_06_ground2' }, - ['-728138766'] = { Name = 'dt1_06_hospitaldoor' }, - ['-271521294'] = { Name = 'dt1_06_hospitaldoors_fixed' }, - ['-455866827'] = { Name = 'dt1_06_hospitallod' }, - ['-1883962695'] = { Name = 'dt1_06_railling_b' }, - ['-1586256330'] = { Name = 'dt1_06_railling_c' }, - ['130413269'] = { Name = 'dt1_06_railling_d' }, - ['-487439275'] = { Name = 'dt1_06_rubble_01' }, - ['1926492051'] = { Name = 'dt1_06_sjump_01' }, - ['337096805'] = { Name = 'dt1_07_building2' }, - ['-1323768779'] = { Name = 'dt1_07_detaila' }, - ['-1532834999'] = { Name = 'dt1_07_detailb' }, - ['1850072720'] = { Name = 'dt1_07_detailc' }, - ['-2143878542'] = { Name = 'dt1_07_detaild' }, - ['1923610034'] = { Name = 'dt1_07_grounda' }, - ['1543260251'] = { Name = 'dt1_07_groundb' }, - ['-2056234901'] = { Name = 'dt1_07_hole_fence_01' }, - ['-510259019'] = { Name = 'dt1_07_hole_fence_02' }, - ['-1842270643'] = { Name = 'dt1_07_logo_sup' }, - ['1670865891'] = { Name = 'dt1_07_station' }, - ['-1743598800'] = { Name = 'dt1_08_crane_fizzya' }, - ['-1505695860'] = { Name = 'dt1_08_crane_fizzyb' }, - ['1955726383'] = { Name = 'dt1_08_crane_fizzyc' }, - ['1229646375'] = { Name = 'dt1_08_crane' }, - ['1448424340'] = { Name = 'dt1_08_fireescape' }, - ['1097572173'] = { Name = 'dt1_08_gate00' }, - ['39977003'] = { Name = 'dt1_08_gg_dtl' }, - ['939075742'] = { Name = 'dt1_08_glass' }, - ['-419784158'] = { Name = 'dt1_08_ground' }, - ['2073386992'] = { Name = 'dt1_08_ground2' }, - ['760532340'] = { Name = 'dt1_08_i400' }, - ['-231647442'] = { Name = 'dt1_08_i401' }, - ['1266674141'] = { Name = 'dt1_08_indust1_dt1' }, - ['-692645365'] = { Name = 'dt1_08_indust1_obj' }, - ['-273156033'] = { Name = 'dt1_08_indust1_rwire' }, - ['-197265864'] = { Name = 'dt1_08_indust1' }, - ['-178182238'] = { Name = 'dt1_08_indust1b_ladder' }, - ['602823972'] = { Name = 'dt1_08_indust1b' }, - ['-1809268774'] = { Name = 'dt1_08_indust2_dt1_fizz' }, - ['453072488'] = { Name = 'dt1_08_indust2_dt1' }, - ['-267617756'] = { Name = 'dt1_08_indust2_obj' }, - ['-1820245775'] = { Name = 'dt1_08_indust2_rwire' }, - ['1353418421'] = { Name = 'dt1_08_indust2_tread' }, - ['-1100445042'] = { Name = 'dt1_08_indust2' }, - ['1507175351'] = { Name = 'dt1_08_indust3_dt3' }, - ['1779715124'] = { Name = 'dt1_08_indust3_dt4' }, - ['2090824010'] = { Name = 'dt1_08_indust3_dt5' }, - ['-1014038704'] = { Name = 'dt1_08_indust3_dt6' }, - ['922914566'] = { Name = 'dt1_08_indust3_graf' }, - ['1600441356'] = { Name = 'dt1_08_indust3' }, - ['-1215617361'] = { Name = 'dt1_08_indust4_dt1' }, - ['1160615838'] = { Name = 'dt1_08_indust4' }, - ['993032771'] = { Name = 'dt1_08_indust4b_detail' }, - ['-1999005499'] = { Name = 'dt1_08_indust4b' }, - ['-1027377199'] = { Name = 'dt1_08_ladder_002' }, - ['-1333734580'] = { Name = 'dt1_08_ladder_003' }, - ['-432652614'] = { Name = 'dt1_08_ladder_004' }, - ['-105028152'] = { Name = 'dt1_08_ladder_005' }, - ['1249054499'] = { Name = 'dt1_08_ladder_01' }, - ['405225588'] = { Name = 'dt1_08_nwrails' }, - ['1359055015'] = { Name = 'dt1_08_nwrails01' }, - ['-716009169'] = { Name = 'dt1_08_nwrails02' }, - ['-1644709694'] = { Name = 'dt1_08_ova' }, - ['366534698'] = { Name = 'dt1_08_ovagrass' }, - ['-1917839345'] = { Name = 'dt1_08_ovb' }, - ['1794641890'] = { Name = 'dt1_09_billboards_lod' }, - ['-244995639'] = { Name = 'dt1_09_billboards' }, - ['1197659532'] = { Name = 'dt1_09_building_01' }, - ['-369495663'] = { Name = 'dt1_09_building_03_ra1' }, - ['-549987315'] = { Name = 'dt1_09_building_03_ra2' }, - ['226539678'] = { Name = 'dt1_09_building_03_ra3' }, - ['1957725952'] = { Name = 'dt1_09_building_03_ra4' }, - ['-1805127787'] = { Name = 'dt1_09_building_03' }, - ['979459479'] = { Name = 'dt1_09_carpark_ov1' }, - ['486941409'] = { Name = 'dt1_09_carpark_ov2' }, - ['-689105232'] = { Name = 'dt1_09_carpark_ov3' }, - ['1227356964'] = { Name = 'dt1_09_carpark_ov4' }, - ['1696019206'] = { Name = 'dt1_09_carpark_ov5' }, - ['1465489291'] = { Name = 'dt1_09_carpark_ov6' }, - ['234390726'] = { Name = 'dt1_09_carpark_ov7' }, - ['210308562'] = { Name = 'dt1_09_carpark_ra1' }, - ['895009449'] = { Name = 'dt1_09_carpark' }, - ['-1138670462'] = { Name = 'dt1_09_carpkgshdw01' }, - ['594763947'] = { Name = 'dt1_09_detail02' }, - ['-315788256'] = { Name = 'dt1_09_detail03' }, - ['-119718947'] = { Name = 'dt1_09_grounda' }, - ['187588735'] = { Name = 'dt1_09_groundb' }, - ['22886604'] = { Name = 'dt1_09_hdg_dcl' }, - ['380340872'] = { Name = 'dt1_10_build1_rail1' }, - ['686436101'] = { Name = 'dt1_10_build1_rail2' }, - ['1080155636'] = { Name = 'dt1_10_build1_rail3' }, - ['1151657594'] = { Name = 'dt1_10_build1_rail4' }, - ['-1933183341'] = { Name = 'dt1_10_build1_rail5' }, - ['-1484490538'] = { Name = 'dt1_10_build1' }, - ['-1722950551'] = { Name = 'dt1_10_build2' }, - ['-1962983476'] = { Name = 'dt1_10_build3' }, - ['-521931906'] = { Name = 'dt1_10_decal00' }, - ['778622953'] = { Name = 'dt1_10_decal01_b' }, - ['-541508981'] = { Name = 'dt1_10_decal01_c' }, - ['-693838080'] = { Name = 'dt1_10_decal01' }, - ['-339834541'] = { Name = 'dt1_10_decal02' }, - ['-988727830'] = { Name = 'dt1_10_decal03_b' }, - ['-1304522683'] = { Name = 'dt1_10_decal03_c' }, - ['-96623023'] = { Name = 'dt1_10_decal03' }, - ['-1237923678'] = { Name = 'dt1_10_detail' }, - ['474906256'] = { Name = 'dt1_10_detail1' }, - ['556337221'] = { Name = 'dt1_10_detail2' }, - ['854764504'] = { Name = 'dt1_10_detail3' }, - ['1161220192'] = { Name = 'dt1_10_detail4' }, - ['1400761582'] = { Name = 'dt1_10_detail5' }, - ['-1746373178'] = { Name = 'dt1_10_detail6' }, - ['1713803843'] = { Name = 'dt1_10_detail7' }, - ['1015627529'] = { Name = 'dt1_10_detail8' }, - ['2057972748'] = { Name = 'dt1_10_ground' }, - ['-699051013'] = { Name = 'dt1_10_ground1' }, - ['1176479209'] = { Name = 'dt1_11_build_logo' }, - ['794008274'] = { Name = 'dt1_11_decal_01' }, - ['-178995430'] = { Name = 'dt1_11_dt1_details_b' }, - ['1129241361'] = { Name = 'dt1_11_dt1_details_c' }, - ['1177349673'] = { Name = 'dt1_11_dt1_details' }, - ['1338308899'] = { Name = 'dt1_11_dt1_details2' }, - ['-503997050'] = { Name = 'dt1_11_dt1_details3' }, - ['342884986'] = { Name = 'dt1_11_dt1_details4' }, - ['748349777'] = { Name = 'dt1_11_dt1_planter_lod' }, - ['-2036231390'] = { Name = 'dt1_11_dt1_planter' }, - ['1468548523'] = { Name = 'dt1_11_dt1_plaza_gr' }, - ['-453592661'] = { Name = 'dt1_11_dt1_plaza' }, - ['1831850105'] = { Name = 'dt1_11_dt1_tower' }, - ['-85992259'] = { Name = 'dt1_11_dt1_towresm' }, - ['-2035861380'] = { Name = 'dt1_11_emissivering' }, - ['-1411462708'] = { Name = 'dt1_11_fount_decal' }, - ['-1122836905'] = { Name = 'dt1_11_fount_decalx' }, - ['1300010070'] = { Name = 'dt1_11_glue_b' }, - ['-1481881420'] = { Name = 'dt1_11_glue_c' }, - ['-1721652193'] = { Name = 'dt1_11_glue_d' }, - ['-1958014990'] = { Name = 'dt1_11_glue_e' }, - ['470075705'] = { Name = 'dt1_11_glue' }, - ['-974534371'] = { Name = 'dt1_11_hedge_d_1' }, - ['-1961536651'] = { Name = 'dt1_11_hedge_d_2' }, - ['935130195'] = { Name = 'dt1_11_hedge_d' }, - ['858009722'] = { Name = 'dt1_11_hedge_d2_a' }, - ['626169047'] = { Name = 'dt1_11_hedge_d2_b' }, - ['-95554672'] = { Name = 'dt1_11_hedge_d2' }, - ['1482521242'] = { Name = 'dt1_11_hedge_d3_b' }, - ['-667570336'] = { Name = 'dt1_11_hedge_d3' }, - ['-990747573'] = { Name = 'dt1_11_hedge_d4_b' }, - ['-1914398017'] = { Name = 'dt1_11_hedge_d4' }, - ['519777498'] = { Name = 'dt1_11_hedge' }, - ['50907763'] = { Name = 'dt1_11_heliport_st' }, - ['2019505694'] = { Name = 'dt1_11_heliport' }, - ['1151589668'] = { Name = 'dt1_11_hge_r2_d' }, - ['-1160912991'] = { Name = 'dt1_11_hge_r2_lod' }, - ['2089306453'] = { Name = 'dt1_11_hge_r2' }, - ['1905583632'] = { Name = 'dt1_11_loadingdock1' }, - ['-551625880'] = { Name = 'dt1_11_loadingdock2_s' }, - ['1138199190'] = { Name = 'dt1_11_loadingdock2' }, - ['2049708785'] = { Name = 'dt1_11_tower_pilars' }, - ['937385920'] = { Name = 'dt1_11_waterfall_new' }, - ['519863592'] = { Name = 'dt1_11_waterpool_new' }, - ['1581450952'] = { Name = 'dt1_12_build1' }, - ['694008219'] = { Name = 'dt1_12_build2_d' }, - ['-1945771443'] = { Name = 'dt1_12_build2' }, - ['-1732499190'] = { Name = 'dt1_12_build3_graf' }, - ['270133879'] = { Name = 'dt1_12_build3' }, - ['-1554050817'] = { Name = 'dt1_12_build6' }, - ['-228427843'] = { Name = 'dt1_12_carpark_ov1' }, - ['-1455626893'] = { Name = 'dt1_12_carpark_ov5' }, - ['-1756806772'] = { Name = 'dt1_12_carpark_ov6' }, - ['-1935201208'] = { Name = 'dt1_12_carpark_ov7' }, - ['2060224659'] = { Name = 'dt1_12_carpark_ov8' }, - ['-1452087849'] = { Name = 'dt1_12_carpark_ov9' }, - ['1513783495'] = { Name = 'dt1_12_fence' }, - ['-1712264907'] = { Name = 'dt1_12_ground1' }, - ['-1460085833'] = { Name = 'dt1_12_props_combo_slod' }, - ['-1469987208'] = { Name = 'dt1_12_rail1' }, - ['1453105903'] = { Name = 'dt1_12_rail2' }, - ['1289654131'] = { Name = 'dt1_12_rail3' }, - ['2128442224'] = { Name = 'dt1_12_rail4' }, - ['-831836689'] = { Name = 'dt1_13_build1_water' }, - ['644992615'] = { Name = 'dt1_13_build1' }, - ['-1681744792'] = { Name = 'dt1_13_build2_sd' }, - ['895183930'] = { Name = 'dt1_13_build2' }, - ['-1933441663'] = { Name = 'dt1_13_dt_13_ems' }, - ['1298331479'] = { Name = 'dt1_13_dtla' }, - ['1079237945'] = { Name = 'dt1_13_dtlb' }, - ['2039434562'] = { Name = 'dt1_14_b4_detaila' }, - ['-2006652179'] = { Name = 'dt1_14_b4_detailb' }, - ['1445627513'] = { Name = 'dt1_14_b4_detailc' }, - ['-1863326819'] = { Name = 'dt1_14_build2' }, - ['-1573485014'] = { Name = 'dt1_14_build3' }, - ['1972645094'] = { Name = 'dt1_14_build4' }, - ['45717283'] = { Name = 'dt1_14_details1' }, - ['1326738287'] = { Name = 'dt1_14_emsigns_10c' }, - ['1955007064'] = { Name = 'dt1_14_emsigns_10clod' }, - ['1621437282'] = { Name = 'dt1_14_emsigns_lod' }, - ['226461241'] = { Name = 'dt1_14_emsigns' }, - ['1907099036'] = { Name = 'dt1_14_ground' }, - ['-1708878283'] = { Name = 'dt1_14_ova' }, - ['-1460194342'] = { Name = 'dt1_14_ovb' }, - ['2128404382'] = { Name = 'dt1_14_ovc' }, - ['-1991510916'] = { Name = 'dt1_14_ovd' }, - ['-2042948280'] = { Name = 'dt1_15_b2_b' }, - ['1448256296'] = { Name = 'dt1_15_b3_dex1' }, - ['1217464229'] = { Name = 'dt1_15_b3_dex2' }, - ['1152090138'] = { Name = 'dt1_15_b3_dex3' }, - ['-1308343431'] = { Name = 'dt1_15_build1_o' }, - ['1588544994'] = { Name = 'dt1_15_build1' }, - ['-46146613'] = { Name = 'dt1_15_build1aa' }, - ['192247862'] = { Name = 'dt1_15_build1ab' }, - ['298943726'] = { Name = 'dt1_15_build1ac' }, - ['154170392'] = { Name = 'dt1_15_build1ad' }, - ['327321788'] = { Name = 'dt1_15_build1ae' }, - ['725284294'] = { Name = 'dt1_15_build2_o' }, - ['2014804146'] = { Name = 'dt1_15_build2' }, - ['-469741455'] = { Name = 'dt1_15_build3_o' }, - ['1681608958'] = { Name = 'dt1_15_build3' }, - ['-1134361960'] = { Name = 'dt1_15_build4_o' }, - ['-1469747616'] = { Name = 'dt1_15_em' }, - ['-1871259072'] = { Name = 'dt1_15_fabric01' }, - ['-1807359522'] = { Name = 'dt1_15_fabric02' }, - ['698092684'] = { Name = 'dt1_15_fabric03' }, - ['249616142'] = { Name = 'dt1_15_fabric04' }, - ['-383743090'] = { Name = 'dt1_15_fabric05' }, - ['-1500015869'] = { Name = 'dt1_15_fabric05a' }, - ['-648087407'] = { Name = 'dt1_15_fabric05b' }, - ['55430254'] = { Name = 'dt1_15_fabric05c' }, - ['-1243926134'] = { Name = 'dt1_15_fabric05d' }, - ['826711001'] = { Name = 'dt1_15_fabric09' }, - ['-1696074908'] = { Name = 'dt1_15_glassa' }, - ['1218003238'] = { Name = 'dt1_15_glasshousea' }, - ['315577743'] = { Name = 'dt1_15_glasshouseb' }, - ['113634740'] = { Name = 'dt1_15_ground' }, - ['-1373741617'] = { Name = 'dt1_15_ladder_002' }, - ['-1101201844'] = { Name = 'dt1_15_ladder_003' }, - ['1903780998'] = { Name = 'dt1_15_ladder_004' }, - ['-1681802986'] = { Name = 'dt1_15_ladder_005' }, - ['-954101799'] = { Name = 'dt1_15_ladder_006' }, - ['-815882157'] = { Name = 'dt1_15_ladder_007' }, - ['-1265571144'] = { Name = 'dt1_15_ladder_009' }, - ['-531796818'] = { Name = 'dt1_15_ladder_01' }, - ['1460317833'] = { Name = 'dt1_15_ladder_010' }, - ['1692158508'] = { Name = 'dt1_15_ladder_011' }, - ['-734275453'] = { Name = 'dt1_15_newwires01' }, - ['-383581615'] = { Name = 'dt1_15_newwires02' }, - ['-860805629'] = { Name = 'dt1_15_steetdetaila' }, - ['-1156742468'] = { Name = 'dt1_15_steetdetailb' }, - ['1504175277'] = { Name = 'dt1_16_build005_decals' }, - ['-814840656'] = { Name = 'dt1_16_build005' }, - ['-1122607985'] = { Name = 'dt1_16_build006_decals' }, - ['408196731'] = { Name = 'dt1_16_build006' }, - ['1523020577'] = { Name = 'dt1_16_build2_decals' }, - ['-1419485081'] = { Name = 'dt1_16_build2' }, - ['-338027781'] = { Name = 'dt1_16_build4_decals' }, - ['1742952806'] = { Name = 'dt1_16_build4' }, - ['-1857244888'] = { Name = 'dt1_16_ground' }, - ['-1796810358'] = { Name = 'dt1_16_ladder005' }, - ['32393367'] = { Name = 'dt1_16_ladder01_lod001' }, - ['1459089353'] = { Name = 'dt1_16_ladder01' }, - ['1229378663'] = { Name = 'dt1_16_ladder02' }, - ['1000061201'] = { Name = 'dt1_16_ladder03' }, - ['-1609039272'] = { Name = 'dt1_16_ladder04' }, - ['-1878138380'] = { Name = 'dt1_16_ladder05' }, - ['-559760393'] = { Name = 'dt1_17_alley2' }, - ['-701782449'] = { Name = 'dt1_17_bb_credit_slod' }, - ['1391049338'] = { Name = 'dt1_17_bb_credit' }, - ['56582624'] = { Name = 'dt1_17_bb_meltdown_slod' }, - ['-1770068237'] = { Name = 'dt1_17_bb_meltdown' }, - ['1103057138'] = { Name = 'dt1_17_build1' }, - ['1437432014'] = { Name = 'dt1_17_build2' }, - ['-1103833038'] = { Name = 'dt1_17_ova' }, - ['-661418761'] = { Name = 'dt1_17_ovb' }, - ['-1166836280'] = { Name = 'dt1_17_ovx2' }, - ['680646310'] = { Name = 'dt1_18_build_roof' }, - ['1785071381'] = { Name = 'dt1_18_build0' }, - ['1410259559'] = { Name = 'dt1_18_build1' }, - ['-1165240771'] = { Name = 'dt1_18_build2_detail' }, - ['1622668217'] = { Name = 'dt1_18_build2' }, - ['845747996'] = { Name = 'dt1_18_build3' }, - ['-126725246'] = { Name = 'dt1_18_build4_em' }, - ['997271852'] = { Name = 'dt1_18_build4' }, - ['242831209'] = { Name = 'dt1_18_build5' }, - ['220330803'] = { Name = 'dt1_18_detail_a' }, - ['448009815'] = { Name = 'dt1_18_detail_b' }, - ['1960233543'] = { Name = 'dt1_18_detail_c' }, - ['1537054677'] = { Name = 'dt1_18_detail_d' }, - ['-1773662935'] = { Name = 'dt1_18_detail_e' }, - ['-2030473588'] = { Name = 'dt1_18_detail_f' }, - ['566338590'] = { Name = 'dt1_18_detail_g' }, - ['-1019291221'] = { Name = 'dt1_18_detaila' }, - ['2095566066'] = { Name = 'dt1_18_detailb' }, - ['-1608445072'] = { Name = 'dt1_18_detailc' }, - ['-368040127'] = { Name = 'dt1_18_detaild' }, - ['902314018'] = { Name = 'dt1_18_ground' }, - ['-1201611804'] = { Name = 'dt1_18_ladder_011' }, - ['-806330624'] = { Name = 'dt1_18_ladder_04' }, - ['-1305271418'] = { Name = 'dt1_18_ladder_05' }, - ['-381709922'] = { Name = 'dt1_18_ladder_06' }, - ['-620890853'] = { Name = 'dt1_18_ladder_07' }, - ['386034979'] = { Name = 'dt1_18_ladder_08' }, - ['-103206191'] = { Name = 'dt1_18_ladder_09' }, - ['-1831312415'] = { Name = 'dt1_18_ladder_10' }, - ['-717142431'] = { Name = 'dt1_18_sq_night_slod' }, - ['-883676427'] = { Name = 'dt1_18_square_night' }, - ['-1695249446'] = { Name = 'dt1_19_cp_01_shadow' }, - ['1822781194'] = { Name = 'dt1_19_cp_01' }, - ['-933955611'] = { Name = 'dt1_19_decal01' }, - ['1208654225'] = { Name = 'dt1_19_ground01' }, - ['1739014551'] = { Name = 'dt1_19_hedge_d' }, - ['679849216'] = { Name = 'dt1_19_hedge' }, - ['1500231332'] = { Name = 'dt1_19_lspd02' }, - ['739466228'] = { Name = 'dt1_19_lspd05' }, - ['-207301352'] = { Name = 'dt1_19_pipes' }, - ['-858145298'] = { Name = 'dt1_19_roofdoor_dummy' }, - ['1914430752'] = { Name = 'dt1_19_shadow' }, - ['38091600'] = { Name = 'dt1_19_signems' }, - ['-496113701'] = { Name = 'dt1_20_build1' }, - ['-1294038851'] = { Name = 'dt1_20_build2' }, - ['-1963785100'] = { Name = 'dt1_20_build2b' }, - ['1049773493'] = { Name = 'dt1_20_decal_1' }, - ['743416112'] = { Name = 'dt1_20_decal_2' }, - ['571378862'] = { Name = 'dt1_20_decal_3' }, - ['149916371'] = { Name = 'dt1_20_detail01_b' }, - ['-924904663'] = { Name = 'dt1_20_detail01' }, - ['-1152940197'] = { Name = 'dt1_20_detail01c' }, - ['-915659868'] = { Name = 'dt1_20_detail01d' }, - ['1348645263'] = { Name = 'dt1_20_detail01e' }, - ['-218241770'] = { Name = 'dt1_20_detail2b' }, - ['-850860783'] = { Name = 'dt1_20_didier_mp_door' }, - ['-1901011545'] = { Name = 'dt1_20_ground' }, - ['697158440'] = { Name = 'dt1_20_ground2_w1' }, - ['789322324'] = { Name = 'dt1_20_ground2_w11' }, - ['1046329591'] = { Name = 'dt1_20_ground2_w12' }, - ['1262211763'] = { Name = 'dt1_20_ground2_w13' }, - ['1573418956'] = { Name = 'dt1_20_ground2_w14' }, - ['1722780058'] = { Name = 'dt1_20_ground2_w15' }, - ['1002205061'] = { Name = 'dt1_20_ground2_w2' }, - ['-871657435'] = { Name = 'dt1_20_ground2_w3' }, - ['-566414200'] = { Name = 'dt1_20_ground2_w4' }, - ['-259499746'] = { Name = 'dt1_20_ground2_w5' }, - ['49479155'] = { Name = 'dt1_20_ground2_w6' }, - ['-1114016923'] = { Name = 'dt1_20_ground2_w7' }, - ['1339430880'] = { Name = 'dt1_20_ground2_w8' }, - ['1627208238'] = { Name = 'dt1_20_ground2_w9' }, - ['724661570'] = { Name = 'dt1_20_ground2' }, - ['1603446571'] = { Name = 'dt1_20_hedge_d' }, - ['-29973657'] = { Name = 'dt1_20_hedge_d2' }, - ['814612094'] = { Name = 'dt1_20_hedge_d2b' }, - ['-837106940'] = { Name = 'dt1_20_hedge_db' }, - ['-888554270'] = { Name = 'dt1_20_hedge_dc' }, - ['-321418573'] = { Name = 'dt1_20_hedge' }, - ['295131508'] = { Name = 'dt1_20_hedge2' }, - ['-1586712671'] = { Name = 'dt1_20_jump_01' }, - ['-403515541'] = { Name = 'dt1_20_logo_1' }, - ['-761025331'] = { Name = 'dt1_20_logo_2' }, - ['-904750165'] = { Name = 'dt1_20_logo_3' }, - ['1269636834'] = { Name = 'dt1_20_logo_4' }, - ['-1260457660'] = { Name = 'dt1_20_logo_5' }, - ['59909101'] = { Name = 'dt1_20_rails1' }, - ['-241401854'] = { Name = 'dt1_20_rails2' }, - ['602367127'] = { Name = 'dt1_20_rails3' }, - ['-1478005607'] = { Name = 'dt1_20_rails4' }, - ['-897011237'] = { Name = 'dt1_20_rails5' }, - ['-1126885772'] = { Name = 'dt1_20_rails6' }, - ['-284460320'] = { Name = 'dt1_20_rails7' }, - ['1865284391'] = { Name = 'dt1_20_rails8' }, - ['-2018877458'] = { Name = 'dt1_20_rl_01' }, - ['-1864601006'] = { Name = 'dt1_20_rl_02' }, - ['304936185'] = { Name = 'dt1_20_rl_03' }, - ['762194811'] = { Name = 'dt1_20_rl_04' }, - ['1041812688'] = { Name = 'dt1_20_rl_05' }, - ['1217323452'] = { Name = 'dt1_20_rl_06' }, - ['-902470393'] = { Name = 'dt1_20_rl_07' }, - ['-419914095'] = { Name = 'dt1_20_rl_08' }, - ['-253382037'] = { Name = 'dt1_20_rl_09' }, - ['-174801651'] = { Name = 'dt1_20_rl_10' }, - ['533664129'] = { Name = 'dt1_20_rl_11' }, - ['294221046'] = { Name = 'dt1_20_rl_12' }, - ['-221252776'] = { Name = 'dt1_20_sc1' }, - ['-1116632932'] = { Name = 'dt1_20_sc2' }, - ['-819713023'] = { Name = 'dt1_20_sc3' }, - ['-595809277'] = { Name = 'dt1_21_b1_dx10' }, - ['-2038628351'] = { Name = 'dt1_21_b1_dx11' }, - ['-1186011740'] = { Name = 'dt1_21_b1_dx12' }, - ['575027093'] = { Name = 'dt1_21_b1_dx13' }, - ['318249209'] = { Name = 'dt1_21_b1_dx14' }, - ['-1394484560'] = { Name = 'dt1_21_b1_dx3' }, - ['1911907544'] = { Name = 'dt1_21_b1_dx4' }, - ['-2144337587'] = { Name = 'dt1_21_b1_dx5' }, - ['1231754180'] = { Name = 'dt1_21_b1_dx6' }, - ['563129543'] = { Name = 'dt1_21_b1d_y1' }, - ['-709132917'] = { Name = 'dt1_21_b9_d1' }, - ['-877143556'] = { Name = 'dt1_21_beams' }, - ['613026827'] = { Name = 'dt1_21_beamx' }, - ['-309588307'] = { Name = 'dt1_21_bridge_d' }, - ['-1364076223'] = { Name = 'dt1_21_build09' }, - ['1699294122'] = { Name = 'dt1_21_build09d' }, - ['-1993797490'] = { Name = 'dt1_21_build1_details1' }, - ['45025231'] = { Name = 'dt1_21_build1_fence' }, - ['-987364809'] = { Name = 'dt1_21_build1' }, - ['561364943'] = { Name = 'dt1_21_build1z' }, - ['1607223122'] = { Name = 'dt1_21_cloth_tape' }, - ['586419612'] = { Name = 'dt1_21_cloth_tarp_01' }, - ['2000813922'] = { Name = 'dt1_21_cranelights' }, - ['-1934790757'] = { Name = 'dt1_21_detail_b' }, - ['1560154173'] = { Name = 'dt1_21_detail_c' }, - ['-1583025544'] = { Name = 'dt1_21_detail' }, - ['959303717'] = { Name = 'dt1_21_elev' }, - ['-1261561935'] = { Name = 'dt1_21_fillm_02' }, - ['-1508902347'] = { Name = 'dt1_21_fillm_03' }, - ['792267901'] = { Name = 'dt1_21_fillm_05' }, - ['1509450235'] = { Name = 'dt1_21_fillm_06' }, - ['-870499758'] = { Name = 'dt1_21_gd1_d002_d' }, - ['805852462'] = { Name = 'dt1_21_gd1_d002' }, - ['-1109112412'] = { Name = 'dt1_21_gd1_dz1' }, - ['-2002034897'] = { Name = 'dt1_21_gd1_dz2' }, - ['-1701870853'] = { Name = 'dt1_21_gd1_dz3' }, - ['-555316236'] = { Name = 'dt1_21_gd1_dz4' }, - ['-314955621'] = { Name = 'dt1_21_gd1_dz5' }, - ['-712241333'] = { Name = 'dt1_21_gd1_rl1_b' }, - ['2112388427'] = { Name = 'dt1_21_gd1_rl1' }, - ['1888591746'] = { Name = 'dt1_21_gd1_rl2_b' }, - ['1210782157'] = { Name = 'dt1_21_gd1_rl2' }, - ['-394406193'] = { Name = 'dt1_21_gd1_rl3_b' }, - ['972584296'] = { Name = 'dt1_21_gd1_rl3' }, - ['-725637120'] = { Name = 'dt1_21_glue1' }, - ['415815601'] = { Name = 'dt1_21_glue2a' }, - ['47770864'] = { Name = 'dt1_21_gren_decal' }, - ['701324079'] = { Name = 'dt1_21_ground1_decals' }, - ['-1159699521'] = { Name = 'dt1_21_ground1' }, - ['-643454503'] = { Name = 'dt1_21_ground2_decals' }, - ['-1407597006'] = { Name = 'dt1_21_ground2' }, - ['501333192'] = { Name = 'dt1_21_lowerleveldecal' }, - ['197574465'] = { Name = 'dt1_21_parkinghut' }, - ['-2091929232'] = { Name = 'dt1_21_props_combo0201_slod' }, - ['1563158461'] = { Name = 'dt1_21_props_dt1_21_s01_slod' }, - ['1761988098'] = { Name = 'dt1_21_props_rail_lod_004' }, - ['371632197'] = { Name = 'dt1_21_props_rail_lod_005' }, - ['1532117140'] = { Name = 'dt1_21_props_rail_lod_1' }, - ['-1341134322'] = { Name = 'dt1_21_props_rail_lod_2' }, - ['1069386091'] = { Name = 'dt1_21_props_rail_lod_3' }, - ['340276021'] = { Name = 'dt1_21_reflproxy' }, - ['-191375796'] = { Name = 'dt1_21_roof_detail' }, - ['1066195456'] = { Name = 'dt1_21_route_blockout' }, - ['1398488517'] = { Name = 'dt1_21_route_d' }, - ['1316026482'] = { Name = 'dt1_21_sbar1' }, - ['590651910'] = { Name = 'dt1_21_sbar2' }, - ['-434083634'] = { Name = 'dt1_21_scafa' }, - ['393202536'] = { Name = 'dt1_21_scafc' }, - ['87140076'] = { Name = 'dt1_21_scafd' }, - ['-1196434326'] = { Name = 'dt1_21_scaffold_01' }, - ['1551377404'] = { Name = 'dt1_21_scaffold_02' }, - ['-603938041'] = { Name = 'dt1_21_scaffold_03' }, - ['-431368'] = { Name = 'dt1_21_scaffold_05' }, - ['-1556106870'] = { Name = 'dt1_21_scaffold_06' }, - ['590754161'] = { Name = 'dt1_21_scaffold_07' }, - ['360420860'] = { Name = 'dt1_21_scaffold_08' }, - ['1189148870'] = { Name = 'dt1_21_scaffold_09' }, - ['-1324594173'] = { Name = 'dt1_21_scaffold_10' }, - ['-1069946274'] = { Name = 'dt1_21_scaffold_11' }, - ['-494327556'] = { Name = 'dt1_21_scaffold_44' }, - ['-2097934167'] = { Name = 'dt1_21_sd' }, - ['-1442446932'] = { Name = 'dt1_21_station_f1' }, - ['-1146051327'] = { Name = 'dt1_21_station_f2' }, - ['-944010143'] = { Name = 'dt1_21_station' }, - ['-271593318'] = { Name = 'dt1_21_tape' }, - ['701593760'] = { Name = 'dt1_21_top_d' }, - ['360847876'] = { Name = 'dt1_21_top_shell' }, - ['997034861'] = { Name = 'dt1_21_unf' }, - ['-1121496574'] = { Name = 'dt1_22__ladder_002' }, - ['1534127570'] = { Name = 'dt1_22__ladder_01' }, - ['1672955427'] = { Name = 'dt1_22_b1_emiss' }, - ['-934587146'] = { Name = 'dt1_22_b2_r' }, - ['468208647'] = { Name = 'dt1_22_b2_r2' }, - ['779024622'] = { Name = 'dt1_22_bldg1_detail_2' }, - ['-960346032'] = { Name = 'dt1_22_bldg1_detail' }, - ['660585234'] = { Name = 'dt1_22_bldg1_detail2' }, - ['-1142159817'] = { Name = 'dt1_22_bldg1' }, - ['1785962911'] = { Name = 'dt1_22_bldg1b_detail' }, - ['-1451234319'] = { Name = 'dt1_22_bldg1b' }, - ['1770924169'] = { Name = 'dt1_22_bldg2_detail' }, - ['1229793133'] = { Name = 'dt1_22_bldg2_detail2' }, - ['971638951'] = { Name = 'dt1_22_bldg2_detail3' }, - ['-236048143'] = { Name = 'dt1_22_bldg2_r' }, - ['-1440849252'] = { Name = 'dt1_22_bldg2' }, - ['-610305217'] = { Name = 'dt1_22_broken_gdoor_hd' }, - ['173466203'] = { Name = 'dt1_22_broken_gdoor_lod' }, - ['-324581133'] = { Name = 'dt1_22_carshowroom_slod1' }, - ['1023076961'] = { Name = 'dt1_22_emissive_beams_lod' }, - ['654395831'] = { Name = 'dt1_22_gd_detail10' }, - ['-703235274'] = { Name = 'dt1_22_gd_detail2' }, - ['1596896941'] = { Name = 'dt1_22_gd_detail22' }, - ['-934813797'] = { Name = 'dt1_22_gd_detail3' }, - ['-1449156021'] = { Name = 'dt1_22_gd_detail4' }, - ['-1455182972'] = { Name = 'dt1_22_gd_logo' }, - ['-1631469884'] = { Name = 'dt1_22_gd_topglue' }, - ['607593713'] = { Name = 'dt1_22_grnd_bar_lod' }, - ['-382710179'] = { Name = 'dt1_22_grnd_d2' }, - ['588287455'] = { Name = 'dt1_22_grnd_detail' }, - ['614620236'] = { Name = 'dt1_22_grnd' }, - ['-2053997101'] = { Name = 'dt1_22_ladder_01' }, - ['1390123110'] = { Name = 'dt1_22_ladder_02' }, - ['-1941927117'] = { Name = 'dt1_22_ladder_03' }, - ['1868124513'] = { Name = 'dt1_22_ladder_04' }, - ['1035922989'] = { Name = 'dt1_22_ladder_05' }, - ['202115784'] = { Name = 'dt1_22_ladder_06' }, - ['1513727778'] = { Name = 'dt1_22_ladder_07' }, - ['680772567'] = { Name = 'dt1_22_ladder_08' }, - ['-673827655'] = { Name = 'dt1_22_ladder_09_lod001' }, - ['-1242505553'] = { Name = 'dt1_22_ladder_09' }, - ['-53604245'] = { Name = 'dt1_22_r_01' }, - ['-1790000794'] = { Name = 'dt1_22_r_02' }, - ['-1828995904'] = { Name = 'dt1_22_r_03' }, - ['933299724'] = { Name = 'dt1_22_r_04' }, - ['-1483184647'] = { Name = 'dt1_22_r_05' }, - ['-565030032'] = { Name = 'dt1_22_r_06' }, - ['-564405094'] = { Name = 'dt1_22_showroom_detail' }, - ['791833817'] = { Name = 'dt1_22_showroom' }, - ['-1549931822'] = { Name = 'dt1_22_sign_01_lod' }, - ['521032509'] = { Name = 'dt1_22_sign_01' }, - ['165648409'] = { Name = 'dt1_22_sr_fint_det01' }, - ['932836237'] = { Name = 'dt1_22_sr_fint_det02' }, - ['1617399861'] = { Name = 'dt1_22_sr_fint_ext' }, - ['995448577'] = { Name = 'dt1_22_sr_fint_glass' }, - ['-718500944'] = { Name = 'dt1_22_sr_fint_slod1' }, - ['540534816'] = { Name = 'dt1_22_sr_fint' }, - ['-2130484842'] = { Name = 'dt1_22_wobblylightems' }, - ['1867890930'] = { Name = 'dt1_22_woodboard_hd_slod' }, - ['-1919268430'] = { Name = 'dt1_22_woodboard_hd' }, - ['-1729281218'] = { Name = 'dt1_23_build1_a' }, - ['-1960138823'] = { Name = 'dt1_23_build1_b' }, - ['-2057200601'] = { Name = 'dt1_23_build1_c' }, - ['112566025'] = { Name = 'dt1_23_build1_d' }, - ['-1428584944'] = { Name = 'dt1_23_build1_decals' }, - ['-233507444'] = { Name = 'dt1_23_build1_e' }, - ['-866866676'] = { Name = 'dt1_23_build1_f' }, - ['-142848817'] = { Name = 'dt1_23_build1' }, - ['1452949863'] = { Name = 'dt1_23_build2_decals' }, - ['1730396966'] = { Name = 'dt1_23_build2_locku' }, - ['88991858'] = { Name = 'dt1_23_build2' }, - ['-128740728'] = { Name = 'dt1_23_build4_decalsa' }, - ['-364513683'] = { Name = 'dt1_23_build4_decalsb' }, - ['1361151958'] = { Name = 'dt1_23_build4_glass' }, - ['1509307985'] = { Name = 'dt1_23_build4_rails' }, - ['-730155890'] = { Name = 'dt1_23_build4_rls' }, - ['731165951'] = { Name = 'dt1_23_build4' }, - ['995884274'] = { Name = 'dt1_23_dt1_scaffold' }, - ['-2124661529'] = { Name = 'dt1_23_ground' }, - ['1783468599'] = { Name = 'dt1_23_grounddecals' }, - ['-1723289007'] = { Name = 'dt1_23_ladder_00' }, - ['1633822444'] = { Name = 'dt1_23_ladder_002' }, - ['-1281766566'] = { Name = 'dt1_23_ladder_003' }, - ['-976195641'] = { Name = 'dt1_23_ladder_004' }, - ['-1799451228'] = { Name = 'dt1_23_ladder_005' }, - ['-1504071462'] = { Name = 'dt1_23_ladder_006' }, - ['-1140925380'] = { Name = 'dt1_23_ladder_007' }, - ['1711327792'] = { Name = 'dt1_23_ladder_01_lod001' }, - ['1229656261'] = { Name = 'dt1_23_ladder_01_lod003' }, - ['990999634'] = { Name = 'dt1_23_ladder_01_lod004' }, - ['-1459990092'] = { Name = 'dt1_23_ladder_01' }, - ['-790120273'] = { Name = 'dt1_23_ov' }, - ['-117622950'] = { Name = 'dt1_23_ov2' }, - ['-1243926253'] = { Name = 'dt1_23_ov3' }, - ['-260995315'] = { Name = 'dt1_23_sign_em' }, - ['1483966877'] = { Name = 'dt1_24_bd_a' }, - ['-1566204416'] = { Name = 'dt1_24_bd_b' }, - ['2003843462'] = { Name = 'dt1_24_build_det1' }, - ['-801084723'] = { Name = 'dt1_24_build_deta' }, - ['1274962503'] = { Name = 'dt1_24_build_detb' }, - ['-116054996'] = { Name = 'dt1_24_fireescapeend' }, - ['976976554'] = { Name = 'dt1_24_fireescaperailing' }, - ['-1314220145'] = { Name = 'dt1_24_ladder_00' }, - ['1421346754'] = { Name = 'dt1_24_ladder01' }, - ['757238505'] = { Name = 'dt1_24_ladder2' }, - ['-1857282640'] = { Name = 'dt1_25_build_gluea' }, - ['94832228'] = { Name = 'dt1_25_build_glueb' }, - ['946695152'] = { Name = 'dt1_25_build_gluec' }, - ['-433813298'] = { Name = 'dt1_25_build_ns' }, - ['335139749'] = { Name = 'dt1_25_build' }, - ['481341833'] = { Name = 'dt1_25_detaila' }, - ['-768271213'] = { Name = 'dt1_25_detailb' }, - ['163362635'] = { Name = 'dt1_25_ladder_01_lod' }, - ['1582628037'] = { Name = 'dt1_25_ladder_01' }, - ['1889411415'] = { Name = 'dt1_25_ladder_02' }, - ['-1751218701'] = { Name = 'dt1_25_ladder_03_lod' }, - ['-2131574272'] = { Name = 'dt1_25_ladder_03' }, - ['2112377202'] = { Name = 'dt1_25_ladder_04_lod' }, - ['-1824954739'] = { Name = 'dt1_25_ladder_04' }, - ['95845131'] = { Name = 'dt1_26_build_ns' }, - ['208542562'] = { Name = 'dt1_26_build_x_f' }, - ['1235293639'] = { Name = 'dt1_26_build_x_r' }, - ['-1213794767'] = { Name = 'dt1_26_build_x' }, - ['-1097541338'] = { Name = 'dt1_26_fnce' }, - ['1432524423'] = { Name = 'dt1_26_ground_decala' }, - ['-2094501358'] = { Name = 'dt1_26_ground_decalb' }, - ['125336252'] = { Name = 'dt1_26_ground_decalc' }, - ['-1157172799'] = { Name = 'dt1_26_hedge_c' }, - ['-1865900731'] = { Name = 'dt1_26_hedge_d' }, - ['912887527'] = { Name = 'dt1_26_insidedecals' }, - ['-1990804585'] = { Name = 'dt1_26_rfcover' }, - ['-186633759'] = { Name = 'dt1_26_stairs' }, - ['880341099'] = { Name = 'dt1_emissive_dt1_01' }, - ['-3537138'] = { Name = 'dt1_emissive_dt1_02' }, - ['-2021600890'] = { Name = 'dt1_emissive_dt1_02b' }, - ['-1825769292'] = { Name = 'dt1_emissive_dt1_03_b1' }, - ['-1454889738'] = { Name = 'dt1_emissive_dt1_03_b2' }, - ['-1762951107'] = { Name = 'dt1_emissive_dt1_03_b3' }, - ['1635273321'] = { Name = 'dt1_emissive_dt1_04' }, - ['1135317444'] = { Name = 'dt1_emissive_dt1_05_b1' }, - ['2031942822'] = { Name = 'dt1_emissive_dt1_05_b2' }, - ['-1097487730'] = { Name = 'dt1_emissive_dt1_06_1' }, - ['-1522173970'] = { Name = 'dt1_emissive_dt1_06_2' }, - ['1240613201'] = { Name = 'dt1_emissive_dt1_06_3' }, - ['1620274835'] = { Name = 'dt1_emissive_dt1_06_4' }, - ['1363323390'] = { Name = 'dt1_emissive_dt1_07' }, - ['-1776471118'] = { Name = 'dt1_emissive_dt1_08' }, - ['-1477453993'] = { Name = 'dt1_emissive_dt1_09' }, - ['1336386984'] = { Name = 'dt1_emissive_dt1_10' }, - ['1602798954'] = { Name = 'dt1_emissive_dt1_11' }, - ['-1327536106'] = { Name = 'dt1_emissive_dt1_12' }, - ['177553550'] = { Name = 'dt1_emissive_dt1_14a' }, - ['168116078'] = { Name = 'dt1_emissive_dt1_14b' }, - ['-129524749'] = { Name = 'dt1_emissive_dt1_14c' }, - ['1063168768'] = { Name = 'dt1_emissive_dt1_15a' }, - ['1294517908'] = { Name = 'dt1_emissive_dt1_15b' }, - ['1527636574'] = { Name = 'dt1_emissive_dt1_15c' }, - ['-1549012059'] = { Name = 'dt1_emissive_dt1_15d' }, - ['-1100600639'] = { Name = 'dt1_emissive_dt1_16a' }, - ['-2017378952'] = { Name = 'dt1_emissive_dt1_16b' }, - ['-1727373302'] = { Name = 'dt1_emissive_dt1_16c' }, - ['-728541413'] = { Name = 'dt1_emissive_dt1_16d' }, - ['-384335609'] = { Name = 'dt1_emissive_dt1_17a' }, - ['-1034833032'] = { Name = 'dt1_emissive_dt1_17b' }, - ['1257585841'] = { Name = 'dt1_emissive_dt1_18a' }, - ['1550442394'] = { Name = 'dt1_emissive_dt1_18b' }, - ['1580655412'] = { Name = 'dt1_emissive_dt1_18c' }, - ['-269121869'] = { Name = 'dt1_emissive_dt1_18d' }, - ['25930207'] = { Name = 'dt1_emissive_dt1_18e' }, - ['326258092'] = { Name = 'dt1_emissive_dt1_18f' }, - ['-385001359'] = { Name = 'dt1_emissive_dt1_19' }, - ['-872997639'] = { Name = 'dt1_emissive_dt1_20' }, - ['886096642'] = { Name = 'dt1_emissive_dt1_20b' }, - ['-1079256902'] = { Name = 'dt1_emissive_dt1_20c' }, - ['-1572037548'] = { Name = 'dt1_emissive_dt1_22a' }, - ['206401600'] = { Name = 'dt1_emissive_dt1_22b' }, - ['-1900940001'] = { Name = 'dt1_emissive_dt1_22c' }, - ['-1341737304'] = { Name = 'dt1_emissive_dt1_23a' }, - ['152135848'] = { Name = 'dt1_emissive_dt1_23b' }, - ['-1938624639'] = { Name = 'dt1_emissive_dt1_23c' }, - ['18745158'] = { Name = 'dt1_emissive_dt1_24' }, - ['793568163'] = { Name = 'dt1_emissive_dt1_25' }, - ['1450502820'] = { Name = 'dt1_lod_5_20_emissive_proxy' }, - ['17079690'] = { Name = 'dt1_lod_5_21_emissive_proxy' }, - ['-2004182294'] = { Name = 'dt1_lod_6_19_emissive_proxy' }, - ['859651513'] = { Name = 'dt1_lod_6_20_emissive_proxy' }, - ['759795812'] = { Name = 'dt1_lod_6_21_emissive_proxy' }, - ['-904778439'] = { Name = 'dt1_lod_7_20_emissive_proxy' }, - ['-859346633'] = { Name = 'dt1_lod_emissive' }, - ['-343289823'] = { Name = 'dt1_lod_f1_slod3' }, - ['-1065329613'] = { Name = 'dt1_lod_f1b_slod3' }, - ['186779107'] = { Name = 'dt1_lod_f2_slod3' }, - ['1816781891'] = { Name = 'dt1_lod_f2b_slod3' }, - ['1827161248'] = { Name = 'dt1_lod_f3_slod3' }, - ['566160949'] = { Name = 'dt1_lod_f4_slod3' }, - ['-109599267'] = { Name = 'dt1_lod_slod3' }, - ['1406325275'] = { Name = 'dt1_props_combo0555_15_lod' }, - ['986752231'] = { Name = 'dt1_props_flyers_1_00' }, - ['101486540'] = { Name = 'dt1_props_flyers_1_001' }, - ['311699639'] = { Name = 'dt1_props_flyers_1_002' }, - ['71666714'] = { Name = 'dt1_props_flyers_1_003' }, - ['1745950316'] = { Name = 'dt1_props_flyers_2_00' }, - ['1671733883'] = { Name = 'dt1_props_flyers_2_001' }, - ['-1051304483'] = { Name = 'dt1_props_flyers_2_002' }, - ['-825820994'] = { Name = 'dt1_props_flyers_2_003' }, - ['-1670081510'] = { Name = 'dt1_props_flyers_2_004' }, - ['1227665109'] = { Name = 'dt1_props_flyers_3_00' }, - ['-924412937'] = { Name = 'dt1_props_flyers_3_001' }, - ['-718820231'] = { Name = 'dt1_props_flyers_3_002' }, - ['677532413'] = { Name = 'dt1_props_flyers_3_003' }, - ['899509619'] = { Name = 'dt1_props_flyers_3_004' }, - ['73632512'] = { Name = 'dt1_props_flyers_3_005' }, - ['-521817792'] = { Name = 'dt1_props_flyers_4_00' }, - ['1797634974'] = { Name = 'dt1_props_flyers_4_001' }, - ['-1445219188'] = { Name = 'dt1_props_flyers_5_00' }, - ['1133058913'] = { Name = 'dt1_props_flyers_5_001' }, - ['-1716795487'] = { Name = 'dt1_props_flyers_5_002' }, - ['-1475255188'] = { Name = 'dt1_props_flyers_5_003' }, - ['2106986358'] = { Name = 'dt1_props_flyers_5_004' }, - ['-1933529653'] = { Name = 'dt1_props_flyers_5_005' }, - ['-636893092'] = { Name = 'dt1_props_flyers_5_006' }, - ['842201085'] = { Name = 'dt1_props_flyers_5_007' }, - ['-326707446'] = { Name = 'dt1_props_flyers_6_00' }, - ['896663627'] = { Name = 'dt1_props_flyers_6_001' }, - ['330284231'] = { Name = 'dt1_props_flyers_6_002' }, - ['-2143142640'] = { Name = 'dt1_props_flyers_7_00' }, - ['2024985525'] = { Name = 'dt1_props_flyers_7_001' }, - ['-1975748920'] = { Name = 'dt1_props_flyers_7_002' }, - ['1410075240'] = { Name = 'dt1_props_flyers_7_003' }, - ['-908462546'] = { Name = 'dt1_props_flyers_7_004' }, - ['-1800959030'] = { Name = 'dt1_props_flyers_7_005' }, - ['547672507'] = { Name = 'dt1_rd1_cablemesh115078_thvy' }, - ['1061501622'] = { Name = 'dt1_rd1_cablemesh115623_thvy' }, - ['-299405294'] = { Name = 'dt1_rd1_cablemesh116749_thvy' }, - ['-23086352'] = { Name = 'dt1_rd1_cablemesh117237_thvy' }, - ['-126499779'] = { Name = 'dt1_rd1_cablemesh118326_thvy' }, - ['-2132810864'] = { Name = 'dt1_rd1_cablemeshdt1_22_thvy' }, - ['-1419411965'] = { Name = 'dt1_rd1_dt1_rd_cable_conn_01' }, - ['90298643'] = { Name = 'dt1_rd1_dt1_rd_grill' }, - ['1112878556'] = { Name = 'dt1_rd1_dt1_tun1stuff' }, - ['732404192'] = { Name = 'dt1_rd1_dt1_tun2stuff' }, - ['1173299843'] = { Name = 'dt1_rd1_dt1_tun3stuff' }, - ['732982669'] = { Name = 'dt1_rd1_dt1_tunnel1' }, - ['-1434368892'] = { Name = 'dt1_rd1_dt1_tunnel1r' }, - ['-1182922454'] = { Name = 'dt1_rd1_dt1_tunnel2' }, - ['2059820879'] = { Name = 'dt1_rd1_dt1_tunnel2r' }, - ['-953408378'] = { Name = 'dt1_rd1_dt1_tunnel3' }, - ['-44866749'] = { Name = 'dt1_rd1_dt1_tunnel3r' }, - ['570698305'] = { Name = 'dt1_rd1_dt1_tunnelroad' }, - ['649980771'] = { Name = 'dt1_rd1_dt1_tunnelroad2' }, - ['420106236'] = { Name = 'dt1_rd1_dt1_tunnelroad3' }, - ['1037344232'] = { Name = 'dt1_rd1_dt1_tunnelshell' }, - ['-1147697276'] = { Name = 'dt1_rd1_dt1_tunnelshell2' }, - ['-915266759'] = { Name = 'dt1_rd1_dt1_tunnelshell3' }, - ['-318701451'] = { Name = 'dt1_rd1_dt1_tunreflect1' }, - ['-12344070'] = { Name = 'dt1_rd1_dt1_tunreflect2' }, - ['705362568'] = { Name = 'dt1_rd1_dt1_tunreflect3' }, - ['-2101863375'] = { Name = 'dt1_rd1_fwy01' }, - ['-1188165340'] = { Name = 'dt1_rd1_fwy02' }, - ['678397898'] = { Name = 'dt1_rd1_fwy03_detail1' }, - ['-1776753889'] = { Name = 'dt1_rd1_fwy03_detail2' }, - ['-29674642'] = { Name = 'dt1_rd1_fwy03_detail3' }, - ['635757200'] = { Name = 'dt1_rd1_fwy03' }, - ['-609530338'] = { Name = 'dt1_rd1_fwy04' }, - ['-895898629'] = { Name = 'dt1_rd1_fwy05' }, - ['-1123307840'] = { Name = 'dt1_rd1_r1_00' }, - ['-1428616613'] = { Name = 'dt1_rd1_r1_01' }, - ['140193437'] = { Name = 'dt1_rd1_r1_018' }, - ['-1601964627'] = { Name = 'dt1_rd1_r1_02' }, - ['-1799954925'] = { Name = 'dt1_rd1_r1_03' }, - ['1142013126'] = { Name = 'dt1_rd1_r1_04' }, - ['835786821'] = { Name = 'dt1_rd1_r1_05' }, - ['-1482882081'] = { Name = 'dt1_rd1_r1_06' }, - ['-581275815'] = { Name = 'dt1_rd1_r1_07' }, - ['-888157500'] = { Name = 'dt1_rd1_r1_08' }, - ['1893013072'] = { Name = 'dt1_rd1_r1_09' }, - ['1047539627'] = { Name = 'dt1_rd1_r1_10' }, - ['974549378'] = { Name = 'dt1_rd1_r1_11_details' }, - ['100155072'] = { Name = 'dt1_rd1_r1_11' }, - ['1368443312'] = { Name = 'dt1_rd1_r1_11b' }, - ['-954089200'] = { Name = 'dt1_rd1_r1_12' }, - ['561509823'] = { Name = 'dt1_rd1_r1_13' }, - ['-224094183'] = { Name = 'dt1_rd1_r1_14' }, - ['-1895968567'] = { Name = 'dt1_rd1_r1_15' }, - ['-1624575709'] = { Name = 'dt1_rd1_r1_16' }, - ['1946786517'] = { Name = 'dt1_rd1_r1_19' }, - ['-1671107949'] = { Name = 'dt1_rd1_r1_20' }, - ['-1440872955'] = { Name = 'dt1_rd1_r1_21' }, - ['-1192778856'] = { Name = 'dt1_rd1_r1_22' }, - ['1440538000'] = { Name = 'dt1_rd1_r1_23' }, - ['1653798652'] = { Name = 'dt1_rd1_r1_24' }, - ['1908970843'] = { Name = 'dt1_rd1_r1_25' }, - ['-2146029066'] = { Name = 'dt1_rd1_r1_26' }, - ['478898914'] = { Name = 'dt1_rd1_r1_27' }, - ['700810582'] = { Name = 'dt1_rd1_r1_28' }, - ['954147721'] = { Name = 'dt1_rd1_r1_29' }, - ['-1932703092'] = { Name = 'dt1_rd1_r1_30' }, - ['1647181629'] = { Name = 'dt1_rd1_r1_31_s' }, - ['131743924'] = { Name = 'dt1_rd1_r1_31' }, - ['638352664'] = { Name = 'dt1_rd1_r1_32' }, - ['1099969567'] = { Name = 'dt1_rd1_r1_34' }, - ['1442713568'] = { Name = 'dt1_rd1_r1_35_s' }, - ['-521735490'] = { Name = 'dt1_rd1_r1_35' }, - ['-2091615435'] = { Name = 'dt1_rd1_r1_36_s' }, - ['-31118018'] = { Name = 'dt1_rd1_r1_36' }, - ['226741243'] = { Name = 'dt1_rd1_r1_37' }, - ['92070402'] = { Name = 'dt1_rd1_r1_38_s_lod' }, - ['-329607936'] = { Name = 'dt1_rd1_r1_38_s' }, - ['448194145'] = { Name = 'dt1_rd1_r1_38' }, - ['-1517487093'] = { Name = 'dt1_rd1_r1_39' }, - ['1766654512'] = { Name = 'dt1_rd1_r1_40' }, - ['1534092907'] = { Name = 'dt1_rd1_r1_41' }, - ['-1180768178'] = { Name = 'dt1_rd1_r1_42_s' }, - ['1153382665'] = { Name = 'dt1_rd1_r1_42' }, - ['-1492091478'] = { Name = 'dt1_rd1_r1_43' }, - ['-1874964474'] = { Name = 'dt1_rd1_r1_44' }, - ['-2102020875'] = { Name = 'dt1_rd1_r1_45' }, - ['1877512027'] = { Name = 'dt1_rd1_r1_46' }, - ['-366312479'] = { Name = 'dt1_rd1_r1_47' }, - ['-610933068'] = { Name = 'dt1_rd1_r1_48' }, - ['-457653302'] = { Name = 'dt1_rd1_r1_62' }, - ['1506675500'] = { Name = 'dt1_rd1_r1_ovly_00' }, - ['1851864146'] = { Name = 'dt1_rd1_r1_ovly_01' }, - ['2090914001'] = { Name = 'dt1_rd1_r1_ovly_02' }, - ['-57716568'] = { Name = 'dt1_rd1_r1_ovly_03' }, - ['315522342'] = { Name = 'dt1_rd1_r1_ovly_04' }, - ['-1591076381'] = { Name = 'dt1_rd1_r1_ovly_05' }, - ['-1246215425'] = { Name = 'dt1_rd1_r1_ovly_06' }, - ['-710933810'] = { Name = 'dt1_rd1_r1_ovly_07' }, - ['-338612432'] = { Name = 'dt1_rd1_r1_ovly_08' }, - ['-99365963'] = { Name = 'dt1_rd1_r1_ovly_09' }, - ['429360432'] = { Name = 'dt1_rd1_r1_ovly_10' }, - ['-1241727492'] = { Name = 'dt1_rd1_r1_ovly_11' }, - ['-2093295495'] = { Name = 'dt1_rd1_r1_ovly_12' }, - ['-1859390373'] = { Name = 'dt1_rd1_r1_ovly_13' }, - ['1600983262'] = { Name = 'dt1_rd1_r1_ovly_14' }, - ['-1058319395'] = { Name = 'dt1_rd1_r1_ovly_15' }, - ['-836342189'] = { Name = 'dt1_rd1_r1_ovly_16' }, - ['-1651733216'] = { Name = 'dt1_rd1_r1_ovly_17' }, - ['-1412224595'] = { Name = 'dt1_rd1_r1_ovly_18' }, - ['667623831'] = { Name = 'dt1_rd1_r1_ovly_19' }, - ['-1392989504'] = { Name = 'dt1_rd1_r1_ovly_20' }, - ['1876766858'] = { Name = 'dt1_rd1_r1_ovly_21' }, - ['192534998'] = { Name = 'dt1_rd1_r1_ovly_22_nb' }, - ['-1910674166'] = { Name = 'dt1_rd1_r1_ovly_22' }, - ['-446063715'] = { Name = 'dt1_rd1_r1_ovly_23' }, - ['-236800881'] = { Name = 'dt1_rd1_r1_ovly_24' }, - ['-1191918920'] = { Name = 'dt1_rd1_r1_ovly_25' }, - ['-679804988'] = { Name = 'dt1_rd1_r1_ovly_26' }, - ['175662526'] = { Name = 'dt1_rd1_r1_ovly_27' }, - ['448267837'] = { Name = 'dt1_rd1_r1_ovly_28' }, - ['-1620634843'] = { Name = 'dt1_rd1_r1_ovly_30' }, - ['980699449'] = { Name = 'dt1_rd1_r1_ovly_31' }, - ['1359181399'] = { Name = 'dt1_rd1_r1_ovly_32' }, - ['-706740206'] = { Name = 'dt1_rd1_r1_ovly_33' }, - ['-331993922'] = { Name = 'dt1_rd1_r1_ovly_34' }, - ['599858135'] = { Name = 'dt1_rd1_r1_ovly_35' }, - ['1979105349'] = { Name = 'dt1_rd1_r1_ovly_36' }, - ['1059836588'] = { Name = 'dt1_rd1_r1_ovly_37' }, - ['1433796416'] = { Name = 'dt1_rd1_r1_ovly_38' }, - ['1889219982'] = { Name = 'dt1_rd1_r1_ovly_39' }, - ['-2115669610'] = { Name = 'dt1_rd1_r1_ovly_40' }, - ['1385403123'] = { Name = 'dt1_rd1_r1_ovly_41' }, - ['1617669795'] = { Name = 'dt1_rd1_r1_ovly_42' }, - ['782158598'] = { Name = 'dt1_rd1_r1_ovly_43' }, - ['1021306760'] = { Name = 'dt1_rd1_r1_ovly_44' }, - ['154796093'] = { Name = 'dt1_rd1_r1_ovly_45' }, - ['-137372311'] = { Name = 'dt1_rd1_r1_ovly_46' }, - ['439689775'] = { Name = 'dt1_rd1_r1_ovly_47' }, - ['150798271'] = { Name = 'dt1_rd1_r1_ovly_48' }, - ['-1595621039'] = { Name = 'dt1_rd1_r2_fwy_ovly_01' }, - ['-1222447667'] = { Name = 'dt1_rd1_r2_fwy_ovly_02' }, - ['2140536500'] = { Name = 'dt1_rd1_r2_fwy_ovly_03' }, - ['-1919640911'] = { Name = 'dt1_rd1_r2_fwy_ovly_04' }, - ['225869253'] = { Name = 'dt1_rd1_r6_28' }, - ['-883370446'] = { Name = 'dt1_rd1_t21' }, - ['-1493447772'] = { Name = 'dt1_rd1_tnl_s' }, - ['127552213'] = { Name = 'dt1_rd1_tunnelshadowbox1' }, - ['450195787'] = { Name = 'dt1_rd1_tunnelshadowbox2' }, - ['-251257427'] = { Name = 'dt1_rd1_tunnelshadowbox3' }, - ['-2112514530'] = { Name = 'dt1_rd1_wire244' }, - ['-1868745939'] = { Name = 'dt1_rd1_wire245' }, - ['-392624135'] = { Name = 'dt1_tc_ce_lod' }, - ['-1330952343'] = { Name = 'dt1_tc_ce' }, - ['-186664415'] = { Name = 'dt1_tc_ce2_lod' }, - ['-1774935482'] = { Name = 'dt1_tc_ces2' }, - ['2073273140'] = { Name = 'dt1_tc_cpr_null' }, - ['1868969512'] = { Name = 'dt1_tc_cpr' }, - ['1335486050'] = { Name = 'dt1_tc_dufo_core_lod' }, - ['2105137876'] = { Name = 'dt1_tc_dufo_core' }, - ['-753271713'] = { Name = 'dt1_tc_dufo_lights' }, - ['-1347261355'] = { Name = 'dt1_tc_rcex2_null' }, - ['-2100080556'] = { Name = 'dt1_tc_rcex2_prox' }, - ['-41006999'] = { Name = 'dt1_tc_ufo_pivot' }, - ['-510749711'] = { Name = 'dt1_tc_ufocore_col' }, - ['-560378741'] = { Name = 'dt1_tc_ufocore' }, - ['1177543287'] = { Name = 'dubsta' }, - ['-394074634'] = { Name = 'dubsta2' }, - ['-1237253773'] = { Name = 'dubsta3' }, - ['723973206'] = { Name = 'dukes' }, - ['-326143852'] = { Name = 'dukes2' }, - ['-2130482718'] = { Name = 'dump' }, - ['-1661854193'] = { Name = 'dune' }, - ['534258863'] = { Name = 'dune2' }, - ['-827162039'] = { Name = 'dune4' }, - ['-312295511'] = { Name = 'dune5' }, - ['970356638'] = { Name = 'duster' }, - ['-332287871'] = { Name = 'ela_wdn_02_' }, - ['-973756617'] = { Name = 'ela_wdn_02_decal' }, - ['437977014'] = { Name = 'ela_wdn_02lod_' }, - ['22143489'] = { Name = 'ela_wdn_04_' }, - ['-1936258660'] = { Name = 'ela_wdn_04_decals' }, - ['812229521'] = { Name = 'ela_wdn_04lod_' }, - ['196747873'] = { Name = 'elegy' }, - ['-566387422'] = { Name = 'elegy2' }, - ['-685276541'] = { Name = 'emperor' }, - ['-1883002148'] = { Name = 'emperor2' }, - ['-1241712818'] = { Name = 'emperor3' }, - ['1753414259'] = { Name = 'enduro' }, - ['-1291952903'] = { Name = 'entityxf' }, - ['2035069708'] = { Name = 'esskey' }, - ['-5153954'] = { Name = 'exemplar' }, - ['-1388160414'] = { Name = 'exile1_lightrig' }, - ['2116711309'] = { Name = 'exile1_reflecttrig' }, - ['-591610296'] = { Name = 'f620' }, - ['-2119578145'] = { Name = 'faction' }, - ['-1790546981'] = { Name = 'faction2' }, - ['-2039755226'] = { Name = 'faction3' }, - ['-1842748181'] = { Name = 'faggio' }, - ['55628203'] = { Name = 'faggio2' }, - ['-1289178744'] = { Name = 'faggio3' }, - ['1127131465'] = { Name = 'fbi' }, - ['-1647941228'] = { Name = 'fbi2' }, - ['627535535'] = { Name = 'fcr' }, - ['-757735410'] = { Name = 'fcr2' }, - ['-391594584'] = { Name = 'felon' }, - ['-89291282'] = { Name = 'felon2' }, - ['-1995326987'] = { Name = 'feltzer2' }, - ['-1566741232'] = { Name = 'feltzer3' }, - ['1312726357'] = { Name = 'fib_3_qte_lightrig' }, - ['-1445429028'] = { Name = 'fib_5_mcs_10_lightrig' }, - ['139599796'] = { Name = 'fib_cl2_cbl_root' }, - ['66776599'] = { Name = 'fib_cl2_cbl2_root' }, - ['-1808138869'] = { Name = 'fib_cl2_frm_root' }, - ['1494703683'] = { Name = 'fib_cl2_vent_root' }, - ['509226741'] = { Name = 'fire_mesh_root' }, - ['1938952078'] = { Name = 'firetruk' }, - ['-836512833'] = { Name = 'fixter' }, - ['1353720154'] = { Name = 'flatbed' }, - ['1426219628'] = { Name = 'fmj' }, - ['1491375716'] = { Name = 'forklift' }, - ['-1137532101'] = { Name = 'fq2' }, - ['1649550295'] = { Name = 'frag_plank_a' }, - ['2139119155'] = { Name = 'frag_plank_b' }, - ['1209298780'] = { Name = 'frag_plank_c' }, - ['1449004015'] = { Name = 'frag_plank_d' }, - ['423137701'] = { Name = 'frag_plank_e' }, - ['1030400667'] = { Name = 'freight' }, - ['184361638'] = { Name = 'freightcar' }, - ['920453016'] = { Name = 'freightcont1' }, - ['240201337'] = { Name = 'freightcont2' }, - ['642617954'] = { Name = 'freightgrain' }, - ['-777275802'] = { Name = 'freighttrailer' }, - ['744705981'] = { Name = 'frogger' }, - ['1949211328'] = { Name = 'frogger2' }, - ['1909141499'] = { Name = 'fugitive' }, - ['-1089039904'] = { Name = 'furoregt' }, - ['499169875'] = { Name = 'fusilade' }, - ['2016857647'] = { Name = 'futo' }, - ['1840143597'] = { Name = 'fwy_01_02_sd_slod1' }, - ['1010082231'] = { Name = 'fwy_01_arm_02' }, - ['510682659'] = { Name = 'fwy_01_arm_03' }, - ['667951943'] = { Name = 'fwy_01_fwy_skidm' }, - ['-1688398509'] = { Name = 'fwy_01_fwy1_ramp' }, - ['-1539362751'] = { Name = 'fwy_01_fwysign_001_i' }, - ['384243091'] = { Name = 'fwy_01_fwysign_001_o' }, - ['-1196871971'] = { Name = 'fwy_01_fwysign_001' }, - ['628460638'] = { Name = 'fwy_01_fwysign_001b_o' }, - ['-1721388198'] = { Name = 'fwy_01_fwysign_001b' }, - ['-1424992593'] = { Name = 'fwy_01_fwysign_001c' }, - ['-446666697'] = { Name = 'fwy_01_fwysign_002_i' }, - ['-1958923274'] = { Name = 'fwy_01_fwysign_002_o' }, - ['-1502901662'] = { Name = 'fwy_01_fwysign_002' }, - ['581813452'] = { Name = 'fwy_01_fwysign_002b' }, - ['899441450'] = { Name = 'fwy_01_fwysign_003_o' }, - ['-716281817'] = { Name = 'fwy_01_fwysign_003' }, - ['-1235716626'] = { Name = 'fwy_01_fwysign_004_o' }, - ['-870689345'] = { Name = 'fwy_01_fwysign_004' }, - ['-1352084448'] = { Name = 'fwy_01_fwysign_004b_o' }, - ['1425450769'] = { Name = 'fwy_01_fwysign_004b' }, - ['50146337'] = { Name = 'fwy_01_fwysign_004c_o' }, - ['1128989626'] = { Name = 'fwy_01_fwysign_004c' }, - ['1810273435'] = { Name = 'fwy_01_fwysign_005_o' }, - ['1977002345'] = { Name = 'fwy_01_fwysign_005' }, - ['956177882'] = { Name = 'fwy_01_fwysign_005b_o' }, - ['-1262405744'] = { Name = 'fwy_01_fwysign_005b' }, - ['1186780800'] = { Name = 'fwy_01_fwysign_006_o' }, - ['1802278037'] = { Name = 'fwy_01_fwysign_006' }, - ['281425119'] = { Name = 'fwy_01_fwysign_007_o' }, - ['-1672841648'] = { Name = 'fwy_01_fwysign_007' }, - ['-1855948360'] = { Name = 'fwy_01_fwysign_008_o' }, - ['-1975791053'] = { Name = 'fwy_01_fwysign_008' }, - ['-1425783617'] = { Name = 'fwy_01_fwysign_009_o' }, - ['842015952'] = { Name = 'fwy_01_fwysign_009a' }, - ['497023904'] = { Name = 'fwy_01_fwysign_009b' }, - ['-17745894'] = { Name = 'fwy_01_fwysign_010_o' }, - ['-2091111388'] = { Name = 'fwy_01_fwysign_010' }, - ['-390397602'] = { Name = 'fwy_01_fwysign_011_o' }, - ['1837432950'] = { Name = 'fwy_01_fwysign_011' }, - ['-1857032501'] = { Name = 'fwy_01_fwysign_011b_o' }, - ['1516960067'] = { Name = 'fwy_01_fwysign_011b' }, - ['251509929'] = { Name = 'fwy_01_fwysign_033' }, - ['1468190142'] = { Name = 'fwy_01_fwysign_034' }, - ['-1520041117'] = { Name = 'fwy_01_fwysign_text_002' }, - ['-652481846'] = { Name = 'fwy_01_fwysign_text_006' }, - ['-2067119576'] = { Name = 'fwy_01_fwysign_text_007' }, - ['825629441'] = { Name = 'fwy_01_fwysign_text_009' }, - ['-1330504933'] = { Name = 'fwy_01_fwysign_text_012' }, - ['-1462891697'] = { Name = 'fwy_01_fwysign_text_014' }, - ['-1000291724'] = { Name = 'fwy_01_fwysign_text_016' }, - ['-1879746146'] = { Name = 'fwy_01_fwysign_text_017' }, - ['-945165223'] = { Name = 'fwy_01_fwysign_text_017b' }, - ['-1657772160'] = { Name = 'fwy_01_fwysign_text_021' }, - ['1212923312'] = { Name = 'fwy_01_fwysign_text_024' }, - ['1368444986'] = { Name = 'fwy_01_fwysign_text_025' }, - ['177816140'] = { Name = 'fwy_01_fwysign_text_029' }, - ['-1797299894'] = { Name = 'fwy_01_fwysign_text_030' }, - ['948840613'] = { Name = 'fwy_01_fwysign_text_032' }, - ['-2125317572'] = { Name = 'fwy_01_fwysign_text_035' }, - ['356737552'] = { Name = 'fwy_01_fwysign_text_037' }, - ['-1417703786'] = { Name = 'fwy_01_fwysign_text_038' }, - ['-1195235045'] = { Name = 'fwy_01_fwysign_text_039' }, - ['-1612060001'] = { Name = 'fwy_01_fwysign_text_040' }, - ['-2124632699'] = { Name = 'fwy_01_fwysign_text_042' }, - ['1911525055'] = { Name = 'fwy_01_fwysign_text_044' }, - ['-1645287747'] = { Name = 'fwy_01_fwysign_text_049' }, - ['-833730405'] = { Name = 'fwy_01_fwysign_text_053' }, - ['-1277717586'] = { Name = 'fwy_01_fwysign_text_055' }, - ['-535434198'] = { Name = 'fwy_01_fwysign_text_056' }, - ['1169012568'] = { Name = 'fwy_01_fwysign_text_057' }, - ['-607917910'] = { Name = 'fwy_01_fwysign_text_063' }, - ['-1197923755'] = { Name = 'fwy_01_fwysign_text_065' }, - ['-2129939653'] = { Name = 'fwy_01_fwysign_text_069' }, - ['-1031459103'] = { Name = 'fwy_01_fwysign_text_071' }, - ['-803616246'] = { Name = 'fwy_01_fwysign_text_072' }, - ['-858569863'] = { Name = 'fwy_01_fwysign_text_074' }, - ['1998821403'] = { Name = 'fwy_01_fwysign_text_075' }, - ['-56350618'] = { Name = 'fwy_01_fwysign_text_081' }, - ['-948794544'] = { Name = 'fwy_01_girders' }, - ['-871833653'] = { Name = 'fwy_01_grafitti_01' }, - ['-500422441'] = { Name = 'fwy_01_grnd05_o' }, - ['1842188256'] = { Name = 'fwy_01_lowbridge_01' }, - ['-991731276'] = { Name = 'fwy_01_ol_em_slod' }, - ['1033912531'] = { Name = 'fwy_01_olimp_emm' }, - ['704672500'] = { Name = 'fwy_01_olimp_frm' }, - ['-1675060355'] = { Name = 'fwy_01_olimp' }, - ['1862824433'] = { Name = 'fwy_01_overheadsigns_00' }, - ['1084265762'] = { Name = 'fwy_01_overheadsigns_01' }, - ['-1954796836'] = { Name = 'fwy_01_overheadsigns_02' }, - ['1562201627'] = { Name = 'fwy_01_overheadsigns_03' }, - ['-13663847'] = { Name = 'fwy_01_overheadsigns_032' }, - ['1417554997'] = { Name = 'fwy_01_overheadsigns_033' }, - ['1613517905'] = { Name = 'fwy_01_overheadsigns_04' }, - ['-1884867766'] = { Name = 'fwy_01_overheadsigns_05' }, - ['2086407348'] = { Name = 'fwy_01_overheadsigns_06' }, - ['-1439963053'] = { Name = 'fwy_01_overheadsigns_07' }, - ['714631466'] = { Name = 'fwy_01_overheadsigns_08' }, - ['413353280'] = { Name = 'fwy_01_overheadsigns_09' }, - ['-1860519303'] = { Name = 'fwy_01_overheadsigns_10' }, - ['-1487149317'] = { Name = 'fwy_01_overheadsigns_11' }, - ['-1777449884'] = { Name = 'fwy_01_overheadsigns_12' }, - ['-1538203415'] = { Name = 'fwy_01_overheadsigns_13' }, - ['982846827'] = { Name = 'fwy_01_overheadsigns_14' }, - ['1221765606'] = { Name = 'fwy_01_overheadsigns_15' }, - ['1593366066'] = { Name = 'fwy_01_overheadsigns_16' }, - ['1832874687'] = { Name = 'fwy_01_overheadsigns_17' }, - ['57253653'] = { Name = 'fwy_01_overheadsigns_18' }, - ['287521416'] = { Name = 'fwy_01_overheadsigns_19' }, - ['1490628919'] = { Name = 'fwy_01_overheadsigns_20' }, - ['1164118603'] = { Name = 'fwy_01_overheadsigns_21' }, - ['934047454'] = { Name = 'fwy_01_overheadsigns_22' }, - ['-1514679246'] = { Name = 'fwy_01_overheadsigns_22b' }, - ['568279876'] = { Name = 'fwy_01_overheadsigns_23' }, - ['299737921'] = { Name = 'fwy_01_overheadsigns_24' }, - ['71043070'] = { Name = 'fwy_01_overheadsigns_25' }, - ['-329066420'] = { Name = 'fwy_01_overheadsigns_26' }, - ['-552354386'] = { Name = 'fwy_01_overheadsigns_27' }, - ['-292791141'] = { Name = 'fwy_01_overheadsigns_28' }, - ['-664981443'] = { Name = 'fwy_01_overheadsigns_29' }, - ['1586123297'] = { Name = 'fwy_01_overheadsigns_31' }, - ['742581443'] = { Name = 'fwy_01_rd_01_r1a' }, - ['438255740'] = { Name = 'fwy_01_rd_01_r1b' }, - ['288402815'] = { Name = 'fwy_01_rd_01_r2a' }, - ['1599523274'] = { Name = 'fwy_01_rd_01_r2b' }, - ['-825160510'] = { Name = 'fwy_01_rd_01' }, - ['620771615'] = { Name = 'fwy_01_rd_02' }, - ['1109850339'] = { Name = 'fwy_01_rd_03_ov' }, - ['491514567'] = { Name = 'fwy_01_rd_06_ov' }, - ['434930590'] = { Name = 'fwy_01_rd_07_ov' }, - ['1578445640'] = { Name = 'fwy_01_rd_07' }, - ['-62109330'] = { Name = 'fwy_01_rd_08_ov' }, - ['589346116'] = { Name = 'fwy_01_rd_08' }, - ['-1292944763'] = { Name = 'fwy_01_rd_09_ov' }, - ['-1993276189'] = { Name = 'fwy_01_rd_11' }, - ['1840336356'] = { Name = 'fwy_01_rd_13' }, - ['-183771953'] = { Name = 'fwy_01_rd_14' }, - ['524562751'] = { Name = 'fwy_01_rd_17' }, - ['-1370337447'] = { Name = 'fwy_01_rd_18' }, - ['29127656'] = { Name = 'fwy_01_rd_30' }, - ['-494160505'] = { Name = 'fwy_01_rd_32' }, - ['-220178896'] = { Name = 'fwy_01_rd_33' }, - ['512077158'] = { Name = 'fwy_01_rd_34' }, - ['751651317'] = { Name = 'fwy_01_rd_35' }, - ['-100211607'] = { Name = 'fwy_01_rd_36' }, - ['135889038'] = { Name = 'fwy_01_rd_37' }, - ['-736356204'] = { Name = 'fwy_01_rd_38' }, - ['-437514484'] = { Name = 'fwy_01_rd_38bb' }, - ['1610847895'] = { Name = 'fwy_01_rd_46_ov' }, - ['-985525179'] = { Name = 'fwy_01_rd_47_ov' }, - ['-1020906284'] = { Name = 'fwy_01_rd_48_ov' }, - ['-1141630438'] = { Name = 'fwy_01_rd_49_ov' }, - ['-1498891687'] = { Name = 'fwy_01_rd_50_ov' }, - ['-1768270429'] = { Name = 'fwy_01_rd_51_ov' }, - ['-306684696'] = { Name = 'fwy_01_rd_51b_ov' }, - ['-1592810990'] = { Name = 'fwy_01_rd_52_ov' }, - ['1485653058'] = { Name = 'fwy_01_rd_53_ov' }, - ['-74533222'] = { Name = 'fwy_01_rd_54_ov' }, - ['-1085737988'] = { Name = 'fwy_01_rd_55_ov' }, - ['1260036682'] = { Name = 'fwy_01_rd_56_ov' }, - ['-1853124218'] = { Name = 'fwy_01_rd_57_ov' }, - ['-1383806654'] = { Name = 'fwy_01_rd_57' }, - ['-392210734'] = { Name = 'fwy_01_rd_58_edge' }, - ['1086377175'] = { Name = 'fwy_01_rd_58_ov' }, - ['-1135941938'] = { Name = 'fwy_01_rd_58' }, - ['1576488730'] = { Name = 'fwy_01_rd_59_ov' }, - ['-1863249893'] = { Name = 'fwy_01_rd_59' }, - ['1435408089'] = { Name = 'fwy_01_rd_60_ov' }, - ['674150372'] = { Name = 'fwy_01_rd_60' }, - ['-1359039987'] = { Name = 'fwy_01_rd_61_ov' }, - ['-34610329'] = { Name = 'fwy_01_rd_61' }, - ['-910933535'] = { Name = 'fwy_01_sandp_02' }, - ['-615324386'] = { Name = 'fwy_01_sandp_03' }, - ['1130444093'] = { Name = 'fwy_01_sandp_04' }, - ['1291405421'] = { Name = 'fwy_01_sandp_05' }, - ['-85325610'] = { Name = 'fwy_01_sandramp002' }, - ['693598623'] = { Name = 'fwy_01_shadowcast' }, - ['-1061671498'] = { Name = 'fwy_01_shadowonly_01' }, - ['1463284828'] = { Name = 'fwy_01_spjump_01' }, - ['625283191'] = { Name = 'fwy_01_spjump_02' }, - ['479783965'] = { Name = 'fwy_01_split_011' }, - ['181553296'] = { Name = 'fwy_01_split_012' }, - ['-450451772'] = { Name = 'fwy_01_split_013_grilla' }, - ['-728496737'] = { Name = 'fwy_01_split_013_grillb' }, - ['949800367'] = { Name = 'fwy_01_split_013_grillc' }, - ['1642733641'] = { Name = 'fwy_01_split_013_grilld' }, - ['-1827403773'] = { Name = 'fwy_01_split_013_r2' }, - ['-1579539057'] = { Name = 'fwy_01_split_013_r3' }, - ['-767961252'] = { Name = 'fwy_01_split_013' }, - ['8303593'] = { Name = 'fwy_01_split_014' }, - ['398615160'] = { Name = 'fwy_01_split_015' }, - ['-782824759'] = { Name = 'fwy_01_split_16_ov' }, - ['1244990135'] = { Name = 'fwy_01_split_17_ov' }, - ['2033776624'] = { Name = 'fwy_01_split_18_ov' }, - ['-1101111196'] = { Name = 'fwy_01_split_19_lights' }, - ['-1059540830'] = { Name = 'fwy_01_split_19_lights001' }, - ['-7141378'] = { Name = 'fwy_01_split_19_ov' }, - ['1165105228'] = { Name = 'fwy_01_split_20_ov' }, - ['-1228976972'] = { Name = 'fwy_01_split_21_ov' }, - ['-1299659232'] = { Name = 'fwy_01_spx_013_r2' }, - ['-1616502693'] = { Name = 'fwy_01_spx_013_r3' }, - ['-1266696153'] = { Name = 'fwy_01_wallbase_ov' }, - ['2110121657'] = { Name = 'fwy_01_wallbase' }, - ['998336788'] = { Name = 'fwy_01_weed_01' }, - ['-936864794'] = { Name = 'fwy_02_fwysign_001_d1' }, - ['-624707300'] = { Name = 'fwy_02_fwysign_001_d2' }, - ['-1414931735'] = { Name = 'fwy_02_fwysign_001_d3' }, - ['525863252'] = { Name = 'fwy_02_fwysign_001_o' }, - ['-1122614503'] = { Name = 'fwy_02_fwysign_001' }, - ['-1735820093'] = { Name = 'fwy_02_fwysign_001b_d' }, - ['-1511916082'] = { Name = 'fwy_02_fwysign_001b' }, - ['144486419'] = { Name = 'fwy_02_fwysign_002_d1' }, - ['-965727301'] = { Name = 'fwy_02_fwysign_002_d2' }, - ['-666775714'] = { Name = 'fwy_02_fwysign_002_d3' }, - ['-1578343756'] = { Name = 'fwy_02_fwysign_002_d4' }, - ['1982693480'] = { Name = 'fwy_02_fwysign_002_o' }, - ['-1330042273'] = { Name = 'fwy_02_fwysign_002' }, - ['-1608403591'] = { Name = 'fwy_02_fwysign_003_d1' }, - ['-1906372108'] = { Name = 'fwy_02_fwysign_003_d2' }, - ['-2146176316'] = { Name = 'fwy_02_fwysign_003_o' }, - ['-1561686334'] = { Name = 'fwy_02_fwysign_003' }, - ['190018595'] = { Name = 'fwy_02_fwysign_003b_d1' }, - ['1532454542'] = { Name = 'fwy_02_fwysign_003b' }, - ['-364635166'] = { Name = 'fwy_02_fwysign_004_d2' }, - ['1342564196'] = { Name = 'fwy_02_fwysign_004_d3' }, - ['158836745'] = { Name = 'fwy_02_fwysign_004_o' }, - ['306507129'] = { Name = 'fwy_02_fwysign_004' }, - ['2080949983'] = { Name = 'fwy_02_fwysign_005_d1' }, - ['1783440232'] = { Name = 'fwy_02_fwysign_005_d2' }, - ['1736187334'] = { Name = 'fwy_02_fwysign_005_d3' }, - ['1435335141'] = { Name = 'fwy_02_fwysign_005_d4' }, - ['-720373524'] = { Name = 'fwy_02_fwysign_005_d5' }, - ['-1021127406'] = { Name = 'fwy_02_fwysign_005_d6' }, - ['949955199'] = { Name = 'fwy_02_fwysign_005_o' }, - ['-193613349'] = { Name = 'fwy_02_fwysign_005' }, - ['1357840267'] = { Name = 'fwy_02_fwysign_006_d1' }, - ['1043159560'] = { Name = 'fwy_02_fwysign_006_d2' }, - ['754923436'] = { Name = 'fwy_02_fwysign_006_d3' }, - ['450007891'] = { Name = 'fwy_02_fwysign_006_d4' }, - ['2072320101'] = { Name = 'fwy_02_fwysign_006_o' }, - ['-452324604'] = { Name = 'fwy_02_fwysign_006' }, - ['1661861389'] = { Name = 'fwy_02_fwysign_007_d1' }, - ['-171433073'] = { Name = 'fwy_02_fwysign_007_d2' }, - ['83280364'] = { Name = 'fwy_02_fwysign_007_d3' }, - ['574867479'] = { Name = 'fwy_02_fwysign_007_o' }, - ['1438741617'] = { Name = 'fwy_02_fwysign_007' }, - ['799479578'] = { Name = 'fwy_02_fwysign_007b_d' }, - ['1754889414'] = { Name = 'fwy_02_fwysign_007b' }, - ['1415088992'] = { Name = 'fwy_02_fwysign_008_d1' }, - ['-828243983'] = { Name = 'fwy_02_fwysign_008_d2' }, - ['-2103371081'] = { Name = 'fwy_02_fwysign_008_o' }, - ['1217288715'] = { Name = 'fwy_02_fwysign_008' }, - ['385229561'] = { Name = 'fwy_02_fwysign_009_d1' }, - ['-1391440085'] = { Name = 'fwy_02_fwysign_009_d2' }, - ['-1069666536'] = { Name = 'fwy_02_fwysign_009_o' }, - ['994033518'] = { Name = 'fwy_02_fwysign_009' }, - ['-692933029'] = { Name = 'fwy_02_fwysign_009b_d' }, - ['1070704883'] = { Name = 'fwy_02_fwysign_009b' }, - ['-734226854'] = { Name = 'fwy_02_fwysign_010_d1' }, - ['90437792'] = { Name = 'fwy_02_fwysign_010_d2' }, - ['-2123841015'] = { Name = 'fwy_02_fwysign_010_o' }, - ['-1551337367'] = { Name = 'fwy_02_fwysign_010' }, - ['2010341521'] = { Name = 'fwy_02_fwysign_text_002' }, - ['846681546'] = { Name = 'fwy_02_fwysign_text_005' }, - ['1356894876'] = { Name = 'fwy_02_fwysign_text_007' }, - ['126717007'] = { Name = 'fwy_02_fwysign_text_010' }, - ['956526394'] = { Name = 'fwy_02_fwysign_text_011' }, - ['-767516234'] = { Name = 'fwy_02_fwysign_text_014' }, - ['-1929243102'] = { Name = 'fwy_02_fwysign_text_023' }, - ['1232572174'] = { Name = 'fwy_02_fwysign_text_026' }, - ['-917696837'] = { Name = 'fwy_02_fwysign_text_029' }, - ['-1690922397'] = { Name = 'fwy_02_fwysign_text_031' }, - ['1330150016'] = { Name = 'fwy_02_fwysign_text_036' }, - ['579412226'] = { Name = 'fwy_02_fwysign_text_037' }, - ['-2042664851'] = { Name = 'fwy_02_fwysign_text_039' }, - ['-1249819184'] = { Name = 'fwy_02_fwysign_text_042' }, - ['-959289230'] = { Name = 'fwy_02_fwysign_text_043' }, - ['1121280122'] = { Name = 'fwy_02_fwysign_text_044' }, - ['358516109'] = { Name = 'fwy_02_fwysign_text_045' }, - ['-565635237'] = { Name = 'fwy_02_fwysign_text_049' }, - ['670812331'] = { Name = 'fwy_02_fwysign_text_050' }, - ['982085062'] = { Name = 'fwy_02_fwysign_text_051' }, - ['-1926229226'] = { Name = 'fwy_02_fwysign_text_052' }, - ['-1675448069'] = { Name = 'fwy_02_fwysign_text_053' }, - ['-646078709'] = { Name = 'fwy_02_rd_03' }, - ['798903115'] = { Name = 'fwy_02_rd_09' }, - ['1850820264'] = { Name = 'fwy_02_rd_10' }, - ['311299879'] = { Name = 'fwy_02_rd_12' }, - ['1214935303'] = { Name = 'fwy_02_rd_13_ovly' }, - ['-1397208165'] = { Name = 'fwy_02_rd_14_ovly' }, - ['264070020'] = { Name = 'fwy_02_rd_15_ovly' }, - ['1100510211'] = { Name = 'fwy_02_rd_16_ovly' }, - ['-1046092401'] = { Name = 'fwy_02_rd_17_ovly' }, - ['66701422'] = { Name = 'fwy_02_rd_18_ovly' }, - ['-2106293128'] = { Name = 'fwy_02_rd_19_ovly' }, - ['-818563571'] = { Name = 'fwy_02_rd_20_ovly' }, - ['666855341'] = { Name = 'fwy_02_rd_21_ovly' }, - ['1070906795'] = { Name = 'fwy_02_rd_22_ovly' }, - ['-51668059'] = { Name = 'fwy_02_rd_23_ovly' }, - ['-1313974705'] = { Name = 'fwy_02_rd_24_ovly' }, - ['-1942772126'] = { Name = 'fwy_02_rd_25_ovly' }, - ['-240223431'] = { Name = 'fwy_02_rd_26_ovly' }, - ['-2099791741'] = { Name = 'fwy_02_rd_27_ovly' }, - ['-46817348'] = { Name = 'fwy_02_rd_28_ovly' }, - ['1151469602'] = { Name = 'fwy_02_rd_29_ovly' }, - ['-1124364125'] = { Name = 'fwy_02_rd_31_ovly' }, - ['-790076963'] = { Name = 'fwy_02_rd_32_ovly' }, - ['2144403984'] = { Name = 'fwy_02_rd_33_ovly' }, - ['51971457'] = { Name = 'fwy_02_rd_34_ovly' }, - ['-865290286'] = { Name = 'fwy_02_rd_35_ovly' }, - ['-13231297'] = { Name = 'fwy_02_rd_36_ovly' }, - ['-61112409'] = { Name = 'fwy_02_rd_39_ovly' }, - ['-991167828'] = { Name = 'fwy_02_rd_39' }, - ['-1481232386'] = { Name = 'fwy_02_rd_39g' }, - ['-540134993'] = { Name = 'fwy_02_rd_40_ovly' }, - ['-135564714'] = { Name = 'fwy_02_rd_40' }, - ['-306029052'] = { Name = 'fwy_02_rd_41' }, - ['912505344'] = { Name = 'fwy_02_rd_42_ovly' }, - ['-1958471419'] = { Name = 'fwy_02_rd_42' }, - ['-2127087806'] = { Name = 'fwy_02_rd_43_ovly' }, - ['-1139606878'] = { Name = 'fwy_02_rd_43' }, - ['-826138624'] = { Name = 'fwy_02_rd_44' }, - ['-979956310'] = { Name = 'fwy_02_rd_45' }, - ['1180340019'] = { Name = 'fwy_02_rd_46' }, - ['1928030292'] = { Name = 'fwy_02_rd_47' }, - ['1774605834'] = { Name = 'fwy_02_rd_48' }, - ['-1733151775'] = { Name = 'fwy_02_rd_49' }, - ['177673797'] = { Name = 'fwy_02_rd_50' }, - ['475609545'] = { Name = 'fwy_02_rd_51' }, - ['791535474'] = { Name = 'fwy_02_rd_52' }, - ['820699884'] = { Name = 'fwy_02_rd_53' }, - ['-449066101'] = { Name = 'fwy_02_rd_55' }, - ['-201955072'] = { Name = 'fwy_02_rd_56' }, - ['-832529203'] = { Name = 'fwy_02_rd_64' }, - ['-1109460022'] = { Name = 'fwy_02_rd_65' }, - ['1672693620'] = { Name = 'fwy_02_rd_66' }, - ['-1213375525'] = { Name = 'fwy_02_reflectproxyb' }, - ['1931632830'] = { Name = 'fwy_02_sandp_01' }, - ['1547929199'] = { Name = 'fwy_02_split01' }, - ['-1941346694'] = { Name = 'fwy_02_split02' }, - ['-1331220683'] = { Name = 'fwy_02_split04' }, - ['-2015568191'] = { Name = 'fwy_02_split10' }, - ['785404779'] = { Name = 'fwy_03_candysign' }, - ['-1834361447'] = { Name = 'fwy_03_fwysign_001' }, - ['-1604355836'] = { Name = 'fwy_03_fwysign_002' }, - ['929081096'] = { Name = 'fwy_03_fwysign_003' }, - ['743654470'] = { Name = 'fwy_03_fwysign_01' }, - ['-1431256833'] = { Name = 'fwy_03_fwysign_02' }, - ['-1061688051'] = { Name = 'fwy_03_fwysign_03' }, - ['-1785293109'] = { Name = 'fwy_03_fwysign_04' }, - ['-1435450938'] = { Name = 'fwy_03_fwysign_d_001' }, - ['766625870'] = { Name = 'fwy_03_fwysign_d_002' }, - ['-1788540663'] = { Name = 'fwy_03_fwysign_graf01_002' }, - ['609487482'] = { Name = 'fwy_03_fwysign_o_001' }, - ['1853365953'] = { Name = 'fwy_03_fwysign_o_002' }, - ['1067958561'] = { Name = 'fwy_03_fwysign_o_003' }, - ['2116070062'] = { Name = 'fwy_03_fwysign_text_002' }, - ['1400198488'] = { Name = 'fwy_03_fwysign_text_003' }, - ['1556703232'] = { Name = 'fwy_03_fwysign_text_004' }, - ['849089446'] = { Name = 'fwy_03_fwysign_text_005' }, - ['368400973'] = { Name = 'fwy_03_fwysign_text_007' }, - ['681967534'] = { Name = 'fwy_03_fwysign_text_008' }, - ['-641703452'] = { Name = 'fwy_03_fwysign_text_009' }, - ['-56187352'] = { Name = 'fwy_03_fwysign_text_010' }, - ['847525937'] = { Name = 'fwy_03_rd_01_ov' }, - ['255575519'] = { Name = 'fwy_03_rd_01' }, - ['-51502780'] = { Name = 'fwy_03_rd_02' }, - ['-1203955749'] = { Name = 'fwy_03_rd_03' }, - ['1707839008'] = { Name = 'fwy_03_rd_04_ov' }, - ['-580847449'] = { Name = 'fwy_03_rd_05_ov' }, - ['-1429376089'] = { Name = 'fwy_03_split_01_ov' }, - ['1249422387'] = { Name = 'fwy_03_split_01' }, - ['38968300'] = { Name = 'fwy_03_split_02' }, - ['-928456347'] = { Name = 'fwy_03_split_03_ov' }, - ['1722377364'] = { Name = 'fwy_03_split_03' }, - ['944396955'] = { Name = 'fwy_04_bridge002' }, - ['351093622'] = { Name = 'fwy_04_bridge01dcal' }, - ['827571142'] = { Name = 'fwy_04_dcal01' }, - ['-156050048'] = { Name = 'fwy_04_e' }, - ['-133366097'] = { Name = 'fwy_04_fw1_04_detail1' }, - ['1991285401'] = { Name = 'fwy_04_fwy_4_rd_41a_ovly' }, - ['-367811350'] = { Name = 'fwy_04_fwysign_001_o' }, - ['-742405552'] = { Name = 'fwy_04_fwysign_001' }, - ['2135834351'] = { Name = 'fwy_04_fwysign_002_d1' }, - ['614926754'] = { Name = 'fwy_04_fwysign_002_d2' }, - ['-195220540'] = { Name = 'fwy_04_fwysign_002_d2b' }, - ['369192023'] = { Name = 'fwy_04_fwysign_002_d3' }, - ['-228769631'] = { Name = 'fwy_04_fwysign_002_d3b' }, - ['-1143481286'] = { Name = 'fwy_04_fwysign_002_o' }, - ['-1732946884'] = { Name = 'fwy_04_fwysign_002' }, - ['-140112333'] = { Name = 'fwy_04_fwysign_002b_d1' }, - ['-858244964'] = { Name = 'fwy_04_fwysign_002b_d2' }, - ['116631354'] = { Name = 'fwy_04_fwysign_002b_o' }, - ['-490505368'] = { Name = 'fwy_04_fwysign_002b' }, - ['1208556485'] = { Name = 'fwy_04_fwysign_003_d1' }, - ['-1651456297'] = { Name = 'fwy_04_fwysign_003_d2' }, - ['1630058572'] = { Name = 'fwy_04_fwysign_003_o' }, - ['-935578807'] = { Name = 'fwy_04_fwysign_003' }, - ['-1383700919'] = { Name = 'fwy_04_fwysign_003b_d1' }, - ['1498047932'] = { Name = 'fwy_04_fwysign_003b_o' }, - ['-1765874572'] = { Name = 'fwy_04_fwysign_003b' }, - ['1700741085'] = { Name = 'fwy_04_fwysign_004_o' }, - ['529031656'] = { Name = 'fwy_04_fwysign_004' }, - ['-393491313'] = { Name = 'fwy_04_fwysign_004b_d1' }, - ['-1765234422'] = { Name = 'fwy_04_fwysign_004b_d2' }, - ['223712802'] = { Name = 'fwy_04_fwysign_004b_d3' }, - ['1000370871'] = { Name = 'fwy_04_fwysign_004b_d4' }, - ['-1396734687'] = { Name = 'fwy_04_fwysign_004b_o' }, - ['-1811018842'] = { Name = 'fwy_04_fwysign_004b' }, - ['-234351313'] = { Name = 'fwy_04_fwysign_005_d1' }, - ['425518040'] = { Name = 'fwy_04_fwysign_005_d2' }, - ['379248212'] = { Name = 'fwy_04_fwysign_005_d3' }, - ['-168997376'] = { Name = 'fwy_04_fwysign_005_o' }, - ['481778758'] = { Name = 'fwy_04_fwysign_005' }, - ['-1537226023'] = { Name = 'fwy_04_fwysign_005b_o' }, - ['204143266'] = { Name = 'fwy_04_fwysign_005b' }, - ['1371307852'] = { Name = 'fwy_04_fwysign_006_d1' }, - ['1117100156'] = { Name = 'fwy_04_fwysign_006_d1a' }, - ['-1015604667'] = { Name = 'fwy_04_fwysign_006_d1b' }, - ['2114836604'] = { Name = 'fwy_04_fwysign_006_o' }, - ['30615166'] = { Name = 'fwy_04_fwysign_006' }, - ['-226639138'] = { Name = 'fwy_04_fwysign_007_d1' }, - ['1160276018'] = { Name = 'fwy_04_fwysign_007_d2' }, - ['383224721'] = { Name = 'fwy_04_fwysign_007_d3' }, - ['-726034277'] = { Name = 'fwy_04_fwysign_007_o' }, - ['-268074269'] = { Name = 'fwy_04_fwysign_007' }, - ['-2083932575'] = { Name = 'fwy_04_fwysign_007b_d1' }, - ['-495177453'] = { Name = 'fwy_04_fwysign_007b_o' }, - ['214172320'] = { Name = 'fwy_04_fwysign_007b' }, - ['1718173563'] = { Name = 'fwy_04_fwysign_055_d2' }, - ['-452901833'] = { Name = 'fwy_04_fwysign_graf02_002' }, - ['-1140620436'] = { Name = 'fwy_04_fwysign_text_002' }, - ['871723854'] = { Name = 'fwy_04_fwysign_text_005' }, - ['708272082'] = { Name = 'fwy_04_fwysign_text_006' }, - ['-1668529026'] = { Name = 'fwy_04_fwysign_text_007' }, - ['1254891771'] = { Name = 'fwy_04_fwysign_text_008' }, - ['1707955613'] = { Name = 'fwy_04_fwysign_text_011' }, - ['398047607'] = { Name = 'fwy_04_fwysign_text_012' }, - ['177413930'] = { Name = 'fwy_04_fwysign_text_013' }, - ['472072778'] = { Name = 'fwy_04_fwysign_text_014' }, - ['-1595520046'] = { Name = 'fwy_04_fwysign_text_015' }, - ['1384066817'] = { Name = 'fwy_04_fwysign_text_016' }, - ['1097632988'] = { Name = 'fwy_04_fwysign_text_017' }, - ['1933242488'] = { Name = 'fwy_04_fwysign_text_018' }, - ['-2048518726'] = { Name = 'fwy_04_fwysign_text_019' }, - ['826828448'] = { Name = 'fwy_04_fwysign_text_021' }, - ['520536605'] = { Name = 'fwy_04_fwysign_text_022' }, - ['1558003145'] = { Name = 'fwy_04_fwysign_text_023' }, - ['1252170068'] = { Name = 'fwy_04_fwysign_text_024' }, - ['269431251'] = { Name = 'fwy_04_fwysign_text_024www' }, - ['1712214059'] = { Name = 'fwy_04_fwysign_text_026' }, - ['1248631024'] = { Name = 'fwy_04_fwysign_text_028' }, - ['1882317718'] = { Name = 'fwy_04_fwysign_text_030' }, - ['-278437377'] = { Name = 'fwy_04_fwysign_text_031' }, - ['-861070197'] = { Name = 'fwy_04_fwysign_text_032' }, - ['-1456908924'] = { Name = 'fwy_04_fwysign_text_034' }, - ['662622765'] = { Name = 'fwy_04_fwysign_text_035' }, - ['353381712'] = { Name = 'fwy_04_fwysign_text_037' }, - ['-493533093'] = { Name = 'fwy_04_fwysign_text_038' }, - ['-565165327'] = { Name = 'fwy_04_fwysign_text_040' }, - ['-60502659'] = { Name = 'fwy_04_fwysign_wire01_002' }, - ['-1290091252'] = { Name = 'fwy_04_hills01' }, - ['-992614270'] = { Name = 'fwy_04_hills02' }, - ['-1613816203'] = { Name = 'fwy_04_hills03' }, - ['1498023267'] = { Name = 'fwy_04_r2' }, - ['42305773'] = { Name = 'fwy_04_r2a' }, - ['349646224'] = { Name = 'fwy_04_r2b' }, - ['-1055962726'] = { Name = 'fwy_04_rd_01_ovly' }, - ['-299622169'] = { Name = 'fwy_04_rd_01_sd' }, - ['598721104'] = { Name = 'fwy_04_rd_01_wall_ovly' }, - ['-547377910'] = { Name = 'fwy_04_rd_01_wall' }, - ['-916786647'] = { Name = 'fwy_04_rd_01' }, - ['-706281830'] = { Name = 'fwy_04_rd_02_ovly' }, - ['1830178571'] = { Name = 'fwy_04_rd_03_ovly' }, - ['-1280457522'] = { Name = 'fwy_04_rd_04_ovly' }, - ['747232991'] = { Name = 'fwy_04_rd_05_ovly' }, - ['-166868070'] = { Name = 'fwy_04_rd_05' }, - ['759970744'] = { Name = 'fwy_04_rd_05b_ovly' }, - ['345167919'] = { Name = 'fwy_04_rd_06_ovly' }, - ['-936560007'] = { Name = 'fwy_04_rd_07_ovly' }, - ['-1264395611'] = { Name = 'fwy_04_rd_09_ovly' }, - ['-1249251021'] = { Name = 'fwy_04_rd_10_ovly' }, - ['-324931192'] = { Name = 'fwy_04_rd_11_ovly' }, - ['830288125'] = { Name = 'fwy_04_rd_12_ovly' }, - ['911233722'] = { Name = 'fwy_04_rd_20' }, - ['1148612358'] = { Name = 'fwy_04_rd_21' }, - ['-1074305522'] = { Name = 'fwy_04_rd_22' }, - ['-650319269'] = { Name = 'fwy_04_rd_22b' }, - ['1315308261'] = { Name = 'fwy_04_rd_23' }, - ['2068798647'] = { Name = 'fwy_04_rd_24' }, - ['-1695998990'] = { Name = 'fwy_04_rd_27' }, - ['-1475922386'] = { Name = 'fwy_04_rd_28' }, - ['-1237003607'] = { Name = 'fwy_04_rd_29' }, - ['2142396965'] = { Name = 'fwy_04_rd_31' }, - ['-243124259'] = { Name = 'fwy_04_rd_37_ovly' }, - ['810999682'] = { Name = 'fwy_04_rd_38_ovly' }, - ['-1688415715'] = { Name = 'fwy_04_rd_44_ovly' }, - ['-40923470'] = { Name = 'fwy_04_rd_45_ovly' }, - ['-275536697'] = { Name = 'fwy_04_rd_46_ovly' }, - ['2124488593'] = { Name = 'fwy_04_rdend_ovly' }, - ['-1947218664'] = { Name = 'fwy_04_rr2' }, - ['-1587340918'] = { Name = 'fwy_04_rr2a' }, - ['-942315922'] = { Name = 'fwy_04_rr2b' }, - ['-1682686593'] = { Name = 'fwy_04_sign_001_d1_lod' }, - ['-333441867'] = { Name = 'fwy_04_sign_001_d1' }, - ['-732136925'] = { Name = 'fwy_04_split02' }, - ['15154100'] = { Name = 'fwy_04_splita' }, - ['-1595202596'] = { Name = 'fwy_04_splita01' }, - ['1862352905'] = { Name = 'fwy_04_splita02' }, - ['1570708805'] = { Name = 'fwy_04_splita03' }, - ['361513884'] = { Name = 'g_f_y_ballas_01' }, - ['1309468115'] = { Name = 'g_f_y_families_01' }, - ['-44746786'] = { Name = 'g_f_y_lost_01' }, - ['1520708641'] = { Name = 'g_f_y_vagos_01' }, - ['-236444766'] = { Name = 'g_m_m_armboss_01' }, - ['-39239064'] = { Name = 'g_m_m_armgoon_01' }, - ['-412008429'] = { Name = 'g_m_m_armlieut_01' }, - ['-166363761'] = { Name = 'g_m_m_chemwork_01' }, - ['-1176698112'] = { Name = 'g_m_m_chiboss_01' }, - ['275618457'] = { Name = 'g_m_m_chicold_01' }, - ['2119136831'] = { Name = 'g_m_m_chigoon_01' }, - ['-9308122'] = { Name = 'g_m_m_chigoon_02' }, - ['891945583'] = { Name = 'g_m_m_korboss_01' }, - ['1466037421'] = { Name = 'g_m_m_mexboss_01' }, - ['1226102803'] = { Name = 'g_m_m_mexboss_02' }, - ['-984709238'] = { Name = 'g_m_y_armgoon_02' }, - ['1752208920'] = { Name = 'g_m_y_azteca_01' }, - ['-198252413'] = { Name = 'g_m_y_ballaeast_01' }, - ['588969535'] = { Name = 'g_m_y_ballaorig_01' }, - ['599294057'] = { Name = 'g_m_y_ballasout_01' }, - ['-398748745'] = { Name = 'g_m_y_famca_01' }, - ['-613248456'] = { Name = 'g_m_y_famdnf_01' }, - ['-2077218039'] = { Name = 'g_m_y_famfor_01' }, - ['611648169'] = { Name = 'g_m_y_korean_01' }, - ['-1880237687'] = { Name = 'g_m_y_korean_02' }, - ['2093736314'] = { Name = 'g_m_y_korlieut_01' }, - ['1330042375'] = { Name = 'g_m_y_lost_01' }, - ['1032073858'] = { Name = 'g_m_y_lost_02' }, - ['850468060'] = { Name = 'g_m_y_lost_03' }, - ['-1109568186'] = { Name = 'g_m_y_mexgang_01' }, - ['653210662'] = { Name = 'g_m_y_mexgoon_01' }, - ['832784782'] = { Name = 'g_m_y_mexgoon_02' }, - ['-1773333796'] = { Name = 'g_m_y_mexgoon_03' }, - ['1329576454'] = { Name = 'g_m_y_pologoon_01' }, - ['-1561829034'] = { Name = 'g_m_y_pologoon_02' }, - ['-1872961334'] = { Name = 'g_m_y_salvaboss_01' }, - ['663522487'] = { Name = 'g_m_y_salvagoon_01' }, - ['846439045'] = { Name = 'g_m_y_salvagoon_02' }, - ['62440720'] = { Name = 'g_m_y_salvagoon_03' }, - ['-48477765'] = { Name = 'g_m_y_strpunk_01' }, - ['228715206'] = { Name = 'g_m_y_strpunk_02' }, - ['741090084'] = { Name = 'gargoyle' }, - ['-1800170043'] = { Name = 'gauntlet' }, - ['349315417'] = { Name = 'gauntlet2' }, - ['-335127307'] = { Name = 'gb_cap_use' }, - ['-390305663'] = { Name = 'gb_specs_use' }, - ['-1745203402'] = { Name = 'gburrito' }, - ['296357396'] = { Name = 'gburrito2' }, - ['75131841'] = { Name = 'glendale' }, - ['1234311532'] = { Name = 'gp1' }, - ['1019737494'] = { Name = 'graintrailer' }, - ['-1775728740'] = { Name = 'granger' }, - ['-1543762099'] = { Name = 'gresley' }, - ['-2107990196'] = { Name = 'guardian' }, - ['884422927'] = { Name = 'habanero' }, - ['1265391242'] = { Name = 'hakuchou' }, - ['-255678177'] = { Name = 'hakuchou2' }, - ['444583674'] = { Name = 'handler' }, - ['1518533038'] = { Name = 'hauler' }, - ['994527967'] = { Name = 'hc_driver' }, - ['193469166'] = { Name = 'hc_gunman' }, - ['-1715797768'] = { Name = 'hc_hacker' }, - ['-502354072'] = { Name = 'hckbackcurts' }, - ['210564807'] = { Name = 'hckbarbits' }, - ['1020260229'] = { Name = 'hckbarflulights' }, - ['-1055049661'] = { Name = 'hckbarsink' }, - ['857121675'] = { Name = 'hckbattables' }, - ['1932429680'] = { Name = 'hckbrskrtfrnt' }, - ['-1986037860'] = { Name = 'hckbrtrmfrnt' }, - ['-316920558'] = { Name = 'hckcurt' }, - ['1303104225'] = { Name = 'hckdirt' }, - ['178230817'] = { Name = 'hckfirltpics' }, - ['1661133989'] = { Name = 'hckpics2' }, - ['1190354600'] = { Name = 'hckpoollite' }, - ['-919638951'] = { Name = 'hckvestluff' }, - ['-1077266052'] = { Name = 'hckvestrim' }, - ['-1844138725'] = { Name = 'hei_ap1_lod_dummyobject' }, - ['82685001'] = { Name = 'hei_bank_heist_bag' }, - ['1086120991'] = { Name = 'hei_bank_heist_bikehelmet' }, - ['-562294395'] = { Name = 'hei_bank_heist_card' }, - ['718253230'] = { Name = 'hei_bank_heist_gear' }, - ['295312387'] = { Name = 'hei_bank_heist_guns' }, - ['2002317235'] = { Name = 'hei_bank_heist_laptop' }, - ['-1898661760'] = { Name = 'hei_bank_heist_motherboard' }, - ['1244095671'] = { Name = 'hei_bank_heist_thermal' }, - ['1729686289'] = { Name = 'hei_bh1_08_bld2_pillars' }, - ['1062717771'] = { Name = 'hei_bh1_08_bld2' }, - ['-2122927058'] = { Name = 'hei_bh1_08_details2' }, - ['-1806363504'] = { Name = 'hei_bh1_08_details4_em_night' }, - ['1501999826'] = { Name = 'hei_bh1_08_details4_em' }, - ['1309855079'] = { Name = 'hei_bh1_08_details4' }, - ['-993268079'] = { Name = 'hei_bh1_08_glue' }, - ['-465355565'] = { Name = 'hei_bh1_08_grnd' }, - ['1657557447'] = { Name = 'hei_bh1_08_reflect_lod' }, - ['2030235284'] = { Name = 'hei_bh1_08_reflect' }, - ['-1626455379'] = { Name = 'hei_bh1_08_windcla' }, - ['1373874265'] = { Name = 'hei_bh1_08_windclb' }, - ['1132727194'] = { Name = 'hei_bh1_08_windclc' }, - ['91527483'] = { Name = 'hei_bh1_09_bld_01_canopy' }, - ['1666152087'] = { Name = 'hei_bh1_09_bld_01' }, - ['-2086306759'] = { Name = 'hei_bh1_09_details1' }, - ['105968425'] = { Name = 'hei_bh1_09_fizzy_rails' }, - ['1856158425'] = { Name = 'hei_bh1_09_grnd_03_structures' }, - ['1229892559'] = { Name = 'hei_bh1_09_lightfitting' }, - ['771676927'] = { Name = 'hei_bh1_09_reflect_lod' }, - ['732077956'] = { Name = 'hei_bh1_09_reflect' }, - ['-1757614302'] = { Name = 'hei_bh1_lod_slod3' }, - ['597743548'] = { Name = 'hei_bio_heist_card' }, - ['-912160221'] = { Name = 'hei_bio_heist_gear' }, - ['1035058948'] = { Name = 'hei_bio_heist_nv_goggles' }, - ['-1285855879'] = { Name = 'hei_bio_heist_parachute' }, - ['-1401198855'] = { Name = 'hei_bio_heist_rebreather' }, - ['2085603643'] = { Name = 'hei_bio_heist_specialops' }, - ['517719173'] = { Name = 'hei_ch1_lod_5_20_emissive_proxy' }, - ['-177808179'] = { Name = 'hei_ch1_lod_5_21_emissive_proxy' }, - ['2105885000'] = { Name = 'hei_ch1_lod_6_20_emissive_proxy' }, - ['1823929581'] = { Name = 'hei_ch1_lod_dummy' }, - ['279217979'] = { Name = 'hei_ch1_lod_slod3a' }, - ['1114893017'] = { Name = 'hei_ch1_lod_slod3b' }, - ['875122244'] = { Name = 'hei_ch1_lod_slod3c' }, - ['-439438960'] = { Name = 'hei_ch1_lod_slod3d' }, - ['-629368084'] = { Name = 'hei_ch1_lod_slod3e' }, - ['-143758313'] = { Name = 'hei_cs1_lod2_01_7_slod3' }, - ['-1485715126'] = { Name = 'hei_cs3_04_trailerparkc_grp1_slod' }, - ['779177949'] = { Name = 'hei_cs3_07_mpool_int1_lod' }, - ['444300357'] = { Name = 'hei_cs3_07_props_combo0101_slod' }, - ['-291223177'] = { Name = 'hei_cs3_07_props_combo0102_dslod' }, - ['-1217670562'] = { Name = 'hei_cs3_07_props_combo0103_slod' }, - ['357195902'] = { Name = 'hei_dt1_03_mph_door_01' }, - ['1240479391'] = { Name = 'hei_dt1_tcmods_ce_lod' }, - ['-734652480'] = { Name = 'hei_dt1_tcmods_ce' }, - ['-1791646378'] = { Name = 'hei_dt1_tcmods_ce2_lod' }, - ['-126221003'] = { Name = 'hei_dt1_tcmods_ces2' }, - ['327628301'] = { Name = 'hei_heist_acc_artgolddisc_01' }, - ['-279450193'] = { Name = 'hei_heist_acc_artgolddisc_02' }, - ['-539078980'] = { Name = 'hei_heist_acc_artgolddisc_03' }, - ['-893639560'] = { Name = 'hei_heist_acc_artgolddisc_04' }, - ['49534624'] = { Name = 'hei_heist_acc_artwalll_01' }, - ['1802385057'] = { Name = 'hei_heist_acc_artwallm_01' }, - ['757249493'] = { Name = 'hei_heist_acc_bowl_01' }, - ['972083057'] = { Name = 'hei_heist_acc_bowl_02' }, - ['266405121'] = { Name = 'hei_heist_acc_box_trinket_01' }, - ['1042407810'] = { Name = 'hei_heist_acc_box_trinket_02' }, - ['1540646549'] = { Name = 'hei_heist_acc_candles_01' }, - ['1832337418'] = { Name = 'hei_heist_acc_flowers_01' }, - ['2138367109'] = { Name = 'hei_heist_acc_flowers_02' }, - ['-1035259143'] = { Name = 'hei_heist_acc_jar_01' }, - ['-730474674'] = { Name = 'hei_heist_acc_jar_02' }, - ['579266365'] = { Name = 'hei_heist_acc_plant_tall_01' }, - ['-641583331'] = { Name = 'hei_heist_acc_rughidel_01' }, - ['1228752495'] = { Name = 'hei_heist_acc_rugwooll_01' }, - ['1539730305'] = { Name = 'hei_heist_acc_rugwooll_02' }, - ['1741063045'] = { Name = 'hei_heist_acc_rugwooll_03' }, - ['-873939431'] = { Name = 'hei_heist_acc_sculpture_01' }, - ['-442012286'] = { Name = 'hei_heist_acc_storebox_01' }, - ['-573863504'] = { Name = 'hei_heist_acc_tray_01' }, - ['-1598888957'] = { Name = 'hei_heist_acc_vase_01' }, - ['1859977304'] = { Name = 'hei_heist_acc_vase_02' }, - ['-2056049276'] = { Name = 'hei_heist_acc_vase_03' }, - ['34120519'] = { Name = 'hei_heist_apart2_door' }, - ['592464614'] = { Name = 'hei_heist_bank_usb_drive' }, - ['-699619545'] = { Name = 'hei_heist_bed_chestdrawer_04' }, - ['-1857343250'] = { Name = 'hei_heist_bed_double_08' }, - ['2032846745'] = { Name = 'hei_heist_bed_table_dble_04' }, - ['-1043360540'] = { Name = 'hei_heist_crosstrainer_s' }, - ['1758176010'] = { Name = 'hei_heist_cs_beer_box' }, - ['1482870357'] = { Name = 'hei_heist_din_chair_01' }, - ['-2033210578'] = { Name = 'hei_heist_din_chair_02' }, - ['2079364464'] = { Name = 'hei_heist_din_chair_03' }, - ['-1440452137'] = { Name = 'hei_heist_din_chair_04' }, - ['696447118'] = { Name = 'hei_heist_din_chair_05' }, - ['533585188'] = { Name = 'hei_heist_din_chair_06' }, - ['1667818593'] = { Name = 'hei_heist_din_chair_08' }, - ['46768928'] = { Name = 'hei_heist_din_chair_09' }, - ['1500666099'] = { Name = 'hei_heist_din_table_01' }, - ['-1842591130'] = { Name = 'hei_heist_din_table_04' }, - ['1916209788'] = { Name = 'hei_heist_din_table_06' }, - ['-463900993'] = { Name = 'hei_heist_din_table_07' }, - ['1755369388'] = { Name = 'hei_heist_flecca_crate' }, - ['-1087517805'] = { Name = 'hei_heist_flecca_items' }, - ['-1256478069'] = { Name = 'hei_heist_flecca_weapons' }, - ['275188277'] = { Name = 'hei_heist_kit_bin_01' }, - ['983107514'] = { Name = 'hei_heist_kit_coffeemachine_01' }, - ['1307850745'] = { Name = 'hei_heist_lit_floorlamp_01' }, - ['986354086'] = { Name = 'hei_heist_lit_floorlamp_02' }, - ['1767370432'] = { Name = 'hei_heist_lit_floorlamp_03' }, - ['-85388824'] = { Name = 'hei_heist_lit_floorlamp_04' }, - ['674524286'] = { Name = 'hei_heist_lit_floorlamp_05' }, - ['-1543942490'] = { Name = 'hei_heist_lit_lamptable_02' }, - ['-1312560581'] = { Name = 'hei_heist_lit_lamptable_03' }, - ['-2012997956'] = { Name = 'hei_heist_lit_lamptable_04' }, - ['-780981863'] = { Name = 'hei_heist_lit_lamptable_06' }, - ['-383314458'] = { Name = 'hei_heist_lit_lightpendant_003' }, - ['-1226030074'] = { Name = 'hei_heist_lit_lightpendant_01' }, - ['-977280595'] = { Name = 'hei_heist_lit_lightpendant_02' }, - ['1874679314'] = { Name = 'hei_heist_sh_bong_01' }, - ['-1867871609'] = { Name = 'hei_heist_stn_benchshort' }, - ['1699373995'] = { Name = 'hei_heist_stn_chairarm_01' }, - ['1361820526'] = { Name = 'hei_heist_stn_chairarm_03' }, - ['1038390496'] = { Name = 'hei_heist_stn_chairarm_04' }, - ['1892580027'] = { Name = 'hei_heist_stn_chairarm_06' }, - ['-987977838'] = { Name = 'hei_heist_stn_chairstrip_01' }, - ['-373650829'] = { Name = 'hei_heist_stn_sofa2seat_02' }, - ['-67162372'] = { Name = 'hei_heist_stn_sofa2seat_03' }, - ['-1063831511'] = { Name = 'hei_heist_stn_sofa2seat_06' }, - ['1285701428'] = { Name = 'hei_heist_stn_sofa3seat_01' }, - ['1623746432'] = { Name = 'hei_heist_stn_sofa3seat_02' }, - ['167066071'] = { Name = 'hei_heist_stn_sofa3seat_06' }, - ['370253355'] = { Name = 'hei_heist_stn_sofacorn_05' }, - ['609499824'] = { Name = 'hei_heist_stn_sofacorn_06' }, - ['181040912'] = { Name = 'hei_heist_str_avunitl_01' }, - ['777010715'] = { Name = 'hei_heist_str_avunitl_03' }, - ['-425006861'] = { Name = 'hei_heist_str_avunits_01' }, - ['-1384654108'] = { Name = 'hei_heist_str_sideboardl_02' }, - ['142774420'] = { Name = 'hei_heist_str_sideboardl_03' }, - ['-165123104'] = { Name = 'hei_heist_str_sideboardl_04' }, - ['754997647'] = { Name = 'hei_heist_str_sideboardl_05' }, - ['1634971810'] = { Name = 'hei_heist_str_sideboards_02' }, - ['1102407831'] = { Name = 'hei_heist_tab_coffee_05' }, - ['1618060855'] = { Name = 'hei_heist_tab_coffee_06' }, - ['-1362574620'] = { Name = 'hei_heist_tab_coffee_07' }, - ['-257220176'] = { Name = 'hei_heist_tab_sidelrg_01' }, - ['-495942341'] = { Name = 'hei_heist_tab_sidelrg_02' }, - ['99830848'] = { Name = 'hei_heist_tab_sidelrg_04' }, - ['-448005892'] = { Name = 'hei_heist_tab_sidesml_01' }, - ['-541889081'] = { Name = 'hei_heist_tab_sidesml_02' }, - ['725876312'] = { Name = 'hei_hw1_06_glue' }, - ['1806690096'] = { Name = 'hei_hw1_06_glue2' }, - ['2125459429'] = { Name = 'hei_hw1_06_grnd_low2' }, - ['254934806'] = { Name = 'hei_hw1_06_road' }, - ['-1102430068'] = { Name = 'hei_hw1_24_build2' }, - ['1131093423'] = { Name = 'hei_hw1_24_details' }, - ['-1521421489'] = { Name = 'hei_hw1_24_ov03' }, - ['-450236671'] = { Name = 'hei_hw1_blimp_dummy' }, - ['395469806'] = { Name = 'hei_id2_lod_emissive_ref' }, - ['853220178'] = { Name = 'hei_id2_lod_id2_water_lod_slod4' }, - ['1751411659'] = { Name = 'hei_id2_lod_slod4' }, - ['1418231356'] = { Name = 'hei_mph_selectclothslrig_01' }, - ['389415832'] = { Name = 'hei_mph_selectclothslrig_02' }, - ['716974756'] = { Name = 'hei_mph_selectclothslrig_03' }, - ['2091011695'] = { Name = 'hei_mph_selectclothslrig_04' }, - ['-669909731'] = { Name = 'hei_mph_selectclothslrig' }, - ['1635549773'] = { Name = 'hei_p_attache_case_01b_s' }, - ['1265214509'] = { Name = 'hei_p_attache_case_shut_s' }, - ['698941631'] = { Name = 'hei_p_attache_case_shut' }, - ['237314697'] = { Name = 'hei_p_f_bag_var20_arm_s' }, - ['1382142077'] = { Name = 'hei_p_f_bag_var6_bus_s' }, - ['639051741'] = { Name = 'hei_p_f_bag_var7_bus_s' }, - ['191751313'] = { Name = 'hei_p_generic_heist_guns' }, - ['1048435513'] = { Name = 'hei_p_hei_champ_flute_s' }, - ['-1456790658'] = { Name = 'hei_p_heist_flecca_bag' }, - ['1790671986'] = { Name = 'hei_p_heist_flecca_drill' }, - ['489589737'] = { Name = 'hei_p_heist_flecca_mask' }, - ['1917672668'] = { Name = 'hei_p_m_bag_var18_bus_s' }, - ['-944468481'] = { Name = 'hei_p_m_bag_var22_arm_s' }, - ['-155651337'] = { Name = 'hei_p_parachute_s_female' }, - ['1238160255'] = { Name = 'hei_p_post_heist_biker_stash' }, - ['1224545529'] = { Name = 'hei_p_post_heist_coke_stash' }, - ['-258503926'] = { Name = 'hei_p_post_heist_meth_stash' }, - ['1519210029'] = { Name = 'hei_p_post_heist_trash_stash' }, - ['-312058329'] = { Name = 'hei_p_post_heist_weed_stash' }, - ['177215951'] = { Name = 'hei_p_pre_heist_biker_guns' }, - ['-1358925744'] = { Name = 'hei_p_pre_heist_biker' }, - ['-1226165256'] = { Name = 'hei_p_pre_heist_coke' }, - ['-1870174438'] = { Name = 'hei_p_pre_heist_steal_meth' }, - ['2106464197'] = { Name = 'hei_p_pre_heist_trash' }, - ['1521715980'] = { Name = 'hei_p_pre_heist_weed' }, - ['-54086982'] = { Name = 'hei_prison_heist_clothes' }, - ['-1791288494'] = { Name = 'hei_prison_heist_docs' }, - ['-597297308'] = { Name = 'hei_prison_heist_jerry_can' }, - ['1759878906'] = { Name = 'hei_prison_heist_parachute' }, - ['666650558'] = { Name = 'hei_prison_heist_schedule' }, - ['235335864'] = { Name = 'hei_prison_heist_weapons' }, - ['-1906772306'] = { Name = 'hei_prop_bank_alarm_01' }, - ['-1007354661'] = { Name = 'hei_prop_bank_cctv_01' }, - ['-1842407088'] = { Name = 'hei_prop_bank_cctv_02' }, - ['-647884455'] = { Name = 'hei_prop_bank_ornatelamp' }, - ['301970060'] = { Name = 'hei_prop_bank_plug' }, - ['1247668342'] = { Name = 'hei_prop_bank_transponder' }, - ['-368655288'] = { Name = 'hei_prop_bh1_08_hdoor' }, - ['-976225932'] = { Name = 'hei_prop_bh1_08_mp_gar2' }, - ['815741875'] = { Name = 'hei_prop_bh1_09_mp_gar2' }, - ['-1258405227'] = { Name = 'hei_prop_bh1_09_mph_l' }, - ['-1719104598'] = { Name = 'hei_prop_bh1_09_mph_r' }, - ['-631186269'] = { Name = 'hei_prop_carrier_aerial_1' }, - ['-937281498'] = { Name = 'hei_prop_carrier_aerial_2' }, - ['-443781181'] = { Name = 'hei_prop_carrier_bombs_1' }, - ['-1239742687'] = { Name = 'hei_prop_carrier_cargo_01a' }, - ['-348429551'] = { Name = 'hei_prop_carrier_cargo_02a' }, - ['102012783'] = { Name = 'hei_prop_carrier_cargo_03a' }, - ['-1709880394'] = { Name = 'hei_prop_carrier_cargo_04a' }, - ['903634723'] = { Name = 'hei_prop_carrier_cargo_04b_s' }, - ['-1354861048'] = { Name = 'hei_prop_carrier_cargo_04b' }, - ['1056511355'] = { Name = 'hei_prop_carrier_cargo_04c' }, - ['-1471086668'] = { Name = 'hei_prop_carrier_cargo_05a_s' }, - ['388384482'] = { Name = 'hei_prop_carrier_cargo_05a' }, - ['-2028471192'] = { Name = 'hei_prop_carrier_cargo_05b_s' }, - ['811366734'] = { Name = 'hei_prop_carrier_cargo_05b' }, - ['-1374736588'] = { Name = 'hei_prop_carrier_crate_01a_s' }, - ['1885839156'] = { Name = 'hei_prop_carrier_crate_01a' }, - ['495669334'] = { Name = 'hei_prop_carrier_crate_01b_s' }, - ['656641197'] = { Name = 'hei_prop_carrier_crate_01b' }, - ['-1730993301'] = { Name = 'hei_prop_carrier_defense_01' }, - ['-1953429273'] = { Name = 'hei_prop_carrier_defense_02' }, - ['-1941093436'] = { Name = 'hei_prop_carrier_docklight_01' }, - ['1644490552'] = { Name = 'hei_prop_carrier_docklight_02' }, - ['2094829076'] = { Name = 'hei_prop_carrier_gasbogey_01' }, - ['1774596576'] = { Name = 'hei_prop_carrier_jet' }, - ['260465372'] = { Name = 'hei_prop_carrier_liferafts' }, - ['1320280194'] = { Name = 'hei_prop_carrier_light_01' }, - ['31793303'] = { Name = 'hei_prop_carrier_lightset_1' }, - ['1673407939'] = { Name = 'hei_prop_carrier_ord_01' }, - ['-2133399564'] = { Name = 'hei_prop_carrier_ord_03' }, - ['-737433441'] = { Name = 'hei_prop_carrier_panel_1' }, - ['-997389918'] = { Name = 'hei_prop_carrier_panel_2' }, - ['-1430596098'] = { Name = 'hei_prop_carrier_panel_3' }, - ['-1694943621'] = { Name = 'hei_prop_carrier_panel_4' }, - ['-1207579608'] = { Name = 'hei_prop_carrier_phone_01' }, - ['-433280915'] = { Name = 'hei_prop_carrier_phone_02' }, - ['335154249'] = { Name = 'hei_prop_carrier_radar_1_l1' }, - ['2124719729'] = { Name = 'hei_prop_carrier_radar_1' }, - ['-1870804445'] = { Name = 'hei_prop_carrier_radar_2' }, - ['75309412'] = { Name = 'hei_prop_carrier_stair_01a' }, - ['1396883182'] = { Name = 'hei_prop_carrier_stair_01b' }, - ['-963162967'] = { Name = 'hei_prop_carrier_trailer_01' }, - ['-1823263496'] = { Name = 'hei_prop_cash_crate_empty' }, - ['-748199017'] = { Name = 'hei_prop_cash_crate_half_full' }, - ['-893826075'] = { Name = 'hei_prop_cc_metalcover_01' }, - ['621101123'] = { Name = 'hei_prop_cntrdoor_mph_l' }, - ['-31919505'] = { Name = 'hei_prop_cntrdoor_mph_r' }, - ['1652829067'] = { Name = 'hei_prop_com_mp_gar2' }, - ['-440521971'] = { Name = 'hei_prop_container_lock' }, - ['-230239317'] = { Name = 'hei_prop_crate_stack_01' }, - ['695737472'] = { Name = 'hei_prop_dlc_heist_board' }, - ['1609935604'] = { Name = 'hei_prop_dlc_heist_map' }, - ['1943210810'] = { Name = 'hei_prop_dlc_tablet' }, - ['155105927'] = { Name = 'hei_prop_drug_statue_01' }, - ['1095160111'] = { Name = 'hei_prop_drug_statue_base_01' }, - ['-970138871'] = { Name = 'hei_prop_drug_statue_base_02' }, - ['466617970'] = { Name = 'hei_prop_drug_statue_box_01' }, - ['-1616551421'] = { Name = 'hei_prop_drug_statue_box_01b' }, - ['371570974'] = { Name = 'hei_prop_drug_statue_box_big' }, - ['802041688'] = { Name = 'hei_prop_drug_statue_stack' }, - ['-2105722428'] = { Name = 'hei_prop_drug_statue_top' }, - ['1529620568'] = { Name = 'hei_prop_dt1_20_mp_gar2' }, - ['1263238661'] = { Name = 'hei_prop_dt1_20_mph_door_l' }, - ['-1934393132'] = { Name = 'hei_prop_dt1_20_mph_door_r' }, - ['-889258808'] = { Name = 'hei_prop_gold_trolly_empty' }, - ['-636408770'] = { Name = 'hei_prop_gold_trolly_half_full' }, - ['2123793174'] = { Name = 'hei_prop_hei_ammo_pile_02' }, - ['-693573187'] = { Name = 'hei_prop_hei_ammo_pile' }, - ['-1962755162'] = { Name = 'hei_prop_hei_ammo_single' }, - ['79209609'] = { Name = 'hei_prop_hei_bank_mon' }, - ['-1605837712'] = { Name = 'hei_prop_hei_bank_phone_01' }, - ['110411286'] = { Name = 'hei_prop_hei_bankdoor_new' }, - ['-1388847408'] = { Name = 'hei_prop_hei_bio_panel' }, - ['-1956621659'] = { Name = 'hei_prop_hei_bnk_lamp_01' }, - ['949726493'] = { Name = 'hei_prop_hei_bnk_lamp_02' }, - ['-468144679'] = { Name = 'hei_prop_hei_bust_01' }, - ['-637483755'] = { Name = 'hei_prop_hei_carrier_disp_01' }, - ['269934519'] = { Name = 'hei_prop_hei_cash_trolly_01' }, - ['-108416355'] = { Name = 'hei_prop_hei_cash_trolly_02' }, - ['769923921'] = { Name = 'hei_prop_hei_cash_trolly_03' }, - ['-1591138173'] = { Name = 'hei_prop_hei_cont_light_01' }, - ['1338930512'] = { Name = 'hei_prop_hei_cs_keyboard' }, - ['1723214043'] = { Name = 'hei_prop_hei_cs_stape_01' }, - ['-1174384786'] = { Name = 'hei_prop_hei_cs_stape_02' }, - ['19410268'] = { Name = 'hei_prop_hei_drill_hole' }, - ['1049338225'] = { Name = 'hei_prop_hei_drug_case' }, - ['525896218'] = { Name = 'hei_prop_hei_drug_pack_01a' }, - ['-395076527'] = { Name = 'hei_prop_hei_drug_pack_01b' }, - ['-1907742965'] = { Name = 'hei_prop_hei_drug_pack_02' }, - ['-1920951931'] = { Name = 'hei_prop_hei_garage_plug' }, - ['-1480373456'] = { Name = 'hei_prop_hei_hose_nozzle' }, - ['-1920621482'] = { Name = 'hei_prop_hei_id_bank' }, - ['61105977'] = { Name = 'hei_prop_hei_id_bio' }, - ['-2122821887'] = { Name = 'hei_prop_hei_keypad_01' }, - ['-1405574011'] = { Name = 'hei_prop_hei_keypad_02' }, - ['-1659828682'] = { Name = 'hei_prop_hei_keypad_03' }, - ['995169827'] = { Name = 'hei_prop_hei_lflts_01' }, - ['1234612910'] = { Name = 'hei_prop_hei_lflts_02' }, - ['1599047635'] = { Name = 'hei_prop_hei_med_benchset1' }, - ['-818415955'] = { Name = 'hei_prop_hei_monitor_overlay' }, - ['810212168'] = { Name = 'hei_prop_hei_monitor_police_01' }, - ['-2107935824'] = { Name = 'hei_prop_hei_muster_01' }, - ['899921464'] = { Name = 'hei_prop_hei_new_plant' }, - ['910205311'] = { Name = 'hei_prop_hei_paper_bag' }, - ['-207866908'] = { Name = 'hei_prop_hei_pic_hl_gurkhas' }, - ['1259624006'] = { Name = 'hei_prop_hei_pic_hl_keycodes' }, - ['-170303942'] = { Name = 'hei_prop_hei_pic_hl_raid' }, - ['-1167179986'] = { Name = 'hei_prop_hei_pic_hl_valkyrie' }, - ['630003835'] = { Name = 'hei_prop_hei_pic_pb_break' }, - ['-1197216983'] = { Name = 'hei_prop_hei_pic_pb_bus' }, - ['-1608608290'] = { Name = 'hei_prop_hei_pic_pb_plane' }, - ['1554252335'] = { Name = 'hei_prop_hei_pic_pb_station' }, - ['1678759457'] = { Name = 'hei_prop_hei_pic_ps_bike' }, - ['-377023079'] = { Name = 'hei_prop_hei_pic_ps_convoy' }, - ['564263640'] = { Name = 'hei_prop_hei_pic_ps_hack' }, - ['-943572871'] = { Name = 'hei_prop_hei_pic_ps_job' }, - ['-1302073896'] = { Name = 'hei_prop_hei_pic_ps_trucks' }, - ['2082630228'] = { Name = 'hei_prop_hei_pic_ps_witsec' }, - ['1014521536'] = { Name = 'hei_prop_hei_pic_ub_prep' }, - ['-2079534286'] = { Name = 'hei_prop_hei_pic_ub_prep02' }, - ['1812372168'] = { Name = 'hei_prop_hei_pic_ub_prep02b' }, - ['-406850826'] = { Name = 'hei_prop_hei_post_note_01' }, - ['1037912790'] = { Name = 'hei_prop_hei_security_case' }, - ['-160937700'] = { Name = 'hei_prop_hei_securitypanel' }, - ['2096238007'] = { Name = 'hei_prop_hei_shack_door' }, - ['332076319'] = { Name = 'hei_prop_hei_shack_window' }, - ['449297510'] = { Name = 'hei_prop_hei_skid_chair' }, - ['629489439'] = { Name = 'hei_prop_hei_timetable' }, - ['1993764676'] = { Name = 'hei_prop_hei_tree_fallen_02' }, - ['860567771'] = { Name = 'hei_prop_hei_warehousetrolly_02' }, - ['820966683'] = { Name = 'hei_prop_hei_warehousetrolly' }, - ['-807812330'] = { Name = 'hei_prop_heist_ammo_box' }, - ['-82704061'] = { Name = 'hei_prop_heist_apecrate' }, - ['1138881502'] = { Name = 'hei_prop_heist_binbag' }, - ['-517243780'] = { Name = 'hei_prop_heist_box' }, - ['-411901183'] = { Name = 'hei_prop_heist_card_hack_02' }, - ['-1827191488'] = { Name = 'hei_prop_heist_card_hack' }, - ['-1469164005'] = { Name = 'hei_prop_heist_carrierdoorl' }, - ['394409025'] = { Name = 'hei_prop_heist_carrierdoorr' }, - ['-1171762716'] = { Name = 'hei_prop_heist_cash_bag_01' }, - ['1246356548'] = { Name = 'hei_prop_heist_cash_pile' }, - ['-1436200562'] = { Name = 'hei_prop_heist_cutscene_doora' }, - ['1853479348'] = { Name = 'hei_prop_heist_cutscene_doorb' }, - ['1890297615'] = { Name = 'hei_prop_heist_cutscene_doorc_l' }, - ['-1920147247'] = { Name = 'hei_prop_heist_cutscene_doorc_r' }, - ['-1305230175'] = { Name = 'hei_prop_heist_deposit_box' }, - ['1506637536'] = { Name = 'hei_prop_heist_docs_01' }, - ['-443429795'] = { Name = 'hei_prop_heist_drill' }, - ['1271198221'] = { Name = 'hei_prop_heist_drug_tub_01' }, - ['932490441'] = { Name = 'hei_prop_heist_emp' }, - ['-599546004'] = { Name = 'hei_prop_heist_gold_bar' }, - ['-1732852367'] = { Name = 'hei_prop_heist_hook_01' }, - ['1898040612'] = { Name = 'hei_prop_heist_hose_01' }, - ['-894594569'] = { Name = 'hei_prop_heist_lockerdoor' }, - ['2055827572'] = { Name = 'hei_prop_heist_magnet' }, - ['-1198343923'] = { Name = 'hei_prop_heist_off_chair' }, - ['-780916577'] = { Name = 'hei_prop_heist_overlay_01' }, - ['-217815249'] = { Name = 'hei_prop_heist_pc_01' }, - ['-1969585897'] = { Name = 'hei_prop_heist_pic_01' }, - ['16805345'] = { Name = 'hei_prop_heist_pic_02' }, - ['-313637251'] = { Name = 'hei_prop_heist_pic_03' }, - ['-448940452'] = { Name = 'hei_prop_heist_pic_04' }, - ['-744484063'] = { Name = 'hei_prop_heist_pic_05' }, - ['1240072119'] = { Name = 'hei_prop_heist_pic_06' }, - ['908285994'] = { Name = 'hei_prop_heist_pic_07' }, - ['172949638'] = { Name = 'hei_prop_heist_pic_08' }, - ['948854020'] = { Name = 'hei_prop_heist_pic_09' }, - ['-413386375'] = { Name = 'hei_prop_heist_pic_10' }, - ['-719776525'] = { Name = 'hei_prop_heist_pic_11' }, - ['986210388'] = { Name = 'hei_prop_heist_pic_12' }, - ['747357147'] = { Name = 'hei_prop_heist_pic_13' }, - ['1083173863'] = { Name = 'hei_prop_heist_pic_14' }, - ['1236807831'] = { Name = 'hei_prop_heist_plinth' }, - ['-931948057'] = { Name = 'hei_prop_heist_rolladex' }, - ['755664014'] = { Name = 'hei_prop_heist_roller_base' }, - ['-1719632135'] = { Name = 'hei_prop_heist_roller_up' }, - ['-180739589'] = { Name = 'hei_prop_heist_roller' }, - ['-812777085'] = { Name = 'hei_prop_heist_safedepdoor' }, - ['152330975'] = { Name = 'hei_prop_heist_safedeposit' }, - ['-63539571'] = { Name = 'hei_prop_heist_sec_door' }, - ['924741338'] = { Name = 'hei_prop_heist_thermite_case' }, - ['-335888452'] = { Name = 'hei_prop_heist_thermite_flash' }, - ['865563579'] = { Name = 'hei_prop_heist_thermite' }, - ['388542025'] = { Name = 'hei_prop_heist_transponder' }, - ['1452661060'] = { Name = 'hei_prop_heist_trevor_case' }, - ['1429382112'] = { Name = 'hei_prop_heist_tub_truck' }, - ['-234152995'] = { Name = 'hei_prop_heist_tug' }, - ['-877183153'] = { Name = 'hei_prop_heist_tumbler_empty' }, - ['-54433116'] = { Name = 'hei_prop_heist_weed_block_01' }, - ['-680115871'] = { Name = 'hei_prop_heist_weed_block_01b' }, - ['1228076166'] = { Name = 'hei_prop_heist_weed_pallet_02' }, - ['-553616286'] = { Name = 'hei_prop_heist_weed_pallet' }, - ['377646791'] = { Name = 'hei_prop_heist_wooden_box' }, - ['1833528513'] = { Name = 'hei_prop_hst_icon_01' }, - ['-676527372'] = { Name = 'hei_prop_hst_laptop' }, - ['1210057103'] = { Name = 'hei_prop_hst_usb_drive_light' }, - ['-779874356'] = { Name = 'hei_prop_hst_usb_drive' }, - ['1030147405'] = { Name = 'hei_prop_mini_sever_01' }, - ['1806543322'] = { Name = 'hei_prop_mini_sever_02' }, - ['412812214'] = { Name = 'hei_prop_mini_sever_03' }, - ['1290462570'] = { Name = 'hei_prop_mini_sever_broken' }, - ['50694499'] = { Name = 'hei_prop_pill_bag_01' }, - ['435562533'] = { Name = 'hei_prop_server_piece_01' }, - ['-543689572'] = { Name = 'hei_prop_server_piece_lights' }, - ['245838764'] = { Name = 'hei_prop_sm_14_mp_gar2' }, - ['-667009138'] = { Name = 'hei_prop_sm_14_mph_door_l' }, - ['1640157877'] = { Name = 'hei_prop_sm_14_mph_door_r' }, - ['116180164'] = { Name = 'hei_prop_ss1_mpint_door_l' }, - ['-415922858'] = { Name = 'hei_prop_ss1_mpint_door_r' }, - ['1975282749'] = { Name = 'hei_prop_ss1_mpint_garage2' }, - ['-1603817716'] = { Name = 'hei_prop_station_gate' }, - ['1424372521'] = { Name = 'hei_prop_sync_door_06' }, - ['-1232996765'] = { Name = 'hei_prop_sync_door_08' }, - ['-1874351633'] = { Name = 'hei_prop_sync_door_09' }, - ['-2881618'] = { Name = 'hei_prop_sync_door_10' }, - ['2116359305'] = { Name = 'hei_prop_sync_door01a' }, - ['46734799'] = { Name = 'hei_prop_sync_door01b' }, - ['393167779'] = { Name = 'hei_prop_sync_door02a' }, - ['-1562944903'] = { Name = 'hei_prop_sync_door02b' }, - ['782871627'] = { Name = 'hei_prop_sync_door03' }, - ['1356853431'] = { Name = 'hei_prop_sync_door04' }, - ['-1483545996'] = { Name = 'hei_prop_sync_door05a' }, - ['-2009193533'] = { Name = 'hei_prop_sync_door05b' }, - ['-2051450263'] = { Name = 'hei_prop_sync_door07' }, - ['-2002895309'] = { Name = 'hei_prop_wall_alarm_off' }, - ['1088428993'] = { Name = 'hei_prop_wall_alarm_on' }, - ['1228163930'] = { Name = 'hei_prop_wall_light_10a_cr' }, - ['-971547840'] = { Name = 'hei_prop_yah_glass_01' }, - ['2023735386'] = { Name = 'hei_prop_yah_glass_02' }, - ['1792484553'] = { Name = 'hei_prop_yah_glass_03' }, - ['1564805541'] = { Name = 'hei_prop_yah_glass_04' }, - ['1299409410'] = { Name = 'hei_prop_yah_glass_05' }, - ['1072287471'] = { Name = 'hei_prop_yah_glass_06' }, - ['569086707'] = { Name = 'hei_prop_yah_glass_07' }, - ['338622326'] = { Name = 'hei_prop_yah_glass_08' }, - ['75487256'] = { Name = 'hei_prop_yah_glass_09' }, - ['-1562831388'] = { Name = 'hei_prop_yah_glass_10' }, - ['900699965'] = { Name = 'hei_prop_yah_lounger' }, - ['28672923'] = { Name = 'hei_prop_yah_seat_01' }, - ['-293380809'] = { Name = 'hei_prop_yah_seat_02' }, - ['-591349326'] = { Name = 'hei_prop_yah_seat_03' }, - ['-1727936540'] = { Name = 'hei_prop_yah_table_01' }, - ['1844244923'] = { Name = 'hei_prop_yah_table_02' }, - ['1000639787'] = { Name = 'hei_prop_yah_table_03' }, - ['623548567'] = { Name = 'hei_prop_zip_tie_positioned' }, - ['818839470'] = { Name = 'hei_prop_zip_tie_straight' }, - ['-1387685787'] = { Name = 'hei_ss1_02_building01' }, - ['-1645951137'] = { Name = 'hei_ss1_02_garagedtls' }, - ['-13598702'] = { Name = 'hei_ss1_02_grd01' }, - ['-1812616998'] = { Name = 'hei_ss1_11_detail01b' }, - ['1754483286'] = { Name = 'hei_ss1_11_flats' }, - ['-525592501'] = { Name = 'hei_ss1_11_flatsgrd01' }, - ['567645300'] = { Name = 'hei_ss1_11_land01' }, - ['1923648289'] = { Name = 'hei_ss1_11_lobbysofa' }, - ['735855031'] = { Name = 'hei_v_ilev_bk_gate_molten' }, - ['-222270721'] = { Name = 'hei_v_ilev_bk_gate_pris' }, - ['1272518122'] = { Name = 'hei_v_ilev_bk_gate2_molten' }, - ['746855201'] = { Name = 'hei_v_ilev_bk_gate2_pris' }, - ['108706825'] = { Name = 'hei_v_ilev_bk_safegate_molten' }, - ['-1508355822'] = { Name = 'hei_v_ilev_bk_safegate_pris' }, - ['224975209'] = { Name = 'hei_v_ilev_fh_heistdoor1' }, - ['330294775'] = { Name = 'hei_v_ilev_fh_heistdoor2' }, - ['301427732'] = { Name = 'hexer' }, - ['2132980893'] = { Name = 'hickbackroomshit' }, - ['-1862421347'] = { Name = 'hickbarbar' }, - ['42358572'] = { Name = 'hickbardivide' }, - ['1375833564'] = { Name = 'hickbarfantops' }, - ['-1163879492'] = { Name = 'hickbarlights' }, - ['-1521838512'] = { Name = 'hickbarshell' }, - ['-1848794733'] = { Name = 'hickbartrmbck' }, - ['-619486048'] = { Name = 'hickbarunit' }, - ['235493964'] = { Name = 'hickbarvent' }, - ['24583005'] = { Name = 'hickbrskrtbck' }, - ['76291840'] = { Name = 'hickmats' }, - ['608514362'] = { Name = 'hickmoresignsfront' }, - ['799455215'] = { Name = 'hickneon' }, - ['-1598384008'] = { Name = 'hicks_barshit' }, - ['810992626'] = { Name = 'hicks_newreflect' }, - ['1667141189'] = { Name = 'hicks_wallshit1' }, - ['1027005939'] = { Name = 'hicksbackdirt' }, - ['-119446652'] = { Name = 'hicksbarmats' }, - ['234652493'] = { Name = 'hickshadback' }, - ['-932952209'] = { Name = 'hickshadowbar' }, - ['1659268031'] = { Name = 'hicksmoresignsback' }, - ['-90636983'] = { Name = 'hickwins' }, - ['-2125480855'] = { Name = 'horizonring' }, - ['37348240'] = { Name = 'hotknife' }, - ['486987393'] = { Name = 'huntley' }, - ['-512624075'] = { Name = 'hw1_01_a' }, - ['-1961608770'] = { Name = 'hw1_01_alley_details' }, - ['1894291760'] = { Name = 'hw1_01_b' }, - ['1901730311'] = { Name = 'hw1_01_c' }, - ['-719461999'] = { Name = 'hw1_01_d' }, - ['2085889725'] = { Name = 'hw1_01_decalsa' }, - ['1854343971'] = { Name = 'hw1_01_decalsb' }, - ['866818173'] = { Name = 'hw1_01_decalsb2' }, - ['1624272822'] = { Name = 'hw1_01_decalsc' }, - ['522020779'] = { Name = 'hw1_01_doorblock' }, - ['-94338861'] = { Name = 'hw1_01_ground' }, - ['400742046'] = { Name = 'hw1_01_handrail_lod' }, - ['532780075'] = { Name = 'hw1_01_handrail' }, - ['548465517'] = { Name = 'hw1_01_hillsidec' }, - ['2112998637'] = { Name = 'hw1_01_hillsidedecalsb' }, - ['-1938412073'] = { Name = 'hw1_01_hillsidegnd' }, - ['114003761'] = { Name = 'hw1_01_hw1_1_railing' }, - ['1776982345'] = { Name = 'hw1_01_hw1_1_railing2' }, - ['453135790'] = { Name = 'hw1_01_ldr001' }, - ['680323267'] = { Name = 'hw1_01_ldr002' }, - ['808920973'] = { Name = 'hw1_01_lockup' }, - ['-331160868'] = { Name = 'hw1_01_props_combo06_dslod' }, - ['794489978'] = { Name = 'hw1_01_shadow_wall' }, - ['621338680'] = { Name = 'hw1_01_upnat_fence' }, - ['-463429933'] = { Name = 'hw1_02_bld1_fnce' }, - ['-1292431284'] = { Name = 'hw1_02_bld1' }, - ['-373981752'] = { Name = 'hw1_02_bld2' }, - ['-679814829'] = { Name = 'hw1_02_bld3' }, - ['-76275387'] = { Name = 'hw1_02_bld4' }, - ['-330398982'] = { Name = 'hw1_02_bld5' }, - ['571534974'] = { Name = 'hw1_02_bld6' }, - ['1849355418'] = { Name = 'hw1_02_cablemesh173373_hvstd' }, - ['1402840727'] = { Name = 'hw1_02_cablemesh173388_hvstd' }, - ['-1351627169'] = { Name = 'hw1_02_cablemesh173403_hvstd' }, - ['-553441798'] = { Name = 'hw1_02_cablemesh173418_hvstd' }, - ['365129804'] = { Name = 'hw1_02_cablemesh173433_hvstd' }, - ['-1252834272'] = { Name = 'hw1_02_detail1' }, - ['-178177157'] = { Name = 'hw1_02_detail1b' }, - ['-2081826670'] = { Name = 'hw1_02_detail1d' }, - ['20155248'] = { Name = 'hw1_02_details2b' }, - ['-2128147623'] = { Name = 'hw1_02_details2c' }, - ['-1246956444'] = { Name = 'hw1_02_details2e' }, - ['406599627'] = { Name = 'hw1_02_door_blocker' }, - ['1100527874'] = { Name = 'hw1_02_emiss_nomelt_pstrs_lod' }, - ['1837065524'] = { Name = 'hw1_02_emissive_melt_pstrs_lod' }, - ['-197030570'] = { Name = 'hw1_02_flow_' }, - ['-2145720397'] = { Name = 'hw1_02_flow_01' }, - ['1366067799'] = { Name = 'hw1_02_flow_02' }, - ['1669803660'] = { Name = 'hw1_02_flow_03' }, - ['-1529040586'] = { Name = 'hw1_02_flow_04' }, - ['1574660943'] = { Name = 'hw1_02_grnd1' }, - ['-723897045'] = { Name = 'hw1_02_grnd2_shadowproxy' }, - ['1936037479'] = { Name = 'hw1_02_grnd2' }, - ['-1903011502'] = { Name = 'hw1_02_gru_door_lod' }, - ['37854080'] = { Name = 'hw1_02_grudoor_dummy' }, - ['2128205696'] = { Name = 'hw1_02_hw2_red_carpet' }, - ['-864104342'] = { Name = 'hw1_02_ld' }, - ['1934147822'] = { Name = 'hw1_02_ld003' }, - ['-73772633'] = { Name = 'hw1_02_ld004' }, - ['225703258'] = { Name = 'hw1_02_ld005' }, - ['-635203910'] = { Name = 'hw1_02_ld006' }, - ['-1807601169'] = { Name = 'hw1_02_ld02' }, - ['-1397949888'] = { Name = 'hw1_02_melt_pstrs_lod' }, - ['2103009690'] = { Name = 'hw1_02_melt_pstrs' }, - ['1455796518'] = { Name = 'hw1_02_nomelt_pstrs_lod' }, - ['1669257774'] = { Name = 'hw1_02_nomelt_pstrs' }, - ['-1962732942'] = { Name = 'hw1_02_prop_premier_fence' }, - ['-1355706694'] = { Name = 'hw1_02_prop_premier_fence001' }, - ['-528813748'] = { Name = 'hw1_02_prop_premier_fence002' }, - ['-759671353'] = { Name = 'hw1_02_prop_premier_fence003' }, - ['1564089854'] = { Name = 'hw1_02_props_hw1_2_ve01_slod' }, - ['984652212'] = { Name = 'hw1_02_props_hw1_2_veg_slod' }, - ['-1565118602'] = { Name = 'hw1_02_railings' }, - ['750378759'] = { Name = 'hw1_02_railings2' }, - ['-1864064469'] = { Name = 'hw1_02_redcpet_lod' }, - ['-1231191169'] = { Name = 'hw1_02_windows_noshad' }, - ['1290932115'] = { Name = 'hw1_02_wood' }, - ['1338958595'] = { Name = 'hw1_02_wood2' }, - ['1364022919'] = { Name = 'hw1_03_a_plots7-9_nodshad' }, - ['-1120421683'] = { Name = 'hw1_03_build02b' }, - ['2091107352'] = { Name = 'hw1_03_build04_ovly' }, - ['-1023057929'] = { Name = 'hw1_03_build04' }, - ['-644523082'] = { Name = 'hw1_03_garage_01' }, - ['-1803107177'] = { Name = 'hw1_03_garage_ov_01' }, - ['1600390370'] = { Name = 'hw1_03_loose_lobday' }, - ['1678520692'] = { Name = 'hw1_03_pool_dummy' }, - ['1254156759'] = { Name = 'hw1_03_pool_proxy' }, - ['-546695604'] = { Name = 'hw1_03_roos_alfa3' }, - ['-113030658'] = { Name = 'hw1_03_roos_alfa4' }, - ['-2032162002'] = { Name = 'hw1_03_roos_apts03' }, - ['1120115004'] = { Name = 'hw1_03_roos_cpark_a' }, - ['-2074675109'] = { Name = 'hw1_03_roos_cpark2' }, - ['-702435766'] = { Name = 'hw1_03_roos_int_shad' }, - ['-1029671640'] = { Name = 'hw1_03_rvelt_dcl01' }, - ['210823447'] = { Name = 'hw1_03_rvelt_frame' }, - ['1530034397'] = { Name = 'hw1_03_rvelt01' }, - ['833751936'] = { Name = 'hw1_04_build02' }, - ['-1627003354'] = { Name = 'hw1_04_build03' }, - ['1432277721'] = { Name = 'hw1_04_build04' }, - ['1154083371'] = { Name = 'hw1_04_build04b' }, - ['-1996911124'] = { Name = 'hw1_04_cablemesh16435_thvy' }, - ['127209426'] = { Name = 'hw1_04_glue' }, - ['-234450300'] = { Name = 'hw1_04_glue003' }, - ['-257044173'] = { Name = 'hw1_04_glue2' }, - ['-1270820123'] = { Name = 'hw1_04_ground' }, - ['1119245547'] = { Name = 'hw1_04_ldr' }, - ['-758751315'] = { Name = 'hw1_04_pw_chainlink' }, - ['-1187071375'] = { Name = 'hw1_04_pw_chainlink2' }, - ['-752456116'] = { Name = 'hw1_04_pw_chainlink3' }, - ['-1050621247'] = { Name = 'hw1_04_pw_chainlink4' }, - ['1960456613'] = { Name = 'hw1_04_pw_chainlink5' }, - ['1654459691'] = { Name = 'hw1_04_pw_chainlink6' }, - ['-2084476352'] = { Name = 'hw1_04_railing' }, - ['-689786883'] = { Name = 'hw1_04_railing2' }, - ['-69278676'] = { Name = 'hw1_04_railing2b' }, - ['-946564767'] = { Name = 'hw1_04_railing3' }, - ['-1311677237'] = { Name = 'hw1_04_railingb' }, - ['-2026320990'] = { Name = 'hw1_04_railng3b' }, - ['2103936397'] = { Name = 'hw1_06_adbuild02' }, - ['2030499440'] = { Name = 'hw1_06_adbuild02b' }, - ['1001027582'] = { Name = 'hw1_06_alley_01' }, - ['-654467153'] = { Name = 'hw1_06_alley_fence_lod' }, - ['-1001914038'] = { Name = 'hw1_06_alley_fence' }, - ['266927528'] = { Name = 'hw1_06_build01cm' }, - ['423838330'] = { Name = 'hw1_06_build03cm' }, - ['-1283337482'] = { Name = 'hw1_06_build04cm' }, - ['-293995249'] = { Name = 'hw1_06_build05cm' }, - ['-376286109'] = { Name = 'hw1_06_cloth_06_02' }, - ['55642080'] = { Name = 'hw1_06_cloth_06_03' }, - ['-361612536'] = { Name = 'hw1_06_cloth_06_m' }, - ['791147146'] = { Name = 'hw1_06_db07rail_lod' }, - ['1977395601'] = { Name = 'hw1_06_db07rail2_lod' }, - ['635949094'] = { Name = 'hw1_06_detail02' }, - ['2064016994'] = { Name = 'hw1_06_detail02b' }, - ['1107063883'] = { Name = 'hw1_06_detail02c' }, - ['586863342'] = { Name = 'hw1_06_emissive_a' }, - ['21532554'] = { Name = 'hw1_06_emissive_b' }, - ['1180867009'] = { Name = 'hw1_06_emissive_c' }, - ['1423554223'] = { Name = 'hw1_06_emissive_d' }, - ['1509835000'] = { Name = 'hw1_06_emissive_e' }, - ['2012118232'] = { Name = 'hw1_06_emissive_f' }, - ['2100922222'] = { Name = 'hw1_06_emissive_g' }, - ['-1955912751'] = { Name = 'hw1_06_emissive_h' }, - ['-1252132942'] = { Name = 'hw1_06_emissive_i' }, - ['-2095770847'] = { Name = 'hw1_06_emissive_j' }, - ['1813300909'] = { Name = 'hw1_06_emissive_nightphrm_b' }, - ['1068966236'] = { Name = 'hw1_06_furgrass_00' }, - ['837060023'] = { Name = 'hw1_06_furgrass_01' }, - ['606235187'] = { Name = 'hw1_06_furgrass_02' }, - ['381079388'] = { Name = 'hw1_06_furgrass_03' }, - ['149795786'] = { Name = 'hw1_06_furgrass_04' }, - ['-758495356'] = { Name = 'hw1_06_furgrass_05' }, - ['-994038928'] = { Name = 'hw1_06_furgrass_06' }, - ['-1233678625'] = { Name = 'hw1_06_furgrass_07' }, - ['-1473744327'] = { Name = 'hw1_06_furgrass_08' }, - ['-1716202158'] = { Name = 'hw1_06_furgrass_09' }, - ['484369132'] = { Name = 'hw1_06_furgrass_10' }, - ['-479465465'] = { Name = 'hw1_06_furgrass_11' }, - ['-1050956825'] = { Name = 'hw1_06_furgrass_12' }, - ['-898384449'] = { Name = 'hw1_06_furgrass_13' }, - ['-1400929833'] = { Name = 'hw1_06_furgrass_14' }, - ['-440109984'] = { Name = 'hw1_06_furgrass_15' }, - ['-671393586'] = { Name = 'hw1_06_furgrass_16' }, - ['-1859630299'] = { Name = 'hw1_06_furgrass_17' }, - ['-2091077746'] = { Name = 'hw1_06_furgrass_18' }, - ['755892978'] = { Name = 'hw1_06_furgrass_19' }, - ['-915652796'] = { Name = 'hw1_06_furgrass_20' }, - ['-829765247'] = { Name = 'hw1_06_furgrass_21' }, - ['-592916992'] = { Name = 'hw1_06_glue' }, - ['899883042'] = { Name = 'hw1_06_glue2' }, - ['1854018015'] = { Name = 'hw1_06_glue3' }, - ['-2134244776'] = { Name = 'hw1_06_gop' }, - ['-1081621127'] = { Name = 'hw1_06_grnd_low2' }, - ['435131988'] = { Name = 'hw1_06_hdgb_top' }, - ['1036652564'] = { Name = 'hw1_06_hdgb' }, - ['-657301768'] = { Name = 'hw1_06_hedge_rnd_a_l_decr001' }, - ['-1485923788'] = { Name = 'hw1_06_hedge_rnd_a_ml001' }, - ['-1977076544'] = { Name = 'hw1_06_hw1_nwcl' }, - ['-1911646444'] = { Name = 'hw1_06_jrdrs' }, - ['326183423'] = { Name = 'hw1_06_ldr_' }, - ['-375435415'] = { Name = 'hw1_06_ldr_01' }, - ['-1336395753'] = { Name = 'hw1_06_ldr_011' }, - ['-61967161'] = { Name = 'hw1_06_ldr_02' }, - ['-825943627'] = { Name = 'hw1_06_ldr_03' }, - ['-529089256'] = { Name = 'hw1_06_ldr_04' }, - ['1055324667'] = { Name = 'hw1_06_ldr_05' }, - ['276307230'] = { Name = 'hw1_06_ldr_06' }, - ['-435369912'] = { Name = 'hw1_06_ldr_07' }, - ['-127701771'] = { Name = 'hw1_06_ldr_08' }, - ['2040065886'] = { Name = 'hw1_06_ldr_09' }, - ['1503866407'] = { Name = 'hw1_06_ldr_10' }, - ['1278565879'] = { Name = 'hw1_06_nbr' }, - ['946657917'] = { Name = 'hw1_06_nbrs' }, - ['-398272479'] = { Name = 'hw1_06_nu_build004' }, - ['292737839'] = { Name = 'hw1_06_nu_build02' }, - ['-1107135077'] = { Name = 'hw1_06_pharmcy_01' }, - ['-1817687760'] = { Name = 'hw1_06_pharmdet_01' }, - ['-1872534500'] = { Name = 'hw1_06_pipes_drains' }, - ['-399959729'] = { Name = 'hw1_06_railings' }, - ['1668396678'] = { Name = 'hw1_06_railings2' }, - ['-2013429859'] = { Name = 'hw1_06_railings4' }, - ['-1776477224'] = { Name = 'hw1_06_railings5' }, - ['-1050906030'] = { Name = 'hw1_06_railings6' }, - ['-2029222020'] = { Name = 'hw1_06_road' }, - ['1121637823'] = { Name = 'hw1_06_shdw01' }, - ['-1141386914'] = { Name = 'hw1_06_shdw01c' }, - ['-1673641165'] = { Name = 'hw1_07_03_tmp_ovly' }, - ['-773442881'] = { Name = 'hw1_07_03_tmp' }, - ['313893975'] = { Name = 'hw1_07_a_plots7-9_nodshad' }, - ['1228790535'] = { Name = 'hw1_07_apt_5drail_lod' }, - ['-1070163359'] = { Name = 'hw1_07_b1' }, - ['-408437505'] = { Name = 'hw1_07_build_sa' }, - ['45984266'] = { Name = 'hw1_07_cablemesh369339_hvstd' }, - ['-889487127'] = { Name = 'hw1_07_cablemesh369354_hvstd' }, - ['-1369722876'] = { Name = 'hw1_07_cablemesh369369_hvstd' }, - ['-2012474417'] = { Name = 'hw1_07_detail_b1' }, - ['1369903232'] = { Name = 'hw1_07_detail' }, - ['-1892184924'] = { Name = 'hw1_07_detail3' }, - ['700726340'] = { Name = 'hw1_07_details_02' }, - ['-332017629'] = { Name = 'hw1_07_elpitbase_al' }, - ['1545468184'] = { Name = 'hw1_07_elpitbase_d' }, - ['-1851273617'] = { Name = 'hw1_07_elpitbase' }, - ['-265692065'] = { Name = 'hw1_07_fence02a' }, - ['-1861921310'] = { Name = 'hw1_07_grnd_b' }, - ['218320376'] = { Name = 'hw1_07_grnd_c' }, - ['1255186874'] = { Name = 'hw1_07_hedge_d' }, - ['2146818243'] = { Name = 'hw1_07_hedge_d2' }, - ['1918123392'] = { Name = 'hw1_07_hedge_d3' }, - ['465408076'] = { Name = 'hw1_07_hedge_d4' }, - ['-1913523013'] = { Name = 'hw1_07_hedge_d5' }, - ['1435630835'] = { Name = 'hw1_07_ladder_002' }, - ['679174808'] = { Name = 'hw1_07_ldrr001' }, - ['518606708'] = { Name = 'hw1_07_ldrr002' }, - ['-1659515953'] = { Name = 'hw1_07_ldrr003' }, - ['-1889357719'] = { Name = 'hw1_07_ldrr004' }, - ['-2051564269'] = { Name = 'hw1_07_ldrr005' }, - ['996091122'] = { Name = 'hw1_07_logo' }, - ['-299255729'] = { Name = 'hw1_07_parkingem' }, - ['989207063'] = { Name = 'hw1_07_props_combo01_slod' }, - ['-2023215275'] = { Name = 'hw1_07_props_combo02_dslod' }, - ['1279723898'] = { Name = 'hw1_07_railings' }, - ['1039954763'] = { Name = 'hw1_07_railings10' }, - ['672163373'] = { Name = 'hw1_07_railings2_lod' }, - ['-868163536'] = { Name = 'hw1_07_railings4' }, - ['1576240023'] = { Name = 'hw1_07_railings5' }, - ['1942335291'] = { Name = 'hw1_07_railings6' }, - ['-2120463640'] = { Name = 'hw1_07_railings7' }, - ['-1762953850'] = { Name = 'hw1_07_railings8' }, - ['615518465'] = { Name = 'hw1_07_railings9' }, - ['1942564779'] = { Name = 'hw1_07_rails' }, - ['-313844421'] = { Name = 'hw1_07_roof_dirt' }, - ['1069623653'] = { Name = 'hw1_07_roof_dirt2' }, - ['695889205'] = { Name = 'hw1_07_sdw_01' }, - ['-206044751'] = { Name = 'hw1_07_sdw_02' }, - ['-1290918362'] = { Name = 'hw1_07_sgn_det' }, - ['-2022955107'] = { Name = 'hw1_07_sgn_det01' }, - ['330312763'] = { Name = 'hw1_07_shw_pr' }, - ['-1371120068'] = { Name = 'hw1_07_tmp_ladder' }, - ['1878021811'] = { Name = 'hw1_07_twl_det' }, - ['-1636425964'] = { Name = 'hw1_07_twl_det01' }, - ['-560809621'] = { Name = 'hw1_07_vw_muzak_001' }, - ['-135829466'] = { Name = 'hw1_07_warehseshelf03' }, - ['1703606389'] = { Name = 'hw1_07_wtrbuild01' }, - ['-865830828'] = { Name = 'hw1_07_wtrbuild01d' }, - ['-434947323'] = { Name = 'hw1_07_wtrbuild02d' }, - ['-2003042440'] = { Name = 'hw1_07_wtrbuild05d' }, - ['-758922140'] = { Name = 'hw1_08_build03x' }, - ['-519796568'] = { Name = 'hw1_08_build1_4_det' }, - ['710360556'] = { Name = 'hw1_08_carparkdetail' }, - ['1970877928'] = { Name = 'hw1_08_decalb' }, - ['-658015101'] = { Name = 'hw1_08_decald' }, - ['-131077603'] = { Name = 'hw1_08_decals1' }, - ['-1963683928'] = { Name = 'hw1_08_decals2' }, - ['-1031393586'] = { Name = 'hw1_08_emissive_a_slod' }, - ['-2083120310'] = { Name = 'hw1_08_grnd2' }, - ['1029279318'] = { Name = 'hw1_08_grnd3' }, - ['-1594709952'] = { Name = 'hw1_08_ground_01' }, - ['1304399686'] = { Name = 'hw1_08_hotplaz_ldr' }, - ['723023507'] = { Name = 'hw1_08_hotplaz_rail' }, - ['-1836318341'] = { Name = 'hw1_08_hotplaz01' }, - ['-1462686203'] = { Name = 'hw1_08_hotplaz02' }, - ['899826789'] = { Name = 'hw1_08_hurrdetails' }, - ['326394542'] = { Name = 'hw1_08_hurricanex' }, - ['-2072287043'] = { Name = 'hw1_08_hw1_8_newtop001' }, - ['-702487957'] = { Name = 'hw1_08_ldr' }, - ['1443519929'] = { Name = 'hw1_08_ldr001' }, - ['1135524098'] = { Name = 'hw1_08_ldr002' }, - ['963617976'] = { Name = 'hw1_08_ldr003' }, - ['-1667060909'] = { Name = 'hw1_08_lightcase' }, - ['-782735761'] = { Name = 'hw1_08_newcarpark' }, - ['-1988933741'] = { Name = 'hw1_08_newdecals' }, - ['-965682050'] = { Name = 'hw1_08_rail' }, - ['-409844162'] = { Name = 'hw1_08_railings' }, - ['1870569448'] = { Name = 'hw1_08_railings2' }, - ['-1731595650'] = { Name = 'hw1_08_railings3' }, - ['28731469'] = { Name = 'hw1_08_shadowproxy01' }, - ['1972363783'] = { Name = 'hw1_08_vwhot_det1' }, - ['1650221088'] = { Name = 'hw1_08_vwhot01' }, - ['1778162525'] = { Name = 'hw1_09_billboards' }, - ['-430121925'] = { Name = 'hw1_09_captower_dtl' }, - ['145371199'] = { Name = 'hw1_09_captower' }, - ['1394986836'] = { Name = 'hw1_09_cp_railings' }, - ['-1400883693'] = { Name = 'hw1_09_fake_int_em' }, - ['-1222254644'] = { Name = 'hw1_09_fake_int' }, - ['-1243261926'] = { Name = 'hw1_09_glue_01' }, - ['-1001656089'] = { Name = 'hw1_09_glue_02' }, - ['-510280497'] = { Name = 'hw1_09_glue_2' }, - ['-904413333'] = { Name = 'hw1_09_ground' }, - ['413284062'] = { Name = 'hw1_09_ground2' }, - ['149399910'] = { Name = 'hw1_09_mscp' }, - ['-326741201'] = { Name = 'hw1_09_pd_sign' }, - ['369205997'] = { Name = 'hw1_09_policestation' }, - ['-1793416473'] = { Name = 'hw1_09_props_combo01_slod' }, - ['-1716590621'] = { Name = 'hw1_09_props_combo03_slod' }, - ['-1640093595'] = { Name = 'hw1_09_rail_post' }, - ['-1736123092'] = { Name = 'hw1_09_rail_post2' }, - ['57120750'] = { Name = 'hw1_09_railings' }, - ['1784356027'] = { Name = 'hw1_10_br_rail' }, - ['1199652644'] = { Name = 'hw1_10_bridge01_sd' }, - ['-1039202168'] = { Name = 'hw1_10_bridge01' }, - ['160230259'] = { Name = 'hw1_10_bridge02_sd' }, - ['1781979357'] = { Name = 'hw1_10_bridge02' }, - ['-1515041200'] = { Name = 'hw1_10_cnt_sign' }, - ['-364531001'] = { Name = 'hw1_10_land_00' }, - ['-1825897329'] = { Name = 'hw1_10_land_02' }, - ['-1064083617'] = { Name = 'hw1_10_land_03' }, - ['-825426990'] = { Name = 'hw1_10_land_04' }, - ['1545574009'] = { Name = 'hw1_10_land_06' }, - ['1769353510'] = { Name = 'hw1_10_land_07' }, - ['2008239520'] = { Name = 'hw1_10_land_08' }, - ['-445543429'] = { Name = 'hw1_10_land02_a' }, - ['-824193557'] = { Name = 'hw1_10_land03_a' }, - ['1635090709'] = { Name = 'hw1_10_land06_a' }, - ['766833563'] = { Name = 'hw1_10_land08_a' }, - ['487854109'] = { Name = 'hw1_11_build01_a' }, - ['1064599835'] = { Name = 'hw1_11_build01' }, - ['-1411239158'] = { Name = 'hw1_11_build02_a' }, - ['1908762044'] = { Name = 'hw1_11_build02' }, - ['-980848503'] = { Name = 'hw1_11_build02b_a' }, - ['-978252068'] = { Name = 'hw1_11_cablemesh28210_hvstd' }, - ['-161438509'] = { Name = 'hw1_11_grnd_blnd' }, - ['210683425'] = { Name = 'hw1_11_ground_a' }, - ['-443992967'] = { Name = 'hw1_11_ground_a2' }, - ['1332427729'] = { Name = 'hw1_11_ground_noshadow' }, - ['-1786582789'] = { Name = 'hw1_11_hedge_a' }, - ['670953188'] = { Name = 'hw1_11_hedge_a2' }, - ['1074145773'] = { Name = 'hw1_11_ldr_01' }, - ['-573404173'] = { Name = 'hw1_11_railings' }, - ['13448741'] = { Name = 'hw1_11_railings2' }, - ['-279604426'] = { Name = 'hw1_11_railings3' }, - ['684164637'] = { Name = 'hw1_11_railings4' }, - ['586026448'] = { Name = 'hw1_12_build01_a' }, - ['354515856'] = { Name = 'hw1_12_build01' }, - ['-703884125'] = { Name = 'hw1_12_build02_a' }, - ['-1168008134'] = { Name = 'hw1_12_build02_a2' }, - ['-971230321'] = { Name = 'hw1_12_build02_ab' }, - ['-501410428'] = { Name = 'hw1_12_build02' }, - ['-426928973'] = { Name = 'hw1_12_cablemesh1463_thvy' }, - ['-1506245775'] = { Name = 'hw1_12_chainlink' }, - ['-541074993'] = { Name = 'hw1_12_ground' }, - ['1558939191'] = { Name = 'hw1_12_hdg_top' }, - ['-630567675'] = { Name = 'hw1_12_hdg' }, - ['-2128659209'] = { Name = 'hw1_12_railings' }, - ['583048327'] = { Name = 'hw1_12_railings2' }, - ['813840394'] = { Name = 'hw1_12_railings3' }, - ['2104026129'] = { Name = 'hw1_13_biker_aux' }, - ['136264275'] = { Name = 'hw1_13_biker_gardoor' }, - ['-1293675098'] = { Name = 'hw1_13_biker_newbits' }, - ['177085699'] = { Name = 'hw1_13_biker_rails' }, - ['2134388008'] = { Name = 'hw1_13_bikergnd_a' }, - ['36342934'] = { Name = 'hw1_13_bikergnd' }, - ['-1342604687'] = { Name = 'hw1_13_bikergnd2_a' }, - ['327225700'] = { Name = 'hw1_13_bk_wires' }, - ['1356530899'] = { Name = 'hw1_13_bkrgnd_noshadow' }, - ['747685776'] = { Name = 'hw1_13_garage_door_01' }, - ['-496822713'] = { Name = 'hw1_13_ground_a1' }, - ['-2003736070'] = { Name = 'hw1_13_ground' }, - ['-694926978'] = { Name = 'hw1_13_ldrrr' }, - ['922403028'] = { Name = 'hw1_13_motel_decal' }, - ['706065119'] = { Name = 'hw1_13_motel' }, - ['-2030346120'] = { Name = 'hw1_13_props_combo_slod' }, - ['-800344852'] = { Name = 'hw1_13_props_dump01alod' }, - ['-2096314408'] = { Name = 'hw1_13_props_dump01alod1' }, - ['-1395254422'] = { Name = 'hw1_13_props_dump01alod2' }, - ['-1550536461'] = { Name = 'hw1_13_props_pallet01lod5' }, - ['-1121865470'] = { Name = 'hw1_13_railings' }, - ['-1545333354'] = { Name = 'hw1_13_railings2' }, - ['-718637022'] = { Name = 'hw1_13_railings3' }, - ['-1659158224'] = { Name = 'hw1_13_ratt_static' }, - ['-2053869137'] = { Name = 'hw1_13_res2_decals' }, - ['716555051'] = { Name = 'hw1_13_res2' }, - ['794887696'] = { Name = 'hw1_13_starlight_sign' }, - ['1413145791'] = { Name = 'hw1_13_wires' }, - ['219326616'] = { Name = 'hw1_14_bld01_utl' }, - ['-1659875318'] = { Name = 'hw1_14_bld01_utlb' }, - ['1902050790'] = { Name = 'hw1_14_bld02_dcl' }, - ['-313241547'] = { Name = 'hw1_14_bld02' }, - ['-332611915'] = { Name = 'hw1_14_bld02b_dcl' }, - ['-631756227'] = { Name = 'hw1_14_bld03' }, - ['-787277901'] = { Name = 'hw1_14_bld04' }, - ['904094038'] = { Name = 'hw1_14_bld05' }, - ['1459685470'] = { Name = 'hw1_14_bld06_utl' }, - ['1032850982'] = { Name = 'hw1_14_bld06_utlb' }, - ['1737949586'] = { Name = 'hw1_14_bld06_utlbb' }, - ['-1637781722'] = { Name = 'hw1_14_bld06_utlbc' }, - ['1901353015'] = { Name = 'hw1_14_bld07' }, - ['-1357141677'] = { Name = 'hw1_14_d' }, - ['1831854458'] = { Name = 'hw1_14_db_apart_05__rsref00' }, - ['336054536'] = { Name = 'hw1_14_db' }, - ['-1392644903'] = { Name = 'hw1_14_fence' }, - ['-1568817157'] = { Name = 'hw1_14_glass' }, - ['-178496097'] = { Name = 'hw1_14_glue01' }, - ['-253523090'] = { Name = 'hw1_14_gnd_1b' }, - ['1833729674'] = { Name = 'hw1_14_gnd_2b' }, - ['-607938432'] = { Name = 'hw1_14_gnd_2eb' }, - ['-1808807168'] = { Name = 'hw1_14_gnd_c' }, - ['1744531028'] = { Name = 'hw1_14_hdg_top' }, - ['1356886467'] = { Name = 'hw1_14_hdg_top2' }, - ['-408002820'] = { Name = 'hw1_14_hdg' }, - ['1930242138'] = { Name = 'hw1_14_hdg2' }, - ['1219752935'] = { Name = 'hw1_14_hdg2c' }, - ['705915654'] = { Name = 'hw1_14_hdgb_top003' }, - ['1924951663'] = { Name = 'hw1_14_hdgb_top2' }, - ['-1702099064'] = { Name = 'hw1_14_hdgc_top2' }, - ['-1642618956'] = { Name = 'hw1_14_hdgd_top' }, - ['-1329880142'] = { Name = 'hw1_14_hdgd' }, - ['665976950'] = { Name = 'hw1_14_hdge_top' }, - ['1862480776'] = { Name = 'hw1_14_hdge_top001' }, - ['1249676467'] = { Name = 'hw1_14_ladder_001' }, - ['-1263509223'] = { Name = 'hw1_14_ladder_002' }, - ['140779207'] = { Name = 'hw1_14_ldr' }, - ['1554081049'] = { Name = 'hw1_14_ldr001' }, - ['1255588228'] = { Name = 'hw1_14_ldr002' }, - ['1556899179'] = { Name = 'hw1_14_ldr003' }, - ['1146321396'] = { Name = 'hw1_14_railing' }, - ['749181752'] = { Name = 'hw1_14_railings2' }, - ['987674534'] = { Name = 'hw1_14_railings3' }, - ['1227707459'] = { Name = 'hw1_14_railings4' }, - ['1468788992'] = { Name = 'hw1_14_railings5' }, - ['1552031093'] = { Name = 'hw1_14_rtr' }, - ['-393685242'] = { Name = 'hw1_14_rtrb' }, - ['-902948776'] = { Name = 'hw1_14_shd_pxy' }, - ['-144671806'] = { Name = 'hw1_14_shdw' }, - ['-290116045'] = { Name = 'hw1_14_shdw2' }, - ['1010868558'] = { Name = 'hw1_14_twl' }, - ['1688194909'] = { Name = 'hw1_14_twl2' }, - ['1868162257'] = { Name = 'hw1_14_twl3' }, - ['-760272022'] = { Name = 'hw1_14_twlb' }, - ['667531210'] = { Name = 'hw1_14_vent' }, - ['-534778517'] = { Name = 'hw1_15_apart_st1_2' }, - ['268618773'] = { Name = 'hw1_15_apart_st2' }, - ['-414886721'] = { Name = 'hw1_15_apt_st1' }, - ['-1951216762'] = { Name = 'hw1_15_build1_details' }, - ['582558264'] = { Name = 'hw1_15_build1_detailsb' }, - ['-672900969'] = { Name = 'hw1_15_build1' }, - ['-955828515'] = { Name = 'hw1_15_build2' }, - ['-2127019256'] = { Name = 'hw1_15_dec_00' }, - ['1996566170'] = { Name = 'hw1_15_dec_01' }, - ['1690274327'] = { Name = 'hw1_15_dec_02' }, - ['1293376151'] = { Name = 'hw1_15_dec_03' }, - ['-229661439'] = { Name = 'hw1_15_dec_04' }, - ['1298669622'] = { Name = 'hw1_15_dec_05_ivyb' }, - ['-592086579'] = { Name = 'hw1_15_dec_05' }, - ['-811147344'] = { Name = 'hw1_15_dec_06' }, - ['-1192644042'] = { Name = 'hw1_15_dec_07' }, - ['-558837092'] = { Name = 'hw1_15_fnc' }, - ['651108333'] = { Name = 'hw1_15_ground1' }, - ['552612940'] = { Name = 'hw1_15_hdg_00_top' }, - ['119494936'] = { Name = 'hw1_15_hdg_00' }, - ['721157395'] = { Name = 'hw1_15_hdg_01_top' }, - ['-1253722798'] = { Name = 'hw1_15_hdg_01' }, - ['1603975167'] = { Name = 'hw1_15_hdg_02_top' }, - ['-1558441729'] = { Name = 'hw1_15_hdg_02' }, - ['-1196087386'] = { Name = 'hw1_15_hdg_03_top' }, - ['-1058780017'] = { Name = 'hw1_15_hdg_03' }, - ['1677913519'] = { Name = 'hw1_15_hdg_04_top' }, - ['1920544698'] = { Name = 'hw1_15_hdg_04' }, - ['2023175627'] = { Name = 'hw1_15_hdg_b_00_top' }, - ['2034933165'] = { Name = 'hw1_15_hdg_b_00' }, - ['-1416379258'] = { Name = 'hw1_15_hdg_b_01_top' }, - ['-1308651754'] = { Name = 'hw1_15_hdg_b_01' }, - ['-669656988'] = { Name = 'hw1_15_hdg_b_02_top' }, - ['-725101402'] = { Name = 'hw1_15_hdg_b_02' }, - ['1060941408'] = { Name = 'hw1_15_hdg_b_03_top' }, - ['1290159341'] = { Name = 'hw1_15_hdg_b_03' }, - ['-1516304052'] = { Name = 'hw1_15_hdg_b_04_top' }, - ['1521148022'] = { Name = 'hw1_15_hdg_b_04' }, - ['-1808566825'] = { Name = 'hw1_15_ladder_' }, - ['521524290'] = { Name = 'hw1_15_lldd' }, - ['862768299'] = { Name = 'hw1_15_lll' }, - ['97776128'] = { Name = 'hw1_15_props_cbl_thvy' }, - ['1722748059'] = { Name = 'hw1_15_props_cbl_thvy01' }, - ['1953212436'] = { Name = 'hw1_15_props_cbl_thvy02' }, - ['-2094938752'] = { Name = 'hw1_15_props_cbl_thvy03' }, - ['18366831'] = { Name = 'hw1_15_props_cbl_thvy04' }, - ['493451793'] = { Name = 'hw1_15_props_cbl_thvy05' }, - ['181504950'] = { Name = 'hw1_15_railing2_lod' }, - ['-1936985284'] = { Name = 'hw1_15_railing3_lod' }, - ['462382584'] = { Name = 'hw1_15_railing4' }, - ['1255300595'] = { Name = 'hw1_15_railings5' }, - ['1391890095'] = { Name = 'hw1_15_shdw' }, - ['74868871'] = { Name = 'hw1_15_twl00' }, - ['1016027320'] = { Name = 'hw1_15_twl01' }, - ['786447706'] = { Name = 'hw1_15_twl02' }, - ['1632346672'] = { Name = 'hw1_15_twl03' }, - ['-1132378361'] = { Name = 'hw1_16_bboard' }, - ['387516613'] = { Name = 'hw1_16_build02' }, - ['-529311731'] = { Name = 'hw1_16_build02b_dcl' }, - ['1396517341'] = { Name = 'hw1_16_build02b_dcl2' }, - ['1134529186'] = { Name = 'hw1_16_build02b_dcl3' }, - ['1765503940'] = { Name = 'hw1_16_build1' }, - ['-1736366459'] = { Name = 'hw1_16_build2_g' }, - ['-1828829367'] = { Name = 'hw1_16_build2' }, - ['-1117503232'] = { Name = 'hw1_16_build2aldet_b' }, - ['-1346919001'] = { Name = 'hw1_16_build2aldet_c' }, - ['-806773311'] = { Name = 'hw1_16_build2aldet' }, - ['1254221951'] = { Name = 'hw1_16_build2ov' }, - ['2109486183'] = { Name = 'hw1_16_build2ov2' }, - ['-1039938041'] = { Name = 'hw1_16_gnd' }, - ['1164797860'] = { Name = 'hw1_16_h1_16_brand_emissive' }, - ['-2128520986'] = { Name = 'hw1_16_ldr' }, - ['122504853'] = { Name = 'hw1_16_ldr001' }, - ['-681926893'] = { Name = 'hw1_16_props_cable_thvy' }, - ['-565680250'] = { Name = 'hw1_16_props_cable_thvy01' }, - ['-1332868078'] = { Name = 'hw1_16_props_cable_thvy02' }, - ['-1981104416'] = { Name = 'hw1_16_props_cable_thvy03' }, - ['-849361483'] = { Name = 'hw1_16_props_cable_thvy04' }, - ['-1654168103'] = { Name = 'hw1_16_props_cable_thvy05' }, - ['1796768060'] = { Name = 'hw1_16_props_cable_thvy06' }, - ['1088761046'] = { Name = 'hw1_16_props_cable_thvy07' }, - ['-2139248110'] = { Name = 'hw1_16_rails_00' }, - ['1882786185'] = { Name = 'hw1_16_rails_01' }, - ['892179315'] = { Name = 'hw1_16_rails_02' }, - ['-1830924589'] = { Name = 'hw1_16_rails_03' }, - ['1502108712'] = { Name = 'hw1_16_rails_04' }, - ['1225112355'] = { Name = 'hw1_16_rails_05' }, - ['524989316'] = { Name = 'hw1_16_rails_x' }, - ['-507646136'] = { Name = 'hw1_16_railsb_00' }, - ['-806663261'] = { Name = 'hw1_16_railsb_01' }, - ['2100078119'] = { Name = 'hw1_16_railsb_02' }, - ['1801257608'] = { Name = 'hw1_16_railsb_03' }, - ['-1697128067'] = { Name = 'hw1_16_railsb_04' }, - ['1204992872'] = { Name = 'hw1_16_railsb_05' }, - ['-1527533332'] = { Name = 'hw1_16_railsc_00' }, - ['-80126594'] = { Name = 'hw1_16_railsc_01' }, - ['158071267'] = { Name = 'hw1_16_railsc_02' }, - ['221381079'] = { Name = 'hw1_16_railsc_03' }, - ['-168114023'] = { Name = 'hw1_16_shw2' }, - ['-1449171789'] = { Name = 'hw1_16_ss_det' }, - ['-1311577483'] = { Name = 'hw1_16_water_' }, - ['-1840484082'] = { Name = 'hw1_17_a_plots7-9_nodshad001' }, - ['1255825959'] = { Name = 'hw1_17_a_plots7-9_nodshad002' }, - ['-2037725675'] = { Name = 'hw1_17_aircon_climb' }, - ['1668066343'] = { Name = 'hw1_17_aircon_climb001' }, - ['438411327'] = { Name = 'hw1_17_build1_n' }, - ['1430940564'] = { Name = 'hw1_17_build1_n2' }, - ['-612627298'] = { Name = 'hw1_17_decals' }, - ['1314978361'] = { Name = 'hw1_17_decals01' }, - ['1562056621'] = { Name = 'hw1_17_decals02' }, - ['1806546130'] = { Name = 'hw1_17_decals03' }, - ['-473684807'] = { Name = 'hw1_17_decals04' }, - ['-720599222'] = { Name = 'hw1_17_decals05' }, - ['-940675826'] = { Name = 'hw1_17_decals06' }, - ['-1237857887'] = { Name = 'hw1_17_decals07' }, - ['117708805'] = { Name = 'hw1_17_det' }, - ['-679193819'] = { Name = 'hw1_17_det01' }, - ['-1580898392'] = { Name = 'hw1_17_det02' }, - ['1912014860'] = { Name = 'hw1_17_det03' }, - ['-867943259'] = { Name = 'hw1_17_det04' }, - ['-1672281727'] = { Name = 'hw1_17_detail2_b' }, - ['192265852'] = { Name = 'hw1_17_detail3_b_' }, - ['1036495635'] = { Name = 'hw1_17_detail3_b_02' }, - ['1773765306'] = { Name = 'hw1_17_detail3_b_07' }, - ['2085038037'] = { Name = 'hw1_17_detail3_b_08' }, - ['-1337974414'] = { Name = 'hw1_17_detail3_b' }, - ['-1057599564'] = { Name = 'hw1_17_fences' }, - ['-2124979123'] = { Name = 'hw1_17_ground1' }, - ['2140678334'] = { Name = 'hw1_17_ladr' }, - ['-318344114'] = { Name = 'hw1_17_ladr005' }, - ['-1210381832'] = { Name = 'hw1_17_ladr006' }, - ['-912741005'] = { Name = 'hw1_17_ladr007' }, - ['341525239'] = { Name = 'hw1_17_ladr008' }, - ['639362680'] = { Name = 'hw1_17_ladr009' }, - ['-862011307'] = { Name = 'hw1_17_ladr01' }, - ['1052547689'] = { Name = 'hw1_17_ladr010' }, - ['-1094507362'] = { Name = 'hw1_17_ladr02' }, - ['1407209258'] = { Name = 'hw1_17_ladr03' }, - ['1101114029'] = { Name = 'hw1_17_ladr04' }, - ['-1488944255'] = { Name = 'hw1_17_nwnet' }, - ['803300022'] = { Name = 'hw1_17_nwnet2' }, - ['815529765'] = { Name = 'hw1_17_props_aircon_climb002' }, - ['-11985792'] = { Name = 'hw1_17_props_aircon_climb003' }, - ['1188395716'] = { Name = 'hw1_17_rails00' }, - ['877680058'] = { Name = 'hw1_17_rails01' }, - ['459383773'] = { Name = 'hw1_17_rails02' }, - ['413769325'] = { Name = 'hw1_17_rails03' }, - ['502147314'] = { Name = 'hw1_17_rails04' }, - ['196281468'] = { Name = 'hw1_17_rails05' }, - ['-720496841'] = { Name = 'hw1_17_rails06' }, - ['-273920909'] = { Name = 'hw1_17_rails07' }, - ['-1198629320'] = { Name = 'hw1_17_rails08' }, - ['-422954321'] = { Name = 'hw1_17_rails09' }, - ['1992938764'] = { Name = 'hw1_17_rails10' }, - ['1402978844'] = { Name = 'hw1_17_sdw_px' }, - ['585995226'] = { Name = 'hw1_18_build01' }, - ['-2063233765'] = { Name = 'hw1_18_cablemesh27816_thvy' }, - ['1561473301'] = { Name = 'hw1_18_cablemesh27817_thvy' }, - ['1862924054'] = { Name = 'hw1_18_cablemesh27818_thvy' }, - ['-613148533'] = { Name = 'hw1_18_cablemesh27819_thvy' }, - ['679577921'] = { Name = 'hw1_18_cablemesh27820_thvy' }, - ['-2036860565'] = { Name = 'hw1_18_cablemesh27821_thvy' }, - ['1719346147'] = { Name = 'hw1_18_cablemesh27822_thvy' }, - ['1910999475'] = { Name = 'hw1_18_cablemesh27823_thvy' }, - ['-1388300832'] = { Name = 'hw1_18_cablemesh27824_thvy' }, - ['300374699'] = { Name = 'hw1_18_cablemesh27825_thvy' }, - ['988611603'] = { Name = 'hw1_18_cablemesh27826_thvy' }, - ['639021151'] = { Name = 'hw1_18_dash_em' }, - ['1768261197'] = { Name = 'hw1_18_dashound_sign' }, - ['-724531239'] = { Name = 'hw1_18_ground01' }, - ['192306163'] = { Name = 'hw1_18_land_01' }, - ['-161271351'] = { Name = 'hw1_18_land_02' }, - ['1253956221'] = { Name = 'hw1_18_land_03' }, - ['830605302'] = { Name = 'hw1_18_ovlya' }, - ['-146467971'] = { Name = 'hw1_18_ovlyb' }, - ['272638749'] = { Name = 'hw1_18_props_combo_01_lod' }, - ['-1079590505'] = { Name = 'hw1_18_rails' }, - ['-41650172'] = { Name = 'hw1_18_rd_sup_01' }, - ['355993842'] = { Name = 'hw1_19_19_rails' }, - ['-2111758304'] = { Name = 'hw1_19_19_rails01' }, - ['-1311604862'] = { Name = 'hw1_19_19_rails02' }, - ['690056734'] = { Name = 'hw1_19_19_rails04' }, - ['245709094'] = { Name = 'hw1_19_19_rails06' }, - ['-944763167'] = { Name = 'hw1_19_bathroom_002' }, - ['-931618751'] = { Name = 'hw1_19_bathroom_01' }, - ['-1634933074'] = { Name = 'hw1_19_fount_pool' }, - ['1443681589'] = { Name = 'hw1_19_hw1_props_00' }, - ['1724872378'] = { Name = 'hw1_19_hw1_props_01' }, - ['-124609986'] = { Name = 'hw1_19_hw1_props_02' }, - ['189939645'] = { Name = 'hw1_19_hw1_props_03' }, - ['2108564599'] = { Name = 'hw1_19_hw1_props_04' }, - ['-1863103743'] = { Name = 'hw1_19_hw1_props_05' }, - ['-246223218'] = { Name = 'hw1_19_ovlya' }, - ['-1014820113'] = { Name = 'hw1_19_ovlyb' }, - ['-717441438'] = { Name = 'hw1_19_ovlyc' }, - ['663509764'] = { Name = 'hw1_19_ovlyd' }, - ['-2147238106'] = { Name = 'hw1_19_parka' }, - ['-1446636886'] = { Name = 'hw1_19_parkb' }, - ['-1673955439'] = { Name = 'hw1_19_parkc' }, - ['1160235375'] = { Name = 'hw1_19_parkd' }, - ['2130240571'] = { Name = 'hw1_19_pg_rails' }, - ['1389328087'] = { Name = 'hw1_19_props_a' }, - ['-808277333'] = { Name = 'hw1_19_props_a01' }, - ['161390146'] = { Name = 'hw1_19_props_a02' }, - ['744481732'] = { Name = 'hw1_19_props_a03' }, - ['390645435'] = { Name = 'hw1_19_props_combo04_slod' }, - ['-1521496284'] = { Name = 'hw1_19_props_combo06_slod' }, - ['416396923'] = { Name = 'hw1_19_propsb' }, - ['-1365421293'] = { Name = 'hw1_19_rails_01' }, - ['884905535'] = { Name = 'hw1_22_albits1_a' }, - ['-912420627'] = { Name = 'hw1_22_albits1' }, - ['-367178887'] = { Name = 'hw1_22_albits2_a' }, - ['-696210765'] = { Name = 'hw1_22_albits2' }, - ['1786620370'] = { Name = 'hw1_22_albits3_a' }, - ['-1899236754'] = { Name = 'hw1_22_albits3_b' }, - ['1973966550'] = { Name = 'hw1_22_bb_01' }, - ['1919441208'] = { Name = 'hw1_22_brwstrk' }, - ['-956504431'] = { Name = 'hw1_22_build_as_d' }, - ['-581934661'] = { Name = 'hw1_22_build1_ovly' }, - ['-1943774460'] = { Name = 'hw1_22_build1_ovly2' }, - ['-285644541'] = { Name = 'hw1_22_build1_ovly2b' }, - ['-844866065'] = { Name = 'hw1_22_build1_ovlyb' }, - ['-817420181'] = { Name = 'hw1_22_build1' }, - ['-555661409'] = { Name = 'hw1_22_build2' }, - ['1553515280'] = { Name = 'hw1_22_build3' }, - ['173612690'] = { Name = 'hw1_22_build4' }, - ['856943830'] = { Name = 'hw1_22_fnctomesh' }, - ['1884612623'] = { Name = 'hw1_22_fnctomeshb' }, - ['-651167063'] = { Name = 'hw1_22_glass003' }, - ['1553211745'] = { Name = 'hw1_22_grille' }, - ['-1330717078'] = { Name = 'hw1_22_ground_noshadow_fix' }, - ['-1798028502'] = { Name = 'hw1_22_ground01_fix' }, - ['-1443408053'] = { Name = 'hw1_22_ladder' }, - ['-573006256'] = { Name = 'hw1_22_ldr_22_001' }, - ['-341820961'] = { Name = 'hw1_22_ldr_22_002' }, - ['-1968474129'] = { Name = 'hw1_22_ldr_22_003' }, - ['1483314028'] = { Name = 'hw1_22_ldr_22_004' }, - ['-568971557'] = { Name = 'hw1_22_malltest' }, - ['1849203342'] = { Name = 'hw1_22_nightobj' }, - ['866095786'] = { Name = 'hw1_22_nobj_lod' }, - ['67022107'] = { Name = 'hw1_22_nobj' }, - ['-1466448686'] = { Name = 'hw1_22_nobj01_lod' }, - ['1302817738'] = { Name = 'hw1_22_nobj01' }, - ['1615734294'] = { Name = 'hw1_22_nobj02_lod' }, - ['1063636807'] = { Name = 'hw1_22_nobj02' }, - ['-261776608'] = { Name = 'hw1_22_nobj03_lod' }, - ['-1139029827'] = { Name = 'hw1_22_nobj03' }, - ['-36233831'] = { Name = 'hw1_22_probe' }, - ['1843241341'] = { Name = 'hw1_22_rails2' }, - ['-1235289632'] = { Name = 'hw1_22_shd_pxy' }, - ['-1983661553'] = { Name = 'hw1_22_shipint' }, - ['-804923591'] = { Name = 'hw1_22_stairs' }, - ['1316169093'] = { Name = 'hw1_22_table' }, - ['-1403534153'] = { Name = 'hw1_23_build1' }, - ['-682538333'] = { Name = 'hw1_23_build2_door' }, - ['1441503204'] = { Name = 'hw1_23_build2' }, - ['1742519238'] = { Name = 'hw1_23_build3' }, - ['-1319750112'] = { Name = 'hw1_23_cablemesh8660_thvy' }, - ['2087359751'] = { Name = 'hw1_23_dec00_b' }, - ['1465221388'] = { Name = 'hw1_23_dec00' }, - ['-675982458'] = { Name = 'hw1_23_dec01_b' }, - ['1767843103'] = { Name = 'hw1_23_dec01' }, - ['1412299453'] = { Name = 'hw1_23_dec02' }, - ['635182618'] = { Name = 'hw1_23_dec03' }, - ['-1564534814'] = { Name = 'hw1_23_dec04' }, - ['-1408030070'] = { Name = 'hw1_23_dec05' }, - ['-1520323500'] = { Name = 'hw1_23_decal_3_b' }, - ['1985587381'] = { Name = 'hw1_23_decal_3' }, - ['-2006662511'] = { Name = 'hw1_23_detaillost_b' }, - ['748985055'] = { Name = 'hw1_23_detaillost_bb' }, - ['-1138769237'] = { Name = 'hw1_23_detaillost' }, - ['1299105380'] = { Name = 'hw1_23_detaillostb' }, - ['207589645'] = { Name = 'hw1_23_emissive2a' }, - ['1586794755'] = { Name = 'hw1_23_ground3a' }, - ['392421148'] = { Name = 'hw1_23_lad004' }, - ['619543087'] = { Name = 'hw1_23_lad005' }, - ['1608027841'] = { Name = 'hw1_23_lad02' }, - ['-1976179845'] = { Name = 'hw1_23_lad03' }, - ['-2053630052'] = { Name = 'hw1_23_met' }, - ['-314834734'] = { Name = 'hw1_23_met01' }, - ['-1136812330'] = { Name = 'hw1_23_met02' }, - ['897522672'] = { Name = 'hw1_23_motelneon' }, - ['-1747459794'] = { Name = 'hw1_23_neon' }, - ['-29538769'] = { Name = 'hw1_23_park_sign' }, - ['-1145697693'] = { Name = 'hw1_23_r' }, - ['-1522526848'] = { Name = 'hw1_23_railing3_lod' }, - ['-304291422'] = { Name = 'hw1_23_railing4_lod' }, - ['-385861177'] = { Name = 'hw1_23_railings_lod' }, - ['2084438922'] = { Name = 'hw1_23_railings2_lod' }, - ['418203362'] = { Name = 'hw1_23_rails_00' }, - ['-744965066'] = { Name = 'hw1_23_rails_01' }, - ['-984408149'] = { Name = 'hw1_23_rails_02' }, - ['1074730277'] = { Name = 'hw1_23_rails_03' }, - ['1841623184'] = { Name = 'hw1_23_rails_04' }, - ['-1755488364'] = { Name = 'hw1_23_waterpools' }, - ['-1892661573'] = { Name = 'hw1_23_weed_02' }, - ['-1474849053'] = { Name = 'hw1_23_weed_02b' }, - ['2120787244'] = { Name = 'hw1_23_weed_03' }, - ['-402884546'] = { Name = 'hw1_23_weed_04' }, - ['-737338185'] = { Name = 'hw1_24_billboard_custom' }, - ['1737199988'] = { Name = 'hw1_24_bld_02_glss' }, - ['819562390'] = { Name = 'hw1_24_bld_02_signs' }, - ['-1016795681'] = { Name = 'hw1_24_brk_wl' }, - ['-677960353'] = { Name = 'hw1_24_brk_wl01' }, - ['1498425559'] = { Name = 'hw1_24_brk_wl02' }, - ['1259900008'] = { Name = 'hw1_24_brk_wl03' }, - ['-227751699'] = { Name = 'hw1_24_build2' }, - ['-1273421122'] = { Name = 'hw1_24_details' }, - ['425262297'] = { Name = 'hw1_24_fleeca_sign' }, - ['736433633'] = { Name = 'hw1_24_ground1' }, - ['-957303968'] = { Name = 'hw1_24_ladder' }, - ['1865314756'] = { Name = 'hw1_24_ladder004' }, - ['-2090965564'] = { Name = 'hw1_24_ladder01' }, - ['-759334046'] = { Name = 'hw1_24_ladder02_lod' }, - ['-1860370111'] = { Name = 'hw1_24_ladder02' }, - ['-689795897'] = { Name = 'hw1_24_ladder03' }, - ['-1610057837'] = { Name = 'hw1_24_ldr' }, - ['-1628210489'] = { Name = 'hw1_24_ov00' }, - ['-1866736040'] = { Name = 'hw1_24_ov01' }, - ['-1290853618'] = { Name = 'hw1_24_ov02' }, - ['-1581088651'] = { Name = 'hw1_24_ov03' }, - ['2085812223'] = { Name = 'hw1_24_rls' }, - ['-1966569130'] = { Name = 'hw1_24_rrs' }, - ['876150294'] = { Name = 'hw1_24_wd_rls' }, - ['1244980819'] = { Name = 'hw1_24_wd_rls01' }, - ['-1826588631'] = { Name = 'hw1_24_wd_rls02' }, - ['-2048598606'] = { Name = 'hw1_24_wd_rls03' }, - ['-2048374413'] = { Name = 'hw1_24_weed_01' }, - ['-487980159'] = { Name = 'hw1_24_weed_02' }, - ['763833578'] = { Name = 'hw1_24_wind_det' }, - ['1335571070'] = { Name = 'hw1_24_wind_det01' }, - ['1179525092'] = { Name = 'hw1_24_wind_det02' }, - ['-85128929'] = { Name = 'hw1_24_wind_det03' }, - ['-79675471'] = { Name = 'hw1_25_build_01' }, - ['292604525'] = { Name = 'hw1_25_dec_00' }, - ['1500699248'] = { Name = 'hw1_25_dec_01' }, - ['-266139694'] = { Name = 'hw1_25_dec_02' }, - ['903877451'] = { Name = 'hw1_25_dec_03' }, - ['1218853079'] = { Name = 'hw1_25_dec_04' }, - ['375815720'] = { Name = 'hw1_25_ground' }, - ['845842719'] = { Name = 'hw1_25_rails_01_lod' }, - ['1912749078'] = { Name = 'hw1_25_rails_01' }, - ['1633393353'] = { Name = 'hw1_25_rails_02' }, - ['-1987586948'] = { Name = 'hw1_25_railsb' }, - ['-488461782'] = { Name = 'hw1_25_railsc_' }, - ['-1962850072'] = { Name = 'hw1_26_blc_rails' }, - ['-1271804317'] = { Name = 'hw1_26_build01' }, - ['800059023'] = { Name = 'hw1_26_decal_o1_1' }, - ['-53019479'] = { Name = 'hw1_26_decal_o1_1b' }, - ['127537711'] = { Name = 'hw1_26_decal_o1_1c' }, - ['-560971290'] = { Name = 'hw1_26_decal_park' }, - ['-1196720454'] = { Name = 'hw1_26_details' }, - ['388533861'] = { Name = 'hw1_26_fake_int_cp' }, - ['-149363812'] = { Name = 'hw1_26_ground01' }, - ['1088943474'] = { Name = 'hw1_26_h_rails' }, - ['-1824283913'] = { Name = 'hw1_26_park' }, - ['443046294'] = { Name = 'hw1_26_pool' }, - ['-715242921'] = { Name = 'hw1_26_rails' }, - ['265161430'] = { Name = 'hw1_26_rails01' }, - ['-2050689390'] = { Name = 'hw1_26_rails02' }, - ['-584641267'] = { Name = 'hw1_26_redrails' }, - ['-1754064008'] = { Name = 'hw1_26_shd_pxy' }, - ['1499029664'] = { Name = 'hw1_26_shd_pxy001' }, - ['1872989492'] = { Name = 'hw1_26_shd_pxy002' }, - ['2117937767'] = { Name = 'hw1_26_shd_pxy003' }, - ['991374239'] = { Name = 'hw1_26_strs' }, - ['-203705482'] = { Name = 'hw1_26_strs01' }, - ['-435873847'] = { Name = 'hw1_26_strs02' }, - ['909788018'] = { Name = 'hw1_26_water' }, - ['-1448244611'] = { Name = 'hw1_27_det_a_' }, - ['-1587171634'] = { Name = 'hw1_27_det_a_01' }, - ['1957320024'] = { Name = 'hw1_27_det_a_02' }, - ['-1107597319'] = { Name = 'hw1_27_det_a_03' }, - ['-1891300723'] = { Name = 'hw1_27_det_a_04' }, - ['-521425507'] = { Name = 'hw1_27_det_a_05' }, - ['841699355'] = { Name = 'hw1_27_det_a_06' }, - ['-187880940'] = { Name = 'hw1_27_frame' }, - ['-2092150479'] = { Name = 'hw1_27_frame2' }, - ['-1984498666'] = { Name = 'hw1_27_grill_00' }, - ['-1698589133'] = { Name = 'hw1_27_grill_01' }, - ['-279147170'] = { Name = 'hw1_27_ground_noshadow' }, - ['-1170335320'] = { Name = 'hw1_27_ground' }, - ['-1178143741'] = { Name = 'hw1_27_metbr_' }, - ['-194870580'] = { Name = 'hw1_27_metbr_01' }, - ['1657560990'] = { Name = 'hw1_27_metbr_02' }, - ['-1057973267'] = { Name = 'hw1_27_metbr_03' }, - ['-853887935'] = { Name = 'hw1_27_metbr_04' }, - ['457953442'] = { Name = 'hw1_27_metbr_05' }, - ['696315148'] = { Name = 'hw1_27_metbr_06' }, - ['-1481021065'] = { Name = 'hw1_27_metbr_07' }, - ['2013694482'] = { Name = 'hw1_27_metbr_08' }, - ['-2060901289'] = { Name = 'hw1_27_metbr_09' }, - ['-1337463168'] = { Name = 'hw1_27_metbr_10' }, - ['-1050024368'] = { Name = 'hw1_27_ndec' }, - ['1001720630'] = { Name = 'hw1_27_ndec2' }, - ['-105347266'] = { Name = 'hw1_27_ndecb' }, - ['-576700555'] = { Name = 'hw1_27_nw_ld' }, - ['-861224036'] = { Name = 'hw1_27_nw_ld001' }, - ['-562665677'] = { Name = 'hw1_27_nw_ld002' }, - ['1879542359'] = { Name = 'hw1_27_nw_ld003' }, - ['2145004028'] = { Name = 'hw1_27_nw_ld004' }, - ['1999607971'] = { Name = 'hw1_27_nw_ld005' }, - ['-1996211124'] = { Name = 'hw1_27_nw_ld006' }, - ['1019388870'] = { Name = 'hw1_27_nw_ld007' }, - ['-1469580525'] = { Name = 'hw1_27_nw_ld008' }, - ['1618209576'] = { Name = 'hw1_27_nw_ld009' }, - ['-1743496832'] = { Name = 'hw1_27_nw_ld010' }, - ['-1623562292'] = { Name = 'hw1_27_nw_ld011' }, - ['-733109644'] = { Name = 'hw1_27_r_d00' }, - ['-964688167'] = { Name = 'hw1_27_r_d01' }, - ['-177420298'] = { Name = 'hw1_27_r1_b' }, - ['1204218595'] = { Name = 'hw1_27_r1_b01' }, - ['-310561199'] = { Name = 'hw1_27_r1_b02' }, - ['-1970737054'] = { Name = 'hw1_27_r1_b03' }, - ['-2125537810'] = { Name = 'hw1_27_r1_b04' }, - ['637151046'] = { Name = 'hw1_27_r1_b05' }, - ['341083131'] = { Name = 'hw1_27_r1_b06' }, - ['-1718841743'] = { Name = 'hw1_27_r1_b07' }, - ['2070676882'] = { Name = 'hw1_27_rails_hd00' }, - ['1981283046'] = { Name = 'hw1_27_rails_hd01' }, - ['1145018162'] = { Name = 'hw1_27_rails_hd02' }, - ['522538238'] = { Name = 'hw1_27_rails_hd03' }, - ['145956890'] = { Name = 'hw1_27_rails_hd04' }, - ['-73890331'] = { Name = 'hw1_27_rails_hd05' }, - ['-180258509'] = { Name = 'hw1_27_rails_hd06' }, - ['-1035922679'] = { Name = 'hw1_27_rails_nw00' }, - ['-1657124612'] = { Name = 'hw1_27_rails_nw01' }, - ['-412066457'] = { Name = 'hw1_27_rails_nw02' }, - ['-777702959'] = { Name = 'hw1_27_rails_nw03' }, - ['89233709'] = { Name = 'hw1_27_rails_nw04' }, - ['-169608626'] = { Name = 'hw1_27_rails_nw05' }, - ['533974577'] = { Name = 'hw1_27_rails_nw06' }, - ['178168775'] = { Name = 'hw1_27_rails_nw07' }, - ['1051266011'] = { Name = 'hw1_27_rails_nw08' }, - ['811298624'] = { Name = 'hw1_27_rails_nw09' }, - ['-1874907110'] = { Name = 'hw1_27_rails_nw10' }, - ['282767699'] = { Name = 'hw1_27_rails_nw11' }, - ['44504300'] = { Name = 'hw1_27_rails_nw12' }, - ['-313529798'] = { Name = 'hw1_27_rails_nw13' }, - ['-544256327'] = { Name = 'hw1_27_rails_nw14' }, - ['1606536992'] = { Name = 'hw1_27_rails_nw15' }, - ['1241818022'] = { Name = 'hw1_27_rails_nw16' }, - ['876836900'] = { Name = 'hw1_27_rails_nw17' }, - ['646503599'] = { Name = 'hw1_27_rails_nw18' }, - ['-1500816202'] = { Name = 'hw1_27_rails_nw19' }, - ['-159711820'] = { Name = 'hw1_27_rails_nw20' }, - ['23860114'] = { Name = 'hw1_27_rails_nw21' }, - ['296924191'] = { Name = 'hw1_27_rails_nw22' }, - ['-587995449'] = { Name = 'hw1_27_rc00' }, - ['-808137591'] = { Name = 'hw1_27_rc01' }, - ['19312428'] = { Name = 'hw1_27_rc02' }, - ['71742816'] = { Name = 'hw1_27_rc03' }, - ['-166422276'] = { Name = 'hw1_27_rc04' }, - ['1079735446'] = { Name = 'hw1_27_rw_00' }, - ['-157064925'] = { Name = 'hw1_27_rw_01' }, - ['618184081'] = { Name = 'hw1_27_rw_02' }, - ['1274973148'] = { Name = 'hw1_27_rw_03' }, - ['-1671366547'] = { Name = 'hw1_27_sdw_px' }, - ['-990121708'] = { Name = 'hw1_27_temp_ldg' }, - ['3786877'] = { Name = 'hw1_27_temp_ldg01' }, - ['-1682658453'] = { Name = 'hw1_27_tracks' }, - ['855945307'] = { Name = 'hw1_27_wood_gr' }, - ['-575879429'] = { Name = 'hw1_28_bes_lights' }, - ['-1901484165'] = { Name = 'hw1_28_dec_' }, - ['323096908'] = { Name = 'hw1_28_dec_01' }, - ['822103240'] = { Name = 'hw1_28_dec_02' }, - ['-556521363'] = { Name = 'hw1_28_dec_03' }, - ['-795964446'] = { Name = 'hw1_28_dec_04' }, - ['-64429290'] = { Name = 'hw1_28_dec_05' }, - ['-1922600182'] = { Name = 'hw1_28_decal2' }, - ['2051493066'] = { Name = 'hw1_28_decal3' }, - ['1023461500'] = { Name = 'hw1_28_fences' }, - ['-1669117240'] = { Name = 'hw1_28_fences03' }, - ['-1907511715'] = { Name = 'hw1_28_fences04' }, - ['761325925'] = { Name = 'hw1_28_fences13' }, - ['-1979341197'] = { Name = 'hw1_28_fld_lts00' }, - ['-1685010039'] = { Name = 'hw1_28_fld_lts01' }, - ['-2104519053'] = { Name = 'hw1_28_fld_lts010' }, - ['1148721725'] = { Name = 'hw1_28_fld_lts011' }, - ['-1377407436'] = { Name = 'hw1_28_fld_lts02' }, - ['-1086549792'] = { Name = 'hw1_28_fld_lts03' }, - ['-779405955'] = { Name = 'hw1_28_fld_lts04' }, - ['177153920'] = { Name = 'hw1_28_fld_lts05' }, - ['-187827198'] = { Name = 'hw1_28_fld_lts06' }, - ['774696635'] = { Name = 'hw1_28_fld_lts07' }, - ['-127499473'] = { Name = 'hw1_28_fld_lts08' }, - ['1368831374'] = { Name = 'hw1_28_fld_lts09' }, - ['798960028'] = { Name = 'hw1_28_ground_ft' }, - ['1220126092'] = { Name = 'hw1_28_handrailb02' }, - ['1009331247'] = { Name = 'hw1_28_handrailb02b' }, - ['-837719816'] = { Name = 'hw1_28_handrailb1' }, - ['-1207417092'] = { Name = 'hw1_28_handrails' }, - ['1658252667'] = { Name = 'hw1_28_handrails01' }, - ['1351370982'] = { Name = 'hw1_28_handrails02' }, - ['1044980832'] = { Name = 'hw1_28_handrails03' }, - ['765952797'] = { Name = 'hw1_28_handrails04' }, - ['-1688314231'] = { Name = 'hw1_28_handrails05' }, - ['-486870137'] = { Name = 'hw1_28_ladders' }, - ['1220218226'] = { Name = 'hw1_28_lightproxy' }, - ['-403891779'] = { Name = 'hw1_28_square_em' }, - ['1556111782'] = { Name = 'hw1_28_tower' }, - ['-1561022332'] = { Name = 'hw1_29_detail' }, - ['-154279012'] = { Name = 'hw1_29_gnd_01a' }, - ['-384317392'] = { Name = 'hw1_29_gnd_01b' }, - ['-672913967'] = { Name = 'hw1_29_gnd_01c' }, - ['1935257030'] = { Name = 'hw1_blimp_ce_lod' }, - ['243963617'] = { Name = 'hw1_blimp_ce' }, - ['225840079'] = { Name = 'hw1_blimp_ce2_lod' }, - ['464971335'] = { Name = 'hw1_blimp_ce2' }, - ['-162266399'] = { Name = 'hw1_blimp_cpr_null' }, - ['-288462888'] = { Name = 'hw1_blimp_cpr_null2' }, - ['-476501959'] = { Name = 'hw1_blimp_cpr003' }, - ['-1910100862'] = { Name = 'hw1_emissive_emissive' }, - ['-192736993'] = { Name = 'hw1_emissive_emissive01' }, - ['1518883277'] = { Name = 'hw1_emissive_hw1_01' }, - ['-1622649339'] = { Name = 'hw1_emissive_hw1_02_b_lod' }, - ['615560308'] = { Name = 'hw1_emissive_hw1_02_b' }, - ['153988873'] = { Name = 'hw1_emissive_hw1_02' }, - ['1355078585'] = { Name = 'hw1_emissive_hw1_02b' }, - ['1559950373'] = { Name = 'hw1_emissive_hw1_02c' }, - ['-143979644'] = { Name = 'hw1_emissive_hw1_03' }, - ['495802312'] = { Name = 'hw1_emissive_hw1_04' }, - ['-933389738'] = { Name = 'hw1_emissive_hw1_06_ema' }, - ['508708418'] = { Name = 'hw1_emissive_hw1_06_emb' }, - ['1540603861'] = { Name = 'hw1_emissive_hw1_06_emc_lod' }, - ['214737719'] = { Name = 'hw1_emissive_hw1_06_emc' }, - ['2131672552'] = { Name = 'hw1_emissive_hw1_07a' }, - ['1211125804'] = { Name = 'hw1_emissive_hw1_07b' }, - ['1384694206'] = { Name = 'hw1_emissive_hw1_08' }, - ['-2012009254'] = { Name = 'hw1_emissive_hw1_09' }, - ['254851575'] = { Name = 'hw1_emissive_hw1_11' }, - ['486725011'] = { Name = 'hw1_emissive_hw1_12' }, - ['1453465971'] = { Name = 'hw1_emissive_hw1_14_em_nw_slod' }, - ['-699792743'] = { Name = 'hw1_emissive_hw1_14_em_nw' }, - ['-1707759983'] = { Name = 'hw1_emissive_hw1_14_em_nwb' }, - ['8199304'] = { Name = 'hw1_emissive_hw1_14' }, - ['245283019'] = { Name = 'hw1_emissive_hw1_15' }, - ['-588095165'] = { Name = 'hw1_emissive_hw1_16_b' }, - ['1655595241'] = { Name = 'hw1_emissive_hw1_16' }, - ['972099439'] = { Name = 'hw1_emissive_hw1_17' }, - ['-1975041086'] = { Name = 'hw1_emissive_hw1_17b' }, - ['1211280370'] = { Name = 'hw1_emissive_hw1_18' }, - ['-687703252'] = { Name = 'hw1_emissive_hw1_22_em00' }, - ['-1978932908'] = { Name = 'hw1_emissive_hw1_22_em01' }, - ['1547830721'] = { Name = 'hw1_emissive_hw1_22_em02' }, - ['1864838027'] = { Name = 'hw1_emissive_hw1_22_em03' }, - ['1064848430'] = { Name = 'hw1_emissive_hw1_22_em04' }, - ['30415794'] = { Name = 'hw1_emissive_hw1_23' }, - ['328056621'] = { Name = 'hw1_emissive_hw1_24' }, - ['639558735'] = { Name = 'hw1_emissive_hw1_25' }, - ['-43279931'] = { Name = 'hw1_emissive_hw1_26' }, - ['300368572'] = { Name = 'hw1_emissive_hw1_28' }, - ['150129262'] = { Name = 'hw1_emissive_hw1b_01' }, - ['1404924342'] = { Name = 'hw1_emissive_hw1c1_lod' }, - ['-1448955753'] = { Name = 'hw1_emissive_hw8_allday' }, - ['389674101'] = { Name = 'hw1_emissive_melt_pstrs_lod' }, - ['-917318405'] = { Name = 'hw1_emissive_melt_pstrs' }, - ['-475578788'] = { Name = 'hw1_emissive_nightphrm_b' }, - ['-1784220855'] = { Name = 'hw1_emissive_nightphrm' }, - ['-315608747'] = { Name = 'hw1_emissive_nomelt_pstrs_lod' }, - ['2073600491'] = { Name = 'hw1_emissive_nomelt_pstrs' }, - ['627456733'] = { Name = 'hw1_emissive_vpallday' }, - ['-586951134'] = { Name = 'hw1_emissive_vsign_1_07b' }, - ['1842012554'] = { Name = 'hw1_lod_emi_6_19_slod3' }, - ['-30992305'] = { Name = 'hw1_lod_emi_6_21_slod3' }, - ['407549316'] = { Name = 'hw1_lod_emissive' }, - ['-858055906'] = { Name = 'hw1_lod_slod3_emi_proxy_01' }, - ['-753195106'] = { Name = 'hw1_lod_slod3_emi_proxy_02' }, - ['398589620'] = { Name = 'hw1_lod_slod4' }, - ['2061517075'] = { Name = 'hw1_props_cablemesh100058_thvy' }, - ['20587761'] = { Name = 'hw1_props_cablemesh100059_thvy' }, - ['-191650557'] = { Name = 'hw1_props_cablemesh100204_thvy' }, - ['2047730042'] = { Name = 'hw1_props_cablemesh100205_thvy' }, - ['-2128885817'] = { Name = 'hw1_props_cablemesh100206_thvy' }, - ['-746018962'] = { Name = 'hw1_props_cablemesh100207_thvy' }, - ['1997548554'] = { Name = 'hw1_props_cablemesh100208_thvy' }, - ['-1141379176'] = { Name = 'hw1_props_cablemesh100209_thvy' }, - ['946014230'] = { Name = 'hw1_props_cablemesh100210_thvy' }, - ['-1479566691'] = { Name = 'hw1_props_cablemesh100211_thvy' }, - ['615306342'] = { Name = 'hw1_props_cablemesh100212_thvy' }, - ['-1037270777'] = { Name = 'hw1_props_cablemesh100213_thvy' }, - ['-1730321907'] = { Name = 'hw1_props_cablemesh587748_thvy' }, - ['-1555132543'] = { Name = 'hw1_props_cablemesh587749_thvy' }, - ['-1578826293'] = { Name = 'hw1_props_cablemesh587750_thvy' }, - ['-2006426402'] = { Name = 'hw1_props_cablemesh587751_thvy' }, - ['-1287710027'] = { Name = 'hw1_rd_01_00' }, - ['-474612822'] = { Name = 'hw1_rd_01_05' }, - ['-806628330'] = { Name = 'hw1_rd_01_06' }, - ['1274465310'] = { Name = 'hw1_rd_01_07' }, - ['-88823397'] = { Name = 'hw1_rd_01_08' }, - ['-388004367'] = { Name = 'hw1_rd_01_09' }, - ['282580165'] = { Name = 'hw1_rd_01_10' }, - ['-1854777860'] = { Name = 'hw1_rd_01_11' }, - ['1158876592'] = { Name = 'hw1_rd_01_12_d2' }, - ['-1625427629'] = { Name = 'hw1_rd_01_12' }, - ['2110041761'] = { Name = 'hw1_rd_01_13' }, - ['1236190834'] = { Name = 'hw1_rd_01_14' }, - ['-1667220845'] = { Name = 'hw1_rd_01_15_d' }, - ['-912112037'] = { Name = 'hw1_rd_01_15' }, - ['-1255826078'] = { Name = 'hw1_rd_01_17' }, - ['-1030670279'] = { Name = 'hw1_rd_01_18' }, - ['613088267'] = { Name = 'hw1_rd_01_19' }, - ['1699019838'] = { Name = 'hw1_rd_01_60' }, - ['745257493'] = { Name = 'hw1_rd_01_ovly_00' }, - ['-286179667'] = { Name = 'hw1_rd_01_ovly_01' }, - ['-768342733'] = { Name = 'hw1_rd_01_ovly_02' }, - ['178255370'] = { Name = 'hw1_rd_01_ovly_03' }, - ['-44180602'] = { Name = 'hw1_rd_01_ovly_04' }, - ['696988640'] = { Name = 'hw1_rd_01_ovly_05' }, - ['458332013'] = { Name = 'hw1_rd_01_ovly_06' }, - ['1406929025'] = { Name = 'hw1_rd_01_ovly_07' }, - ['1168469012'] = { Name = 'hw1_rd_01_ovly_08' }, - ['2118671705'] = { Name = 'hw1_rd_01_ovly_09' }, - ['395284293'] = { Name = 'hw1_rd_01_ovly_10' }, - ['1909474245'] = { Name = 'hw1_rd_01_ovly_11' }, - ['-2078971825'] = { Name = 'hw1_rd_01_ovly_12' }, - ['1312783524'] = { Name = 'hw1_rd_01_ovly_13' }, - ['1619501364'] = { Name = 'hw1_rd_01_ovly_14' }, - ['-1448987872'] = { Name = 'hw1_rd_01_ovly_15' }, - ['-329402227'] = { Name = 'hw1_rd_01_roaddecals' }, - ['-692403770'] = { Name = 'hw1_rd_02_00_ovly' }, - ['924244132'] = { Name = 'hw1_rd_02_001' }, - ['-942716203'] = { Name = 'hw1_rd_02_01_ovly' }, - ['1491736704'] = { Name = 'hw1_rd_02_01' }, - ['-68231404'] = { Name = 'hw1_rd_02_02_ovly' }, - ['1881262774'] = { Name = 'hw1_rd_02_03_ovly' }, - ['-661871'] = { Name = 'hw1_rd_02_03' }, - ['-1507033435'] = { Name = 'hw1_rd_02_04_ovly' }, - ['-106636817'] = { Name = 'hw1_rd_02_04' }, - ['-437189067'] = { Name = 'hw1_rd_02_05_ovly' }, - ['-1534480454'] = { Name = 'hw1_rd_02_05' }, - ['83467017'] = { Name = 'hw1_rd_02_06_ovly' }, - ['-1916829146'] = { Name = 'hw1_rd_02_06' }, - ['-335895949'] = { Name = 'hw1_rd_02_07_ovly' }, - ['842910496'] = { Name = 'hw1_rd_02_07' }, - ['-1468452543'] = { Name = 'hw1_rd_02_08_ovly' }, - ['611856277'] = { Name = 'hw1_rd_02_08' }, - ['-1206872345'] = { Name = 'hw1_rd_02_09_ovly' }, - ['-356303828'] = { Name = 'hw1_rd_02_09' }, - ['-652756247'] = { Name = 'hw1_rd_02_10_ovly' }, - ['187710131'] = { Name = 'hw1_rd_02_101x_s' }, - ['1786522679'] = { Name = 'hw1_rd_02_101x' }, - ['1122031047'] = { Name = 'hw1_rd_02_102_shd' }, - ['-1980335112'] = { Name = 'hw1_rd_02_102' }, - ['463609677'] = { Name = 'hw1_rd_02_103' }, - ['743063709'] = { Name = 'hw1_rd_02_104' }, - ['1257564781'] = { Name = 'hw1_rd_02_11_ovly' }, - ['2011485517'] = { Name = 'hw1_rd_02_11' }, - ['703620047'] = { Name = 'hw1_rd_02_12_ovly' }, - ['-537100249'] = { Name = 'hw1_rd_02_13_ovly' }, - ['-1373819545'] = { Name = 'hw1_rd_02_14_ovly' }, - ['-1757080535'] = { Name = 'hw1_rd_02_14' }, - ['47458235'] = { Name = 'hw1_rd_02_15_ovly' }, - ['1770174629'] = { Name = 'hw1_rd_02_15' }, - ['818603439'] = { Name = 'hw1_rd_02_16_ovly' }, - ['-1161176270'] = { Name = 'hw1_rd_02_16' }, - ['-2039184003'] = { Name = 'hw1_rd_02_17_ovly' }, - ['-19963076'] = { Name = 'hw1_rd_02_17' }, - ['-1006013681'] = { Name = 'hw1_rd_02_18_ovly' }, - ['-787445825'] = { Name = 'hw1_rd_02_18' }, - ['-119426425'] = { Name = 'hw1_rd_02_19_ovly' }, - ['-1573246445'] = { Name = 'hw1_rd_02_19' }, - ['-1771508612'] = { Name = 'hw1_rd_02_20_ovly' }, - ['-21573673'] = { Name = 'hw1_rd_02_20' }, - ['939729334'] = { Name = 'hw1_rd_02_21_ovly' }, - ['133554773'] = { Name = 'hw1_rd_02_21' }, - ['1577375067'] = { Name = 'hw1_rd_02_22_ovly' }, - ['-642054688'] = { Name = 'hw1_rd_02_22' }, - ['711464671'] = { Name = 'hw1_rd_02_23_ovly' }, - ['-384654193'] = { Name = 'hw1_rd_02_23' }, - ['234764160'] = { Name = 'hw1_rd_02_24_ovly' }, - ['-755009427'] = { Name = 'hw1_rd_02_24' }, - ['-1102202286'] = { Name = 'hw1_rd_02_25_ovly' }, - ['-1534092402'] = { Name = 'hw1_rd_02_25' }, - ['-1455513842'] = { Name = 'hw1_rd_02_decaljl' }, - ['1618403309'] = { Name = 'hw1_rd_03_01' }, - ['743733153'] = { Name = 'hw1_rd_03_02' }, - ['1034656343'] = { Name = 'hw1_rd_03_03' }, - ['-136212804'] = { Name = 'hw1_rd_03_04' }, - ['421253424'] = { Name = 'hw1_rd_03_05' }, - ['-180713102'] = { Name = 'hw1_rd_03_06' }, - ['109587469'] = { Name = 'hw1_rd_03_07' }, - ['-791822183'] = { Name = 'hw1_rd_03_08' }, - ['-503160062'] = { Name = 'hw1_rd_03_09' }, - ['-304055934'] = { Name = 'hw1_rd_03_10' }, - ['-1154870250'] = { Name = 'hw1_rd_03_11' }, - ['-897862983'] = { Name = 'hw1_rd_03_12' }, - ['-1813707501'] = { Name = 'hw1_rd_03_ovly_0' }, - ['-699601122'] = { Name = 'hw1_rd_03_ovly_01' }, - ['1379460856'] = { Name = 'hw1_rd_03_ovly_02' }, - ['1273485910'] = { Name = 'hw1_rd_03_ovly_03' }, - ['2094382129'] = { Name = 'hw1_rd_03_ovly_04' }, - ['1735102813'] = { Name = 'hw1_rd_03_ovly_05' }, - ['-417525566'] = { Name = 'hw1_rd_03_ovly_06' }, - ['416281639'] = { Name = 'hw1_rd_03_ovly_07' }, - ['917516263'] = { Name = 'hw1_rd_03_ovly_08' }, - ['543294283'] = { Name = 'hw1_rd_03_ovly_09' }, - ['-914991959'] = { Name = 'hw1_rd_03_ovly_10' }, - ['-1222070258'] = { Name = 'hw1_rd_03_ovly_11' }, - ['1424944028'] = { Name = 'hw1_rd_03_ovly_12' }, - ['-1361157387'] = { Name = 'hw1_rd_04_01_ovly' }, - ['1699730233'] = { Name = 'hw1_rd_04_01' }, - ['-1845893502'] = { Name = 'hw1_rd_04_02_ovly' }, - ['1496365819'] = { Name = 'hw1_rd_04_02' }, - ['-1170279'] = { Name = 'hw1_rd_04_03_ovly' }, - ['1064667013'] = { Name = 'hw1_rd_04_03' }, - ['-1015021653'] = { Name = 'hw1_rd_04_04_ovly' }, - ['-1399004718'] = { Name = 'hw1_rd_04_04' }, - ['-1571107506'] = { Name = 'hw1_rd_04_05' }, - ['-927991389'] = { Name = 'hw1_rd_04_06_ovly' }, - ['-1846137723'] = { Name = 'hw1_rd_04_06' }, - ['1640292143'] = { Name = 'hw1_rd_04_07_ovly' }, - ['2143782952'] = { Name = 'hw1_rd_04_07' }, - ['1067636510'] = { Name = 'hw1_rd_04_08_ovly' }, - ['-254154161'] = { Name = 'hw1_rd_04_08' }, - ['914118583'] = { Name = 'hw1_rd_04_09_ovly' }, - ['-683100371'] = { Name = 'hw1_rd_04_09' }, - ['-1911772706'] = { Name = 'hw1_rd_04_10_ovly' }, - ['-1841811863'] = { Name = 'hw1_rd_04_10' }, - ['-70940497'] = { Name = 'hw1_rd_04_11_ovly' }, - ['-2072636699'] = { Name = 'hw1_rd_04_11' }, - ['1867398351'] = { Name = 'hw1_rd_04_12_ovly' }, - ['-207457984'] = { Name = 'hw1_rd_04_12' }, - ['-1089710286'] = { Name = 'hw1_rd_04_13_ovly' }, - ['-443820781'] = { Name = 'hw1_rd_04_13' }, - ['-1827370466'] = { Name = 'hw1_rd_04_14_ovly' }, - ['-673334857'] = { Name = 'hw1_rd_04_14' }, - ['-208666402'] = { Name = 'hw1_rd_04_15_ovly' }, - ['-922346488'] = { Name = 'hw1_rd_04_15' }, - ['-166886109'] = { Name = 'hw1_rd_04_16_ovly' }, - ['459260090'] = { Name = 'hw1_rd_04_16' }, - ['-366601159'] = { Name = 'hw1_rd_04_17_ovly' }, - ['251078633'] = { Name = 'hw1_rd_04_17' }, - ['-1866819384'] = { Name = 'hw1_rd_04_18_ovly' }, - ['75862790'] = { Name = 'hw1_rd_04_18' }, - ['1355570637'] = { Name = 'hw1_rd_04_19_ovly' }, - ['1992423297'] = { Name = 'hw1_rd_04_19' }, - ['-782591485'] = { Name = 'hw1_rd_04_20_ovly' }, - ['-1526410014'] = { Name = 'hw1_rd_04_20' }, - ['1619279728'] = { Name = 'hw1_rd_04_21_ovly' }, - ['-1218250338'] = { Name = 'hw1_rd_04_21' }, - ['591264696'] = { Name = 'hw1_rd_04_22_ovly' }, - ['-2069916648'] = { Name = 'hw1_rd_04_22' }, - ['-881970046'] = { Name = 'hw1_rd_04_23_ovly' }, - ['-1755989628'] = { Name = 'hw1_rd_04_23' }, - ['983834712'] = { Name = 'hw1_rd_hedge01castshadow' }, - ['926636239'] = { Name = 'hw1_rd_hedge02_top' }, - ['-409894683'] = { Name = 'hw1_rd_hedge02b_lod' }, - ['406673096'] = { Name = 'hw1_rd_hedge03castshadow' }, - ['1375006103'] = { Name = 'hw1_rd_hedge04castshadow' }, - ['-265919534'] = { Name = 'hw1_rd_hedge3bcastshadow' }, - ['1588883898'] = { Name = 'hw1_rd_hedge4bcastshadow' }, - ['-476058186'] = { Name = 'hw1_rd_props_nw_thvy' }, - ['-1496968019'] = { Name = 'hw1_rd_props_nw_thvy01' }, - ['-1447716300'] = { Name = 'hw1_rd_props_nw_thvy02' }, - ['-1141358919'] = { Name = 'hw1_rd_props_nw_thvy03' }, - ['46255291'] = { Name = 'hw1_rd_props_nw_thvy04' }, - ['276785206'] = { Name = 'hw1_rd_props_nw_thvy05' }, - ['1618773955'] = { Name = 'hw1_rd_props_nw_thvy06' }, - ['1925360719'] = { Name = 'hw1_rd_props_nw_thvy07' }, - ['-1123663659'] = { Name = 'hw1_rd_props_nw_thvy08' }, - ['-816847512'] = { Name = 'hw1_rd_props_nw_thvy09' }, - ['-1538191181'] = { Name = 'hw1_rd_props_nw_thvy10' }, - ['311553335'] = { Name = 'hw1_rd_props_nw_thvy11' }, - ['1515650252'] = { Name = 'hw1_rd_props_nw_thvy12' }, - ['1209817175'] = { Name = 'hw1_rd_props_nw_thvy13' }, - ['-3749971'] = { Name = 'hw1_rd_props_nw_thvy14' }, - ['-308468902'] = { Name = 'hw1_rd_props_nw_thvy15' }, - ['-1788611879'] = { Name = 'hw1_rd_props_nw_thvy16' }, - ['-2087465159'] = { Name = 'hw1_rd_props_nw_thvy17' }, - ['914371871'] = { Name = 'hw1_rd_props_nw_thvy18' }, - ['659068592'] = { Name = 'hw1_rd_props_nw_thvy19' }, - ['-1606678039'] = { Name = 'hw1_rd_props_nw_thvy20' }, - ['-1058671619'] = { Name = 'hw1_rd_props_thvy_' }, - ['1825040220'] = { Name = 'hw1_rd_props_thvy_01' }, - ['1568262336'] = { Name = 'hw1_rd_props_thvy_02' }, - ['-1222050787'] = { Name = 'hw1_rd_props_thvy_03' }, - ['-904257025'] = { Name = 'hw1_rd_props_thvy_04' }, - ['-1769489701'] = { Name = 'hw1_rd_props_thvy_05' }, - ['-2050680490'] = { Name = 'hw1_rd_props_thvy_06' }, - ['-492514540'] = { Name = 'hw1_rd_props_thvy_07' }, - ['352958433'] = { Name = 'hw1_rd_props_thvy_08' }, - ['-1118893975'] = { Name = 'hw1_rd_props_thvy_09' }, - ['956923548'] = { Name = 'hw1_rd_props_thvy_10' }, - ['1018201578'] = { Name = 'hw1_rd_props_thvy_11' }, - ['1442101362'] = { Name = 'hw1_rd_props_thvy_12' }, - ['1070337053'] = { Name = 'hw1_rd_props_thvy_13' }, - ['1269769187'] = { Name = 'hw1_rd_props_thvy_14' }, - ['-1787283592'] = { Name = 'hw1_rd_props_thvy_15' }, - ['1783554338'] = { Name = 'hw1_rd_props_thvy_16' }, - ['-1292307847'] = { Name = 'hw1_rd_props_thvy_17' }, - ['-2061297970'] = { Name = 'hw1_rd_props_thvy_18' }, - ['-682247374'] = { Name = 'hw1_rd_props_thvy_19' }, - ['253439572'] = { Name = 'hw1_rd_props_thvy_20' }, - ['369638386'] = { Name = 'hw1_rd_props_thvy_21' }, - ['72259711'] = { Name = 'hw1_rd_props_thvy_22' }, - ['-696894197'] = { Name = 'hw1_rd_props_thvy_23' }, - ['-399155063'] = { Name = 'hw1_rd_props_thvy_24' }, - ['-1290766784'] = { Name = 'hw1_rd_props_thvy_25' }, - ['-992306732'] = { Name = 'hw1_rd_props_thvy_26' }, - ['-1886736587'] = { Name = 'hw1_rd_props_thvy_27' }, - ['-1582181501'] = { Name = 'hw1_rd_props_thvy_28' }, - ['1814128735'] = { Name = 'hw1_rd_props_thvy_29' }, - ['207333249'] = { Name = 'hw1_rd_props_thvy_30' }, - ['1354281018'] = { Name = 'hw1_rd_props_thvy_31' }, - ['786984090'] = { Name = 'hw1_rd_props_thvy_32' }, - ['1397863784'] = { Name = 'hw1_rd_props_thvy_33' }, - ['1092030707'] = { Name = 'hw1_rd_props_thvy_34' }, - ['1772610068'] = { Name = 'hw1_rd_props_thvy_35' }, - ['1704057320'] = { Name = 'hw1_rd_props_thvy_36' }, - ['-1946474818'] = { Name = 'hw1_rd_props_thvy_37' }, - ['2053276557'] = { Name = 'hw1_rd_props_thvy_38' }, - ['-1345786279'] = { Name = 'hw1_rd_props_thvy_39' }, - ['-707234581'] = { Name = 'hw1_rd_props_thvy_40' }, - ['288943023'] = { Name = 'hw1_rd_props_thvy_41' }, - ['-1558737046'] = { Name = 'hw1_rd_props_thvy_42' }, - ['1323165420'] = { Name = 'hw1_rd_props_thvy_43' }, - ['-518321304'] = { Name = 'hw1_rd_props_thvy_44' }, - ['938490129'] = { Name = 'hw1_rd_props_thvy_45' }, - ['1016808039'] = { Name = 'hw1_rd_props_thvy_46' }, - ['-1782352710'] = { Name = 'hw1_rd_props_thvy_47' }, - ['670472478'] = { Name = 'hw1_rd_props_thvy_48' }, - ['1660129051'] = { Name = 'hw1_rd_props_thvy_49' }, - ['2004793089'] = { Name = 'hw1_rd_props_thvy_50' }, - ['1707348876'] = { Name = 'hw1_rd_props_thvy_51' }, - ['-726797986'] = { Name = 'hw1_rd_props_thvy_52' }, - ['1378479204'] = { Name = 'hw1_rd_props_thvy_53' }, - ['-470773773'] = { Name = 'hw1_rd_props_thvy_54' }, - ['759636639'] = { Name = 'hw1_rd_props_thvy_55' }, - ['1057343004'] = { Name = 'hw1_rd_props_thvy_56' }, - ['1879766222'] = { Name = 'hw1_rd_props_thvy_63' }, - ['1583174003'] = { Name = 'hw1_rd_props_thvy_64' }, - ['342211973'] = { Name = 'hw1_rd_props_thvy_65' }, - ['78585368'] = { Name = 'hw1_rd_props_thvy_66' }, - ['521736348'] = { Name = 'hw1_rd_stars1' }, - ['789819537'] = { Name = 'hw1_rd_stars2' }, - ['18732202'] = { Name = 'hw1_rd_stars3' }, - ['241364788'] = { Name = 'hw1_rd_stars4' }, - ['-660503630'] = { Name = 'hw1_rd_stars5' }, - ['946864145'] = { Name = 'hw1_rd_trans_hills04' }, - ['1759823196'] = { Name = 'hw1_rd_trans_runoff01' }, - ['2010080049'] = { Name = 'hw1_rd_trans_runoff02' }, - ['970385471'] = { Name = 'hydra' }, - ['-1866644246'] = { Name = 'id1_00_ground2' }, - ['-1437239270'] = { Name = 'id1_00_ground3' }, - ['541345598'] = { Name = 'id1_00_pre_ref_proxy_dummy' }, - ['-1717071122'] = { Name = 'id1_00_pre_ref_proxy' }, - ['-202235360'] = { Name = 'id1_00_water1' }, - ['178737034'] = { Name = 'id1_00_water2' }, - ['410381095'] = { Name = 'id1_00_water3' }, - ['-2027930633'] = { Name = 'id1_00_weeds_001' }, - ['-864544023'] = { Name = 'id1_04_cables01' }, - ['-685887435'] = { Name = 'id1_04_cables02' }, - ['275380041'] = { Name = 'id1_04_chimney_dec' }, - ['111629499'] = { Name = 'id1_04_chimney' }, - ['715570612'] = { Name = 'id1_04_details1' }, - ['-919111996'] = { Name = 'id1_04_details1a' }, - ['-82650502'] = { Name = 'id1_04_details1b' }, - ['-1385906401'] = { Name = 'id1_04_details1c' }, - ['341348632'] = { Name = 'id1_04_details2' }, - ['-1611094681'] = { Name = 'id1_04_details2a' }, - ['-757396693'] = { Name = 'id1_04_details2b' }, - ['72216080'] = { Name = 'id1_04_details2c' }, - ['-1782574874'] = { Name = 'id1_04_details2d' }, - ['-921307247'] = { Name = 'id1_04_details2e' }, - ['-813267083'] = { Name = 'id1_04_details3' }, - ['634420228'] = { Name = 'id1_04_fizz_b_00' }, - ['-1541539683'] = { Name = 'id1_04_fizz_b_01' }, - ['-1168890615'] = { Name = 'id1_04_fizz_b_02' }, - ['-929185380'] = { Name = 'id1_04_fizz_b_03' }, - ['1153656029'] = { Name = 'id1_04_fizz_c_01' }, - ['2099795362'] = { Name = 'id1_04_fizz_c_02' }, - ['542940172'] = { Name = 'id1_04_fizz_c_04' }, - ['1929908776'] = { Name = 'id1_04_fizz_d_00' }, - ['-2059946361'] = { Name = 'id1_04_fizz_d_01' }, - ['-827242111'] = { Name = 'id1_04_fizz_d_02' }, - ['-526258846'] = { Name = 'id1_04_fizz_d_03' }, - ['-363986762'] = { Name = 'id1_04_fizz_d_04' }, - ['-1046976597'] = { Name = 'id1_04_fizz_e_01' }, - ['-1211426332'] = { Name = 'id1_04_fizz_f_00' }, - ['-2063190865'] = { Name = 'id1_04_fizz_f_01' }, - ['-754560838'] = { Name = 'id1_04_fizz_f_02' }, - ['-1913369513'] = { Name = 'id1_04_fizz_g_02' }, - ['92688642'] = { Name = 'id1_04_fizz_h_01' }, - ['849662807'] = { Name = 'id1_04_fizz_i_01' }, - ['1629739697'] = { Name = 'id1_04_fizza_00' }, - ['1421263323'] = { Name = 'id1_04_fizza_01' }, - ['1782443241'] = { Name = 'id1_04_fizza_02' }, - ['1557628653'] = { Name = 'id1_04_fizza' }, - ['594711584'] = { Name = 'id1_04_fizzb' }, - ['398924699'] = { Name = 'id1_04_ground1' }, - ['694271696'] = { Name = 'id1_04_ground2' }, - ['-97361806'] = { Name = 'id1_04_ground3' }, - ['-862602565'] = { Name = 'id1_04_ladder' }, - ['1141730920'] = { Name = 'id1_04_ladder01' }, - ['383718412'] = { Name = 'id1_04_ladder02' }, - ['564275602'] = { Name = 'id1_04_ladder03' }, - ['397262447'] = { Name = 'id1_04_pipes_1_ab' }, - ['378082426'] = { Name = 'id1_04_pipes_1' }, - ['1212815868'] = { Name = 'id1_04_pipes_1a' }, - ['1298998338'] = { Name = 'id1_04_pipes_1b' }, - ['-1509534349'] = { Name = 'id1_04_pipes_1c' }, - ['611236050'] = { Name = 'id1_04_pipes_2_ovl' }, - ['1766636032'] = { Name = 'id1_04_pipes_2' }, - ['-982826024'] = { Name = 'id1_04_pipes_3_ovl' }, - ['-582618711'] = { Name = 'id1_04_pipes_3_ovl2' }, - ['2074566325'] = { Name = 'id1_04_pipes_3' }, - ['1241744698'] = { Name = 'id1_04_rain_blockers_10' }, - ['942530959'] = { Name = 'id1_04_rain_blockers_11' }, - ['-1581265182'] = { Name = 'id1_04_sign_pol' }, - ['337553438'] = { Name = 'id1_04_sign001' }, - ['-1299763935'] = { Name = 'id1_04_signs01' }, - ['-1003007871'] = { Name = 'id1_04_signs02' }, - ['1501856626'] = { Name = 'id1_04_structures_02' }, - ['2048455652'] = { Name = 'id1_05_detail1_a' }, - ['1806980891'] = { Name = 'id1_05_detail1_b' }, - ['-1650541841'] = { Name = 'id1_05_detail1_c' }, - ['-1675894771'] = { Name = 'id1_05_detail1' }, - ['270159692'] = { Name = 'id1_05_detail2_hr' }, - ['-1947418705'] = { Name = 'id1_05_detail2' }, - ['-718008007'] = { Name = 'id1_05_detail3_a' }, - ['-1006178593'] = { Name = 'id1_05_detail3_b' }, - ['2042436432'] = { Name = 'id1_05_detail3' }, - ['2086573631'] = { Name = 'id1_05_detail4_rail' }, - ['-9713132'] = { Name = 'id1_05_detail4_stairs' }, - ['1949622595'] = { Name = 'id1_05_detail4_struct' }, - ['-1309740102'] = { Name = 'id1_05_detail4b_fizz' }, - ['999157985'] = { Name = 'id1_05_detail4b_steps_01' }, - ['758535218'] = { Name = 'id1_05_detail4b_steps_02' }, - ['591423112'] = { Name = 'id1_05_detail4b_steps' }, - ['1129117265'] = { Name = 'id1_05_detail4b' }, - ['-1883375305'] = { Name = 'id1_05_detail4c_02' }, - ['1368298196'] = { Name = 'id1_05_detail4c' }, - ['731361123'] = { Name = 'id1_05_detail5a_rails_01' }, - ['-1210392855'] = { Name = 'id1_05_detail5a_rails' }, - ['-321631051'] = { Name = 'id1_05_detail5a' }, - ['-1357141276'] = { Name = 'id1_05_detail5ax' }, - ['-808160556'] = { Name = 'id1_05_detail5ax1' }, - ['-1048127943'] = { Name = 'id1_05_detail5ax2' }, - ['99143416'] = { Name = 'id1_05_detail5b_01' }, - ['-1089552059'] = { Name = 'id1_05_detail5b_05' }, - ['1577618358'] = { Name = 'id1_05_detail5b_pipes_01' }, - ['181855580'] = { Name = 'id1_05_detail5b_pipes_02' }, - ['415990073'] = { Name = 'id1_05_detail5b_pipes_03' }, - ['1128607941'] = { Name = 'id1_05_detail5b_pipes' }, - ['-2139635990'] = { Name = 'id1_05_detail5b_rail1' }, - ['-1849761416'] = { Name = 'id1_05_detail5b_rail2' }, - ['-2100804725'] = { Name = 'id1_05_detail5b_rail3' }, - ['1055144916'] = { Name = 'id1_05_detail5b_rails' }, - ['1151818846'] = { Name = 'id1_05_detail5b_spikes' }, - ['-99195079'] = { Name = 'id1_05_detail5b' }, - ['1437498171'] = { Name = 'id1_05_detail5bb' }, - ['-1955547814'] = { Name = 'id1_05_detail5sa_rails' }, - ['-793817837'] = { Name = 'id1_05_fizza_01' }, - ['2068423241'] = { Name = 'id1_05_fizza_02' }, - ['-713590317'] = { Name = 'id1_05_fizzb_01' }, - ['-1925008772'] = { Name = 'id1_05_fizzb_01b' }, - ['-1622059367'] = { Name = 'id1_05_fizzb_01c' }, - ['1847405344'] = { Name = 'id1_05_fizzb_02' }, - ['-2057415366'] = { Name = 'id1_05_ground' }, - ['892020553'] = { Name = 'id1_05_ladder002' }, - ['112085224'] = { Name = 'id1_05_ladder017' }, - ['-1118608307'] = { Name = 'id1_05_ladder02' }, - ['1066645978'] = { Name = 'id1_05_ladder020' }, - ['830021029'] = { Name = 'id1_05_ladder021' }, - ['1527214273'] = { Name = 'id1_05_ladder022' }, - ['1290785938'] = { Name = 'id1_05_ladder023' }, - ['-30296297'] = { Name = 'id1_05_ladder024' }, - ['212751372'] = { Name = 'id1_05_ladder02a' }, - ['-1494316930'] = { Name = 'id1_05_ladder02b' }, - ['470360467'] = { Name = 'id1_05_ladder04' }, - ['293473405'] = { Name = 'id1_05_ladder05' }, - ['358028627'] = { Name = 'id1_05_ladder16' }, - ['718349931'] = { Name = 'id1_05_propssmsh2end_slod001' }, - ['1363370066'] = { Name = 'id1_05_propssmsh2end' }, - ['-1890778353'] = { Name = 'id1_05_propssmsh2srt_slod' }, - ['-695384606'] = { Name = 'id1_05_propssmsh2srt' }, - ['-1595861292'] = { Name = 'id1_05_rain_blockers_06' }, - ['-1311557448'] = { Name = 'id1_05_rain_blockers_07' }, - ['1570089325'] = { Name = 'id1_05_signage01' }, - ['1583311035'] = { Name = 'id1_05_struct1_a' }, - ['907904550'] = { Name = 'id1_05_struct3_a' }, - ['-1459328014'] = { Name = 'id1_05_struct3_b' }, - ['1872263451'] = { Name = 'id1_05_struct3_c' }, - ['1147609785'] = { Name = 'id1_05_struct3_d' }, - ['1709188171'] = { Name = 'id1_05_structures1_fence' }, - ['481643490'] = { Name = 'id1_05_structures1' }, - ['399671084'] = { Name = 'id1_05_structures2_fence' }, - ['1383511908'] = { Name = 'id1_05_structures2' }, - ['1852670563'] = { Name = 'id1_05_wires' }, - ['-73059657'] = { Name = 'id1_06_cables_dyn_01' }, - ['301932556'] = { Name = 'id1_06_detail1' }, - ['1595718214'] = { Name = 'id1_06_detail2' }, - ['828497617'] = { Name = 'id1_06_detail3' }, - ['-878636207'] = { Name = 'id1_06_detail4' }, - ['-572147750'] = { Name = 'id1_06_detail5' }, - ['-436287476'] = { Name = 'id1_06_detail6' }, - ['-130388861'] = { Name = 'id1_06_detail7' }, - ['1665457898'] = { Name = 'id1_06_fizza_01' }, - ['1301001080'] = { Name = 'id1_06_fizza_02' }, - ['111191459'] = { Name = 'id1_06_fizza_03' }, - ['-1712698308'] = { Name = 'id1_06_fizza_05' }, - ['-2078859114'] = { Name = 'id1_06_fizza_06' }, - ['1029444377'] = { Name = 'id1_06_fizza_07' }, - ['-1349290098'] = { Name = 'id1_06_fizza_08' }, - ['-848022705'] = { Name = 'id1_06_fizza_09' }, - ['1688689411'] = { Name = 'id1_06_ground' }, - ['142826631'] = { Name = 'id1_06_groundb' }, - ['991675317'] = { Name = 'id1_06_ladder' }, - ['-983216474'] = { Name = 'id1_06_ladder001' }, - ['-687902246'] = { Name = 'id1_06_ladder002' }, - ['-1444833377'] = { Name = 'id1_06_ladder003' }, - ['-1151812979'] = { Name = 'id1_06_ladder004' }, - ['-1909891025'] = { Name = 'id1_06_ladder005' }, - ['1607828360'] = { Name = 'id1_06_ladder006' }, - ['1923852596'] = { Name = 'id1_06_ladder007' }, - ['1152699719'] = { Name = 'id1_06_ladder008' }, - ['1390307738'] = { Name = 'id1_06_ladder009' }, - ['1440510714'] = { Name = 'id1_06_ladder010' }, - ['1650494482'] = { Name = 'id1_06_ladder011' }, - ['1831772590'] = { Name = 'id1_06_ladder012' }, - ['2129413417'] = { Name = 'id1_06_ladder013' }, - ['136251115'] = { Name = 'id1_06_pipes1' }, - ['-337332232'] = { Name = 'id1_06_railing_hd' }, - ['-99139641'] = { Name = 'id1_06_railing01' }, - ['712482955'] = { Name = 'id1_06_railing02' }, - ['481625350'] = { Name = 'id1_06_railing03' }, - ['-311548311'] = { Name = 'id1_06_railing04' }, - ['336239467'] = { Name = 'id1_06_structures1' }, - ['-1370861592'] = { Name = 'id1_06_structures2' }, - ['-1217437134'] = { Name = 'id1_06_structures3' }, - ['-81401718'] = { Name = 'id1_06_watertower_hd' }, - ['1885458804'] = { Name = 'id1_06_watertower' }, - ['-902846394'] = { Name = 'id1_06_watertowerrailings' }, - ['619313825'] = { Name = 'id1_06_wires' }, - ['2116251089'] = { Name = 'id1_07_armco1' }, - ['-2025619435'] = { Name = 'id1_07_armco2' }, - ['-1716116230'] = { Name = 'id1_07_armco3' }, - ['-1427060881'] = { Name = 'id1_07_armco4' }, - ['-721740925'] = { Name = 'id1_07_armco5' }, - ['-438256306'] = { Name = 'id1_07_armco6' }, - ['-256519432'] = { Name = 'id1_07_armco7' }, - ['26506421'] = { Name = 'id1_07_armco8' }, - ['203590101'] = { Name = 'id1_07_armco9' }, - ['1785505955'] = { Name = 'id1_07_build_x01_o' }, - ['898891257'] = { Name = 'id1_07_build_x02_o' }, - ['-93075350'] = { Name = 'id1_07_build_x02_support' }, - ['2129256533'] = { Name = 'id1_07_build_x02' }, - ['-1954752021'] = { Name = 'id1_07_build_x03_o' }, - ['263877655'] = { Name = 'id1_07_build_x03_support' }, - ['-1635049565'] = { Name = 'id1_07_build_x03' }, - ['-935038187'] = { Name = 'id1_07_build_x04' }, - ['1826403143'] = { Name = 'id1_07_cable_heavy_01' }, - ['-252789907'] = { Name = 'id1_07_cable_heavy_02' }, - ['1184917199'] = { Name = 'id1_07_cable_heavy_03' }, - ['-2109266826'] = { Name = 'id1_07_cable_light_01' }, - ['-1806874494'] = { Name = 'id1_07_cable_light_02' }, - ['1570724639'] = { Name = 'id1_07_cable_light_03' }, - ['1875967874'] = { Name = 'id1_07_cable_light_04' }, - ['-882067776'] = { Name = 'id1_07_cable_light_05' }, - ['-574170252'] = { Name = 'id1_07_cable_light_06' }, - ['-1494291003'] = { Name = 'id1_07_cable_light_07' }, - ['-1186590093'] = { Name = 'id1_07_cable_light_08' }, - ['-1273064200'] = { Name = 'id1_07_decalglue_' }, - ['-604870159'] = { Name = 'id1_07_detail1_shadonly' }, - ['227042047'] = { Name = 'id1_07_detail2_pipe20' }, - ['397813487'] = { Name = 'id1_07_detail2_pipes027' }, - ['625263116'] = { Name = 'id1_07_detail2_pipes028' }, - ['1007087504'] = { Name = 'id1_07_detail2_pipes029' }, - ['-1562964373'] = { Name = 'id1_07_detail2_pipes21' }, - ['285108924'] = { Name = 'id1_07_detail2_pipes22' }, - ['-165202674'] = { Name = 'id1_07_detail2_pipes23' }, - ['167533748'] = { Name = 'id1_07_detail2_pipes24' }, - ['-281336014'] = { Name = 'id1_07_detail2_pipes25' }, - ['-577207315'] = { Name = 'id1_07_detail2_pipes26' }, - ['-852597207'] = { Name = 'id1_07_detail2_pipes30' }, - ['-294847759'] = { Name = 'id1_07_detail2_r1' }, - ['-47703747'] = { Name = 'id1_07_detail2_r10' }, - ['-355011429'] = { Name = 'id1_07_detail2_r11' }, - ['-1898038101'] = { Name = 'id1_07_detail2_r12' }, - ['2091685960'] = { Name = 'id1_07_detail2_r13' }, - ['-1534597122'] = { Name = 'id1_07_detail2_r14' }, - ['-534094228'] = { Name = 'id1_07_detail2_r2' }, - ['181515194'] = { Name = 'id1_07_detail2_r3' }, - ['27107662'] = { Name = 'id1_07_detail2_r5' }, - ['-211811117'] = { Name = 'id1_07_detail2_r6' }, - ['1045207723'] = { Name = 'id1_07_detail2_r7' }, - ['804126190'] = { Name = 'id1_07_detail2_r8' }, - ['216393060'] = { Name = 'id1_07_detail2' }, - ['204720823'] = { Name = 'id1_07_detail3_r1' }, - ['-1935127650'] = { Name = 'id1_07_detail3_r2' }, - ['-1030310022'] = { Name = 'id1_07_detail3_r3' }, - ['-506458311'] = { Name = 'id1_07_detail3' }, - ['726778066'] = { Name = 'id1_07_glue_2' }, - ['-584932235'] = { Name = 'id1_07_glue_3' }, - ['1953157887'] = { Name = 'id1_07_glue_7' }, - ['2084659888'] = { Name = 'id1_07_glue_8' }, - ['829607845'] = { Name = 'id1_07_ladder001' }, - ['990765787'] = { Name = 'id1_07_ladder002' }, - ['-756049843'] = { Name = 'id1_07_land1_det' }, - ['1721217971'] = { Name = 'id1_07_land1_det2' }, - ['165378644'] = { Name = 'id1_07_land1_det3' }, - ['-1929118398'] = { Name = 'id1_07_land1_o' }, - ['-856687568'] = { Name = 'id1_07_land1_pipe01_lod' }, - ['1695140889'] = { Name = 'id1_07_land1_pipe01' }, - ['1945659894'] = { Name = 'id1_07_land1_pipe02' }, - ['-1970956528'] = { Name = 'id1_07_land1_pipe03' }, - ['-1755631429'] = { Name = 'id1_07_land1_pipe04' }, - ['-1368039697'] = { Name = 'id1_07_land1_pipe05' }, - ['-1138886080'] = { Name = 'id1_07_land1_pipe06' }, - ['-689354619'] = { Name = 'id1_07_land1_pipes_10' }, - ['-1102964937'] = { Name = 'id1_07_land1_pipes_11' }, - ['-1682943464'] = { Name = 'id1_07_land1_pipes_12' }, - ['-1301381228'] = { Name = 'id1_07_land1_pipes_13' }, - ['-768821327'] = { Name = 'id1_07_land1_r1' }, - ['-480323051'] = { Name = 'id1_07_land1_r2' }, - ['-171344150'] = { Name = 'id1_07_land1_r3' }, - ['-1397723983'] = { Name = 'id1_07_land1_r4' }, - ['1994981667'] = { Name = 'id1_07_land1_r5' }, - ['-1072557192'] = { Name = 'id1_07_land1_r6' }, - ['-1016751277'] = { Name = 'id1_07_land1_sp' }, - ['-2104288480'] = { Name = 'id1_07_land1' }, - ['-2029973640'] = { Name = 'id1_07_land2_o' }, - ['-894520844'] = { Name = 'id1_07_land2_support_01' }, - ['-951606136'] = { Name = 'id1_07_land2' }, - ['-191223736'] = { Name = 'id1_07_land3_o' }, - ['355516509'] = { Name = 'id1_07_land3' }, - ['627713892'] = { Name = 'id1_07_metalbldg' }, - ['-478709339'] = { Name = 'id1_07_piping00' }, - ['-725558216'] = { Name = 'id1_07_piping01' }, - ['-1223515940'] = { Name = 'id1_07_piping02' }, - ['-1437268127'] = { Name = 'id1_07_piping03' }, - ['-1680741797'] = { Name = 'id1_07_piping04' }, - ['-1910550794'] = { Name = 'id1_07_piping05' }, - ['2018780000'] = { Name = 'id1_07_piping06' }, - ['1772783117'] = { Name = 'id1_07_piping07' }, - ['1540188751'] = { Name = 'id1_07_piping08' }, - ['1261881634'] = { Name = 'id1_07_piping09' }, - ['-1998274827'] = { Name = 'id1_07_piping10' }, - ['216469774'] = { Name = 'id1_07_piping101' }, - ['1983977902'] = { Name = 'id1_07_piping11' }, - ['-1660309418'] = { Name = 'id1_07_railing_hd2' }, - ['-2103762666'] = { Name = 'id1_07_railings_hd1' }, - ['-436318863'] = { Name = 'id1_07_railings001' }, - ['-1733774649'] = { Name = 'id1_07_railings002' }, - ['-430715492'] = { Name = 'id1_07_rain_blocker00' }, - ['-946040786'] = { Name = 'id1_07_rain_blocker01' }, - ['85920562'] = { Name = 'id1_07_rain_blocker02' }, - ['-143560745'] = { Name = 'id1_07_rain_blocker03' }, - ['793468810'] = { Name = 'id1_07_rain_blocker04' }, - ['1867098051'] = { Name = 'id1_07_rain_blocker04b' }, - ['-684239475'] = { Name = 'id1_07_redbuild_o' }, - ['639599719'] = { Name = 'id1_07_redbuild_rails002' }, - ['-188696309'] = { Name = 'id1_07_redbuild_rails01' }, - ['779922562'] = { Name = 'id1_07_redbuild_rails02' }, - ['439518190'] = { Name = 'id1_07_redbuild_rails03' }, - ['-244437403'] = { Name = 'id1_07_redbuild' }, - ['1404609695'] = { Name = 'id1_07_structures' }, - ['-826268137'] = { Name = 'id1_07_structuresx' }, - ['44036422'] = { Name = 'id1_07_tank_ladder1' }, - ['-243282170'] = { Name = 'id1_07_tank_ladder2' }, - ['1607029413'] = { Name = 'id1_07_tank_top1' }, - ['-1838598176'] = { Name = 'id1_07_tank_top2' }, - ['331168384'] = { Name = 'id1_07_tank_x01_o' }, - ['1890435823'] = { Name = 'id1_07_tank_x01_o2' }, - ['-369477574'] = { Name = 'id1_07_tank_x01' }, - ['-1324628386'] = { Name = 'id1_07_tank_x02' }, - ['1042996525'] = { Name = 'id1_07_tankerfizz03' }, - ['1319337502'] = { Name = 'id1_07_tankerfizz04' }, - ['760571760'] = { Name = 'id1_07_tankersfizz' }, - ['832965046'] = { Name = 'id1_07_tankersfizz2' }, - ['-594739040'] = { Name = 'id1_08_brg_02' }, - ['1318282411'] = { Name = 'id1_08_brg_03' }, - ['-1497964244'] = { Name = 'id1_08_brg_d' }, - ['125359368'] = { Name = 'id1_08_brg' }, - ['1549844328'] = { Name = 'id1_08_brg003' }, - ['-525675681'] = { Name = 'id1_08_brg2' }, - ['-1119530379'] = { Name = 'id1_08_prereflwaterprox_dummy' }, - ['-985603675'] = { Name = 'id1_09_ammun_o' }, - ['430476224'] = { Name = 'id1_09_decal_1' }, - ['-1980502955'] = { Name = 'id1_09_decal_2' }, - ['1959707147'] = { Name = 'id1_09_decal_3' }, - ['454938080'] = { Name = 'id1_09_decal' }, - ['448547152'] = { Name = 'id1_09_ground_o' }, - ['1693539919'] = { Name = 'id1_09_ground' }, - ['-223189610'] = { Name = 'id1_09_ladder01' }, - ['419157171'] = { Name = 'id1_09_magcables' }, - ['664480140'] = { Name = 'id1_09_newbuild1_o' }, - ['-1631320985'] = { Name = 'id1_09_newbuild1' }, - ['458194418'] = { Name = 'id1_09_newbuild2_o' }, - ['219373828'] = { Name = 'id1_09_newbuild2' }, - ['282989861'] = { Name = 'id1_09_newbuild3_o' }, - ['-76289439'] = { Name = 'id1_09_newbuild3_r' }, - ['-1218249507'] = { Name = 'id1_09_newbuild3_r1' }, - ['203892328'] = { Name = 'id1_09_newbuild3_r3' }, - ['-1926831827'] = { Name = 'id1_09_newbuild3' }, - ['640213051'] = { Name = 'id1_09_newbuild4_o' }, - ['-1735965438'] = { Name = 'id1_09_newbuild4_r' }, - ['-1946624303'] = { Name = 'id1_09_newbuild4' }, - ['-108291509'] = { Name = 'id1_09_newbuild5_ladder' }, - ['-313440219'] = { Name = 'id1_09_newbuild5_o' }, - ['-1067529451'] = { Name = 'id1_09_newbuild5_pipes' }, - ['-273250632'] = { Name = 'id1_09_newbuild5_pipes2' }, - ['2042247764'] = { Name = 'id1_09_newbuild5' }, - ['578057944'] = { Name = 'id1_09_newbuild6_o' }, - ['1746081542'] = { Name = 'id1_09_newbuild6' }, - ['-786896640'] = { Name = 'id1_09_newbuild7' }, - ['-1091582802'] = { Name = 'id1_09_newbuild8' }, - ['2014088291'] = { Name = 'id1_09_newbuildrl' }, - ['143600238'] = { Name = 'id1_09_newbuildrl1' }, - ['-2029508778'] = { Name = 'id1_09_newbuildrl2' }, - ['-1795964115'] = { Name = 'id1_09_newbuildrl3' }, - ['-334040718'] = { Name = 'id1_09_newbuildrl4' }, - ['-2123949036'] = { Name = 'id1_09_newbuildrl5' }, - ['1217538667'] = { Name = 'id1_09_newbuildrl6' }, - ['1851553279'] = { Name = 'id1_09_newbuildrl7' }, - ['-1528863996'] = { Name = 'id1_09_newbuildrl8' }, - ['983404162'] = { Name = 'id1_09_newbuildrl9' }, - ['2072911186'] = { Name = 'id1_09_newbuilld7_o' }, - ['-1499991661'] = { Name = 'id1_09_newbuilld8_o' }, - ['655885914'] = { Name = 'id1_09_railings_hd' }, - ['462774162'] = { Name = 'id1_09_railings8' }, - ['-1216343055'] = { Name = 'id1_09_rain_blockers_03' }, - ['-22163674'] = { Name = 'id1_09_sign' }, - ['1756823266'] = { Name = 'id1_10_ab_1_o' }, - ['-1486617748'] = { Name = 'id1_10_ab_1' }, - ['-1023699462'] = { Name = 'id1_10_ab_11' }, - ['527290093'] = { Name = 'id1_10_ab_1l' }, - ['1139120092'] = { Name = 'id1_10_ab_1r' }, - ['-1912894583'] = { Name = 'id1_10_ab_2_o' }, - ['-691281349'] = { Name = 'id1_10_ab_2' }, - ['1649071550'] = { Name = 'id1_10_ab_2l' }, - ['1010002178'] = { Name = 'id1_10_ab_2l001' }, - ['113369336'] = { Name = 'id1_10_ab_2r2' }, - ['-67056778'] = { Name = 'id1_10_ab_2r3' }, - ['-365516830'] = { Name = 'id1_10_ab_2r4' }, - ['-579376694'] = { Name = 'id1_10_ab_3_o' }, - ['-847655017'] = { Name = 'id1_10_ab_3' }, - ['-1861011065'] = { Name = 'id1_10_ab_r003' }, - ['-629374424'] = { Name = 'id1_10_ab_r2' }, - ['-314366027'] = { Name = 'id1_10_ab_r3' }, - ['53649658'] = { Name = 'id1_10_ab_windows' }, - ['1504774492'] = { Name = 'id1_10_abattoir_lod' }, - ['-1098328760'] = { Name = 'id1_10_abd_2' }, - ['-1721014479'] = { Name = 'id1_10_abr_0' }, - ['1605165582'] = { Name = 'id1_10_abr_01' }, - ['664203747'] = { Name = 'id1_10_abr_02' }, - ['779754052'] = { Name = 'id1_10_cables_001' }, - ['905707911'] = { Name = 'id1_10_detail1' }, - ['1203610890'] = { Name = 'id1_10_detail2' }, - ['-629585285'] = { Name = 'id1_10_detail6' }, - ['1900994926'] = { Name = 'id1_10_detail6r' }, - ['578771590'] = { Name = 'id1_10_detail7' }, - ['877264411'] = { Name = 'id1_10_detail8' }, - ['-47378780'] = { Name = 'id1_10_ground_o' }, - ['127890226'] = { Name = 'id1_10_ground_o2' }, - ['-1168582594'] = { Name = 'id1_10_ground_o3' }, - ['2054311493'] = { Name = 'id1_10_ground' }, - ['-850144495'] = { Name = 'id1_10_int_dr_hdobj' }, - ['-1469275761'] = { Name = 'id1_10_ladder' }, - ['-1424387546'] = { Name = 'id1_10_new1_d' }, - ['2023395667'] = { Name = 'id1_10_newdecal01' }, - ['105146202'] = { Name = 'id1_10_newwin' }, - ['-966952721'] = { Name = 'id1_10_newwin2' }, - ['-1392609281'] = { Name = 'id1_10_railings1' }, - ['901024121'] = { Name = 'id1_10_railings2' }, - ['1131652343'] = { Name = 'id1_10_railings3' }, - ['437506608'] = { Name = 'id1_10_railings4' }, - ['672919104'] = { Name = 'id1_10_railings5' }, - ['-1945520606'] = { Name = 'id1_10_railings6' }, - ['-1706863979'] = { Name = 'id1_10_railings7' }, - ['239390667'] = { Name = 'id1_10_rain_blockers_12' }, - ['-1099558702'] = { Name = 'id1_10_shed_1_o' }, - ['-1958252634'] = { Name = 'id1_10_structure1' }, - ['1388412563'] = { Name = 'id1_10_structure6' }, - ['-772539142'] = { Name = 'id1_10_structure7' }, - ['-1622534221'] = { Name = 'id1_10_structured' }, - ['195434401'] = { Name = 'id1_10_structured2' }, - ['-1952934008'] = { Name = 'id1_10_structured3' }, - ['600035750'] = { Name = 'id1_10_wall_1_o' }, - ['-801053478'] = { Name = 'id1_11_jl00int' }, - ['751583204'] = { Name = 'id1_11_jlo4_oint' }, - ['-1277020242'] = { Name = 'id1_11_jsproxy' }, - ['-289339869'] = { Name = 'id1_11_lightblocker01' }, - ['1178370463'] = { Name = 'id1_11_rainblock00' }, - ['1467360274'] = { Name = 'id1_11_rainblock01' }, - ['-1615907713'] = { Name = 'id1_11_rainblock02' }, - ['-237774645'] = { Name = 'id1_11_rainblock03' }, - ['-1390358686'] = { Name = 'id1_11_rainblock04' }, - ['1955454830'] = { Name = 'id1_11_sidetunnelint' }, - ['-644874618'] = { Name = 'id1_11_sidetunnelint2' }, - ['-189715553'] = { Name = 'id1_11_tunnel_end' }, - ['-1978199890'] = { Name = 'id1_11_tunnel_start_ov' }, - ['1491360671'] = { Name = 'id1_11_tunnel_start' }, - ['781789410'] = { Name = 'id1_11_tunnel1_int_shell' }, - ['-1364973704'] = { Name = 'id1_11_tunnel1_ov1' }, - ['364797022'] = { Name = 'id1_11_tunnel2_int_shell' }, - ['1110766465'] = { Name = 'id1_11_tunnel2_ov1' }, - ['-1663135059'] = { Name = 'id1_11_tunnel3_fake_grill' }, - ['1660802301'] = { Name = 'id1_11_tunnel3_fake' }, - ['1186379411'] = { Name = 'id1_11_tunnel3_grill' }, - ['-739429008'] = { Name = 'id1_11_tunnel3_int_lod' }, - ['-1126309014'] = { Name = 'id1_11_tunnel3_int_shell_dtl' }, - ['2142412159'] = { Name = 'id1_11_tunnel3_int_shell' }, - ['1428546297'] = { Name = 'id1_11_tunnel3_int_side' }, - ['180816572'] = { Name = 'id1_11_tunnel3_int_side2' }, - ['-218502964'] = { Name = 'id1_11_tunnel3_ov1' }, - ['-1225363258'] = { Name = 'id1_11_tunnel3_ov2' }, - ['-555695171'] = { Name = 'id1_11_tunnel4_edging' }, - ['-602096287'] = { Name = 'id1_11_tunnel4_fake_grill' }, - ['-887461809'] = { Name = 'id1_11_tunnel4_fake' }, - ['-1812628555'] = { Name = 'id1_11_tunnel4_grill' }, - ['-1973334291'] = { Name = 'id1_11_tunnel4_int_lod' }, - ['975968210'] = { Name = 'id1_11_tunnel4_int_shell2_dtl' }, - ['472337101'] = { Name = 'id1_11_tunnel4_int_shell2' }, - ['1219027880'] = { Name = 'id1_11_tunnel4_ov1' }, - ['1020775430'] = { Name = 'id1_11_tunnel4_ov2' }, - ['1815653059'] = { Name = 'id1_11_tunnel4_ov3' }, - ['1042328812'] = { Name = 'id1_11_tunnel5_fake_grill' }, - ['1342179519'] = { Name = 'id1_11_tunnel5_fake' }, - ['-2058898174'] = { Name = 'id1_11_tunnel5_grill' }, - ['2067140864'] = { Name = 'id1_11_tunnel5_int_lod' }, - ['549110555'] = { Name = 'id1_11_tunnel5_int_shell_dtl' }, - ['-1629413250'] = { Name = 'id1_11_tunnel5_int_shell' }, - ['-758919026'] = { Name = 'id1_11_tunnel5_ov1' }, - ['-1456636574'] = { Name = 'id1_11_tunnel5_ov2' }, - ['2003605985'] = { Name = 'id1_11_tunnel5_ov3' }, - ['1141986549'] = { Name = 'id1_11_tunnel6_fake_grill' }, - ['-1571159934'] = { Name = 'id1_11_tunnel6_fake' }, - ['1455372570'] = { Name = 'id1_11_tunnel6_grill' }, - ['-1957295058'] = { Name = 'id1_11_tunnel6_int_lod' }, - ['871798295'] = { Name = 'id1_11_tunnel6_int_shell_dtl' }, - ['-1973683462'] = { Name = 'id1_11_tunnel6_int_shell' }, - ['183175564'] = { Name = 'id1_11_tunnel6_ov1' }, - ['547763458'] = { Name = 'id1_11_tunnel6_ov2' }, - ['765349618'] = { Name = 'id1_11_tunnel6_ov3' }, - ['-996171198'] = { Name = 'id1_11_tunnel7_fake_grill' }, - ['1971068557'] = { Name = 'id1_11_tunnel7_fake' }, - ['-1964669113'] = { Name = 'id1_11_tunnel7_grill' }, - ['2012425067'] = { Name = 'id1_11_tunnel7_int_lod' }, - ['190785965'] = { Name = 'id1_11_tunnel7_int_shell_dtl' }, - ['1733634132'] = { Name = 'id1_11_tunnel7_int_shell' }, - ['-1301109969'] = { Name = 'id1_11_tunnel7_ov1' }, - ['-1474064751'] = { Name = 'id1_11_tunnel7_ov2' }, - ['-1194238829'] = { Name = 'id1_11_tunnel8_int_lod' }, - ['1899137644'] = { Name = 'id1_11_tunnel8_int_shell' }, - ['-1893954330'] = { Name = 'id1_11_tunnel8_ov2' }, - ['-574428939'] = { Name = 'id1_11_tunnel8sunblocker' }, - ['-2081951770'] = { Name = 'id1_13_detail1' }, - ['-1971595711'] = { Name = 'id1_13_detail1b' }, - ['-1331879253'] = { Name = 'id1_13_detail1b1' }, - ['-956280975'] = { Name = 'id1_13_detail1b2' }, - ['-1680967410'] = { Name = 'id1_13_detail1b3' }, - ['-1575189078'] = { Name = 'id1_13_detail1b4' }, - ['-887947713'] = { Name = 'id1_13_detail2' }, - ['-577092669'] = { Name = 'id1_13_fizza_01' }, - ['-857544801'] = { Name = 'id1_13_fizza' }, - ['-736907802'] = { Name = 'id1_13_ground1_o' }, - ['1439258967'] = { Name = 'id1_13_ground1b_o' }, - ['416892273'] = { Name = 'id1_13_ground1b' }, - ['605079591'] = { Name = 'id1_13_ground1b2' }, - ['-1505753841'] = { Name = 'id1_13_props_doorslod' }, - ['-1332146606'] = { Name = 'id1_13_sstation1_go' }, - ['2081355840'] = { Name = 'id1_13_sstation1_o' }, - ['1576290491'] = { Name = 'id1_13_sstation1' }, - ['641807859'] = { Name = 'id1_13_structure1' }, - ['1541939528'] = { Name = 'id1_13_structure2' }, - ['973915460'] = { Name = 'id1_13_wires00' }, - ['-1198177729'] = { Name = 'id1_13_wires01' }, - ['-1270728295'] = { Name = 'id1_13_wires02' }, - ['-1578691357'] = { Name = 'id1_13_wires03' }, - ['-1885310890'] = { Name = 'id1_13_wires04' }, - ['-9875478'] = { Name = 'id1_13_wires05' }, - ['-319050993'] = { Name = 'id1_13_wires06' }, - ['-624261459'] = { Name = 'id1_13_wires07' }, - ['-923147512'] = { Name = 'id1_13_wires08' }, - ['-728892864'] = { Name = 'id1_13_wires09' }, - ['-2083145148'] = { Name = 'id1_14_collision_capsule021' }, - ['-1066308123'] = { Name = 'id1_14_collision_capsule0211' }, - ['-402193382'] = { Name = 'id1_14_detail1_fr' }, - ['-548890352'] = { Name = 'id1_14_detail1_fr2' }, - ['270432955'] = { Name = 'id1_14_detail1_fr3' }, - ['-33182164'] = { Name = 'id1_14_detail1_rf' }, - ['-519555736'] = { Name = 'id1_14_detail1' }, - ['-2061691152'] = { Name = 'id1_14_detail1r' }, - ['-695143205'] = { Name = 'id1_14_detailr2' }, - ['970537554'] = { Name = 'id1_14_ladder009' }, - ['-1793958474'] = { Name = 'id1_14_structure1_s' }, - ['1031554461'] = { Name = 'id1_14_structure1' }, - ['1743501958'] = { Name = 'id1_15_detail_rails01' }, - ['-1419493006'] = { Name = 'id1_15_detail_rails02' }, - ['-2071497795'] = { Name = 'id1_15_detail_rails03' }, - ['1519132615'] = { Name = 'id1_15_detail_rails04' }, - ['647346139'] = { Name = 'id1_15_detail_rails05' }, - ['1952895868'] = { Name = 'id1_15_detail_rails06' }, - ['823872742'] = { Name = 'id1_15_detail_rails07' }, - ['1053222973'] = { Name = 'id1_15_detail_rails08' }, - ['396885440'] = { Name = 'id1_15_detail1_l' }, - ['12078575'] = { Name = 'id1_15_detail1' }, - ['-228934478'] = { Name = 'id1_15_structure1_l' }, - ['440953241'] = { Name = 'id1_15_structure1_l2' }, - ['-1200325637'] = { Name = 'id1_15_structure1' }, - ['967336551'] = { Name = 'id1_16_fizzhd1' }, - ['-1610174686'] = { Name = 'id1_16_fizzhd2' }, - ['-2116717888'] = { Name = 'id1_16_fizzhd3' }, - ['1939658319'] = { Name = 'id1_16_fizzhd4' }, - ['1667380698'] = { Name = 'id1_16_fizzhd5' }, - ['-690447159'] = { Name = 'id1_16_fizzhd7' }, - ['-1196138371'] = { Name = 'id1_16_fizzhd8' }, - ['-1714975995'] = { Name = 'id1_16_grafitti' }, - ['1287010130'] = { Name = 'id1_16_overlay' }, - ['-686207765'] = { Name = 'id1_16_railing_hd1' }, - ['-1051057811'] = { Name = 'id1_16_railing_hd2' }, - ['394171167'] = { Name = 'id1_16_structure1' }, - ['-491739155'] = { Name = 'id1_17_beltsfizz_hd1' }, - ['-604267901'] = { Name = 'id1_17_beltsfizz_hd2' }, - ['2107586154'] = { Name = 'id1_17_detail1' }, - ['-2033675673'] = { Name = 'id1_17_detail1b' }, - ['1409835865'] = { Name = 'id1_17_detail2' }, - ['1219447975'] = { Name = 'id1_17_detail3' }, - ['1532509079'] = { Name = 'id1_17_fizzyhd1' }, - ['1275174122'] = { Name = 'id1_17_fizzyhd2' }, - ['-1242992456'] = { Name = 'id1_17_fizzyhd3' }, - ['19670922'] = { Name = 'id1_17_graff01' }, - ['1383451164'] = { Name = 'id1_17_graff02' }, - ['860089506'] = { Name = 'id1_17_id1_detail001' }, - ['1348280255'] = { Name = 'id1_17_junk' }, - ['256685522'] = { Name = 'id1_17_ladder0' }, - ['-132926695'] = { Name = 'id1_17_ladder009' }, - ['612709397'] = { Name = 'id1_17_ladder01' }, - ['1982682976'] = { Name = 'id1_17_ladder02' }, - ['-194948146'] = { Name = 'id1_17_ladder03' }, - ['498487973'] = { Name = 'id1_17_ladder1' }, - ['1889466489'] = { Name = 'id1_17_ladder2' }, - ['-13560421'] = { Name = 'id1_17_ladder3' }, - ['1206134532'] = { Name = 'id1_17_ladder4' }, - ['1656380592'] = { Name = 'id1_17_ladder5' }, - ['-1440060529'] = { Name = 'id1_17_ladder6' }, - ['944015301'] = { Name = 'id1_17_ladder7' }, - ['2096730414'] = { Name = 'id1_17_ladder8' }, - ['-1170419881'] = { Name = 'id1_17_land1_o1' }, - ['-1677946153'] = { Name = 'id1_17_land1_o2' }, - ['362935018'] = { Name = 'id1_17_land1' }, - ['1943482119'] = { Name = 'id1_17_land2' }, - ['-888393551'] = { Name = 'id1_17_olays1' }, - ['-188349400'] = { Name = 'id1_17_olays2' }, - ['50110613'] = { Name = 'id1_17_olays3' }, - ['575332145'] = { Name = 'id1_17_olays4' }, - ['814250924'] = { Name = 'id1_17_olays5' }, - ['1268494802'] = { Name = 'id1_17_olays6' }, - ['-1679371673'] = { Name = 'id1_17_olays7' }, - ['-1105114333'] = { Name = 'id1_17_proxy' }, - ['960645863'] = { Name = 'id1_17_raiings2' }, - ['1848764571'] = { Name = 'id1_17_railing' }, - ['751676500'] = { Name = 'id1_17_railing004' }, - ['2059611136'] = { Name = 'id1_17_railing01' }, - ['-2005907622'] = { Name = 'id1_17_railing02' }, - ['168814483'] = { Name = 'id1_17_railing22' }, - ['-1075457220'] = { Name = 'id1_17_railing23' }, - ['-1614185668'] = { Name = 'id1_17_railing3' }, - ['-825118108'] = { Name = 'id1_17_railings_002' }, - ['747138516'] = { Name = 'id1_17_railings_003' }, - ['-97613535'] = { Name = 'id1_17_railings_004' }, - ['-559099242'] = { Name = 'id1_17_railings_005' }, - ['-253266165'] = { Name = 'id1_17_railings_006' }, - ['-2110991122'] = { Name = 'id1_17_railings001' }, - ['1795494824'] = { Name = 'id1_17_railings01' }, - ['1322708159'] = { Name = 'id1_17_railings010' }, - ['1552713770'] = { Name = 'id1_17_railings011' }, - ['634165931'] = { Name = 'id1_17_railings016' }, - ['-1273387568'] = { Name = 'id1_17_railings03' }, - ['96085951'] = { Name = 'id1_17_railings1' }, - ['-1613528036'] = { Name = 'id1_17_railings10' }, - ['-1375330175'] = { Name = 'id1_17_railings11' }, - ['72469783'] = { Name = 'id1_17_railings12' }, - ['312175018'] = { Name = 'id1_17_railings13' }, - ['-228644558'] = { Name = 'id1_17_railings14' }, - ['1210111156'] = { Name = 'id1_17_railings15' }, - ['1439985691'] = { Name = 'id1_17_railings16' }, - ['666735598'] = { Name = 'id1_17_railings17' }, - ['-1959273759'] = { Name = 'id1_17_railings19' }, - ['453244075'] = { Name = 'id1_17_railings20' }, - ['-188635097'] = { Name = 'id1_17_railings21' }, - ['-1341064090'] = { Name = 'id1_17_railings3' }, - ['2127305181'] = { Name = 'id1_17_railings4' }, - ['-861751919'] = { Name = 'id1_17_railings5' }, - ['-1588502809'] = { Name = 'id1_17_railings6' }, - ['-1230468603'] = { Name = 'id1_17_railings7' }, - ['-429299322'] = { Name = 'id1_17_railings8' }, - ['-1791047926'] = { Name = 'id1_17_railings9' }, - ['1410474254'] = { Name = 'id1_17_rain_blockers_00' }, - ['344334831'] = { Name = 'id1_17_rain_blockers_09' }, - ['1606895448'] = { Name = 'id1_17_smoke_proxy' }, - ['-798695753'] = { Name = 'id1_17_structure1' }, - ['-557876372'] = { Name = 'id1_17_structure2' }, - ['-1376937527'] = { Name = 'id1_17_structure3' }, - ['-1169902985'] = { Name = 'id1_17_structure4' }, - ['-2017899167'] = { Name = 'id1_17_structure5' }, - ['1110693184'] = { Name = 'id1_17_tower' }, - ['752352199'] = { Name = 'id1_17_wires_01' }, - ['1598447779'] = { Name = 'id1_17_wires_02' }, - ['1317879601'] = { Name = 'id1_17_wires_03' }, - ['1778418704'] = { Name = 'id1_18_armcojl001' }, - ['-1567050830'] = { Name = 'id1_18_build1_dt1_02' }, - ['-1781684617'] = { Name = 'id1_18_build1_dt1_det01' }, - ['-114674258'] = { Name = 'id1_18_build1_dt1' }, - ['-368339087'] = { Name = 'id1_18_build1_dt2' }, - ['483261685'] = { Name = 'id1_18_build1_dt3' }, - ['225861190'] = { Name = 'id1_18_build1_dt4' }, - ['-200655745'] = { Name = 'id1_18_build1_o1' }, - ['1161977594'] = { Name = 'id1_18_build1_o2' }, - ['1612289192'] = { Name = 'id1_18_build1_o3' }, - ['1512889534'] = { Name = 'id1_18_build1' }, - ['-25828824'] = { Name = 'id1_18_build2_o' }, - ['-272758814'] = { Name = 'id1_18_build2' }, - ['1203435255'] = { Name = 'id1_18_cablemesh127924_hvhvy' }, - ['1484611178'] = { Name = 'id1_18_cablemesh127931_hvhvy' }, - ['572572139'] = { Name = 'id1_18_fence323' }, - ['-2048592051'] = { Name = 'id1_18_ground_det' }, - ['-1408460014'] = { Name = 'id1_18_ground_o' }, - ['535613770'] = { Name = 'id1_18_ground_o2' }, - ['-1743860630'] = { Name = 'id1_18_ground' }, - ['1789719824'] = { Name = 'id1_18_ground2' }, - ['-1755566824'] = { Name = 'id1_18_ground2b_o' }, - ['-260265159'] = { Name = 'id1_18_interior_glue_ceiling' }, - ['-1977964782'] = { Name = 'id1_18_ladder004' }, - ['2017985389'] = { Name = 'id1_18_ladder005' }, - ['-1485446712'] = { Name = 'id1_18_ladder006' }, - ['103338597'] = { Name = 'id1_18_ladder1' }, - ['1555988367'] = { Name = 'id1_18_ladder2' }, - ['-360506598'] = { Name = 'id1_18_ladder3' }, - ['609705379'] = { Name = 'id1_18_railing01' }, - ['842266972'] = { Name = 'id1_18_railing02' }, - ['-1193670998'] = { Name = 'id1_18_railing03' }, - ['-968253047'] = { Name = 'id1_18_railing04' }, - ['1799416697'] = { Name = 'id1_18_railing05' }, - ['955483871'] = { Name = 'id1_18_railing06' }, - ['-5270444'] = { Name = 'id1_18_railing07' }, - ['-1460606634'] = { Name = 'id1_18_seawall_00' }, - ['-1051921562'] = { Name = 'id1_18_seawall_00d2' }, - ['2042519447'] = { Name = 'id1_18_seawall_00x' }, - ['1455441142'] = { Name = 'id1_18_seawall_03' }, - ['-2059514499'] = { Name = 'id1_18_sw00_dcl03' }, - ['-890021642'] = { Name = 'id1_18_sw00_dcl04' }, - ['-1997820360'] = { Name = 'id1_18_sw00_g0' }, - ['1940489140'] = { Name = 'id1_18_sw00_g1' }, - ['1783099633'] = { Name = 'id1_18_sw00_g2' }, - ['1544377468'] = { Name = 'id1_18_sw00_g3' }, - ['1341537358'] = { Name = 'id1_18_sw00_g4' }, - ['984617410'] = { Name = 'id1_18_sw00_g5' }, - ['-1684646490'] = { Name = 'id1_18_tanks_o' }, - ['-160309116'] = { Name = 'id1_18_tanks' }, - ['-534772089'] = { Name = 'id1_18_wall302' }, - ['-1023934834'] = { Name = 'id1_19_armco1' }, - ['-138204377'] = { Name = 'id1_19_armco2_lod' }, - ['-1329964525'] = { Name = 'id1_19_armco2' }, - ['-1754519689'] = { Name = 'id1_19_armco3' }, - ['374777134'] = { Name = 'id1_19_armco4' }, - ['-812030424'] = { Name = 'id1_19_detail1' }, - ['-1107901725'] = { Name = 'id1_19_detail2' }, - ['1133265317'] = { Name = 'id1_19_ds00' }, - ['-182377264'] = { Name = 'id1_19_ds01' }, - ['-283731781'] = { Name = 'id1_19_ds02' }, - ['506633224'] = { Name = 'id1_19_ds661' }, - ['342553023'] = { Name = 'id1_19_ds81' }, - ['-1270468189'] = { Name = 'id1_19_ds82' }, - ['876032631'] = { Name = 'id1_19_ds90' }, - ['668998089'] = { Name = 'id1_19_ds91' }, - ['26758458'] = { Name = 'id1_19_ds92' }, - ['1192093795'] = { Name = 'id1_19_glue' }, - ['-1090820498'] = { Name = 'id1_19_ground1_o' }, - ['-465476234'] = { Name = 'id1_19_ground1' }, - ['665856808'] = { Name = 'id1_19_ladder' }, - ['1848856508'] = { Name = 'id1_19_ladder001' }, - ['2010997520'] = { Name = 'id1_19_ladder002' }, - ['298915573'] = { Name = 'id1_19_ladder003' }, - ['-1881152165'] = { Name = 'id1_19_new_wires1' }, - ['-1014725828'] = { Name = 'id1_19_pipes1' }, - ['-240263282'] = { Name = 'id1_19_pipes2' }, - ['1707638670'] = { Name = 'id1_19_railing' }, - ['251994089'] = { Name = 'id1_19_railing001' }, - ['476166818'] = { Name = 'id1_19_railing002' }, - ['1640187236'] = { Name = 'id1_19_railing003' }, - ['1879499243'] = { Name = 'id1_19_railing004' }, - ['1162906751'] = { Name = 'id1_19_railing005' }, - ['1399269548'] = { Name = 'id1_19_railing006' }, - ['-1643430441'] = { Name = 'id1_19_railing007' }, - ['-1412441760'] = { Name = 'id1_19_railing008' }, - ['1619804890'] = { Name = 'id1_19_railing009' }, - ['-1993697350'] = { Name = 'id1_19_railing010' }, - ['-450539634'] = { Name = 'id1_19_railing011' }, - ['-1906138614'] = { Name = 'id1_19_railing012' }, - ['-675826509'] = { Name = 'id1_19_railing013' }, - ['-219223263'] = { Name = 'id1_19_railing014' }, - ['899248245'] = { Name = 'id1_19_railing015' }, - ['667604184'] = { Name = 'id1_19_railing016' }, - ['434485518'] = { Name = 'id1_19_railing017' }, - ['206577123'] = { Name = 'id1_19_railing018' }, - ['317303578'] = { Name = 'id1_19_railing019' }, - ['1499117243'] = { Name = 'id1_19_railing020' }, - ['1626031580'] = { Name = 'id1_19_railing021' }, - ['1926130082'] = { Name = 'id1_19_railing022' }, - ['-1939333931'] = { Name = 'id1_19_railing023' }, - ['-568147895'] = { Name = 'id1_19_railing024' }, - ['-1456548254'] = { Name = 'id1_19_railing025' }, - ['-1142686772'] = { Name = 'id1_19_railing026' }, - ['970651604'] = { Name = 'id1_19_railing027' }, - ['187406966'] = { Name = 'id1_19_railing028' }, - ['-766728007'] = { Name = 'id1_19_railing029' }, - ['2075555350'] = { Name = 'id1_19_railing030' }, - ['1412474631'] = { Name = 'id1_19_railing031' }, - ['1652442018'] = { Name = 'id1_19_railing032' }, - ['1071513186'] = { Name = 'id1_19_railing033' }, - ['1312856871'] = { Name = 'id1_19_railing034' }, - ['89885022'] = { Name = 'id1_19_railing035' }, - ['705876684'] = { Name = 'id1_19_railing036' }, - ['-525025263'] = { Name = 'id1_19_railing037' }, - ['-142414419'] = { Name = 'id1_19_railing038' }, - ['-293708896'] = { Name = 'id1_19_railing039' }, - ['51676052'] = { Name = 'id1_19_railing040' }, - ['375719238'] = { Name = 'id1_19_structures1' }, - ['-2136679996'] = { Name = 'id1_19_structures2' }, - ['-2075119759'] = { Name = 'id1_19_tanker_fizz1' }, - ['1918733196'] = { Name = 'id1_19_tanker_fizz2' }, - ['950114325'] = { Name = 'id1_19_tanker_fizz3' }, - ['-1495239535'] = { Name = 'id1_19_tanker_fizz4' }, - ['223368711'] = { Name = 'id1_20_detail1' }, - ['-629390519'] = { Name = 'id1_20_detail1a' }, - ['-800117009'] = { Name = 'id1_20_detail1b' }, - ['689510302'] = { Name = 'id1_20_detail1ba' }, - ['213573342'] = { Name = 'id1_20_detail1bb' }, - ['-1106212238'] = { Name = 'id1_20_detail1c' }, - ['-1293650918'] = { Name = 'id1_20_detail1d' }, - ['-1584213641'] = { Name = 'id1_20_detail1e' }, - ['1723206323'] = { Name = 'id1_20_detail1e1' }, - ['-1283382200'] = { Name = 'id1_20_detail1e2' }, - ['-1738031327'] = { Name = 'id1_20_detail1f' }, - ['-854959422'] = { Name = 'id1_20_detail1f1' }, - ['-1416882238'] = { Name = 'id1_20_detail1f2' }, - ['-982889602'] = { Name = 'id1_20_detail1f3' }, - ['-2061690740'] = { Name = 'id1_20_detail1g' }, - ['-1405486611'] = { Name = 'id1_20_detail2_plat_2' }, - ['572574781'] = { Name = 'id1_20_detail2_plat' }, - ['147213374'] = { Name = 'id1_20_detail2_plat3' }, - ['393603485'] = { Name = 'id1_20_detail2_plat4' }, - ['633860253'] = { Name = 'id1_20_detail2_support' }, - ['1215548493'] = { Name = 'id1_20_detail2' }, - ['-1917681241'] = { Name = 'id1_20_detail2-1' }, - ['-1610865094'] = { Name = 'id1_20_detail2-2' }, - ['1190881762'] = { Name = 'id1_20_detail25' }, - ['-1210987631'] = { Name = 'id1_20_detail2a' }, - ['-1374102900'] = { Name = 'id1_20_detail2a001' }, - ['-2146051046'] = { Name = 'id1_20_detail2b' }, - ['-1370784206'] = { Name = 'id1_20_detail2b001' }, - ['1402176278'] = { Name = 'id1_20_detail2c' }, - ['-758753438'] = { Name = 'id1_20_ladder' }, - ['-158451028'] = { Name = 'id1_20_ladder001' }, - ['-858097100'] = { Name = 'id1_20_ladder01' }, - ['-1089151319'] = { Name = 'id1_20_ladder02' }, - ['-165098288'] = { Name = 'id1_20_ladder03' }, - ['-527261276'] = { Name = 'id1_20_ladder04' }, - ['-2078218054'] = { Name = 'id1_20_ladder05' }, - ['1977568311'] = { Name = 'id1_20_ladder06' }, - ['-1448496173'] = { Name = 'id1_20_ladder07' }, - ['-1687218338'] = { Name = 'id1_20_ladder08' }, - ['1061641992'] = { Name = 'id1_20_ladder09' }, - ['-1880718419'] = { Name = 'id1_20_ladder10' }, - ['760843283'] = { Name = 'id1_20_olay1' }, - ['-1046199584'] = { Name = 'id1_20_railing' }, - ['-493161973'] = { Name = 'id1_20_railing01' }, - ['-1102468759'] = { Name = 'id1_20_railing02' }, - ['-1927133393'] = { Name = 'id1_20_railing03' }, - ['-1687428158'] = { Name = 'id1_20_railing04' }, - ['2006162450'] = { Name = 'id1_20_railing05' }, - ['-2048247617'] = { Name = 'id1_20_railing06' }, - ['1412879705'] = { Name = 'id1_20_railing07' }, - ['1652847092'] = { Name = 'id1_20_railing08' }, - ['1056320216'] = { Name = 'id1_20_railing09' }, - ['1287570749'] = { Name = 'id1_20_railing10' }, - ['1525703072'] = { Name = 'id1_20_railing11' }, - ['602698645'] = { Name = 'id1_20_railing12' }, - ['-106291439'] = { Name = 'id1_20_railing13' }, - ['-1093719716'] = { Name = 'id1_20_railing14' }, - ['361158346'] = { Name = 'id1_20_railing15' }, - ['-632102813'] = { Name = 'id1_20_railing16' }, - ['-1324053017'] = { Name = 'id1_20_railing17' }, - ['2047713230'] = { Name = 'id1_20_railing18' }, - ['-864074564'] = { Name = 'id1_20_railing19' }, - ['246576465'] = { Name = 'id1_20_railing20' }, - ['-50802210'] = { Name = 'id1_20_railing21' }, - ['-1306117062'] = { Name = 'id1_20_railing22' }, - ['-1609721847'] = { Name = 'id1_20_railing23' }, - ['1195370095'] = { Name = 'id1_20_railing24' }, - ['904938448'] = { Name = 'id1_20_railing25' }, - ['-325242585'] = { Name = 'id1_20_railing26' }, - ['-647427393'] = { Name = 'id1_20_railing27' }, - ['-2047450149'] = { Name = 'id1_20_railing28' }, - ['1918778539'] = { Name = 'id1_20_railing29' }, - ['-818547391'] = { Name = 'id1_20_railing30' }, - ['-1115467300'] = { Name = 'id1_20_railing31' }, - ['-683932339'] = { Name = 'id1_20_railing32' }, - ['1165517256'] = { Name = 'id1_20_railing33' }, - ['-102872431'] = { Name = 'id1_20_railing34' }, - ['-393205771'] = { Name = 'id1_20_railing35' }, - ['-318801896'] = { Name = 'id1_20_struct1' }, - ['-1771778672'] = { Name = 'id1_20_struct2_decal' }, - ['-68053508'] = { Name = 'id1_20_struct2' }, - ['1930727578'] = { Name = 'id1_21_detail1' }, - ['-213623391'] = { Name = 'id1_21_detail1a' }, - ['-1760910041'] = { Name = 'id1_21_detail1b' }, - ['-933230643'] = { Name = 'id1_21_detail1x' }, - ['483307693'] = { Name = 'id1_21_detail1z' }, - ['-1244190271'] = { Name = 'id1_21_glue' }, - ['106760922'] = { Name = 'id1_21_land' }, - ['-2124452460'] = { Name = 'id1_21_land2' }, - ['1997025477'] = { Name = 'id1_21_olay1' }, - ['-667055062'] = { Name = 'id1_21_olay1a' }, - ['1387299074'] = { Name = 'id1_21_olay1b' }, - ['1755032792'] = { Name = 'id1_21_olay1c' }, - ['791722499'] = { Name = 'id1_21_olay1d' }, - ['1758565464'] = { Name = 'id1_21_olay2' }, - ['139744091'] = { Name = 'id1_21_olay3' }, - ['-1322289272'] = { Name = 'id1_21_pipes01' }, - ['-2105468372'] = { Name = 'id1_21_pipes02' }, - ['81895155'] = { Name = 'id1_21_pipes03' }, - ['135701853'] = { Name = 'id1_21_pipes04' }, - ['-1786405311'] = { Name = 'id1_21_railing01' }, - ['736381696'] = { Name = 'id1_21_railing02' }, - ['1579626373'] = { Name = 'id1_21_railing03' }, - ['1285262446'] = { Name = 'id1_21_railing04' }, - ['1859309788'] = { Name = 'id1_21_railing05' }, - ['-250522281'] = { Name = 'id1_21_railing06' }, - ['593345011'] = { Name = 'id1_21_railing07' }, - ['350493952'] = { Name = 'id1_21_railing08' }, - ['934765222'] = { Name = 'id1_21_railing09' }, - ['1394613459'] = { Name = 'id1_21_railing10' }, - ['160034413'] = { Name = 'id1_21_railing11_lod' }, - ['1626519672'] = { Name = 'id1_21_railing11' }, - ['-1347201540'] = { Name = 'id1_21_railing12' }, - ['-1117851309'] = { Name = 'id1_21_railing13' }, - ['2146563706'] = { Name = 'id1_21_railing14' }, - ['242520961'] = { Name = 'id1_21_railing15' }, - ['-1577292060'] = { Name = 'id1_21_railing16_lod' }, - ['1255279675'] = { Name = 'id1_21_railing16' }, - ['1494657220'] = { Name = 'id1_21_railing17' }, - ['1102051831'] = { Name = 'id1_21_railing18' }, - ['-958331817'] = { Name = 'id1_21_railing19' }, - ['378279184'] = { Name = 'id1_21_railing20' }, - ['-2065731147'] = { Name = 'id1_21_railing21' }, - ['1020813736'] = { Name = 'id1_21_railing22' }, - ['706821178'] = { Name = 'id1_21_railing23' }, - ['-614953325'] = { Name = 'id1_21_structure1' }, - ['-218561004'] = { Name = 'id1_21_structure1b' }, - ['-1932360525'] = { Name = 'id1_23_bridge_o' }, - ['198612563'] = { Name = 'id1_23_cable_00' }, - ['-442676767'] = { Name = 'id1_23_cable_01' }, - ['-682513078'] = { Name = 'id1_23_cable_02' }, - ['921758859'] = { Name = 'id1_23_cable_03' }, - ['681398244'] = { Name = 'id1_23_cable_04' }, - ['300098160'] = { Name = 'id1_23_cable_05' }, - ['62424603'] = { Name = 'id1_23_cable_06' }, - ['2035773783'] = { Name = 'id1_23_cable_08' }, - ['1804654026'] = { Name = 'id1_23_cable_09' }, - ['-560727770'] = { Name = 'id1_23_cable_10' }, - ['1545598000'] = { Name = 'id1_23_cable_11' }, - ['787061188'] = { Name = 'id1_23_cable_12' }, - ['1100824363'] = { Name = 'id1_23_cable_13' }, - ['-1843077047'] = { Name = 'id1_23_cable_14' }, - ['353003014'] = { Name = 'id1_23_cable_15' }, - ['-1219105263'] = { Name = 'id1_23_detail1' }, - ['334572202'] = { Name = 'id1_23_fencehd' }, - ['-1607773393'] = { Name = 'id1_23_ground_o' }, - ['420735558'] = { Name = 'id1_23_ground' }, - ['1014347776'] = { Name = 'id1_23_mp1_o' }, - ['-235227952'] = { Name = 'id1_23_mp1' }, - ['1798222998'] = { Name = 'id1_23_mp1b' }, - ['-464479876'] = { Name = 'id1_23_mp2' }, - ['931120197'] = { Name = 'id1_23_mp2b_o' }, - ['1133504625'] = { Name = 'id1_23_mp2b' }, - ['1273758101'] = { Name = 'id1_23_olay1' }, - ['-1276626286'] = { Name = 'id1_23_pipes1' }, - ['66926527'] = { Name = 'id1_23_railing_hd1' }, - ['389504587'] = { Name = 'id1_23_railing_hd2' }, - ['697139963'] = { Name = 'id1_23_railing_hd3' }, - ['-229010288'] = { Name = 'id1_23_railing_hd4' }, - ['-1721116751'] = { Name = 'id1_23_shadproxy' }, - ['-129207290'] = { Name = 'id1_23_structure1' }, - ['-737465468'] = { Name = 'id1_23_structure2' }, - ['1061252021'] = { Name = 'id1_24_armco' }, - ['1981319390'] = { Name = 'id1_24_grnd_o' }, - ['-936087239'] = { Name = 'id1_24_ground_3_sd' }, - ['259017622'] = { Name = 'id1_24_olay1' }, - ['-740438901'] = { Name = 'id1_24_railing1' }, - ['-154697733'] = { Name = 'id1_24_railing10' }, - ['-462628026'] = { Name = 'id1_24_railing11' }, - ['-125631626'] = { Name = 'id1_24_railing12' }, - ['758738146'] = { Name = 'id1_24_railing13' }, - ['464570833'] = { Name = 'id1_24_railing14' }, - ['1366046023'] = { Name = 'id1_24_railing15' }, - ['1165303129'] = { Name = 'id1_24_railing16' }, - ['1983315676'] = { Name = 'id1_24_railing17' }, - ['1675385383'] = { Name = 'id1_24_railing18' }, - ['1984631135'] = { Name = 'id1_24_railing2' }, - ['-2007321214'] = { Name = 'id1_24_railing3' }, - ['2031097581'] = { Name = 'id1_24_railing4' }, - ['-1421444263'] = { Name = 'id1_24_railing5' }, - ['-1656823990'] = { Name = 'id1_24_railing6' }, - ['1064772540'] = { Name = 'id1_24_railing7' }, - ['798655491'] = { Name = 'id1_24_railing8' }, - ['1649207655'] = { Name = 'id1_24_railing9' }, - ['-1205569168'] = { Name = 'id1_24_rain_blockers_02' }, - ['1512006296'] = { Name = 'id1_24_structure1' }, - ['-622271439'] = { Name = 'id1_24_structure2' }, - ['81213453'] = { Name = 'id1_24_structure3' }, - ['1193690709'] = { Name = 'id1_25_billboard01' }, - ['1351496928'] = { Name = 'id1_25_decalgarage001' }, - ['442661702'] = { Name = 'id1_25_glue01' }, - ['188538107'] = { Name = 'id1_25_glue02' }, - ['-1376509333'] = { Name = 'id1_25_glue03' }, - ['-1598453770'] = { Name = 'id1_25_glue04' }, - ['-750326512'] = { Name = 'id1_25_glue05' }, - ['1080790391'] = { Name = 'id1_25_graf' }, - ['-19432394'] = { Name = 'id1_25_ground1' }, - ['-2096210574'] = { Name = 'id1_25_ground1decal' }, - ['-1736066888'] = { Name = 'id1_25_ground1decal02' }, - ['405931033'] = { Name = 'id1_25_ground2_decal01' }, - ['1583681666'] = { Name = 'id1_25_ground2_decal02' }, - ['-384151364'] = { Name = 'id1_25_ground2' }, - ['-1318225708'] = { Name = 'id1_25_lest_detail' }, - ['1252967170'] = { Name = 'id1_25_lest_detail2' }, - ['1581371151'] = { Name = 'id1_25_pole' }, - ['-1586829364'] = { Name = 'id1_25_pole1' }, - ['-1836725758'] = { Name = 'id1_25_pole2' }, - ['1153937031'] = { Name = 'id1_25_pole3' }, - ['-816987251'] = { Name = 'id1_25_pole4' }, - ['-2127386792'] = { Name = 'id1_25_pole5' }, - ['1927908038'] = { Name = 'id1_25_pole6' }, - ['377836027'] = { Name = 'id1_25_pole8' }, - ['-1428566260'] = { Name = 'id1_25_railing' }, - ['1039098499'] = { Name = 'id1_25_razorwire' }, - ['1626601703'] = { Name = 'id1_25_shop_dtl' }, - ['713122771'] = { Name = 'id1_25_shopland' }, - ['150846835'] = { Name = 'id1_25_structure1' }, - ['1405113079'] = { Name = 'id1_25_structure2' }, - ['-1844818054'] = { Name = 'id1_25_structurem' }, - ['14043937'] = { Name = 'id1_26_bridge' }, - ['-1933428199'] = { Name = 'id1_26_build_b_pipes' }, - ['-189847431'] = { Name = 'id1_26_build_b' }, - ['91224084'] = { Name = 'id1_26_build_barrier' }, - ['845826842'] = { Name = 'id1_26_build_barrier1' }, - ['673592978'] = { Name = 'id1_26_build_barrier2' }, - ['394040639'] = { Name = 'id1_26_build_barrier3' }, - ['502516190'] = { Name = 'id1_26_build_bdtl' }, - ['-67924697'] = { Name = 'id1_26_build_bdtl3' }, - ['224236745'] = { Name = 'id1_26_build_bits' }, - ['-661241242'] = { Name = 'id1_26_build_bs' }, - ['829866653'] = { Name = 'id1_26_build_dtl' }, - ['1465904905'] = { Name = 'id1_26_build_dtl4' }, - ['-367693595'] = { Name = 'id1_26_build_support' }, - ['-205592968'] = { Name = 'id1_26_building_pipes2' }, - ['-1199670123'] = { Name = 'id1_26_building_sign' }, - ['-1526993003'] = { Name = 'id1_26_building' }, - ['991637025'] = { Name = 'id1_26_cables01' }, - ['-2020391148'] = { Name = 'id1_26_cables02' }, - ['242705565'] = { Name = 'id1_26_ground' }, - ['777166980'] = { Name = 'id1_26_ladder003' }, - ['-1039304255'] = { Name = 'id1_26_ladder01' }, - ['-1912467029'] = { Name = 'id1_26_ladder02' }, - ['-1826871787'] = { Name = 'id1_26_olay003' }, - ['1242321226'] = { Name = 'id1_26_olay1' }, - ['-1966139000'] = { Name = 'id1_26_pole01' }, - ['-460094281'] = { Name = 'id1_26_railing01' }, - ['334672495'] = { Name = 'id1_26_railing014' }, - ['-1812843920'] = { Name = 'id1_26_railing015' }, - ['-227598230'] = { Name = 'id1_26_railing02' }, - ['439635918'] = { Name = 'id1_26_railing024' }, - ['-948295077'] = { Name = 'id1_26_railing025' }, - ['-313231857'] = { Name = 'id1_26_railing026' }, - ['-587344542'] = { Name = 'id1_26_railing027' }, - ['-1961971323'] = { Name = 'id1_26_railing028' }, - ['-2139054999'] = { Name = 'id1_26_railing029' }, - ['533822254'] = { Name = 'id1_26_railing03' }, - ['-254444583'] = { Name = 'id1_26_railing030' }, - ['302243731'] = { Name = 'id1_26_railing04' }, - ['-1150537115'] = { Name = 'id1_26_railing05' }, - ['-1380608264'] = { Name = 'id1_26_railing06' }, - ['-678827360'] = { Name = 'id1_26_railing07' }, - ['-920629811'] = { Name = 'id1_26_railing08' }, - ['1930338731'] = { Name = 'id1_26_railing09' }, - ['-1638631202'] = { Name = 'id1_26_railing10' }, - ['-1950985310'] = { Name = 'id1_26_railing11' }, - ['-1673399123'] = { Name = 'id1_26_railing12' }, - ['-1979494352'] = { Name = 'id1_26_railing13' }, - ['-458585567'] = { Name = 'id1_27_cablemesh6268_hvhvy' }, - ['-619211429'] = { Name = 'id1_27_ladder' }, - ['-398071101'] = { Name = 'id1_27_ladder003' }, - ['443432678'] = { Name = 'id1_27_ladder103' }, - ['-1270595048'] = { Name = 'id1_27_land01' }, - ['-1926937851'] = { Name = 'id1_27_land01a_o' }, - ['-2127145627'] = { Name = 'id1_27_land01c_o' }, - ['-1018019402'] = { Name = 'id1_27_lockup' }, - ['1798934875'] = { Name = 'id1_27_railing01' }, - ['1917550295'] = { Name = 'id1_27_railing012' }, - ['1016075105'] = { Name = 'id1_27_railing013' }, - ['-1446974007'] = { Name = 'id1_27_railing016' }, - ['-211626547'] = { Name = 'id1_27_railing016l' }, - ['-831113425'] = { Name = 'id1_27_railing019' }, - ['1316109481'] = { Name = 'id1_27_railing021' }, - ['-828057552'] = { Name = 'id1_27_railing03' }, - ['-1329528159'] = { Name = 'id1_27_railing03a' }, - ['-419205339'] = { Name = 'id1_27_railing03b' }, - ['-709899138'] = { Name = 'id1_27_railing03c' }, - ['-1985727384'] = { Name = 'id1_27_railing03d' }, - ['88720813'] = { Name = 'id1_27_railing08' }, - ['-1998653'] = { Name = 'id1_27_rain_blockers_05' }, - ['1910752124'] = { Name = 'id1_27_tg_duct_1' }, - ['1268003899'] = { Name = 'id1_27_tg_duct_wires' }, - ['-1923312078'] = { Name = 'id1_27_tg_duct' }, - ['1403132650'] = { Name = 'id1_27_tg_fence_o' }, - ['-1232972594'] = { Name = 'id1_27_tg_fence' }, - ['-1843297820'] = { Name = 'id1_27_tg_test_det1' }, - ['-339626709'] = { Name = 'id1_27_tg_test_det2' }, - ['77058772'] = { Name = 'id1_27_tg_test_o' }, - ['1635643581'] = { Name = 'id1_27_tg_test' }, - ['1244728374'] = { Name = 'id1_27_tg_test2_det2' }, - ['728470765'] = { Name = 'id1_27_tg_test2_o' }, - ['-1262005893'] = { Name = 'id1_27_tg_test2' }, - ['-2138582100'] = { Name = 'id1_28_build07_o' }, - ['-457448959'] = { Name = 'id1_28_build10_d' }, - ['844940638'] = { Name = 'id1_28_build11' }, - ['-2006114010'] = { Name = 'id1_28_glue' }, - ['984059176'] = { Name = 'id1_28_ladder01' }, - ['1287631192'] = { Name = 'id1_28_ladder02' }, - ['-1716958418'] = { Name = 'id1_28_ladder03' }, - ['-1411715183'] = { Name = 'id1_28_ladder04' }, - ['922803813'] = { Name = 'id1_28_land01_o' }, - ['-1321352694'] = { Name = 'id1_28_land01' }, - ['-159244623'] = { Name = 'id1_28_land01b' }, - ['381545542'] = { Name = 'id1_28_props_cable00' }, - ['-479558240'] = { Name = 'id1_28_props_cable01' }, - ['-183981860'] = { Name = 'id1_28_props_cable02' }, - ['-812327435'] = { Name = 'id1_28_props_cable03' }, - ['-539591048'] = { Name = 'id1_28_props_cable04' }, - ['-883468890'] = { Name = 'id1_28_props_cable05' }, - ['-585533142'] = { Name = 'id1_28_props_cable06' }, - ['-1737527385'] = { Name = 'id1_28_props_cable07' }, - ['-1167150123'] = { Name = 'id1_28_props_cable08' }, - ['1958357053'] = { Name = 'id1_28_props_cable09' }, - ['-2076228061'] = { Name = 'id1_28_props_cable10' }, - ['-686429233'] = { Name = 'id1_28_props_cable11' }, - ['-1585282903'] = { Name = 'id1_28_props_cable12' }, - ['1265259642'] = { Name = 'id1_28_props_cable13' }, - ['1396139028'] = { Name = 'id1_28_props_cable14' }, - ['1704823008'] = { Name = 'id1_28_props_cable15' }, - ['1994206047'] = { Name = 'id1_28_props_cable16' }, - ['1080114788'] = { Name = 'id1_28_props_cable17' }, - ['171037190'] = { Name = 'id1_28_props_cable18' }, - ['1149093533'] = { Name = 'id1_28_props_cable19' }, - ['-1105249010'] = { Name = 'id1_28_props_cable20' }, - ['-196073117'] = { Name = 'id1_28_props_cable21' }, - ['33703111'] = { Name = 'id1_28_props_cable22' }, - ['-943370162'] = { Name = 'id1_28_props_cable23' }, - ['-415461572'] = { Name = 'id1_28_props_cable24' }, - ['1029553021'] = { Name = 'id1_28_props_cable25' }, - ['1423311845'] = { Name = 'id1_28_props_cablemesh98860' }, - ['-878074860'] = { Name = 'id1_28_railings01' }, - ['-1488692398'] = { Name = 'id1_28_railings02' }, - ['-1240860451'] = { Name = 'id1_28_railings03' }, - ['-1162280389'] = { Name = 'id1_28_railings04' }, - ['-644268037'] = { Name = 'id1_28_railings05' }, - ['1891167800'] = { Name = 'id1_28_railings06' }, - ['1057229519'] = { Name = 'id1_28_railings07' }, - ['-859122088'] = { Name = 'id1_28_wires' }, - ['-1403748097'] = { Name = 'id1_29_bld2_dtl' }, - ['2079147100'] = { Name = 'id1_29_bld2' }, - ['-353651413'] = { Name = 'id1_29_cablemesh245219_thvy' }, - ['-926978890'] = { Name = 'id1_29_cablemesh246160_thvy' }, - ['1840226878'] = { Name = 'id1_29_cablemesh246164_thvy' }, - ['1626658361'] = { Name = 'id1_29_cablemesh246171_thvy' }, - ['-670110690'] = { Name = 'id1_29_cablemesh246173_thvy' }, - ['787619157'] = { Name = 'id1_29_cablemesh246174_thvy' }, - ['1047442561'] = { Name = 'id1_29_cablemesh246175_thvy' }, - ['-1475310076'] = { Name = 'id1_29_cablemesh246182_thvy' }, - ['1243938972'] = { Name = 'id1_29_cablemesh246184_thvy' }, - ['2080623674'] = { Name = 'id1_29_cablemesh246188_thvy' }, - ['-148320919'] = { Name = 'id1_29_cablemesh246192_thvy' }, - ['-1508133866'] = { Name = 'id1_29_cablemesh246196_thvy' }, - ['480433763'] = { Name = 'id1_29_cablemesh246197_thvy' }, - ['360919484'] = { Name = 'id1_29_cablemesh246204_thvy' }, - ['479187090'] = { Name = 'id1_29_cablemesh28906_tstd' }, - ['-1030629225'] = { Name = 'id1_29_cablemesh29028_tstd' }, - ['881404439'] = { Name = 'id1_29_cablemesh29044_tstd' }, - ['226835269'] = { Name = 'id1_29_cablemesh29060_tstd' }, - ['-1735341379'] = { Name = 'id1_29_ground_01a' }, - ['-348884989'] = { Name = 'id1_29_ground_01b' }, - ['1134525000'] = { Name = 'id1_29_ground_dtl' }, - ['-1937660458'] = { Name = 'id1_29_ground_dtl2' }, - ['-1422730405'] = { Name = 'id1_29_ladder01' }, - ['-2145268592'] = { Name = 'id1_29_poles01' }, - ['-1911461777'] = { Name = 'id1_29_poles02' }, - ['1704859529'] = { Name = 'id1_29_poles03' }, - ['1911992378'] = { Name = 'id1_29_poles04' }, - ['1196972798'] = { Name = 'id1_29_poles05' }, - ['1452407153'] = { Name = 'id1_29_poles06' }, - ['490073851'] = { Name = 'id1_29_res_123_dtl' }, - ['-1002148637'] = { Name = 'id1_29_res_123' }, - ['-1852476438'] = { Name = 'id1_29_res_45_dtl' }, - ['-1976251149'] = { Name = 'id1_29_res_45' }, - ['20228083'] = { Name = 'id1_29_res_678_dtl' }, - ['-9290609'] = { Name = 'id1_29_res_678' }, - ['-200138709'] = { Name = 'id1_29_res_678c' }, - ['-392999230'] = { Name = 'id1_29_watertower_dtl' }, - ['-519317961'] = { Name = 'id1_29_watertower' }, - ['1875374592'] = { Name = 'id1_30_build02' }, - ['1117394853'] = { Name = 'id1_30_build03' }, - ['486231144'] = { Name = 'id1_30_build05' }, - ['-1433477446'] = { Name = 'id1_30_build05st' }, - ['-1730314678'] = { Name = 'id1_30_build3_dtl' }, - ['864311944'] = { Name = 'id1_30_build3_dtl2' }, - ['-1127481231'] = { Name = 'id1_30_decal' }, - ['-1603798600'] = { Name = 'id1_30_decal003' }, - ['1418897887'] = { Name = 'id1_30_decal01' }, - ['1714244884'] = { Name = 'id1_30_decal02' }, - ['-370176810'] = { Name = 'id1_30_ladder' }, - ['-1961828488'] = { Name = 'id1_30_ladder001' }, - ['1959867129'] = { Name = 'id1_30_ladder002' }, - ['446725769'] = { Name = 'id1_30_ladder003' }, - ['64966919'] = { Name = 'id1_30_ladder004' }, - ['-1372904032'] = { Name = 'id1_30_ladder005' }, - ['-1483794328'] = { Name = 'id1_30_ladder006' }, - ['1103613147'] = { Name = 'id1_30_ladder007' }, - ['1390711991'] = { Name = 'id1_30_ladder01' }, - ['1719647213'] = { Name = 'id1_30_ladder02' }, - ['-728508472'] = { Name = 'id1_30_ladders' }, - ['-1621348803'] = { Name = 'id1_30_railing01' }, - ['-1991966193'] = { Name = 'id1_30_railing02' }, - ['2072143498'] = { Name = 'id1_30_railing03' }, - ['1697790442'] = { Name = 'id1_30_railing04' }, - ['-428491661'] = { Name = 'id1_30_railing05' }, - ['-796356455'] = { Name = 'id1_30_railing06' }, - ['-1109562561'] = { Name = 'id1_30_railing07' }, - ['-1341796464'] = { Name = 'id1_30_railing08' }, - ['698401480'] = { Name = 'id1_30_railing09' }, - ['1025205921'] = { Name = 'id1_30_railing10' }, - ['172327158'] = { Name = 'id1_30_railing11' }, - ['563589018'] = { Name = 'id1_30_railing12' }, - ['-1537952498'] = { Name = 'id1_30_railing13' }, - ['1965217451'] = { Name = 'id1_30_railing14' }, - ['-2009072411'] = { Name = 'id1_30_railing15' }, - ['1443174512'] = { Name = 'id1_30_railing16' }, - ['-577230952'] = { Name = 'id1_30_railing17' }, - ['-1417919651'] = { Name = 'id1_30_railing18' }, - ['-1055428973'] = { Name = 'id1_30_railing19' }, - ['-415088448'] = { Name = 'id1_30_railing20' }, - ['1800882408'] = { Name = 'id1_30_railing21' }, - ['-1668601009'] = { Name = 'id1_30_railing22' }, - ['-1899720766'] = { Name = 'id1_30_railing23' }, - ['-1058999302'] = { Name = 'id1_30_railing24' }, - ['1141242434'] = { Name = 'id1_30_railing25' }, - ['909860525'] = { Name = 'id1_30_railing26' }, - ['1203405231'] = { Name = 'id1_30_railing27' }, - ['1119151396'] = { Name = 'id1_30_rain_blockers_08' }, - ['-1224990573'] = { Name = 'id1_30_weed_02' }, - ['96003248'] = { Name = 'id1_30_wires' }, - ['1092058422'] = { Name = 'id1_31_build_01_o' }, - ['-1125026576'] = { Name = 'id1_31_build_01_p' }, - ['-911416825'] = { Name = 'id1_31_build_01_pipes_2' }, - ['1907152126'] = { Name = 'id1_31_build_01_studs' }, - ['-612972372'] = { Name = 'id1_31_build_01_studsb' }, - ['1396808531'] = { Name = 'id1_31_build_01_switch' }, - ['76111706'] = { Name = 'id1_31_build_01' }, - ['469399485'] = { Name = 'id1_31_build_02_o' }, - ['-2114248784'] = { Name = 'id1_31_build_02_pipes' }, - ['-961998617'] = { Name = 'id1_31_build_02_pipes2' }, - ['860329267'] = { Name = 'id1_31_build_02_studs' }, - ['1334098620'] = { Name = 'id1_31_build_02_studs001' }, - ['-265795208'] = { Name = 'id1_31_build_02_studs3' }, - ['-235226563'] = { Name = 'id1_31_build_02' }, - ['391990276'] = { Name = 'id1_31_build_03_o' }, - ['-1206688901'] = { Name = 'id1_31_build_03_pipes' }, - ['1031050900'] = { Name = 'id1_31_build_03_pipes2' }, - ['-1607067983'] = { Name = 'id1_31_build_03' }, - ['-1170967707'] = { Name = 'id1_31_build_04_o' }, - ['-841235873'] = { Name = 'id1_31_build_04_pipes' }, - ['1907507153'] = { Name = 'id1_31_build_04_pipesa' }, - ['1065048932'] = { Name = 'id1_31_build_04_pipesb' }, - ['225276194'] = { Name = 'id1_31_build_04' }, - ['-2056530766'] = { Name = 'id1_31_build_05_drain' }, - ['-128669900'] = { Name = 'id1_31_build_05_dtl_2' }, - ['1581906787'] = { Name = 'id1_31_build_05_dtl' }, - ['-833829907'] = { Name = 'id1_31_build_05_o' }, - ['-1357301223'] = { Name = 'id1_31_build_05_pipes' }, - ['34401342'] = { Name = 'id1_31_build_05_studs' }, - ['-1976224977'] = { Name = 'id1_31_build_05_studs2' }, - ['-1146892916'] = { Name = 'id1_31_build_05' }, - ['-1647338097'] = { Name = 'id1_31_cables_00' }, - ['-951717765'] = { Name = 'id1_31_cables_01' }, - ['-1130308815'] = { Name = 'id1_31_cables_02' }, - ['-421285962'] = { Name = 'id1_31_cables_03' }, - ['-668626374'] = { Name = 'id1_31_cables_04' }, - ['925028411'] = { Name = 'id1_31_cables_05' }, - ['1160440907'] = { Name = 'id1_31_cables_06' }, - ['1444187678'] = { Name = 'id1_31_cables_07' }, - ['-795068354'] = { Name = 'id1_31_glue' }, - ['1003036999'] = { Name = 'id1_31_ladder01' }, - ['1754299093'] = { Name = 'id1_31_ladder02' }, - ['-98034170'] = { Name = 'id1_31_ladder03' }, - ['-1850607519'] = { Name = 'id1_31_land_o' }, - ['-658754062'] = { Name = 'id1_31_land_oa' }, - ['-1131741808'] = { Name = 'id1_31_land_ob' }, - ['-795316756'] = { Name = 'id1_31_land' }, - ['2079063743'] = { Name = 'id1_31_railing01' }, - ['-1786687933'] = { Name = 'id1_31_rain_blockers_01' }, - ['-2038878153'] = { Name = 'id1_31_rain_blockers_04' }, - ['807907482'] = { Name = 'id1_31_s_post' }, - ['-891694703'] = { Name = 'id1_32_build_pipe' }, - ['1227179692'] = { Name = 'id1_32_build02_o' }, - ['9568934'] = { Name = 'id1_32_build02' }, - ['813443862'] = { Name = 'id1_32_build03_o' }, - ['-370748140'] = { Name = 'id1_32_build03' }, - ['1444687342'] = { Name = 'id1_32_build04_o' }, - ['-1011971932'] = { Name = 'id1_32_build04' }, - ['801466234'] = { Name = 'id1_32_build04graf' }, - ['1693563549'] = { Name = 'id1_32_build666_s' }, - ['142073550'] = { Name = 'id1_32_build666_s2' }, - ['1046596245'] = { Name = 'id1_32_build666_s3' }, - ['-134012206'] = { Name = 'id1_32_build666a_o' }, - ['2052710401'] = { Name = 'id1_32_build666a' }, - ['-167982602'] = { Name = 'id1_32_cables_01' }, - ['657894497'] = { Name = 'id1_32_cables_02' }, - ['-1974156021'] = { Name = 'id1_32_glue' }, - ['-1835136921'] = { Name = 'id1_32_ladder01' }, - ['-1083743711'] = { Name = 'id1_32_ladder02' }, - ['-1665522170'] = { Name = 'id1_32_land01_o' }, - ['419705952'] = { Name = 'id1_32_land01' }, - ['764840366'] = { Name = 'id1_32_props_f_slod' }, - ['-222169547'] = { Name = 'id1_32_railing01' }, - ['-531410600'] = { Name = 'id1_32_railing02' }, - ['-392437243'] = { Name = 'id1_32_railing03' }, - ['-621984088'] = { Name = 'id1_32_railing04' }, - ['-851039398'] = { Name = 'id1_32_railing05' }, - ['-1080782857'] = { Name = 'id1_32_railing06' }, - ['-1385239664'] = { Name = 'id1_32_railing07' }, - ['-223140020'] = { Name = 'id1_33_decal01' }, - ['-1252952854'] = { Name = 'id1_33_decal01b' }, - ['15909835'] = { Name = 'id1_33_decal02' }, - ['-1654195019'] = { Name = 'id1_33_decal03' }, - ['-1731198176'] = { Name = 'id1_33_firedept' }, - ['808269188'] = { Name = 'id1_33_glue01' }, - ['1436942453'] = { Name = 'id1_33_glue02' }, - ['-1805812253'] = { Name = 'id1_33_glue03' }, - ['-1187395681'] = { Name = 'id1_33_glue04' }, - ['1418186463'] = { Name = 'id1_33_ground' }, - ['-1674041548'] = { Name = 'id1_33_handy01' }, - ['-503369023'] = { Name = 'id1_33_handy02' }, - ['-1077416365'] = { Name = 'id1_33_handy03' }, - ['221020539'] = { Name = 'id1_33_hospital' }, - ['-22143921'] = { Name = 'id1_33_ladder014' }, - ['-319129368'] = { Name = 'id1_33_ladder015' }, - ['-654815004'] = { Name = 'id1_33_ladder016' }, - ['-1223029464'] = { Name = 'id1_33_ladder017' }, - ['-1514116531'] = { Name = 'id1_33_ladder018' }, - ['-1450921105'] = { Name = 'id1_33_parking' }, - ['76136069'] = { Name = 'id1_33_pole04' }, - ['-224716784'] = { Name = 'id1_33_pole11' }, - ['76707500'] = { Name = 'id1_33_railing012' }, - ['1266689346'] = { Name = 'id1_33_railing02' }, - ['-2029970365'] = { Name = 'id1_33_railing04' }, - ['597841315'] = { Name = 'id1_33_railing05' }, - ['291156244'] = { Name = 'id1_33_railing06' }, - ['769223185'] = { Name = 'id1_33_railing08' }, - ['-152306877'] = { Name = 'id1_33_railing10' }, - ['391691292'] = { Name = 'id1_33_railing12' }, - ['-747424682'] = { Name = 'id1_33_railing13' }, - ['-258380126'] = { Name = 'id1_33_railing16' }, - ['1515438613'] = { Name = 'id1_33_railing18' }, - ['-520433027'] = { Name = 'id1_33_railing21' }, - ['-682180811'] = { Name = 'id1_33_railing24' }, - ['33297535'] = { Name = 'id1_33_railing27' }, - ['-1659352599'] = { Name = 'id1_33_railing31' }, - ['-1906201476'] = { Name = 'id1_33_railing32' }, - ['1397569112'] = { Name = 'id1_33_railing33' }, - ['1042025462'] = { Name = 'id1_33_railing34' }, - ['1894936994'] = { Name = 'id1_33_railing35' }, - ['1636356815'] = { Name = 'id1_33_railing36' }, - ['170501134'] = { Name = 'id1_33_railing37' }, - ['-182420996'] = { Name = 'id1_33_railing38' }, - ['-1508445667'] = { Name = 'id1_33_railings000' }, - ['1844874713'] = { Name = 'id1_33_rooftop02' }, - ['1007218539'] = { Name = 'id1_33_rooftop02b' }, - ['-975107287'] = { Name = 'id1_33_steps01' }, - ['-1108895253'] = { Name = 'id1_33_window' }, - ['-750890354'] = { Name = 'id1_33_work00' }, - ['-1898674611'] = { Name = 'id1_34_br_rail_end' }, - ['1900385427'] = { Name = 'id1_34_br_rail' }, - ['-1348389694'] = { Name = 'id1_34_bridge_decal' }, - ['-77564817'] = { Name = 'id1_34_bridge_extras' }, - ['-64039596'] = { Name = 'id1_34_bridge' }, - ['1462190690'] = { Name = 'id1_34_glue' }, - ['1196734578'] = { Name = 'id1_34_graf' }, - ['-339534899'] = { Name = 'id1_34_ground' }, - ['-478419511'] = { Name = 'id1_34_rail_bridge' }, - ['-110481563'] = { Name = 'id1_34_rail_d' }, - ['1941543709'] = { Name = 'id1_34_rail_sp' }, - ['-1561163666'] = { Name = 'id1_34_rail' }, - ['1881553777'] = { Name = 'id1_34_railing' }, - ['-1153896956'] = { Name = 'id1_34_railing001' }, - ['1224116609'] = { Name = 'id1_34_railing002' }, - ['1606072073'] = { Name = 'id1_34_railing003' }, - ['1838437052'] = { Name = 'id1_34_railing004' }, - ['2087710835'] = { Name = 'id1_34_railing005' }, - ['304290775'] = { Name = 'id1_34_railing006' }, - ['546420916'] = { Name = 'id1_34_railing007' }, - ['920839510'] = { Name = 'id1_34_railing008' }, - ['-987790895'] = { Name = 'id1_34_railing009' }, - ['-986808725'] = { Name = 'id1_34_railing010' }, - ['-1286284616'] = { Name = 'id1_34_railing011' }, - ['1638283100'] = { Name = 'id1_34_railing012' }, - ['1341232115'] = { Name = 'id1_34_railing013' }, - ['-78416235'] = { Name = 'id1_34_railings' }, - ['-807887997'] = { Name = 'id1_34_wall1' }, - ['2132495027'] = { Name = 'id1_35_brg_decal' }, - ['-1202065819'] = { Name = 'id1_35_brg_decal2' }, - ['1524886342'] = { Name = 'id1_35_brg01' }, - ['368108397'] = { Name = 'id1_35_glue' }, - ['1604127052'] = { Name = 'id1_35_railing01' }, - ['-1848382023'] = { Name = 'id1_35_railing02' }, - ['-2117972586'] = { Name = 'id1_35_railing03' }, - ['912832240'] = { Name = 'id1_35_railing04' }, - ['683514778'] = { Name = 'id1_35_railing05' }, - ['1518894895'] = { Name = 'id1_35_railing06' }, - ['-620789733'] = { Name = 'id1_35_railing07' }, - ['230253966'] = { Name = 'id1_35_railing08' }, - ['-3651156'] = { Name = 'id1_35_railing09' }, - ['1006945152'] = { Name = 'id1_35_railing10' }, - ['39964731'] = { Name = 'id1_35_railing11' }, - ['344355972'] = { Name = 'id1_35_railing12' }, - ['107927529'] = { Name = 'id1_35_railing13' }, - ['409631712'] = { Name = 'id1_35_railing14' }, - ['-1700888506'] = { Name = 'id1_35_railing15' }, - ['-1193231158'] = { Name = 'id1_35_railing16' }, - ['-1086699139'] = { Name = 'id1_35_railing17' }, - ['-847813129'] = { Name = 'id1_35_railing18' }, - ['-1816563076'] = { Name = 'id1_35_railing19' }, - ['2036907827'] = { Name = 'id1_35_railing20' }, - ['703995995'] = { Name = 'id1_35_railing21' }, - ['472089782'] = { Name = 'id1_35_railing22' }, - ['839528567'] = { Name = 'id1_35_railing23' }, - ['605262986'] = { Name = 'id1_35_railing24' }, - ['378304892'] = { Name = 'id1_35_railing25' }, - ['146726369'] = { Name = 'id1_35_railing26' }, - ['-169062321'] = { Name = 'id1_emissive_ch3_10_em' }, - ['-1390646886'] = { Name = 'id1_emissive_ch3_10_em2' }, - ['483711115'] = { Name = 'id1_emissive_emissive2' }, - ['75179578'] = { Name = 'id1_emissive_id1_05' }, - ['-1134663994'] = { Name = 'id1_emissive_id1_051' }, - ['-674738867'] = { Name = 'id1_emissive_id1_06' }, - ['-583778371'] = { Name = 'id1_emissive_id1_062' }, - ['-1311592501'] = { Name = 'id1_emissive_id1_07_ema' }, - ['-1154694529'] = { Name = 'id1_emissive_id1_07_emb' }, - ['-848992528'] = { Name = 'id1_emissive_id1_07_emc' }, - ['-957548905'] = { Name = 'id1_emissive_id1_09a' }, - ['-1255255270'] = { Name = 'id1_emissive_id1_09b' }, - ['-1418248276'] = { Name = 'id1_emissive_id1_09c' }, - ['-1687052383'] = { Name = 'id1_emissive_id1_09d' }, - ['-38640607'] = { Name = 'id1_emissive_id1_09e' }, - ['-336084820'] = { Name = 'id1_emissive_id1_09f' }, - ['1024891656'] = { Name = 'id1_emissive_id1_10' }, - ['1859245035'] = { Name = 'id1_emissive_id1_10b' }, - ['-1519664866'] = { Name = 'id1_emissive_id1_10c' }, - ['1377966732'] = { Name = 'id1_emissive_id1_10d' }, - ['-496573006'] = { Name = 'id1_emissive_id1_13' }, - ['-751035426'] = { Name = 'id1_emissive_id1_13b' }, - ['-251821353'] = { Name = 'id1_emissive_id1_14' }, - ['-973853491'] = { Name = 'id1_emissive_id1_15' }, - ['-743847880'] = { Name = 'id1_emissive_id1_16' }, - ['1947003673'] = { Name = 'id1_emissive_id1_17a' }, - ['1180110766'] = { Name = 'id1_emissive_id1_17b' }, - ['-690933600'] = { Name = 'id1_emissive_id1_17c' }, - ['-1472310405'] = { Name = 'id1_emissive_id1_17d' }, - ['-1152091737'] = { Name = 'id1_emissive_id1_17e' }, - ['-392802122'] = { Name = 'id1_emissive_id1_18b' }, - ['-1224839166'] = { Name = 'id1_emissive_id1_18neonsign' }, - ['1898382132'] = { Name = 'id1_emissive_id1_19' }, - ['391850635'] = { Name = 'id1_emissive_id1_19b' }, - ['-865067915'] = { Name = 'id1_emissive_id1_20' }, - ['-295065298'] = { Name = 'id1_emissive_id1_20b' }, - ['642979844'] = { Name = 'id1_emissive_id1_21a' }, - ['1168725668'] = { Name = 'id1_emissive_id1_21b' }, - ['434452318'] = { Name = 'id1_emissive_id1_23' }, - ['-1159511118'] = { Name = 'id1_emissive_id1_23a' }, - ['-1475666430'] = { Name = 'id1_emissive_id1_23b' }, - ['1030232547'] = { Name = 'id1_emissive_id1_25_2' }, - ['1706957677'] = { Name = 'id1_emissive_id1_25a' }, - ['1384051951'] = { Name = 'id1_emissive_id1_25b' }, - ['561825421'] = { Name = 'id1_emissive_id1_26' }, - ['1357555048'] = { Name = 'id1_emissive_id1_27' }, - ['1926608916'] = { Name = 'id1_emissive_id1_27b' }, - ['2065365448'] = { Name = 'id1_emissive_id1_28' }, - ['-2118891955'] = { Name = 'id1_emissive_id1_29a' }, - ['1927751783'] = { Name = 'id1_emissive_id1_29b' }, - ['1497232661'] = { Name = 'id1_emissive_id1_29c' }, - ['1973710335'] = { Name = 'id1_emissive_id1_30' }, - ['-422360185'] = { Name = 'id1_emissive_id1_30b' }, - ['1588936737'] = { Name = 'id1_emissive_id1_31' }, - ['904783451'] = { Name = 'id1_emissive_id1_31b' }, - ['-2113241453'] = { Name = 'id1_emissive_id1_31c' }, - ['1884281630'] = { Name = 'id1_emissive_id1_31d' }, - ['-1863375724'] = { Name = 'id1_emissive_id1_32' }, - ['-564873142'] = { Name = 'id1_emissive_id1_32b' }, - ['-1929700180'] = { Name = 'id1_emissive_id1_33' }, - ['-765188663'] = { Name = 'id1_emissive_id1_33b' }, - ['-1062960566'] = { Name = 'id1_emissive_id1_33c' }, - ['1371073906'] = { Name = 'id1_lod_bridge_slod4' }, - ['1831267806'] = { Name = 'id1_lod_emissive' }, - ['36498504'] = { Name = 'id1_lod_id1_emissive_slod' }, - ['2044059611'] = { Name = 'id1_lod_slod4' }, - ['-1852285529'] = { Name = 'id1_lod_water_slod3' }, - ['1704246958'] = { Name = 'id1_props_combo01_01_lod' }, - ['247733931'] = { Name = 'id1_props_combo01_02_lod' }, - ['-43352942'] = { Name = 'id1_props_combo0203_01_lod' }, - ['1685803874'] = { Name = 'id1_props_combo0307_01_lod' }, - ['894505574'] = { Name = 'id1_props_combo0307_02_lod' }, - ['-370559021'] = { Name = 'id1_props_combo0307_03_lod' }, - ['228605210'] = { Name = 'id1_props_combo0502_01_lod' }, - ['544207215'] = { Name = 'id1_props_combo0901_slod' }, - ['-1880649097'] = { Name = 'id1_props_combo0905_slod' }, - ['1432018141'] = { Name = 'id1_props_combo0907_slod' }, - ['656980177'] = { Name = 'id1_props_combo1001_01_lod' }, - ['-709603060'] = { Name = 'id1_props_combo14_01_lod' }, - ['-1555977033'] = { Name = 'id1_props_combo1401_01_lod' }, - ['1001636819'] = { Name = 'id1_props_flyers01' }, - ['1836230480'] = { Name = 'id1_props_flyers02' }, - ['-112673062'] = { Name = 'id1_props_flyers03' }, - ['-956704195'] = { Name = 'id1_props_flyers04' }, - ['362575745'] = { Name = 'id1_props_flyers05' }, - ['-497938195'] = { Name = 'id1_props_flyers06' }, - ['2064368238'] = { Name = 'id1_props_flyers07' }, - ['-1849888816'] = { Name = 'id1_props_flyers08' }, - ['-683607349'] = { Name = 'id1_props_flyers09' }, - ['356775356'] = { Name = 'id1_props_flyers10' }, - ['1339321056'] = { Name = 'id1_props_flyers11' }, - ['1101188733'] = { Name = 'id1_props_flyers12' }, - ['-75546073'] = { Name = 'id1_props_flyers13' }, - ['-1379129662'] = { Name = 'id1_props_flyers14' }, - ['-446884381'] = { Name = 'id1_props_flyers15' }, - ['387938663'] = { Name = 'id1_props_flyers16' }, - ['-1040167126'] = { Name = 'id1_props_flyers17' }, - ['1662030168'] = { Name = 'id1_props_flyers18' }, - ['-1651145131'] = { Name = 'id1_props_flyers19' }, - ['-928785077'] = { Name = 'id1_rd_bboard002' }, - ['387527450'] = { Name = 'id1_rd_bboard1' }, - ['82236108'] = { Name = 'id1_rd_cable_69' }, - ['994427057'] = { Name = 'id1_rd_cable_70' }, - ['1307895211'] = { Name = 'id1_rd_cable_71' }, - ['-90816773'] = { Name = 'id1_rd_cable_72' }, - ['2076945497'] = { Name = 'id1_rd_cablemesh14652_thvy' }, - ['-431492237'] = { Name = 'id1_rd_cablemesh14669_thvy' }, - ['1793212433'] = { Name = 'id1_rd_cablemesh14877_thvy' }, - ['835397033'] = { Name = 'id1_rd_cablemesh15116_thvy' }, - ['1418946150'] = { Name = 'id1_rd_cablemesh15131_thvy' }, - ['-1737256606'] = { Name = 'id1_rd_cablemesh15444_thvy' }, - ['295232412'] = { Name = 'id1_rd_cablemesh15459_thvy' }, - ['763577580'] = { Name = 'id1_rd_cablemesh15474_thvy' }, - ['-539423511'] = { Name = 'id1_rd_cablemesh15760_thvy' }, - ['-1759584560'] = { Name = 'id1_rd_cablemesh15964_thvy' }, - ['-922592720'] = { Name = 'id1_rd_cablemesh15979_thvy' }, - ['846373953'] = { Name = 'id1_rd_cablemesh15994_thvy' }, - ['-1797588525'] = { Name = 'id1_rd_cablemesh16264_thvy' }, - ['-933663547'] = { Name = 'id1_rd_cablemesh16784_thvy' }, - ['-2029035409'] = { Name = 'id1_rd_cablemesh17741_thvy' }, - ['784013073'] = { Name = 'id1_rd_cablemesh17756_thvy' }, - ['-103313694'] = { Name = 'id1_rd_cablemesh17771_thvy' }, - ['897022627'] = { Name = 'id1_rd_cablemesh17788_thvy' }, - ['-352940824'] = { Name = 'id1_rd_cablemesh17813_thvy' }, - ['1610429863'] = { Name = 'id1_rd_cablemesh17828_thvy' }, - ['-947049020'] = { Name = 'id1_rd_cablemesh17843_thvy' }, - ['1699533768'] = { Name = 'id1_rd_cablemesh17858_thvy' }, - ['-2016489265'] = { Name = 'id1_rd_cablemesh17873_thvy' }, - ['2110279415'] = { Name = 'id1_rd_cablemesh17900_thvy' }, - ['-1890290676'] = { Name = 'id1_rd_cablemesh17915_thvy' }, - ['1725462475'] = { Name = 'id1_rd_cablemesh17930_thvy' }, - ['299294919'] = { Name = 'id1_rd_cablemesh17945_thvy' }, - ['-1726635481'] = { Name = 'id1_rd_cablemesh17960_thvy' }, - ['1057020044'] = { Name = 'id1_rd_cablemesh17975_thvy' }, - ['692430395'] = { Name = 'id1_rd_cablemesh18003_thvy' }, - ['-1222023516'] = { Name = 'id1_rd_cablemesh18018_thvy' }, - ['268112934'] = { Name = 'id1_rd_cablemesh18033_thvy' }, - ['1874623363'] = { Name = 'id1_rd_cablemesh18209_thvy' }, - ['716940103'] = { Name = 'id1_rd_cablemesh18480_thvy' }, - ['-1885791679'] = { Name = 'id1_rd_cablemesh18520_thvy' }, - ['-1037136347'] = { Name = 'id1_rd_cablemesh18535_thvy' }, - ['-287013443'] = { Name = 'id1_rd_cablemesh18550_thvy' }, - ['-1925303859'] = { Name = 'id1_rd_cablemesh18565_thvy' }, - ['490518096'] = { Name = 'id1_rd_cablemesh18618_thvy' }, - ['1190560028'] = { Name = 'id1_rd_cablemesh18633_thvy' }, - ['1137046110'] = { Name = 'id1_rd_cablemesh19154_thvy' }, - ['261476464'] = { Name = 'id1_rd_cablemesh19171_thvy' }, - ['-1590496948'] = { Name = 'id1_rd_cablemesh19186_thvy' }, - ['1717739488'] = { Name = 'id1_rd_cablemesh19283_thvy' }, - ['-1529414666'] = { Name = 'id1_rd_cablemesh19284_thvy' }, - ['-139904276'] = { Name = 'id1_rd_cablemesh19285_thvy' }, - ['-1617787246'] = { Name = 'id1_rd_cablemesh19286_thvy' }, - ['-1328952441'] = { Name = 'id1_rd_cablemesh19287_thvy' }, - ['1109729070'] = { Name = 'id1_rd_cablemesh19288_thvy' }, - ['1662774405'] = { Name = 'id1_rd_cablemesh19410_thvy' }, - ['-77739197'] = { Name = 'id1_rd_cablemesh19631_thvy' }, - ['-1863935497'] = { Name = 'id1_rd_cablemesh19933_thvy' }, - ['-600734497'] = { Name = 'id1_rd_cablemesh20124_thvy' }, - ['-349483782'] = { Name = 'id1_rd_cablemesh20157_thvy' }, - ['1129481185'] = { Name = 'id1_rd_cablemesh20172_thvy' }, - ['547761345'] = { Name = 'id1_rd_cablemesh20225_thvy' }, - ['-1552785882'] = { Name = 'id1_rd_cablemesh21092_thvy' }, - ['716301467'] = { Name = 'id1_rd_cablemesh21693_thvy' }, - ['328870704'] = { Name = 'id1_rd_cablemesh22008_thvy' }, - ['922855536'] = { Name = 'id1_rd_cablemesh22177_thvy' }, - ['-785924833'] = { Name = 'id1_rd_cablemesh22178_thvy' }, - ['-634770529'] = { Name = 'id1_rd_cablemesh22402_thvy' }, - ['140543230'] = { Name = 'id1_rd_cablemesh22606_thvy' }, - ['751770221'] = { Name = 'id1_rd_cablemesh23134_thvy' }, - ['332092703'] = { Name = 'id1_rd_cablemesh23135_thvy' }, - ['1877157575'] = { Name = 'id1_rd_cablemesh23136_thvy' }, - ['837248032'] = { Name = 'id1_rd_cablemesh23137_thvy' }, - ['1847419154'] = { Name = 'id1_rd_cablemesh23186_thvy' }, - ['1268211172'] = { Name = 'id1_rd_cablemesh23187_thvy' }, - ['-258026478'] = { Name = 'id1_rd_cablemesh23188_thvy' }, - ['-1687860517'] = { Name = 'id1_rd_cablemesh23858_thvy' }, - ['-1724271670'] = { Name = 'id1_rd_cablemesh24152_thvy' }, - ['787156112'] = { Name = 'id1_rd_cablemesh24167_thvy' }, - ['1782365973'] = { Name = 'id1_rd_cablemesh24182_thvy' }, - ['-699559488'] = { Name = 'id1_rd_cablemesh24197_thvy' }, - ['-1837900621'] = { Name = 'id1_rd_cablemesh24212_thvy' }, - ['-1535906820'] = { Name = 'id1_rd_cablemesh24227_thvy' }, - ['-1855119395'] = { Name = 'id1_rd_cablemesh37058_thvy' }, - ['-754483904'] = { Name = 'id1_rd_cablemesh45283_thvy' }, - ['733147237'] = { Name = 'id1_rd_cablemesh45314_thvy' }, - ['2007626271'] = { Name = 'id1_rd_cablemesh45375_thvy' }, - ['-940561409'] = { Name = 'id1_rd_cablemesh45761_thvy' }, - ['-916191714'] = { Name = 'id1_rd_cbl03' }, - ['-140516715'] = { Name = 'id1_rd_cbl04' }, - ['-303444183'] = { Name = 'id1_rd_cbl05' }, - ['-1673909305'] = { Name = 'id1_rd_cbl07' }, - ['-1258922689'] = { Name = 'id1_rd_cbl09' }, - ['383586959'] = { Name = 'id1_rd_cbl10' }, - ['-519166218'] = { Name = 'id1_rd_cbl11' }, - ['-767030934'] = { Name = 'id1_rd_cbl12' }, - ['1281588639'] = { Name = 'id1_rd_cbl13' }, - ['765739041'] = { Name = 'id1_rd_cbl14' }, - ['-1689707667'] = { Name = 'id1_rd_cbl15' }, - ['-847839288'] = { Name = 'id1_rd_cbl16' }, - ['-1460914509'] = { Name = 'id1_rd_cbl18' }, - ['-604886818'] = { Name = 'id1_rd_cbl20' }, - ['-843281293'] = { Name = 'id1_rd_cbl21' }, - ['-1519174687'] = { Name = 'id1_rd_cbl25' }, - ['-551866572'] = { Name = 'id1_rd_cbl26' }, - ['-1638260997'] = { Name = 'id1_rd_cbl33' }, - ['-1997278161'] = { Name = 'id1_rd_cbl34' }, - ['2007257488'] = { Name = 'id1_rd_cbl35' }, - ['1724329942'] = { Name = 'id1_rd_cbl36' }, - ['1418103637'] = { Name = 'id1_rd_cbl37' }, - ['1113089777'] = { Name = 'id1_rd_cbl38' }, - ['768207849'] = { Name = 'id1_rd_jl00' }, - ['-1282766034'] = { Name = 'id1_rd_jl04_o' }, - ['1014602485'] = { Name = 'id1_rd_jstealproxy1' }, - ['1796765746'] = { Name = 'id1_rd_jstealproxy2' }, - ['1513401690'] = { Name = 'id1_rd_r1_01_o' }, - ['-1461728566'] = { Name = 'id1_rd_r1_01' }, - ['-1582098239'] = { Name = 'id1_rd_r1_02_o' }, - ['91587576'] = { Name = 'id1_rd_r1_02' }, - ['1274610407'] = { Name = 'id1_rd_r1_03_o' }, - ['386148117'] = { Name = 'id1_rd_r1_03' }, - ['1516351393'] = { Name = 'id1_rd_r1_04_o' }, - ['1875171477'] = { Name = 'id1_rd_r1_04' }, - ['1543602302'] = { Name = 'id1_rd_r1_05_o' }, - ['-2118747016'] = { Name = 'id1_rd_r1_05' }, - ['287603970'] = { Name = 'id1_rd_r1_06_o' }, - ['-568445622'] = { Name = 'id1_rd_r1_06' }, - ['1335772701'] = { Name = 'id1_rd_r2_01_o' }, - ['-1992783076'] = { Name = 'id1_rd_r2_01' }, - ['-885513442'] = { Name = 'id1_rd_r2_02_o' }, - ['-1685442621'] = { Name = 'id1_rd_r2_02' }, - ['1647306986'] = { Name = 'id1_rd_r2_03_o' }, - ['-1991275698'] = { Name = 'id1_rd_r2_03' }, - ['1736868142'] = { Name = 'id1_rd_r2_04_o' }, - ['-332508918'] = { Name = 'id1_rd_r2_04' }, - ['-501050395'] = { Name = 'id1_rd_r3_01_o' }, - ['-428288950'] = { Name = 'id1_rd_r3_01' }, - ['279814131'] = { Name = 'id1_rd_r3_02_o' }, - ['956725604'] = { Name = 'id1_rd_r3_02' }, - ['649126700'] = { Name = 'id1_rd_r3_03_o' }, - ['-890495695'] = { Name = 'id1_rd_r3_03' }, - ['183685554'] = { Name = 'id1_rd_r3_04_o' }, - ['-1377574127'] = { Name = 'id1_rd_r3_04' }, - ['-318889938'] = { Name = 'id1_rd_r3_05_o' }, - ['-1521688678'] = { Name = 'id1_rd_r3_06_o' }, - ['-1848628502'] = { Name = 'id1_rd_r3_06' }, - ['-854311771'] = { Name = 'id1_rd_r3' }, - ['2061687294'] = { Name = 'id1_rd_r4_01_o' }, - ['-1213268804'] = { Name = 'id1_rd_r4_01' }, - ['331655124'] = { Name = 'id1_rd_r4_02_o' }, - ['-1561275584'] = { Name = 'id1_rd_r4_02' }, - ['390868900'] = { Name = 'id1_rd_r4_03_o' }, - ['-1943853659'] = { Name = 'id1_rd_r4_03' }, - ['-1276976824'] = { Name = 'id1_rd_r4_04_o' }, - ['-2056382405'] = { Name = 'id1_rd_r4_04' }, - ['-1372568125'] = { Name = 'id1_rd_r4_05_o' }, - ['-619265169'] = { Name = 'id1_rd_r4_05' }, - ['-1332969719'] = { Name = 'id1_rd_r4_07_o' }, - ['-1097266572'] = { Name = 'id1_rd_r4_07' }, - ['-1827233401'] = { Name = 'id1_rd_r4_08_o' }, - ['-246419487'] = { Name = 'id1_rd_r4_08' }, - ['-849653920'] = { Name = 'id1_rd_r4_09_o' }, - ['639621504'] = { Name = 'id1_rd_r4_09' }, - ['2060429652'] = { Name = 'id1_rd_r5_01_o' }, - ['1669733977'] = { Name = 'id1_rd_r5_01' }, - ['-379263269'] = { Name = 'id1_rd_r5_02_o' }, - ['924829069'] = { Name = 'id1_rd_r5_02' }, - ['-1348221256'] = { Name = 'id1_rd_r5_03_o' }, - ['1357052179'] = { Name = 'id1_rd_r5_03' }, - ['-1095814538'] = { Name = 'id1_rd_r5_04_o' }, - ['470028118'] = { Name = 'id1_rd_r5_04' }, - ['-914167350'] = { Name = 'id1_rd_r5_05_jun' }, - ['-2085413222'] = { Name = 'id1_rd_r5_06_o' }, - ['-546957797'] = { Name = 'id1_rd_r5_06' }, - ['-1731775431'] = { Name = 'id1_rd_r5_07_o' }, - ['-98219111'] = { Name = 'id1_rd_r5_07' }, - ['-748273295'] = { Name = 'id1_rd_r5_08_o' }, - ['1026806193'] = { Name = 'id1_rd_r5_08' }, - ['-1803622247'] = { Name = 'id1_rd_r6_01_o' }, - ['-1737900703'] = { Name = 'id1_rd_r6_01' }, - ['-1998125932'] = { Name = 'id1_rd_r6_02_o' }, - ['1661489819'] = { Name = 'id1_rd_r6_02' }, - ['-548439141'] = { Name = 'id1_rd_r6_03_o' }, - ['-1403296444'] = { Name = 'id1_rd_r6_03' }, - ['-1513681274'] = { Name = 'id1_rd_r6_04_o' }, - ['-2049894352'] = { Name = 'id1_rd_r6_04' }, - ['1869773828'] = { Name = 'id1_rd_r6_05_o' }, - ['540265715'] = { Name = 'id1_rd_r6_05' }, - ['1153933586'] = { Name = 'id1_rd_r6_06_o' }, - ['762242921'] = { Name = 'id1_rd_r6_06' }, - ['31142121'] = { Name = 'id1_rd_road_decal_' }, - ['-265152187'] = { Name = 'id1_rd_sign1_d2' }, - ['-428335900'] = { Name = 'id1_rd_sign1_slod' }, - ['-741723506'] = { Name = 'id1_rd_sign1_txt' }, - ['1666268448'] = { Name = 'id1_rd_sign1' }, - ['1990249718'] = { Name = 'id2_00_a__damfizz05' }, - ['47782508'] = { Name = 'id2_00_a__fizza_00' }, - ['643129700'] = { Name = 'id2_00_a__fizza_01' }, - ['470240456'] = { Name = 'id2_00_a__fizza_02' }, - ['1461764802'] = { Name = 'id2_00_a__fizza_03' }, - ['228208566'] = { Name = 'id2_00_a__fizza_04' }, - ['-73036851'] = { Name = 'id2_00_a__fizza_05' }, - ['538367151'] = { Name = 'id2_00_a__fizza_06' }, - ['-1639427820'] = { Name = 'id2_00_a__fizza_07' }, - ['1417657728'] = { Name = 'id2_00_a__fizza_08' }, - ['956270208'] = { Name = 'id2_00_a__fizza_09' }, - ['-96081335'] = { Name = 'id2_00_a__fizzb_00' }, - ['-867561902'] = { Name = 'id2_00_a__fizzb_01' }, - ['-1305711048'] = { Name = 'id2_00_a__fizzc_00' }, - ['-2015454819'] = { Name = 'id2_00_a__fizzc_01' }, - ['-1786727199'] = { Name = 'id2_00_a__fizzc_02' }, - ['-350429164'] = { Name = 'id2_00_a__fizzc_03' }, - ['1334899057'] = { Name = 'id2_00_a_00_weeds05' }, - ['1061552016'] = { Name = 'id2_00_a_bigdam_o' }, - ['-975506945'] = { Name = 'id2_00_a_bigdam' }, - ['1890106847'] = { Name = 'id2_00_a_build074' }, - ['1429792943'] = { Name = 'id2_00_a_build08_split' }, - ['-1588301323'] = { Name = 'id2_00_a_build08' }, - ['-117577781'] = { Name = 'id2_00_a_build08graf_b' }, - ['130444504'] = { Name = 'id2_00_a_build11_extra' }, - ['1673263137'] = { Name = 'id2_00_a_build11' }, - ['1228129041'] = { Name = 'id2_00_a_build14' }, - ['1702413267'] = { Name = 'id2_00_a_build70' }, - ['946749412'] = { Name = 'id2_00_a_cables01' }, - ['-10990155'] = { Name = 'id2_00_a_cables02' }, - ['-222490056'] = { Name = 'id2_00_a_dam_fizz01' }, - ['983310837'] = { Name = 'id2_00_a_dam_fizz02' }, - ['-1584659465'] = { Name = 'id2_00_a_damfizz03' }, - ['-1823905934'] = { Name = 'id2_00_a_damfizz04' }, - ['-1986337481'] = { Name = 'id2_00_a_damfizz04a' }, - ['-1519019536'] = { Name = 'id2_00_a_glue_02' }, - ['-1297304482'] = { Name = 'id2_00_a_glue_03' }, - ['-1041018133'] = { Name = 'id2_00_a_glue_04' }, - ['-550007433'] = { Name = 'id2_00_a_glue_05' }, - ['-1142654'] = { Name = 'id2_00_a_racemarks' }, - ['1370733811'] = { Name = 'id2_00_a_water_' }, - ['492180939'] = { Name = 'id2_00_a_water_01' }, - ['723235158'] = { Name = 'id2_00_a_water_02' }, - ['1085856912'] = { Name = 'id2_00_a_water_03' }, - ['1319598189'] = { Name = 'id2_00_a_water_04' }, - ['-699496515'] = { Name = 'id2_00_a_water_05' }, - ['-1560209055'] = { Name = 'id2_00_a_weed_01' }, - ['773926815'] = { Name = 'id2_00_a_weed_09' }, - ['-1080536145'] = { Name = 'id2_00_a_weed_10' }, - ['-1048925918'] = { Name = 'id2_00_bld02_lad' }, - ['944853441'] = { Name = 'id2_00_brokenwall_overlay' }, - ['141220871'] = { Name = 'id2_00_build01_a' }, - ['1717164917'] = { Name = 'id2_00_build01_b_shadproxy' }, - ['-1423367791'] = { Name = 'id2_00_build01_b' }, - ['2090623912'] = { Name = 'id2_00_build02_b' }, - ['-1900405185'] = { Name = 'id2_00_build02_c_fizz' }, - ['1915899604'] = { Name = 'id2_00_build02_c' }, - ['-1265607242'] = { Name = 'id2_00_build05' }, - ['1688223187'] = { Name = 'id2_00_build06' }, - ['-1108077874'] = { Name = 'id2_00_build074_a' }, - ['-786089680'] = { Name = 'id2_00_build074_b' }, - ['411971600'] = { Name = 'id2_00_build73' }, - ['1630118687'] = { Name = 'id2_00_cables01' }, - ['2130108089'] = { Name = 'id2_00_cables02' }, - ['-101395281'] = { Name = 'id2_00_cables03' }, - ['130445394'] = { Name = 'id2_00_cables04' }, - ['660516738'] = { Name = 'id2_00_cables05' }, - ['196361947'] = { Name = 'id2_00_dam_fwy' }, - ['-1196400334'] = { Name = 'id2_00_dam' }, - ['-1343802353'] = { Name = 'id2_00_damchan' }, - ['-288170386'] = { Name = 'id2_00_dummy' }, - ['1810051778'] = { Name = 'id2_00_fizza_00' }, - ['2141280806'] = { Name = 'id2_00_fizza_01' }, - ['-1851195851'] = { Name = 'id2_00_fizza_02' }, - ['1397719427'] = { Name = 'id2_00_fizza_03' }, - ['1696867628'] = { Name = 'id2_00_fizza_04' }, - ['-1190998808'] = { Name = 'id2_00_fizza_05' }, - ['-1688956532'] = { Name = 'id2_00_fizza_06' }, - ['-1400425487'] = { Name = 'id2_00_fizza_07' }, - ['-18687833'] = { Name = 'id2_00_fizza_08' }, - ['298614394'] = { Name = 'id2_00_fizza_09' }, - ['1226976552'] = { Name = 'id2_00_fizzb' }, - ['-1925199885'] = { Name = 'id2_00_fizzbc' }, - ['848284859'] = { Name = 'id2_00_glue_01' }, - ['1467881111'] = { Name = 'id2_00_glue_06' }, - ['-1044124895'] = { Name = 'id2_00_glue_07' }, - ['-1302311846'] = { Name = 'id2_00_glue_08' }, - ['-1667096354'] = { Name = 'id2_00_glue_09' }, - ['-1480084392'] = { Name = 'id2_00_glue_09b' }, - ['-272875703'] = { Name = 'id2_00_glue_11' }, - ['-541483196'] = { Name = 'id2_00_glue_12' }, - ['-1522573343'] = { Name = 'id2_00_props_duct_ed' }, - ['-1963679944'] = { Name = 'id2_00_props_duct_st' }, - ['-6591426'] = { Name = 'id2_00_stm1_cxd' }, - ['-1167002736'] = { Name = 'id2_00_storm_01_a' }, - ['257063416'] = { Name = 'id2_00_water_' }, - ['1477484925'] = { Name = 'id2_00_water_01' }, - ['1240532286'] = { Name = 'id2_00_water_02' }, - ['1835322405'] = { Name = 'id2_00_water_04' }, - ['-1714006391'] = { Name = 'id2_00_water_04b' }, - ['842273384'] = { Name = 'id2_00_water_05_b' }, - ['1199603781'] = { Name = 'id2_00_water_05' }, - ['968025254'] = { Name = 'id2_00_water_06' }, - ['1811630394'] = { Name = 'id2_00_water_07' }, - ['1579462029'] = { Name = 'id2_00_water_08' }, - ['1527806042'] = { Name = 'id2_00_water_08b' }, - ['279515795'] = { Name = 'id2_00_water_09' }, - ['-903999178'] = { Name = 'id2_00_weed_02' }, - ['-2060974261'] = { Name = 'id2_00_weed_03' }, - ['526564286'] = { Name = 'id2_00_weed_05' }, - ['-312649804'] = { Name = 'id2_00_weed_08' }, - ['-18246851'] = { Name = 'id2_01_build' }, - ['1365582908'] = { Name = 'id2_01_builddefizz' }, - ['1050638779'] = { Name = 'id2_01_detail' }, - ['727775572'] = { Name = 'id2_01_ground' }, - ['-92190245'] = { Name = 'id2_01_id1_01decal' }, - ['2125543534'] = { Name = 'id2_01_id1_01decal2' }, - ['-848308758'] = { Name = 'id2_01_id1_01decal3' }, - ['-1444049178'] = { Name = 'id2_01_id1_01decal4' }, - ['-1216337397'] = { Name = 'id2_01_id1_01decal5' }, - ['816749422'] = { Name = 'id2_01_ju007_fizz' }, - ['129123077'] = { Name = 'id2_01_ju007' }, - ['1460845016'] = { Name = 'id2_01_ju6_lod001' }, - ['1994416'] = { Name = 'id2_01_railfizz' }, - ['-987726955'] = { Name = 'id2_03_brd1' }, - ['-476011676'] = { Name = 'id2_03_brg_00' }, - ['-767360855'] = { Name = 'id2_03_brg_01' }, - ['-1217263005'] = { Name = 'id2_03_diner' }, - ['1075097731'] = { Name = 'id2_03_fence' }, - ['-210610704'] = { Name = 'id2_03_fencec' }, - ['2104717245'] = { Name = 'id2_03_fizza_00_lod' }, - ['1327662002'] = { Name = 'id2_03_fizza_00' }, - ['-130577925'] = { Name = 'id2_03_fizza_01_lod' }, - ['-2134087931'] = { Name = 'id2_03_fizza_01' }, - ['1643675791'] = { Name = 'id2_03_fizza_01a' }, - ['-517425193'] = { Name = 'id2_03_fizza_02_lod' }, - ['-1293759687'] = { Name = 'id2_03_fizza_02' }, - ['1683402266'] = { Name = 'id2_03_fizza_03' }, - ['1842722776'] = { Name = 'id2_03_fizza_04_lod' }, - ['-1521078240'] = { Name = 'id2_03_fizza_04' }, - ['-420868437'] = { Name = 'id2_03_fndtn005' }, - ['-1599274257'] = { Name = 'id2_03_ground_ovly' }, - ['1159240663'] = { Name = 'id2_03_ground_ovlya' }, - ['331877564'] = { Name = 'id2_03_railwindow_01' }, - ['1602341549'] = { Name = 'id2_03_railwindow_012' }, - ['-98261291'] = { Name = 'id2_03_tracks01' }, - ['-208692821'] = { Name = 'id2_03_tracks02' }, - ['1206403675'] = { Name = 'id2_03_tracks03' }, - ['327770209'] = { Name = 'id2_04_bld18fizz_lod' }, - ['505233210'] = { Name = 'id2_04_bld18fizz' }, - ['1343557186'] = { Name = 'id2_04_build07_det' }, - ['1640193069'] = { Name = 'id2_04_build07' }, - ['-1314718361'] = { Name = 'id2_04_build13' }, - ['63177189'] = { Name = 'id2_04_build14_fiizz' }, - ['335594025'] = { Name = 'id2_04_build14' }, - ['-834411637'] = { Name = 'id2_04_build14news' }, - ['-1716411312'] = { Name = 'id2_04_build14p' }, - ['2119757215'] = { Name = 'id2_04_build14r' }, - ['60601532'] = { Name = 'id2_04_build18_shutters' }, - ['1828353051'] = { Name = 'id2_04_build18' }, - ['-564688685'] = { Name = 'id2_04_cablemesh16718_thvy' }, - ['1980739828'] = { Name = 'id2_04_cablemesh16733_thvy' }, - ['-1610766081'] = { Name = 'id2_04_cablemesh16748_thvy' }, - ['-1623584955'] = { Name = 'id2_04_cablemesh16763_thvy' }, - ['-705253418'] = { Name = 'id2_04_cablemesh16778_thvy' }, - ['-2134130662'] = { Name = 'id2_04_cablemesh16793_thvy' }, - ['1522196450'] = { Name = 'id2_04_cablemesh30277_thvy' }, - ['328824120'] = { Name = 'id2_04_fizzb_00' }, - ['991904835'] = { Name = 'id2_04_fizzb_03' }, - ['505776728'] = { Name = 'id2_04_fizzb_05' }, - ['-2136836358'] = { Name = 'id2_04_fizze_00' }, - ['-1038354052'] = { Name = 'id2_04_fizze_02' }, - ['-2000517430'] = { Name = 'id2_04_fizze_03' }, - ['-1788862459'] = { Name = 'id2_04_fizze_04' }, - ['-332608095'] = { Name = 'id2_04_fizze_05' }, - ['1805143158'] = { Name = 'id2_04_fizze_06' }, - ['2044389627'] = { Name = 'id2_04_fizze_07' }, - ['1592963883'] = { Name = 'id2_04_fizze_08' }, - ['-1254268993'] = { Name = 'id2_04_fizze_09' }, - ['-508840577'] = { Name = 'id2_04_fizze_10' }, - ['-1345072692'] = { Name = 'id2_04_fizze_11' }, - ['1428364396'] = { Name = 'id2_04_fizze_12' }, - ['201716862'] = { Name = 'id2_04_fizzf_01' }, - ['392976776'] = { Name = 'id2_04_fizzg_01' }, - ['-1954469360'] = { Name = 'id2_04_fizzh_00' }, - ['1505871510'] = { Name = 'id2_04_fizzh_01' }, - ['461326862'] = { Name = 'id2_04_fizzh_02' }, - ['701916860'] = { Name = 'id2_04_fizzh_03' }, - ['1862562071'] = { Name = 'id2_04_fizzh_04' }, - ['1296313751'] = { Name = 'id2_04_fizzh_05' }, - ['669203755'] = { Name = 'id2_04_fizzi_01' }, - ['-178950499'] = { Name = 'id2_04_fizzj_04' }, - ['469406585'] = { Name = 'id2_04_fizzk_01' }, - ['-1263308167'] = { Name = 'id2_04_ground1_shad' }, - ['-374079258'] = { Name = 'id2_04_ground1' }, - ['1871537952'] = { Name = 'id2_04_largewalls_dets' }, - ['-1275941573'] = { Name = 'id2_04_largewalls' }, - ['991191015'] = { Name = 'id2_04_newdecal' }, - ['-1716690767'] = { Name = 'id2_04_overlaya' }, - ['1786085954'] = { Name = 'id2_04_overlayb' }, - ['2118887918'] = { Name = 'id2_04_overlayc' }, - ['-721660086'] = { Name = 'id2_04_overlayd' }, - ['-300578424'] = { Name = 'id2_04_overlayu' }, - ['-719628396'] = { Name = 'id2_04_overlayv' }, - ['-488246487'] = { Name = 'id2_04_overlayw' }, - ['-1593905264'] = { Name = 'id2_04_overlayx' }, - ['-1925363699'] = { Name = 'id2_04_overlayy' }, - ['-999311747'] = { Name = 'id2_04_overlayz' }, - ['2034116350'] = { Name = 'id2_04_rivside' }, - ['-1574972389'] = { Name = 'id2_04_shed_0003' }, - ['1051346055'] = { Name = 'id2_04_shed_fizz01_lod' }, - ['434131422'] = { Name = 'id2_04_shed_fizz01' }, - ['-255721566'] = { Name = 'id2_04_shed_fizz02' }, - ['-626644514'] = { Name = 'id2_04_weldsign01_fizz_hi' }, - ['1277667059'] = { Name = 'id2_04_weldsign02_fizz_hi' }, - ['190458016'] = { Name = 'id2_06_bub01' }, - ['-225344512'] = { Name = 'id2_06_bub02d' }, - ['-1406953579'] = { Name = 'id2_06_bufiz' }, - ['-157905995'] = { Name = 'id2_06_buov' }, - ['344244099'] = { Name = 'id2_06_buov2' }, - ['412362776'] = { Name = 'id2_06_fizza_00_lod' }, - ['2054023963'] = { Name = 'id2_06_fizza_00' }, - ['1796361316'] = { Name = 'id2_06_fizza_01' }, - ['2102734222'] = { Name = 'id2_06_fizza_02_lod' }, - ['1189871286'] = { Name = 'id2_06_fizza_03_lod' }, - ['-812837544'] = { Name = 'id2_06_fizza_04' }, - ['-519518321'] = { Name = 'id2_06_fizza_05_lod' }, - ['2050485541'] = { Name = 'id2_06_fizzb_00_lod' }, - ['567797522'] = { Name = 'id2_06_fizzb_00' }, - ['350145824'] = { Name = 'id2_06_fizzb_01' }, - ['1125230981'] = { Name = 'id2_06_fizzb_02' }, - ['868485866'] = { Name = 'id2_06_fizzb_03' }, - ['-1673110547'] = { Name = 'id2_06_fizzb_08' }, - ['-1096900443'] = { Name = 'id2_06_fizzb_09' }, - ['1051363086'] = { Name = 'id2_06_fizzc_01' }, - ['964937229'] = { Name = 'id2_06_fizzd_00' }, - ['825374058'] = { Name = 'id2_06_fizzd_01' }, - ['585570516'] = { Name = 'id2_06_fizzd_02' }, - ['757154580'] = { Name = 'id2_06_fway_legd02' }, - ['1435568222'] = { Name = 'id2_06_id2_lorrypipefizz01' }, - ['1475909997'] = { Name = 'id2_06_land_01' }, - ['-1563896895'] = { Name = 'id2_06_lsdderm2' }, - ['-2057247574'] = { Name = 'id2_07_build_03_o' }, - ['-1849213332'] = { Name = 'id2_07_build_03' }, - ['817907423'] = { Name = 'id2_07_build_69dt' }, - ['535543207'] = { Name = 'id2_07_build1_decal' }, - ['1933269187'] = { Name = 'id2_07_buildxx_01_o' }, - ['1738436892'] = { Name = 'id2_07_cablemesh19513_thvy' }, - ['180432869'] = { Name = 'id2_07_cablemesh19528_thvy' }, - ['2034671996'] = { Name = 'id2_07_cablemesh19557_thvy' }, - ['499124134'] = { Name = 'id2_07_cablemesh19558_thvy' }, - ['32274944'] = { Name = 'id2_07_cablemesh19756_thvy' }, - ['2146259134'] = { Name = 'id2_07_cablemesh19757_thvy' }, - ['915778819'] = { Name = 'id2_07_cablemesh19758_thvy' }, - ['-1783855472'] = { Name = 'id2_07_cablemesh19760_thvy' }, - ['1931717608'] = { Name = 'id2_07_cablemesh19761_thvy' }, - ['-1981036538'] = { Name = 'id2_07_cablemesh19762_thvy' }, - ['-987331171'] = { Name = 'id2_07_cablemesh19763_thvy' }, - ['429999440'] = { Name = 'id2_07_cablemesh19764_thvy' }, - ['666367327'] = { Name = 'id2_07_cablemesh19765_thvy' }, - ['-478895327'] = { Name = 'id2_07_cablemesh19766_thvy' }, - ['-578668406'] = { Name = 'id2_07_cablemesh19767_thvy' }, - ['-1259535139'] = { Name = 'id2_07_cablemesh19798_thvy' }, - ['1960038894'] = { Name = 'id2_07_cablemesh19799_thvy' }, - ['-453211661'] = { Name = 'id2_07_cablemesh19850_thvy' }, - ['948532388'] = { Name = 'id2_07_cablemesh19851_thvy' }, - ['-275340313'] = { Name = 'id2_07_cablemesh19866_thvy' }, - ['-297351281'] = { Name = 'id2_07_cablemesh19881_thvy' }, - ['75293840'] = { Name = 'id2_07_cablemesh19896_thvy' }, - ['-381161920'] = { Name = 'id2_07_cablemesh19911_thvy' }, - ['-1131018211'] = { Name = 'id2_07_fizza_00' }, - ['-1428429655'] = { Name = 'id2_07_fizza_01' }, - ['-1676523754'] = { Name = 'id2_07_fizza_02' }, - ['441828255'] = { Name = 'id2_07_fizza_03' }, - ['409583559'] = { Name = 'id2_07_fizza_04' }, - ['-1240954488'] = { Name = 'id2_07_fizzb_01' }, - ['-2100020581'] = { Name = 'id2_07_fizzc_00' }, - ['-1359441177'] = { Name = 'id2_07_fizzc_01' }, - ['-527600112'] = { Name = 'id2_07_fizzc_02' }, - ['-1496644833'] = { Name = 'id2_07_fizze_00' }, - ['-646879125'] = { Name = 'id2_07_fizze_01' }, - ['1481203852'] = { Name = 'id2_07_fizzg_00' }, - ['1778910217'] = { Name = 'id2_07_fizzg_01' }, - ['2094475687'] = { Name = 'id2_07_fizzg_02' }, - ['-1855171887'] = { Name = 'id2_07_fizzg_03' }, - ['-835826366'] = { Name = 'id2_07_fizzk_00' }, - ['-596317745'] = { Name = 'id2_07_fizzk_01' }, - ['-372112247'] = { Name = 'id2_07_fizzk_02' }, - ['-116415740'] = { Name = 'id2_07_fizzk_03' }, - ['-452495189'] = { Name = 'id2_07_fizzm_02' }, - ['366905749'] = { Name = 'id2_07_gar1_a' }, - ['590586943'] = { Name = 'id2_07_gar1_b' }, - ['1011373672'] = { Name = 'id2_07_gar1_c' }, - ['-2001202822'] = { Name = 'id2_07_ground' }, - ['-266146614'] = { Name = 'id2_07_ladder01' }, - ['-554612121'] = { Name = 'id2_07_ladder02' }, - ['76518823'] = { Name = 'id2_07_ladder03' }, - ['889026178'] = { Name = 'id2_07_ladder04' }, - ['596956081'] = { Name = 'id2_07_ladder05' }, - ['1491549781'] = { Name = 'id2_07_ladder06' }, - ['-1480013337'] = { Name = 'id2_07_land_02_decal_a' }, - ['-1785879183'] = { Name = 'id2_07_land_02_decal_b' }, - ['-323403543'] = { Name = 'id2_07_land_02_o2' }, - ['781432037'] = { Name = 'id2_07_pylon' }, - ['1496370154'] = { Name = 'id2_07_rfx00' }, - ['1793552215'] = { Name = 'id2_07_rfx01' }, - ['842169842'] = { Name = 'id2_07_rfx02' }, - ['1799492624'] = { Name = 'id2_07gutterfizz' }, - ['908478197'] = { Name = 'id2_07gutterfizz2' }, - ['2092913710'] = { Name = 'id2_07gutterfizz3' }, - ['446861294'] = { Name = 'id2_07gutterfizz4' }, - ['186085592'] = { Name = 'id2_07gutterfizz5' }, - ['1678350061'] = { Name = 'id2_08_tarmack_01' }, - ['1627637554'] = { Name = 'id2_09_land01' }, - ['-1483221927'] = { Name = 'id2_09_land02' }, - ['-1755132483'] = { Name = 'id2_10_alley_2' }, - ['810017768'] = { Name = 'id2_10_buildings_o' }, - ['-389220576'] = { Name = 'id2_10_buildings' }, - ['-1731028741'] = { Name = 'id2_10_buildings2_o' }, - ['-1676074334'] = { Name = 'id2_10_buildings3_o' }, - ['-113571853'] = { Name = 'id2_10_buildings4_o' }, - ['-283317570'] = { Name = 'id2_10_buildings5_o' }, - ['1255884257'] = { Name = 'id2_10_fiizz_03' }, - ['1928108723'] = { Name = 'id2_10_fizz' }, - ['-1218287832'] = { Name = 'id2_10_fizz02' }, - ['917220152'] = { Name = 'id2_10_ground3' }, - ['-393531262'] = { Name = 'id2_10_ground3av' }, - ['-1913102526'] = { Name = 'id2_10_park' }, - ['-1707464106'] = { Name = 'id2_10_rampnew' }, - ['-1185625865'] = { Name = 'id2_11_ads' }, - ['1365060819'] = { Name = 'id2_11_ads2' }, - ['-1137188446'] = { Name = 'id2_11_build_06d' }, - ['1894292894'] = { Name = 'id2_11_build_69_o' }, - ['917837371'] = { Name = 'id2_11_build_69a_o' }, - ['864599785'] = { Name = 'id2_11_build_69b_o' }, - ['1129853894'] = { Name = 'id2_11_build_69c_o' }, - ['129875011'] = { Name = 'id2_11_build_a' }, - ['-1187146412'] = { Name = 'id2_11_build_a2' }, - ['-712943673'] = { Name = 'id2_11_build_b' }, - ['-1428327508'] = { Name = 'id2_11_build_b2fizz' }, - ['-738564782'] = { Name = 'id2_11_build_bfizz' }, - ['920028812'] = { Name = 'id2_11_cablemesh16136_thvy' }, - ['920332992'] = { Name = 'id2_11_cablemesh16151_thvy' }, - ['-1641618142'] = { Name = 'id2_11_cablemesh16166_thvy' }, - ['644589991'] = { Name = 'id2_11_cablemesh16181_thvy' }, - ['621221235'] = { Name = 'id2_11_cablemesh16196_thvy' }, - ['-2041442979'] = { Name = 'id2_11_cablemesh16211_thvy' }, - ['897176059'] = { Name = 'id2_11_cablemesh16226_thvy' }, - ['-1042585973'] = { Name = 'id2_11_cablemesh16241_thvy' }, - ['-1535328327'] = { Name = 'id2_11_fizza_00' }, - ['623984868'] = { Name = 'id2_11_fizza_02' }, - ['383755329'] = { Name = 'id2_11_fizza_03' }, - ['-880407093'] = { Name = 'id2_11_fizza_04' }, - ['-675695597'] = { Name = 'id2_11_fizzb_01' }, - ['828792501'] = { Name = 'id2_11_fizzc_01' }, - ['-1966206049'] = { Name = 'id2_11_fizzc_01a' }, - ['-1470977035'] = { Name = 'id2_11_fizzf_01' }, - ['51284173'] = { Name = 'id2_11_fizzg_01' }, - ['775691853'] = { Name = 'id2_11_ground' }, - ['-1091626460'] = { Name = 'id2_11_ladder01' }, - ['-687507035'] = { Name = 'id2_11_pipes' }, - ['-1768997069'] = { Name = 'id2_11_rladder_010' }, - ['1749955833'] = { Name = 'id2_11_ssrail_fizz01' }, - ['1377044613'] = { Name = 'id2_11_ssrail_fizz02' }, - ['477011327'] = { Name = 'id2_11_ssrail_fizz03' }, - ['1252358636'] = { Name = 'id2_11_ssrail_fizz04' }, - ['825554869'] = { Name = 'id2_11_wall' }, - ['1526002007'] = { Name = 'id2_11_wall01' }, - ['-729099894'] = { Name = 'id2_12_b09_fizz' }, - ['-1474756433'] = { Name = 'id2_12_b1_fizz01' }, - ['-1714592744'] = { Name = 'id2_12_b1_fizz02' }, - ['-2021245046'] = { Name = 'id2_12_b1_fizz03' }, - ['1903235936'] = { Name = 'id2_12_b1_fizz04' }, - ['-318961030'] = { Name = 'id2_12_b1_fizz05' }, - ['1042285609'] = { Name = 'id2_12_build_01_o' }, - ['-979737752'] = { Name = 'id2_12_build_01_ob' }, - ['233927701'] = { Name = 'id2_12_build_01_oc' }, - ['-1599170159'] = { Name = 'id2_12_build_01_od' }, - ['1516997896'] = { Name = 'id2_12_build_01_oe' }, - ['-1545664310'] = { Name = 'id2_12_build_01' }, - ['-329573951'] = { Name = 'id2_12_build_02' }, - ['-875785789'] = { Name = 'id2_12_build_069' }, - ['563370406'] = { Name = 'id2_12_cablemesh105192_thvy' }, - ['-1417016277'] = { Name = 'id2_12_cablemesh105207_thvy' }, - ['478164206'] = { Name = 'id2_12_cablemesh105222_thvy' }, - ['2006881350'] = { Name = 'id2_12_cablemesh105237_thvy' }, - ['-188390175'] = { Name = 'id2_12_cablemesh105252_thvy' }, - ['-1573735112'] = { Name = 'id2_12_cablemesh105267_thvy' }, - ['1251307368'] = { Name = 'id2_12_cablemesh105282_thvy' }, - ['1461905125'] = { Name = 'id2_12_cablemesh105297_thvy' }, - ['-1179691856'] = { Name = 'id2_12_cablemesh105312_thvy' }, - ['-309997273'] = { Name = 'id2_12_cablemesh105327_thvy' }, - ['-868784242'] = { Name = 'id2_12_ground_01' }, - ['-992586325'] = { Name = 'id2_12_railgravel' }, - ['-791858021'] = { Name = 'id2_12_shadowmesh_11' }, - ['2004652477'] = { Name = 'id2_12_walls_01' }, - ['1872347165'] = { Name = 'id2_13_build12b' }, - ['-125912779'] = { Name = 'id2_13_build16_piped' }, - ['1164849314'] = { Name = 'id2_13_build16' }, - ['1542020504'] = { Name = 'id2_13_build19' }, - ['1175938659'] = { Name = 'id2_13_cablemesh9153_thvy' }, - ['402535000'] = { Name = 'id2_13_cablemesh9168_thvy' }, - ['419283968'] = { Name = 'id2_13_cablemesh9183_thvy' }, - ['1510306157'] = { Name = 'id2_13_cablemesh9198_thvy' }, - ['-970806935'] = { Name = 'id2_13_cablemesh9213_thvy' }, - ['1105650504'] = { Name = 'id2_13_cablemesh9228_thvy' }, - ['-73648107'] = { Name = 'id2_13_cablemesh9289_thvy' }, - ['1989813145'] = { Name = 'id2_13_cablemesh9290_thvy' }, - ['179605313'] = { Name = 'id2_13_cablemesh9291_thvy' }, - ['-50972437'] = { Name = 'id2_13_east_o' }, - ['-808840370'] = { Name = 'id2_13_fizza_01' }, - ['-1847879442'] = { Name = 'id2_13_fizzb_01' }, - ['-577063013'] = { Name = 'id2_13_fizzc_01_lod' }, - ['706736103'] = { Name = 'id2_13_fizzc_01' }, - ['-256414962'] = { Name = 'id2_13_fizze_001' }, - ['967344494'] = { Name = 'id2_13_fizzf_01' }, - ['-466071362'] = { Name = 'id2_13_fizzg_001' }, - ['-1414861557'] = { Name = 'id2_13_fizzh_00' }, - ['1045140038'] = { Name = 'id2_13_fizzh_02' }, - ['1656052505'] = { Name = 'id2_13_fizzh_04' }, - ['1696525350'] = { Name = 'id2_13_fizzi_00' }, - ['1421101917'] = { Name = 'id2_13_fizzi_01' }, - ['1634624721'] = { Name = 'id2_13_fizzi_02' }, - ['1891959670'] = { Name = 'id2_13_fizzi_03' }, - ['-1627103244'] = { Name = 'id2_13_fizzi_04' }, - ['-1607705229'] = { Name = 'id2_13_fizzj_00' }, - ['-1326842130'] = { Name = 'id2_13_fizzj_01' }, - ['598140006'] = { Name = 'id2_13_fizzj_02' }, - ['-161707566'] = { Name = 'id2_13_fizzj_03' }, - ['-2013141868'] = { Name = 'id2_13_fizzk_0100' }, - ['441911616'] = { Name = 'id2_13_fizzk_0101' }, - ['1027328224'] = { Name = 'id2_13_fizzletters_01' }, - ['-1727573294'] = { Name = 'id2_13_fizzm_00' }, - ['-1276737392'] = { Name = 'id2_13_fizzm_01' }, - ['1482281508'] = { Name = 'id2_13_gas_02_fizz' }, - ['958395867'] = { Name = 'id2_13_gas_02' }, - ['135423744'] = { Name = 'id2_13_gas_fizz_lod' }, - ['1230881350'] = { Name = 'id2_13_gas_fizz' }, - ['-1376678347'] = { Name = 'id2_13_gasgate_02' }, - ['696228748'] = { Name = 'id2_13_gatealpha_01' }, - ['946191246'] = { Name = 'id2_13_ground_3' }, - ['-521601317'] = { Name = 'id2_13_ground' }, - ['-936623892'] = { Name = 'id2_13_lader_m03' }, - ['889101988'] = { Name = 'id2_13_west_o' }, - ['236911289'] = { Name = 'id2_13_westa_o' }, - ['-1798698973'] = { Name = 'id2_13_westb_o' }, - ['-1801792825'] = { Name = 'id2_14_ads' }, - ['-685831317'] = { Name = 'id2_14_brg_ov_a' }, - ['-1330255283'] = { Name = 'id2_14_brga' }, - ['227845133'] = { Name = 'id2_14_brgb' }, - ['-109108015'] = { Name = 'id2_14_building_milodummy2' }, - ['-278576219'] = { Name = 'id2_14_building_ov' }, - ['-952304603'] = { Name = 'id2_14_building_ova' }, - ['-1241622104'] = { Name = 'id2_14_building_ovb' }, - ['-1563872450'] = { Name = 'id2_14_building_ovc' }, - ['183398198'] = { Name = 'id2_14_building' }, - ['980687386'] = { Name = 'id2_14_building2' }, - ['523630986'] = { Name = 'id2_14_building2fizz' }, - ['-449378221'] = { Name = 'id2_14_cablemesh' }, - ['709942266'] = { Name = 'id2_14_dbrosburnt' }, - ['-130439724'] = { Name = 'id2_14_dbrosburnt002' }, - ['-1851150799'] = { Name = 'id2_14_fx_helper01' }, - ['-177441355'] = { Name = 'id2_14_fx_helper02' }, - ['1493122261'] = { Name = 'id2_14_fx_helper03' }, - ['-1669610543'] = { Name = 'id2_14_fx_helper04' }, - ['-1919383046'] = { Name = 'id2_14_ground' }, - ['-1768340881'] = { Name = 'id2_14_groundov' }, - ['-273228648'] = { Name = 'id2_14_groundova' }, - ['497072235'] = { Name = 'id2_14_groundovb' }, - ['-1017314331'] = { Name = 'id2_14_groundovc' }, - ['18579297'] = { Name = 'id2_14_groundovd' }, - ['1856658045'] = { Name = 'id2_14_groundovl' }, - ['1359817668'] = { Name = 'id2_14_ladder_001' }, - ['1188566874'] = { Name = 'id2_14_ladder_002' }, - ['-1238253155'] = { Name = 'id2_14_ladder03' }, - ['1657739949'] = { Name = 'id2_14_ladder04' }, - ['-2000066219'] = { Name = 'id2_14_milodummy_lod' }, - ['574449434'] = { Name = 'id2_14_milodummy_lod001' }, - ['-1205748890'] = { Name = 'id2_14_milodummy' }, - ['-1442009415'] = { Name = 'id2_14_ov_hiprio' }, - ['-574925030'] = { Name = 'id2_14_predoor_lod' }, - ['-1129531382'] = { Name = 'id2_14_predoor' }, - ['-671638894'] = { Name = 'id2_14_sweat_empty_lod' }, - ['-1963153239'] = { Name = 'id2_14_sweat_lod' }, - ['2094624750'] = { Name = 'id2_15_bld_01_o' }, - ['128072461'] = { Name = 'id2_15_bld_01' }, - ['-963011644'] = { Name = 'id2_15_bld_02_o' }, - ['1021617557'] = { Name = 'id2_15_bld_02' }, - ['1112350281'] = { Name = 'id2_15_bld_03_o' }, - ['723386888'] = { Name = 'id2_15_bld_03' }, - ['-71605075'] = { Name = 'id2_15_bld_04_o' }, - ['-1636308806'] = { Name = 'id2_15_bld_04' }, - ['-1273867623'] = { Name = 'id2_15_cablemesh15107_thvy' }, - ['1007539907'] = { Name = 'id2_15_cablemesh15145_thvy' }, - ['-182724898'] = { Name = 'id2_15_cablemesh15174_thvy' }, - ['111401484'] = { Name = 'id2_15_cablemesh15189_thvy' }, - ['197082890'] = { Name = 'id2_15_cablemesh48288_thvy' }, - ['-1433325498'] = { Name = 'id2_15_cablemesh48313_thvy' }, - ['851621249'] = { Name = 'id2_15_cablemesh48336_thvy' }, - ['994082210'] = { Name = 'id2_15_cablemesh48365_thvy' }, - ['-449290594'] = { Name = 'id2_15_cablemesh48381_thvy' }, - ['507207768'] = { Name = 'id2_15_cablemesh48396_thvy' }, - ['1565336210'] = { Name = 'id2_15_cablemesh48411_thvy' }, - ['1086908882'] = { Name = 'id2_15_cablemesh48441_thvy' }, - ['1391193179'] = { Name = 'id2_15_cablemesh48459_thvy' }, - ['-1006337342'] = { Name = 'id2_15_cablemesh48492_thvy' }, - ['749846250'] = { Name = 'id2_15_cablemesh48508_thvy' }, - ['-6684462'] = { Name = 'id2_15_cablemesh48529_thvy' }, - ['-1021729835'] = { Name = 'id2_15_cablemesh48562_thvy' }, - ['373810776'] = { Name = 'id2_15_cablemesh48579_thvy' }, - ['1743117602'] = { Name = 'id2_15_cablemesh48596_thvy' }, - ['-471589886'] = { Name = 'id2_15_cablemesh48613_thvy' }, - ['625929935'] = { Name = 'id2_15_cablemesh48630_thvy' }, - ['4696441'] = { Name = 'id2_15_cablemesh48647_thvy' }, - ['-1268999467'] = { Name = 'id2_15_cablemesh48664_thvy' }, - ['-1846514865'] = { Name = 'id2_15_cablemesh48681_thvy' }, - ['-1653126268'] = { Name = 'id2_15_fizza_00' }, - ['-1354109143'] = { Name = 'id2_15_fizza_01' }, - ['-511913070'] = { Name = 'id2_15_fizza_02' }, - ['-211060881'] = { Name = 'id2_15_fizza_03' }, - ['-987227415'] = { Name = 'id2_15_fizza_04' }, - ['-689062284'] = { Name = 'id2_15_fizza_05' }, - ['1326542601'] = { Name = 'id2_15_fizzb_00' }, - ['1559235266'] = { Name = 'id2_15_fizzb_01' }, - ['529567752'] = { Name = 'id2_15_fizzb_02' }, - ['1046531496'] = { Name = 'id2_15_fizzb_03' }, - ['87939939'] = { Name = 'id2_15_fizzb_04' }, - ['301003977'] = { Name = 'id2_15_fizzb_05' }, - ['-496364100'] = { Name = 'id2_15_fizzb_06' }, - ['-218777901'] = { Name = 'id2_15_fizzb_07' }, - ['-974562121'] = { Name = 'id2_15_fizzb_08' }, - ['-731907676'] = { Name = 'id2_15_fizzb_09' }, - ['2077924403'] = { Name = 'id2_15_fizzc_01' }, - ['-987254497'] = { Name = 'id2_15_fizzd_00' }, - ['-680700502'] = { Name = 'id2_15_fizzd_01' }, - ['-1192751042'] = { Name = 'id2_15_gnd_01_o' }, - ['-251485370'] = { Name = 'id2_15_gnd_01' }, - ['-1009507971'] = { Name = 'id2_15_gnd_01a_o' }, - ['-1339176127'] = { Name = 'id2_15_gnd_01b_o' }, - ['1046663019'] = { Name = 'id2_15_gnd_01c_o' }, - ['95656377'] = { Name = 'id2_15_lad_005' }, - ['834531789'] = { Name = 'id2_15_lad_006' }, - ['658955487'] = { Name = 'id2_15_lad_007' }, - ['-1410342153'] = { Name = 'id2_15_lad_01' }, - ['-460270536'] = { Name = 'id2_15_lad_02' }, - ['-1761789678'] = { Name = 'id2_15_lad_03' }, - ['-813094359'] = { Name = 'id2_15_lad_04' }, - ['254924478'] = { Name = 'id2_16_b2_decal' }, - ['177603379'] = { Name = 'id2_16_b3' }, - ['-1137542996'] = { Name = 'id2_16_base_01' }, - ['1262038387'] = { Name = 'id2_16_build2_grafreewy' }, - ['183930131'] = { Name = 'id2_16_build2' }, - ['-214177898'] = { Name = 'id2_16_build2b' }, - ['1690499810'] = { Name = 'id2_16_build2glue' }, - ['507845905'] = { Name = 'id2_16_decal_01' }, - ['1751378116'] = { Name = 'id2_16_decal_01a' }, - ['1013705790'] = { Name = 'id2_16_fizz01_hi' }, - ['-1759014889'] = { Name = 'id2_16_fizz02_hi' }, - ['-1413643920'] = { Name = 'id2_16_fizz03_hi' }, - ['-2033783791'] = { Name = 'id2_16_fizz04_hi' }, - ['1512915263'] = { Name = 'id2_16_fizz05_hi' }, - ['-1230622739'] = { Name = 'id2_16_fizz06_hi' }, - ['1766618706'] = { Name = 'id2_16_land_002' }, - ['1528438261'] = { Name = 'id2_16_land_02' }, - ['2092461031'] = { Name = 'id2_16_post_glue001' }, - ['-2081890035'] = { Name = 'id2_16_wiremesh9192_tstd' }, - ['1069139311'] = { Name = 'id2_18_brail041' }, - ['1102926957'] = { Name = 'id2_18_bu04afizz' }, - ['-1989955530'] = { Name = 'id2_18_build004' }, - ['1402339540'] = { Name = 'id2_18_build004d' }, - ['-1545257763'] = { Name = 'id2_18_build004fizz' }, - ['1204372287'] = { Name = 'id2_18_build01_ov' }, - ['1822007866'] = { Name = 'id2_18_build01a_ov' }, - ['1229874491'] = { Name = 'id2_18_build01b_ov' }, - ['1827269031'] = { Name = 'id2_18_build01c_ov' }, - ['-558253250'] = { Name = 'id2_18_build01d_ov' }, - ['-1317122137'] = { Name = 'id2_18_build01e_ov' }, - ['1645685042'] = { Name = 'id2_18_build02' }, - ['2085096580'] = { Name = 'id2_18_build03_dt' }, - ['1150316093'] = { Name = 'id2_18_build03' }, - ['-145745247'] = { Name = 'id2_18_build03d' }, - ['2112465486'] = { Name = 'id2_18_build03d1' }, - ['-1876406581'] = { Name = 'id2_18_build03d2' }, - ['1750859571'] = { Name = 'id2_18_build03d3' }, - ['-1158411408'] = { Name = 'id2_18_build03detail' }, - ['1947959833'] = { Name = 'id2_18_cablemesh75586_thvy' }, - ['1019659731'] = { Name = 'id2_18_decnew' }, - ['519794762'] = { Name = 'id2_18_decnew2' }, - ['548139134'] = { Name = 'id2_18_fizza' }, - ['1064185342'] = { Name = 'id2_18_fizzb' }, - ['1294780795'] = { Name = 'id2_18_fizzc' }, - ['1547134864'] = { Name = 'id2_18_fizzd' }, - ['-405700918'] = { Name = 'id2_18_fizze' }, - ['-596482355'] = { Name = 'id2_18_id2_20shadow' }, - ['1221875313'] = { Name = 'id2_18_id2_frame_fizz01' }, - ['1913729058'] = { Name = 'id2_18_id2_railrainhatsc' }, - ['-1889421304'] = { Name = 'id2_18_land_02a' }, - ['873890163'] = { Name = 'id2_18_land_02b' }, - ['-739418370'] = { Name = 'id2_18_nladder_02' }, - ['-854382207'] = { Name = 'id2_18_pipe02' }, - ['-386539194'] = { Name = 'id2_18_pipe04' }, - ['-1732230944'] = { Name = 'id2_18_pipe06' }, - ['47418615'] = { Name = 'id2_18_pipe06a' }, - ['-55939669'] = { Name = 'id2_18_pipfizz01' }, - ['-438353899'] = { Name = 'id2_18_pipfizz02' }, - ['230930784'] = { Name = 'id2_18_pulley_fizz' }, - ['96873953'] = { Name = 'id2_18_rladder_01_lod' }, - ['830643908'] = { Name = 'id2_18_rladder_01' }, - ['-2146905529'] = { Name = 'id2_18_rladder_010' }, - ['1539896144'] = { Name = 'id2_18_rladder_02' }, - ['-1727385839'] = { Name = 'id2_18_rladder_03_lod' }, - ['1308645311'] = { Name = 'id2_18_rladder_03' }, - ['-511836492'] = { Name = 'id2_18_rladder_05' }, - ['-875572392'] = { Name = 'id2_18_rladder_06' }, - ['-199842955'] = { Name = 'id2_18_rladder_08' }, - ['-369914065'] = { Name = 'id2_18_rladder_09' }, - ['-50685960'] = { Name = 'id2_18_rladdr_002' }, - ['170996325'] = { Name = 'id2_18_rladdr_003' }, - ['641345959'] = { Name = 'id2_18_rladdr_01' }, - ['358400760'] = { Name = 'id2_18_roofover_det002' }, - ['-2032743360'] = { Name = 'id2_18_roofover002' }, - ['-794217287'] = { Name = 'id2_18_telegraph_wires' }, - ['705635042'] = { Name = 'id2_18flyers_01' }, - ['-578052446'] = { Name = 'id2_18lad_fizz005' }, - ['1891244008'] = { Name = 'id2_18lad_fizz01' }, - ['-385665903'] = { Name = 'id2_18lad_fizz01b' }, - ['1678474887'] = { Name = 'id2_18lad_fizz03' }, - ['-2002095955'] = { Name = 'id2_18lad_fizz03a' }, - ['-1807368245'] = { Name = 'id2_18lad_fizz03a001' }, - ['1372445196'] = { Name = 'id2_18lad_fizz04' }, - ['-847058684'] = { Name = 'id2_19_cablemesh30618_thvy' }, - ['504519339'] = { Name = 'id2_19_diner_decal' }, - ['-1851912798'] = { Name = 'id2_19_diner' }, - ['-2036617743'] = { Name = 'id2_19_fizza_00' }, - ['-1576639290'] = { Name = 'id2_19_fizza_02' }, - ['-1927658462'] = { Name = 'id2_19_graffiti' }, - ['-1145662294'] = { Name = 'id2_19_graflarge01' }, - ['-839075530'] = { Name = 'id2_19_graflarge02' }, - ['180287672'] = { Name = 'id2_19_ground2_decal' }, - ['-1389099284'] = { Name = 'id2_19_ground2' }, - ['-956810636'] = { Name = 'id2_19_ground3' }, - ['-1090672990'] = { Name = 'id2_19_id2_biilboard' }, - ['-1150521956'] = { Name = 'id2_19_ottoshop_b1' }, - ['-1539590580'] = { Name = 'id2_19_under01_d' }, - ['-419305127'] = { Name = 'id2_19_under01' }, - ['527247543'] = { Name = 'id2_19_under01b_d' }, - ['943493746'] = { Name = 'id2_19_under01b' }, - ['1183624978'] = { Name = 'id2_19_under01c' }, - ['-1365915266'] = { Name = 'id2_20_bri01_dec' }, - ['1544362115'] = { Name = 'id2_20_bri01' }, - ['1914722565'] = { Name = 'id2_20_britdec01' }, - ['65204751'] = { Name = 'id2_20_building01_d' }, - ['291403838'] = { Name = 'id2_20_building01' }, - ['2022792470'] = { Name = 'id2_20_det_01' }, - ['1465945284'] = { Name = 'id2_20_glue' }, - ['107577353'] = { Name = 'id2_20_ladder01' }, - ['-35986598'] = { Name = 'id2_20_land_02' }, - ['-496385772'] = { Name = 'id2_20_pillars_01' }, - ['731345498'] = { Name = 'id2_20_railfizz03' }, - ['-710595688'] = { Name = 'id2_20braketfizz01' }, - ['1470155252'] = { Name = 'id2_21_a_bridge_ovly' }, - ['-1936705752'] = { Name = 'id2_21_a_bridgebase_ovly' }, - ['1058060635'] = { Name = 'id2_21_a_bridgemain' }, - ['19344379'] = { Name = 'id2_21_a_bridgemnte' }, - ['1908968756'] = { Name = 'id2_21_a_bridgemntw' }, - ['1524456257'] = { Name = 'id2_21_a_bridgemntwrails' }, - ['745487206'] = { Name = 'id2_21_a_bridgemntwrailsb2' }, - ['1916225273'] = { Name = 'id2_21_a_bridgemntwrailsba' }, - ['2127355940'] = { Name = 'id2_21_a_bridgemntwrailsbb' }, - ['-1223616334'] = { Name = 'id2_21_a_bridgeside' }, - ['-971139881'] = { Name = 'id2_21_a_end_ovly' }, - ['791374243'] = { Name = 'id2_21_a_fenceafizz_hi' }, - ['289002701'] = { Name = 'id2_21_a_fenceafizzb_hi' }, - ['-194455841'] = { Name = 'id2_21_a_fencebfizz_hi' }, - ['-356014614'] = { Name = 'id2_21_a_fencebfizzb_hi' }, - ['1035193760'] = { Name = 'id2_21_a_fencecfizz_hi' }, - ['-1441732950'] = { Name = 'id2_21_a_fencecfizzb_hi' }, - ['493386017'] = { Name = 'id2_21_a_fencedfizz_hi' }, - ['-1679756994'] = { Name = 'id2_21_a_fencedfizzb_hi' }, - ['-153865858'] = { Name = 'id2_21_a_fizzyrails_002' }, - ['-461042464'] = { Name = 'id2_21_a_fizzyrails_003' }, - ['-624330391'] = { Name = 'id2_21_a_fizzyrails_004' }, - ['-922266139'] = { Name = 'id2_21_a_fizzyrails_005' }, - ['-2127935956'] = { Name = 'id2_21_a_fizzyrails_006' }, - ['1564732350'] = { Name = 'id2_21_a_id2light' }, - ['389511367'] = { Name = 'id2_21_a_id2light001' }, - ['-387671006'] = { Name = 'id2_21_a_id2light002' }, - ['-1666710614'] = { Name = 'id2_21_a_id2light003' }, - ['-1370052857'] = { Name = 'id2_21_a_id2light004' }, - ['1343941265'] = { Name = 'id2_21_a_id2light005' }, - ['569118260'] = { Name = 'id2_21_a_id2light006' }, - ['-106938983'] = { Name = 'id2_21_a_id2light007' }, - ['1127796941'] = { Name = 'id2_21_a_id2light008' }, - ['1772133788'] = { Name = 'id2_21_a_id2light009' }, - ['-1496671429'] = { Name = 'id2_21_a_id2light010' }, - ['-1807321553'] = { Name = 'id2_21_a_id2light011' }, - ['-2013831791'] = { Name = 'id2_21_a_id2light012' }, - ['-575239918'] = { Name = 'id2_21_a_id2light013' }, - ['-1184120707'] = { Name = 'id2_21_a_id2light015' }, - ['-1319330447'] = { Name = 'id2_21_a_ladders_002' }, - ['-618729227'] = { Name = 'id2_21_a_ladders_003' }, - ['861741380'] = { Name = 'id2_21_a_ladders_004' }, - ['631211465'] = { Name = 'id2_21_a_ladders_005' }, - ['-1762826141'] = { Name = 'id2_21_a_ladders_006' }, - ['233127191'] = { Name = 'id2_21_a_ladders_01' }, - ['-1261900418'] = { Name = 'id2_21_a_maint_ovly' }, - ['1361738191'] = { Name = 'id2_21_a_maintw_ovly' }, - ['758868265'] = { Name = 'id2_21_a_plots10-12_ovly' }, - ['1481215982'] = { Name = 'id2_21_a_plots1-3' }, - ['-203038946'] = { Name = 'id2_21_a_plots4-6_ovly' }, - ['1046354802'] = { Name = 'id2_21_a_plots4-6' }, - ['-1937835467'] = { Name = 'id2_21_a_plots7-12_ovly' }, - ['634518709'] = { Name = 'id2_21_a_plots7-9' }, - ['623199792'] = { Name = 'id2_21_a_shadowblocker01' }, - ['-1442820120'] = { Name = 'id2_21_a_shadowblocker02' }, - ['-1152486780'] = { Name = 'id2_21_a_shadowblocker03' }, - ['-1972072239'] = { Name = 'id2_21_a_shadowblocker04' }, - ['-1672924038'] = { Name = 'id2_21_a_shadowblocker05' }, - ['1300552371'] = { Name = 'id2_21_a_shadowproxy' }, - ['1447628259'] = { Name = 'id2_21_a_stairway_railings' }, - ['-553032759'] = { Name = 'id2_21_a_terrain' }, - ['1161614545'] = { Name = 'id2_21_a_terrain03' }, - ['1157397822'] = { Name = 'id2_21_a_terrainground1' }, - ['-64918651'] = { Name = 'id2_21_a_terrainground2' }, - ['-1631557728'] = { Name = 'id2_21_a_tnlsec_04' }, - ['1983107919'] = { Name = 'id2_21_a_tnlsec' }, - ['88659787'] = { Name = 'id2_21_a_tunn_ovly' }, - ['720031242'] = { Name = 'id2_21_a_tunnel0l_05a' }, - ['1808586526'] = { Name = 'id2_21_a_tunnelol_01' }, - ['-859289006'] = { Name = 'id2_21_a_tunnelol_01b' }, - ['926248432'] = { Name = 'id2_21_a_tunnelol_02' }, - ['1198591591'] = { Name = 'id2_21_a_tunnelol_03' }, - ['-595629056'] = { Name = 'id2_21_a_tunnelol_03b' }, - ['307405867'] = { Name = 'id2_21_a_tunnelol_04' }, - ['-619224728'] = { Name = 'id2_21_a_tunnelol_04b' }, - ['552681832'] = { Name = 'id2_21_a_tunnelol_05' }, - ['-265429022'] = { Name = 'id2_21_a_tunnelol_06' }, - ['-59541395'] = { Name = 'id2_21_a_tunnelol_07' }, - ['-212189400'] = { Name = 'id2_21_a_tunnelsh1' }, - ['-577760364'] = { Name = 'id2_21_a_tunnelsh2' }, - ['1272606759'] = { Name = 'id2_21_a_tunnelsh3' }, - ['937642041'] = { Name = 'id2_21_a_tunnelsh4' }, - ['706063518'] = { Name = 'id2_21_a_tunnelsh5' }, - ['1577787381'] = { Name = 'id2_21_a_tunnelstuff1' }, - ['775143495'] = { Name = 'id2_21_a_tunnelstuff2' }, - ['2035799694'] = { Name = 'id2_21_a_tunnelstuff3' }, - ['-1950221470'] = { Name = 'id2_21_a_tunnelstuff4' }, - ['-1568364313'] = { Name = 'id2_21_a_tunnelstuff5' }, - ['-1258791029'] = { Name = 'id2_21_b_billboard01_hi' }, - ['300329497'] = { Name = 'id2_21_b_billboard02_hi' }, - ['-602166605'] = { Name = 'id2_21_b_build01' }, - ['-1988360847'] = { Name = 'id2_21_b_build02' }, - ['1819580081'] = { Name = 'id2_21_b_details' }, - ['540239505'] = { Name = 'id2_21_b_emissivedummy_hi' }, - ['-677787513'] = { Name = 'id2_21_b_fizz01_hi' }, - ['235196539'] = { Name = 'id2_21_b_gnd01' }, - ['1188610594'] = { Name = 'id2_21_b_gnd02' }, - ['373209791'] = { Name = 'id2_21_b_grnddetail' }, - ['1375097670'] = { Name = 'id2_21_b_grnddetailb' }, - ['-287303809'] = { Name = 'id2_21_b_id2_21b_ladder_m3' }, - ['2064485086'] = { Name = 'id2_21_b_wires' }, - ['253121969'] = { Name = 'id2_21_billboard_hi' }, - ['-920687201'] = { Name = 'id2_21_builda_fizz01' }, - ['1292271698'] = { Name = 'id2_21_builda' }, - ['2069900442'] = { Name = 'id2_21_buildb_night_slod' }, - ['1912613320'] = { Name = 'id2_21_buildb_night' }, - ['-207237742'] = { Name = 'id2_21_buildb' }, - ['2131746198'] = { Name = 'id2_21_c_builda' }, - ['654121158'] = { Name = 'id2_21_c_buildb1' }, - ['2133860329'] = { Name = 'id2_21_c_buildb1rails' }, - ['953662587'] = { Name = 'id2_21_c_buildb2' }, - ['-497688203'] = { Name = 'id2_21_c_buildb2rails' }, - ['1043405007'] = { Name = 'id2_21_c_buildb2rails1_lod' }, - ['883929867'] = { Name = 'id2_21_c_buildc1' }, - ['-1338747425'] = { Name = 'id2_21_c_buildc1rails' }, - ['705306048'] = { Name = 'id2_21_c_buildc2' }, - ['-123333546'] = { Name = 'id2_21_c_buildc2rails' }, - ['-1373907803'] = { Name = 'id2_21_c_decala' }, - ['-1094456794'] = { Name = 'id2_21_c_decalb1' }, - ['-1967554030'] = { Name = 'id2_21_c_decalb2' }, - ['-1661131111'] = { Name = 'id2_21_c_decalb3' }, - ['1926617799'] = { Name = 'id2_21_c_decalb3a' }, - ['-1456521799'] = { Name = 'id2_21_c_decalc1' }, - ['-225521549'] = { Name = 'id2_21_c_decalc2' }, - ['80508142'] = { Name = 'id2_21_c_decalc3' }, - ['349679226'] = { Name = 'id2_21_c_decalc3a' }, - ['1322303541'] = { Name = 'id2_21_c_gluea' }, - ['-98552252'] = { Name = 'id2_21_c_gluea2' }, - ['-2128632622'] = { Name = 'id2_21_c_glueb' }, - ['1246320073'] = { Name = 'id2_21_c_glueb2' }, - ['-1812928233'] = { Name = 'id2_21_c_glueb3' }, - ['584249920'] = { Name = 'id2_21_c_grnda' }, - ['-183167291'] = { Name = 'id2_21_c_grndb' }, - ['-834483935'] = { Name = 'id2_21_c_grndc' }, - ['-1541447685'] = { Name = 'id2_21_c_hedgetop03' }, - ['-390436556'] = { Name = 'id2_21_c_hedgetop04' }, - ['2105512636'] = { Name = 'id2_21_c_hedgetop05' }, - ['133078192'] = { Name = 'id2_21_c_hedgetop2' }, - ['1689441835'] = { Name = 'id2_21_c_hedgetops' }, - ['-1617516662'] = { Name = 'id2_21_c_id2_21c_billboardad' }, - ['-1309426253'] = { Name = 'id2_21_c_id2_21c_ladder_01' }, - ['1263857779'] = { Name = 'id2_21_c_id2_21c_ladder_02' }, - ['-1758185354'] = { Name = 'id2_21_c_uvanim002' }, - ['1241096351'] = { Name = 'id2_21_c_uvanim01' }, - ['1757531596'] = { Name = 'id2_21_c_weed' }, - ['-874274211'] = { Name = 'id2_21_d_decals_a2' }, - ['-576249891'] = { Name = 'id2_21_d_decals_b_1' }, - ['191167320'] = { Name = 'id2_21_d_decals_b_2' }, - ['1643646085'] = { Name = 'id2_21_d_decals_c' }, - ['389826809'] = { Name = 'id2_21_d_decals_ca' }, - ['-1286256402'] = { Name = 'id2_21_d_hedgecutouta' }, - ['-372656682'] = { Name = 'id2_21_d_hedgecutoutb' }, - ['-643442422'] = { Name = 'id2_21_d_mesh_a' }, - ['-429591928'] = { Name = 'id2_21_d_mesh_b' }, - ['1698459697'] = { Name = 'id2_21_d_mesh_c' }, - ['-2043044333'] = { Name = 'id2_21_e_boathouse' }, - ['-2026563303'] = { Name = 'id2_21_e_boathousedecals' }, - ['-597568856'] = { Name = 'id2_21_e_boathouserails' }, - ['1310911052'] = { Name = 'id2_21_e_bridge_hi' }, - ['799096124'] = { Name = 'id2_21_e_bridgerails' }, - ['-2054545655'] = { Name = 'id2_21_e_newparka' }, - ['521556519'] = { Name = 'id2_21_e_newparkb' }, - ['-1098361848'] = { Name = 'id2_21_e_parkrailings' }, - ['-707655592'] = { Name = 'id2_21_e_propsa' }, - ['-74296360'] = { Name = 'id2_21_e_propsb' }, - ['858639752'] = { Name = 'id2_21_e_reflectproxy_hd' }, - ['-274546278'] = { Name = 'id2_21_e_reflectproxy_slod' }, - ['1834311242'] = { Name = 'id2_21_e_treedecal' }, - ['1487632903'] = { Name = 'id2_21_e_water' }, - ['-810341147'] = { Name = 'id2_21_f_alley_decala' }, - ['-1576677037'] = { Name = 'id2_21_f_alley_decalb' }, - ['-24759314'] = { Name = 'id2_21_f_hedgeb' }, - ['232843674'] = { Name = 'id2_21_f_railings' }, - ['881281769'] = { Name = 'id2_21_f_res_decal001' }, - ['-1630265887'] = { Name = 'id2_21_f_res_decal3' }, - ['2108830257'] = { Name = 'id2_21_f_res_ground' }, - ['-941366508'] = { Name = 'id2_21_f_res_ground3' }, - ['-783320598'] = { Name = 'id2_21_g_a_hedgetops00' }, - ['-1223408268'] = { Name = 'id2_21_g_a_hedgetops01' }, - ['-2107778008'] = { Name = 'id2_21_g_a_hedgetops02' }, - ['-1925975596'] = { Name = 'id2_21_g_a_hedgetops03' }, - ['1459750257'] = { Name = 'id2_21_g_a_hedgetops04' }, - ['1141845619'] = { Name = 'id2_21_g_blend_decal01' }, - ['2060090820'] = { Name = 'id2_21_g_culdesac_grnd' }, - ['1500788111'] = { Name = 'id2_21_g_flagfizz4_lod' }, - ['750811590'] = { Name = 'id2_21_g_id2_21g_flagfizz1_lod' }, - ['-862509569'] = { Name = 'id2_21_g_id2_21g_flagfizz1' }, - ['-1681344458'] = { Name = 'id2_21_g_id2_21g_flagfizz2_lod' }, - ['-529379911'] = { Name = 'id2_21_g_id2_21g_flagfizz2' }, - ['68596801'] = { Name = 'id2_21_g_id2_21g_flagfizz3_lod' }, - ['36802875'] = { Name = 'id2_21_g_id2_21g_flagfizz3' }, - ['854356656'] = { Name = 'id2_21_g_id2_21g_flagfizz4' }, - ['-1261173749'] = { Name = 'id2_21_g_land3_blend' }, - ['-1540681668'] = { Name = 'id2_21_g_res_2_grnd' }, - ['542227169'] = { Name = 'id2_21_g_timberfzz01' }, - ['-380321993'] = { Name = 'id2_21_g_timberfzz01a' }, - ['311828330'] = { Name = 'id2_21_g_timberfzz02' }, - ['-610097941'] = { Name = 'id2_21_g_timberfzz02a' }, - ['-857929888'] = { Name = 'id2_21_g_timberfzz02b' }, - ['-839694464'] = { Name = 'id2_21_g_woodframes' }, - ['-997059739'] = { Name = 'id2_21_g_woodframesb' }, - ['-1744061863'] = { Name = 'id2_21_g_woodframesc' }, - ['-657626948'] = { Name = 'id2_21_grndbdecals' }, - ['-1931198776'] = { Name = 'id2_21_grndenddecals' }, - ['-1104535560'] = { Name = 'id2_21_ladders_003' }, - ['-310706531'] = { Name = 'id2_21_ladders_004' }, - ['-1153361366'] = { Name = 'id2_21_ladders_005' }, - ['-1859402248'] = { Name = 'id2_21_ladders_006' }, - ['300878346'] = { Name = 'id2_21_ladders_01' }, - ['-1147275071'] = { Name = 'id2_21_resdecalsa' }, - ['-830955914'] = { Name = 'id2_21_resdecalsb' }, - ['-667766294'] = { Name = 'id2_21_resdecalsc' }, - ['-1040932831'] = { Name = 'id2_21_resgrnda' }, - ['-1781479470'] = { Name = 'id2_21_resgrndb' }, - ['-1497437778'] = { Name = 'id2_21_resgrndc' }, - ['-468841012'] = { Name = 'id2_21_terr_end' }, - ['1847484926'] = { Name = 'id2_21_terraina' }, - ['1540373858'] = { Name = 'id2_21_terrainb' }, - ['-1393164033'] = { Name = 'id2_21_wires' }, - ['-108950953'] = { Name = 'id2_emissive__slod' }, - ['400022158'] = { Name = 'id2_emissive_01' }, - ['993698127'] = { Name = 'id2_emissive_07' }, - ['-770608600'] = { Name = 'id2_emissive_07b_lod' }, - ['1093410582'] = { Name = 'id2_emissive_07b' }, - ['1071032367'] = { Name = 'id2_emissive_16' }, - ['-1847763855'] = { Name = 'id2_emissive_21_a_11' }, - ['1995062468'] = { Name = 'id2_emissive_21_c_01' }, - ['1094373730'] = { Name = 'id2_emissive_21_c_04' }, - ['-91765763'] = { Name = 'id2_emissive_21_c_07' }, - ['-130629797'] = { Name = 'id2_emissive_21_c_08' }, - ['579137976'] = { Name = 'id2_emissive_id2_01' }, - ['1775767745'] = { Name = 'id2_emissive_id2_04_01' }, - ['-2011673279'] = { Name = 'id2_emissive_id2_04_02' }, - ['-1722552388'] = { Name = 'id2_emissive_id2_04_03' }, - ['-2022355969'] = { Name = 'id2_emissive_id2_04_04' }, - ['1385086217'] = { Name = 'id2_emissive_id2_04_04b' }, - ['-1909438275'] = { Name = 'id2_emissive_id2_06' }, - ['885033946'] = { Name = 'id2_emissive_id2_10_lod' }, - ['1542706645'] = { Name = 'id2_emissive_id2_10' }, - ['-2105086012'] = { Name = 'id2_emissive_id2_11_01' }, - ['1346702145'] = { Name = 'id2_emissive_id2_11_02' }, - ['-1292513123'] = { Name = 'id2_emissive_id2_11_03' }, - ['779057998'] = { Name = 'id2_emissive_id2_12_01' }, - ['1071521323'] = { Name = 'id2_emissive_id2_12_02' }, - ['-768559464'] = { Name = 'id2_emissive_id2_13_01' }, - ['715515741'] = { Name = 'id2_emissive_id2_13_02' }, - ['-110951208'] = { Name = 'id2_emissive_id2_13_03' }, - ['1310895702'] = { Name = 'id2_emissive_id2_13_04' }, - ['1549000781'] = { Name = 'id2_emissive_id2_14_02' }, - ['509215993'] = { Name = 'id2_emissive_id2_15_01' }, - ['-1986995351'] = { Name = 'id2_emissive_id2_15_02' }, - ['1122946594'] = { Name = 'id2_emissive_id2_15_03' }, - ['756916864'] = { Name = 'id2_emissive_id2_15_04' }, - ['-1555409001'] = { Name = 'id2_emissive_id2_18_01' }, - ['-1862290686'] = { Name = 'id2_emissive_id2_18_02' }, - ['-331945589'] = { Name = 'id2_emissive_id2_18_04' }, - ['-646855679'] = { Name = 'id2_emissive_id2_18_05' }, - ['-1961506948'] = { Name = 'id2_emissive_id2_19_01' }, - ['2128881788'] = { Name = 'id2_emissive_id2_21_01' }, - ['18263275'] = { Name = 'id2_emissive_id2_21_02' }, - ['1309572571'] = { Name = 'id2_emissive_res00' }, - ['620227954'] = { Name = 'id2_emissive_res010' }, - ['290637352'] = { Name = 'id2_emissive_res011' }, - ['156644911'] = { Name = 'id2_emissive_res012' }, - ['-198702125'] = { Name = 'id2_emissive_res013' }, - ['-304054460'] = { Name = 'id2_emissive_res014' }, - ['-686435921'] = { Name = 'id2_emissive_res015' }, - ['-1364590372'] = { Name = 'id2_emissive_res016' }, - ['-501618757'] = { Name = 'id2_emissive_res017' }, - ['-1821685161'] = { Name = 'id2_emissive_res018' }, - ['-983683516'] = { Name = 'id2_emissive_res019' }, - ['310609606'] = { Name = 'id2_emissive_res02' }, - ['702733228'] = { Name = 'id2_emissive_res020' }, - ['388019752'] = { Name = 'id2_emissive_res021' }, - ['-848387387'] = { Name = 'id2_emissive_res022' }, - ['985169239'] = { Name = 'id2_emissive_res023' }, - ['-291773153'] = { Name = 'id2_emissive_res024' }, - ['-590003822'] = { Name = 'id2_emissive_res025' }, - ['-1841845160'] = { Name = 'id2_emissive_res026' }, - ['-2140272443'] = { Name = 'id2_emissive_res027' }, - ['-1687044408'] = { Name = 'id2_emissive_res028' }, - ['-1981277259'] = { Name = 'id2_emissive_res029' }, - ['-396905873'] = { Name = 'id2_emissive_res03' }, - ['208617209'] = { Name = 'id2_emissive_res030' }, - ['1570234697'] = { Name = 'id2_emissive_res031' }, - ['-1732847738'] = { Name = 'id2_emissive_res032' }, - ['-2024655683'] = { Name = 'id2_emissive_res033' }, - ['871665155'] = { Name = 'id2_emissive_res034' }, - ['-1496878169'] = { Name = 'id2_emissive_res035' }, - ['-1339586961'] = { Name = 'id2_emissive_res037' }, - ['2045647349'] = { Name = 'id2_emissive_res038' }, - ['-341213838'] = { Name = 'id2_emissive_res039' }, - ['-90876182'] = { Name = 'id2_emissive_res04' }, - ['-1815360312'] = { Name = 'id2_emissive_res040' }, - ['1981059418'] = { Name = 'id2_emissive_res041' }, - ['821593891'] = { Name = 'id2_emissive_res042' }, - ['1100392543'] = { Name = 'id2_emissive_res043' }, - ['-351962302'] = { Name = 'id2_emissive_res044' }, - ['-1127768377'] = { Name = 'id2_emissive_res045' }, - ['-2038681047'] = { Name = 'id2_emissive_res046' }, - ['-632104483'] = { Name = 'id2_emissive_res047' }, - ['576645620'] = { Name = 'id2_emissive_res048' }, - ['-199422607'] = { Name = 'id2_emissive_res049' }, - ['-861537532'] = { Name = 'id2_emissive_res05' }, - ['-272924970'] = { Name = 'id2_emissive_res050' }, - ['-173765976'] = { Name = 'id2_emissive_res051' }, - ['2015629217'] = { Name = 'id2_emissive_res052' }, - ['-2115820769'] = { Name = 'id2_emissive_res053' }, - ['-1664067335'] = { Name = 'id2_emissive_res054' }, - ['-1367016350'] = { Name = 'id2_emissive_res055' }, - ['1754034266'] = { Name = 'id2_emissive_res056' }, - ['2080249661'] = { Name = 'id2_emissive_res057' }, - ['-1775285345'] = { Name = 'id2_emissive_res058' }, - ['-1473908852'] = { Name = 'id2_emissive_res059' }, - ['-552034319'] = { Name = 'id2_emissive_res06' }, - ['917476517'] = { Name = 'id2_emissive_res060' }, - ['1376308055'] = { Name = 'id2_emissive_res061' }, - ['1670344292'] = { Name = 'id2_emissive_res062' }, - ['-297499696'] = { Name = 'id2_emissive_res063' }, - ['2033293736'] = { Name = 'id2_emissive_res064' }, - ['-1963967195'] = { Name = 'id2_emissive_res065' }, - ['-1798745897'] = { Name = 'id2_emissive_res066' }, - ['-1500842918'] = { Name = 'id2_emissive_res067' }, - ['-1033294790'] = { Name = 'id2_emissive_res068' }, - ['-1322808905'] = { Name = 'id2_emissive_res069' }, - ['-1856109451'] = { Name = 'id2_emissive_res07' }, - ['-906611316'] = { Name = 'id2_emissive_res070' }, - ['-1139320345'] = { Name = 'id2_emissive_res08' }, - ['1977765246'] = { Name = 'id2_emissive_res09' }, - ['306952354'] = { Name = 'id2_lod_00a_proxy' }, - ['629106487'] = { Name = 'id2_lod_emissive_ref' }, - ['-172709582'] = { Name = 'id2_lod_emissive' }, - ['341970037'] = { Name = 'id2_lod_id2_water_lod_slod4' }, - ['-461831703'] = { Name = 'id2_lod_slod4' }, - ['-2065352382'] = { Name = 'id2_props_cablemesh127270_thvy' }, - ['-400565028'] = { Name = 'id2_props_cablemesh127285_thvy' }, - ['900026800'] = { Name = 'id2_props_cablemesh127300_thvy' }, - ['-961308982'] = { Name = 'id2_props_cablemesh127315_thvy' }, - ['2090180314'] = { Name = 'id2_props_cablemesh127330_thvy' }, - ['1107902364'] = { Name = 'id2_props_cablemesh127345_thvy' }, - ['-1680783888'] = { Name = 'id2_props_cablemesh127360_thvy' }, - ['945741993'] = { Name = 'id2_props_cablemesh127375_thvy' }, - ['-1406743211'] = { Name = 'id2_props_cablemesh127390_thvy' }, - ['795591617'] = { Name = 'id2_props_cablemesh127405_thvy' }, - ['1509749311'] = { Name = 'id2_props_cablemesh127422_thvy' }, - ['77936207'] = { Name = 'id2_props_cablemesh127440_thvy' }, - ['-1083587673'] = { Name = 'id2_props_cablemesh127455_thvy' }, - ['45128439'] = { Name = 'id2_props_cablemesh127471_thvy' }, - ['1389716363'] = { Name = 'id2_props_combo01_dslod' }, - ['1779735241'] = { Name = 'id2_props_id2_railrainhatsa' }, - ['-607650258'] = { Name = 'id2_props_id2_railrainhatsb' }, - ['-280025796'] = { Name = 'id2_props_id2_railrainhatsc' }, - ['-557124600'] = { Name = 'id2_propsb_id2_cablesb_00' }, - ['-2023176891'] = { Name = 'id2_propsb_id2_cablesb_01' }, - ['1107409524'] = { Name = 'id2_propsb_id2_cablesb_03' }, - ['-1733204010'] = { Name = 'id2_propsb_id2_cablesb_04' }, - ['-1094164084'] = { Name = 'id2_propsb_id2_cablesb_04b' }, - ['1946733574'] = { Name = 'id2_propsb_id2_cablesb_04c' }, - ['1623160815'] = { Name = 'id2_propsb_id2_cablesb_05' }, - ['-1003829394'] = { Name = 'id2_rail_bridfizz01' }, - ['349007000'] = { Name = 'id2_rail_bridge01' }, - ['-704738343'] = { Name = 'id2_rail_rail_' }, - ['2063891531'] = { Name = 'id2_rail_rail_01' }, - ['-400839532'] = { Name = 'id2_rail_rail_013' }, - ['-73335422'] = { Name = 'id2_rail_rail_02' }, - ['-2059464512'] = { Name = 'id2_rail_rail_03' }, - ['2032225488'] = { Name = 'id2_rail_rail_04_o' }, - ['-1743407507'] = { Name = 'id2_rail_rail_04' }, - ['-1578382823'] = { Name = 'id2_rail_rail_05' }, - ['1596376320'] = { Name = 'id2_rail_rail_06' }, - ['1506458184'] = { Name = 'id2_rail_rail_07' }, - ['45714471'] = { Name = 'id2_rail_rail_08' }, - ['1837064625'] = { Name = 'id2_rail_rail_09' }, - ['-863953325'] = { Name = 'id2_rail_rail_10' }, - ['-624510242'] = { Name = 'id2_rail_rail_11' }, - ['-386148536'] = { Name = 'id2_rail_rail_12' }, - ['-466194131'] = { Name = 'id2_rail_rail_d' }, - ['-1966621533'] = { Name = 'id2_rail_rail01_d' }, - ['-1666934141'] = { Name = 'id2_rail_raild_2b' }, - ['-989333071'] = { Name = 'id2_rail_rovly_' }, - ['-1967740799'] = { Name = 'id2_rail_rovly_01' }, - ['2102332850'] = { Name = 'id2_rail_rovly_02' }, - ['-1572972656'] = { Name = 'id2_rail_rovly_03' }, - ['-730743818'] = { Name = 'id2_rail_rovly_04' }, - ['-1230864296'] = { Name = 'id2_rail_rovly_05' }, - ['-402889973'] = { Name = 'id2_rail_rovly_06' }, - ['-647379482'] = { Name = 'id2_rail_rovly_07' }, - ['1874962896'] = { Name = 'id2_rd_154' }, - ['251596710'] = { Name = 'id2_rd_b02_o' }, - ['-550526110'] = { Name = 'id2_rd_b02' }, - ['806316173'] = { Name = 'id2_rd_b03_o' }, - ['823248677'] = { Name = 'id2_rd_b03' }, - ['456179218'] = { Name = 'id2_rd_b03c' }, - ['705183184'] = { Name = 'id2_rd_b04_o' }, - ['-224478057'] = { Name = 'id2_rd_bridgea_hi' }, - ['-2084693801'] = { Name = 'id2_rd_bridgeb_hi' }, - ['2143580863'] = { Name = 'id2_rd_britdec003' }, - ['224321795'] = { Name = 'id2_rd_britun01' }, - ['1722053367'] = { Name = 'id2_rd_dtown01' }, - ['586366980'] = { Name = 'id2_rd_fizza_00' }, - ['882828123'] = { Name = 'id2_rd_fizza_01' }, - ['576569049'] = { Name = 'id2_rd_fizza_02' }, - ['1883724459'] = { Name = 'id2_rd_fizza_03' }, - ['2122151703'] = { Name = 'id2_rd_fizza_04' }, - ['1287230352'] = { Name = 'id2_rd_fizza_05' }, - ['1459136526'] = { Name = 'id2_rd_fizza_06' }, - ['1251086213'] = { Name = 'id2_rd_fizza_07' }, - ['1414275833'] = { Name = 'id2_rd_fizza_08' }, - ['-1548271218'] = { Name = 'id2_rd_fizza_09' }, - ['55902704'] = { Name = 'id2_rd_fizza_10' }, - ['327852635'] = { Name = 'id2_rd_fizza_11' }, - ['69075846'] = { Name = 'id2_rd_fizza_12' }, - ['368027433'] = { Name = 'id2_rd_fizza_13' }, - ['1858296015'] = { Name = 'id2_rd_fizza_14' }, - ['-2140013524'] = { Name = 'id2_rd_fizza_15' }, - ['1282380840'] = { Name = 'id2_rd_fizza_16' }, - ['-1494202072'] = { Name = 'id2_rd_fizza_17' }, - ['-1188106843'] = { Name = 'id2_rd_fizza_18' }, - ['1280135776'] = { Name = 'id2_rd_glue00' }, - ['1525444510'] = { Name = 'id2_rd_glue01' }, - ['-374141651'] = { Name = 'id2_rd_glue02' }, - ['-160094543'] = { Name = 'id2_rd_glue03' }, - ['89638006'] = { Name = 'id2_rd_glue04' }, - ['335700427'] = { Name = 'id2_rd_glue05' }, - ['-1022902313'] = { Name = 'id2_rd_glue06' }, - ['394546791'] = { Name = 'id2_rd_id2_tel_00' }, - ['572416923'] = { Name = 'id2_rd_id2_tel_01' }, - ['1015191651'] = { Name = 'id2_rd_id2_tel_02' }, - ['1539135192'] = { Name = 'id2_rd_id2_tel_04' }, - ['1963362666'] = { Name = 'id2_rd_id2_tel_05' }, - ['-2011549807'] = { Name = 'id2_rd_id2_tel_06' }, - ['-1855176139'] = { Name = 'id2_rd_id2_tel_07' }, - ['-1564023574'] = { Name = 'id2_rd_id2_tel_08' }, - ['1320439230'] = { Name = 'id2_rd_id2_tel_13' }, - ['1569647475'] = { Name = 'id2_rd_id2_tel_14' }, - ['-414831861'] = { Name = 'id2_rd_r2_01' }, - ['264794105'] = { Name = 'id2_rd_r2_02_o' }, - ['-653554026'] = { Name = 'id2_rd_r2_02' }, - ['325332305'] = { Name = 'id2_rd_r2_02b_o' }, - ['1732427914'] = { Name = 'id2_rd_r3_05_o' }, - ['-447954322'] = { Name = 'id2_rd_r3_05' }, - ['-882710089'] = { Name = 'id2_rd_r4_01_o' }, - ['-469527637'] = { Name = 'id2_rd_r4_01' }, - ['806693735'] = { Name = 'id2_rd_r4_02_o' }, - ['-107430187'] = { Name = 'id2_rd_r4_02' }, - ['2133206361'] = { Name = 'id2_rd_r4_03_o' }, - ['14110034'] = { Name = 'id2_rd_r4_03' }, - ['499625894'] = { Name = 'id2_rd_r4_04_o' }, - ['252897737'] = { Name = 'id2_rd_r4_04' }, - ['-1691483651'] = { Name = 'id2_rd_r4_05' }, - ['1271909085'] = { Name = 'id2_rd_r5_01_o' }, - ['1649200317'] = { Name = 'id2_rd_r5_01' }, - ['1656603112'] = { Name = 'id2_rd_r5_02_o' }, - ['1970860821'] = { Name = 'id2_rd_r5_02' }, - ['2083482636'] = { Name = 'id2_rd_r5_03_o' }, - ['-200052660'] = { Name = 'id2_rd_r5_03' }, - ['2119008751'] = { Name = 'id2_rd_r5_04_o' }, - ['-2042882917'] = { Name = 'id2_rd_r5_04' }, - ['2073924137'] = { Name = 'id2_rd_r5_05_o' }, - ['-1689108793'] = { Name = 'id2_rd_r5_05' }, - ['-2053280542'] = { Name = 'id2_rd_r6_01_o' }, - ['61443570'] = { Name = 'id2_rd_r6_01' }, - ['529887462'] = { Name = 'id2_rd_r6_02_o' }, - ['-975957432'] = { Name = 'id2_rd_r6_02' }, - ['-340981254'] = { Name = 'id2_rd_r6_03_o' }, - ['940078767'] = { Name = 'id2_rd_r6_03' }, - ['2099373321'] = { Name = 'id2_rd_r6_04_o' }, - ['-327557229'] = { Name = 'id2_rd_r6_04' }, - ['-1718221089'] = { Name = 'id2_rd_r6_05_o' }, - ['-709840383'] = { Name = 'id2_rd_r6_05' }, - ['-95160571'] = { Name = 'id2_rd_r6_06_o' }, - ['2106491294'] = { Name = 'id2_rd_r6_06' }, - ['-321993666'] = { Name = 'id2_rdb_r1_01_o' }, - ['-1993144563'] = { Name = 'id2_rdb_r1_01' }, - ['1380280369'] = { Name = 'id2_rdb_r1_02_o' }, - ['1514973505'] = { Name = 'id2_rdb_r1_02' }, - ['-995243609'] = { Name = 'id2_rdb_r1_03_o' }, - ['-1390948650'] = { Name = 'id2_rdb_r1_03' }, - ['-1735670780'] = { Name = 'id2_rdb_r1_04_o' }, - ['-32018216'] = { Name = 'id2_rdb_r1_04' }, - ['-65733544'] = { Name = 'id2_rdb_r1_05_o' }, - ['-799763117'] = { Name = 'id2_rdb_r1_05' }, - ['612507900'] = { Name = 'id2_rdb_r1_06_o' }, - ['-1582024689'] = { Name = 'id2_rdb_r1_06' }, - ['-1585979927'] = { Name = 'id2_rdb_r2_03_o' }, - ['11329108'] = { Name = 'id2_rdb_r2_04_o' }, - ['-185130195'] = { Name = 'id2_rdb_r2_04' }, - ['-10869550'] = { Name = 'id2_rdb_r2_05_o' }, - ['-1490483310'] = { Name = 'id2_rdb_r2_05' }, - ['-603623094'] = { Name = 'id2_rdb_r2_07' }, - ['1839791154'] = { Name = 'id2_rdb_r3_01_o' }, - ['1376948174'] = { Name = 'id2_rdb_r3_01' }, - ['470697715'] = { Name = 'id2_rdb_r3_02_o' }, - ['2069357144'] = { Name = 'id2_rdb_r3_02' }, - ['-1198327153'] = { Name = 'id2_rdb_r3_03_o' }, - ['1839613685'] = { Name = 'id2_rdb_r3_03' }, - ['716599004'] = { Name = 'id2_rdb_r3_04_o' }, - ['-1494959755'] = { Name = 'id2_rdb_r3_04' }, - ['1074457665'] = { Name = 'ig_abigail' }, - ['610988552'] = { Name = 'ig_agent' }, - ['1830688247'] = { Name = 'ig_amandatownley' }, - ['1206185632'] = { Name = 'ig_andreas' }, - ['2129936603'] = { Name = 'ig_ashley' }, - ['-1492432238'] = { Name = 'ig_ballasog' }, - ['-1868718465'] = { Name = 'ig_bankman' }, - ['797459875'] = { Name = 'ig_barry' }, - ['1464257942'] = { Name = 'ig_bestmen' }, - ['-1113448868'] = { Name = 'ig_beverly' }, - ['-1111799518'] = { Name = 'ig_brad' }, - ['1633872967'] = { Name = 'ig_bride' }, - ['-2063996617'] = { Name = 'ig_car3guy1' }, - ['1975732938'] = { Name = 'ig_car3guy2' }, - ['-520477356'] = { Name = 'ig_casey' }, - ['1240128502'] = { Name = 'ig_chef' }, - ['-2054645053'] = { Name = 'ig_chef2' }, - ['-1427838341'] = { Name = 'ig_chengsr' }, - ['678319271'] = { Name = 'ig_chrisformage' }, - ['1825562762'] = { Name = 'ig_clay' }, - ['-1660909656'] = { Name = 'ig_claypain' }, - ['-429715051'] = { Name = 'ig_cletus' }, - ['1182012905'] = { Name = 'ig_dale' }, - ['365775923'] = { Name = 'ig_davenorton' }, - ['-2113195075'] = { Name = 'ig_denise' }, - ['1952555184'] = { Name = 'ig_devin' }, - ['-1674727288'] = { Name = 'ig_dom' }, - ['-628553422'] = { Name = 'ig_dreyfuss' }, - ['-872673803'] = { Name = 'ig_drfriedlander' }, - ['-795819184'] = { Name = 'ig_fabien' }, - ['988062523'] = { Name = 'ig_fbisuit_01' }, - ['-1313761614'] = { Name = 'ig_floyd' }, - ['-20018299'] = { Name = 'ig_groom' }, - ['1704428387'] = { Name = 'ig_hao' }, - ['-837606178'] = { Name = 'ig_hunter' }, - ['225287241'] = { Name = 'ig_janet' }, - ['2050158196'] = { Name = 'ig_jay_norris' }, - ['257763003'] = { Name = 'ig_jewelass' }, - ['-308279251'] = { Name = 'ig_jimmyboston' }, - ['1459905209'] = { Name = 'ig_jimmydisanto' }, - ['-1105179493'] = { Name = 'ig_joeminuteman' }, - ['-2016771922'] = { Name = 'ig_johnnyklebitz' }, - ['-518348876'] = { Name = 'ig_josef' }, - ['2040438510'] = { Name = 'ig_josh' }, - ['-346957479'] = { Name = 'ig_karen_daniels' }, - ['1530648845'] = { Name = 'ig_kerrymcintosh' }, - ['1706635382'] = { Name = 'ig_lamardavis' }, - ['-538688539'] = { Name = 'ig_lazlow' }, - ['1302784073'] = { Name = 'ig_lestercrest' }, - ['1401530684'] = { Name = 'ig_lifeinvad_01' }, - ['666718676'] = { Name = 'ig_lifeinvad_02' }, - ['-52653814'] = { Name = 'ig_magenta' }, - ['-46035440'] = { Name = 'ig_manuel' }, - ['411185872'] = { Name = 'ig_marnie' }, - ['-1552967674'] = { Name = 'ig_maryann' }, - ['1005070462'] = { Name = 'ig_maude' }, - ['-1080659212'] = { Name = 'ig_michelle' }, - ['-886023758'] = { Name = 'ig_milton' }, - ['-1358701087'] = { Name = 'ig_molly' }, - ['939183526'] = { Name = 'ig_money' }, - ['-67533719'] = { Name = 'ig_mp_agent14' }, - ['-304305299'] = { Name = 'ig_mrk' }, - ['503621995'] = { Name = 'ig_mrs_thornhill' }, - ['946007720'] = { Name = 'ig_mrsphillips' }, - ['-568861381'] = { Name = 'ig_natalia' }, - ['-1124046095'] = { Name = 'ig_nervousron' }, - ['-927525251'] = { Name = 'ig_nigel' }, - ['1906124788'] = { Name = 'ig_old_man1a' }, - ['-283816889'] = { Name = 'ig_old_man2' }, - ['1625728984'] = { Name = 'ig_omega' }, - ['768005095'] = { Name = 'ig_oneil' }, - ['1641334641'] = { Name = 'ig_orleans' }, - ['648372919'] = { Name = 'ig_ortega' }, - ['357551935'] = { Name = 'ig_paige' }, - ['-1717894970'] = { Name = 'ig_paper' }, - ['-982642292'] = { Name = 'ig_patricia' }, - ['645279998'] = { Name = 'ig_popov' }, - ['1681385341'] = { Name = 'ig_priest' }, - ['666086773'] = { Name = 'ig_prolsec_02' }, - ['-449965460'] = { Name = 'ig_ramp_gang' }, - ['1165307954'] = { Name = 'ig_ramp_hic' }, - ['-554721426'] = { Name = 'ig_ramp_hipster' }, - ['-424905564'] = { Name = 'ig_ramp_mex' }, - ['940330470'] = { Name = 'ig_rashcosvki' }, - ['-709209345'] = { Name = 'ig_roccopelosi' }, - ['1024089777'] = { Name = 'ig_russiandrunk' }, - ['-1689993'] = { Name = 'ig_screen_writer' }, - ['1283141381'] = { Name = 'ig_siemonyetarian' }, - ['-2034368986'] = { Name = 'ig_solomon' }, - ['941695432'] = { Name = 'ig_stevehains' }, - ['915948376'] = { Name = 'ig_stretch' }, - ['-409745176'] = { Name = 'ig_talina' }, - ['226559113'] = { Name = 'ig_tanisha' }, - ['-597926235'] = { Name = 'ig_taocheng' }, - ['2089096292'] = { Name = 'ig_taostranslator' }, - ['-1573167273'] = { Name = 'ig_tenniscoach' }, - ['1728056212'] = { Name = 'ig_terry' }, - ['-847807830'] = { Name = 'ig_tomepsilon' }, - ['-892841148'] = { Name = 'ig_tonya' }, - ['-566941131'] = { Name = 'ig_tracydisanto' }, - ['1461287021'] = { Name = 'ig_trafficwarden' }, - ['1382414087'] = { Name = 'ig_tylerdix' }, - ['-1835459726'] = { Name = 'ig_wade' }, - ['188012277'] = { Name = 'ig_zimbor' }, - ['-1486744544'] = { Name = 'ind_prop_dlc_flag_01' }, - ['1572208841'] = { Name = 'ind_prop_dlc_flag_02' }, - ['525880110'] = { Name = 'ind_prop_dlc_roller_car_02' }, - ['1543894721'] = { Name = 'ind_prop_dlc_roller_car' }, - ['-1611832715'] = { Name = 'ind_prop_firework_01' }, - ['-879052345'] = { Name = 'ind_prop_firework_02' }, - ['-1118757580'] = { Name = 'ind_prop_firework_03' }, - ['-1502580877'] = { Name = 'ind_prop_firework_04' }, - ['418536135'] = { Name = 'infernus' }, - ['-1405937764'] = { Name = 'infernus2' }, - ['-1289722222'] = { Name = 'ingot' }, - ['-159126838'] = { Name = 'innovation' }, - ['-1860900134'] = { Name = 'insurgent' }, - ['2071877360'] = { Name = 'insurgent2' }, - ['-288163167'] = { Name = 'int_boxthing' }, - ['886934177'] = { Name = 'intruder' }, - ['-1177863319'] = { Name = 'issi2' }, - ['-2048333973'] = { Name = 'italigtb' }, - ['-482719877'] = { Name = 'italigtb2' }, - ['-624529134'] = { Name = 'jackal' }, - ['1051415893'] = { Name = 'jb700' }, - ['-1297672541'] = { Name = 'jester' }, - ['-1106353882'] = { Name = 'jester2' }, - ['1058115860'] = { Name = 'jet' }, - ['861409633'] = { Name = 'jetmax' }, - ['-120287622'] = { Name = 'journey' }, - ['92612664'] = { Name = 'kalahari' }, - ['544021352'] = { Name = 'khamelion' }, - ['32913979'] = { Name = 'kt1_00_02' }, - ['1164736217'] = { Name = 'kt1_00_02ovly' }, - ['-1499015167'] = { Name = 'kt1_00_05ovly' }, - ['687048745'] = { Name = 'kt1_00_06' }, - ['-21985337'] = { Name = 'kt1_00_gnd_dcl_f' }, - ['1526728569'] = { Name = 'kt1_00_grnd04_land' }, - ['880977347'] = { Name = 'kt1_00_grnd04_o' }, - ['-51112718'] = { Name = 'kt1_00_grnd04_o1' }, - ['1210331535'] = { Name = 'kt1_00_grnd04_ramp' }, - ['-1543033071'] = { Name = 'kt1_00_grnd05_land' }, - ['-329760055'] = { Name = 'kt1_00_shadowproxy_01' }, - ['-2122236110'] = { Name = 'kt1_00_tunnel' }, - ['825810545'] = { Name = 'kt1_01_00' }, - ['467055525'] = { Name = 'kt1_01_01' }, - ['945974460'] = { Name = 'kt1_01_03' }, - ['629884686'] = { Name = 'kt1_01_04' }, - ['248025074'] = { Name = 'kt1_01_glue_01' }, - ['1602040158'] = { Name = 'kt1_01_glue_02' }, - ['843405035'] = { Name = 'kt1_01_glue_03' }, - ['-2095122271'] = { Name = 'kt1_01_glue_04' }, - ['384334934'] = { Name = 'kt1_01_shadowcaster' }, - ['-1104019814'] = { Name = 'kt1_02_build' }, - ['-209137944'] = { Name = 'kt1_02_detail' }, - ['-1384751664'] = { Name = 'kt1_02_skyscraper' }, - ['-643321187'] = { Name = 'kt1_03_02_r2fint' }, - ['-794418410'] = { Name = 'kt1_03_02_r3fint' }, - ['1840916529'] = { Name = 'kt1_03_02_r3iint2' }, - ['605214549'] = { Name = 'kt1_03_02_r3j_ovlyint' }, - ['-864702061'] = { Name = 'kt1_03_02_r4iint2' }, - ['-341068877'] = { Name = 'kt1_03_bld' }, - ['1515171624'] = { Name = 'kt1_03_glue_02' }, - ['1889164221'] = { Name = 'kt1_03_glue_03' }, - ['1453980949'] = { Name = 'kt1_03_glue_int' }, - ['-594134890'] = { Name = 'kt1_03_glue' }, - ['1606913433'] = { Name = 'kt1_03_glue2_int' }, - ['998516882'] = { Name = 'kt1_03_grd_carparkbits2int' }, - ['2041952847'] = { Name = 'kt1_03_grd_carparkbitsint' }, - ['-1171182756'] = { Name = 'kt1_03_grd_markings2int' }, - ['-1434480077'] = { Name = 'kt1_03_grd_markingsint' }, - ['19469904'] = { Name = 'kt1_03_grd_nonshadow' }, - ['-1842511984'] = { Name = 'kt1_03_grd_nonshadowint' }, - ['1452137678'] = { Name = 'kt1_03_grd' }, - ['224034403'] = { Name = 'kt1_03_grdint' }, - ['1482808700'] = { Name = 'kt1_03_interior_reflection' }, - ['314183075'] = { Name = 'kt1_04_02_r3iint' }, - ['-123624365'] = { Name = 'kt1_04_build03_noshadowint' }, - ['-1623527605'] = { Name = 'kt1_04_build03' }, - ['-1920290838'] = { Name = 'kt1_04_build12int' }, - ['-904148252'] = { Name = 'kt1_04_build17' }, - ['1475324199'] = { Name = 'kt1_04_detail_carpark' }, - ['1497594889'] = { Name = 'kt1_04_detail' }, - ['-1030603692'] = { Name = 'kt1_04_detail01' }, - ['2062319766'] = { Name = 'kt1_04_detail01int' }, - ['78626946'] = { Name = 'kt1_04_detail07' }, - ['-1844126898'] = { Name = 'kt1_04_detail08' }, - ['594100841'] = { Name = 'kt1_04_detailint' }, - ['2107836430'] = { Name = 'kt1_04_detailint2' }, - ['-1386520307'] = { Name = 'kt1_04_fizza_00' }, - ['380810174'] = { Name = 'kt1_04_fizza_01' }, - ['678451001'] = { Name = 'kt1_04_fizza_02' }, - ['2047801973'] = { Name = 'kt1_04_fizza_03' }, - ['211459982'] = { Name = 'kt1_04_fizza_04' }, - ['-846519952'] = { Name = 'kt1_04_fizza_05' }, - ['-97289536'] = { Name = 'kt1_04_fizza_06' }, - ['821127227'] = { Name = 'kt1_04_fizza_07' }, - ['-1011937864'] = { Name = 'kt1_04_fizza_08' }, - ['890433678'] = { Name = 'kt1_04_fizza_09' }, - ['-353741150'] = { Name = 'kt1_04_fizza_10' }, - ['-1320787109'] = { Name = 'kt1_04_fizza_11' }, - ['-812146691'] = { Name = 'kt1_04_fizza_12' }, - ['-1850137535'] = { Name = 'kt1_04_fizza_13' }, - ['-1030375479'] = { Name = 'kt1_04_fizza_15_lod' }, - ['2012639420'] = { Name = 'kt1_04_fizza_16' }, - ['1311579434'] = { Name = 'kt1_04_fizza_17' }, - ['1551612359'] = { Name = 'kt1_04_fizza_18' }, - ['543900039'] = { Name = 'kt1_04_fizza_19' }, - ['-393127536'] = { Name = 'kt1_04_fizza_20' }, - ['912782652'] = { Name = 'kt1_04_fizza_21' }, - ['-1004498769'] = { Name = 'kt1_04_fizza_22' }, - ['-743442682'] = { Name = 'kt1_04_fw_dcl' }, - ['1776995093'] = { Name = 'kt1_04_landa' }, - ['2037672488'] = { Name = 'kt1_04_landb' }, - ['1530943732'] = { Name = 'kt1_04_shadow' }, - ['1138983251'] = { Name = 'kt1_04_shadow01' }, - ['-1187288063'] = { Name = 'kt1_04_shadow02' }, - ['-808949549'] = { Name = 'kt1_04_supports' }, - ['-1079004717'] = { Name = 'kt1_04_tunnel_01_int_lod' }, - ['1118661943'] = { Name = 'kt1_04_tunnel_01' }, - ['-1167544758'] = { Name = 'kt1_04_tunnel_01int' }, - ['-520107087'] = { Name = 'kt1_04_tunnel_02int' }, - ['1540257122'] = { Name = 'kt1_04_underground_detail' }, - ['-1281898044'] = { Name = 'kt1_04_underground_glue' }, - ['1115655671'] = { Name = 'kt1_05_00_fizz01' }, - ['1338910868'] = { Name = 'kt1_05_00_fizz02' }, - ['-839310100'] = { Name = 'kt1_05_00_fizz03' }, - ['-1643180179'] = { Name = 'kt1_05_00_fizz06_lod' }, - ['-2030561561'] = { Name = 'kt1_05_00_fizz06' }, - ['80908958'] = { Name = 'kt1_05_00_fizz07' }, - ['1486365682'] = { Name = 'kt1_05_00_noshadow' }, - ['-1154101555'] = { Name = 'kt1_05_00' }, - ['-1517575303'] = { Name = 'kt1_05_01' }, - ['399939167'] = { Name = 'kt1_05_fuzzd_00' }, - ['1251212249'] = { Name = 'kt1_05_fuzzd_01' }, - ['1011441476'] = { Name = 'kt1_05_fuzzd_02' }, - ['1250491335'] = { Name = 'kt1_05_fuzzd_03' }, - ['1012555626'] = { Name = 'kt1_05_fuzzd_04' }, - ['-586440498'] = { Name = 'kt1_05_fuzzd_05' }, - ['1842897297'] = { Name = 'kt1_05_glue_a' }, - ['-2069754012'] = { Name = 'kt1_05_glue_b' }, - ['-1035510547'] = { Name = 'kt1_05_glue' }, - ['-1081622907'] = { Name = 'kt1_05_props_combo02_slod' }, - ['987944569'] = { Name = 'kt1_06_aptbld' }, - ['-299398110'] = { Name = 'kt1_06_banner_01' }, - ['-1831198469'] = { Name = 'kt1_06_church' }, - ['1111626012'] = { Name = 'kt1_06_consitefizz01_lod' }, - ['1642483896'] = { Name = 'kt1_06_consitefizz01' }, - ['-1319606329'] = { Name = 'kt1_06_consitehedge' }, - ['-1048604412'] = { Name = 'kt1_06_decals01' }, - ['-1753662216'] = { Name = 'kt1_06_decals02' }, - ['-1523394453'] = { Name = 'kt1_06_decals03' }, - ['1591135152'] = { Name = 'kt1_06_decals04' }, - ['1818617550'] = { Name = 'kt1_06_decals05' }, - ['2094208083'] = { Name = 'kt1_06_fence_sign' }, - ['189393543'] = { Name = 'kt1_06_fizza_00' }, - ['-1068804985'] = { Name = 'kt1_06_fizza_01' }, - ['-292605678'] = { Name = 'kt1_06_fizza_02' }, - ['431359839'] = { Name = 'kt1_06_fizza_03' }, - ['1206117306'] = { Name = 'kt1_06_fizza_04' }, - ['-47296944'] = { Name = 'kt1_06_fizza_05' }, - ['727263909'] = { Name = 'kt1_06_fizza_06' }, - ['-1616704773'] = { Name = 'kt1_06_fizzb_00' }, - ['1182787526'] = { Name = 'kt1_06_fizzb_001' }, - ['-825857831'] = { Name = 'kt1_06_fizzb_01' }, - ['1963373915'] = { Name = 'kt1_06_fizzb_02' }, - ['-1309987037'] = { Name = 'kt1_06_fizzb_03' }, - ['-1601663906'] = { Name = 'kt1_06_fizzb_04' }, - ['2104575536'] = { Name = 'kt1_06_fizzb_05' }, - ['733815493'] = { Name = 'kt1_06_fizzb_06' }, - ['-1596650630'] = { Name = 'kt1_06_fizzb1a' }, - ['-546579127'] = { Name = 'kt1_06_grd01' }, - ['1947478378'] = { Name = 'kt1_06_hedgedetail_01' }, - ['1725009637'] = { Name = 'kt1_06_hedgedetail_02' }, - ['1450110496'] = { Name = 'kt1_06_hedgedetail_03' }, - ['1096008682'] = { Name = 'kt1_06_hedgedetail_04' }, - ['-641033076'] = { Name = 'kt1_06_plazabld' }, - ['1007603236'] = { Name = 'kt1_06_plazastairs_01' }, - ['-1641367996'] = { Name = 'kt1_07_detail' }, - ['1779349573'] = { Name = 'kt1_07_detail02' }, - ['2014368865'] = { Name = 'kt1_07_detail03' }, - ['709168788'] = { Name = 'kt1_07_fizz01a' }, - ['-897790995'] = { Name = 'kt1_07_fizza_00' }, - ['-1229216661'] = { Name = 'kt1_07_fizza_01' }, - ['-1529806698'] = { Name = 'kt1_07_fizza_02' }, - ['594935262'] = { Name = 'kt1_07_fizza_03' }, - ['258987474'] = { Name = 'kt1_07_fizza_04' }, - ['-4639131'] = { Name = 'kt1_07_fizza_05' }, - ['-544468843'] = { Name = 'kt1_07_interior01' }, - ['1265102909'] = { Name = 'kt1_07_kplaza' }, - ['582771119'] = { Name = 'kt1_07_laddergang' }, - ['-1603296138'] = { Name = 'kt1_07_neons_01' }, - ['19575093'] = { Name = 'kt1_07_park_06' }, - ['-2054945664'] = { Name = 'kt1_07_roofladder' }, - ['414646835'] = { Name = 'kt1_07_wiltern_01_textem' }, - ['-1933562690'] = { Name = 'kt1_07_wiltern_01' }, - ['-1940785932'] = { Name = 'kt1_08_apt_01_d1' }, - ['-829465341'] = { Name = 'kt1_08_apt_01a_water' }, - ['-1439001815'] = { Name = 'kt1_08_apt_01a' }, - ['-1246437729'] = { Name = 'kt1_08_apt_02_d1' }, - ['-1511421081'] = { Name = 'kt1_08_apt_02a' }, - ['-2108363028'] = { Name = 'kt1_08_apt_04_d1' }, - ['-311708970'] = { Name = 'kt1_08_apt_06_d1' }, - ['-1278204590'] = { Name = 'kt1_08_bld' }, - ['-344237907'] = { Name = 'kt1_08_fizza_00' }, - ['1773688101'] = { Name = 'kt1_08_fizza_01' }, - ['1478799870'] = { Name = 'kt1_08_fizza_02' }, - ['1294375938'] = { Name = 'kt1_08_fizza_03' }, - ['998242485'] = { Name = 'kt1_08_fizza_04' }, - ['-1563703477'] = { Name = 'kt1_08_fizza_05' }, - ['-1860557848'] = { Name = 'kt1_08_fizza_06' }, - ['-2041573804'] = { Name = 'kt1_08_fizza_07' }, - ['2043016512'] = { Name = 'kt1_08_fizza_08' }, - ['-133992007'] = { Name = 'kt1_08_fizza_09' }, - ['1816646184'] = { Name = 'kt1_08_fizza_10' }, - ['-316910637'] = { Name = 'kt1_08_fizza_11' }, - ['1994099753'] = { Name = 'kt1_08_fizzc_00' }, - ['-2123259563'] = { Name = 'kt1_08_fizzc_01' }, - ['1730564037'] = { Name = 'kt1_08_fizzd_01' }, - ['518343006'] = { Name = 'kt1_08_glue' }, - ['1924448356'] = { Name = 'kt1_08_hedgedetail01' }, - ['822295810'] = { Name = 'kt1_08_hedgedetail02' }, - ['524851597'] = { Name = 'kt1_08_hedgedetail03' }, - ['-27879818'] = { Name = 'kt1_08_ladder01' }, - ['1877572002'] = { Name = 'kt1_08_ladder02' }, - ['432229711'] = { Name = 'kt1_08_ladder03' }, - ['187707433'] = { Name = 'kt1_08_ladder04' }, - ['-1911287660'] = { Name = 'kt1_09_building1' }, - ['-863413084'] = { Name = 'kt1_09_building2_fizza' }, - ['-800451333'] = { Name = 'kt1_09_building2' }, - ['1613700450'] = { Name = 'kt1_09_buildingfuzz_01' }, - ['1259459143'] = { Name = 'kt1_09_fencefizz_01' }, - ['439515029'] = { Name = 'kt1_09_fizz01a' }, - ['1677211917'] = { Name = 'kt1_09_ground' }, - ['-1258434105'] = { Name = 'kt1_09_hedgedetail' }, - ['232234910'] = { Name = 'kt1_09_hedgedetail01' }, - ['822852711'] = { Name = 'kt1_09_kt1_carpark_01' }, - ['-861423742'] = { Name = 'kt1_09_ovly1' }, - ['1204202938'] = { Name = 'kt1_09_ovly2' }, - ['-2138814397'] = { Name = 'kt1_09_seoulstepsextrasint' }, - ['-1169746142'] = { Name = 'kt1_09_seoulstepsint' }, - ['-1711314887'] = { Name = 'kt1_09_subway_lod' }, - ['92521016'] = { Name = 'kt1_09_subway_reflect' }, - ['50117072'] = { Name = 'kt1_09_subwayfizz_01' }, - ['-1072201616'] = { Name = 'kt1_10_aptm_detailb' }, - ['-1203873629'] = { Name = 'kt1_10_aptm_h' }, - ['1944342386'] = { Name = 'kt1_10_aptm' }, - ['2060931274'] = { Name = 'kt1_10_build_01_x' }, - ['782373199'] = { Name = 'kt1_10_build_01_xa_lod' }, - ['1026866273'] = { Name = 'kt1_10_build_01_xa' }, - ['369363689'] = { Name = 'kt1_10_detail01c' }, - ['666545750'] = { Name = 'kt1_10_detail01d' }, - ['-1266047589'] = { Name = 'kt1_10_detail02' }, - ['-1572929274'] = { Name = 'kt1_10_detail03' }, - ['1217373937'] = { Name = 'kt1_10_flyers00' }, - ['949290748'] = { Name = 'kt1_10_flyers01' }, - ['1790733130'] = { Name = 'kt1_10_flyers02' }, - ['1559941063'] = { Name = 'kt1_10_flyers03' }, - ['1260567720'] = { Name = 'kt1_10_ground' }, - ['-1122132433'] = { Name = 'kt1_11_apt_01' }, - ['1463865983'] = { Name = 'kt1_11_apt_02' }, - ['1955513843'] = { Name = 'kt1_11_aptladder_01' }, - ['276697159'] = { Name = 'kt1_11_carwash_details_01' }, - ['1151049241'] = { Name = 'kt1_11_cwash_d_no_spinners' }, - ['-919013111'] = { Name = 'kt1_11_cwash_d' }, - ['151189009'] = { Name = 'kt1_11_decal01' }, - ['1962754562'] = { Name = 'kt1_11_decal010' }, - ['-2007403336'] = { Name = 'kt1_11_decal02' }, - ['1568939790'] = { Name = 'kt1_11_decal03' }, - ['1826536899'] = { Name = 'kt1_11_decal04' }, - ['-1105108921'] = { Name = 'kt1_11_decal05' }, - ['1091823150'] = { Name = 'kt1_11_decal06' }, - ['-513368823'] = { Name = 'kt1_11_decal15' }, - ['-2084445763'] = { Name = 'kt1_11_decal16' }, - ['2135965193'] = { Name = 'kt1_11_detail_01' }, - ['1829083508'] = { Name = 'kt1_11_detail_02' }, - ['1264048471'] = { Name = 'kt1_11_detail_fizz' }, - ['-1052804137'] = { Name = 'kt1_11_emm01_a_lod' }, - ['613897263'] = { Name = 'kt1_11_emm01_a' }, - ['-1108431481'] = { Name = 'kt1_11_ems_lod' }, - ['1611256801'] = { Name = 'kt1_11_fence_a_01' }, - ['1572851527'] = { Name = 'kt1_11_fence_b_01' }, - ['-2108040810'] = { Name = 'kt1_11_fence_c_01' }, - ['2015381452'] = { Name = 'kt1_11_flyers' }, - ['308910039'] = { Name = 'kt1_11_gas' }, - ['-137671009'] = { Name = 'kt1_11_gasgnd' }, - ['1392471276'] = { Name = 'kt1_11_ground_01' }, - ['844376982'] = { Name = 'kt1_11_ground_03' }, - ['1141624581'] = { Name = 'kt1_11_ground_04' }, - ['-645206502'] = { Name = 'kt1_11_mp_door' }, - ['1209301005'] = { Name = 'kt1_11_night01' }, - ['-1631047307'] = { Name = 'kt1_11_shop' }, - ['-729420824'] = { Name = 'kt1_12_decal_02' }, - ['1350099920'] = { Name = 'kt1_12_decal_03' }, - ['1587606314'] = { Name = 'kt1_12_decal' }, - ['466151723'] = { Name = 'kt1_12_detail' }, - ['2102757681'] = { Name = 'kt1_12_ground' }, - ['-1893519150'] = { Name = 'kt1_12_hedgedetail' }, - ['726204298'] = { Name = 'kt1_12_hedgedetail01' }, - ['-456407770'] = { Name = 'kt1_12_policedep' }, - ['-711635061'] = { Name = 'kt1_12_railing' }, - ['679307345'] = { Name = 'kt1_12_shop' }, - ['-1442431369'] = { Name = 'kt1_12_shopladder' }, - ['-1564614824'] = { Name = 'kt1_13_bld1' }, - ['417648950'] = { Name = 'kt1_13_bld1fizz03' }, - ['332245728'] = { Name = 'kt1_13_bld1fizz2_lod' }, - ['1592041501'] = { Name = 'kt1_13_bld2_v_02' }, - ['-2119270426'] = { Name = 'kt1_13_bld2_v' }, - ['1270050139'] = { Name = 'kt1_13_bld2fizz_v' }, - ['-1332611862'] = { Name = 'kt1_13_bldfizz05_01' }, - ['1547201436'] = { Name = 'kt1_13_decal_00' }, - ['-1607601274'] = { Name = 'kt1_13_decal_01' }, - ['2087955474'] = { Name = 'kt1_13_decal_02' }, - ['-1025656599'] = { Name = 'kt1_13_decal_03' }, - ['-1860020881'] = { Name = 'kt1_13_decal_04' }, - ['13939914'] = { Name = 'kt1_13_decal_05' }, - ['-1462675734'] = { Name = 'kt1_13_detail01a' }, - ['633589969'] = { Name = 'kt1_13_detail01b' }, - ['1024065373'] = { Name = 'kt1_13_detail01c' }, - ['171055534'] = { Name = 'kt1_13_detail01d' }, - ['728735266'] = { Name = 'kt1_13_detailb_01' }, - ['-488928005'] = { Name = 'kt1_13_detailb_02' }, - ['1206605593'] = { Name = 'kt1_13_detailb_03' }, - ['-251221663'] = { Name = 'kt1_13_detailb_04' }, - ['1259210896'] = { Name = 'kt1_13_fizza_00' }, - ['1783645936'] = { Name = 'kt1_13_fizza_01' }, - ['1417157440'] = { Name = 'kt1_13_fizza_02' }, - ['-1898573829'] = { Name = 'kt1_13_fizza_03' }, - ['-1760747415'] = { Name = 'kt1_13_fizza_04' }, - ['-527529570'] = { Name = 'kt1_13_fizzb1_00' }, - ['531564518'] = { Name = 'kt1_13_fizzb1_01' }, - ['-1827718222'] = { Name = 'kt1_13_ground1ns_walls' }, - ['666165633'] = { Name = 'kt1_13_ground1ns' }, - ['-109716255'] = { Name = 'kt1_13_ground2ns_walls' }, - ['1570339460'] = { Name = 'kt1_13_ground2ns' }, - ['-704967145'] = { Name = 'kt1_13_ground2nsfizz1' }, - ['-1058479117'] = { Name = 'kt1_13_ground2nsfizz2' }, - ['-1272581542'] = { Name = 'kt1_13_ladder01' }, - ['1190198292'] = { Name = 'kt1_13_props_prop_05_slod' }, - ['1564417504'] = { Name = 'kt1_13_props_prop_06_slod' }, - ['1520386630'] = { Name = 'kt1_13_scaffold01' }, - ['93296676'] = { Name = 'kt1_13_scaffold02' }, - ['399719595'] = { Name = 'kt1_13_scaffold03' }, - ['571298079'] = { Name = 'kt1_13_scaffold04' }, - ['1364060731'] = { Name = 'kt1_13_shadow_object' }, - ['-284273354'] = { Name = 'kt1_14_apt' }, - ['-921755468'] = { Name = 'kt1_14_apt2' }, - ['-1500728565'] = { Name = 'kt1_14_decal00' }, - ['-1731061866'] = { Name = 'kt1_14_decal01' }, - ['65596866'] = { Name = 'kt1_14_decal02' }, - ['-177876804'] = { Name = 'kt1_14_decal03' }, - ['2143872388'] = { Name = 'kt1_14_decal05' }, - ['-104859743'] = { Name = 'kt1_14_fencefizz_01_slod' }, - ['186549603'] = { Name = 'kt1_14_fencefizz_01' }, - ['-424821447'] = { Name = 'kt1_14_fencefizz_02_slod' }, - ['1170274983'] = { Name = 'kt1_14_fencefizz_02' }, - ['-593838207'] = { Name = 'kt1_14_fizz05a' }, - ['1929767135'] = { Name = 'kt1_14_fizz6a' }, - ['-1061715746'] = { Name = 'kt1_14_fizzx_00' }, - ['-765844445'] = { Name = 'kt1_14_fizzx_01' }, - ['-266707037'] = { Name = 'kt1_14_fizzx_02' }, - ['-102206657'] = { Name = 'kt1_14_fizzx_03' }, - ['-190682953'] = { Name = 'kt1_14_fizzx_04' }, - ['-1247272568'] = { Name = 'kt1_14_flyers00' }, - ['-1511554553'] = { Name = 'kt1_14_flyers01' }, - ['1728699107'] = { Name = 'kt1_14_ground01' }, - ['-1415093219'] = { Name = 'kt1_14_ground02' }, - ['2044952726'] = { Name = 'kt1_14_ground03' }, - ['-828933806'] = { Name = 'kt1_14_hedgedetail01' }, - ['-1133685506'] = { Name = 'kt1_14_hedgedetail02' }, - ['-1328267828'] = { Name = 'kt1_14_hedgedetail03' }, - ['-1633773215'] = { Name = 'kt1_14_hedgedetail04' }, - ['-1888942020'] = { Name = 'kt1_14_pool_01' }, - ['-1837149242'] = { Name = 'kt1_14_props_prop_05_slod' }, - ['1357264226'] = { Name = 'kt1_14_props_prop_06_slod' }, - ['-1764034454'] = { Name = 'kt1_14_shop' }, - ['-501687536'] = { Name = 'kt1_14_topfizz01' }, - ['1177535424'] = { Name = 'kt1_15_apt_01' }, - ['-556286927'] = { Name = 'kt1_15_aptfizz_01' }, - ['1397507467'] = { Name = 'kt1_15_aptfizz02_01' }, - ['-535105445'] = { Name = 'kt1_15_aptfizz10_01' }, - ['223378560'] = { Name = 'kt1_15_decal_01' }, - ['455809077'] = { Name = 'kt1_15_decal_02' }, - ['-772241967'] = { Name = 'kt1_15_decal_03' }, - ['-550100916'] = { Name = 'kt1_15_decal_04' }, - ['-1012438745'] = { Name = 'kt1_15_decal_06' }, - ['-1505743271'] = { Name = 'kt1_15_decal_08' }, - ['1538349367'] = { Name = 'kt1_15_detail_01' }, - ['1785886393'] = { Name = 'kt1_15_detail_02' }, - ['-916802424'] = { Name = 'kt1_15_detail_03' }, - ['-686010357'] = { Name = 'kt1_15_detail_04' }, - ['-1283115968'] = { Name = 'kt1_15_fizzobject_00' }, - ['1561724767'] = { Name = 'kt1_15_fizzobject_01' }, - ['-1959730284'] = { Name = 'kt1_15_fizzobject_02' }, - ['-318232763'] = { Name = 'kt1_15_fizzobject_03' }, - ['-2017456640'] = { Name = 'kt1_15_flyers_001' }, - ['385756278'] = { Name = 'kt1_15_flyers_003' }, - ['86542539'] = { Name = 'kt1_15_flyers_004' }, - ['1744762143'] = { Name = 'kt1_15_ground01' }, - ['-2140887000'] = { Name = 'kt1_15_ground01fizz04' }, - ['-191394222'] = { Name = 'kt1_15_ground03' }, - ['650868174'] = { Name = 'kt1_15_hedge_detail003' }, - ['-548568837'] = { Name = 'kt1_15_hedge_detail02' }, - ['2034283821'] = { Name = 'kt1_15_kmall_1' }, - ['1201590762'] = { Name = 'kt1_15_kmall_2' }, - ['676297586'] = { Name = 'kt1_15_kmallfizz04_2' }, - ['-659844015'] = { Name = 'kt1_15_kmallfizz1_1' }, - ['571750891'] = { Name = 'kt1_15_kmallfizz2_002' }, - ['-738769869'] = { Name = 'kt1_15_kmallfizz2_1' }, - ['1394667781'] = { Name = 'kt1_15_kmallfizz2_lod001' }, - ['-243935101'] = { Name = 'kt1_15_kmallfizz4_lod' }, - ['887892021'] = { Name = 'kt1_15_r1_gnd_s' }, - ['749082766'] = { Name = 'kt1_15_rest_01' }, - ['852957602'] = { Name = 'kt1_15_shop_06_fizz' }, - ['-404617785'] = { Name = 'kt1_15_shop_06' }, - ['-143318156'] = { Name = 'kt1_16_dirt03' }, - ['-1899222777'] = { Name = 'kt1_16_dirt0301' }, - ['-501133420'] = { Name = 'kt1_16_dirt0302' }, - ['773908990'] = { Name = 'kt1_16_dirt0323' }, - ['857021664'] = { Name = 'kt1_16_dirt1' }, - ['-698811245'] = { Name = 'kt1_16_em_win_lod' }, - ['2102415535'] = { Name = 'kt1_16_em_win' }, - ['838348451'] = { Name = 'kt1_16_fizzc_00' }, - ['473826095'] = { Name = 'kt1_16_fizzc_01' }, - ['362509802'] = { Name = 'kt1_16_fizzc_02' }, - ['-1345082792'] = { Name = 'kt1_16_fizzc_03' }, - ['1546400918'] = { Name = 'kt1_16_fwy_wall' }, - ['-623194470'] = { Name = 'kt1_16_ground_00' }, - ['1372306279'] = { Name = 'kt1_16_ground_006' }, - ['-1141206822'] = { Name = 'kt1_16_ground_01' }, - ['-1481264983'] = { Name = 'kt1_16_ground_03_noshadow' }, - ['-220823911'] = { Name = 'kt1_16_ground_03' }, - ['-712686601'] = { Name = 'kt1_16_ground_04' }, - ['-1000758880'] = { Name = 'kt1_16_ground_05' }, - ['1275691080'] = { Name = 'kt1_16_newdecal_02' }, - ['-219282505'] = { Name = 'kt1_16_overlay05' }, - ['32022952'] = { Name = 'kt1_16_overlay06' }, - ['815262836'] = { Name = 'kt1_16_petrol_grd' }, - ['-569931796'] = { Name = 'kt1_16_petrol_ov' }, - ['-438263293'] = { Name = 'kt1_16_petrol' }, - ['1795186697'] = { Name = 'kt1_16_railfizza_01' }, - ['6916829'] = { Name = 'kt1_16_railfizza_02' }, - ['-1515407970'] = { Name = 'kt1_16_rub_04' }, - ['909102633'] = { Name = 'kt1_16_shadowproxy_hd' }, - ['2085134985'] = { Name = 'kt1_16_shadowproxy_lod' }, - ['-142535414'] = { Name = 'kt1_16_shadowproxy01' }, - ['1766062222'] = { Name = 'kt1_16_shadowproxy02' }, - ['1527602209'] = { Name = 'kt1_16_shadowproxy03' }, - ['-67974429'] = { Name = 'kt1_16_stairfizz_01' }, - ['1686439839'] = { Name = 'kt1_16_stepsfizza_01' }, - ['1388471322'] = { Name = 'kt1_16_stepsfizza_02' }, - ['1090269503'] = { Name = 'kt1_17_01' }, - ['366987407'] = { Name = 'kt1_17_detail' }, - ['-2129938351'] = { Name = 'kt1_17_fence_00' }, - ['-1890134809'] = { Name = 'kt1_17_fence_01' }, - ['39615520'] = { Name = 'kt1_17_fizza_00' }, - ['-1883793708'] = { Name = 'kt1_17_fizza_01' }, - ['2014242895'] = { Name = 'kt1_emissive_kt1_02' }, - ['152078932'] = { Name = 'kt1_emissive_kt1_03' }, - ['458436313'] = { Name = 'kt1_emissive_kt1_04' }, - ['747458893'] = { Name = 'kt1_emissive_kt1_05' }, - ['-2020511634'] = { Name = 'kt1_emissive_kt1_06_01' }, - ['-1622171670'] = { Name = 'kt1_emissive_kt1_06_02' }, - ['295470206'] = { Name = 'kt1_emissive_kt1_06_03' }, - ['2128220593'] = { Name = 'kt1_emissive_kt1_07_ema' }, - ['-1358106090'] = { Name = 'kt1_emissive_kt1_07_emb' }, - ['204552529'] = { Name = 'kt1_emissive_kt1_08_ema' }, - ['-32662262'] = { Name = 'kt1_emissive_kt1_08_emb' }, - ['1341809196'] = { Name = 'kt1_emissive_kt1_08_f' }, - ['-1221894981'] = { Name = 'kt1_emissive_kt1_09_ema' }, - ['-1049005737'] = { Name = 'kt1_emissive_kt1_09_emb' }, - ['1128788450'] = { Name = 'kt1_emissive_kt1_10_em' }, - ['1271174427'] = { Name = 'kt1_emissive_kt1_10' }, - ['-274471642'] = { Name = 'kt1_emissive_kt1_11a' }, - ['-512964424'] = { Name = 'kt1_emissive_kt1_11b' }, - ['-1826182099'] = { Name = 'kt1_emissive_kt1_11c' }, - ['-1858721428'] = { Name = 'kt1_emissive_kt1_12a' }, - ['-1537421383'] = { Name = 'kt1_emissive_kt1_12b' }, - ['2044985372'] = { Name = 'kt1_emissive_kt1_14a' }, - ['-1869206144'] = { Name = 'kt1_emissive_kt1_14b' }, - ['1584482611'] = { Name = 'kt1_emissive_kt1_14c' }, - ['-1882576768'] = { Name = 'kt1_emissive_kt1_15a' }, - ['-1651686394'] = { Name = 'kt1_emissive_kt1_15b' }, - ['-1403526757'] = { Name = 'kt1_emissive_kt1_15c' }, - ['1245781355'] = { Name = 'kt1_emissive_kt1_15d' }, - ['1486273046'] = { Name = 'kt1_emissive_kt1_15e' }, - ['-14382433'] = { Name = 'kt1_lod_emi_6_20_proxy' }, - ['401608846'] = { Name = 'kt1_lod_emi_6_21_proxy' }, - ['-1495365358'] = { Name = 'kt1_lod_emissive' }, - ['-1871494654'] = { Name = 'kt1_lod_kt1_emissive_slod' }, - ['-1726881792'] = { Name = 'kt1_lod_slod4' }, - ['2100279514'] = { Name = 'kt1_rd_02_r1a_ovly' }, - ['-863879554'] = { Name = 'kt1_rd_02_r1a' }, - ['1992116786'] = { Name = 'kt1_rd_02_r1b_ovly' }, - ['2000135611'] = { Name = 'kt1_rd_02_r1d_ovly' }, - ['-1065081222'] = { Name = 'kt1_rd_02_r1d' }, - ['1484296047'] = { Name = 'kt1_rd_02_r1e_ovly' }, - ['-1171121706'] = { Name = 'kt1_rd_02_r1e' }, - ['1060170437'] = { Name = 'kt1_rd_02_r1f_ovly' }, - ['-1915698924'] = { Name = 'kt1_rd_02_r1f' }, - ['1727699610'] = { Name = 'kt1_rd_02_r1g_ovly' }, - ['1073325415'] = { Name = 'kt1_rd_02_r1g' }, - ['608881118'] = { Name = 'kt1_rd_02_r1h_ovly' }, - ['1908148459'] = { Name = 'kt1_rd_02_r1h' }, - ['1458655570'] = { Name = 'kt1_rd_02_r1i_ovly' }, - ['-1559434356'] = { Name = 'kt1_rd_02_r1i' }, - ['-1371326922'] = { Name = 'kt1_rd_02_r2a_ovly' }, - ['242467128'] = { Name = 'kt1_rd_02_r2a' }, - ['-1910310615'] = { Name = 'kt1_rd_02_r2b_ovly' }, - ['164509677'] = { Name = 'kt1_rd_02_r2b' }, - ['-1858466376'] = { Name = 'kt1_rd_02_r2c_ovly' }, - ['-237434877'] = { Name = 'kt1_rd_02_r2c' }, - ['-1397212241'] = { Name = 'kt1_rd_02_r2d_ovly' }, - ['-372443157'] = { Name = 'kt1_rd_02_r2d' }, - ['-51293020'] = { Name = 'kt1_rd_02_r2e_ovly' }, - ['-773732331'] = { Name = 'kt1_rd_02_r2e' }, - ['1434438413'] = { Name = 'kt1_rd_02_r2f_ovly' }, - ['-851493168'] = { Name = 'kt1_rd_02_r2f' }, - ['974884884'] = { Name = 'kt1_rd_02_r2g_ovly' }, - ['-1216539828'] = { Name = 'kt1_rd_02_r2g' }, - ['1835653785'] = { Name = 'kt1_rd_02_r2h_ovly' }, - ['-1693197702'] = { Name = 'kt1_rd_02_r2h' }, - ['-268314129'] = { Name = 'kt1_rd_02_r3a_ovly' }, - ['1281441894'] = { Name = 'kt1_rd_02_r3a' }, - ['1031919319'] = { Name = 'kt1_rd_02_r3b_ovly' }, - ['735444824'] = { Name = 'kt1_rd_02_r3b' }, - ['-141873066'] = { Name = 'kt1_rd_02_r3d_ovly' }, - ['123418211'] = { Name = 'kt1_rd_02_r3d' }, - ['367383416'] = { Name = 'kt1_rd_02_r3e' }, - ['-2085560807'] = { Name = 'kt1_rd_02_r3f_ovly' }, - ['1865287179'] = { Name = 'kt1_rd_02_r3f' }, - ['1448640666'] = { Name = 'kt1_rd_02_r3g_ovly' }, - ['2105189028'] = { Name = 'kt1_rd_02_r3g' }, - ['1983853054'] = { Name = 'kt1_rd_02_r3h_ovly' }, - ['-926926546'] = { Name = 'kt1_rd_02_r3h' }, - ['-2098064296'] = { Name = 'kt1_rd_02_r4a_ovly' }, - ['-148237087'] = { Name = 'kt1_rd_02_r4a' }, - ['-401155455'] = { Name = 'kt1_rd_02_r4b_ovly' }, - ['1623059079'] = { Name = 'kt1_rd_02_r4d_ovly' }, - ['537585314'] = { Name = 'kt1_rd_02_r4d' }, - ['-101402126'] = { Name = 'kt1_rd_02_r4d1' }, - ['940421498'] = { Name = 'kt1_rd_02_r4e_ovly' }, - ['-1377533353'] = { Name = 'kt1_rd_02_r4e' }, - ['-1921229947'] = { Name = 'kt1_rd_02_r4f_ovly' }, - ['200621687'] = { Name = 'kt1_rd_02_r4f' }, - ['2049297384'] = { Name = 'kt1_rd_02_r4g_ovly' }, - ['423287042'] = { Name = 'kt1_rd_02_r4g' }, - ['-293687579'] = { Name = 'kt1_rd_02_r4h_ovly' }, - ['-477565537'] = { Name = 'kt1_rd_02_r4h' }, - ['1768513977'] = { Name = 'kt1_rd_02_r5a_ovly' }, - ['472638068'] = { Name = 'kt1_rd_02_r5a' }, - ['-1021878432'] = { Name = 'kt1_rd_02_r5b_ovly' }, - ['581168988'] = { Name = 'kt1_rd_02_r5b' }, - ['341299908'] = { Name = 'kt1_rd_02_r5c' }, - ['886540884'] = { Name = 'kt1_rd_02_r6a_ovly' }, - ['-599629446'] = { Name = 'kt1_rd_02_r6a' }, - ['1438244636'] = { Name = 'kt1_rd_02_r6e_ovly' }, - ['632026188'] = { Name = 'kt1_rd_02_r6e' }, - ['1836210674'] = { Name = 'kt1_rd_02_r6f_ovly' }, - ['-84762918'] = { Name = 'kt1_rd_02_r6f' }, - ['-418175777'] = { Name = 'kt1_rd_02_r6g_ovly' }, - ['154221399'] = { Name = 'kt1_rd_02_r6g' }, - ['162359328'] = { Name = 'kt1_rd_02_r7a_ovly' }, - ['196021150'] = { Name = 'kt1_rd_02_r7a' }, - ['-697687971'] = { Name = 'kt1_rd_02_r7b_ovly' }, - ['962881288'] = { Name = 'kt1_rd_02_r7b' }, - ['19860761'] = { Name = 'kt1_rd_02_r7c_ovly' }, - ['655540837'] = { Name = 'kt1_rd_02_r7c' }, - ['-1269170018'] = { Name = 'kt1_rd_02_r7d_ovly' }, - ['-722330079'] = { Name = 'kt1_rd_02_r7d' }, - ['1943005794'] = { Name = 'kt1_rd_02_tramstn_ovly' }, - ['510245034'] = { Name = 'kt1_rd_08_ovly01' }, - ['-3786941'] = { Name = 'kt1_rd_fizza' }, - ['158519514'] = { Name = 'kt1_rd_fizza1_00' }, - ['408415908'] = { Name = 'kt1_rd_fizza1_01' }, - ['-434697693'] = { Name = 'kt1_rd_fizza1_02' }, - ['-2069215405'] = { Name = 'kt1_rd_fizza1_03' }, - ['-377812307'] = { Name = 'kt1_rd_fizzb' }, - ['1544712110'] = { Name = 'kt1_rd_fizzc' }, - ['1146896450'] = { Name = 'kt1_rd_fizzd' }, - ['1717260351'] = { Name = 'kt1_rd_kt1_tel_007' }, - ['2099084739'] = { Name = 'kt1_rd_kt1_tel_008' }, - ['-235973767'] = { Name = 'kt1_rd_kt1_tram_top' }, - ['1373525723'] = { Name = 'kt1_rd_shadowcast01' }, - ['1085635770'] = { Name = 'kt1_rd_stationsteps_01' }, - ['313322977'] = { Name = 'kt1_rd_tram_01' }, - ['-1110794399'] = { Name = 'kt1_rd_tram_02_ovly' }, - ['-1677000549'] = { Name = 'kt1_rd_tram_02' }, - ['-252728729'] = { Name = 'kt1_rd_tram_03' }, - ['-1512510888'] = { Name = 'kt1_rd_tram_cable_bot' }, - ['-876355859'] = { Name = 'kt1_rd_tram_ovly' }, - ['-1372848492'] = { Name = 'kuruma' }, - ['410882957'] = { Name = 'kuruma2' }, - ['1269098716'] = { Name = 'landstalker' }, - ['-1281684762'] = { Name = 'lazer' }, - ['-1232836011'] = { Name = 'le7b' }, - ['640818791'] = { Name = 'lectro' }, - ['-703042172'] = { Name = 'lf_house_01_' }, - ['-1971997752'] = { Name = 'lf_house_01d_' }, - ['290054274'] = { Name = 'lf_house_04_' }, - ['-1695139618'] = { Name = 'lf_house_04d_' }, - ['-678335574'] = { Name = 'lf_house_05_' }, - ['-362722984'] = { Name = 'lf_house_05d_' }, - ['1515811704'] = { Name = 'lf_house_07_' }, - ['1669865158'] = { Name = 'lf_house_07d_' }, - ['-1174384544'] = { Name = 'lf_house_08_' }, - ['1649421057'] = { Name = 'lf_house_08d_' }, - ['-173048366'] = { Name = 'lf_house_09_' }, - ['485587234'] = { Name = 'lf_house_09d_' }, - ['-1385687317'] = { Name = 'lf_house_10_' }, - ['77716409'] = { Name = 'lf_house_10d_' }, - ['-737975551'] = { Name = 'lf_house_11_' }, - ['1198608380'] = { Name = 'lf_house_11d_' }, - ['-93114936'] = { Name = 'lf_house_13_' }, - ['2090804722'] = { Name = 'lf_house_13d_' }, - ['-964112964'] = { Name = 'lf_house_14_' }, - ['-360720436'] = { Name = 'lf_house_14d_' }, - ['-1015167302'] = { Name = 'lf_house_15_' }, - ['-1519311956'] = { Name = 'lf_house_15d_' }, - ['2122660754'] = { Name = 'lf_house_16_' }, - ['1801372084'] = { Name = 'lf_house_16d_' }, - ['203806105'] = { Name = 'lf_house_17_' }, - ['-1390413172'] = { Name = 'lf_house_17d_' }, - ['-578846675'] = { Name = 'lf_house_18_' }, - ['-1219135800'] = { Name = 'lf_house_18d_' }, - ['763371317'] = { Name = 'lf_house_19_' }, - ['1618384288'] = { Name = 'lf_house_19d_' }, - ['-73511144'] = { Name = 'lf_house_20_' }, - ['-1050016419'] = { Name = 'lf_house_20d_' }, - ['469291905'] = { Name = 'lguard' }, - ['-230231084'] = { Name = 'light_car_rig' }, - ['-914335905'] = { Name = 'light_plane_rig' }, - ['-114627507'] = { Name = 'limo2' }, - ['1277738372'] = { Name = 'lts_p_para_bag_lts_s' }, - ['1269440357'] = { Name = 'lts_p_para_bag_pilot2_s' }, - ['1931904776'] = { Name = 'lts_p_para_pilot2_sp_s' }, - ['182048815'] = { Name = 'lts_prop_lts_elecbox_24' }, - ['19408745'] = { Name = 'lts_prop_lts_elecbox_24b' }, - ['1051213133'] = { Name = 'lts_prop_lts_offroad_tyres01' }, - ['-1359996601'] = { Name = 'lts_prop_lts_ramp_01' }, - ['-1061569318'] = { Name = 'lts_prop_lts_ramp_02' }, - ['1290523964'] = { Name = 'lts_prop_lts_ramp_03' }, - ['2069251995'] = { Name = 'lts_prop_tumbler_01_s2' }, - ['-426922231'] = { Name = 'lts_prop_tumbler_cs2_s2' }, - ['2103844742'] = { Name = 'lts_prop_wine_glass_s2' }, - ['2068293287'] = { Name = 'lurcher' }, - ['621481054'] = { Name = 'luxor' }, - ['-1214293858'] = { Name = 'luxor2' }, - ['482197771'] = { Name = 'lynx' }, - ['-1660945322'] = { Name = 'mamba' }, - ['-1746576111'] = { Name = 'mammatus' }, - ['-2124201592'] = { Name = 'manana' }, - ['-1523428744'] = { Name = 'manchez' }, - ['1914556826'] = { Name = 'marina_xr_rocks_01' }, - ['-2015167196'] = { Name = 'marina_xr_rocks_02' }, - ['-1063063905'] = { Name = 'marina_xr_rocks_03' }, - ['-1904670132'] = { Name = 'marina_xr_rocks_04' }, - ['-585390192'] = { Name = 'marina_xr_rocks_05' }, - ['-1425095817'] = { Name = 'marina_xr_rocks_06' }, - ['-1043459709'] = { Name = 'marquis' }, - ['1233534620'] = { Name = 'marshall' }, - ['-142942670'] = { Name = 'massacro' }, - ['-631760477'] = { Name = 'massacro2' }, - ['-1660661558'] = { Name = 'maverick' }, - ['914654722'] = { Name = 'mesa' }, - ['-748008636'] = { Name = 'mesa2' }, - ['-2064372143'] = { Name = 'mesa3' }, - ['109846795'] = { Name = 'met_st_seoul_mirr' }, - ['1579140606'] = { Name = 'met_st_seoul_mirrb' }, - ['1823863923'] = { Name = 'metro__t_st_sl_bot_ol' }, - ['-283231658'] = { Name = 'metro_' }, - ['1484127491'] = { Name = 'metro_03_rp_02' }, - ['-380895886'] = { Name = 'metro_06_rp_02' }, - ['1831792241'] = { Name = 'metro_30_' }, - ['-1118146967'] = { Name = 'metro_30_cables' }, - ['2081685936'] = { Name = 'metro_30_cables001' }, - ['-244978606'] = { Name = 'metro_30_cables002' }, - ['-542357281'] = { Name = 'metro_30_cables003' }, - ['-1250942022'] = { Name = 'metro_30_lod001' }, - ['-1499036121'] = { Name = 'metro_30_lod002' }, - ['-543492081'] = { Name = 'metro_30_lod003' }, - ['-774611838'] = { Name = 'metro_30_lod004' }, - ['398026831'] = { Name = 'metro_30_lod005' }, - ['207307348'] = { Name = 'metro_30_ol' }, - ['95647208'] = { Name = 'metro_30_ol2' }, - ['-796688317'] = { Name = 'metro_30reflect' }, - ['-125008297'] = { Name = 'metro_b_ol' }, - ['-1112117012'] = { Name = 'metro_cables' }, - ['676851711'] = { Name = 'metro_cables001' }, - ['360794706'] = { Name = 'metro_cables002' }, - ['-1400779872'] = { Name = 'metro_cagelight018' }, - ['-199822148'] = { Name = 'metro_end_' }, - ['-499171879'] = { Name = 'metro_end_031reflect' }, - ['-1780048131'] = { Name = 'metro_end_032_ol' }, - ['1024003625'] = { Name = 'metro_end_032' }, - ['1298082008'] = { Name = 'metro_end_30_' }, - ['356499156'] = { Name = 'metro_end_30_2' }, - ['130085342'] = { Name = 'metro_end_30_2ol' }, - ['-178422915'] = { Name = 'metro_end_30_cables' }, - ['-2376281'] = { Name = 'metro_end_30_cables001' }, - ['672344407'] = { Name = 'metro_end_30_ol' }, - ['1720123297'] = { Name = 'metro_end_30_ol2' }, - ['1169924634'] = { Name = 'metro_end_30reflect' }, - ['1591372967'] = { Name = 'metro_end_b_ol' }, - ['1650924683'] = { Name = 'metro_end_b_ol001' }, - ['-730738105'] = { Name = 'metro_end_bb_' }, - ['-1535304967'] = { Name = 'metro_end_cables' }, - ['220069623'] = { Name = 'metro_end_cables001' }, - ['-2022035985'] = { Name = 'metro_end_lod_001' }, - ['-760535921'] = { Name = 'metro_end_lod' }, - ['-1713396680'] = { Name = 'metro_end_new3' }, - ['-696107910'] = { Name = 'metro_end_ol001' }, - ['-521842368'] = { Name = 'metro_end_ol002' }, - ['1500192492'] = { Name = 'metro_end_shadow' }, - ['-338704707'] = { Name = 'metro_endnew_ol' }, - ['-303685511'] = { Name = 'metro_endnew_ol2' }, - ['-409233552'] = { Name = 'metro_endnew1_' }, - ['-57128203'] = { Name = 'metro_endnew1_cables' }, - ['1293769392'] = { Name = 'metro_endnew2_ol' }, - ['1014101854'] = { Name = 'metro_endnew2' }, - ['-1652051138'] = { Name = 'metro_endnew2cables002' }, - ['407164543'] = { Name = 'metro_endnew3_ol' }, - ['-1423791787'] = { Name = 'metro_endnew3cables' }, - ['-1928427811'] = { Name = 'metro_endolnew2' }, - ['-167972287'] = { Name = 'metro_endreflect' }, - ['484938648'] = { Name = 'metro_gridnew' }, - ['637248301'] = { Name = 'metro_lift001seoul' }, - ['-2106815173'] = { Name = 'metro_liftglassbotseoul' }, - ['1679669627'] = { Name = 'metro_liftglasstop004seoul' }, - ['1326117462'] = { Name = 'metro_liftglasstop004seoul001' }, - ['-1022636972'] = { Name = 'metro_liftglasstopseoul' }, - ['732669249'] = { Name = 'metro_liftglasstopseoul001' }, - ['-1809136604'] = { Name = 'metro_liftseoul' }, - ['316299536'] = { Name = 'metro_lsiaparkingtext' }, - ['959063851'] = { Name = 'metro_lsiaterminaltext' }, - ['-1381996320'] = { Name = 'metro_map_endreflect' }, - ['1490519005'] = { Name = 'metro_map_endshadowbox' }, - ['-770164707'] = { Name = 'metro_map_join_1_' }, - ['-698180840'] = { Name = 'metro_map_join_1_lod' }, - ['-1483505130'] = { Name = 'metro_map_join_1_ol' }, - ['-1155790067'] = { Name = 'metro_map_join_1b_ol' }, - ['-279653998'] = { Name = 'metro_map_join_1reflect' }, - ['-519473795'] = { Name = 'metro_map_join_1shadowbox' }, - ['-2025644504'] = { Name = 'metro_map_join_2_' }, - ['-1993939088'] = { Name = 'metro_map_join_2_lod' }, - ['709796306'] = { Name = 'metro_map_join_2_ol' }, - ['732634002'] = { Name = 'metro_map_join_2_ol2' }, - ['127675884'] = { Name = 'metro_map_join_2mark001' }, - ['-1408784964'] = { Name = 'metro_map_join_2reflect' }, - ['-91416267'] = { Name = 'metro_map_join_2shadowbox' }, - ['-795748211'] = { Name = 'metro_map_join_lod' }, - ['-1472763774'] = { Name = 'metro_map_join2wallg009' }, - ['-1617471970'] = { Name = 'metro_map_join2wallg010' }, - ['-1022900905'] = { Name = 'metro_newwaldoors' }, - ['967818144'] = { Name = 'metro_newwalk1' }, - ['1481763959'] = { Name = 'metro_newwalk1pipes003' }, - ['-763508781'] = { Name = 'metro_newwalk1pipes005seoul' }, - ['-94269730'] = { Name = 'metro_newwalk1pipes2' }, - ['476521765'] = { Name = 'metro_newwalk2reflect_b' }, - ['-345619475'] = { Name = 'metro_newwalk2reflect' }, - ['1706196339'] = { Name = 'metro_newwalk2shadowbox' }, - ['616522692'] = { Name = 'metro_newwalk2shell' }, - ['907525659'] = { Name = 'metro_newwalk3shell' }, - ['1539767361'] = { Name = 'metro_newwalk4reflect' }, - ['1650813357'] = { Name = 'metro_newwalk4shell' }, - ['-736327030'] = { Name = 'metro_newwalk5reflect_a' }, - ['586541382'] = { Name = 'metro_newwalk5reflect' }, - ['-345256398'] = { Name = 'metro_newwalk5shell' }, - ['1519414802'] = { Name = 'metro_newwalk6shell' }, - ['1278414586'] = { Name = 'metro_railclips' }, - ['1560087579'] = { Name = 'metro_railclips003' }, - ['1790650263'] = { Name = 'metro_railclips004' }, - ['-171751503'] = { Name = 'metro_railclips0044' }, - ['1073798187'] = { Name = 'metro_railclips0045' }, - ['303595611'] = { Name = 'metro_railclips0046' }, - ['1520144736'] = { Name = 'metro_railclips0047' }, - ['964117776'] = { Name = 'metro_railclips005' }, - ['1195237533'] = { Name = 'metro_railclips006' }, - ['-1504141611'] = { Name = 'metro_railclips007' }, - ['-1273873848'] = { Name = 'metro_railclips008' }, - ['-2101422178'] = { Name = 'metro_railclips009' }, - ['852220517'] = { Name = 'metro_railclips0091' }, - ['1822730782'] = { Name = 'metro_railclips010' }, - ['-1366067789'] = { Name = 'metro_railclips01000' }, - ['1338732652'] = { Name = 'metro_railclips011' }, - ['1107219667'] = { Name = 'metro_railclips012' }, - ['1855073765'] = { Name = 'metro_railclips013' }, - ['1589546558'] = { Name = 'metro_railclips014' }, - ['1105548428'] = { Name = 'metro_railclips015' }, - ['878459258'] = { Name = 'metro_railclips016' }, - ['-1277708173'] = { Name = 'metro_railclips017' }, - ['-1510597456'] = { Name = 'metro_railclips018' }, - ['-1990532234'] = { Name = 'metro_railclips019' }, - ['1225061615'] = { Name = 'metro_railclips020' }, - ['978278276'] = { Name = 'metro_railclips021' }, - ['1212937081'] = { Name = 'metro_railclips022' }, - ['1708404361'] = { Name = 'metro_railclips023' }, - ['1402571284'] = { Name = 'metro_railclips024' }, - ['-2123438658'] = { Name = 'metro_railclips025' }, - ['1861828819'] = { Name = 'metro_railclips026' }, - ['-1399342057'] = { Name = 'metro_railclips027' }, - ['-1635180550'] = { Name = 'metro_railclips028' }, - ['-868156567'] = { Name = 'metro_railclips029' }, - ['-434229189'] = { Name = 'metro_railclips030' }, - ['-240203940'] = { Name = 'metro_railclips031' }, - ['56879814'] = { Name = 'metro_railclips032' }, - ['755875349'] = { Name = 'metro_railclips033' }, - ['-51651118'] = { Name = 'metro_railclips034' }, - ['1185575246'] = { Name = 'metro_railclips035' }, - ['404067365'] = { Name = 'metro_railclips036' }, - ['1675176875'] = { Name = 'metro_railclips037' }, - ['898715420'] = { Name = 'metro_railclips038' }, - ['2138825456'] = { Name = 'metro_railclips039' }, - ['933908474'] = { Name = 'metro_railclips040' }, - ['1089954452'] = { Name = 'metro_railclips041' }, - ['833864713'] = { Name = 'metro_railclips042' }, - ['1132750762'] = { Name = 'metro_railclips043' }, - ['-1527567730'] = { Name = 'metro_railclips048' }, - ['-1226256775'] = { Name = 'metro_railclips049' }, - ['2034422802'] = { Name = 'metro_railclips050' }, - ['-2080380532'] = { Name = 'metro_railclips051' }, - ['500687632'] = { Name = 'metro_railclips053seoul' }, - ['-1839593916'] = { Name = 'metro_railclips054' }, - ['-1122280506'] = { Name = 'metro_railclips055' }, - ['-872089191'] = { Name = 'metro_railclips056' }, - ['1664705199'] = { Name = 'metro_railclips0new230' }, - ['1122179590'] = { Name = 'metro_railclips2' }, - ['89463693'] = { Name = 'metro_railclipsnew3018' }, - ['-227611389'] = { Name = 'metro_reflectonly' }, - ['928394347'] = { Name = 'metro_s3airconseoul' }, - ['-320447383'] = { Name = 'metro_s3liftrail001seoul' }, - ['624771500'] = { Name = 'metro_s3liftrailseoul' }, - ['353839072'] = { Name = 'metro_s3lightbarseoul' }, - ['-1638887088'] = { Name = 'metro_s3overlay2seoul' }, - ['-2087322176'] = { Name = 'metro_s3overlayseoul' }, - ['-2064158526'] = { Name = 'metro_sb' }, - ['1124295943'] = { Name = 'metro_sideexitw' }, - ['782252325'] = { Name = 'metro_sl_bot_' }, - ['648343857'] = { Name = 'metro_sl_bot_lod_001' }, - ['1852791112'] = { Name = 'metro_sl_bot_lod' }, - ['-1212997795'] = { Name = 'metro_sl_bot_lod001' }, - ['-342915311'] = { Name = 'metro_sl_bot_lod002' }, - ['318783595'] = { Name = 'metro_sl_bot_ol' }, - ['-775514018'] = { Name = 'metro_sl_bot_ol2' }, - ['1842549821'] = { Name = 'metro_sl_botolextra' }, - ['1807810723'] = { Name = 'metro_sl_botreflect' }, - ['1874756548'] = { Name = 'metro_sl_top_' }, - ['535064819'] = { Name = 'metro_sl_top_ol' }, - ['-2142389360'] = { Name = 'metro_sl_top_ol2' }, - ['1259214908'] = { Name = 'metro_sl_topolextra' }, - ['-1523819241'] = { Name = 'metro_sl_topreflect' }, - ['-310853095'] = { Name = 'metro_sm_' }, - ['836395826'] = { Name = 'metro_sm_001' }, - ['1141704599'] = { Name = 'metro_sm_002' }, - ['-734973899'] = { Name = 'metro_sm_cables' }, - ['-806420041'] = { Name = 'metro_sm_cables00' }, - ['705066998'] = { Name = 'metro_sm_cables001' }, - ['-1004229580'] = { Name = 'metro_sm_cables002' }, - ['-1772466016'] = { Name = 'metro_sm_cables003' }, - ['-511547665'] = { Name = 'metro_sm_cables004' }, - ['-1916321926'] = { Name = 'metro_sm_cables006' }, - ['1610802170'] = { Name = 'metro_sm_cables007' }, - ['-1440057280'] = { Name = 'metro_sm_cables008' }, - ['2073271059'] = { Name = 'metro_sm_cables009' }, - ['-636298952'] = { Name = 'metro_sm_cables010' }, - ['-331776635'] = { Name = 'metro_sm_cables011' }, - ['-1364655515'] = { Name = 'metro_sm_cables012' }, - ['-1057839368'] = { Name = 'metro_sm_cables013' }, - ['-1833842057'] = { Name = 'metro_sm_cables015' }, - ['1977848027'] = { Name = 'metro_sm_cables016' }, - ['-2028915914'] = { Name = 'metro_sm_cables017' }, - ['129479821'] = { Name = 'metro_sm_cables018' }, - ['-548648614'] = { Name = 'metro_sm_cablesol2' }, - ['623417052'] = { Name = 'metro_sm_cablessht1' }, - ['1390441035'] = { Name = 'metro_sm_cablessht2' }, - ['128439241'] = { Name = 'metro_sm_cablesshtnew' }, - ['657160541'] = { Name = 'metro_sm_lod' }, - ['-687090075'] = { Name = 'metro_sm_lod001' }, - ['-387249719'] = { Name = 'metro_sm_ol001' }, - ['-49335791'] = { Name = 'metro_sm_ol002' }, - ['-506231780'] = { Name = 'metro_sm_sl_bot_' }, - ['-2046105846'] = { Name = 'metro_sm_sl_bot_lod001' }, - ['1941488230'] = { Name = 'metro_sm_sl_bot_lod002' }, - ['-1352169135'] = { Name = 'metro_sm_sl_botol2' }, - ['-1552772785'] = { Name = 'metro_sm_sl_botreflect' }, - ['1296168761'] = { Name = 'metro_sm_sl_mid_' }, - ['-1740467647'] = { Name = 'metro_sm_sl_midol2' }, - ['961555896'] = { Name = 'metro_sm_sl_midreflect' }, - ['-18722386'] = { Name = 'metro_sm_sl_top_' }, - ['-470647066'] = { Name = 'metro_sm_sl_top_lod001' }, - ['-987545272'] = { Name = 'metro_sm_sl_top_lod002' }, - ['236250256'] = { Name = 'metro_sm_sl_top_ol' }, - ['1532567237'] = { Name = 'metro_sm_sl_topol2' }, - ['1067562810'] = { Name = 'metro_sm_sl_topreflect' }, - ['1441835763'] = { Name = 'metro_sm1reflect' }, - ['-702158691'] = { Name = 'metro_sm2reflect' }, - ['-447154863'] = { Name = 'metro_small_30_' }, - ['1694006389'] = { Name = 'metro_small_30_cables' }, - ['1397856366'] = { Name = 'metro_small_30_lod001' }, - ['1636349148'] = { Name = 'metro_small_30_lod002' }, - ['1926190953'] = { Name = 'metro_small_30_lod003' }, - ['606266622'] = { Name = 'metro_small_30_ol' }, - ['2064473806'] = { Name = 'metro_small_30reflect' }, - ['537213512'] = { Name = 'metro_smolextra' }, - ['-458891740'] = { Name = 'metro_smolextra001' }, - ['-2006702686'] = { Name = 'metro_smolextra002' }, - ['231702342'] = { Name = 'metro_smreflect' }, - ['-849283772'] = { Name = 'metro_stain003' }, - ['-1741901560'] = { Name = 'metro_stat3_platseoul' }, - ['643649573'] = { Name = 'metro_stat3endboxesseoul' }, - ['-1744983116'] = { Name = 'metro_stat3glift001seoul' }, - ['1047127621'] = { Name = 'metro_stat3gliftseoul' }, - ['-1639731425'] = { Name = 'metro_stat3join' }, - ['-334246353'] = { Name = 'metro_stat3join004' }, - ['-1002814100'] = { Name = 'metro_stat3join004ol' }, - ['-126033053'] = { Name = 'metro_stat3join1_lod001' }, - ['2020631372'] = { Name = 'metro_stat3join1_lod002' }, - ['1254524921'] = { Name = 'metro_stat3join1_lod003' }, - ['888167497'] = { Name = 'metro_stat3join1_lod004' }, - ['-728574532'] = { Name = 'metro_stat3join1reflect' }, - ['-486777164'] = { Name = 'metro_stat3join1reflect001' }, - ['1397697970'] = { Name = 'metro_stat3join2reflect' }, - ['320967775'] = { Name = 'metro_stat3join2reflect001' }, - ['1450835004'] = { Name = 'metro_stat3join3reflect' }, - ['-908980310'] = { Name = 'metro_stat3join3reflect001' }, - ['39478872'] = { Name = 'metro_stat3join4reflect' }, - ['-1970530036'] = { Name = 'metro_stat3join4shadow' }, - ['606334009'] = { Name = 'metro_stat3joinbend' }, - ['60738992'] = { Name = 'metro_stat3joinbend2' }, - ['-182379021'] = { Name = 'metro_stat3joinbend2ol' }, - ['-511540164'] = { Name = 'metro_stat3joinol' }, - ['1124068457'] = { Name = 'metro_stat3joinstuff' }, - ['1215955531'] = { Name = 'metro_stat3joinstuff4' }, - ['-54608299'] = { Name = 'metro_stat3railings003seoul' }, - ['-320118423'] = { Name = 'metro_stat3railings004seoul' }, - ['-1200748865'] = { Name = 'metro_stat3sp_cables2' }, - ['1480388548'] = { Name = 'metro_stat3sp' }, - ['-799176264'] = { Name = 'metro_stat3special_lod001' }, - ['-757396161'] = { Name = 'metro_stat3spol' }, - ['-1054042537'] = { Name = 'metro_stat3spreflect' }, - ['-1368322409'] = { Name = 'metro_stat3spstuff' }, - ['391258084'] = { Name = 'metro_statejoinbendol' }, - ['-1463188217'] = { Name = 'metro_station_3_seoul' }, - ['-1749240062'] = { Name = 'metro_station_3seoul_reflect' }, - ['2086599887'] = { Name = 'metro_station_3seoul_shb' }, - ['-1815447721'] = { Name = 'metro_station_3seoul' }, - ['1036384401'] = { Name = 'metro_station_3seoul001' }, - ['-1460310618'] = { Name = 'metro_stationburtontext' }, - ['-1724475697'] = { Name = 'metro_stationburtontext2' }, - ['-1580866404'] = { Name = 'metro_stationhut002seoul' }, - ['-870188425'] = { Name = 'metro_stationlsiaparkingtext2' }, - ['-613571461'] = { Name = 'metro_stationlsiaterminaltext2' }, - ['-946800384'] = { Name = 'metro_stationperrotext' }, - ['-574997152'] = { Name = 'metro_stationperrotext2' }, - ['-2068583636'] = { Name = 'metro_stationporttext003' }, - ['-477321196'] = { Name = 'metro_stationseoultext' }, - ['1472685765'] = { Name = 'metro_stationseoultext2' }, - ['-159164695'] = { Name = 'metro_subway1proxy' }, - ['1446045988'] = { Name = 'metro_subway1shell' }, - ['1910849677'] = { Name = 'metro_subwayetxt1' }, - ['-1862238525'] = { Name = 'metro_subwayetxt2' }, - ['-1165089918'] = { Name = 'metro_t_end_' }, - ['-1465421597'] = { Name = 'metro_t_end_30_' }, - ['-1305949561'] = { Name = 'metro_t_end_30_lod001' }, - ['909300381'] = { Name = 'metro_t_end_30_lod002' }, - ['1701177392'] = { Name = 'metro_t_end_30_ol' }, - ['292304028'] = { Name = 'metro_t_end_30_ol001' }, - ['-525608070'] = { Name = 'metro_t_end_30_ol2' }, - ['-670394128'] = { Name = 'metro_t_end_30reflect' }, - ['804941067'] = { Name = 'metro_t_end_b_' }, - ['320913383'] = { Name = 'metro_t_end_b_ol' }, - ['1567181109'] = { Name = 'metro_t_end_b_ol2' }, - ['-1760239772'] = { Name = 'metro_t_end_cables' }, - ['-255986135'] = { Name = 'metro_t_end_lod001' }, - ['-1065871970'] = { Name = 'metro_t_end_lod002' }, - ['-1005619556'] = { Name = 'metro_t_end_ol2' }, - ['1416596668'] = { Name = 'metro_t_end_reflect' }, - ['825860277'] = { Name = 'metro_t_end2_30_' }, - ['-1245307987'] = { Name = 'metro_t_end2_30_ol' }, - ['-1084585782'] = { Name = 'metro_t_end2_30ol2' }, - ['2058080855'] = { Name = 'metro_t_end2_30reflect' }, - ['-519535809'] = { Name = 'metro_t_join_' }, - ['159566043'] = { Name = 'metro_t_join_lod001' }, - ['851549016'] = { Name = 'metro_t_join_lod002' }, - ['1091483634'] = { Name = 'metro_t_join_lod003' }, - ['-163470759'] = { Name = 'metro_t_join_lod004' }, - ['1672117545'] = { Name = 'metro_t_join_lod005' }, - ['-1980151354'] = { Name = 'metro_t_join_lod006' }, - ['-1745853004'] = { Name = 'metro_t_join_lod007' }, - ['821630915'] = { Name = 'metro_t_join_lod008' }, - ['1054192508'] = { Name = 'metro_t_join_lod009' }, - ['-309620211'] = { Name = 'metro_t_join_lod010' }, - ['1280135055'] = { Name = 'metro_t_join_lod011' }, - ['-1780522318'] = { Name = 'metro_t_join_lod012' }, - ['-2055880225'] = { Name = 'metro_t_join_lod013' }, - ['985934969'] = { Name = 'metro_t_join_lod014' }, - ['686917844'] = { Name = 'metro_t_join_lod015' }, - ['-534186172'] = { Name = 'metro_t_join_lod016' }, - ['-1368709971'] = { Name = 'metro_t_join_ol' }, - ['2019383489'] = { Name = 'metro_t_joinreflect' }, - ['-1585368011'] = { Name = 'metro_t_lg_30_' }, - ['-1398439556'] = { Name = 'metro_t_lg_30_lod005' }, - ['-1186931930'] = { Name = 'metro_t_lg_30_ol1' }, - ['-537629978'] = { Name = 'metro_t_lg_30mark' }, - ['-1262175414'] = { Name = 'metro_t_lg_30reflect' }, - ['-156084367'] = { Name = 'metro_t_sl_bot_' }, - ['-433908758'] = { Name = 'metro_t_sl_bot_ol' }, - ['1406504592'] = { Name = 'metro_t_sl_botreflect' }, - ['843159421'] = { Name = 'metro_t_sl_top_' }, - ['-384617339'] = { Name = 'metro_t_sl_top_ol' }, - ['-457589614'] = { Name = 'metro_t_sl_top_ol2' }, - ['1543402348'] = { Name = 'metro_t_st_lg_30_' }, - ['455762787'] = { Name = 'metro_t_st_lg_30_lod' }, - ['793653600'] = { Name = 'metro_t_st_lg_30_lod001' }, - ['25843157'] = { Name = 'metro_t_st_lg_30_lod002' }, - ['315848807'] = { Name = 'metro_t_st_lg_30_lod003' }, - ['-454517614'] = { Name = 'metro_t_st_lg_30_lod004' }, - ['1514899290'] = { Name = 'metro_t_st_lg_30_lod005' }, - ['1820437446'] = { Name = 'metro_t_st_lg_30_lod006' }, - ['-115482139'] = { Name = 'metro_t_st_lg_30_ol' }, - ['100877312'] = { Name = 'metro_t_st_lg_30_ol002' }, - ['-1950938105'] = { Name = 'metro_t_st_lg_30_ol2' }, - ['-1334258466'] = { Name = 'metro_t_st_lg_30reflect' }, - ['-224426079'] = { Name = 'metro_t_st_lg_30shadbox' }, - ['-758899365'] = { Name = 'metro_t_st_sl_bot_' }, - ['2041321892'] = { Name = 'metro_t_st_sl_bot_lod001' }, - ['93629311'] = { Name = 'metro_t_st_sl_bot_ol001' }, - ['974224533'] = { Name = 'metro_t_st_sl_bot_ol2' }, - ['949761967'] = { Name = 'metro_t_st_sl_botreflect' }, - ['1310168527'] = { Name = 'metro_t_st_sl_top_' }, - ['1647949157'] = { Name = 'metro_t_st_sl_top_lod001' }, - ['259649618'] = { Name = 'metro_t_st_sl_top_ol001' }, - ['-578208385'] = { Name = 'metro_t_st_sl_topreflect' }, - ['1856894547'] = { Name = 'metro_t_stair_' }, - ['390372917'] = { Name = 'metro_t_stair_2_lod001' }, - ['868442587'] = { Name = 'metro_t_stair_2' }, - ['-1762670138'] = { Name = 'metro_t_stair_lod001' }, - ['1143743552'] = { Name = 'metro_t_stair_lod002' }, - ['847413485'] = { Name = 'metro_t_stair_lod003' }, - ['-238289027'] = { Name = 'metro_t_stair_lod004' }, - ['-537568304'] = { Name = 'metro_t_stair_lod005' }, - ['-1924680074'] = { Name = 'metro_t_stair_lod006' }, - ['2069500571'] = { Name = 'metro_t_stair_lod007' }, - ['353551878'] = { Name = 'metro_t_stair_lod008' }, - ['-1014979869'] = { Name = 'metro_t_stair_lod009' }, - ['727183752'] = { Name = 'metro_t_stair_lod010' }, - ['-53275521'] = { Name = 'metro_t_stair_lod011' }, - ['1191225569'] = { Name = 'metro_t_stair_lod012' }, - ['-1704865886'] = { Name = 'metro_t_stair_lod013' }, - ['1671389726'] = { Name = 'metro_t_stair_lod014' }, - ['-1067251337'] = { Name = 'metro_t_stair_ol' }, - ['1036598985'] = { Name = 'metro_t_stair_ol2' }, - ['-292981443'] = { Name = 'metro_t_stair2reflect' }, - ['561844062'] = { Name = 'metro_t_stairreflect' }, - ['2120048793'] = { Name = 'metro_t_step__ol' }, - ['-2103115246'] = { Name = 'metro_t_step__ol002' }, - ['-1731891165'] = { Name = 'metro_t_step_' }, - ['1030688243'] = { Name = 'metro_t_step_20_' }, - ['-1260195433'] = { Name = 'metro_t_step_20_lod001' }, - ['2146830270'] = { Name = 'metro_t_step_20_lod002' }, - ['-892550174'] = { Name = 'metro_t_step_20_ol' }, - ['1464779364'] = { Name = 'metro_t_step_20_ol2' }, - ['-529294854'] = { Name = 'metro_t_step_20reflect' }, - ['2096603299'] = { Name = 'metro_t_step_lod001' }, - ['1191031992'] = { Name = 'metro_t_step_lod002' }, - ['-729844213'] = { Name = 'metro_t_step_ol' }, - ['737590170'] = { Name = 'metro_t_stepolextra' }, - ['258156671'] = { Name = 'metro_t_stepreflect' }, - ['-1210941175'] = { Name = 'metro_t_stepreflect003' }, - ['1716017079'] = { Name = 'metro_topen_cables' }, - ['-1585959895'] = { Name = 'metro_topen_moreol' }, - ['-683913398'] = { Name = 'metro_topen_step__ol' }, - ['1808433531'] = { Name = 'metro_topen_step_' }, - ['1111976904'] = { Name = 'metro_topen_step_lod001' }, - ['-68919545'] = { Name = 'metro_topen_step_lod002' }, - ['170390308'] = { Name = 'metro_topen_stepreflect' }, - ['1652900192'] = { Name = 'metro_tsidex_' }, - ['265440303'] = { Name = 'metro_tsidex_ol' }, - ['-75588373'] = { Name = 'metro_tsidex_ol2' }, - ['-42720284'] = { Name = 'metro_tsidexreflect' }, - ['944662010'] = { Name = 'metro_walkway1panels002' }, - ['461352029'] = { Name = 'metro_walkway1panels004' }, - ['152325154'] = { Name = 'metro_walkway2panels1' }, - ['-69441751'] = { Name = 'metro_walkway5panels005' }, - ['1590916747'] = { Name = 'metro_wallgrid0011' }, - ['1365400489'] = { Name = 'metro_wallgrid0012' }, - ['-510335871'] = { Name = 'metro_wallgrid003' }, - ['-1091592393'] = { Name = 'metro_wallgrid004' }, - ['-853525608'] = { Name = 'metro_wallgrid005' }, - ['985568979'] = { Name = 'metro_wallgrid007' }, - ['-259489176'] = { Name = 'metro_wallgrid008' }, - ['-2093111024'] = { Name = 'metro_wallgrid013' }, - ['-1054006034'] = { Name = 'metro_wallgrid014' }, - ['-1896398709'] = { Name = 'metro_wallgrid015' }, - ['-1521193659'] = { Name = 'metro_wallgrid016' }, - ['1938393520'] = { Name = 'metro_wallgrid017' }, - ['176600992'] = { Name = 'metro_wallgrid018' }, - ['-591373292'] = { Name = 'metro_wallgrid019' }, - ['-549167844'] = { Name = 'metro_wallgrid020' }, - ['-1268191095'] = { Name = 'metro_wallgrid1' }, - ['-1505799114'] = { Name = 'metro_wallgrid2' }, - ['195666588'] = { Name = 'metro_watermark' }, - ['1972827299'] = { Name = 'metro_watermark4' }, - ['-1305318586'] = { Name = 'metro1_add_001' }, - ['1140854499'] = { Name = 'metro1_add_002' }, - ['1692422307'] = { Name = 'metro1_add_003' }, - ['2021521374'] = { Name = 'metro1_add_004' }, - ['660373253'] = { Name = 'metro1_ceiling' }, - ['-637636261'] = { Name = 'metro1_ceiling001' }, - ['-2044110513'] = { Name = 'metro1_ceilinga' }, - ['-716908565'] = { Name = 'metro1_ceilinga001' }, - ['-1198055792'] = { Name = 'metro1_ceilinga003' }, - ['-825202016'] = { Name = 'metro1_ceilingb' }, - ['681985495'] = { Name = 'metro1_ceilingb001' }, - ['358165878'] = { Name = 'metro2_ceiling2' }, - ['1331708226'] = { Name = 'metro3_ceiling' }, - ['-1749909505'] = { Name = 'metro6_ceiling' }, - ['-484054720'] = { Name = 'metropill_001' }, - ['439965534'] = { Name = 'metropill_002' }, - ['1216820217'] = { Name = 'metropill_003' }, - ['-36921723'] = { Name = 'metropill_004' }, - ['689304855'] = { Name = 'metropill_005' }, - ['1589305452'] = { Name = 'metropill_006' }, - ['1565318544'] = { Name = 'metropill_007' }, - ['1126181175'] = { Name = 'metropill_008' }, - ['-966563498'] = { Name = 'metropill_decal_001' }, - ['-1222784309'] = { Name = 'metropill_decal_002' }, - ['1820931483'] = { Name = 'metropill_decal_003' }, - ['1515098406'] = { Name = 'metropill_decal_004' }, - ['-1879311232'] = { Name = 'metropill_decal_005' }, - ['2110412829'] = { Name = 'metropill_decal_006' }, - ['632662005'] = { Name = 'metropill_decal_007' }, - ['323420952'] = { Name = 'metropill_decal_008' }, - ['-1915712597'] = { Name = 'metropilla' }, - ['-1836276370'] = { Name = 'metropilla001' }, - ['2070701791'] = { Name = 'metropillb' }, - ['-481802157'] = { Name = 'metropillb001' }, - ['207082448'] = { Name = 'metrotest_lod_001' }, - ['-553289428'] = { Name = 'metrotest_lod_002' }, - ['-1345414465'] = { Name = 'metrotest_lod_003' }, - ['1967072673'] = { Name = 'metrotest_lod_004' }, - ['16613707'] = { Name = 'metrotest_lod001' }, - ['-134320307'] = { Name = 'metrotest_lod002' }, - ['761354770'] = { Name = 'metrotest_lod003' }, - ['336930682'] = { Name = 'metrotest_lod004' }, - ['-1537298430'] = { Name = 'metrotestreflect' }, - ['868868440'] = { Name = 'metrotrain' }, - ['165154707'] = { Name = 'miljet' }, - ['-310465116'] = { Name = 'minivan' }, - ['-1126264336'] = { Name = 'minivan2' }, - ['-121486168'] = { Name = 'miss_rub_couch_01_l1' }, - ['1894671041'] = { Name = 'miss_rub_couch_01' }, - ['-784816453'] = { Name = 'mixer' }, - ['475220373'] = { Name = 'mixer2' }, - ['176212222'] = { Name = 'mk_arrow_flat' }, - ['-688511582'] = { Name = 'mk_arrow' }, - ['768582247'] = { Name = 'mk_cone' }, - ['-512769117'] = { Name = 'mk_cylinder' }, - ['794464383'] = { Name = 'mk_flag' }, - ['816514494'] = { Name = 'mk_ring' }, - ['-433375717'] = { Name = 'monroe' }, - ['-845961253'] = { Name = 'monster' }, - ['525509695'] = { Name = 'moonbeam' }, - ['1896491931'] = { Name = 'moonbeam2' }, - ['1783355638'] = { Name = 'mower' }, - ['1943971979'] = { Name = 'mp_f_deadhooker' }, - ['-1667301416'] = { Name = 'mp_f_freemode_01' }, - ['-785842275'] = { Name = 'mp_f_misty_01' }, - ['695248020'] = { Name = 'mp_f_stripperlite' }, - ['1822283721'] = { Name = 'mp_g_m_pros_01' }, - ['1173958009'] = { Name = 'mp_headtargets' }, - ['-1057787465'] = { Name = 'mp_m_claude_01' }, - ['1161072059'] = { Name = 'mp_m_exarmy_01' }, - ['866411749'] = { Name = 'mp_m_famdd_01' }, - ['1558115333'] = { Name = 'mp_m_fibsec_01' }, - ['1885233650'] = { Name = 'mp_m_freemode_01' }, - ['943915367'] = { Name = 'mp_m_marston_01' }, - ['-287649847'] = { Name = 'mp_m_niko_01' }, - ['416176080'] = { Name = 'mp_m_shopkeep_01' }, - ['-839953400'] = { Name = 'mp_s_m_armoured_01' }, - ['487502835'] = { Name = 'mt_neon_a' }, - ['-1677577764'] = { Name = 'mt_neon_b' }, - ['-509995673'] = { Name = 'mt01_glow_001' }, - ['231325255'] = { Name = 'mt1_info_a' }, - ['904750859'] = { Name = 'mule' }, - ['-1050465301'] = { Name = 'mule2' }, - ['-2052737935'] = { Name = 'mule3' }, - ['-634879114'] = { Name = 'nemesis' }, - ['1034187331'] = { Name = 'nero' }, - ['1093792632'] = { Name = 'nero2' }, - ['1910680247'] = { Name = 'new_walk_1_reflect' }, - ['844547720'] = { Name = 'ng_proc_beerbottle_01a' }, - ['1098802391'] = { Name = 'ng_proc_beerbottle_01b' }, - ['1328808002'] = { Name = 'ng_proc_beerbottle_01c' }, - ['-1895783233'] = { Name = 'ng_proc_binbag_01a' }, - ['-1734625067'] = { Name = 'ng_proc_binbag_02a' }, - ['-1834013032'] = { Name = 'ng_proc_block_01a' }, - ['-1063872862'] = { Name = 'ng_proc_block_02a' }, - ['-831245731'] = { Name = 'ng_proc_block_02b' }, - ['1778631864'] = { Name = 'ng_proc_box_01a' }, - ['-1731615921'] = { Name = 'ng_proc_box_02a' }, - ['-1439676900'] = { Name = 'ng_proc_box_02b' }, - ['64781110'] = { Name = 'ng_proc_brick_01a' }, - ['-1157863053'] = { Name = 'ng_proc_brick_01b' }, - ['-1318793273'] = { Name = 'ng_proc_brkbottle_02a' }, - ['-128983652'] = { Name = 'ng_proc_brkbottle_02b' }, - ['99186895'] = { Name = 'ng_proc_brkbottle_02c' }, - ['215254697'] = { Name = 'ng_proc_brkbottle_02d' }, - ['442704326'] = { Name = 'ng_proc_brkbottle_02e' }, - ['827936690'] = { Name = 'ng_proc_brkbottle_02f' }, - ['1055714009'] = { Name = 'ng_proc_brkbottle_02g' }, - ['110881648'] = { Name = 'ng_proc_candy01a' }, - ['-385561723'] = { Name = 'ng_proc_cigar01a' }, - ['175300549'] = { Name = 'ng_proc_cigarette01a' }, - ['1175299436'] = { Name = 'ng_proc_cigbuts01a' }, - ['1479656360'] = { Name = 'ng_proc_cigbuts02a' }, - ['-200345012'] = { Name = 'ng_proc_cigbuts03a' }, - ['152603738'] = { Name = 'ng_proc_ciglight01a' }, - ['-593364948'] = { Name = 'ng_proc_cigpak01a' }, - ['-499055750'] = { Name = 'ng_proc_cigpak01b' }, - ['-200890619'] = { Name = 'ng_proc_cigpak01c' }, - ['-163314598'] = { Name = 'ng_proc_coffee_01a' }, - ['152282765'] = { Name = 'ng_proc_coffee_02a' }, - ['1475200408'] = { Name = 'ng_proc_coffee_03b' }, - ['1397473724'] = { Name = 'ng_proc_coffee_04b' }, - ['-1460292532'] = { Name = 'ng_proc_concchips01' }, - ['-1747381741'] = { Name = 'ng_proc_concchips02' }, - ['-827621449'] = { Name = 'ng_proc_concchips03' }, - ['1310916264'] = { Name = 'ng_proc_concchips04' }, - ['-720584521'] = { Name = 'ng_proc_crate_01a' }, - ['-1109001010'] = { Name = 'ng_proc_crate_02a' }, - ['1218252530'] = { Name = 'ng_proc_crate_03a' }, - ['1102352397'] = { Name = 'ng_proc_crate_04a' }, - ['-2127785247'] = { Name = 'ng_proc_drug01a002' }, - ['1450083036'] = { Name = 'ng_proc_food_aple1a' }, - ['1675697833'] = { Name = 'ng_proc_food_aple2a' }, - ['-196552994'] = { Name = 'ng_proc_food_bag01a' }, - ['-1599364663'] = { Name = 'ng_proc_food_bag02a' }, - ['386283738'] = { Name = 'ng_proc_food_burg01a' }, - ['566090194'] = { Name = 'ng_proc_food_burg02a' }, - ['1967980783'] = { Name = 'ng_proc_food_burg02c' }, - ['791748562'] = { Name = 'ng_proc_food_chips01a' }, - ['1013430847'] = { Name = 'ng_proc_food_chips01b' }, - ['-1122944124'] = { Name = 'ng_proc_food_chips01c' }, - ['-1519432258'] = { Name = 'ng_proc_food_nana1a' }, - ['-1045986034'] = { Name = 'ng_proc_food_nana2a' }, - ['1465367612'] = { Name = 'ng_proc_food_ornge1a' }, - ['-1350121957'] = { Name = 'ng_proc_inhaler01a' }, - ['334129668'] = { Name = 'ng_proc_leaves01' }, - ['-1065565414'] = { Name = 'ng_proc_leaves02' }, - ['-223893633'] = { Name = 'ng_proc_leaves03' }, - ['-1133167861'] = { Name = 'ng_proc_leaves04' }, - ['-1389192058'] = { Name = 'ng_proc_leaves05' }, - ['-669781424'] = { Name = 'ng_proc_leaves06' }, - ['-900049187'] = { Name = 'ng_proc_leaves07' }, - ['-1249759955'] = { Name = 'ng_proc_leaves08' }, - ['833463360'] = { Name = 'ng_proc_litter_plasbot1' }, - ['1072709829'] = { Name = 'ng_proc_litter_plasbot2' }, - ['-1508373229'] = { Name = 'ng_proc_litter_plasbot3' }, - ['-812352833'] = { Name = 'ng_proc_oilcan01a' }, - ['1542781471'] = { Name = 'ng_proc_ojbot_01a' }, - ['332160486'] = { Name = 'ng_proc_paintcan01a_sh' }, - ['-493523971'] = { Name = 'ng_proc_paintcan01a' }, - ['-811841173'] = { Name = 'ng_proc_paintcan02a' }, - ['-961781516'] = { Name = 'ng_proc_paper_01a' }, - ['1214769065'] = { Name = 'ng_proc_paper_02a' }, - ['-807340607'] = { Name = 'ng_proc_paper_03a' }, - ['858737478'] = { Name = 'ng_proc_paper_03a001' }, - ['1864388210'] = { Name = 'ng_proc_paper_burger01a' }, - ['-275962512'] = { Name = 'ng_proc_paper_mag_1a' }, - ['1153355730'] = { Name = 'ng_proc_paper_mag_1b' }, - ['271492684'] = { Name = 'ng_proc_paper_news_globe' }, - ['109007300'] = { Name = 'ng_proc_paper_news_meteor' }, - ['1202131520'] = { Name = 'ng_proc_paper_news_quik' }, - ['1636521374'] = { Name = 'ng_proc_paper_news_rag' }, - ['-835359795'] = { Name = 'ng_proc_pizza01a' }, - ['-1208997704'] = { Name = 'ng_proc_rebar_01a' }, - ['-1519122176'] = { Name = 'ng_proc_sodabot_01a' }, - ['144995201'] = { Name = 'ng_proc_sodacan_01a' }, - ['-1321253704'] = { Name = 'ng_proc_sodacan_01b' }, - ['-83831014'] = { Name = 'ng_proc_sodacan_02a' }, - ['-1223995600'] = { Name = 'ng_proc_sodacan_02b' }, - ['-649751644'] = { Name = 'ng_proc_sodacan_02c' }, - ['-1853193169'] = { Name = 'ng_proc_sodacan_02d' }, - ['-1703831183'] = { Name = 'ng_proc_sodacan_03a' }, - ['-1053563147'] = { Name = 'ng_proc_sodacan_03b' }, - ['1015700596'] = { Name = 'ng_proc_sodacan_04a' }, - ['-550724351'] = { Name = 'ng_proc_sodacup_01a' }, - ['-803078428'] = { Name = 'ng_proc_sodacup_01b' }, - ['-489249803'] = { Name = 'ng_proc_sodacup_01c' }, - ['1266644053'] = { Name = 'ng_proc_sodacup_02a' }, - ['1711909225'] = { Name = 'ng_proc_sodacup_02b' }, - ['-942946224'] = { Name = 'ng_proc_sodacup_02b001' }, - ['826654690'] = { Name = 'ng_proc_sodacup_02c' }, - ['-569010013'] = { Name = 'ng_proc_sodacup_03a' }, - ['938495063'] = { Name = 'ng_proc_sodacup_03c' }, - ['657068640'] = { Name = 'ng_proc_sodacup_lid' }, - ['153354187'] = { Name = 'ng_proc_spraycan01a' }, - ['-765160883'] = { Name = 'ng_proc_spraycan01b' }, - ['-1282296755'] = { Name = 'ng_proc_syrnige01a' }, - ['122627294'] = { Name = 'ng_proc_temp' }, - ['-944554615'] = { Name = 'ng_proc_tyre_01' }, - ['-964966892'] = { Name = 'ng_proc_tyre_dam1' }, - ['-2007573392'] = { Name = 'ng_proc_wood_01a' }, - ['1167949327'] = { Name = 'ng_proc_wood_02a' }, - ['-1606187161'] = { Name = 'nightblade' }, - ['-1943285540'] = { Name = 'nightshade' }, - ['-1295027632'] = { Name = 'nimbus' }, - ['1032823388'] = { Name = 'ninef' }, - ['-1461482751'] = { Name = 'ninef2' }, - ['-777172681'] = { Name = 'omnis' }, - ['1348744438'] = { Name = 'oracle' }, - ['-511601230'] = { Name = 'oracle2' }, - ['1987142870'] = { Name = 'osiris' }, - ['2022656922'] = { Name = 'p_a4_sheets_s' }, - ['1922550796'] = { Name = 'p_abat_roller_1_col' }, - ['687149709'] = { Name = 'p_abat_roller_1' }, - ['-1892870230'] = { Name = 'p_airdancer_01_s' }, - ['1005988375'] = { Name = 'p_amanda_note_01_s' }, - ['334157238'] = { Name = 'p_amb_bag_bottle_01' }, - ['-2081834323'] = { Name = 'p_amb_bagel_01' }, - ['1477930039'] = { Name = 'p_amb_brolly_01_s' }, - ['-781595832'] = { Name = 'p_amb_brolly_01' }, - ['-969349845'] = { Name = 'p_amb_clipboard_01' }, - ['-598185919'] = { Name = 'p_amb_coffeecup_01' }, - ['1696672834'] = { Name = 'p_amb_drain_water_double' }, - ['-365854806'] = { Name = 'p_amb_drain_water_longstrip' }, - ['810320178'] = { Name = 'p_amb_drain_water_single' }, - ['-1412276716'] = { Name = 'p_amb_joint_01' }, - ['1661782514'] = { Name = 'p_amb_lap_top_01' }, - ['-1855510874'] = { Name = 'p_amb_lap_top_02' }, - ['94130617'] = { Name = 'p_amb_phone_01' }, - ['-1310709074'] = { Name = 'p_arm_bind_cut_s' }, - ['-2065455377'] = { Name = 'p_armchair_01_s' }, - ['-426085191'] = { Name = 'p_ashley_neck_01_s' }, - ['359105829'] = { Name = 'p_attache_case_01_s' }, - ['-1244204979'] = { Name = 'p_balaclavamichael_s' }, - ['139950461'] = { Name = 'p_banknote_onedollar_s' }, - ['-906831231'] = { Name = 'p_banknote_s' }, - ['-1507474729'] = { Name = 'p_barier_test_s' }, - ['1640819392'] = { Name = 'p_barierbase_test_s' }, - ['-1613856019'] = { Name = 'p_barriercrash_01_s' }, - ['-897426451'] = { Name = 'p_beefsplitter_s' }, - ['-819563011'] = { Name = 'p_binbag_01_s' }, - ['-255563997'] = { Name = 'p_bison_winch_s' }, - ['-857302273'] = { Name = 'p_bloodsplat_s' }, - ['598012071'] = { Name = 'p_blueprints_01_s' }, - ['-650269716'] = { Name = 'p_brain_chunk_s' }, - ['-1859992197'] = { Name = 'p_bs_map_door_01_s' }, - ['320854256'] = { Name = 'p_cablecar_s_door_l' }, - ['-439452078'] = { Name = 'p_cablecar_s_door_r' }, - ['-733833763'] = { Name = 'p_cablecar_s' }, - ['977923025'] = { Name = 'p_car_keys_01' }, - ['886894755'] = { Name = 'p_cargo_chute_s' }, - ['264881854'] = { Name = 'p_cash_envelope_01_s' }, - ['289451089'] = { Name = 'p_cctv_s' }, - ['-603767659'] = { Name = 'p_champ_flute_s' }, - ['2016808872'] = { Name = 'p_chem_vial_02b_s' }, - ['-1981474309'] = { Name = 'p_cigar_pack_02_s' }, - ['-1173315865'] = { Name = 'p_clb_officechair_s' }, - ['850900610'] = { Name = 'p_cletus_necklace_s' }, - ['-1326828316'] = { Name = 'p_cloth_airdancer_s' }, - ['1873223844'] = { Name = 'p_clothtarp_down_s' }, - ['667673034'] = { Name = 'p_clothtarp_s' }, - ['-632887129'] = { Name = 'p_clothtarp_up_s' }, - ['-1404244377'] = { Name = 'p_controller_01_s' }, - ['284970900'] = { Name = 'p_counter_01_glass_plug' }, - ['1041076678'] = { Name = 'p_counter_01_glass' }, - ['-1442918238'] = { Name = 'p_counter_02_glass' }, - ['479709182'] = { Name = 'p_counter_03_glass' }, - ['1870138714'] = { Name = 'p_counter_04_glass' }, - ['1328154590'] = { Name = 'p_crahsed_heli_s' }, - ['-148001007'] = { Name = 'p_cs_15m_rope_s' }, - ['2129874414'] = { Name = 'p_cs_bandana_s' }, - ['1742452667'] = { Name = 'p_cs_bbbat_01' }, - ['-1141851766'] = { Name = 'p_cs_beachtowel_01_s' }, - ['-205657605'] = { Name = 'p_cs_beverly_lanyard_s' }, - ['-1301244203'] = { Name = 'p_cs_bottle_01' }, - ['-55816390'] = { Name = 'p_cs_bowl_01b_s' }, - ['789652940'] = { Name = 'p_cs_cam_phone' }, - ['692857360'] = { Name = 'p_cs_ciggy_01b_s' }, - ['1027109416'] = { Name = 'p_cs_clipboard' }, - ['-643540469'] = { Name = 'p_cs_clothes_box_s' }, - ['473625129'] = { Name = 'p_cs_coke_line_s' }, - ['2075712814'] = { Name = 'p_cs_comb_01' }, - ['-1281059971'] = { Name = 'p_cs_cuffs_02_s' }, - ['-561989645'] = { Name = 'p_cs_duffel_01_s' }, - ['-1630172026'] = { Name = 'p_cs_joint_01' }, - ['-960996301'] = { Name = 'p_cs_joint_02' }, - ['1910331218'] = { Name = 'p_cs_laptop_02_w' }, - ['2109346928'] = { Name = 'p_cs_laptop_02' }, - ['-903501682'] = { Name = 'p_cs_laz_ptail_s' }, - ['400375711'] = { Name = 'p_cs_leaf_s' }, - ['-680040094'] = { Name = 'p_cs_lighter_01' }, - ['-2094907124'] = { Name = 'p_cs_locker_01_s' }, - ['-994868291'] = { Name = 'p_cs_locker_01' }, - ['250681399'] = { Name = 'p_cs_locker_02' }, - ['645774080'] = { Name = 'p_cs_locker_door_01' }, - ['2120038965'] = { Name = 'p_cs_locker_door_01b' }, - ['899635523'] = { Name = 'p_cs_locker_door_02' }, - ['-1027860019'] = { Name = 'p_cs_mp_jet_01_s' }, - ['1914837387'] = { Name = 'p_cs_newspaper_s' }, - ['-415861411'] = { Name = 'p_cs_pamphlet_01_s' }, - ['-1413299318'] = { Name = 'p_cs_panties_03_s' }, - ['282159321'] = { Name = 'p_cs_paper_disp_02' }, - ['-908010235'] = { Name = 'p_cs_paper_disp_1' }, - ['-794885282'] = { Name = 'p_cs_papers_01' }, - ['28632457'] = { Name = 'p_cs_papers_02' }, - ['-215824283'] = { Name = 'p_cs_papers_03' }, - ['-2104938113'] = { Name = 'p_cs_para_ropebit_s' }, - ['933678382'] = { Name = 'p_cs_para_ropes_s' }, - ['1473615697'] = { Name = 'p_cs_polaroid_s' }, - ['71008234'] = { Name = 'p_cs_police_torch_s' }, - ['1202315039'] = { Name = 'p_cs_pour_tube_s' }, - ['93734612'] = { Name = 'p_cs_power_cord_s' }, - ['-1927574507'] = { Name = 'p_cs_rope_tie_01_s' }, - ['-782390768'] = { Name = 'p_cs_sack_01_s' }, - ['25967894'] = { Name = 'p_cs_saucer_01_s' }, - ['-1224179799'] = { Name = 'p_cs_scissors_s' }, - ['1019439145'] = { Name = 'p_cs_script_bottle_s' }, - ['-1972099092'] = { Name = 'p_cs_script_s' }, - ['1488914677'] = { Name = 'p_cs_shirt_01_s' }, - ['1787281554'] = { Name = 'p_cs_shot_glass_2_s' }, - ['2032950376'] = { Name = 'p_cs_shot_glass_s' }, - ['1208606316'] = { Name = 'p_cs_sub_hook_01_s' }, - ['-1773983618'] = { Name = 'p_cs_toaster_s' }, - ['-969695354'] = { Name = 'p_cs_tracy_neck2_s' }, - ['1846382434'] = { Name = 'p_cs_trolley_01_s' }, - ['-1897431054'] = { Name = 'p_cs1_14b_train_esdoor' }, - ['-1150377354'] = { Name = 'p_cs1_14b_train_s_col' }, - ['-532698014'] = { Name = 'p_cs1_14b_train_s_colopen' }, - ['-1491044252'] = { Name = 'p_cs1_14b_train_s' }, - ['1119015720'] = { Name = 'p_csbporndudes_necklace_s' }, - ['-582322177'] = { Name = 'p_csh_strap_01_pro_s' }, - ['1398481760'] = { Name = 'p_csh_strap_01_s' }, - ['568587468'] = { Name = 'p_csh_strap_03_s' }, - ['-453852320'] = { Name = 'p_cut_door_01' }, - ['-684382235'] = { Name = 'p_cut_door_02' }, - ['-815851463'] = { Name = 'p_cut_door_03' }, - ['239157435'] = { Name = 'p_d_scuba_mask_s' }, - ['414775158'] = { Name = 'p_d_scuba_tank_s' }, - ['-966274179'] = { Name = 'p_defilied_ragdoll_01_s' }, - ['1519875640'] = { Name = 'p_devin_box_01_s' }, - ['-721037220'] = { Name = 'p_dinechair_01_s' }, - ['1795767067'] = { Name = 'p_disp_02_door_01' }, - ['-1290409783'] = { Name = 'p_dock_crane_cabl_s' }, - ['-339559827'] = { Name = 'p_dock_crane_cable_s' }, - ['-1683671214'] = { Name = 'p_dock_crane_sld_s' }, - ['913564566'] = { Name = 'p_dock_rtg_ld_cab' }, - ['1496091510'] = { Name = 'p_dock_rtg_ld_spdr' }, - ['-29181140'] = { Name = 'p_dock_rtg_ld_wheel' }, - ['577432224'] = { Name = 'p_dumpster_t' }, - ['-890087262'] = { Name = 'p_ecg_01_cable_01_s' }, - ['1650657833'] = { Name = 'p_f_duster_handle_01' }, - ['-816251662'] = { Name = 'p_f_duster_head_01' }, - ['1079465856'] = { Name = 'p_fag_packet_01_s' }, - ['452612255'] = { Name = 'p_ferris_car_01' }, - ['1805157542'] = { Name = 'p_ferris_wheel_amo_l' }, - ['-1904367099'] = { Name = 'p_ferris_wheel_amo_l2' }, - ['1210826189'] = { Name = 'p_ferris_wheel_amo_p' }, - ['-1295299286'] = { Name = 'p_fib_rubble_s' }, - ['798176293'] = { Name = 'p_film_set_static_01' }, - ['-1042390945'] = { Name = 'p_fin_vaultdoor_s' }, - ['-2124287878'] = { Name = 'p_finale_bld_ground_s' }, - ['432116038'] = { Name = 'p_finale_bld_pool_s' }, - ['2126528679'] = { Name = 'p_flatbed_strap_s' }, - ['794871542'] = { Name = 'p_fnclink_dtest' }, - ['-1867132116'] = { Name = 'p_folding_chair_01_s' }, - ['-2046753783'] = { Name = 'p_gaffer_tape_s' }, - ['285775647'] = { Name = 'p_gaffer_tape_strip_s' }, - ['645231946'] = { Name = 'p_gar_door_01_s' }, - ['1645674613'] = { Name = 'p_gar_door_02_s' }, - ['923341943'] = { Name = 'p_gar_door_03_s' }, - ['1228377684'] = { Name = 'p_gasmask_s' }, - ['1673290408'] = { Name = 'p_gate_prison_01_s' }, - ['1407268736'] = { Name = 'p_gcase_s' }, - ['1350616857'] = { Name = 'p_gdoor1_s' }, - ['-1298716645'] = { Name = 'p_gdoor1colobject_s' }, - ['192682307'] = { Name = 'p_gdoortest_s' }, - ['2095672150'] = { Name = 'p_hand_toilet_s' }, - ['1714199852'] = { Name = 'p_hw1_22_doors_s' }, - ['-1001571795'] = { Name = 'p_hw1_22_table_s' }, - ['-2074760643'] = { Name = 'p_ice_box_01_s' }, - ['545302142'] = { Name = 'p_ice_box_proxy_col' }, - ['933794942'] = { Name = 'p_idol_case_s' }, - ['736919402'] = { Name = 'p_ilev_p_easychair_s' }, - ['-999584101'] = { Name = 'p_ing_bagel_01' }, - ['-133688399'] = { Name = 'p_ing_coffeecup_01' }, - ['692778550'] = { Name = 'p_ing_coffeecup_02' }, - ['-921000564'] = { Name = 'p_ing_microphonel_01' }, - ['126000171'] = { Name = 'p_ing_skiprope_01_s' }, - ['-1913525176'] = { Name = 'p_ing_skiprope_01' }, - ['-438114230'] = { Name = 'p_inhaler_01_s' }, - ['-1847044452'] = { Name = 'p_int_jewel_mirror' }, - ['-1174817344'] = { Name = 'p_int_jewel_plant_01' }, - ['-950054773'] = { Name = 'p_int_jewel_plant_02' }, - ['1425919976'] = { Name = 'p_jewel_door_l' }, - ['9467943'] = { Name = 'p_jewel_door_r1' }, - ['1277485905'] = { Name = 'p_jewel_necklace_02' }, - ['1925649262'] = { Name = 'p_jewel_necklace01_s' }, - ['439457590'] = { Name = 'p_jewel_necklace02_s' }, - ['-414705250'] = { Name = 'p_jewel_pickup33_s' }, - ['-1435891468'] = { Name = 'p_jimmy_necklace_s' }, - ['-1491833875'] = { Name = 'p_jimmyneck_03_s' }, - ['-1599176945'] = { Name = 'p_kitch_juicer_s' }, - ['785421426'] = { Name = 'p_lamarneck_01_s' }, - ['2028748281'] = { Name = 'p_laptop_02_s' }, - ['1910485680'] = { Name = 'p_large_gold_s' }, - ['-1327396865'] = { Name = 'p_laz_j01_s' }, - ['2086911125'] = { Name = 'p_laz_j02_s' }, - ['1516229897'] = { Name = 'p_lazlow_shirt_s' }, - ['516221692'] = { Name = 'p_ld_am_ball_01' }, - ['-1499819825'] = { Name = 'p_ld_bs_bag_01' }, - ['664069992'] = { Name = 'p_ld_cable_tie_01_s' }, - ['-1318035530'] = { Name = 'p_ld_coffee_vend_01' }, - ['-2015792788'] = { Name = 'p_ld_coffee_vend_s' }, - ['813750836'] = { Name = 'p_ld_conc_cyl_01' }, - ['50437630'] = { Name = 'p_ld_crocclips01_s' }, - ['-1589103511'] = { Name = 'p_ld_crocclips02_s' }, - ['-1270234221'] = { Name = 'p_ld_frisbee_01' }, - ['332394125'] = { Name = 'p_ld_heist_bag_01' }, - ['-679192147'] = { Name = 'p_ld_heist_bag_s_1' }, - ['-582458059'] = { Name = 'p_ld_heist_bag_s_2' }, - ['1185332651'] = { Name = 'p_ld_heist_bag_s_pro_o' }, - ['-651206088'] = { Name = 'p_ld_heist_bag_s_pro' }, - ['1075296156'] = { Name = 'p_ld_heist_bag_s_pro2_s' }, - ['1514570228'] = { Name = 'p_ld_heist_bag_s' }, - ['-1595369626'] = { Name = 'p_ld_id_card_002' }, - ['292851939'] = { Name = 'p_ld_id_card_01' }, - ['303234577'] = { Name = 'p_ld_sax' }, - ['-717142483'] = { Name = 'p_ld_soc_ball_01' }, - ['-874338148'] = { Name = 'p_ld_stinger_s' }, - ['-1282866511'] = { Name = 'p_leg_bind_cut_s' }, - ['1937985747'] = { Name = 'p_lestersbed_s' }, - ['1526269963'] = { Name = 'p_lev_sofa_s' }, - ['92191450'] = { Name = 'p_lifeinv_neck_01_s' }, - ['-676133793'] = { Name = 'p_litter_picker_s' }, - ['921993182'] = { Name = 'p_loose_rag_01_s' }, - ['-114933643'] = { Name = 'p_mast_01_s' }, - ['-1284191201'] = { Name = 'p_mbbed_s' }, - ['-444717304'] = { Name = 'p_med_jet_01_s' }, - ['310462430'] = { Name = 'p_medal_01_s' }, - ['1808635348'] = { Name = 'p_meth_bag_01_s' }, - ['1203231469'] = { Name = 'p_michael_backpack_s' }, - ['136880302'] = { Name = 'p_michael_scuba_mask_s' }, - ['1593773001'] = { Name = 'p_michael_scuba_tank_s' }, - ['1924030334'] = { Name = 'p_mp_showerdoor_s' }, - ['-25464105'] = { Name = 'p_mr_raspberry_01_s' }, - ['-1173768201'] = { Name = 'p_mrk_harness_s' }, - ['709180631'] = { Name = 'p_new_j_counter_01' }, - ['938137634'] = { Name = 'p_new_j_counter_02' }, - ['-2036042344'] = { Name = 'p_new_j_counter_03' }, - ['-502024136'] = { Name = 'p_notepad_01_s' }, - ['-1832227997'] = { Name = 'p_novel_01_s' }, - ['2075235594'] = { Name = 'p_num_plate_01' }, - ['-2006012284'] = { Name = 'p_num_plate_02' }, - ['167522649'] = { Name = 'p_num_plate_03' }, - ['-88501548'] = { Name = 'p_num_plate_04' }, - ['-1207886863'] = { Name = 'p_oil_pjack_01_amo' }, - ['684384219'] = { Name = 'p_oil_pjack_01_frg_s' }, - ['568309711'] = { Name = 'p_oil_pjack_01_s' }, - ['200010599'] = { Name = 'p_oil_pjack_02_amo' }, - ['96996152'] = { Name = 'p_oil_pjack_02_frg_s' }, - ['1888301071'] = { Name = 'p_oil_pjack_02_s' }, - ['1677473970'] = { Name = 'p_oil_pjack_03_amo' }, - ['1598709538'] = { Name = 'p_oil_pjack_03_frg_s' }, - ['323971301'] = { Name = 'p_oil_pjack_03_s' }, - ['-492435441'] = { Name = 'p_oil_slick_01' }, - ['388861061'] = { Name = 'p_omega_neck_01_s' }, - ['-1814060388'] = { Name = 'p_omega_neck_02_s' }, - ['-915071241'] = { Name = 'p_orleans_mask_s' }, - ['-1858071425'] = { Name = 'p_ortega_necklace_s' }, - ['-1973600183'] = { Name = 'p_oscar_necklace_s' }, - ['-1388130770'] = { Name = 'p_overalls_02_s' }, - ['-1315854077'] = { Name = 'p_pallet_02a_s' }, - ['548349475'] = { Name = 'p_panties_s' }, - ['1766664132'] = { Name = 'p_para_bag_xmas_s' }, - ['-1410396731'] = { Name = 'p_para_broken1_s' }, - ['1393914438'] = { Name = 'p_parachute_fallen_s' }, - ['1746997299'] = { Name = 'p_parachute_s_shop' }, - ['1269906701'] = { Name = 'p_parachute_s' }, - ['-1038982469'] = { Name = 'p_parachute1_mp_dec' }, - ['1336576410'] = { Name = 'p_parachute1_mp_s' }, - ['-313681483'] = { Name = 'p_parachute1_s' }, - ['1740193300'] = { Name = 'p_parachute1_sp_dec' }, - ['218548447'] = { Name = 'p_parachute1_sp_s' }, - ['-573707493'] = { Name = 'p_patio_lounger1_s' }, - ['-233697971'] = { Name = 'p_pharm_unit_01' }, - ['1651928600'] = { Name = 'p_pharm_unit_02' }, - ['-1559354806'] = { Name = 'p_phonebox_01b_s' }, - ['-429560270'] = { Name = 'p_phonebox_02_s' }, - ['-677710671'] = { Name = 'p_pistol_holster_s' }, - ['445443711'] = { Name = 'p_planning_board_01' }, - ['-1790516235'] = { Name = 'p_planning_board_02' }, - ['-2030024856'] = { Name = 'p_planning_board_03' }, - ['-2117059320'] = { Name = 'p_planning_board_04' }, - ['1701933528'] = { Name = 'p_pliers_01_s' }, - ['1150266519'] = { Name = 'p_po1_01_doorm_s' }, - ['483426292'] = { Name = 'p_police_radio_hset_s' }, - ['-1666779307'] = { Name = 'p_poly_bag_01_s' }, - ['-2028292621'] = { Name = 'p_pour_wine_s' }, - ['-1378608019'] = { Name = 'p_rail_controller_s' }, - ['-1741877302'] = { Name = 'p_rc_handset' }, - ['-1210228783'] = { Name = 'p_rcss_folded' }, - ['-889858063'] = { Name = 'p_rcss_s' }, - ['-406716247'] = { Name = 'p_res_sofa_l_s' }, - ['-671139745'] = { Name = 'p_ringbinder_01_s' }, - ['840819528'] = { Name = 'p_rpulley_s' }, - ['-289082718'] = { Name = 'p_rub_binbag_test' }, - ['138065747'] = { Name = 'p_s_scuba_mask_s' }, - ['1569945555'] = { Name = 'p_s_scuba_tank_s' }, - ['220926652'] = { Name = 'p_seabed_whalebones' }, - ['-821715369'] = { Name = 'p_sec_case_02_s' }, - ['-660683845'] = { Name = 'p_sec_gate_01_s_col' }, - ['-859846705'] = { Name = 'p_sec_gate_01_s' }, - ['-586091884'] = { Name = 'p_secret_weapon_02' }, - ['-834831712'] = { Name = 'p_shoalfish_s' }, - ['-1550153628'] = { Name = 'p_shower_towel_s' }, - ['-1048509434'] = { Name = 'p_single_rose_s' }, - ['-788483932'] = { Name = 'p_skiprope_r_s' }, - ['1359588858'] = { Name = 'p_smg_holster_01_s' }, - ['733015881'] = { Name = 'p_sofa_s' }, - ['1196890646'] = { Name = 'p_soloffchair_s' }, - ['-1268267712'] = { Name = 'p_spinning_anus_s' }, - ['-656602706'] = { Name = 'p_steve_scuba_hood_s' }, - ['795100068'] = { Name = 'p_stinger_02' }, - ['1276148988'] = { Name = 'p_stinger_03' }, - ['-596599738'] = { Name = 'p_stinger_04' }, - ['1991736182'] = { Name = 'p_stinger_piece_01' }, - ['763062523'] = { Name = 'p_stinger_piece_02' }, - ['1053590205'] = { Name = 'p_stretch_necklace_s' }, - ['260344606'] = { Name = 'p_sub_crane_s' }, - ['-1113650340'] = { Name = 'p_sunglass_m_s' }, - ['-298630371'] = { Name = 'p_syringe_01_s' }, - ['452397669'] = { Name = 'p_t_shirt_pile_s' }, - ['-382431567'] = { Name = 'p_tennis_bag_01_s' }, - ['892543765'] = { Name = 'p_till_01_s' }, - ['-14292445'] = { Name = 'p_tmom_earrings_s' }, - ['-2083166171'] = { Name = 'p_tourist_map_01_s' }, - ['774425122'] = { Name = 'p_tram_crash_s' }, - ['1052341626'] = { Name = 'p_trev_rope_01_s' }, - ['-1211793417'] = { Name = 'p_trev_ski_mask_s' }, - ['-1107883581'] = { Name = 'p_trevor_prologe_bally_s' }, - ['1481705834'] = { Name = 'p_tumbler_01_bar_s' }, - ['1480049515'] = { Name = 'p_tumbler_01_s' }, - ['9730626'] = { Name = 'p_tumbler_01_trev_s' }, - ['788975200'] = { Name = 'p_tumbler_02_s1' }, - ['227213780'] = { Name = 'p_tumbler_cs2_s_day' }, - ['1384562503'] = { Name = 'p_tumbler_cs2_s_trev' }, - ['-1533900808'] = { Name = 'p_tumbler_cs2_s' }, - ['-1821020865'] = { Name = 'p_tv_cam_02_s' }, - ['1089807209'] = { Name = 'p_v_43_safe_s' }, - ['-532050425'] = { Name = 'p_v_ilev_chopshopswitch_s' }, - ['1593135630'] = { Name = 'p_v_med_p_sofa_s' }, - ['-1211387925'] = { Name = 'p_v_res_tt_bed_s' }, - ['1041628835'] = { Name = 'p_w_ar_musket_chrg' }, - ['469594741'] = { Name = 'p_w_grass_gls_s' }, - ['1428248303'] = { Name = 'p_wade_necklace_s' }, - ['-935222204'] = { Name = 'p_watch_01_s' }, - ['1937367659'] = { Name = 'p_watch_01' }, - ['-1855510517'] = { Name = 'p_watch_02_s' }, - ['1169295068'] = { Name = 'p_watch_02' }, - ['133193419'] = { Name = 'p_watch_03_s' }, - ['1597848050'] = { Name = 'p_watch_03' }, - ['-1330553639'] = { Name = 'p_watch_04' }, - ['-1052312060'] = { Name = 'p_watch_05' }, - ['-1929013886'] = { Name = 'p_watch_06' }, - ['1122483751'] = { Name = 'p_waterboardc_s' }, - ['-1981517174'] = { Name = 'p_wboard_clth_s' }, - ['2021859795'] = { Name = 'p_weed_bottle_s' }, - ['488156118'] = { Name = 'p_whiskey_bottle_s' }, - ['6840295'] = { Name = 'p_whiskey_notop_empty' }, - ['-1051179078'] = { Name = 'p_whiskey_notop' }, - ['-1364166376'] = { Name = 'p_winch_long_s' }, - ['-35679191'] = { Name = 'p_wine_glass_s' }, - ['604553643'] = { Name = 'p_yacht_chair_01_s' }, - ['1532110050'] = { Name = 'p_yacht_sofa_01_s' }, - ['876225403'] = { Name = 'p_yoga_mat_01_s' }, - ['900603612'] = { Name = 'p_yoga_mat_02_s' }, - ['-2137918589'] = { Name = 'p_yoga_mat_03_s' }, - ['569305213'] = { Name = 'packer' }, - ['-431692672'] = { Name = 'panto' }, - ['1488164764'] = { Name = 'paradise' }, - ['-808457413'] = { Name = 'patriot' }, - ['-2007026063'] = { Name = 'pbus' }, - ['-909201658'] = { Name = 'pcj' }, - ['-1758137366'] = { Name = 'penetrator' }, - ['-377465520'] = { Name = 'penumbra' }, - ['1830407356'] = { Name = 'peyote' }, - ['-1829802492'] = { Name = 'pfister811' }, - ['-2137348917'] = { Name = 'phantom' }, - ['-1649536104'] = { Name = 'phantom2' }, - ['-2095439403'] = { Name = 'phoenix' }, - ['-1624416230'] = { Name = 'physics_glasses' }, - ['-435372404'] = { Name = 'physics_hat' }, - ['780047980'] = { Name = 'physics_hat2' }, - ['1507916787'] = { Name = 'picador' }, - ['1078682497'] = { Name = 'pigalle' }, - ['1479397204'] = { Name = 'pil_p_para_bag_pilot_s' }, - ['-2124524821'] = { Name = 'pil_p_para_pilot_sp_s' }, - ['-284254006'] = { Name = 'pil_prop_fs_safedoor' }, - ['2112939163'] = { Name = 'pil_prop_fs_target_01' }, - ['1806057478'] = { Name = 'pil_prop_fs_target_02' }, - ['683260466'] = { Name = 'pil_prop_fs_target_03' }, - ['1400495203'] = { Name = 'pil_prop_fs_target_base' }, - ['-28585071'] = { Name = 'pil_prop_pilot_icon_01' }, - ['-1692214353'] = { Name = 'player_one' }, - ['-1686040670'] = { Name = 'player_two' }, - ['225514697'] = { Name = 'player_zero' }, - ['-1199815829'] = { Name = 'plg_01_animlight_003' }, - ['964150636'] = { Name = 'plg_01_animlight_004' }, - ['-1220873354'] = { Name = 'plg_01_animlight_01' }, - ['-2013784847'] = { Name = 'plg_01_animlight_02' }, - ['731100675'] = { Name = 'plg_01_arm_00_lod' }, - ['1661073969'] = { Name = 'plg_01_arm_00_slod' }, - ['-1410742344'] = { Name = 'plg_01_arm_00' }, - ['-932633546'] = { Name = 'plg_01_arm_01_lod' }, - ['-272025418'] = { Name = 'plg_01_arm_01_slod' }, - ['-1715657889'] = { Name = 'plg_01_arm_01' }, - ['479822626'] = { Name = 'plg_01_arm_02_lod' }, - ['-556860947'] = { Name = 'plg_01_arm_02_slod' }, - ['-2010218430'] = { Name = 'plg_01_arm_02' }, - ['2088201014'] = { Name = 'plg_01_arm_03_lod' }, - ['346076238'] = { Name = 'plg_01_arm_03_slod' }, - ['1997037046'] = { Name = 'plg_01_arm_03' }, - ['-892088734'] = { Name = 'plg_01_baleiref_01' }, - ['2132257033'] = { Name = 'plg_01_baleiref_lod' }, - ['804108574'] = { Name = 'plg_01_baleiref_lod01' }, - ['-644445071'] = { Name = 'plg_01_baleiref_lod02' }, - ['1137860839'] = { Name = 'plg_01_baleiref_lod03' }, - ['1740810439'] = { Name = 'plg_01_baleiref_lod04' }, - ['1491405580'] = { Name = 'plg_01_baleiref_lod05' }, - ['589438855'] = { Name = 'plg_01_baleiref_lod06' }, - ['-1938296271'] = { Name = 'plg_01_baleiref_lod07' }, - ['-1334298063'] = { Name = 'plg_01_baleiref_lod08' }, - ['-1594025157'] = { Name = 'plg_01_baleiref_lod09' }, - ['-1356417350'] = { Name = 'plg_01_baleiref_lod10' }, - ['-1721529548'] = { Name = 'plg_01_baleiref_lod11' }, - ['1101749177'] = { Name = 'plg_01_baleiref_lod12' }, - ['862240556'] = { Name = 'plg_01_baleiref_lod13' }, - ['1163665718'] = { Name = 'plg_01_barn_lod' }, - ['-963128503'] = { Name = 'plg_01_barn_slod' }, - ['-317265306'] = { Name = 'plg_01_barn1_slod' }, - ['429186029'] = { Name = 'plg_01_barn2_lod' }, - ['-1267126365'] = { Name = 'plg_01_batch_lod' }, - ['-182173701'] = { Name = 'plg_01_c_iref_lod' }, - ['1675128922'] = { Name = 'plg_01_c_iref_lod01' }, - ['1809285132'] = { Name = 'plg_01_c_iref_lod02' }, - ['-2091537556'] = { Name = 'plg_01_cables_heavy0' }, - ['1821129343'] = { Name = 'plg_01_cables_heavy001' }, - ['1912161625'] = { Name = 'plg_01_cables_heavy002' }, - ['2139218026'] = { Name = 'plg_01_cables_heavy003' }, - ['-1777070706'] = { Name = 'plg_01_cables_heavy004' }, - ['-188344476'] = { Name = 'plg_01_cables_heavy01' }, - ['703332783'] = { Name = 'plg_01_cables_heavy02' }, - ['389274687'] = { Name = 'plg_01_cables_heavy03' }, - ['-561124624'] = { Name = 'plg_01_cables_heavy04' }, - ['-1376843341'] = { Name = 'plg_01_cables_heavy05' }, - ['50508765'] = { Name = 'plg_01_cables_heavy06' }, - ['-800436631'] = { Name = 'plg_01_cables_heavy07' }, - ['-1106153153'] = { Name = 'plg_01_cables_light' }, - ['813686258'] = { Name = 'plg_01_cables_light01' }, - ['671011333'] = { Name = 'plg_01_cf_1_lod' }, - ['-1289491932'] = { Name = 'plg_01_cf_2_lod' }, - ['-975704197'] = { Name = 'plg_01_cf_2_slod1' }, - ['185408256'] = { Name = 'plg_01_chopped_field_lod' }, - ['1415212342'] = { Name = 'plg_01_chopped_field' }, - ['1984602315'] = { Name = 'plg_01_chopped_field04' }, - ['-2056504744'] = { Name = 'plg_01_chopped_field05_lod' }, - ['208850201'] = { Name = 'plg_01_chopped_field05' }, - ['-75454038'] = { Name = 'plg_01_chopped_field06_lod' }, - ['-1161975380'] = { Name = 'plg_01_chopped_field06' }, - ['1436180327'] = { Name = 'plg_01_chopped_field09' }, - ['1598124957'] = { Name = 'plg_01_chopped_field10' }, - ['-75387873'] = { Name = 'plg_01_chopped_field11' }, - ['1759625366'] = { Name = 'plg_01_dutchbarn_d' }, - ['1652291972'] = { Name = 'plg_01_dutchbarn' }, - ['1857338341'] = { Name = 'plg_01_fence_00_lod' }, - ['-972187528'] = { Name = 'plg_01_fence_01_lod' }, - ['-588622459'] = { Name = 'plg_01_fence_02_lod' }, - ['499534595'] = { Name = 'plg_01_fence_03_lod' }, - ['1619474278'] = { Name = 'plg_01_fence_04_lod' }, - ['-1717558890'] = { Name = 'plg_01_fence_05_lod' }, - ['-1466169775'] = { Name = 'plg_01_fence_06_lod' }, - ['-696092019'] = { Name = 'plg_01_fence_07_lod' }, - ['-1556742175'] = { Name = 'plg_01_fence_08_lod' }, - ['-1570079618'] = { Name = 'plg_01_fence_09_lod' }, - ['-626094069'] = { Name = 'plg_01_fence_10_lod' }, - ['-21934564'] = { Name = 'plg_01_fence_11_lod' }, - ['-931103058'] = { Name = 'plg_01_fence_12_lod' }, - ['1416968082'] = { Name = 'plg_01_fence_13_lod' }, - ['-1782253704'] = { Name = 'plg_01_fence_14_lod' }, - ['-1971893412'] = { Name = 'plg_01_fence_15_lod' }, - ['473135295'] = { Name = 'plg_01_field_hi_1_slod' }, - ['-1573424923'] = { Name = 'plg_01_field_hi_1a_lod' }, - ['772009890'] = { Name = 'plg_01_field_hi_1a' }, - ['-343425612'] = { Name = 'plg_01_field_hi_1b_lod' }, - ['1941043961'] = { Name = 'plg_01_field_hi_1b' }, - ['1743524091'] = { Name = 'plg_01_field_hi_1c_lod' }, - ['1227859445'] = { Name = 'plg_01_field_hi_1c' }, - ['665022958'] = { Name = 'plg_01_field_hi_1d_lod' }, - ['-100628552'] = { Name = 'plg_01_field_hi_1d' }, - ['-313444937'] = { Name = 'plg_01_field_hi_1e_lod' }, - ['599841592'] = { Name = 'plg_01_field_hi_1e' }, - ['-1811151056'] = { Name = 'plg_01_field_hi_1f_lod' }, - ['1435877085'] = { Name = 'plg_01_field_hi_1f' }, - ['-504798613'] = { Name = 'plg_01_field_hi_2_d' }, - ['-2062810657'] = { Name = 'plg_01_field_hi_2_lod' }, - ['-1901241809'] = { Name = 'plg_01_field_hi_2' }, - ['-1358296223'] = { Name = 'plg_01_hay_lod' }, - ['889414298'] = { Name = 'plg_01_hed_slod' }, - ['1472425979'] = { Name = 'plg_01_hed_slod01' }, - ['-993965619'] = { Name = 'plg_01_hed_slod03' }, - ['1916865826'] = { Name = 'plg_01_hedgepush02a_d' }, - ['-531708493'] = { Name = 'plg_01_hedgepush02a_lod' }, - ['-1927310773'] = { Name = 'plg_01_hedgepush02a' }, - ['1242995074'] = { Name = 'plg_01_hedgepush02b_d' }, - ['-1007331308'] = { Name = 'plg_01_hedgepush02b_lod' }, - ['1438653006'] = { Name = 'plg_01_hedgepush02b_slod' }, - ['1750091945'] = { Name = 'plg_01_hedgepush02b' }, - ['1335318007'] = { Name = 'plg_01_hedgepush19a_d' }, - ['-908397736'] = { Name = 'plg_01_hedgepush19a_lod' }, - ['-72969903'] = { Name = 'plg_01_hedgepush19a' }, - ['-1716612273'] = { Name = 'plg_01_hedgepush19b_d' }, - ['1253907362'] = { Name = 'plg_01_hedgepush19b_lod' }, - ['158182623'] = { Name = 'plg_01_hedgepush19b' }, - ['897076999'] = { Name = 'plg_01_hedgepush2_slod' }, - ['45694131'] = { Name = 'plg_01_hedgepush20_d' }, - ['971836008'] = { Name = 'plg_01_hedgepush20_lod' }, - ['1305310746'] = { Name = 'plg_01_hedgepush20' }, - ['-865887703'] = { Name = 'plg_01_hedgepush22a_d' }, - ['-924439130'] = { Name = 'plg_01_hedgepush22a_lod' }, - ['-1880245974'] = { Name = 'plg_01_hedgepush22a' }, - ['-152726644'] = { Name = 'plg_01_hedgepush22b_d' }, - ['-2056668604'] = { Name = 'plg_01_hedgepush22b_lod' }, - ['-2103173481'] = { Name = 'plg_01_hedgepush22b' }, - ['-880721772'] = { Name = 'plg_01_hedgepush23_slod' }, - ['121289761'] = { Name = 'plg_01_hedgepush23a_d' }, - ['1183138991'] = { Name = 'plg_01_hedgepush23a_lod' }, - ['-1409778265'] = { Name = 'plg_01_hedgepush23a' }, - ['1011557372'] = { Name = 'plg_01_hedgepush23b_d' }, - ['2114391844'] = { Name = 'plg_01_hedgepush23b_lod' }, - ['800949575'] = { Name = 'plg_01_hedgepush23b' }, - ['-1815131782'] = { Name = 'plg_01_hedgepush24_d' }, - ['670728849'] = { Name = 'plg_01_hedgepush24_lod' }, - ['1594759323'] = { Name = 'plg_01_hedgepush24' }, - ['-1893067277'] = { Name = 'plg_01_hedgepush25_d' }, - ['-553803484'] = { Name = 'plg_01_hedgepush25_lod' }, - ['1171777055'] = { Name = 'plg_01_hedgepush25' }, - ['-1939433776'] = { Name = 'plg_01_hedgepush28_d' }, - ['1448615657'] = { Name = 'plg_01_hedgepush28_lod' }, - ['897205604'] = { Name = 'plg_01_hedgepush28' }, - ['215830364'] = { Name = 'plg_01_hedgepush31a_d' }, - ['1502813941'] = { Name = 'plg_01_hedgepush31a_lod' }, - ['1806537383'] = { Name = 'plg_01_hedgepush31a' }, - ['-1939635093'] = { Name = 'plg_01_hedgepush31b_d' }, - ['1492145986'] = { Name = 'plg_01_hedgepush31b_lod' }, - ['2118072266'] = { Name = 'plg_01_hedgepush31b' }, - ['2072063320'] = { Name = 'plg_01_hedgepush34_slod' }, - ['-1441494761'] = { Name = 'plg_01_hedgepush34a_d' }, - ['1385065662'] = { Name = 'plg_01_hedgepush34a_lod' }, - ['253256330'] = { Name = 'plg_01_hedgepush34a' }, - ['-1747587042'] = { Name = 'plg_01_hedgepush34b_d' }, - ['648818976'] = { Name = 'plg_01_hedgepush34b_lod' }, - ['1207391303'] = { Name = 'plg_01_hedgepush34b' }, - ['-931186497'] = { Name = 'plg_01_hedgepush35_slod' }, - ['751182727'] = { Name = 'plg_01_hedgepush35a_d' }, - ['-1874125355'] = { Name = 'plg_01_hedgepush35a_lod' }, - ['-1712917855'] = { Name = 'plg_01_hedgepush35a' }, - ['-849658213'] = { Name = 'plg_01_hedgepush35b_d' }, - ['1103217253'] = { Name = 'plg_01_hedgepush35b_lod' }, - ['-1423403740'] = { Name = 'plg_01_hedgepush35b' }, - ['1869523448'] = { Name = 'plg_01_lgfnc1iref_' }, - ['-248439925'] = { Name = 'plg_01_lgfnc2iref_' }, - ['166862493'] = { Name = 'plg_01_ml_hedge_0_slod' }, - ['-131526851'] = { Name = 'plg_01_ml_hedge_01_d' }, - ['1075798954'] = { Name = 'plg_01_ml_hedge_01_lod' }, - ['-1361639440'] = { Name = 'plg_01_ml_hedge_01' }, - ['-1822413104'] = { Name = 'plg_01_ml_hedge_02_d' }, - ['-1254088801'] = { Name = 'plg_01_ml_hedge_02_lod' }, - ['1201944976'] = { Name = 'plg_01_ml_hedge_02' }, - ['1249930546'] = { Name = 'plg_01_ml_hedge_03_d' }, - ['-939756965'] = { Name = 'plg_01_ml_hedge_03_lod' }, - ['-1721803515'] = { Name = 'plg_01_ml_hedge_03' }, - ['2054865746'] = { Name = 'plg_01_ml_hedge_031' }, - ['-1255173224'] = { Name = 'plg_01_ml_hedge_04_d' }, - ['1588327595'] = { Name = 'plg_01_ml_hedge_04_lod' }, - ['-1555402533'] = { Name = 'plg_01_ml_hedge_04' }, - ['-1025819104'] = { Name = 'plg_01_ml_hedge_05_d' }, - ['134101942'] = { Name = 'plg_01_ml_hedge_05_lod' }, - ['1963693150'] = { Name = 'plg_01_ml_hedge_05' }, - ['-740223304'] = { Name = 'plg_01_ml_hedge_06_d' }, - ['-192100418'] = { Name = 'plg_01_ml_hedge_06_lod' }, - ['-138569280'] = { Name = 'plg_01_ml_hedge_06' }, - ['-215713474'] = { Name = 'plg_01_ml_hedge_07_d' }, - ['1670245211'] = { Name = 'plg_01_ml_hedge_07_lod' }, - ['159661389'] = { Name = 'plg_01_ml_hedge_07' }, - ['-853231067'] = { Name = 'plg_01_ml_hedge_08_d' }, - ['509365618'] = { Name = 'plg_01_ml_hedge_08_lod' }, - ['1450301227'] = { Name = 'plg_01_ml_hedge_08' }, - ['1295583172'] = { Name = 'plg_01_ml_hedge_09_d' }, - ['730429347'] = { Name = 'plg_01_ml_hedge_09_lod' }, - ['1697608870'] = { Name = 'plg_01_ml_hedge_09' }, - ['-527159101'] = { Name = 'plg_01_ml_hedge_1_slod' }, - ['1745541696'] = { Name = 'plg_01_ml_hedge_10_d' }, - ['-478736029'] = { Name = 'plg_01_ml_hedge_10_lod' }, - ['-176311264'] = { Name = 'plg_01_ml_hedge_10' }, - ['2096755470'] = { Name = 'plg_01_ml_hedge_11_d' }, - ['355504964'] = { Name = 'plg_01_ml_hedge_11_lod' }, - ['-454094077'] = { Name = 'plg_01_ml_hedge_11' }, - ['-974500673'] = { Name = 'plg_01_ml_hedge_12_d' }, - ['-1441274526'] = { Name = 'plg_01_ml_hedge_12_lod' }, - ['1104465105'] = { Name = 'plg_01_ml_hedge_12' }, - ['-1599234423'] = { Name = 'plg_01_ml_hedge_13_d' }, - ['-1221956669'] = { Name = 'plg_01_ml_hedge_13_lod' }, - ['796862502'] = { Name = 'plg_01_ml_hedge_13' }, - ['-1744768818'] = { Name = 'plg_01_ml_hedge_14_d' }, - ['-1347144117'] = { Name = 'plg_01_ml_hedge_14_lod' }, - ['-202395396'] = { Name = 'plg_01_ml_hedge_14' }, - ['-236147911'] = { Name = 'plg_01_ml_hedge_15_d' }, - ['-1937389169'] = { Name = 'plg_01_ml_hedge_15_lod' }, - ['97080495'] = { Name = 'plg_01_ml_hedge_15' }, - ['1727081184'] = { Name = 'plg_01_ml_hedge_16_d' }, - ['29050018'] = { Name = 'plg_01_ml_hedge_16_lod' }, - ['1091226421'] = { Name = 'plg_01_ml_hedge_16' }, - ['-997829602'] = { Name = 'plg_01_ml_hedge_17_d' }, - ['1125761721'] = { Name = 'plg_01_ml_hedge_17_lod' }, - ['1396010890'] = { Name = 'plg_01_ml_hedge_17' }, - ['946067728'] = { Name = 'plg_01_ml_hedge_18_d' }, - ['2022491586'] = { Name = 'plg_01_ml_hedge_18_lod' }, - ['-1162494327'] = { Name = 'plg_01_ml_hedge_18' }, - ['-956444150'] = { Name = 'plg_01_ml_hedge_19_d' }, - ['-296805014'] = { Name = 'plg_01_ml_hedge_19_lod' }, - ['-1127103807'] = { Name = 'plg_01_ml_hedge_19' }, - ['-1314719436'] = { Name = 'plg_01_ml_hedge_20_d' }, - ['149536328'] = { Name = 'plg_01_ml_hedge_20_lod' }, - ['-2060987810'] = { Name = 'plg_01_ml_hedge_20' }, - ['-1454022730'] = { Name = 'plg_01_ml_hedge_21_d' }, - ['-231625605'] = { Name = 'plg_01_ml_hedge_21_lod' }, - ['1944891368'] = { Name = 'plg_01_ml_hedge_21' }, - ['388425930'] = { Name = 'plg_01_ml_hedge_22_d' }, - ['-401033780'] = { Name = 'plg_01_ml_hedge_22_lod' }, - ['-229954397'] = { Name = 'plg_01_ml_hedge_22' }, - ['-1776570810'] = { Name = 'plg_01_ml_hedge_23_d' }, - ['-1821196456'] = { Name = 'plg_01_ml_hedge_23_lod' }, - ['-535263170'] = { Name = 'plg_01_ml_hedge_23' }, - ['408335847'] = { Name = 'plg_01_ml_hedge_25_d' }, - ['725678707'] = { Name = 'plg_01_ml_hedge_25_lod' }, - ['1015070993'] = { Name = 'plg_01_ml_hedge_25' }, - ['-1380443270'] = { Name = 'plg_01_ml_hedge_26_d' }, - ['-2112409332'] = { Name = 'plg_01_ml_hedge_26_lod' }, - ['-1153188203'] = { Name = 'plg_01_ml_hedge_26' }, - ['-2007034318'] = { Name = 'plg_01_ml_hedge_27_d' }, - ['-826390438'] = { Name = 'plg_01_ml_hedge_27_lod' }, - ['-1459807736'] = { Name = 'plg_01_ml_hedge_27' }, - ['1627546418'] = { Name = 'plg_01_ml_hedge_28_d' }, - ['-170251627'] = { Name = 'plg_01_ml_hedge_28_lod' }, - ['399177634'] = { Name = 'plg_01_ml_hedge_28' }, - ['2103601809'] = { Name = 'plg_01_ml_hedge_29_d' }, - ['961156167'] = { Name = 'plg_01_ml_hedge_29_lod' }, - ['92361487'] = { Name = 'plg_01_ml_hedge_29' }, - ['-429380169'] = { Name = 'plg_01_ml_hedge_30_d' }, - ['-493952491'] = { Name = 'plg_01_ml_hedge_30_lod' }, - ['686792007'] = { Name = 'plg_01_ml_hedge_30' }, - ['2092306547'] = { Name = 'plg_01_ml_hedge_31_d' }, - ['805218369'] = { Name = 'plg_01_ml_hedge_31_lod' }, - ['275239183'] = { Name = 'plg_01_ml_hedge_32_d' }, - ['-184167006'] = { Name = 'plg_01_ml_hedge_32_lod' }, - ['-2073897940'] = { Name = 'plg_01_ml_hedge_32' }, - ['-722380858'] = { Name = 'plg_01_ml_hedge_33_d' }, - ['569969206'] = { Name = 'plg_01_ml_hedge_33_lod' }, - ['1613794248'] = { Name = 'plg_01_ml_hedge_33' }, - ['-2022519538'] = { Name = 'plg_01_ml_hedge_slod' }, - ['1549507918'] = { Name = 'plg_01_ml_hedge_slod01' }, - ['-1976076027'] = { Name = 'plg_01_ml_hedge_slod02' }, - ['1104235804'] = { Name = 'plg_01_newfield_small_lod' }, - ['-1560465259'] = { Name = 'plg_01_newfield_small' }, - ['1712954028'] = { Name = 'plg_01_newfield_sml_slod' }, - ['-570290953'] = { Name = 'plg_01_newfield_sml_west_decal' }, - ['490826912'] = { Name = 'plg_01_newfield_sml_west_lod' }, - ['-419653276'] = { Name = 'plg_01_newfield_sml_west' }, - ['1190765642'] = { Name = 'plg_01_newfields_00_d' }, - ['1309887542'] = { Name = 'plg_01_newfields_00_d3' }, - ['-2115788026'] = { Name = 'plg_01_newfields_00' }, - ['1543154546'] = { Name = 'plg_01_newfields_003_decals' }, - ['-1186245224'] = { Name = 'plg_01_newfields_003_lod' }, - ['569842621'] = { Name = 'plg_01_newfields_003' }, - ['-944345132'] = { Name = 'plg_01_newfields_004_d2' }, - ['-1067126721'] = { Name = 'plg_01_newfields_004_lod' }, - ['1892828010'] = { Name = 'plg_01_newfields_004_lod001' }, - ['-1871742808'] = { Name = 'plg_01_newfields_004' }, - ['2038960811'] = { Name = 'plg_01_newfields_01_d2' }, - ['769485145'] = { Name = 'plg_01_newfields_01_decals' }, - ['-1847442685'] = { Name = 'plg_01_newfields_01' }, - ['1954643308'] = { Name = 'plg_01_newfields_020_d2' }, - ['540964333'] = { Name = 'plg_01_newfields_020_decals' }, - ['-1810718975'] = { Name = 'plg_01_newfields_020_lod' }, - ['-1335511464'] = { Name = 'plg_01_newfields_020' }, - ['511677070'] = { Name = 'plg_01_newfields_022' }, - ['-1133318739'] = { Name = 'plg_01_newfields_023_lod' }, - ['1621966836'] = { Name = 'plg_01_newfields_023_slod' }, - ['1421541124'] = { Name = 'plg_01_newfields_023' }, - ['-2103260942'] = { Name = 'plg_01_newfields_03_d2' }, - ['537669157'] = { Name = 'plg_01_newfields_03_decals' }, - ['-396298246'] = { Name = 'plg_01_newfields_03_lod' }, - ['-1002702385'] = { Name = 'plg_01_newfields_03_new' }, - ['-1468390100'] = { Name = 'plg_01_newfields_04_decal' }, - ['-592488292'] = { Name = 'plg_01_newfields_05' }, - ['-1686571798'] = { Name = 'plg_01_newfields_06_d4' }, - ['604938084'] = { Name = 'plg_01_newfields_06_decals' }, - ['-1979446670'] = { Name = 'plg_01_newfields_06_lod' }, - ['-360942538'] = { Name = 'plg_01_newfields_06' }, - ['-114617965'] = { Name = 'plg_01_newfields_07' }, - ['1348743348'] = { Name = 'plg_01_newfields_08_d2' }, - ['-621892736'] = { Name = 'plg_01_newfields_08_decals' }, - ['1190252873'] = { Name = 'plg_01_newfields_08_lod' }, - ['1881108745'] = { Name = 'plg_01_newfields_08_slod1' }, - ['400248563'] = { Name = 'plg_01_newfields_08' }, - ['668528366'] = { Name = 'plg_01_newfields_09' }, - ['-371010286'] = { Name = 'plg_01_newfields_10_decals' }, - ['-1210675193'] = { Name = 'plg_01_newfields_10' }, - ['206924349'] = { Name = 'plg_01_newfields_13_d1b' }, - ['600131496'] = { Name = 'plg_01_newfields_13_d2' }, - ['566493989'] = { Name = 'plg_01_newfields_13_lod' }, - ['26792102'] = { Name = 'plg_01_newfields_13_slod' }, - ['1268332406'] = { Name = 'plg_01_newfields_13' }, - ['-1782863560'] = { Name = 'plg_01_newfields_19_decal' }, - ['626008152'] = { Name = 'plg_01_newfields_b_lod' }, - ['-1384241385'] = { Name = 'plg_01_newfields_b' }, - ['-273320332'] = { Name = 'plg_01_newfields_ml_100_lod' }, - ['1547536298'] = { Name = 'plg_01_newfields_ml_100' }, - ['-1864442785'] = { Name = 'plg_01_newfields2_slod' }, - ['-1750486057'] = { Name = 'plg_01_nico_new' }, - ['-826571137'] = { Name = 'plg_01_pipe_a_lod' }, - ['-1026262315'] = { Name = 'plg_01_pipe_lod' }, - ['-1505889135'] = { Name = 'plg_01_plough_field_01_d' }, - ['-314420528'] = { Name = 'plg_01_plough_field_01_lod' }, - ['-1661509386'] = { Name = 'plg_01_plough_field_01' }, - ['-674955088'] = { Name = 'plg_01_plough_field_02_d' }, - ['-777390059'] = { Name = 'plg_01_plough_field_02_lod' }, - ['-1213515954'] = { Name = 'plg_01_plough_field_02_slod' }, - ['-1900362627'] = { Name = 'plg_01_plough_field_02' }, - ['1472328067'] = { Name = 'plg_01_props_combo0101_01_lod' }, - ['-199133255'] = { Name = 'plg_01_props_combo0101_slod' }, - ['65211705'] = { Name = 'plg_01_props_combo0102_01_lod' }, - ['558426351'] = { Name = 'plg_01_props_combo0102_slod' }, - ['-1799041668'] = { Name = 'plg_01_props_combo0103_01_lod' }, - ['1785634440'] = { Name = 'plg_01_props_combo0103_slod' }, - ['-367751100'] = { Name = 'plg_01_props_combo0105_01_lod' }, - ['-505150681'] = { Name = 'plg_01_props_combo0105_slod' }, - ['-415908415'] = { Name = 'plg_01_props_combo0107_01_lod' }, - ['-571504372'] = { Name = 'plg_01_props_combo0107_slod' }, - ['-188798036'] = { Name = 'plg_01_props_combo0108_01_lod' }, - ['925688682'] = { Name = 'plg_01_props_combo0108_slod' }, - ['-228870935'] = { Name = 'plg_01_props_combo0109_17_lod' }, - ['1838644921'] = { Name = 'plg_01_props_combo0109_18_lod' }, - ['-630972286'] = { Name = 'plg_01_props_combo0110_02_lod' }, - ['-1802714078'] = { Name = 'plg_01_props_combo0110_03_lod' }, - ['-1734767472'] = { Name = 'plg_01_props_combo0111_01_lod' }, - ['-672803352'] = { Name = 'plg_01_props_combo0111_slod' }, - ['281518649'] = { Name = 'plg_01_props_combo0113_01_lod' }, - ['-797905136'] = { Name = 'plg_01_props_combo0113_slod' }, - ['-519284608'] = { Name = 'plg_01_props_combo0114_01_lod' }, - ['341320456'] = { Name = 'plg_01_props_combo0114_02_lod' }, - ['-562811709'] = { Name = 'plg_01_props_combo0114_03_lod' }, - ['-1060750220'] = { Name = 'plg_01_props_combo0114_04_lod' }, - ['-626249560'] = { Name = 'plg_01_props_combo0114_05_lod' }, - ['1714771617'] = { Name = 'plg_01_props_combo0114_slod' }, - ['1384661741'] = { Name = 'plg_01_props_combo0202_28_lod' }, - ['-1889990624'] = { Name = 'plg_01_props_combo0203_01_lod' }, - ['984787315'] = { Name = 'plg_01_props_combo0203_02_lod' }, - ['-1319119928'] = { Name = 'plg_01_props_combo0203_slod' }, - ['-806328876'] = { Name = 'plg_01_props_combo0205_08_lod' }, - ['-2036970324'] = { Name = 'plg_01_props_combo0205_slod' }, - ['-300059301'] = { Name = 'plg_01_props_combo0502_22_lod' }, - ['-61003217'] = { Name = 'plg_01_props_combo0502_23_lod' }, - ['-795135886'] = { Name = 'plg_01_props_combo0502_24_lod' }, - ['890815671'] = { Name = 'plg_01_props_combo0505_16_lod' }, - ['623928960'] = { Name = 'plg_01_props_combo0505_20_lod' }, - ['-2049329705'] = { Name = 'plg_01_props_combo0505_25_lod' }, - ['635095162'] = { Name = 'plg_01_props_combo0505_26_lod' }, - ['-83047703'] = { Name = 'plg_01_props_combo0505_27_lod' }, - ['-1976739696'] = { Name = 'plg_01_props_combo0505_slod' }, - ['533048010'] = { Name = 'plg_01_props_combo0705_36_lod' }, - ['-477983664'] = { Name = 'plg_01_props_combo0804_33_lod' }, - ['-2077351609'] = { Name = 'plg_01_props_combo0903_02_lod' }, - ['-1653082454'] = { Name = 'plg_01_props_combo0903_04_lod' }, - ['-1757064678'] = { Name = 'plg_01_props_combo0903_slod' }, - ['-352489622'] = { Name = 'plg_01_props_combo0905_08_lod' }, - ['1465452143'] = { Name = 'plg_01_props_combo0905_09_lod' }, - ['2136093723'] = { Name = 'plg_01_props_combo811_08_lod' }, - ['-983344908'] = { Name = 'plg_01_props_combo813_21_lod' }, - ['1024758452'] = { Name = 'plg_01_props_combo813_22_lod' }, - ['-321785099'] = { Name = 'plg_01_props_dt_029' }, - ['2076185375'] = { Name = 'plg_01_props_dt_043' }, - ['70886768'] = { Name = 'plg_01_props_dt_050' }, - ['1199549663'] = { Name = 'plg_01_props_dt_060' }, - ['-1110369932'] = { Name = 'plg_01_props_dt_063' }, - ['1940653355'] = { Name = 'plg_01_props_dt_067' }, - ['-1089463022'] = { Name = 'plg_01_props_dt_074' }, - ['233978877'] = { Name = 'plg_01_props_dt_080' }, - ['-1805759977'] = { Name = 'plg_01_props_dt_096' }, - ['1641045147'] = { Name = 'plg_01_props_dt_105' }, - ['2146932885'] = { Name = 'plg_01_props_dt_110' }, - ['677523156'] = { Name = 'plg_01_props_dt_148' }, - ['-644967578'] = { Name = 'plg_01_props_dt_167' }, - ['939180771'] = { Name = 'plg_01_props_dt_17' }, - ['472651620'] = { Name = 'plg_01_props_dt_178' }, - ['-1989481676'] = { Name = 'plg_01_props_dt_190' }, - ['145779141'] = { Name = 'plg_01_props_dt_197' }, - ['-813749607'] = { Name = 'plg_01_props_dt_207' }, - ['-679232006'] = { Name = 'plg_01_props_dt_217' }, - ['2131823898'] = { Name = 'plg_01_props_dt_219' }, - ['-1561735341'] = { Name = 'plg_01_props_dt_222' }, - ['-1727054142'] = { Name = 'plg_01_props_dt_234' }, - ['1667241445'] = { Name = 'plg_01_props_dt_260' }, - ['-940056809'] = { Name = 'plg_01_props_dt_263' }, - ['-1439980673'] = { Name = 'plg_01_props_dt_264' }, - ['1830332914'] = { Name = 'plg_01_props_dt_277' }, - ['-313049515'] = { Name = 'plg_01_props_dt_28' }, - ['1098305431'] = { Name = 'plg_01_props_dt_281' }, - ['-2077338363'] = { Name = 'plg_01_props_dt_288' }, - ['2012782971'] = { Name = 'plg_01_props_dtr1_002' }, - ['-830322711'] = { Name = 'plg_01_props_dtr1_024' }, - ['-1779902793'] = { Name = 'plg_01_props_dtr1_028' }, - ['-853213731'] = { Name = 'plg_01_props_dtr2_042' }, - ['-805633147'] = { Name = 'plg_01_props_dtr2_045' }, - ['-1819407920'] = { Name = 'plg_01_props_dtr2_053' }, - ['-1266165927'] = { Name = 'plg_01_props_l_014' }, - ['-817656624'] = { Name = 'plg_01_props_l_016' }, - ['-635329908'] = { Name = 'plg_01_props_l_017' }, - ['-728588290'] = { Name = 'plg_01_props_missioncut_01_lod' }, - ['-1756532050'] = { Name = 'plg_01_props_missioncut_02_lod' }, - ['2086042080'] = { Name = 'plg_01_rdside_bale_lod' }, - ['-44036385'] = { Name = 'plg_01_rdside_barn_01_bale_d' }, - ['1620197581'] = { Name = 'plg_01_rdside_barn_01_bale' }, - ['104863745'] = { Name = 'plg_01_rdside_barn_01_baleedge' }, - ['-1317003766'] = { Name = 'plg_01_rdside_barn_01_d20' }, - ['-2130508683'] = { Name = 'plg_01_rdside_barn_01_gnd_d' }, - ['607166379'] = { Name = 'plg_01_rdside_barn_01_hedge_d' }, - ['169501508'] = { Name = 'plg_01_rdside_barn_01_hedge' }, - ['1186805405'] = { Name = 'plg_01_rdside_barn_20' }, - ['1458833311'] = { Name = 'plg_01_rdsidebale_lod' }, - ['493339308'] = { Name = 'plg_01_rdsidebarn_01_edge' }, - ['-173122791'] = { Name = 'plg_01_rdsidebarn_02_bales_d' }, - ['2115732618'] = { Name = 'plg_01_rdsidebarn_02_bales_gnd' }, - ['-1263493914'] = { Name = 'plg_01_rdsidebarn_02_bales' }, - ['516678120'] = { Name = 'plg_01_rdsidebarn_02_d' }, - ['-1759508677'] = { Name = 'plg_01_rdsidebarn_02_lod' }, - ['1035375927'] = { Name = 'plg_01_rdsidebarn_02_slod' }, - ['533203258'] = { Name = 'plg_01_rdsidebarn_02' }, - ['-1323187134'] = { Name = 'plg_01_river_field_south_lod' }, - ['1006548358'] = { Name = 'plg_01_river_field_south_slod' }, - ['2031157366'] = { Name = 'plg_01_river_field_south' }, - ['181948213'] = { Name = 'plg_01_river_fld_decals' }, - ['1132953862'] = { Name = 'plg_01_rock' }, - ['963220703'] = { Name = 'plg_01_rocksflat' }, - ['-414979326'] = { Name = 'plg_01_roxside' }, - ['-1041278568'] = { Name = 'plg_01_shadow1' }, - ['-858468290'] = { Name = 'plg_01_slod' }, - ['724068502'] = { Name = 'plg_01_trafficl002' }, - ['1135352221'] = { Name = 'plg_01_trafficl005' }, - ['1728962660'] = { Name = 'plg_01_trafficl007' }, - ['-1650305466'] = { Name = 'plg_01riverpart00_lod' }, - ['1026370802'] = { Name = 'plg_01riverpart02_lod' }, - ['-1786864579'] = { Name = 'plg_01riverpart03_lod' }, - ['873832954'] = { Name = 'plg_01riversect00' }, - ['-1526365236'] = { Name = 'plg_01riversect02' }, - ['384624553'] = { Name = 'plg_01riversect03' }, - ['2093942603'] = { Name = 'plg_02_dist_007_lod' }, - ['-1929139903'] = { Name = 'plg_02_dist_007' }, - ['2067932817'] = { Name = 'plg_02_dist_008_lod' }, - ['2134445484'] = { Name = 'plg_02_dist_008' }, - ['-1132693804'] = { Name = 'plg_02_dist_01_lod' }, - ['-540250604'] = { Name = 'plg_02_dist_01' }, - ['-836116783'] = { Name = 'plg_02_dist_02_lod' }, - ['-831927473'] = { Name = 'plg_02_dist_02' }, - ['-625210'] = { Name = 'plg_02_dist_03_lod' }, - ['-1569656138'] = { Name = 'plg_02_dist_03' }, - ['-1063814445'] = { Name = 'plg_02_dist_ml_01_lod' }, - ['-1741445559'] = { Name = 'plg_02_dist_ml_01' }, - ['407971214'] = { Name = 'plg_02_dist_ml_02_lod' }, - ['-428490036'] = { Name = 'plg_02_dist_ml_02' }, - ['1710974121'] = { Name = 'plg_02_dist_ml_03_lod' }, - ['1286836042'] = { Name = 'plg_02_dist_ml_03' }, - ['1665136347'] = { Name = 'plg_02_dist_ml_04_lod' }, - ['1495935031'] = { Name = 'plg_02_dist_ml_04' }, - ['370568754'] = { Name = 'plg_02_dist_west_001_lod' }, - ['-149379519'] = { Name = 'plg_02_dist_west_001' }, - ['628418709'] = { Name = 'plg_02_dist_west_002_lod' }, - ['-446823732'] = { Name = 'plg_02_dist_west_002' }, - ['386576658'] = { Name = 'plg_02_dist_west_003_lod' }, - ['-16599535'] = { Name = 'plg_02_dist_west_003' }, - ['-1294631342'] = { Name = 'plg_02_dist_west_004_lod' }, - ['-314043748'] = { Name = 'plg_02_dist_west_004' }, - ['1552789555'] = { Name = 'plg_02_disttrees_02' }, - ['2051337121'] = { Name = 'plg_02_disttrees_03' }, - ['-827222919'] = { Name = 'plg_02_disttrees_04' }, - ['-588304140'] = { Name = 'plg_02_disttrees_05' }, - ['1096120767'] = { Name = 'plg_02_disttrees_07' }, - ['-107189678'] = { Name = 'plg_02_disttrees_08' }, - ['-1593803832'] = { Name = 'plg_02_disttrees_10' }, - ['1001730403'] = { Name = 'plg_02_disttrees_12' }, - ['801610120'] = { Name = 'plg_02_disttrees_13' }, - ['1472948623'] = { Name = 'plg_02_disttrees_14' }, - ['1232850160'] = { Name = 'plg_02_disttrees_15' }, - ['-214622108'] = { Name = 'plg_02_disttrees_16' }, - ['-760389811'] = { Name = 'plg_02_disttrees_18' }, - ['-520094734'] = { Name = 'plg_02_disttrees_19' }, - ['783521868'] = { Name = 'plg_02_disttrees_20' }, - ['1089354945'] = { Name = 'plg_02_disttrees_21' }, - ['1265062323'] = { Name = 'plg_02_disttrees_22' }, - ['1571616318'] = { Name = 'plg_02_disttrees_23' }, - ['2063806750'] = { Name = 'plg_02_disttrees_24' }, - ['1804672157'] = { Name = 'plg_02_fence_track1' }, - ['-1696367799'] = { Name = 'plg_02_fence_track2' }, - ['-187289322'] = { Name = 'plg_02_mountain_01' }, - ['1038893889'] = { Name = 'plg_02_mountain_02' }, - ['1482192921'] = { Name = 'plg_02_mountain_03' }, - ['-400746548'] = { Name = 'plg_02_mountain_04' }, - ['-168774797'] = { Name = 'plg_02_mountain_05' }, - ['792348729'] = { Name = 'plg_02_props_temp' }, - ['617406285'] = { Name = 'plg_02_westdisttrees3' }, - ['-1667252929'] = { Name = 'plg_03_back_ovly' }, - ['2009407472'] = { Name = 'plg_03_bale_iref024' }, - ['1288672732'] = { Name = 'plg_03_bale' }, - ['2138509298'] = { Name = 'plg_03_bale01_lod' }, - ['342772625'] = { Name = 'plg_03_bale02_lod' }, - ['-1082363404'] = { Name = 'plg_03_bale02b_lod' }, - ['1981540230'] = { Name = 'plg_03_bale02c_lod' }, - ['-712611427'] = { Name = 'plg_03_bale03_lod' }, - ['-718642871'] = { Name = 'plg_03_barn001_lod' }, - ['615202506'] = { Name = 'plg_03_barn001' }, - ['1279475256'] = { Name = 'plg_03_barnovly001' }, - ['1101962579'] = { Name = 'plg_03_bespokerail' }, - ['-634083426'] = { Name = 'plg_03_bush_cs' }, - ['-90060616'] = { Name = 'plg_03_carpark_wall_lod' }, - ['-991719890'] = { Name = 'plg_03_carpark_wall' }, - ['-1108302560'] = { Name = 'plg_03_cbush_01' }, - ['-1405615697'] = { Name = 'plg_03_cbush_02' }, - ['-509711237'] = { Name = 'plg_03_cbush_03' }, - ['-807876368'] = { Name = 'plg_03_cbush_04' }, - ['997702403'] = { Name = 'plg_03_church_lod' }, - ['-1660476187'] = { Name = 'plg_03_church' }, - ['1096305097'] = { Name = 'plg_03_crypts_lod' }, - ['-1582666845'] = { Name = 'plg_03_decals_road' }, - ['-2012588507'] = { Name = 'plg_03_decals_road2' }, - ['-1739839152'] = { Name = 'plg_03_eastgate' }, - ['-1540538612'] = { Name = 'plg_03_em_slod' }, - ['-1478689000'] = { Name = 'plg_03_f_2x_lod' }, - ['991747046'] = { Name = 'plg_03_f_2x_lod01' }, - ['-850526134'] = { Name = 'plg_03_f_2x_lod02' }, - ['-562388281'] = { Name = 'plg_03_f_2x_lod03' }, - ['34957820'] = { Name = 'plg_03_f_2x_lod05' }, - ['-1748134546'] = { Name = 'plg_03_f_2x_lod08' }, - ['544121710'] = { Name = 'plg_03_f_2x_lod10' }, - ['387612991'] = { Name = 'plg_03_fence_c_lod' }, - ['1166920843'] = { Name = 'plg_03_fence_j_lod' }, - ['1926549193'] = { Name = 'plg_03_fence_l_lod' }, - ['-180055716'] = { Name = 'plg_03_fence_m_lod' }, - ['1537597810'] = { Name = 'plg_03_fence_n_lod' }, - ['1561800695'] = { Name = 'plg_03_fence' }, - ['-246605656'] = { Name = 'plg_03_field_east_lod' }, - ['-42566323'] = { Name = 'plg_03_field_east_ovly_a' }, - ['827581703'] = { Name = 'plg_03_field_east_ovly_b' }, - ['462666119'] = { Name = 'plg_03_field_east_ovly_c' }, - ['1351582474'] = { Name = 'plg_03_field_east' }, - ['2071619895'] = { Name = 'plg_03_field_west_b_lod' }, - ['162843384'] = { Name = 'plg_03_field_west_b' }, - ['-1092490060'] = { Name = 'plg_03_field_west_lod' }, - ['928253622'] = { Name = 'plg_03_field_west' }, - ['-58451859'] = { Name = 'plg_03_fncsec_besp' }, - ['1701524682'] = { Name = 'plg_03_fncsec_besp001' }, - ['376442900'] = { Name = 'plg_03_fncsec_besp10' }, - ['1663770254'] = { Name = 'plg_03_fncsec_besp3' }, - ['-2067799625'] = { Name = 'plg_03_fncsec_besp5' }, - ['670410780'] = { Name = 'plg_03_fncsec_besp7' }, - ['1534791462'] = { Name = 'plg_03_fncsec_besp9' }, - ['332308443'] = { Name = 'plg_03_fncsec_bsp' }, - ['-202333048'] = { Name = 'plg_03_fncsec_bspk_lod' }, - ['-146472397'] = { Name = 'plg_03_fncsec_bspk' }, - ['508007395'] = { Name = 'plg_03_fncsec_ibesp4' }, - ['692959781'] = { Name = 'plg_03_fncsec' }, - ['-940639402'] = { Name = 'plg_03_foliage_o' }, - ['-2034604468'] = { Name = 'plg_03_foliage002' }, - ['863897858'] = { Name = 'plg_03_foliage01' }, - ['778694522'] = { Name = 'plg_03_foliage1_lod' }, - ['-309787927'] = { Name = 'plg_03_foliage2_lod' }, - ['1355047645'] = { Name = 'plg_03_grave_covered_lod' }, - ['182214304'] = { Name = 'plg_03_grave_covered' }, - ['-626037186'] = { Name = 'plg_03_grave_dug_lod' }, - ['245161238'] = { Name = 'plg_03_grave_dug' }, - ['1522853652'] = { Name = 'plg_03_grave_funeral' }, - ['1320632924'] = { Name = 'plg_03_grave_lod' }, - ['20866338'] = { Name = 'plg_03_grave' }, - ['253499342'] = { Name = 'plg_03_graveb_lod' }, - ['1126973471'] = { Name = 'plg_03_graveb' }, - ['1757105101'] = { Name = 'plg_03_graverail001' }, - ['-2098673288'] = { Name = 'plg_03_graves_section_0' }, - ['1448395803'] = { Name = 'plg_03_graves_section_01_lod' }, - ['361051797'] = { Name = 'plg_03_graves_section_01' }, - ['-1686110125'] = { Name = 'plg_03_graves_section_02_lod' }, - ['456901122'] = { Name = 'plg_03_graves_section_02' }, - ['-499604809'] = { Name = 'plg_03_graves_section_03_lod' }, - ['791603688'] = { Name = 'plg_03_graves_section_03' }, - ['174760024'] = { Name = 'plg_03_graves_section_04' }, - ['2137605589'] = { Name = 'plg_03_graves_sl_03_lod' }, - ['1179728976'] = { Name = 'plg_03_graves_sl_03' }, - ['1576900079'] = { Name = 'plg_03_graves_sl_n_04' }, - ['-880781787'] = { Name = 'plg_03_ground_shed_lod' }, - ['1739587515'] = { Name = 'plg_03_ground_shed' }, - ['1208518257'] = { Name = 'plg_03_ground007_lod' }, - ['602197453'] = { Name = 'plg_03_ground007' }, - ['-964981'] = { Name = 'plg_03_ground01_back' }, - ['452575684'] = { Name = 'plg_03_ground01_lod' }, - ['175296053'] = { Name = 'plg_03_ground01' }, - ['-1157609895'] = { Name = 'plg_03_ground04_2_lod' }, - ['2000229415'] = { Name = 'plg_03_ground04_2' }, - ['1009988021'] = { Name = 'plg_03_ground04' }, - ['-641783316'] = { Name = 'plg_03_ground1_lod' }, - ['516810711'] = { Name = 'plg_03_ground1' }, - ['-327984951'] = { Name = 'plg_03_ground2_lod' }, - ['1057630179'] = { Name = 'plg_03_ground2' }, - ['1469059867'] = { Name = 'plg_03_ground3_lod' }, - ['-956186923'] = { Name = 'plg_03_guttering_lod' }, - ['60200978'] = { Name = 'plg_03_guttering' }, - ['633085181'] = { Name = 'plg_03_hedga_lod' }, - ['1415124595'] = { Name = 'plg_03_hedge01' }, - ['805307282'] = { Name = 'plg_03_hedge01a_lod' }, - ['1968173218'] = { Name = 'plg_03_hedge01b_lod' }, - ['-1370596411'] = { Name = 'plg_03_hedge01b' }, - ['1308200150'] = { Name = 'plg_03_hedge05_lod' }, - ['-1853647548'] = { Name = 'plg_03_hedge05a' }, - ['-925412197'] = { Name = 'plg_03_hedge05c_split_lod' }, - ['39427458'] = { Name = 'plg_03_hedge05c_split' }, - ['1760198347'] = { Name = 'plg_03_hedge06_ml_lod' }, - ['262122300'] = { Name = 'plg_03_hedge06_ml' }, - ['-706189435'] = { Name = 'plg_03_hej_lod01' }, - ['181948776'] = { Name = 'plg_03_hej_lod02' }, - ['-860113961'] = { Name = 'plg_03_hej' }, - ['-70210432'] = { Name = 'plg_03_hej01' }, - ['-309915667'] = { Name = 'plg_03_hej02' }, - ['2146553893'] = { Name = 'plg_03_maingatenew_lod' }, - ['-2059585668'] = { Name = 'plg_03_maingatenew' }, - ['-542742753'] = { Name = 'plg_03_ml_bespin_lod' }, - ['-1979691237'] = { Name = 'plg_03_ml_bespin' }, - ['-1767307857'] = { Name = 'plg_03_ml_carpark_lod' }, - ['1862358318'] = { Name = 'plg_03_ml_carpark' }, - ['-1178850717'] = { Name = 'plg_03_ml_carpark2_lod' }, - ['883876272'] = { Name = 'plg_03_ml_carpark2' }, - ['1449333834'] = { Name = 'plg_03_ml_gate_01' }, - ['-399086629'] = { Name = 'plg_03_neverdeleteme' }, - ['534788335'] = { Name = 'plg_03_ovly_carpark' }, - ['-434582850'] = { Name = 'plg_03_ovly_crossing' }, - ['-1887587678'] = { Name = 'plg_03_ovly_foliage_carpark' }, - ['204556553'] = { Name = 'plg_03_ovly_railw_2' }, - ['-148612694'] = { Name = 'plg_03_ovly_railw' }, - ['-1257374171'] = { Name = 'plg_03_ovly_road' }, - ['-1507177503'] = { Name = 'plg_03_ovly04' }, - ['-740250072'] = { Name = 'plg_03_plg03_night_lod' }, - ['-2047988178'] = { Name = 'plg_03_plg03_night' }, - ['-1319886726'] = { Name = 'plg_03_props_combo01_01_lod' }, - ['1685669272'] = { Name = 'plg_03_props_combo02_01_lod' }, - ['-924214414'] = { Name = 'plg_03_props_combo02_02_lod' }, - ['1256226899'] = { Name = 'plg_03_props_combo03_01_lod' }, - ['-200219885'] = { Name = 'plg_03_props_combo03_02_lod' }, - ['-871958093'] = { Name = 'plg_03_props_combo03_03_lod' }, - ['-1193949214'] = { Name = 'plg_03_props_combo03_04_lod' }, - ['-686917108'] = { Name = 'plg_03_props_combo03_05_lod' }, - ['2082753908'] = { Name = 'plg_03_props_combo03_06_lod' }, - ['-1356890239'] = { Name = 'plg_03_props_combo03_08_lod' }, - ['-703656429'] = { Name = 'plg_03_props_combo03_09_lod' }, - ['-855994283'] = { Name = 'plg_03_props_gs_00_lod' }, - ['-1458644144'] = { Name = 'plg_03_props_gs_01_lod' }, - ['2070038520'] = { Name = 'plg_03_props_gs_02_lod' }, - ['164618499'] = { Name = 'plg_03_props_gs_03_lod' }, - ['-145753217'] = { Name = 'plg_03_props_gs_04_lod' }, - ['-1230803540'] = { Name = 'plg_03_props_gs_05_lod' }, - ['1803009660'] = { Name = 'plg_03_props_gs_06_lod' }, - ['-1970205845'] = { Name = 'plg_03_props_gs_07_lod' }, - ['296799822'] = { Name = 'plg_03_props_gs_08_lod' }, - ['972779133'] = { Name = 'plg_03_props_gs_09_lod' }, - ['1833124671'] = { Name = 'plg_03_props_gs_10_lod' }, - ['-1949278168'] = { Name = 'plg_03_props_gs_11_lod' }, - ['1309768609'] = { Name = 'plg_03_props_gs_12_lod' }, - ['239606818'] = { Name = 'plg_03_props_gs_13_lod' }, - ['1270330989'] = { Name = 'plg_03_props_gs_14_lod' }, - ['181670506'] = { Name = 'plg_03_props_gs_15_lod' }, - ['-1147007169'] = { Name = 'plg_03_props_gs_16_lod' }, - ['-1164898420'] = { Name = 'plg_03_props_gs_17_lod' }, - ['-1753408870'] = { Name = 'plg_03_props_gs_18_lod' }, - ['1371908414'] = { Name = 'plg_03_props_gs_19_lod' }, - ['-1774937005'] = { Name = 'plg_03_props_gs_20_lod' }, - ['-358515230'] = { Name = 'plg_03_props_gs_21_lod' }, - ['-1936219959'] = { Name = 'plg_03_props_gs_22_lod' }, - ['1397994711'] = { Name = 'plg_03_props_gs_23_lod' }, - ['1923831213'] = { Name = 'plg_03_props_gs_24_lod' }, - ['1125253733'] = { Name = 'plg_03_props_gs_25_lod' }, - ['-1477732596'] = { Name = 'plg_03_props_gs_26_lod' }, - ['-326163309'] = { Name = 'plg_03_props_gs_27_lod' }, - ['1397206805'] = { Name = 'plg_03_railembox' }, - ['1773236014'] = { Name = 'plg_03_railembox001' }, - ['1475136421'] = { Name = 'plg_03_railembox002' }, - ['91104929'] = { Name = 'plg_03_railembox003' }, - ['-654069133'] = { Name = 'plg_03_railschurch_lod' }, - ['-70675832'] = { Name = 'plg_03_railschurch' }, - ['-1127970865'] = { Name = 'plg_03_railschurch2_lod' }, - ['-396992522'] = { Name = 'plg_03_railschurch2' }, - ['-1527365464'] = { Name = 'plg_03_railschurch2a_lod' }, - ['779337937'] = { Name = 'plg_03_railschurch2aa_lod' }, - ['-1110657925'] = { Name = 'plg_03_railschurch2aa' }, - ['-910096704'] = { Name = 'plg_03_side_ground_lod' }, - ['-1373194521'] = { Name = 'plg_03_side_ground' }, - ['-105889249'] = { Name = 'plg_03_sign_lod' }, - ['-282045546'] = { Name = 'plg_03_sign' }, - ['-1419446761'] = { Name = 'plg_03_slod1_a' }, - ['2115148659'] = { Name = 'plg_03_slod1_b' }, - ['-2000703283'] = { Name = 'plg_03_slod1_c' }, - ['1246241871'] = { Name = 'plg_03_spx1' }, - ['1005750180'] = { Name = 'plg_03_spx2' }, - ['650337606'] = { Name = 'plg_03_spx3' }, - ['275787936'] = { Name = 'plg_03_spx4' }, - ['-1754546663'] = { Name = 'plg_03_spx5' }, - ['-2051269958'] = { Name = 'plg_03_spx6' }, - ['1838607084'] = { Name = 'plg_03_spx7' }, - ['860549279'] = { Name = 'plg_03_tomb_002_lod' }, - ['-1501871278'] = { Name = 'plg_03_tomb_003_lod' }, - ['714944358'] = { Name = 'plg_03_tomb_004_lod' }, - ['254697501'] = { Name = 'plg_03_tomb_004' }, - ['1916618929'] = { Name = 'plg_03_tomb_005_lod' }, - ['-430698903'] = { Name = 'plg_03_tomb_005' }, - ['-481361836'] = { Name = 'plg_03_tomb_006_lod' }, - ['132221767'] = { Name = 'plg_03_tomb_007_lod' }, - ['526690140'] = { Name = 'plg_03_tomb_008_lod' }, - ['-397173408'] = { Name = 'plg_03_tomb_009_lod' }, - ['1176264558'] = { Name = 'plg_03_tomb_01_lod' }, - ['-332312620'] = { Name = 'plg_03_tomb_010_lod' }, - ['943174483'] = { Name = 'plg_03_tomb_011' }, - ['173594518'] = { Name = 'plg_03_tomb_012' }, - ['-112446095'] = { Name = 'plg_03_tomb_013' }, - ['-888284939'] = { Name = 'plg_03_tomb_014' }, - ['-807279971'] = { Name = 'plg_03_tomb_015' }, - ['-1307138297'] = { Name = 'plg_03_tomb_017' }, - ['-2082190685'] = { Name = 'plg_03_tomb_018' }, - ['-1776095456'] = { Name = 'plg_03_tomb_019' }, - ['210498986'] = { Name = 'plg_03_tombs_main_lod' }, - ['-1144691499'] = { Name = 'plg_03_tombs_main_n_lod' }, - ['358989057'] = { Name = 'plg_03_track_decal' }, - ['-1354723816'] = { Name = 'plg_03_track_decal01' }, - ['-1116263803'] = { Name = 'plg_03_track_decal02' }, - ['543551577'] = { Name = 'plg_03_track_decal03' }, - ['311645364'] = { Name = 'plg_03_track_decal04' }, - ['1156757874'] = { Name = 'plg_03_track_decal05' }, - ['-1289426465'] = { Name = 'plg_03_track_west01_lod' }, - ['2113536841'] = { Name = 'plg_03_track_west01' }, - ['-1073626832'] = { Name = 'plg_03_track_west01a' }, - ['251911013'] = { Name = 'plg_03_track_west01aa_lod' }, - ['-795778481'] = { Name = 'plg_03_track_west01b' }, - ['1323385927'] = { Name = 'plg_03_track_west02_lod' }, - ['-1733412687'] = { Name = 'plg_03_track_west02' }, - ['-71932130'] = { Name = 'plg_03_track_west02a_lod' }, - ['-1786811776'] = { Name = 'plg_03_track_west02a' }, - ['-1585270598'] = { Name = 'plg_03_traffic_lights' }, - ['2018876517'] = { Name = 'plg_03_wallfoliage' }, - ['1039054498'] = { Name = 'plg_03_wallsteps_lod' }, - ['-768773627'] = { Name = 'plg_03_wallsteps' }, - ['1575862089'] = { Name = 'plg_03_westgate' }, - ['-2100414940'] = { Name = 'plg_04_backdec' }, - ['-2110743083'] = { Name = 'plg_04_bale001' }, - ['-1740928073'] = { Name = 'plg_04_balesa_lod' }, - ['-1453578018'] = { Name = 'plg_04_balesb_lod' }, - ['1562467340'] = { Name = 'plg_04_balesc_lod' }, - ['-1862495550'] = { Name = 'plg_04_barn_grain_d' }, - ['1455544824'] = { Name = 'plg_04_barn_grain_lod' }, - ['708388784'] = { Name = 'plg_04_barn_grain' }, - ['-689239077'] = { Name = 'plg_04_barn_lod' }, - ['-25834296'] = { Name = 'plg_04_barn' }, - ['2045317817'] = { Name = 'plg_04_barnovly' }, - ['-437493279'] = { Name = 'plg_04_beaver001_lod' }, - ['-806469094'] = { Name = 'plg_04_beaver001' }, - ['-12508993'] = { Name = 'plg_04_beaver002' }, - ['-1174834763'] = { Name = 'plg_04_cover_up' }, - ['683548943'] = { Name = 'plg_04_farmhouse_lod' }, - ['-1470276119'] = { Name = 'plg_04_farmhouse' }, - ['553260760'] = { Name = 'plg_04_farmroad_decals' }, - ['-1014194905'] = { Name = 'plg_04_farmroad_grou' }, - ['216752863'] = { Name = 'plg_04_farmroad_ground_d' }, - ['-1183513292'] = { Name = 'plg_04_farmroad_ground_lod' }, - ['801202216'] = { Name = 'plg_04_farmroad_ground' }, - ['-408930346'] = { Name = 'plg_04_farmroad_groundb_lod' }, - ['1346068090'] = { Name = 'plg_04_farmroad_groundb' }, - ['326499201'] = { Name = 'plg_04_farmroadlinkroad_lod' }, - ['495975437'] = { Name = 'plg_04_farmroadlinkroad' }, - ['1865650726'] = { Name = 'plg_04_fence_lod' }, - ['-1790615662'] = { Name = 'plg_04_fence' }, - ['-385370314'] = { Name = 'plg_04_fence001' }, - ['-1308241331'] = { Name = 'plg_04_fence002_lod' }, - ['262243433'] = { Name = 'plg_04_fence002' }, - ['626487970'] = { Name = 'plg_04_fence004_lod' }, - ['-2071417'] = { Name = 'plg_04_fence004' }, - ['-1440094695'] = { Name = 'plg_04_fenceb_lod' }, - ['-1753951328'] = { Name = 'plg_04_fenceb' }, - ['888208977'] = { Name = 'plg_04_fencefront_lod' }, - ['337640238'] = { Name = 'plg_04_field_east_lod' }, - ['852395661'] = { Name = 'plg_04_field_east' }, - ['-1746177501'] = { Name = 'plg_04_field_run_d' }, - ['306541642'] = { Name = 'plg_04_field_west_lod' }, - ['-103024439'] = { Name = 'plg_04_field_west' }, - ['229178232'] = { Name = 'plg_04_fol1' }, - ['-83896794'] = { Name = 'plg_04_fol2' }, - ['-1012218377'] = { Name = 'plg_04_foliage_d' }, - ['174612768'] = { Name = 'plg_04_foliage_d2' }, - ['-1028283770'] = { Name = 'plg_04_foliagec_d' }, - ['1211927319'] = { Name = 'plg_04_foliagec_lod' }, - ['423840742'] = { Name = 'plg_04_foliagec' }, - ['1377519944'] = { Name = 'plg_04_groundovly' }, - ['-302404366'] = { Name = 'plg_04_haybales_d' }, - ['-795407005'] = { Name = 'plg_04_haybales_lod' }, - ['-1076124981'] = { Name = 'plg_04_haybales' }, - ['-248415201'] = { Name = 'plg_04_hedgerow_d' }, - ['-1774284455'] = { Name = 'plg_04_hedgerow_lod' }, - ['1646018701'] = { Name = 'plg_04_hedgerow' }, - ['-1806889860'] = { Name = 'plg_04_hedgerow2_d' }, - ['-1414819244'] = { Name = 'plg_04_hedgerow2_lod' }, - ['-431614893'] = { Name = 'plg_04_hedgerow2' }, - ['-864117396'] = { Name = 'plg_04_hi_res_lod' }, - ['382664714'] = { Name = 'plg_04_hi_res_mission_dcl' }, - ['1561570643'] = { Name = 'plg_04_hi_res_mission' }, - ['472354421'] = { Name = 'plg_04_lights' }, - ['-2030181816'] = { Name = 'plg_04_literef' }, - ['-422418051'] = { Name = 'plg_04_literef001' }, - ['-735624153'] = { Name = 'plg_04_literef002' }, - ['-517448147'] = { Name = 'plg_04_literef003' }, - ['1529261682'] = { Name = 'plg_04_mainground_lod' }, - ['-679471906'] = { Name = 'plg_04_mainground' }, - ['-1895291070'] = { Name = 'plg_04_mainground002' }, - ['694045060'] = { Name = 'plg_04_mainground2_lod' }, - ['1737986405'] = { Name = 'plg_04_neverdeleteme' }, - ['407501211'] = { Name = 'plg_04_outbuilding_lod' }, - ['649707875'] = { Name = 'plg_04_outbuilding' }, - ['-29052228'] = { Name = 'plg_04_props_combo01_01_lod' }, - ['-1592832602'] = { Name = 'plg_04_props_combo02_01_lod' }, - ['1100777419'] = { Name = 'plg_04_props_combo03_01_lod' }, - ['1022177307'] = { Name = 'plg_04_props_combo03_02_lod' }, - ['1429338625'] = { Name = 'plg_04_props_combo03_03_lod' }, - ['634232612'] = { Name = 'plg_04_props_combo03_04_lod' }, - ['1945585244'] = { Name = 'plg_04_props_combo03_05_lod' }, - ['1722616465'] = { Name = 'plg_04_props_combo03_06_lod' }, - ['64273633'] = { Name = 'plg_04_props_combo04_01_lod' }, - ['1109731540'] = { Name = 'plg_04_props_combo04_02_lod' }, - ['173175106'] = { Name = 'plg_04_props_sgllod' }, - ['-967607012'] = { Name = 'plg_04_props_sig_lod' }, - ['-1118347705'] = { Name = 'plg_04_props_tree_l2' }, - ['-12144435'] = { Name = 'plg_04_props_treeend' }, - ['1467598435'] = { Name = 'plg_04_props_treest' }, - ['-2021285365'] = { Name = 'plg_04_propstree_l1' }, - ['-428735328'] = { Name = 'plg_04_q' }, - ['-1779701155'] = { Name = 'plg_04_rd_side_area_lod' }, - ['-625709798'] = { Name = 'plg_04_rd_side_area_ovly' }, - ['-1996878492'] = { Name = 'plg_04_rd_side_area_slod' }, - ['-1889823384'] = { Name = 'plg_04_rd_side_area' }, - ['1825474576'] = { Name = 'plg_04_shed_lod' }, - ['-1504884582'] = { Name = 'plg_04_shed' }, - ['559086037'] = { Name = 'plg_04_silolights' }, - ['-2047848956'] = { Name = 'plg_04_slod_new' }, - ['1613216772'] = { Name = 'plg_04_slod_new01' }, - ['-1250924908'] = { Name = 'plg_04_slod_new02' }, - ['-2069461759'] = { Name = 'plg_04_slod_new03' }, - ['1556592852'] = { Name = 'plg_04_slod1' }, - ['893320663'] = { Name = 'plg_04_snowveg01_lod' }, - ['-803181202'] = { Name = 'plg_04_snowveg01' }, - ['-448304238'] = { Name = 'plg_04_snowveg02_lod' }, - ['1341844769'] = { Name = 'plg_04_snowveg02' }, - ['1139628350'] = { Name = 'plg_04_tracks1_d' }, - ['565485910'] = { Name = 'plg_04_tracks1_lod' }, - ['1655838095'] = { Name = 'plg_04_tracks1' }, - ['-2143014787'] = { Name = 'plg_04_tracks2_d' }, - ['-1448725447'] = { Name = 'plg_04_tracks2_lod' }, - ['-1115993108'] = { Name = 'plg_04_tracks2' }, - ['-1614599617'] = { Name = 'plg_04_tracks3_d' }, - ['-975489601'] = { Name = 'plg_04_tracks3_lod' }, - ['-1353666665'] = { Name = 'plg_04_tracks3' }, - ['-701774470'] = { Name = 'plg_04_tracks4_d' }, - ['2045331060'] = { Name = 'plg_04_tracks4_lod' }, - ['-1851952091'] = { Name = 'plg_04_tracks4' }, - ['-404087886'] = { Name = 'plg_04_trafficl' }, - ['-729127685'] = { Name = 'plg_05_anotherwall_lod' }, - ['-1040365409'] = { Name = 'plg_05_anotherwall' }, - ['521458610'] = { Name = 'plg_05_cinema_em_lod' }, - ['1586860197'] = { Name = 'plg_05_cinema_em' }, - ['-330788083'] = { Name = 'plg_05_cinema_lod' }, - ['1171573972'] = { Name = 'plg_05_cinema' }, - ['1249232878'] = { Name = 'plg_05_comp_01_gnd_lod' }, - ['542026377'] = { Name = 'plg_05_comp_01_gnd' }, - ['330001424'] = { Name = 'plg_05_corn_wall1_decls' }, - ['943958113'] = { Name = 'plg_05_corn_wall1_lod' }, - ['-1274449700'] = { Name = 'plg_05_corn_wall1' }, - ['1580054526'] = { Name = 'plg_05_di_bui_01_em' }, - ['2084180860'] = { Name = 'plg_05_di_bui_01' }, - ['-1259054181'] = { Name = 'plg_05_dis_bui2_em' }, - ['237065936'] = { Name = 'plg_05_disbl2_em_lod' }, - ['480158627'] = { Name = 'plg_05_dist_build_01_lod' }, - ['-1954316258'] = { Name = 'plg_05_dist_build2_lod' }, - ['-1553173311'] = { Name = 'plg_05_dist_build2' }, - ['-704945600'] = { Name = 'plg_05_ds_bil_em_lod' }, - ['693494035'] = { Name = 'plg_05_em_slod_a' }, - ['156279049'] = { Name = 'plg_05_em_slod_c' }, - ['-939319701'] = { Name = 'plg_05_em_slod_f' }, - ['-770100585'] = { Name = 'plg_05_em_slod_g' }, - ['-1681078785'] = { Name = 'plg_05_em_slod_i' }, - ['1779495224'] = { Name = 'plg_05_foliage_ml_decals' }, - ['1332656812'] = { Name = 'plg_05_foliage009_decals' }, - ['269120979'] = { Name = 'plg_05_foliage011_decals' }, - ['347078363'] = { Name = 'plg_05_foliage012_decals' }, - ['-1806445115'] = { Name = 'plg_05_foliage014_decals' }, - ['1196880607'] = { Name = 'plg_05_foliage014_lod' }, - ['-1649318197'] = { Name = 'plg_05_foliage014' }, - ['1014268976'] = { Name = 'plg_05_foliage017_lod' }, - ['139887618'] = { Name = 'plg_05_ground10_lod' }, - ['429718811'] = { Name = 'plg_05_ground10' }, - ['1385547710'] = { Name = 'plg_05_long_build_dec' }, - ['2059467733'] = { Name = 'plg_05_long_build_em_lod' }, - ['-2039961730'] = { Name = 'plg_05_long_build_em' }, - ['-457518598'] = { Name = 'plg_05_long_build_lod' }, - ['1433876189'] = { Name = 'plg_05_long_build' }, - ['1594580053'] = { Name = 'plg_05_lroad_03' }, - ['898713214'] = { Name = 'plg_05_lud_sign_lod' }, - ['-95829455'] = { Name = 'plg_05_lud_sign' }, - ['1287404635'] = { Name = 'plg_05_lud_wd_dec' }, - ['389439247'] = { Name = 'plg_05_lud_wd_em' }, - ['882274073'] = { Name = 'plg_05_lud_wood_bld' }, - ['917685800'] = { Name = 'plg_05_m_road_02_decls' }, - ['1355196420'] = { Name = 'plg_05_m_road_02_decls2' }, - ['-1424565085'] = { Name = 'plg_05_m_road_02_decls3' }, - ['-1201932499'] = { Name = 'plg_05_m_road_02_decls4' }, - ['-1903025250'] = { Name = 'plg_05_m_road_02_decls5' }, - ['-1603156131'] = { Name = 'plg_05_m_road_02_decls6' }, - ['-231970095'] = { Name = 'plg_05_m_road_02_decls7' }, - ['-2082075066'] = { Name = 'plg_05_m_road_02_decls8' }, - ['-709381656'] = { Name = 'plg_05_m_road_02_decls9' }, - ['-1482517398'] = { Name = 'plg_05_mid_build_lod' }, - ['1232237762'] = { Name = 'plg_05_mid_build' }, - ['321493675'] = { Name = 'plg_05_ml_w_house2_lod' }, - ['1649889542'] = { Name = 'plg_05_ml_w_house2' }, - ['-518625432'] = { Name = 'plg_05_neverdeleteme' }, - ['-969239530'] = { Name = 'plg_05_props_combo01_01_lod' }, - ['-2132216392'] = { Name = 'plg_05_props_combo02_01_lod' }, - ['-642140384'] = { Name = 'plg_05_props_combo02_02_lod' }, - ['1935256849'] = { Name = 'plg_05_props_combo03_01_lod' }, - ['1796229737'] = { Name = 'plg_05_props_combo04_01_lod' }, - ['901785457'] = { Name = 'plg_05_props_combo05_01_lod' }, - ['-2118815221'] = { Name = 'plg_05_props_combo05_02_lod' }, - ['1884042535'] = { Name = 'plg_05_props_combo05_03_lod' }, - ['-1408950574'] = { Name = 'plg_05_props_combo05_04_lod' }, - ['426301180'] = { Name = 'plg_05_props_combo05_05_lod' }, - ['379805346'] = { Name = 'plg_05_props_combo05_06_lod' }, - ['1284734339'] = { Name = 'plg_05_props_combo05_07_lod' }, - ['-157902168'] = { Name = 'plg_05_props_combo05_08_lod' }, - ['-2132413317'] = { Name = 'plg_05_props_combo05_09_lod' }, - ['134634008'] = { Name = 'plg_05_props_combo06_01_lod' }, - ['-734878262'] = { Name = 'plg_05_props_combo06_02_lod' }, - ['-1331488207'] = { Name = 'plg_05_props_combo06_03_lod' }, - ['-458865773'] = { Name = 'plg_05_props_combo06_04_lod' }, - ['-1521780019'] = { Name = 'plg_05_props_combo06_05_lod' }, - ['-1607207695'] = { Name = 'plg_05_props_l_001' }, - ['1764281493'] = { Name = 'plg_05_props_trucklod' }, - ['928650092'] = { Name = 'plg_05_props_trucklod01' }, - ['25241523'] = { Name = 'plg_05_props_trucklod02' }, - ['1340884112'] = { Name = 'plg_05_props_trucklod03' }, - ['1918142816'] = { Name = 'plg_05_props_trucklod04' }, - ['-2072760929'] = { Name = 'plg_05_props_trucklod05' }, - ['-238273684'] = { Name = 'plg_05_props_truckslod' }, - ['-1820685463'] = { Name = 'plg_05_props_truckslod01' }, - ['-1473137449'] = { Name = 'plg_05_props_truckslod02' }, - ['297534126'] = { Name = 'plg_05_rail_wall_01_lod' }, - ['1430578792'] = { Name = 'plg_05_rail_wall_01' }, - ['-1169215725'] = { Name = 'plg_05_rail_wall_02_lod' }, - ['-618630639'] = { Name = 'plg_05_rail_wall_02' }, - ['-2061106766'] = { Name = 'plg_05_rail_wall_03_d' }, - ['1247156620'] = { Name = 'plg_05_rail_wall_03_lod' }, - ['-1386113388'] = { Name = 'plg_05_rail_wall_03' }, - ['-1373483339'] = { Name = 'plg_05_railfiz' }, - ['-190197197'] = { Name = 'plg_05_randbuild_em' }, - ['-1546786103'] = { Name = 'plg_05_randbuild_lod' }, - ['-1201723912'] = { Name = 'plg_05_randombuild' }, - ['-1458085944'] = { Name = 'plg_05_redwall2_d' }, - ['33899787'] = { Name = 'plg_05_redwall2_lod' }, - ['696097878'] = { Name = 'plg_05_redwall2' }, - ['-35964604'] = { Name = 'plg_05_repair_dep_em' }, - ['268631402'] = { Name = 'plg_05_repair_dep_lod' }, - ['2073978658'] = { Name = 'plg_05_repair_dep_slod' }, - ['-10619266'] = { Name = 'plg_05_repair_dep' }, - ['-1782865015'] = { Name = 'plg_05_repd_em_lod' }, - ['600351010'] = { Name = 'plg_05_rnbuil_em_lod' }, - ['-1275135182'] = { Name = 'plg_05_road_01_lod' }, - ['1783850020'] = { Name = 'plg_05_road_01' }, - ['237011027'] = { Name = 'plg_05_road_02_lod' }, - ['1492697455'] = { Name = 'plg_05_road_02' }, - ['975462788'] = { Name = 'plg_05_road_03_lod' }, - ['-1802599164'] = { Name = 'plg_05_road_04_lod' }, - ['1016793268'] = { Name = 'plg_05_road_04' }, - ['163730429'] = { Name = 'plg_05_road_05_lod' }, - ['566088438'] = { Name = 'plg_05_road_05' }, - ['1952131080'] = { Name = 'plg_05_road_06_lod' }, - ['245058737'] = { Name = 'plg_05_road_07_lod' }, - ['-928969277'] = { Name = 'plg_05_roadextension_dcl' }, - ['-657075800'] = { Name = 'plg_05_roadextension_dcl1' }, - ['-359303897'] = { Name = 'plg_05_roadextension_dcl2' }, - ['1790253435'] = { Name = 'plg_05_roadextension' }, - ['-893795959'] = { Name = 'plg_05_roadextension2' }, - ['-2051961945'] = { Name = 'plg_05_rwall_lod' }, - ['976826305'] = { Name = 'plg_05_rwall' }, - ['1585377435'] = { Name = 'plg_05_ship_dec' }, - ['695216401'] = { Name = 'plg_05_slod_a' }, - ['-2103420044'] = { Name = 'plg_05_slod_b' }, - ['-1879935464'] = { Name = 'plg_05_slod_c' }, - ['1689984938'] = { Name = 'plg_05_slod_d' }, - ['1921628999'] = { Name = 'plg_05_slod_e' }, - ['-1490148209'] = { Name = 'plg_05_slod_f' }, - ['-1258569686'] = { Name = 'plg_05_slod_g' }, - ['-1642229138'] = { Name = 'plg_05_slod_i' }, - ['-1576520628'] = { Name = 'plg_05_tower_lod' }, - ['1164572440'] = { Name = 'plg_05_tower' }, - ['1528374256'] = { Name = 'plg_05_towerovly' }, - ['-678511751'] = { Name = 'plg_05_town_field_01a_lod001' }, - ['-1401093546'] = { Name = 'plg_05_town_field_01a' }, - ['333907882'] = { Name = 'plg_05_town_field_01b_lod' }, - ['693828624'] = { Name = 'plg_05_town_field_01b' }, - ['-1238700689'] = { Name = 'plg_05_town_field_01c_lod' }, - ['329240730'] = { Name = 'plg_05_town_field_01c' }, - ['-945752454'] = { Name = 'plg_05_town_field_01d_lod' }, - ['113915631'] = { Name = 'plg_05_town_field_01d' }, - ['2120036384'] = { Name = 'plg_05_town_field_02_lod' }, - ['-1418896404'] = { Name = 'plg_05_town_field_02' }, - ['1352177932'] = { Name = 'plg_05_town_gnd_south_lod' }, - ['-165659628'] = { Name = 'plg_05_town_gnd_south' }, - ['-324942867'] = { Name = 'plg_05_town_wall_dec' }, - ['-2137814461'] = { Name = 'plg_05_town_wall_lod' }, - ['-1250804438'] = { Name = 'plg_05_town_wall' }, - ['1858951678'] = { Name = 'plg_05_town_wall2_lod' }, - ['167529279'] = { Name = 'plg_05_town_wall2' }, - ['812063775'] = { Name = 'plg_05_veg01_decals' }, - ['-685163549'] = { Name = 'plg_05_veg01' }, - ['-2069807405'] = { Name = 'plg_05_wall_rturn_lod' }, - ['-25612444'] = { Name = 'plg_05_wall_rturn' }, - ['-935041592'] = { Name = 'plg_05_wallfol01_dec' }, - ['1247042923'] = { Name = 'plg_05_wallfol01_fol' }, - ['-1889463738'] = { Name = 'plg_05_wallfol01_lod' }, - ['-1313450729'] = { Name = 'plg_05_wallfol01' }, - ['-1448892300'] = { Name = 'plg_05_walllturn_dec' }, - ['1187045906'] = { Name = 'plg_05_walllturn_lod' }, - ['-1155101728'] = { Name = 'plg_05_walllturn' }, - ['1848129847'] = { Name = 'plg_05_ware04_em' }, - ['1860003663'] = { Name = 'plg_05_waretest04_em_lod' }, - ['977563931'] = { Name = 'plg_05_waretest04_lod' }, - ['-479709232'] = { Name = 'plg_05_waretest04' }, - ['-906297217'] = { Name = 'plg_05_wh_round_lod' }, - ['-1256673476'] = { Name = 'plg_05_wh_round' }, - ['835336927'] = { Name = 'plg_05_wh_round001_lod' }, - ['-418285138'] = { Name = 'plg_05_wh_round001' }, - ['2090324229'] = { Name = 'plg_05_wh_round002_lod' }, - ['850333932'] = { Name = 'plg_05_wh_round002' }, - ['835265824'] = { Name = 'plg_05_wh_sc_em_lod' }, - ['210804926'] = { Name = 'plg_05_wh_sect_em' }, - ['591069614'] = { Name = 'plg_05_wh_sect_lod' }, - ['1639619996'] = { Name = 'plg_05_wh_sect' }, - ['-784174388'] = { Name = 'plg_05_wh1_em_lod' }, - ['-1178934999'] = { Name = 'plg_05_wh1_lod' }, - ['-984040554'] = { Name = 'plg_05_white_bui_hi_em' }, - ['-1514661682'] = { Name = 'plg_05_white_build_hi' }, - ['-1674882031'] = { Name = 'plg_05_white_build_ovly' }, - ['1013542880'] = { Name = 'plg_05_whitebuild_em_lod' }, - ['1686395694'] = { Name = 'plg_05_whitebuild_lod' }, - ['-1290464555'] = { Name = 'plg_06_012' }, - ['1272485807'] = { Name = 'plg_06_013_lod' }, - ['-1147579341'] = { Name = 'plg_06_03' }, - ['-1194373461'] = { Name = 'plg_06_04' }, - ['-421713218'] = { Name = 'plg_06_05' }, - ['-719321276'] = { Name = 'plg_06_06' }, - ['55501729'] = { Name = 'plg_06_07' }, - ['726049816'] = { Name = 'plg_06_back_det_lod' }, - ['659612303'] = { Name = 'plg_06_back_det' }, - ['786934124'] = { Name = 'plg_06_back_det2_lod' }, - ['-10108246'] = { Name = 'plg_06_back_det4_lod' }, - ['-1965872335'] = { Name = 'plg_06_bale_d' }, - ['530919580'] = { Name = 'plg_06_bale' }, - ['-1809299935'] = { Name = 'plg_06_bale2' }, - ['1626235542'] = { Name = 'plg_06_baleedge' }, - ['-2147324595'] = { Name = 'plg_06_barn_lod' }, - ['-488623603'] = { Name = 'plg_06_barn_ovly' }, - ['-20680165'] = { Name = 'plg_06_barn_slod' }, - ['1478355705'] = { Name = 'plg_06_bdutchbarn' }, - ['1356219746'] = { Name = 'plg_06_blood_decals' }, - ['-131274976'] = { Name = 'plg_06_building_decal' }, - ['1540125192'] = { Name = 'plg_06_cash_depot_building' }, - ['-1652038632'] = { Name = 'plg_06_cash_depot_lod' }, - ['-1793210667'] = { Name = 'plg_06_decal' }, - ['767400263'] = { Name = 'plg_06_decal01' }, - ['1125434357'] = { Name = 'plg_06_decal02' }, - ['1897766918'] = { Name = 'plg_06_decal03' }, - ['1715964506'] = { Name = 'plg_06_decal04' }, - ['-1732677827'] = { Name = 'plg_06_decal05' }, - ['1836271539'] = { Name = 'plg_06_fencepart' }, - ['789112000'] = { Name = 'plg_06_fnc_01_lod' }, - ['839932358'] = { Name = 'plg_06_fnc_02_lod' }, - ['1174070460'] = { Name = 'plg_06_fnc_22_lod' }, - ['1517238012'] = { Name = 'plg_06_fnc_24_lod' }, - ['-1529998323'] = { Name = 'plg_06_fncbsp3' }, - ['-2047388185'] = { Name = 'plg_06_fncpt_bpk1' }, - ['1998796867'] = { Name = 'plg_06_fncpt_bpk2' }, - ['395504350'] = { Name = 'plg_06_gate_lod' }, - ['-355240077'] = { Name = 'plg_06_gate_posts' }, - ['1880024711'] = { Name = 'plg_06_gate_posts001' }, - ['-646205680'] = { Name = 'plg_06_gate_posts002_lod' }, - ['-1082059603'] = { Name = 'plg_06_gnd_01a_lod' }, - ['-948120017'] = { Name = 'plg_06_gnd_01a' }, - ['1660608699'] = { Name = 'plg_06_gnd_01b_lod' }, - ['2112579760'] = { Name = 'plg_06_gnd_01d_lod' }, - ['-1173767351'] = { Name = 'plg_06_gnd_01d' }, - ['-807365727'] = { Name = 'plg_06_gnd_02_lod' }, - ['-152818950'] = { Name = 'plg_06_gnd_02' }, - ['-1529120025'] = { Name = 'plg_06_gnd_02a_dcl' }, - ['790972025'] = { Name = 'plg_06_gnd_02b_dcl' }, - ['1171215946'] = { Name = 'plg_06_gnd_02b' }, - ['-1248220098'] = { Name = 'plg_06_gnd_break' }, - ['1343524037'] = { Name = 'plg_06_gnd_fol_d' }, - ['-1242361363'] = { Name = 'plg_06_gnd_pol_d' }, - ['892037871'] = { Name = 'plg_06_gnd_pol_d2' }, - ['1070313902'] = { Name = 'plg_06_gnd_slod1' }, - ['-494350963'] = { Name = 'plg_06_gnd1_norm_dcl' }, - ['-2063251440'] = { Name = 'plg_06_gnd2_norm_dcl' }, - ['-1001024882'] = { Name = 'plg_06_h_fol1' }, - ['907802141'] = { Name = 'plg_06_h_fol2' }, - ['-536327693'] = { Name = 'plg_06_h_fol3' }, - ['-778523372'] = { Name = 'plg_06_h_fol4' }, - ['-1314296462'] = { Name = 'plg_06_h_fol5' }, - ['2143586729'] = { Name = 'plg_06_h_fol6' }, - ['1445803639'] = { Name = 'plg_06_h_fol7' }, - ['-1536666896'] = { Name = 'plg_06_h_fol8' }, - ['2059927468'] = { Name = 'plg_06_h_fol9' }, - ['-1897801144'] = { Name = 'plg_06_h_lod' }, - ['-1821881557'] = { Name = 'plg_06_h_lod01' }, - ['-1473940315'] = { Name = 'plg_06_h_lod02' }, - ['1978503222'] = { Name = 'plg_06_h_lod03' }, - ['-1980778438'] = { Name = 'plg_06_h_lod04' }, - ['-525310534'] = { Name = 'plg_06_h_lod05' }, - ['-1368227521'] = { Name = 'plg_06_h_lod06' }, - ['-1087298884'] = { Name = 'plg_06_h_lod07' }, - ['-1282602144'] = { Name = 'plg_06_h_lod08' }, - ['2013300578'] = { Name = 'plg_06_h1_slod1' }, - ['-1970964241'] = { Name = 'plg_06_h2_slod1' }, - ['1974615205'] = { Name = 'plg_06_hedgepush26a_d' }, - ['-231371254'] = { Name = 'plg_06_hedgepush26a' }, - ['519155278'] = { Name = 'plg_06_hedgepush26b_d' }, - ['-556178960'] = { Name = 'plg_06_hedgepush26bb' }, - ['-1341946811'] = { Name = 'plg_06_hedgepush26bc' }, - ['272746715'] = { Name = 'plg_06_hedgepush26c_d' }, - ['352255737'] = { Name = 'plg_06_hedgepush27a_d' }, - ['504490914'] = { Name = 'plg_06_hedgepush27a' }, - ['-186103261'] = { Name = 'plg_06_hedgepush27b_d' }, - ['1268205224'] = { Name = 'plg_06_hedgepush27b' }, - ['-1404559433'] = { Name = 'plg_06_hedgepush29a_d' }, - ['1837697103'] = { Name = 'plg_06_hedgepush29a' }, - ['-2018772545'] = { Name = 'plg_06_hedgepush29b_d' }, - ['-959890734'] = { Name = 'plg_06_hedgepush29b' }, - ['-1179694904'] = { Name = 'plg_06_hedgepush30a_d' }, - ['51120656'] = { Name = 'plg_06_hedgepush30a' }, - ['2126692395'] = { Name = 'plg_06_hedgepush30b_d' }, - ['817849718'] = { Name = 'plg_06_hedgepush30b' }, - ['904582956'] = { Name = 'plg_06_left_det' }, - ['-151681071'] = { Name = 'plg_06_left_det3_lod' }, - ['1528846402'] = { Name = 'plg_06_m2door_lod' }, - ['245230435'] = { Name = 'plg_06_m2door' }, - ['1381293193'] = { Name = 'plg_06_ml_hedge_test' }, - ['-80518929'] = { Name = 'plg_06_ml_hedge_test001' }, - ['-281718262'] = { Name = 'plg_06_neverdeleteme' }, - ['-1003060321'] = { Name = 'plg_06_ovly_carpark001' }, - ['-1474174121'] = { Name = 'plg_06_plg_05_72_lod' }, - ['86104305'] = { Name = 'plg_06_plg_05_72' }, - ['719480'] = { Name = 'plg_06_plg_barier_conc_0' }, - ['-679108403'] = { Name = 'plg_06_plg_barier_conc_02a' }, - ['-527054088'] = { Name = 'plg_06_pol_lod' }, - ['1091698702'] = { Name = 'plg_06_props_combo01_01_lod' }, - ['859321317'] = { Name = 'plg_06_props_combo01_02_lod' }, - ['2121761616'] = { Name = 'plg_06_props_combo02_01_lod' }, - ['503537617'] = { Name = 'plg_06_props_combo03_01_lod' }, - ['-2054885692'] = { Name = 'plg_06_props_combo03_02_lod' }, - ['282029359'] = { Name = 'plg_06_props_combo04_01_lod' }, - ['1660536482'] = { Name = 'plg_06_props_combo04_02_lod' }, - ['467847223'] = { Name = 'plg_06_props_combo05_01_lod' }, - ['-1777184773'] = { Name = 'plg_06_props_combo05_02_lod' }, - ['-1781681236'] = { Name = 'plg_06_props_combo05_03_lod' }, - ['1877778571'] = { Name = 'plg_06_props_combo05_04_lod' }, - ['-1566609857'] = { Name = 'plg_06_props_combo05_05_lod' }, - ['364223355'] = { Name = 'plg_06_props_combo05_06_lod' }, - ['-191585014'] = { Name = 'plg_06_props_combo05_07_lod' }, - ['-1290766730'] = { Name = 'plg_06_props_combo05_08_lod' }, - ['612757698'] = { Name = 'plg_06_props_combo05_09_lod' }, - ['1375187323'] = { Name = 'plg_06_props_combo05_10_lod' }, - ['432178811'] = { Name = 'plg_06_props_combo05_11_lod' }, - ['40725961'] = { Name = 'plg_06_props_combo05_12_lod' }, - ['1734464218'] = { Name = 'plg_06_right_det' }, - ['233558894'] = { Name = 'plg_06_right_det4' }, - ['-1051828044'] = { Name = 'plg_06_slod' }, - ['2041342411'] = { Name = 'plg_06_testland' }, - ['457696143'] = { Name = 'plg_06_turn_lod' }, - ['-1098224993'] = { Name = 'plg_06_turn' }, - ['-396546437'] = { Name = 'plg_06_v_cashdepot_lod' }, - ['-115612878'] = { Name = 'plg_rd_bri_hd' }, - ['2145810884'] = { Name = 'plg_rd_bri2' }, - ['1134068090'] = { Name = 'plg_rd_brid_rail2' }, - ['1828142079'] = { Name = 'plg_rd_brid_railhd' }, - ['-2019860836'] = { Name = 'plg_rd_m_bridge1_lod' }, - ['-2012092376'] = { Name = 'plg_rd_m_bridge1' }, - ['-211682954'] = { Name = 'plg_rd_m_road_00' }, - ['11146242'] = { Name = 'plg_rd_m_road_01' }, - ['2054898420'] = { Name = 'plg_rd_m_road_03_lod' }, - ['1197252966'] = { Name = 'plg_rd_m_road_03' }, - ['679296123'] = { Name = 'plg_rd_m_road_037_lod' }, - ['993830101'] = { Name = 'plg_rd_m_road_037' }, - ['237541841'] = { Name = 'plg_rd_m_road_038_d' }, - ['184880528'] = { Name = 'plg_rd_m_road_038_lod' }, - ['-1415503180'] = { Name = 'plg_rd_m_road_038_slod' }, - ['-1043910222'] = { Name = 'plg_rd_m_road_04_lod' }, - ['493833612'] = { Name = 'plg_rd_m_road_04' }, - ['-1175795129'] = { Name = 'plg_rd_m_road_05_de' }, - ['1955298243'] = { Name = 'plg_rd_m_road_05' }, - ['970786407'] = { Name = 'plg_rd_m_road_06' }, - ['-156515933'] = { Name = 'plg_rd_m_road_060_lod' }, - ['-1839450264'] = { Name = 'plg_rd_m_road_07' }, - ['-2023922169'] = { Name = 'plg_rd_m_road_08_lod' }, - ['1621578747'] = { Name = 'plg_rd_m_road_08' }, - ['581792730'] = { Name = 'plg_rd_m_road_09_lod' }, - ['-1699690479'] = { Name = 'plg_rd_m_road_09' }, - ['525750906'] = { Name = 'plg_rd_m_road_10' }, - ['2147471996'] = { Name = 'plg_rd_m_road_11_lod' }, - ['1768384155'] = { Name = 'plg_rd_m_road_11' }, - ['1007750127'] = { Name = 'plg_rd_m_road_12' }, - ['-1155826060'] = { Name = 'plg_rd_m_road_13_lod' }, - ['-2099045994'] = { Name = 'plg_rd_m_road_13' }, - ['-1801601781'] = { Name = 'plg_rd_m_road_14' }, - ['960834993'] = { Name = 'plg_rd_m_road_15_lod' }, - ['-1635987255'] = { Name = 'plg_rd_m_road_15' }, - ['1936571612'] = { Name = 'plg_rd_m_road_16_lod' }, - ['-1336773516'] = { Name = 'plg_rd_m_road_16' }, - ['1301524228'] = { Name = 'plg_rd_m_road_17' }, - ['459154763'] = { Name = 'plg_rd_m_road_18_lod' }, - ['996018841'] = { Name = 'plg_rd_m_road_18' }, - ['-736038488'] = { Name = 'plg_rd_m_road_19_lod' }, - ['1776510883'] = { Name = 'plg_rd_m_road_19' }, - ['-129482412'] = { Name = 'plg_rd_m_road_20_lod' }, - ['-947577011'] = { Name = 'plg_rd_m_road_20' }, - ['651590505'] = { Name = 'plg_rd_m_road_21_lod' }, - ['-626637425'] = { Name = 'plg_rd_m_road_21' }, - ['-1255096068'] = { Name = 'plg_rd_m_road_22_lod' }, - ['-392371844'] = { Name = 'plg_rd_m_road_22' }, - ['-897127102'] = { Name = 'plg_rd_m_road_24_lod' }, - ['228371383'] = { Name = 'plg_rd_m_road_24' }, - ['-137676725'] = { Name = 'plg_rd_m_road_26_lod' }, - ['808874218'] = { Name = 'plg_rd_m_road_26' }, - ['-1462246872'] = { Name = 'plg_rd_m_road_27_lod' }, - ['123477758'] = { Name = 'plg_rd_m_road_27' }, - ['-1993423866'] = { Name = 'plg_rd_newlod' }, - ['-1830164756'] = { Name = 'plg_rd_newlod01' }, - ['-470578870'] = { Name = 'plg_rd_newlod02' }, - ['365221274'] = { Name = 'plg_rd_plg_01_new_lod' }, - ['-181559047'] = { Name = 'plg_rd_plg_01_shadow' }, - ['846672925'] = { Name = 'plg_rd_props__wires_00' }, - ['1342730047'] = { Name = 'plg_rd_props__wires_01' }, - ['1580272516'] = { Name = 'plg_rd_props__wires_02' }, - ['1810573048'] = { Name = 'plg_rd_props__wires_03' }, - ['2066662783'] = { Name = 'plg_rd_props__wires_04' }, - ['1883156395'] = { Name = 'plg_rd_props__wires_05' }, - ['2115849064'] = { Name = 'plg_rd_props__wires_06' }, - ['-1949079852'] = { Name = 'plg_rd_props__wires_07' }, - ['-1718943165'] = { Name = 'plg_rd_props__wires_08' }, - ['-1248314787'] = { Name = 'plg_rd_props__wires_09' }, - ['1663898732'] = { Name = 'plg_rd_props__wires_10' }, - ['-706637909'] = { Name = 'plg_rd_props__wires_1000' }, - ['1912391643'] = { Name = 'plg_rd_props__wires_1001' }, - ['1448999642'] = { Name = 'plg_rd_props__wires_11' }, - ['1096428621'] = { Name = 'plg_rd_props_wires_farm99' }, - ['-1268156401'] = { Name = 'plg_rd_props_wires_town01' }, - ['-2093410901'] = { Name = 'plg_rd_props_wires_town02' }, - ['1955199053'] = { Name = 'plg_rd_props_wires_town03' }, - ['1723030688'] = { Name = 'plg_rd_props_wires_town04' }, - ['-885675496'] = { Name = 'plg_rd_rail1_lod' }, - ['1770121763'] = { Name = 'plg_rd_rail2_lod' }, - ['154023929'] = { Name = 'plg_rd_rail3_lod' }, - ['2128473940'] = { Name = 'plg_rd_slod1' }, - ['848843470'] = { Name = 'plg_rd_slod101' }, - ['1759231828'] = { Name = 'plg_rd_slod102' }, - ['2074928374'] = { Name = 'plg_rd_slod103' }, - ['1767260233'] = { Name = 'plg_rd_slod104' }, - ['-330381696'] = { Name = 'plg_rd_slod105' }, - ['530722018'] = { Name = 'plg_rd_slod106' }, - ['714920561'] = { Name = 'plg_rd_slod106b' }, - ['242780815'] = { Name = 'plg_rd_slod107' }, - ['1143928315'] = { Name = 'plg_rd_slod108' }, - ['-160448961'] = { Name = 'plogint_co1_deta' }, - ['213365268'] = { Name = 'plogint_co1_over' }, - ['-790817975'] = { Name = 'plogint_co1_pipe' }, - ['-1973182714'] = { Name = 'plogint_co1_refem' }, - ['1321859441'] = { Name = 'plogint_desk' }, - ['1364964175'] = { Name = 'plogint_panels' }, - ['-1345557674'] = { Name = 'plogint_pro_int_light_' }, - ['-444531987'] = { Name = 'plogint_pro_int_light_002' }, - ['-613456270'] = { Name = 'plogint_pro_int_light_006' }, - ['-1233281905'] = { Name = 'plogint_pro_int_light_008' }, - ['-2104413005'] = { Name = 'plogint_pro_int_light_009' }, - ['2062862085'] = { Name = 'plogint_rea_deta' }, - ['-900185457'] = { Name = 'plogint_rea_nocover' }, - ['-2087717581'] = { Name = 'plogint_rea_over' }, - ['-1007424172'] = { Name = 'plogint_rec_deta' }, - ['-1169432456'] = { Name = 'plogint_rec_details' }, - ['1456914506'] = { Name = 'plogint_rec_divi' }, - ['-1025097857'] = { Name = 'plogint_rec_dust' }, - ['-259576741'] = { Name = 'plogint_rec_glas1' }, - ['979812381'] = { Name = 'plogint_rec_glas2' }, - ['346538897'] = { Name = 'plogint_rec_over' }, - ['761940430'] = { Name = 'plogint_rec_pipe' }, - ['1412881295'] = { Name = 'plogint_rec_refem' }, - ['-439309300'] = { Name = 'plogint_shell_dt' }, - ['1202916346'] = { Name = 'plogint_shell' }, - ['1495160591'] = { Name = 'plogint_sid_det' }, - ['-427888041'] = { Name = 'plogint_sid_mounds' }, - ['438549871'] = { Name = 'plogint_sid_over' }, - ['622800197'] = { Name = 'plogint_sid_pipe' }, - ['-1605601875'] = { Name = 'plogint_sid_refem' }, - ['2110746664'] = { Name = 'plogint_sto_d_vfx_root' }, - ['1435263394'] = { Name = 'plogint_sto_deta' }, - ['-854679885'] = { Name = 'plogint_sto_mounds' }, - ['-1452337973'] = { Name = 'plogint_sto_over' }, - ['-1220387898'] = { Name = 'plogint_sto_pipe' }, - ['1514026555'] = { Name = 'plogint_sto_refem' }, - ['-1809450040'] = { Name = 'plogint_tree' }, - ['929790624'] = { Name = 'plogint_vau_deta01' }, - ['-786897293'] = { Name = 'plogint_vau_over' }, - ['-1721300350'] = { Name = 'plogint_vau_pipe' }, - ['1385824389'] = { Name = 'plogint_vau_refem' }, - ['-1760141333'] = { Name = 'plogint_vaultdoo_refonly' }, - ['-96927377'] = { Name = 'po1_01_b_det_01' }, - ['742909324'] = { Name = 'po1_01_b_det_02' }, - ['-412984382'] = { Name = 'po1_01_b_det_03' }, - ['417087157'] = { Name = 'po1_01_b_det_04' }, - ['-1007840039'] = { Name = 'po1_01_b_det_05' }, - ['-180717710'] = { Name = 'po1_01_b_det_06' }, - ['-984967305'] = { Name = 'po1_01_b_det_07' }, - ['-168822591'] = { Name = 'po1_01_b_det_08' }, - ['-1321341062'] = { Name = 'po1_01_b_det_09' }, - ['2085519876'] = { Name = 'po1_01_b_det_10' }, - ['-831299466'] = { Name = 'po1_01_b_ladder' }, - ['-623390338'] = { Name = 'po1_01_b_lod_prox' }, - ['1453029937'] = { Name = 'po1_01_b' }, - ['-1154275807'] = { Name = 'po1_01_bufferm' }, - ['-1584207297'] = { Name = 'po1_01_build_d_1' }, - ['193884497'] = { Name = 'po1_01_build_detail' }, - ['144653438'] = { Name = 'po1_01_build_win' }, - ['550415820'] = { Name = 'po1_01_build064_dt' }, - ['1891797233'] = { Name = 'po1_01_build081' }, - ['-1345192885'] = { Name = 'po1_01_build58_dt' }, - ['736109907'] = { Name = 'po1_01_build58_dt008' }, - ['1155024635'] = { Name = 'po1_01_build58_dt2' }, - ['328221354'] = { Name = 'po1_01_build58_em' }, - ['-555089326'] = { Name = 'po1_01_build59_ov2' }, - ['1021511751'] = { Name = 'po1_01_build61_dt_ladder' }, - ['2008546334'] = { Name = 'po1_01_build61_dt' }, - ['1728960422'] = { Name = 'po1_01_build61' }, - ['-1161822430'] = { Name = 'po1_01_build62_det_01' }, - ['817589083'] = { Name = 'po1_01_build62_det_02' }, - ['561564886'] = { Name = 'po1_01_build62_det_03' }, - ['-874045004'] = { Name = 'po1_01_build62_det_04' }, - ['-530880288'] = { Name = 'po1_01_build62_dt' }, - ['1883367950'] = { Name = 'po1_01_build62' }, - ['1791093803'] = { Name = 'po1_01_build63_dt_01' }, - ['-109344356'] = { Name = 'po1_01_build63_dt_02' }, - ['-1632019189'] = { Name = 'po1_01_build63_dt01_1' }, - ['-1392576106'] = { Name = 'po1_01_build63_dt01_2' }, - ['1361357640'] = { Name = 'po1_01_build63_dt02' }, - ['1131614181'] = { Name = 'po1_01_build63_dt03' }, - ['1265442767'] = { Name = 'po1_01_build63_dt041' }, - ['-1398218167'] = { Name = 'po1_01_build63_dt042' }, - ['824765255'] = { Name = 'po1_01_build63_dt043' }, - ['594694106'] = { Name = 'po1_01_build63_dt044' }, - ['266471475'] = { Name = 'po1_01_build63_shad' }, - ['-1069875433'] = { Name = 'po1_01_cablemesh32281_tstd' }, - ['-1706452958'] = { Name = 'po1_01_cablemesh50529_thvy' }, - ['1314134962'] = { Name = 'po1_01_cablemesh50530_thvy' }, - ['892209'] = { Name = 'po1_01_cablemesh87975_thvy' }, - ['1525793271'] = { Name = 'po1_01_cablemesh95540_thvy' }, - ['-667723482'] = { Name = 'po1_01_cablemesh95548_thvy' }, - ['1425939276'] = { Name = 'po1_01_cg020_ladder01' }, - ['2125262505'] = { Name = 'po1_01_cg020_ladder02' }, - ['347516078'] = { Name = 'po1_01_cg020' }, - ['-1690158621'] = { Name = 'po1_01_cg021' }, - ['1858619613'] = { Name = 'po1_01_cg024_gd' }, - ['1916185841'] = { Name = 'po1_01_detail_1' }, - ['1987426295'] = { Name = 'po1_01_detail' }, - ['514501283'] = { Name = 'po1_01_dockdetailm' }, - ['1888054632'] = { Name = 'po1_01_doorm' }, - ['-1402278964'] = { Name = 'po1_01_fancase001' }, - ['-1723021936'] = { Name = 'po1_01_fancase002' }, - ['-947084789'] = { Name = 'po1_01_fancase003' }, - ['-983982683'] = { Name = 'po1_01_fancase004' }, - ['-217024238'] = { Name = 'po1_01_fancase005' }, - ['1862719617'] = { Name = 'po1_01_glue_01' }, - ['1271075322'] = { Name = 'po1_01_glue_03' }, - ['1578284697'] = { Name = 'po1_01_glue_04' }, - ['-1470739681'] = { Name = 'po1_01_glue_05' }, - ['393814881'] = { Name = 'po1_01_ground_d_1' }, - ['1473984828'] = { Name = 'po1_01_jump2' }, - ['1216256643'] = { Name = 'po1_01_jump3' }, - ['1001546344'] = { Name = 'po1_01_jumplod_003' }, - ['1115942935'] = { Name = 'po1_01_jumplod_006' }, - ['557493637'] = { Name = 'po1_01_jumplod_007' }, - ['-817236022'] = { Name = 'po1_01_jumplod_01' }, - ['-2081393649'] = { Name = 'po1_01_jumplod_010' }, - ['266472436'] = { Name = 'po1_01_jumplod_014' }, - ['726647503'] = { Name = 'po1_01_jumplod_016' }, - ['1456085443'] = { Name = 'po1_01_jumplod_017' }, - ['-683334323'] = { Name = 'po1_01_jumpmas' }, - ['-979341034'] = { Name = 'po1_01_lad_main' }, - ['1677272332'] = { Name = 'po1_01_land002' }, - ['1379631505'] = { Name = 'po1_01_land003' }, - ['1201040455'] = { Name = 'po1_01_land004' }, - ['1315299648'] = { Name = 'po1_01_lifebeltm' }, - ['1303687283'] = { Name = 'po1_01_props_combo03_04_lod' }, - ['-1954195107'] = { Name = 'po1_01_props_combo03_06_lod' }, - ['1236876977'] = { Name = 'po1_01_props_combo05_01_lod' }, - ['151295727'] = { Name = 'po1_01_pulleyparent' }, - ['798592100'] = { Name = 'po1_01_shadprox01' }, - ['1583376881'] = { Name = 'po1_01_shadprox02' }, - ['1277642111'] = { Name = 'po1_01_shadprox03' }, - ['1717382076'] = { Name = 'po1_01_ship_dt01_det_009' }, - ['701707185'] = { Name = 'po1_01_ship_dt01_det_016' }, - ['44623197'] = { Name = 'po1_01_ship_dt01_det_018' }, - ['343410939'] = { Name = 'po1_01_ship_dt01_det_019' }, - ['1796960877'] = { Name = 'po1_01_ship_dt01_det_02' }, - ['1507151841'] = { Name = 'po1_01_ship_dt01_det_03' }, - ['324322025'] = { Name = 'po1_01_ship_dt01_det_04' }, - ['1086299582'] = { Name = 'po1_01_ship_dt01_det_05' }, - ['1850636507'] = { Name = 'po1_01_ship_dt01_det_06' }, - ['1546867877'] = { Name = 'po1_01_ship_dt01_det_07' }, - ['-642035793'] = { Name = 'po1_01_ship_dt01_det_08' }, - ['124136204'] = { Name = 'po1_01_ship_dt01_det_09' }, - ['-1027625992'] = { Name = 'po1_01_ship_dt01_det_10' }, - ['-732803299'] = { Name = 'po1_01_ship_dt01_det_11' }, - ['-570072445'] = { Name = 'po1_01_ship_dt01_det_12' }, - ['1876821558'] = { Name = 'po1_01_ship_dt01_det_13' }, - ['-300907871'] = { Name = 'po1_01_ship_dt01_det_14' }, - ['-3267044'] = { Name = 'po1_01_ship_dt01_det_15' }, - ['697203100'] = { Name = 'po1_01_ship_dt01_det_16' }, - ['-1149231751'] = { Name = 'po1_01_ship_dt01_det_17' }, - ['892080343'] = { Name = 'po1_01_ship_dt01_det_18' }, - ['1117072297'] = { Name = 'po1_01_ship_dt01_det_19' }, - ['1943183591'] = { Name = 'po1_01_ship_dt01_det_20' }, - ['-27986500'] = { Name = 'po1_01_ship_dt01_det01' }, - ['2093146971'] = { Name = 'po1_01_ship_dt01' }, - ['1208383975'] = { Name = 'po1_01_ship_dt02' }, - ['-1289760752'] = { Name = 'po1_01_ship_dt04' }, - ['-460992937'] = { Name = 'po1_01_ship_dt05_det_01' }, - ['280674249'] = { Name = 'po1_01_ship_dt05_det_010' }, - ['-1670228174'] = { Name = 'po1_01_ship_dt05_det_012' }, - ['-1489474370'] = { Name = 'po1_01_ship_dt05_det_013' }, - ['-1327071206'] = { Name = 'po1_01_ship_dt05_det_014' }, - ['-1016716007'] = { Name = 'po1_01_ship_dt05_det_015' }, - ['1629675672'] = { Name = 'po1_01_ship_dt05_det_016' }, - ['-1343586778'] = { Name = 'po1_01_ship_dt05_det_019' }, - ['675435983'] = { Name = 'po1_01_ship_dt05_det_02' }, - ['371576371'] = { Name = 'po1_01_ship_dt05_det_020' }, - ['-1040152243'] = { Name = 'po1_01_ship_dt05_det_03' }, - ['-264116793'] = { Name = 'po1_01_ship_dt05_det_04' }, - ['-374155095'] = { Name = 'po1_01_ship_dt05_det_05' }, - ['-721670340'] = { Name = 'po1_01_ship_dt05_det_06' }, - ['-1088027760'] = { Name = 'po1_01_ship_dt05_det_07' }, - ['-1199147439'] = { Name = 'po1_01_ship_dt05_det_08' }, - ['-1517669147'] = { Name = 'po1_01_ship_dt05' }, - ['1563060572'] = { Name = 'po1_01_shipa_stairs01' }, - ['1942207558'] = { Name = 'po1_01_shipa_stairs01b' }, - ['1339870913'] = { Name = 'po1_01_shipa_stairs02' }, - ['-881889556'] = { Name = 'po1_01_shipa_stairs02b' }, - ['1723983835'] = { Name = 'po1_01_shipa01' }, - ['-1199302180'] = { Name = 'po1_01_shipbuffer012_det01' }, - ['1893403271'] = { Name = 'po1_01_shipbuffer012_det02' }, - ['-493457920'] = { Name = 'po1_01_shipbuffer012_det03' }, - ['-1916418980'] = { Name = 'po1_01_shipbuffer012_det04' }, - ['2139039695'] = { Name = 'po1_01_shipbuffer012_det05' }, - ['-1928326835'] = { Name = 'po1_01_shipbuffer012' }, - ['-618543443'] = { Name = 'po1_01_shipdecal' }, - ['-2038774770'] = { Name = 'po1_01_shipdetail01' }, - ['-106280541'] = { Name = 'po1_01_shipmain_det_01' }, - ['2123780985'] = { Name = 'po1_01_shipmain_det_02' }, - ['109750574'] = { Name = 'po1_01_shipmain' }, - ['-299421617'] = { Name = 'po1_01_shiprad1' }, - ['1081824506'] = { Name = 'po1_01_shiprad2' }, - ['-160989943'] = { Name = 'po1_01_shrailing01' }, - ['762276628'] = { Name = 'po1_01_shrailing02' }, - ['439960744'] = { Name = 'po1_01_shrailing03' }, - ['1358180893'] = { Name = 'po1_01_shrailing04' }, - ['-916731185'] = { Name = 'po1_01_sidewall044' }, - ['458921549'] = { Name = 'po1_01_sidewall044b' }, - ['2117252226'] = { Name = 'po1_01_sidewall046' }, - ['-648307731'] = { Name = 'po1_01_sidewall046b' }, - ['1850197188'] = { Name = 'po1_01_spotlite01' }, - ['1860049994'] = { Name = 'po1_01_tug_dec' }, - ['1382867804'] = { Name = 'po1_01_tug_det' }, - ['1461947337'] = { Name = 'po1_01_tug' }, - ['2032926544'] = { Name = 'po1_01_tuglight' }, - ['-95791646'] = { Name = 'po1_01_weed' }, - ['-1273837631'] = { Name = 'po1_01_weed2' }, - ['-621505430'] = { Name = 'po1_01_windowshadow' }, - ['-1669942809'] = { Name = 'po1_02_armco01' }, - ['-1708172197'] = { Name = 'po1_02_bufferm' }, - ['778007450'] = { Name = 'po1_02_build056_dt_det_02' }, - ['521215420'] = { Name = 'po1_02_build056_dt_det01' }, - ['-812800942'] = { Name = 'po1_02_build056_dt' }, - ['-500127072'] = { Name = 'po1_02_build056_dt03' }, - ['-263945665'] = { Name = 'po1_02_build056' }, - ['-711056115'] = { Name = 'po1_02_build057_ov' }, - ['-429232501'] = { Name = 'po1_02_build057' }, - ['1018492113'] = { Name = 'po1_02_build065_dt_det' }, - ['1698354213'] = { Name = 'po1_02_build065_dt' }, - ['353905231'] = { Name = 'po1_02_build065_dt001' }, - ['-1213985953'] = { Name = 'po1_02_build065' }, - ['-1092485039'] = { Name = 'po1_02_build066_dt_det' }, - ['973338466'] = { Name = 'po1_02_build066_dt' }, - ['361621455'] = { Name = 'po1_02_build066_g' }, - ['-622613370'] = { Name = 'po1_02_build069_g' }, - ['-372806063'] = { Name = 'po1_02_build071' }, - ['1571934254'] = { Name = 'po1_02_build073_det' }, - ['-1142517044'] = { Name = 'po1_02_build073' }, - ['-1909073485'] = { Name = 'po1_02_build078_ov' }, - ['832471335'] = { Name = 'po1_02_build079_dt_det' }, - ['761255925'] = { Name = 'po1_02_build079_dt' }, - ['1468025341'] = { Name = 'po1_02_build079' }, - ['-465971970'] = { Name = 'po1_02_build080' }, - ['173731756'] = { Name = 'po1_02_build59_ov3' }, - ['-1653596671'] = { Name = 'po1_02_build61_ov002' }, - ['2121557862'] = { Name = 'po1_02_build62_dt001_det' }, - ['-1052617026'] = { Name = 'po1_02_build62_dt001' }, - ['1937887023'] = { Name = 'po1_02_build62_ov003' }, - ['-1932847186'] = { Name = 'po1_02_build69_dt_det01' }, - ['499199550'] = { Name = 'po1_02_build69_dt' }, - ['-788900473'] = { Name = 'po1_02_build69_dt02' }, - ['-1036503037'] = { Name = 'po1_02_build69_dt03' }, - ['-1265328964'] = { Name = 'po1_02_build69_dt04' }, - ['1442968378'] = { Name = 'po1_02_build69_ov' }, - ['-1233970938'] = { Name = 'po1_02_build79fizz' }, - ['-1499586071'] = { Name = 'po1_02_cablemesh6668_thvy' }, - ['-1927140911'] = { Name = 'po1_02_cablemesh6669_thvy' }, - ['-1359525020'] = { Name = 'po1_02_cablemesh6670_thvy' }, - ['-1313975305'] = { Name = 'po1_02_cablemesh6671_thvy' }, - ['-1305412080'] = { Name = 'po1_02_cablemesh6672_thvy' }, - ['-176141572'] = { Name = 'po1_02_cablemesh6673_thvy' }, - ['-1615298332'] = { Name = 'po1_02_cablemesh6674_thvy' }, - ['1217493052'] = { Name = 'po1_02_cablemesh6675_thvy' }, - ['-268792128'] = { Name = 'po1_02_chimeny_01_cap01' }, - ['-564139125'] = { Name = 'po1_02_chimeny_01_cap02' }, - ['2102458665'] = { Name = 'po1_02_chimeny_01_det' }, - ['-1995932524'] = { Name = 'po1_02_chimeny_01' }, - ['-1678732455'] = { Name = 'po1_02_chimeny_railing' }, - ['-705909884'] = { Name = 'po1_02_cranetrks005' }, - ['-754631951'] = { Name = 'po1_02_cranetrks01' }, - ['-845930783'] = { Name = 'po1_02_dockdetailm' }, - ['-1655637611'] = { Name = 'po1_02_fancase002' }, - ['-1354916498'] = { Name = 'po1_02_fancase003' }, - ['2007303663'] = { Name = 'po1_02_gdhut_int' }, - ['1093609669'] = { Name = 'po1_02_gdhut001_dt_det' }, - ['1732045295'] = { Name = 'po1_02_gdhut001_dt' }, - ['1063916798'] = { Name = 'po1_02_gdhut001_ov' }, - ['-2089374575'] = { Name = 'po1_02_gdhut002' }, - ['-1703757925'] = { Name = 'po1_02_gdhut0027' }, - ['2052269043'] = { Name = 'po1_02_glue_01' }, - ['-1928705655'] = { Name = 'po1_02_glue_02' }, - ['-1723309563'] = { Name = 'po1_02_glue_03' }, - ['1672181452'] = { Name = 'po1_02_glue_04' }, - ['2113186654'] = { Name = 'po1_02_glue_05' }, - ['1174322035'] = { Name = 'po1_02_glue_06' }, - ['1480613878'] = { Name = 'po1_02_glue_07' }, - ['986167907'] = { Name = 'po1_02_gnd001' }, - ['1309761782'] = { Name = 'po1_02_gnd003' }, - ['312823846'] = { Name = 'po1_02_graf1' }, - ['-1399830891'] = { Name = 'po1_02_grounddt008_det01' }, - ['83326826'] = { Name = 'po1_02_grounddt008_det02' }, - ['511847039'] = { Name = 'po1_02_grounddt008_det03' }, - ['-390316300'] = { Name = 'po1_02_grounddt008_det04' }, - ['-1773885721'] = { Name = 'po1_02_grounddt008' }, - ['-1972125954'] = { Name = 'po1_02_handrail01' }, - ['-503639391'] = { Name = 'po1_02_lad_main' }, - ['-1765545957'] = { Name = 'po1_02_land001' }, - ['-1689866249'] = { Name = 'po1_02_land001shadoff' }, - ['-1083193947'] = { Name = 'po1_02_land001shadproxy' }, - ['2105718169'] = { Name = 'po1_02_land002' }, - ['-2057790521'] = { Name = 'po1_02_land002shadoff' }, - ['994528176'] = { Name = 'po1_02_land002shadproxy' }, - ['-503316846'] = { Name = 'po1_02_land004' }, - ['404656224'] = { Name = 'po1_02_pipesb001_det01' }, - ['748468572'] = { Name = 'po1_02_pipesb001_det02' }, - ['1054629339'] = { Name = 'po1_02_pipesb001_det03' }, - ['1324482054'] = { Name = 'po1_02_pipesb001_det04' }, - ['1631855274'] = { Name = 'po1_02_pipesb001_det05' }, - ['1352958343'] = { Name = 'po1_02_pipesb001_det06' }, - ['-1533535044'] = { Name = 'po1_02_pipesb001' }, - ['-1623921714'] = { Name = 'po1_02_props_combo05_01_lod' }, - ['-1510670563'] = { Name = 'po1_02_props_combo05_04_lod' }, - ['-686812855'] = { Name = 'po1_02_props_combo07_04_lod' }, - ['-975956425'] = { Name = 'po1_02_props_combo13_slod' }, - ['1259532266'] = { Name = 'po1_02_puddle' }, - ['-1869011098'] = { Name = 'po1_02_shipbuffer019' }, - ['-726946238'] = { Name = 'po1_02_shipbuffer020' }, - ['1256331949'] = { Name = 'po1_02_shipbuffer021' }, - ['-1596529058'] = { Name = 'po1_02_shipbuffer06' }, - ['809521175'] = { Name = 'po1_02_sidewall001' }, - ['2125074081'] = { Name = 'po1_02_sidewall053' }, - ['1761338181'] = { Name = 'po1_02_sidewall054' }, - ['1531987950'] = { Name = 'po1_02_sidewall055' }, - ['-1814972184'] = { Name = 'po1_02_sidewall056' }, - ['-2044650105'] = { Name = 'po1_02_sidewall057' }, - ['1039863100'] = { Name = 'po1_02_sidewall059' }, - ['-1470788522'] = { Name = 'po1_02_slite00' }, - ['-493854907'] = { Name = 'po1_02_snipe_d' }, - ['916985707'] = { Name = 'po1_02_snipe' }, - ['817317511'] = { Name = 'po1_02_talklaugh_pipe' }, - ['1755651564'] = { Name = 'po1_02_tyrebmas' }, - ['-1691518845'] = { Name = 'po1_02_tyremaster' }, - ['1874796006'] = { Name = 'po1_02_valveb_m' }, - ['-590059922'] = { Name = 'po1_02_valvem' }, - ['379537229'] = { Name = 'po1_02_wall005' }, - ['611443442'] = { Name = 'po1_02_wall006' }, - ['1749636691'] = { Name = 'po1_02_wall007_dt' }, - ['-1128480752'] = { Name = 'po1_02_wall007_ov' }, - ['290503856'] = { Name = 'po1_02_wall007' }, - ['492648536'] = { Name = 'po1_02_wall008_dt_det01' }, - ['868640042'] = { Name = 'po1_02_wall008_dt_det02' }, - ['620611481'] = { Name = 'po1_02_wall008_dt_det03' }, - ['671707908'] = { Name = 'po1_02_wall008_dt' }, - ['-112882927'] = { Name = 'po1_02_wall008_ov' }, - ['1124864566'] = { Name = 'po1_02_wall056' }, - ['354610355'] = { Name = 'po1_02_weed_01' }, - ['779853668'] = { Name = 'po1_02_weed_02' }, - ['949400474'] = { Name = 'po1_02_weed_03' }, - ['-1039710595'] = { Name = 'po1_02_weed_04' }, - ['-1230954998'] = { Name = 'po1_02_weeds002' }, - ['-735684332'] = { Name = 'po1_02_weeds004' }, - ['-1870016020'] = { Name = 'po1_02_weeds005' }, - ['1937019394'] = { Name = 'po1_02_weighst01' }, - ['1682645315'] = { Name = 'po1_03_barrier01' }, - ['-1355663608'] = { Name = 'po1_03_barrier02' }, - ['-2121075247'] = { Name = 'po1_03_bridge_det_decal' }, - ['-1305590270'] = { Name = 'po1_03_bridge_ovl_02' }, - ['-2073236864'] = { Name = 'po1_03_bridge_ovl_03' }, - ['-1455365710'] = { Name = 'po1_03_brig1_det_00' }, - ['273985460'] = { Name = 'po1_03_brig1_det_01' }, - ['964559370'] = { Name = 'po1_03_brig1_det_04' }, - ['-993453922'] = { Name = 'po1_03_brig1_det_05' }, - ['-754764526'] = { Name = 'po1_03_brig1_det_06' }, - ['-497232955'] = { Name = 'po1_03_brig1_det_07' }, - ['-22672297'] = { Name = 'po1_03_brig1_det_08' }, - ['-1648768384'] = { Name = 'po1_03_brig1_det_09' }, - ['384678326'] = { Name = 'po1_03_brig1_det_10' }, - ['1901063733'] = { Name = 'po1_03_brig1_det_11' }, - ['-46627324'] = { Name = 'po1_03_brig1_det_16' }, - ['195764969'] = { Name = 'po1_03_brig1_det_17' }, - ['1346712116'] = { Name = 'po1_03_brig1_det_20' }, - ['-886167540'] = { Name = 'po1_03_brig1_det_21' }, - ['563449357'] = { Name = 'po1_03_brig2_b' }, - ['713643299'] = { Name = 'po1_03_brig2_det02' }, - ['1613512840'] = { Name = 'po1_03_brig2_det03' }, - ['1429351032'] = { Name = 'po1_03_brig2_det06' }, - ['-1940776777'] = { Name = 'po1_03_brig2_det07' }, - ['590792626'] = { Name = 'po1_03_brig2_det10' }, - ['1223004947'] = { Name = 'po1_03_brig2_det11' }, - ['1578155369'] = { Name = 'po1_03_brig2_det14' }, - ['-2142305819'] = { Name = 'po1_03_brig2_det15' }, - ['-1780994825'] = { Name = 'po1_03_brig2_det18' }, - ['1768412163'] = { Name = 'po1_03_brig2_det19' }, - ['-1999532174'] = { Name = 'po1_03_brig2_det22' }, - ['1920688838'] = { Name = 'po1_03_brig2_det23' }, - ['1773165218'] = { Name = 'po1_03_brig2_noshad' }, - ['879026856'] = { Name = 'po1_03_brig2' }, - ['-1644328954'] = { Name = 'po1_03_brig3_b' }, - ['-1236690951'] = { Name = 'po1_03_brig3_cb01' }, - ['592814587'] = { Name = 'po1_03_brig3_cb69' }, - ['465604'] = { Name = 'po1_03_brig3_csup01' }, - ['806943463'] = { Name = 'po1_03_brig3_csup02' }, - ['1062484854'] = { Name = 'po1_03_brig3_noshad' }, - ['800115969'] = { Name = 'po1_03_brig3_top_det' }, - ['1754835821'] = { Name = 'po1_03_brig3_top' }, - ['639845925'] = { Name = 'po1_03_brig3' }, - ['315717358'] = { Name = 'po1_03_brig4_b' }, - ['-1427555200'] = { Name = 'po1_03_brig4_det00' }, - ['1318290390'] = { Name = 'po1_03_brig4_det07' }, - ['1494653164'] = { Name = 'po1_03_brig4_det08' }, - ['-1582682294'] = { Name = 'po1_03_brig4_det15' }, - ['-2056915286'] = { Name = 'po1_03_brig4_det16' }, - ['2072470541'] = { Name = 'po1_03_brig4_det23' }, - ['1350897161'] = { Name = 'po1_03_brig4_det24' }, - ['19427433'] = { Name = 'po1_03_brig4_det31' }, - ['-193407222'] = { Name = 'po1_03_brig4_det32' }, - ['-1889465124'] = { Name = 'po1_03_brig4_det37' }, - ['-2129858504'] = { Name = 'po1_03_brig4_det38' }, - ['1956337493'] = { Name = 'po1_03_brig4_det39' }, - ['1518695091'] = { Name = 'po1_03_brig4_noshad' }, - ['-2008479145'] = { Name = 'po1_03_brig4' }, - ['582805032'] = { Name = 'po1_03_brigzz00' }, - ['285360819'] = { Name = 'po1_03_brigzz01' }, - ['-840254331'] = { Name = 'po1_03_brigzz02' }, - ['-1134225030'] = { Name = 'po1_03_brigzz03' }, - ['-375950370'] = { Name = 'po1_03_brigzz04' }, - ['-669593379'] = { Name = 'po1_03_brigzz05' }, - ['-2024198309'] = { Name = 'po1_03_brigzz06' }, - ['-479926566'] = { Name = 'po1_03_brsud00' }, - ['-1969176851'] = { Name = 'po1_03_brsup00' }, - ['1876038019'] = { Name = 'po1_03_brsup010' }, - ['1166851321'] = { Name = 'po1_03_brsup013' }, - ['-1467907371'] = { Name = 'po1_03_brsup014' }, - ['-1944466926'] = { Name = 'po1_03_brsup016' }, - ['1388924731'] = { Name = 'po1_03_brsup05' }, - ['-983198019'] = { Name = 'po1_03_bug_det' }, - ['-855423234'] = { Name = 'po1_03_builbr50' }, - ['-201788052'] = { Name = 'po1_03_build0a' }, - ['-1039134309'] = { Name = 'po1_03_build0b' }, - ['-980405116'] = { Name = 'po1_03_build0blad' }, - ['-2119151293'] = { Name = 'po1_03_build0c_det' }, - ['-680641449'] = { Name = 'po1_03_build0c' }, - ['1783194739'] = { Name = 'po1_03_build50' }, - ['-1130338724'] = { Name = 'po1_03_builda_dec' }, - ['-1182846633'] = { Name = 'po1_03_builda_dt_det_01' }, - ['1975768762'] = { Name = 'po1_03_builda_dt' }, - ['987145290'] = { Name = 'po1_03_builda' }, - ['1973231567'] = { Name = 'po1_03_buildb_dec' }, - ['-627831530'] = { Name = 'po1_03_buildb_dt_007' }, - ['-939717379'] = { Name = 'po1_03_buildb_dt_01' }, - ['-175380454'] = { Name = 'po1_03_buildb_dt_02' }, - ['306553229'] = { Name = 'po1_03_buildb_dt_04' }, - ['239114627'] = { Name = 'po1_03_buildb_dt_05' }, - ['1050245684'] = { Name = 'po1_03_buildb_dt_06' }, - ['1044084249'] = { Name = 'po1_03_buildb_dt' }, - ['1226391759'] = { Name = 'po1_03_buildb' }, - ['-1000121911'] = { Name = 'po1_03_buildd_dec' }, - ['806513108'] = { Name = 'po1_03_buildd_ladder_01' }, - ['-954896542'] = { Name = 'po1_03_buildd_ladder_02_lod' }, - ['-932200578'] = { Name = 'po1_03_buildd' }, - ['2024382155'] = { Name = 'po1_03_buildf_dec' }, - ['491153040'] = { Name = 'po1_03_buildf_dt01' }, - ['-1807250874'] = { Name = 'po1_03_buildf_dt3' }, - ['103745683'] = { Name = 'po1_03_buildf_lights' }, - ['1662676791'] = { Name = 'po1_03_buildf_lights001' }, - ['85701435'] = { Name = 'po1_03_buildf_lights002' }, - ['-1662033176'] = { Name = 'po1_03_buildf_lights003' }, - ['783812223'] = { Name = 'po1_03_buildf_lights004' }, - ['-103267819'] = { Name = 'po1_03_buildfizz01' }, - ['630167943'] = { Name = 'po1_03_buildfizz02' }, - ['-1903865598'] = { Name = 'po1_03_buildg_hut' }, - ['-1555896922'] = { Name = 'po1_03_buildg_ladder' }, - ['-379780780'] = { Name = 'po1_03_buildg' }, - ['177068410'] = { Name = 'po1_03_buildgb_dt' }, - ['947093998'] = { Name = 'po1_03_cablemesh27777_tstd' }, - ['-803440905'] = { Name = 'po1_03_cablemesh27807_tstd' }, - ['245979914'] = { Name = 'po1_03_cablemesh45512_thvy' }, - ['1638026503'] = { Name = 'po1_03_cablemesh45584_thvy' }, - ['721628739'] = { Name = 'po1_03_cablemesh45727_hvhvy' }, - ['-2122321143'] = { Name = 'po1_03_cablemesh45744_hvhvy' }, - ['-1134234618'] = { Name = 'po1_03_ddyell01' }, - ['-1847795895'] = { Name = 'po1_03_decalglue1' }, - ['-1609335882'] = { Name = 'po1_03_decalglue2' }, - ['-434990734'] = { Name = 'po1_03_drydoc01_noshad' }, - ['2113484833'] = { Name = 'po1_03_drydoc02_noshad' }, - ['-1293874647'] = { Name = 'po1_03_ebox' }, - ['-474953328'] = { Name = 'po1_03_erhouse003' }, - ['-617944440'] = { Name = 'po1_03_gate' }, - ['-1387442821'] = { Name = 'po1_03_gate01' }, - ['4848171'] = { Name = 'po1_03_glue01' }, - ['-1834770720'] = { Name = 'po1_03_glue02' }, - ['1410867658'] = { Name = 'po1_03_glue07' }, - ['1709819245'] = { Name = 'po1_03_glue08' }, - ['-843616812'] = { Name = 'po1_03_gndshadprox' }, - ['-1381517192'] = { Name = 'po1_03_ladmaster' }, - ['524754566'] = { Name = 'po1_03_light_master2' }, - ['-1081795575'] = { Name = 'po1_03_lightc_m' }, - ['857991340'] = { Name = 'po1_03_pipesb50' }, - ['-2142260378'] = { Name = 'po1_03_ramp01' }, - ['569514827'] = { Name = 'po1_03_roadmarkings_01' }, - ['-2036407137'] = { Name = 'po1_03_roadmarkings_02' }, - ['373095380'] = { Name = 'po1_03_sail002' }, - ['-1982818403'] = { Name = 'po1_03_sail01' }, - ['1170605559'] = { Name = 'po1_03_shed01_det_01' }, - ['-1954016902'] = { Name = 'po1_03_shed01_det_02' }, - ['-1076200930'] = { Name = 'po1_03_shed01_det_03' }, - ['-292300912'] = { Name = 'po1_03_shed01_det_04' }, - ['2107689645'] = { Name = 'po1_03_shed01' }, - ['-1274030152'] = { Name = 'po1_03_side03' }, - ['-1511574939'] = { Name = 'po1_03_side038_det' }, - ['837247775'] = { Name = 'po1_03_side038_det1' }, - ['644533123'] = { Name = 'po1_03_side038' }, - ['1788630221'] = { Name = 'po1_03_side041' }, - ['422823946'] = { Name = 'po1_03_side059_det' }, - ['-1872420466'] = { Name = 'po1_03_side059' }, - ['-31247540'] = { Name = 'po1_03_side063' }, - ['2100198307'] = { Name = 'po1_03_side15' }, - ['44032215'] = { Name = 'po1_03_sideref_iref001' }, - ['-1347208457'] = { Name = 'po1_03_sideref_iref002' }, - ['-1587241382'] = { Name = 'po1_03_sideref_iref003' }, - ['565387005'] = { Name = 'po1_03_sideref_iref004' }, - ['1272542025'] = { Name = 'po1_03_sideref_iref005' }, - ['1011340326'] = { Name = 'po1_03_sideref_iref006' }, - ['-427546464'] = { Name = 'po1_03_sideref_iref007' }, - ['-2094374426'] = { Name = 'po1_03_sideref_iref008' }, - ['793295396'] = { Name = 'po1_03_sideref_iref009' }, - ['-720469096'] = { Name = 'po1_03_sideref' }, - ['-1865683825'] = { Name = 'po1_03_test_wire' }, - ['2026563338'] = { Name = 'po1_03_test_wire2' }, - ['239309309'] = { Name = 'po1_03_test_wire3' }, - ['14343662'] = { Name = 'po1_03_tug_det_01' }, - ['-1345867236'] = { Name = 'po1_03_tug' }, - ['243949632'] = { Name = 'po1_03_tyremaster' }, - ['-566191252'] = { Name = 'po1_03_yard00_det01' }, - ['-319014685'] = { Name = 'po1_03_yard00_det02' }, - ['1153528623'] = { Name = 'po1_03_yard00' }, - ['-1710431507'] = { Name = 'po1_03_yard00a_det' }, - ['654290606'] = { Name = 'po1_03_yard00a' }, - ['-2022855234'] = { Name = 'po1_03_yard00b_det' }, - ['2094092353'] = { Name = 'po1_03_yard00b_ladder' }, - ['378146243'] = { Name = 'po1_03_yard00b' }, - ['310171877'] = { Name = 'po1_03_yard00c_det' }, - ['623291104'] = { Name = 'po1_03_yard00c' }, - ['192378754'] = { Name = 'po1_03_yard00d' }, - ['-966172298'] = { Name = 'po1_03_yard00da' }, - ['126041386'] = { Name = 'po1_04_b01c_det' }, - ['-228943037'] = { Name = 'po1_04_bridge_d' }, - ['1527377052'] = { Name = 'po1_04_bridge_m' }, - ['981805300'] = { Name = 'po1_04_bridge1' }, - ['-188277467'] = { Name = 'po1_04_bridge2' }, - ['756969006'] = { Name = 'po1_04_bridgeladder_01' }, - ['1998559697'] = { Name = 'po1_04_bridgeladder_2' }, - ['-1326084740'] = { Name = 'po1_04_bridgeladder_3' }, - ['-576461096'] = { Name = 'po1_04_bridgeladder_4' }, - ['259082870'] = { Name = 'po1_04_bridgeladder_5' }, - ['-1043779805'] = { Name = 'po1_04_bridgeladder_6' }, - ['-1005714047'] = { Name = 'po1_04_brigerail01' }, - ['1162053614'] = { Name = 'po1_04_brigerail02' }, - ['2123954840'] = { Name = 'po1_04_brigerail03' }, - ['1874353367'] = { Name = 'po1_04_brigerail04' }, - ['-1719226253'] = { Name = 'po1_04_brigerail05' }, - ['467547428'] = { Name = 'po1_04_brigerail06' }, - ['899639462'] = { Name = 'po1_04_brigerail07' }, - ['650693369'] = { Name = 'po1_04_brigerail08' }, - ['1484959340'] = { Name = 'po1_04_brigerail09' }, - ['2006176305'] = { Name = 'po1_04_build_01' }, - ['1170958955'] = { Name = 'po1_04_build_01b' }, - ['1429276942'] = { Name = 'po1_04_build_01c' }, - ['-1670734882'] = { Name = 'po1_04_build_03' }, - ['1777414222'] = { Name = 'po1_04_build_03b' }, - ['707362498'] = { Name = 'po1_04_build_07_b' }, - ['-753399488'] = { Name = 'po1_04_build_07' }, - ['85191991'] = { Name = 'po1_04_build_08' }, - ['1497635066'] = { Name = 'po1_04_build_09' }, - ['1796141333'] = { Name = 'po1_04_build_09a' }, - ['-1020845760'] = { Name = 'po1_04_build_09b' }, - ['-1058136882'] = { Name = 'po1_04_build_09c' }, - ['-503513759'] = { Name = 'po1_04_build_09cut' }, - ['-629437867'] = { Name = 'po1_04_build_105' }, - ['582959369'] = { Name = 'po1_04_build_105b' }, - ['-1738527675'] = { Name = 'po1_04_build_105z' }, - ['879053219'] = { Name = 'po1_04_build_105zb' }, - ['-1897665451'] = { Name = 'po1_04_build_11' }, - ['-1238319552'] = { Name = 'po1_04_build_11a' }, - ['-59290080'] = { Name = 'po1_04_build_12_lod' }, - ['-1658222368'] = { Name = 'po1_04_build_12' }, - ['1799234826'] = { Name = 'po1_04_build_13' }, - ['1635479776'] = { Name = 'po1_04_build_16_nu' }, - ['888518882'] = { Name = 'po1_04_build_16' }, - ['-1875127549'] = { Name = 'po1_04_build_16b' }, - ['-1307866837'] = { Name = 'po1_04_build_18_1' }, - ['-1000985152'] = { Name = 'po1_04_build_18_2' }, - ['279900245'] = { Name = 'po1_04_build_18' }, - ['1970316337'] = { Name = 'po1_04_build_18a' }, - ['-2085470028'] = { Name = 'po1_04_build_18b' }, - ['506459565'] = { Name = 'po1_04_build_18c' }, - ['-5022470'] = { Name = 'po1_04_build_19_a' }, - ['762198127'] = { Name = 'po1_04_build_19_b' }, - ['1154901823'] = { Name = 'po1_04_build_19_c' }, - ['848282290'] = { Name = 'po1_04_build_19_d' }, - ['1269986563'] = { Name = 'po1_04_build_19_e' }, - ['39932858'] = { Name = 'po1_04_build_19' }, - ['-965997327'] = { Name = 'po1_04_build_20' }, - ['-56166042'] = { Name = 'po1_04_build_21' }, - ['-771998876'] = { Name = 'po1_04_build_21cut' }, - ['1646156810'] = { Name = 'po1_04_build_22b' }, - ['592824003'] = { Name = 'po1_04_build_23' }, - ['337356883'] = { Name = 'po1_04_build_26' }, - ['1450630039'] = { Name = 'po1_04_build_26b' }, - ['1210924804'] = { Name = 'po1_04_build_26c' }, - ['346158591'] = { Name = 'po1_04_build_30' }, - ['-2076180423'] = { Name = 'po1_04_build_30a' }, - ['-1100286834'] = { Name = 'po1_04_build_30b' }, - ['1679146981'] = { Name = 'po1_04_build_30d' }, - ['-1495426396'] = { Name = 'po1_04_build_30r1' }, - ['-1254574246'] = { Name = 'po1_04_build_30r2' }, - ['1641178232'] = { Name = 'po1_04_build_41e' }, - ['-1525122754'] = { Name = 'po1_04_buthole' }, - ['-197586652'] = { Name = 'po1_04_cablemesh_1_tstd' }, - ['-1856197429'] = { Name = 'po1_04_cablemesh_2_tstd' }, - ['-778937891'] = { Name = 'po1_04_cage' }, - ['-899167612'] = { Name = 'po1_04_cage2' }, - ['2141598978'] = { Name = 'po1_04_cage3' }, - ['181963840'] = { Name = 'po1_04_ce_ladder' }, - ['-63016951'] = { Name = 'po1_04_ce_ladder002' }, - ['1597216176'] = { Name = 'po1_04_ce_xr_ctr1_' }, - ['675030978'] = { Name = 'po1_04_ce_xr_ctr1c' }, - ['1806675948'] = { Name = 'po1_04_ce_xr_ctr2b' }, - ['-302351282'] = { Name = 'po1_04_ctr2brl' }, - ['1315715287'] = { Name = 'po1_04_decal_02' }, - ['1010701435'] = { Name = 'po1_04_decal_03' }, - ['-222124821'] = { Name = 'po1_04_decal_03a' }, - ['-528482202'] = { Name = 'po1_04_decal_03b' }, - ['-206893432'] = { Name = 'po1_04_decal_05c' }, - ['2036698821'] = { Name = 'po1_04_decal_06' }, - ['1996035614'] = { Name = 'po1_04_decal_06b' }, - ['358336183'] = { Name = 'po1_04_decal_09' }, - ['-1126231517'] = { Name = 'po1_04_decal_10' }, - ['788297316'] = { Name = 'po1_04_decal_11' }, - ['-2071854217'] = { Name = 'po1_04_dirt' }, - ['-597091967'] = { Name = 'po1_04_dirt1' }, - ['162609957'] = { Name = 'po1_04_domez' }, - ['1174187718'] = { Name = 'po1_04_factdecal' }, - ['-1985804380'] = { Name = 'po1_04_fencehumper1_r' }, - ['740473758'] = { Name = 'po1_04_fencehumper2_r' }, - ['168646958'] = { Name = 'po1_04_fencehumper2_r001' }, - ['62718235'] = { Name = 'po1_04_fencehumper4_r' }, - ['-2147199698'] = { Name = 'po1_04_floatgrass' }, - ['567466809'] = { Name = 'po1_04_frame01' }, - ['-1232337751'] = { Name = 'po1_04_frame02' }, - ['-1948302196'] = { Name = 'po1_04_frameb01' }, - ['821172762'] = { Name = 'po1_04_gav_jumps2' }, - ['274626410'] = { Name = 'po1_04_gav_jumps2a' }, - ['-2032844693'] = { Name = 'po1_04_glue_03' }, - ['-1981888942'] = { Name = 'po1_04_glue_04' }, - ['-1203931957'] = { Name = 'po1_04_hump004' }, - ['643120657'] = { Name = 'po1_04_hump1' }, - ['1076140214'] = { Name = 'po1_04_kerbs' }, - ['-622821593'] = { Name = 'po1_04_land01_2' }, - ['1772428466'] = { Name = 'po1_04_land01_3' }, - ['1837311086'] = { Name = 'po1_04_land01_4' }, - ['1183294234'] = { Name = 'po1_04_land01_proxchd' }, - ['-369490200'] = { Name = 'po1_04_land01_sw' }, - ['2130379010'] = { Name = 'po1_04_land01' }, - ['1756051184'] = { Name = 'po1_04_land01shadoff' }, - ['-188280769'] = { Name = 'po1_04_lines01' }, - ['-726052824'] = { Name = 'po1_04_lines02' }, - ['-1300100166'] = { Name = 'po1_04_lines03' }, - ['-236085988'] = { Name = 'po1_04_newgrnd_shadoff' }, - ['-1380676042'] = { Name = 'po1_04_pipe_08b' }, - ['1471623081'] = { Name = 'po1_04_pipe_08ba' }, - ['554401543'] = { Name = 'po1_04_pipe09' }, - ['1300501444'] = { Name = 'po1_04_pipedetails01' }, - ['-880682223'] = { Name = 'po1_04_pipes_a' }, - ['2038839067'] = { Name = 'po1_04_pipes_b' }, - ['1721995606'] = { Name = 'po1_04_pipes_c' }, - ['1437469779'] = { Name = 'po1_04_pipes_det' }, - ['1532207746'] = { Name = 'po1_04_pipes' }, - ['-1020016526'] = { Name = 'po1_04_pipese' }, - ['-1516583410'] = { Name = 'po1_04_railline01' }, - ['-1187910340'] = { Name = 'po1_04_railline02' }, - ['-1970794519'] = { Name = 'po1_04_railline03' }, - ['-337587559'] = { Name = 'po1_04_railline04' }, - ['1887330626'] = { Name = 'po1_04_shadprox01' }, - ['1658570237'] = { Name = 'po1_04_shadprox02' }, - ['-1258547467'] = { Name = 'po1_04_sign001' }, - ['1871123721'] = { Name = 'po1_04_signsgdet' }, - ['-523427058'] = { Name = 'po1_04_signsgg_a' }, - ['-753432669'] = { Name = 'po1_04_signsgg_b' }, - ['-2007600710'] = { Name = 'po1_04_signsgg_c' }, - ['711470383'] = { Name = 'po1_04_signsgg' }, - ['-727386825'] = { Name = 'po1_04_silorail00' }, - ['-1051341159'] = { Name = 'po1_04_silorail01' }, - ['1866050142'] = { Name = 'po1_04_silorail02' }, - ['-246075753'] = { Name = 'po1_04_silorail03' }, - ['1745324759'] = { Name = 'po1_04_staircase01' }, - ['-1711038806'] = { Name = 'po1_04_supp01' }, - ['-1017777842'] = { Name = 'po1_04_supp02' }, - ['478011478'] = { Name = 'po1_04_tankbuilding01' }, - ['22752726'] = { Name = 'po1_04_tankbuilding02_lod' }, - ['315542776'] = { Name = 'po1_04_tankbuilding02' }, - ['985261064'] = { Name = 'po1_04_text002' }, - ['671187007'] = { Name = 'po1_04_weedy01' }, - ['1084981327'] = { Name = 'po1_05__rail1b_lod' }, - ['-1254299309'] = { Name = 'po1_05__rail1b' }, - ['-978764361'] = { Name = 'po1_05_109' }, - ['149832192'] = { Name = 'po1_05_123' }, - ['-1990533733'] = { Name = 'po1_05_126_pipe1_lod' }, - ['-1026727838'] = { Name = 'po1_05_126_pipe1' }, - ['475883742'] = { Name = 'po1_05_126' }, - ['-599443005'] = { Name = 'po1_05_130' }, - ['46827213'] = { Name = 'po1_05_131' }, - ['2000495076'] = { Name = 'po1_05_bcloth_01' }, - ['1735819863'] = { Name = 'po1_05_bcloth_02' }, - ['-946389586'] = { Name = 'po1_05_billboard_01' }, - ['2057610182'] = { Name = 'po1_05_billboard_02' }, - ['-2131077448'] = { Name = 'po1_05_bridge_a' }, - ['489382911'] = { Name = 'po1_05_bridge_dec_1' }, - ['665232748'] = { Name = 'po1_05_bridge_dec_1a' }, - ['-167209542'] = { Name = 'po1_05_bridge_dec_2' }, - ['-4347612'] = { Name = 'po1_05_bridge_dec_3' }, - ['-455539563'] = { Name = 'po1_05_bridge' }, - ['-2036269974'] = { Name = 'po1_05_bridgebas_dec' }, - ['-1510903556'] = { Name = 'po1_05_bridgecables1_lod' }, - ['906537577'] = { Name = 'po1_05_bridgecables1' }, - ['-1893315521'] = { Name = 'po1_05_bridgecables2_lod' }, - ['690983095'] = { Name = 'po1_05_bridgecables2' }, - ['-889154896'] = { Name = 'po1_05_bridgecables3_lod' }, - ['540966629'] = { Name = 'po1_05_bridgecables3' }, - ['1458865930'] = { Name = 'po1_05_bridgerail1_lod' }, - ['63401758'] = { Name = 'po1_05_bridgerail1' }, - ['-824305343'] = { Name = 'po1_05_bridgerail1a_lod' }, - ['-910791121'] = { Name = 'po1_05_bridgerail1a' }, - ['467167509'] = { Name = 'po1_05_bridgerail2_lod' }, - ['-301448288'] = { Name = 'po1_05_bridgerail2' }, - ['-1560370992'] = { Name = 'po1_05_bridgerail2a_lod' }, - ['-1811348467'] = { Name = 'po1_05_bridgerail2a' }, - ['-1897781382'] = { Name = 'po1_05_bridgerail3_lod' }, - ['-1535692681'] = { Name = 'po1_05_bridgerail3' }, - ['1848971703'] = { Name = 'po1_05_bridgerail3a_lod' }, - ['-1006246642'] = { Name = 'po1_05_bridgerail3a' }, - ['-606638156'] = { Name = 'po1_05_bridgg2' }, - ['-201143825'] = { Name = 'po1_05_brig_raila_lod' }, - ['-1815761339'] = { Name = 'po1_05_brig_raila' }, - ['535145730'] = { Name = 'po1_05_brig_railb_lod' }, - ['-1583986202'] = { Name = 'po1_05_brig_railb' }, - ['1297965129'] = { Name = 'po1_05_brig_railc_lod' }, - ['-286727030'] = { Name = 'po1_05_brig_railc' }, - ['1312484325'] = { Name = 'po1_05_brig_raild_lod' }, - ['2093056061'] = { Name = 'po1_05_brig_raild' }, - ['-1602369456'] = { Name = 'po1_05_brig_raile_lod' }, - ['-725831630'] = { Name = 'po1_05_brig_raile' }, - ['1652048945'] = { Name = 'po1_05_brig_railf_lod' }, - ['-355476392'] = { Name = 'po1_05_brig_railf' }, - ['-839152189'] = { Name = 'po1_05_briggrail_lod' }, - ['1760766652'] = { Name = 'po1_05_briggrail' }, - ['694269418'] = { Name = 'po1_05_briggrail2_lod' }, - ['1755678398'] = { Name = 'po1_05_briggrail2' }, - ['-1174650205'] = { Name = 'po1_05_briggrail3_lod' }, - ['-417332299'] = { Name = 'po1_05_briggrail3' }, - ['-1363775723'] = { Name = 'po1_05_briggrail4_lod' }, - ['416671520'] = { Name = 'po1_05_briggrail4' }, - ['-450979891'] = { Name = 'po1_05_briggrail5_lod' }, - ['329899208'] = { Name = 'po1_05_briggrail5' }, - ['608408090'] = { Name = 'po1_05_build0x7d004' }, - ['1422102266'] = { Name = 'po1_05_building01' }, - ['-1500286208'] = { Name = 'po1_05_building01fizz' }, - ['1526707497'] = { Name = 'po1_05_building01fizz2_lod' }, - ['-502976012'] = { Name = 'po1_05_building01fizz2' }, - ['835445578'] = { Name = 'po1_05_building02_fizz' }, - ['2121654878'] = { Name = 'po1_05_building02' }, - ['1866941441'] = { Name = 'po1_05_building03' }, - ['704756087'] = { Name = 'po1_05_building04' }, - ['-907807015'] = { Name = 'po1_05_building05_fizzybit_lod' }, - ['1549468601'] = { Name = 'po1_05_building05_fizzybit' }, - ['363630797'] = { Name = 'po1_05_building05' }, - ['1197110312'] = { Name = 'po1_05_building06' }, - ['1054340741'] = { Name = 'po1_05_building08_fiz_lod' }, - ['151284861'] = { Name = 'po1_05_building08_fiz' }, - ['-761525595'] = { Name = 'po1_05_building08' }, - ['-1437497497'] = { Name = 'po1_05_building09_fiz_lod' }, - ['172009824'] = { Name = 'po1_05_building09_fiz' }, - ['-502093418'] = { Name = 'po1_05_building09' }, - ['-1750851035'] = { Name = 'po1_05_buildmesh239_b' }, - ['-389504427'] = { Name = 'po1_05_buildmesh239' }, - ['-188926150'] = { Name = 'po1_05_buildmesh240' }, - ['-478440265'] = { Name = 'po1_05_buildmesh241' }, - ['134264427'] = { Name = 'po1_05_buildmesh242_b' }, - ['-813863753'] = { Name = 'po1_05_buildmesh242' }, - ['-1119958982'] = { Name = 'po1_05_buildmesh243' }, - ['802861303'] = { Name = 'po1_05_buildmesh245_b' }, - ['-1714290335'] = { Name = 'po1_05_buildmesh245' }, - ['1064914093'] = { Name = 'po1_05_buildmesh248' }, - ['719260465'] = { Name = 'po1_05_cables' }, - ['-1156055816'] = { Name = 'po1_05_ce_xr_ctr2_rsref001' }, - ['-1877488064'] = { Name = 'po1_05_ce_xr_ctr2001_d' }, - ['81959320'] = { Name = 'po1_05_ce_xr_ctr2ss_d' }, - ['669089190'] = { Name = 'po1_05_ce_xr_ctr2ss' }, - ['2144096245'] = { Name = 'po1_05_ce_xr003_det' }, - ['-55234546'] = { Name = 'po1_05_ce_xr003' }, - ['-1982942298'] = { Name = 'po1_05_coastwee_1a' }, - ['-1699981983'] = { Name = 'po1_05_coastwee_1b' }, - ['-1401259779'] = { Name = 'po1_05_coastwee_1c' }, - ['753400282'] = { Name = 'po1_05_coastwee_1d' }, - ['-499727164'] = { Name = 'po1_05_cont006' }, - ['335358032'] = { Name = 'po1_05_cont007' }, - ['1148844142'] = { Name = 'po1_05_decalsn05' }, - ['1775972320'] = { Name = 'po1_05_decalsn16' }, - ['1878894848'] = { Name = 'po1_05_det_lod' }, - ['1957804961'] = { Name = 'po1_05_det1' }, - ['-1815680041'] = { Name = 'po1_05_det2_lod' }, - ['508727000'] = { Name = 'po1_05_det2' }, - ['1763833750'] = { Name = 'po1_05_det3_lod' }, - ['1344139886'] = { Name = 'po1_05_det3' }, - ['1013467458'] = { Name = 'po1_05_det4_lod' }, - ['-102775309'] = { Name = 'po1_05_det4' }, - ['267542994'] = { Name = 'po1_05_fact_detailfade' }, - ['-141116766'] = { Name = 'po1_05_factory1' }, - ['641316648'] = { Name = 'po1_05_factory2_d_lod' }, - ['-34649522'] = { Name = 'po1_05_factory2_d' }, - ['-436462312'] = { Name = 'po1_05_factory2_fizz1' }, - ['-689471765'] = { Name = 'po1_05_factory2_fizz2' }, - ['1243144105'] = { Name = 'po1_05_factory2' }, - ['148142672'] = { Name = 'po1_05_factory4_fiz1_lod' }, - ['1743415410'] = { Name = 'po1_05_factory4_fiz1' }, - ['-1279905066'] = { Name = 'po1_05_factory4' }, - ['263804192'] = { Name = 'po1_05_factory4rail_lod' }, - ['-2015233099'] = { Name = 'po1_05_factory4rail' }, - ['79438364'] = { Name = 'po1_05_factory4steps_lod' }, - ['-1670038272'] = { Name = 'po1_05_factory4steps' }, - ['-452593986'] = { Name = 'po1_05_fenfiz1_lod' }, - ['-938550342'] = { Name = 'po1_05_fenfiz1' }, - ['474526474'] = { Name = 'po1_05_fenfiz10_lod' }, - ['2129524860'] = { Name = 'po1_05_fenfiz10' }, - ['-1600370494'] = { Name = 'po1_05_fenfiz11_lod' }, - ['-1519336127'] = { Name = 'po1_05_fenfiz11' }, - ['-472959968'] = { Name = 'po1_05_fenfiz12_lod' }, - ['1515302724'] = { Name = 'po1_05_fenfiz12' }, - ['-1811272826'] = { Name = 'po1_05_fenfiz13_lod' }, - ['192745884'] = { Name = 'po1_05_fenfiz13' }, - ['910942911'] = { Name = 'po1_05_fenfiz14_lod' }, - ['1035204105'] = { Name = 'po1_05_fenfiz14' }, - ['82863611'] = { Name = 'po1_05_fenfiz15_lod' }, - ['1859868759'] = { Name = 'po1_05_fenfiz15' }, - ['-1939262309'] = { Name = 'po1_05_fenfiz16_lod' }, - ['556285170'] = { Name = 'po1_05_fenfiz16' }, - ['1523802772'] = { Name = 'po1_05_fenfiz17_lod' }, - ['-110858929'] = { Name = 'po1_05_fenfiz17' }, - ['435656123'] = { Name = 'po1_05_fenfiz2_lod' }, - ['1287972132'] = { Name = 'po1_05_fenfiz2' }, - ['-856580085'] = { Name = 'po1_05_fenfiz3_lod' }, - ['495191715'] = { Name = 'po1_05_fenfiz3' }, - ['1081430538'] = { Name = 'po1_05_fenfiz4_lod' }, - ['812788863'] = { Name = 'po1_05_fenfiz4' }, - ['-1891752478'] = { Name = 'po1_05_fenfiz5_lod' }, - ['2130135436'] = { Name = 'po1_05_fenfiz5' }, - ['-1106917212'] = { Name = 'po1_05_fenfiz6_lod' }, - ['-2085203210'] = { Name = 'po1_05_fenfiz6' }, - ['-1253337593'] = { Name = 'po1_05_fenfiz7_lod' }, - ['851784065'] = { Name = 'po1_05_fenfiz7' }, - ['404128523'] = { Name = 'po1_05_fenfiz8_lod' }, - ['1817191466'] = { Name = 'po1_05_fenfiz8' }, - ['259902039'] = { Name = 'po1_05_fenfiz9_lod' }, - ['-1709801546'] = { Name = 'po1_05_fenfiz9' }, - ['-1165163214'] = { Name = 'po1_05_fizzcont1_lod' }, - ['1955260158'] = { Name = 'po1_05_fizzcont1' }, - ['-35092589'] = { Name = 'po1_05_flagpole_1_lod' }, - ['-336212275'] = { Name = 'po1_05_flagpole_1' }, - ['1127090102'] = { Name = 'po1_05_flagsup002' }, - ['36039069'] = { Name = 'po1_05_flagsup01' }, - ['2072369678'] = { Name = 'po1_05_gav_jump_slod' }, - ['-302839145'] = { Name = 'po1_05_gav_jump' }, - ['-1152439189'] = { Name = 'po1_05_gg_ladlod1' }, - ['-229514744'] = { Name = 'po1_05_gg_nb_a_fiz' }, - ['542163280'] = { Name = 'po1_05_gg_nb_a_rail_d' }, - ['827150909'] = { Name = 'po1_05_gg_nb_a_rail' }, - ['1143956595'] = { Name = 'po1_05_gg_nb_a' }, - ['178968695'] = { Name = 'po1_05_gg_nb_b_d' }, - ['1454246216'] = { Name = 'po1_05_gg_nb_b' }, - ['1210187641'] = { Name = 'po1_05_gg_sig013b_frame_lod' }, - ['-1993515658'] = { Name = 'po1_05_gg_sig013b_frame' }, - ['-925661858'] = { Name = 'po1_05_gg_sig013b_frameb_lod' }, - ['442706047'] = { Name = 'po1_05_gg_sig013b_frameb' }, - ['-454078787'] = { Name = 'po1_05_gg_sig013b' }, - ['1522186778'] = { Name = 'po1_05_gg_sig013s' }, - ['651299589'] = { Name = 'po1_05_gg_sig014' }, - ['-809860780'] = { Name = 'po1_05_gg_upramp' }, - ['-28029162'] = { Name = 'po1_05_gg2_ladder' }, - ['1842091215'] = { Name = 'po1_05_ggmw1_bridgesup' }, - ['684664744'] = { Name = 'po1_05_gpip1_lod' }, - ['-617057022'] = { Name = 'po1_05_gpip1' }, - ['-16850065'] = { Name = 'po1_05_gpip2_lod' }, - ['-359459913'] = { Name = 'po1_05_gpip2' }, - ['-1208077239'] = { Name = 'po1_05_gpip3_lod' }, - ['-17941395'] = { Name = 'po1_05_gpip3' }, - ['2096287147'] = { Name = 'po1_05_grail1a_lod' }, - ['688240612'] = { Name = 'po1_05_grail1a' }, - ['55779374'] = { Name = 'po1_05_grail1c_lod' }, - ['-1546179215'] = { Name = 'po1_05_grail1c' }, - ['-403024708'] = { Name = 'po1_05_ground01' }, - ['677149273'] = { Name = 'po1_05_ground02_decal' }, - ['482436273'] = { Name = 'po1_05_ground02_o1' }, - ['-361070556'] = { Name = 'po1_05_ground02_o2' }, - ['-148049119'] = { Name = 'po1_05_ground02' }, - ['1370872768'] = { Name = 'po1_05_ground03_decal' }, - ['1317370727'] = { Name = 'po1_05_ground03_o1' }, - ['2079512121'] = { Name = 'po1_05_ground03_o2' }, - ['-1923670153'] = { Name = 'po1_05_ground03' }, - ['-702837516'] = { Name = 'po1_05_ground04_decal' }, - ['-625493922'] = { Name = 'po1_05_ground04_o1' }, - ['798974508'] = { Name = 'po1_05_ground04_o2' }, - ['764894748'] = { Name = 'po1_05_ground04_o3' }, - ['-1700742646'] = { Name = 'po1_05_ground04' }, - ['1526159168'] = { Name = 'po1_05_ground05_o2' }, - ['1752035885'] = { Name = 'po1_05_ground05_o3' }, - ['902226968'] = { Name = 'po1_05_hiway' }, - ['1268833003'] = { Name = 'po1_05_judesbit' }, - ['-400144801'] = { Name = 'po1_05_mainbridge' }, - ['481853201'] = { Name = 'po1_05_mainbridge2' }, - ['-1716501234'] = { Name = 'po1_05_new_entpop_d_lod' }, - ['710884872'] = { Name = 'po1_05_new_entpop_d' }, - ['-861460750'] = { Name = 'po1_05_new_entpop' }, - ['1680322394'] = { Name = 'po1_05_object321d' }, - ['-589853049'] = { Name = 'po1_05_object322' }, - ['-293024635'] = { Name = 'po1_05_po1_06_build67' }, - ['-1525135333'] = { Name = 'po1_05_props_combo01_slod' }, - ['952997663'] = { Name = 'po1_05_props_combo02_slod' }, - ['-2143313857'] = { Name = 'po1_05_props_combo04_slod' }, - ['1794587176'] = { Name = 'po1_05_props_combo05_slod' }, - ['-1844668206'] = { Name = 'po1_05_props_combo06_slod' }, - ['1368287930'] = { Name = 'po1_05_props_combo07_slod' }, - ['609073646'] = { Name = 'po1_05_railriver1_lod' }, - ['-1110300094'] = { Name = 'po1_05_railriver1' }, - ['1333332491'] = { Name = 'po1_05_railriver2_lod' }, - ['-1342337383'] = { Name = 'po1_05_railriver2' }, - ['-2024615811'] = { Name = 'po1_05_railriver3_lod' }, - ['-1702009939'] = { Name = 'po1_05_railriver3' }, - ['565913684'] = { Name = 'po1_05_rocks1' }, - ['332958863'] = { Name = 'po1_05_rocks2' }, - ['184938441'] = { Name = 'po1_05_sground' }, - ['606888361'] = { Name = 'po1_05_signsgg' }, - ['-911071645'] = { Name = 'po1_05_signsgg2_lod' }, - ['937194792'] = { Name = 'po1_05_signsggframe_lod' }, - ['-2075847278'] = { Name = 'po1_05_signsggframe' }, - ['-1675487732'] = { Name = 'po1_05_traintracks' }, - ['-1351839993'] = { Name = 'po1_05_trax1_lod' }, - ['-536919101'] = { Name = 'po1_05_trax1' }, - ['769204252'] = { Name = 'po1_05_trax2_lod' }, - ['243409096'] = { Name = 'po1_05_trax2' }, - ['-1887669879'] = { Name = 'po1_05_trax3_lod' }, - ['1011579994'] = { Name = 'po1_05_trax3' }, - ['40260892'] = { Name = 'po1_05_tri_details_fiz1_lod' }, - ['1274201628'] = { Name = 'po1_05_tri_details_fiz1' }, - ['1767516564'] = { Name = 'po1_05_tri_details_fiz2_lod' }, - ['1049209674'] = { Name = 'po1_05_tri_details_fiz2' }, - ['1811238392'] = { Name = 'po1_05_tri_details_fiz3_lod' }, - ['826708164'] = { Name = 'po1_05_tri_details_fiz3' }, - ['-1228901940'] = { Name = 'po1_05_tri_details_fiz4_lod' }, - ['591361206'] = { Name = 'po1_05_tri_details_fiz4' }, - ['407065699'] = { Name = 'po1_05_tri_details_lod' }, - ['-1877313693'] = { Name = 'po1_05_tri_details' }, - ['1846034233'] = { Name = 'po1_05_triladders' }, - ['-953848090'] = { Name = 'po1_05_triladders2_lod' }, - ['1667454291'] = { Name = 'po1_05_triladders2' }, - ['-1857427626'] = { Name = 'po1_05_triladders5_lod' }, - ['-1774077165'] = { Name = 'po1_05_triladders5' }, - ['-2089738501'] = { Name = 'po1_05_underbridge_steps1_lod' }, - ['-48811936'] = { Name = 'po1_05_underbridge_steps1' }, - ['-998439605'] = { Name = 'po1_05_underbridge_steps2_lod' }, - ['1399971092'] = { Name = 'po1_05_underbridge_steps2' }, - ['-1420279948'] = { Name = 'po1_05_wall007' }, - ['1337807905'] = { Name = 'po1_06__det_01_lod' }, - ['1114530011'] = { Name = 'po1_06__ggd' }, - ['187495455'] = { Name = 'po1_06__ggd2' }, - ['1462808983'] = { Name = 'po1_06_brumz' }, - ['938908712'] = { Name = 'po1_06_build071_brand' }, - ['392907638'] = { Name = 'po1_06_build071_ladder' }, - ['-29382018'] = { Name = 'po1_06_build071_ladder1' }, - ['-1332716734'] = { Name = 'po1_06_build071_txt' }, - ['-217403376'] = { Name = 'po1_06_build071' }, - ['1597642627'] = { Name = 'po1_06_build078_ov' }, - ['-1925167862'] = { Name = 'po1_06_build079_dt' }, - ['1710607779'] = { Name = 'po1_06_build140_ladder' }, - ['1530882553'] = { Name = 'po1_06_build140' }, - ['-2125548005'] = { Name = 'po1_06_build141' }, - ['915644578'] = { Name = 'po1_06_build142' }, - ['1517624898'] = { Name = 'po1_06_build143_ladder' }, - ['-1334892505'] = { Name = 'po1_06_build143_ladder1' }, - ['751930654'] = { Name = 'po1_06_build143' }, - ['644087867'] = { Name = 'po1_06_build147' }, - ['628096595'] = { Name = 'po1_06_build148' }, - ['333798206'] = { Name = 'po1_06_build149' }, - ['570652202'] = { Name = 'po1_06_build150' }, - ['339761828'] = { Name = 'po1_06_build151' }, - ['-19419181'] = { Name = 'po1_06_build152' }, - ['-283406245'] = { Name = 'po1_06_build153' }, - ['-1412036175'] = { Name = 'po1_06_build154' }, - ['1333612797'] = { Name = 'po1_06_build159' }, - ['1648292112'] = { Name = 'po1_06_build160' }, - ['1475665020'] = { Name = 'po1_06_build161' }, - ['-1858973950'] = { Name = 'po1_06_build165' }, - ['1814004957'] = { Name = 'po1_06_build167' }, - ['-1806478020'] = { Name = 'po1_06_build168' }, - ['-988662087'] = { Name = 'po1_06_build169' }, - ['-2041628664'] = { Name = 'po1_06_build171' }, - ['-1257400956'] = { Name = 'po1_06_build172' }, - ['-489852669'] = { Name = 'po1_06_build173' }, - ['1865954131'] = { Name = 'po1_06_carpark_bumpers' }, - ['-716505356'] = { Name = 'po1_06_carparkbumps' }, - ['1864522906'] = { Name = 'po1_06_carparkbumpsb' }, - ['-1429496043'] = { Name = 'po1_06_decal' }, - ['529049897'] = { Name = 'po1_06_det_02_lod' }, - ['-1785623842'] = { Name = 'po1_06_detail05' }, - ['1514110966'] = { Name = 'po1_06_elevateddecals' }, - ['214410533'] = { Name = 'po1_06_factory4_detail_lod' }, - ['-1394519360'] = { Name = 'po1_06_factory4_detail' }, - ['-325704528'] = { Name = 'po1_06_factory4' }, - ['106699452'] = { Name = 'po1_06_fencefade' }, - ['-1179768139'] = { Name = 'po1_06_fizent1' }, - ['-2144419061'] = { Name = 'po1_06_g_decals_01' }, - ['7053731'] = { Name = 'po1_06_g_details_01' }, - ['1306921155'] = { Name = 'po1_06_garage_01' }, - ['872372080'] = { Name = 'po1_06_gg_fencefade' }, - ['-213934563'] = { Name = 'po1_06_gg_ladder' }, - ['147450732'] = { Name = 'po1_06_gg_ladder1_lod007' }, - ['-1812856386'] = { Name = 'po1_06_gg_ladder1_lod008' }, - ['-1542151677'] = { Name = 'po1_06_gg_ladder1_lod009' }, - ['-1747645784'] = { Name = 'po1_06_gg_ladder1_lod010' }, - ['-969906338'] = { Name = 'po1_06_gg_ladder1_lod011' }, - ['-1283800589'] = { Name = 'po1_06_gg_ladder1_lod012' }, - ['1897282859'] = { Name = 'po1_06_gg_ladder1_lod013' }, - ['212956251'] = { Name = 'po1_06_gg_ladder1_lod014' }, - ['-1434931221'] = { Name = 'po1_06_gg_ladder1_lod015' }, - ['-1743910122'] = { Name = 'po1_06_gg_ladder1_lod016' }, - ['-975345996'] = { Name = 'po1_06_gg_ladder1_lod017' }, - ['1172760269'] = { Name = 'po1_06_gg_ladder1_lod018' }, - ['860963234'] = { Name = 'po1_06_gg_ladder1_lod019' }, - ['437981202'] = { Name = 'po1_06_gg_ladder1_lod020' }, - ['1239183252'] = { Name = 'po1_06_gg_ladder1_lod021' }, - ['-1520785773'] = { Name = 'po1_06_gg_ladder1_lod022' }, - ['-1811414034'] = { Name = 'po1_06_gg_ladder1_lod023' }, - ['-1068999570'] = { Name = 'po1_06_gg_ladder1_lod024' }, - ['1853241547'] = { Name = 'po1_06_gg_ladder1_lod025' }, - ['-360435483'] = { Name = 'po1_06_gg_ladder1_lod026' }, - ['-658567845'] = { Name = 'po1_06_gg_ladder1_lod027' }, - ['117434844'] = { Name = 'po1_06_gg_ladder1_lod028' }, - ['-147699135'] = { Name = 'po1_06_gg_ladder1_lod029' }, - ['705573128'] = { Name = 'po1_06_gg_ladder1_lod030' }, - ['453481211'] = { Name = 'po1_06_gg_ladder1_lod031' }, - ['1306654895'] = { Name = 'po1_06_gg_ladder1_lod032' }, - ['1066032128'] = { Name = 'po1_06_gg_ladder1_lod033' }, - ['961915194'] = { Name = 'po1_06_gg_post_decal' }, - ['-1209988802'] = { Name = 'po1_06_gg_seaw1' }, - ['-2114970283'] = { Name = 'po1_06_gg_seaw2' }, - ['-311069594'] = { Name = 'po1_06_gg_seaw3' }, - ['92087413'] = { Name = 'po1_06_gg_seaw4' }, - ['-3729143'] = { Name = 'po1_06_gg_seaw5' }, - ['842229367'] = { Name = 'po1_06_gg_seawdec1' }, - ['98836'] = { Name = 'po1_06_gg_seawdec2' }, - ['1464185019'] = { Name = 'po1_06_gg_seawdec3' }, - ['642731695'] = { Name = 'po1_06_gg_seawdec4' }, - ['-1677868372'] = { Name = 'po1_06_gg_walkway001_r' }, - ['-462208247'] = { Name = 'po1_06_gg_walkway001_r2' }, - ['-1389362883'] = { Name = 'po1_06_gg_walkway001' }, - ['1648925645'] = { Name = 'po1_06_gg_walkway004_r_lod' }, - ['856658117'] = { Name = 'po1_06_gg_walkway004_r' }, - ['-1147886692'] = { Name = 'po1_06_gg_walkway004_r2_lod' }, - ['533698529'] = { Name = 'po1_06_gg_walkway004_r2' }, - ['-461303557'] = { Name = 'po1_06_gg_walkway004_rb_lod' }, - ['1267855217'] = { Name = 'po1_06_gg_walkway004_rb' }, - ['1382435743'] = { Name = 'po1_06_gg_walkway004' }, - ['1329905139'] = { Name = 'po1_06_gg_walkway005_r_lod' }, - ['550320469'] = { Name = 'po1_06_gg_walkway005_r' }, - ['-362822140'] = { Name = 'po1_06_gg_walkway005_r2_lod' }, - ['1820324617'] = { Name = 'po1_06_gg_walkway005_r2' }, - ['1685909452'] = { Name = 'po1_06_gg_walkway005' }, - ['612418441'] = { Name = 'po1_06_gg_ww_canopy_rail_lod' }, - ['-968599077'] = { Name = 'po1_06_gg_ww_canopy_rail' }, - ['-1238824414'] = { Name = 'po1_06_ggfnce_a' }, - ['1114435989'] = { Name = 'po1_06_ggnulan2_dec' }, - ['-1045631411'] = { Name = 'po1_06_ggnulan2' }, - ['-2140367013'] = { Name = 'po1_06_ggnulan2a' }, - ['1734665340'] = { Name = 'po1_06_ggnulan3s' }, - ['522914885'] = { Name = 'po1_06_ggnulan3s0' }, - ['801999505'] = { Name = 'po1_06_global_tex_003' }, - ['-451198692'] = { Name = 'po1_06_glue_012' }, - ['760615980'] = { Name = 'po1_06_glue_02' }, - ['-2012821108'] = { Name = 'po1_06_glue_03' }, - ['-278325169'] = { Name = 'po1_06_glue_04' }, - ['1372255285'] = { Name = 'po1_06_glue_04b001' }, - ['1643674988'] = { Name = 'po1_06_glue_05' }, - ['1033745591'] = { Name = 'po1_06_glue_07' }, - ['-1455584263'] = { Name = 'po1_06_glue_08' }, - ['442691138'] = { Name = 'po1_06_glue_09' }, - ['-856992652'] = { Name = 'po1_06_glue_10' }, - ['-1758595254'] = { Name = 'po1_06_grey005' }, - ['2130671936'] = { Name = 'po1_06_grey3' }, - ['-1409494214'] = { Name = 'po1_06_grey4' }, - ['618011810'] = { Name = 'po1_06_grnddet04' }, - ['778058769'] = { Name = 'po1_06_grornd003' }, - ['-2084641067'] = { Name = 'po1_06_grornd004' }, - ['-1644815549'] = { Name = 'po1_06_grornd005' }, - ['984635006'] = { Name = 'po1_06_gway_03b009' }, - ['2131537810'] = { Name = 'po1_06_hiframe002' }, - ['1115325246'] = { Name = 'po1_06_hiframe1_lod' }, - ['-510600642'] = { Name = 'po1_06_hiframe1' }, - ['-126635734'] = { Name = 'po1_06_hiway_xframe_02a002' }, - ['1551743463'] = { Name = 'po1_06_hway_lod' }, - ['-1957467372'] = { Name = 'po1_06_maingrnd3_deca' }, - ['1068328930'] = { Name = 'po1_06_maingrnd3' }, - ['-1052237568'] = { Name = 'po1_06_new_terminal_ladder' }, - ['-1847936784'] = { Name = 'po1_06_new_terminal_ladder1' }, - ['-2144823924'] = { Name = 'po1_06_new_terminal_ladder2' }, - ['1812229464'] = { Name = 'po1_06_new_terminal_ladder3' }, - ['1438269636'] = { Name = 'po1_06_new_terminal_ladder4' }, - ['769355944'] = { Name = 'po1_06_new_terminal_sig' }, - ['817359532'] = { Name = 'po1_06_new_terminal' }, - ['848916651'] = { Name = 'po1_06_openroad_2_deca' }, - ['1902887775'] = { Name = 'po1_06_openroad_2' }, - ['-943878128'] = { Name = 'po1_06_pipes_gav' }, - ['-193659535'] = { Name = 'po1_06_pipes_gav2' }, - ['1978124699'] = { Name = 'po1_06_po1_03_shed01_det_01' }, - ['-2028737549'] = { Name = 'po1_06_po1_03_shed01_det_02' }, - ['2053549864'] = { Name = 'po1_06_po1_03_shed01' }, - ['854583419'] = { Name = 'po1_06_postrail_lod' }, - ['1247900063'] = { Name = 'po1_06_postrail' }, - ['1965508186'] = { Name = 'po1_06_postrail2_lod' }, - ['930047893'] = { Name = 'po1_06_postrail2' }, - ['-410009828'] = { Name = 'po1_06_postrail3_lod' }, - ['630834154'] = { Name = 'po1_06_postrail3' }, - ['97735248'] = { Name = 'po1_06_postrail4_lod' }, - ['-502121252'] = { Name = 'po1_06_postrail4' }, - ['-592775118'] = { Name = 'po1_06_postrail5_lod' }, - ['-809002937'] = { Name = 'po1_06_postrail5' }, - ['2098146653'] = { Name = 'po1_06_prop_sign_hway_03b' }, - ['828159069'] = { Name = 'po1_06_prop_sign_hway_03b003' }, - ['1467973794'] = { Name = 'po1_06_prop_sign_hway_03b004' }, - ['-118403553'] = { Name = 'po1_06_props_combo_slod' }, - ['-1692873392'] = { Name = 'po1_06_rail_decal' }, - ['1511068713'] = { Name = 'po1_06_road_decals' }, - ['-1483211843'] = { Name = 'po1_06_road_decals2' }, - ['-1745305183'] = { Name = 'po1_06_ropes_north' }, - ['655431326'] = { Name = 'po1_06_ropes_north2' }, - ['880554356'] = { Name = 'po1_06_ropes_north3' }, - ['-533739203'] = { Name = 'po1_06_seawalla_sb' }, - ['610347635'] = { Name = 'po1_06_seawalla' }, - ['431953199'] = { Name = 'po1_06_seawallb' }, - ['133460378'] = { Name = 'po1_06_seawallc' }, - ['-15245344'] = { Name = 'po1_06_seawalld' }, - ['-1796811872'] = { Name = 'po1_06_sechurhut2' }, - ['1426519125'] = { Name = 'po1_06_security_roof' }, - ['-1841505959'] = { Name = 'po1_06_shadow_gnd' }, - ['-293401296'] = { Name = 'po1_06_sig1_a_source' }, - ['-1362111091'] = { Name = 'po1_06_sig1_b_source' }, - ['922767447'] = { Name = 'po1_06_sig1_c_source' }, - ['-40680523'] = { Name = 'po1_06_sig1_d_source' }, - ['-2128377247'] = { Name = 'po1_06_sig1_e_source' }, - ['-392762930'] = { Name = 'po1_06_sig1_f_source' }, - ['-1218737358'] = { Name = 'po1_06_sig1_g_source' }, - ['446891082'] = { Name = 'po1_06_sig1_h_source' }, - ['1003535658'] = { Name = 'po1_06_sig1_i_source' }, - ['1634383414'] = { Name = 'po1_06_sig1_j_source' }, - ['-1944976981'] = { Name = 'po1_06_sig1_k_source' }, - ['1204147362'] = { Name = 'po1_06_sig1_l_source' }, - ['2144317382'] = { Name = 'po1_06_sig1_m_source' }, - ['-395739623'] = { Name = 'po1_06_sig1_n_source' }, - ['1946433204'] = { Name = 'po1_06_sig1_o_source' }, - ['-1798381275'] = { Name = 'po1_06_termiansign' }, - ['4292158'] = { Name = 'po1_06_terminal_graf' }, - ['1328343576'] = { Name = 'po1_06_terminal_graf001' }, - ['57651546'] = { Name = 'po1_06_tgrnd008' }, - ['1404019724'] = { Name = 'po1_06_tgrnd1_deca' }, - ['891955237'] = { Name = 'po1_06_tgrnd1_deca2' }, - ['2006917910'] = { Name = 'po1_06_tgrnd1_ol' }, - ['931109522'] = { Name = 'po1_06_tgrnd1' }, - ['1159577055'] = { Name = 'po1_06_tgrnd2_deca' }, - ['-1968029438'] = { Name = 'po1_06_tgrnd2' }, - ['2138755829'] = { Name = 'po1_06_tgrnd3_deca' }, - ['1410028457'] = { Name = 'po1_06_tgrnd3' }, - ['-1584565357'] = { Name = 'po1_06_tgrnd4_deca' }, - ['1765309955'] = { Name = 'po1_06_tgrnd4' }, - ['-1273181746'] = { Name = 'po1_06_tgrnd5_deca' }, - ['-436111461'] = { Name = 'po1_06_tgrnd5' }, - ['659161377'] = { Name = 'po1_06_tgrnd6_deca' }, - ['-1278110916'] = { Name = 'po1_06_tgrnd6' }, - ['-1975928231'] = { Name = 'po1_06_xtra_signs' }, - ['-1579407723'] = { Name = 'po1_06_zfighto' }, - ['1726590041'] = { Name = 'po1_07_beams01' }, - ['68061840'] = { Name = 'po1_07_cardreader01' }, - ['366292509'] = { Name = 'po1_07_cardreader02' }, - ['-1244219036'] = { Name = 'po1_07_ce_ladder_b' }, - ['-1723184179'] = { Name = 'po1_07_ce_ladder_lod' }, - ['-876535273'] = { Name = 'po1_07_ce_ladder' }, - ['-104891602'] = { Name = 'po1_07_chunky_exdetail1' }, - ['567298895'] = { Name = 'po1_07_chunky_exdetail2' }, - ['479578425'] = { Name = 'po1_07_decal02_boat' }, - ['-122777548'] = { Name = 'po1_07_decal02' }, - ['-688960330'] = { Name = 'po1_07_decal03' }, - ['-124142100'] = { Name = 'po1_07_details01' }, - ['-1033875078'] = { Name = 'po1_07_details02' }, - ['2051752273'] = { Name = 'po1_07_details03' }, - ['1134679039'] = { Name = 'po1_07_details07' }, - ['1729796848'] = { Name = 'po1_07_details09' }, - ['-205188957'] = { Name = 'po1_07_details10' }, - ['1392168721'] = { Name = 'po1_07_details11' }, - ['386946873'] = { Name = 'po1_07_details12' }, - ['868792360'] = { Name = 'po1_07_entrance_chunkydetails' }, - ['-762796492'] = { Name = 'po1_07_entrance_details' }, - ['299883444'] = { Name = 'po1_07_ex_chunkydetails' }, - ['15365310'] = { Name = 'po1_07_ex_chunkyfizz1_lod' }, - ['1274500851'] = { Name = 'po1_07_ex_chunkyfizz1' }, - ['-237470457'] = { Name = 'po1_07_ex_chunkyfizz2_lod' }, - ['-1788974652'] = { Name = 'po1_07_ex_chunkyfizz2' }, - ['1384981029'] = { Name = 'po1_07_ex_chunkyfizz3_lod' }, - ['-1582005648'] = { Name = 'po1_07_ex_chunkyfizz3' }, - ['2144929698'] = { Name = 'po1_07_exdetail2' }, - ['-1186601928'] = { Name = 'po1_07_fiz1_lod' }, - ['-964842967'] = { Name = 'po1_07_fiz1' }, - ['-2003755120'] = { Name = 'po1_07_fiz1b_lod' }, - ['-1944249844'] = { Name = 'po1_07_fiz1b' }, - ['-1454057800'] = { Name = 'po1_07_fizzygirder_lod' }, - ['-826695899'] = { Name = 'po1_07_fizzygirder' }, - ['-508756703'] = { Name = 'po1_07_flurlightgantry' }, - ['1571262965'] = { Name = 'po1_07_flurlightm' }, - ['-1409718703'] = { Name = 'po1_07_gg_fix5_lod' }, - ['-617334910'] = { Name = 'po1_07_gg_fix5' }, - ['-238786598'] = { Name = 'po1_07_gg_fiz2_lod' }, - ['1049755592'] = { Name = 'po1_07_gg_fiz2' }, - ['1518053281'] = { Name = 'po1_07_gg_fiz3_lod' }, - ['237772541'] = { Name = 'po1_07_gg_fiz3' }, - ['-1927331766'] = { Name = 'po1_07_gg_fiz4_lod' }, - ['467188310'] = { Name = 'po1_07_gg_fiz4' }, - ['-1442061592'] = { Name = 'po1_07_gg_ladder1_lod009' }, - ['670528565'] = { Name = 'po1_07_gg_ladder1_lod010' }, - ['1209444233'] = { Name = 'po1_07_ground01_o1' }, - ['54468055'] = { Name = 'po1_07_ground01_o2' }, - ['-1202545062'] = { Name = 'po1_07_ground01' }, - ['-430540191'] = { Name = 'po1_07_ground02' }, - ['-1792813059'] = { Name = 'po1_07_ground03' }, - ['908940332'] = { Name = 'po1_07_intdetail_lod' }, - ['1239592840'] = { Name = 'po1_07_intdetail' }, - ['148728824'] = { Name = 'po1_07_intdetailb_lod' }, - ['-578831880'] = { Name = 'po1_07_intdetailb' }, - ['853756564'] = { Name = 'po1_07_intpipes' }, - ['790762918'] = { Name = 'po1_07_newfence1' }, - ['1841172424'] = { Name = 'po1_07_po1_06_b_det2b' }, - ['378590024'] = { Name = 'po1_07_po1_06_build_det2' }, - ['-2142324885'] = { Name = 'po1_07_po1_06_build189' }, - ['-1521923134'] = { Name = 'po1_07_rail2_lod' }, - ['1394183990'] = { Name = 'po1_07_rail2' }, - ['720096800'] = { Name = 'po1_07_rail3_lod' }, - ['-979176381'] = { Name = 'po1_07_rail3' }, - ['1748330218'] = { Name = 'po1_07_room3struc' }, - ['-798676957'] = { Name = 'po1_07_ser' }, - ['787532541'] = { Name = 'po1_07_ship_decalo' }, - ['1687497142'] = { Name = 'po1_07_ship' }, - ['-854270880'] = { Name = 'po1_07_slucegates' }, - ['-742023230'] = { Name = 'po1_07_spinlight' }, - ['737932025'] = { Name = 'po1_07_spinlight001' }, - ['1397212312'] = { Name = 'po1_07_steplad_lod' }, - ['-393866669'] = { Name = 'po1_07_steplad' }, - ['1056910035'] = { Name = 'po1_07_steplad2_lod' }, - ['-1409105918'] = { Name = 'po1_07_steplad2' }, - ['52041570'] = { Name = 'po1_07_sub1' }, - ['-48831560'] = { Name = 'po1_07_tyremaster' }, - ['-1435977565'] = { Name = 'po1_07_walkway_2_lod001' }, - ['-1716611281'] = { Name = 'po1_07_walkway_2_lod002' }, - ['2023152409'] = { Name = 'po1_07_walkway_2' }, - ['-117089296'] = { Name = 'po1_07_walkway_3' }, - ['1080189885'] = { Name = 'po1_07_walkways_1b_lod' }, - ['548680631'] = { Name = 'po1_07_walkways_1b' }, - ['859660175'] = { Name = 'po1_07_walkways_2b_lod' }, - ['-1140201096'] = { Name = 'po1_07_walkways_2b' }, - ['-916702253'] = { Name = 'po1_07_walkways_3b_lod' }, - ['187139678'] = { Name = 'po1_07_walkways_3b' }, - ['-1787782566'] = { Name = 'po1_07_walkways_4b' }, - ['1380714217'] = { Name = 'po1_07_walkways' }, - ['-439568612'] = { Name = 'po1_07_walls1' }, - ['-1287710255'] = { Name = 'po1_07_walls5_beams' }, - ['-1913910807'] = { Name = 'po1_07_walls5_beamsb_lod' }, - ['211538'] = { Name = 'po1_07_walls5_beamsb' }, - ['731693695'] = { Name = 'po1_07_walls5' }, - ['-2079800406'] = { Name = 'po1_07_wyre_1_lod' }, - ['914218773'] = { Name = 'po1_07_wyre_1' }, - ['-521896573'] = { Name = 'po1_07_wyre_2_lod' }, - ['1132886310'] = { Name = 'po1_07_wyre_2' }, - ['162398369'] = { Name = 'po1_07_wyre_3_lod' }, - ['297538962'] = { Name = 'po1_07_wyre_3' }, - ['306895366'] = { Name = 'po1_07_wyre_4_lod' }, - ['2073749830'] = { Name = 'po1_07_wyre_4' }, - ['939647133'] = { Name = 'po1_07parts05' }, - ['-716667126'] = { Name = 'po1_07sub' }, - ['-2077936428'] = { Name = 'po1_08_awning_det_01' }, - ['1632890678'] = { Name = 'po1_08_awning_det_02' }, - ['719487572'] = { Name = 'po1_08_awning_det_03' }, - ['1026369257'] = { Name = 'po1_08_awning_det_04' }, - ['369023133'] = { Name = 'po1_08_awning_det_05' }, - ['674266368'] = { Name = 'po1_08_awning_det_06' }, - ['-230354646'] = { Name = 'po1_08_awning_det_07' }, - ['75740583'] = { Name = 'po1_08_awning_det_08' }, - ['-747992306'] = { Name = 'po1_08_build_01' }, - ['-1033883466'] = { Name = 'po1_08_build_02_det' }, - ['1182560568'] = { Name = 'po1_08_build_02' }, - ['872565828'] = { Name = 'po1_08_build_03' }, - ['-1642223379'] = { Name = 'po1_08_build_03dt' }, - ['278833811'] = { Name = 'po1_08_build_04b' }, - ['894366707'] = { Name = 'po1_08_build_04c' }, - ['-881962910'] = { Name = 'po1_08_build_05_det' }, - ['413963673'] = { Name = 'po1_08_build_05' }, - ['-1373403671'] = { Name = 'po1_08_build_07_det' }, - ['2103041778'] = { Name = 'po1_08_build_07' }, - ['-1339734904'] = { Name = 'po1_08_build_08' }, - ['1197106962'] = { Name = 'po1_08_build_12_ladder_01' }, - ['1467390768'] = { Name = 'po1_08_build_12_ladder_2' }, - ['-862422042'] = { Name = 'po1_08_build_12' }, - ['-678086822'] = { Name = 'po1_08_build_12det01' }, - ['-386115040'] = { Name = 'po1_08_build_12det02' }, - ['1766120811'] = { Name = 'po1_08_build_13_silo1_det' }, - ['1791993741'] = { Name = 'po1_08_build_13_silo1' }, - ['-846350816'] = { Name = 'po1_08_build_13_silo2_det' }, - ['2078919081'] = { Name = 'po1_08_build_13_silo2' }, - ['-1101340821'] = { Name = 'po1_08_build_13' }, - ['-317866800'] = { Name = 'po1_08_build_14' }, - ['-1325775690'] = { Name = 'po1_08_build_15' }, - ['1456163628'] = { Name = 'po1_08_build_17_road' }, - ['-800226468'] = { Name = 'po1_08_build_17' }, - ['-760177388'] = { Name = 'po1_08_build_17b' }, - ['-411973994'] = { Name = 'po1_08_build_17c' }, - ['-1978599708'] = { Name = 'po1_08_build_19' }, - ['1846264378'] = { Name = 'po1_08_build_20' }, - ['-1287575829'] = { Name = 'po1_08_build_22b_det' }, - ['-1335677569'] = { Name = 'po1_08_build_22b' }, - ['-785610634'] = { Name = 'po1_08_build_23' }, - ['-1911979467'] = { Name = 'po1_08_build_25' }, - ['-574935622'] = { Name = 'po1_08_build_26_stair' }, - ['1419864935'] = { Name = 'po1_08_build_26_wall' }, - ['3663504'] = { Name = 'po1_08_build_26' }, - ['-224605350'] = { Name = 'po1_08_build_27' }, - ['-69832036'] = { Name = 'po1_08_build_27a' }, - ['-845310421'] = { Name = 'po1_08_build_27b' }, - ['-2049997200'] = { Name = 'po1_08_build_27c' }, - ['-455659569'] = { Name = 'po1_08_build_28' }, - ['1851867577'] = { Name = 'po1_08_build_30' }, - ['-1806749990'] = { Name = 'po1_08_build_30d1' }, - ['-1614723650'] = { Name = 'po1_08_build_30d2' }, - ['-806255400'] = { Name = 'po1_08_build_31' }, - ['921906471'] = { Name = 'po1_08_cablemesh62099_tstd' }, - ['-267764144'] = { Name = 'po1_08_cablemesh62299_tstd' }, - ['217414100'] = { Name = 'po1_08_ce_ladder' }, - ['927866505'] = { Name = 'po1_08_coastal_weed_0' }, - ['-156860691'] = { Name = 'po1_08_coastal_weed_001' }, - ['2107933182'] = { Name = 'po1_08_dec_01' }, - ['1378731774'] = { Name = 'po1_08_dec02' }, - ['445241271'] = { Name = 'po1_08_dec03' }, - ['970588759'] = { Name = 'po1_08_decal_02' }, - ['1600441708'] = { Name = 'po1_08_decal_04' }, - ['-1730429232'] = { Name = 'po1_08_decal_04b' }, - ['113744550'] = { Name = 'po1_08_decal_04d' }, - ['-1407752950'] = { Name = 'po1_08_decal_gavnu' }, - ['-1116913416'] = { Name = 'po1_08_decal_plntr' }, - ['283343269'] = { Name = 'po1_08_decal_tnt_03c' }, - ['-1892582712'] = { Name = 'po1_08_decal08_0_g' }, - ['-1799662779'] = { Name = 'po1_08_decal08_0' }, - ['975128938'] = { Name = 'po1_08_fence_underlay' }, - ['603892634'] = { Name = 'po1_08_fencerubbish' }, - ['-360236890'] = { Name = 'po1_08_fizzy01' }, - ['-600269815'] = { Name = 'po1_08_fizzy02' }, - ['137556989'] = { Name = 'po1_08_fizzy03' }, - ['-113551858'] = { Name = 'po1_08_fizzy04' }, - ['595634840'] = { Name = 'po1_08_fizzy05' }, - ['316148039'] = { Name = 'po1_08_fizzy06' }, - ['1159065026'] = { Name = 'po1_08_fizzy07' }, - ['1908328327'] = { Name = 'po1_08_fizzy08' }, - ['529769266'] = { Name = 'po1_08_fizzy09' }, - ['829318527'] = { Name = 'po1_08_fizzy10' }, - ['-1073110305'] = { Name = 'po1_08_ga1_int_reflect' }, - ['369949746'] = { Name = 'po1_08_garage_int2_reflect' }, - ['1994484622'] = { Name = 'po1_08_garage_int2' }, - ['-521384993'] = { Name = 'po1_08_garage001_int' }, - ['-558325299'] = { Name = 'po1_08_garageshadowbox1' }, - ['-928254548'] = { Name = 'po1_08_garageshadowbox2' }, - ['1834515933'] = { Name = 'po1_08_glue_0' }, - ['1662124602'] = { Name = 'po1_08_glue_001' }, - ['-1383786721'] = { Name = 'po1_08_glue_002' }, - ['-1103153005'] = { Name = 'po1_08_glue_003' }, - ['133549415'] = { Name = 'po1_08_glue_010' }, - ['-606681621'] = { Name = 'po1_08_ground_02_int2' }, - ['1326431789'] = { Name = 'po1_08_ground_02' }, - ['1084227842'] = { Name = 'po1_08_ground_02b_int1' }, - ['417880168'] = { Name = 'po1_08_ground_02b_stp1_det' }, - ['1107026835'] = { Name = 'po1_08_ground_02b_stp2' }, - ['1446317061'] = { Name = 'po1_08_ground_02b_stp3' }, - ['1701751416'] = { Name = 'po1_08_ground_02b_stp4' }, - ['2071123584'] = { Name = 'po1_08_ground_02b_stp5' }, - ['1917994059'] = { Name = 'po1_08_ground_02b_stp6' }, - ['-2134449868'] = { Name = 'po1_08_ground_02b_stp7' }, - ['1097538559'] = { Name = 'po1_08_ground_02b' }, - ['1228812926'] = { Name = 'po1_08_ground_04' }, - ['330975095'] = { Name = 'po1_08_ground_05' }, - ['587360721'] = { Name = 'po1_08_ground_ov1_int' }, - ['-2010642918'] = { Name = 'po1_08_ground_ov2_int2' }, - ['1007046342'] = { Name = 'po1_08_ju012_det' }, - ['-1635666322'] = { Name = 'po1_08_ju012' }, - ['-1849211007'] = { Name = 'po1_08_ju1' }, - ['1746333845'] = { Name = 'po1_08_ju10' }, - ['2138972003'] = { Name = 'po1_08_ju11' }, - ['-1429167715'] = { Name = 'po1_08_ju2_det' }, - ['-597566283'] = { Name = 'po1_08_ju2' }, - ['-504530590'] = { Name = 'po1_08_ju3_det' }, - ['-1375043577'] = { Name = 'po1_08_ju3' }, - ['-1999391334'] = { Name = 'po1_08_ju4' }, - ['1252877083'] = { Name = 'po1_08_ju5_det' }, - ['1519737118'] = { Name = 'po1_08_ju5' }, - ['623182777'] = { Name = 'po1_08_ju6_det' }, - ['-1514508441'] = { Name = 'po1_08_ju6' }, - ['824150824'] = { Name = 'po1_08_ju7_det' }, - ['1997476369'] = { Name = 'po1_08_ju7' }, - ['2105946075'] = { Name = 'po1_08_ju8_det' }, - ['770670551'] = { Name = 'po1_08_ju8' }, - ['-14278075'] = { Name = 'po1_08_ju9' }, - ['102743998'] = { Name = 'po1_08_ladnew01' }, - ['-212723165'] = { Name = 'po1_08_ladnew02' }, - ['414475495'] = { Name = 'po1_08_ladnew03' }, - ['133022554'] = { Name = 'po1_08_ladnew04' }, - ['988181407'] = { Name = 'po1_08_pipes005' }, - ['-99413847'] = { Name = 'po1_08_props_combo01_01_lod' }, - ['-30224740'] = { Name = 'po1_08_props_combo0201_slod' }, - ['-1846036615'] = { Name = 'po1_08_props_combo13_01_lod' }, - ['-1339912854'] = { Name = 'po1_08_props_combo13_02_lod' }, - ['-1686209224'] = { Name = 'po1_08_props_combo13_03_lod' }, - ['923028670'] = { Name = 'po1_08_props_combo13_04_lod' }, - ['203884032'] = { Name = 'po1_08_roofaccess_ladder01' }, - ['988930965'] = { Name = 'po1_08_roofaccess_ladder02' }, - ['-761742654'] = { Name = 'po1_08_ropefiz01' }, - ['72719935'] = { Name = 'po1_08_ropefiz02' }, - ['848984776'] = { Name = 'po1_08_ropefiz03' }, - ['1623250708'] = { Name = 'po1_08_ropefiz04' }, - ['1887267687'] = { Name = 'po1_08_ruflad01' }, - ['-1884542524'] = { Name = 'po1_08_ruflad02' }, - ['-2064706486'] = { Name = 'po1_08_ruflad03' }, - ['-1270680847'] = { Name = 'po1_08_ruflad04' }, - ['906059378'] = { Name = 'po1_08_seawall1' }, - ['1008393901'] = { Name = 'po1_08_seawall1g' }, - ['474196727'] = { Name = 'po1_08_seawall2' }, - ['-1754532447'] = { Name = 'po1_08_seawall2gg' }, - ['192743786'] = { Name = 'po1_08_seawall3' }, - ['1713420743'] = { Name = 'po1_08_shadprox01' }, - ['328668345'] = { Name = 'po1_08_shadprox02' }, - ['1096872012'] = { Name = 'po1_08_shadprox03' }, - ['91534271'] = { Name = 'po1_08_signage01' }, - ['1058881644'] = { Name = 'po1_08_signage02_det' }, - ['1522032197'] = { Name = 'po1_08_signage02' }, - ['1274672426'] = { Name = 'po1_08_signage03_det' }, - ['-1151248380'] = { Name = 'po1_08_sub_trans' }, - ['206638960'] = { Name = 'po1_08_substation_decal' }, - ['33862547'] = { Name = 'po1_08_substation_fence' }, - ['1928693035'] = { Name = 'po1_08_substation_wall' }, - ['1513328252'] = { Name = 'po1_08_substation' }, - ['1850905958'] = { Name = 'po1_08_wall_piece_gg' }, - ['2059118487'] = { Name = 'po1_08_walldecal1' }, - ['-642570640'] = { Name = 'po1_08_wallsmall01' }, - ['496799310'] = { Name = 'po1_08_wareh_01' }, - ['1100797518'] = { Name = 'po1_08_wareh_02' }, - ['-1446267606'] = { Name = 'po1_08_wareh_02b' }, - ['1936275946'] = { Name = 'po1_08_wareh_03' }, - ['1021205849'] = { Name = 'po1_08_wareh_04_ladders' }, - ['1696898401'] = { Name = 'po1_08_wareh_04' }, - ['1251749741'] = { Name = 'po1_08_wareh2_d_01' }, - ['-1755428616'] = { Name = 'po1_08_wareh2_d_02' }, - ['-794470753'] = { Name = 'po1_08_weed_004' }, - ['-1642916395'] = { Name = 'po1_08_weed_02' }, - ['191983760'] = { Name = 'po1_08_weed_03' }, - ['-1705162337'] = { Name = 'po1_08_weedy01' }, - ['-1800749510'] = { Name = 'po1_08_weedy02' }, - ['2106616742'] = { Name = 'po1_08_whouse_02_det01' }, - ['1656894986'] = { Name = 'po1_08_whouse_02_det02' }, - ['1359516311'] = { Name = 'po1_08_whouse_02_det03' }, - ['1180663105'] = { Name = 'po1_08_whouse_02_det04' }, - ['-1163172389'] = { Name = 'po1_08_whouse_02_det05' }, - ['-1466580560'] = { Name = 'po1_08_whouse_02_det06' }, - ['-1647334364'] = { Name = 'po1_08_whouse_02_det07' }, - ['-1889333429'] = { Name = 'po1_08_whouse_02_det08' }, - ['1814862927'] = { Name = 'po1_08_whouse_02_ladder_01' }, - ['553059781'] = { Name = 'po1_08_whouse_02_ladder_02' }, - ['-1141845125'] = { Name = 'po1_08_whouse_02' }, - ['1517581186'] = { Name = 'po1_08_whouse_02int' }, - ['207574868'] = { Name = 'po1_08_whouse_05_det_01' }, - ['455210201'] = { Name = 'po1_08_whouse_05_det_02' }, - ['1728875693'] = { Name = 'po1_08_whouse_05_det_03' }, - ['1959143456'] = { Name = 'po1_08_whouse_05_det_04' }, - ['1131070826'] = { Name = 'po1_08_whouse_05_det_05' }, - ['-1421446829'] = { Name = 'po1_08_whouse_05_ladder_01' }, - ['1232907713'] = { Name = 'po1_08_whouse_05_ladder_02' }, - ['-723548836'] = { Name = 'po1_08_whouse_05' }, - ['-1424128189'] = { Name = 'po1_08_whouse_05int' }, - ['2006265530'] = { Name = 'po1_09_bch2_00' }, - ['-1197499261'] = { Name = 'po1_09_bluey001_det' }, - ['-392427410'] = { Name = 'po1_09_bluey001' }, - ['1035330703'] = { Name = 'po1_09_bridge_det01' }, - ['-496914972'] = { Name = 'po1_09_bridge_det03' }, - ['1774763184'] = { Name = 'po1_09_bridge_det05' }, - ['2133157737'] = { Name = 'po1_09_bridge_det07' }, - ['-1829990669'] = { Name = 'po1_09_bridge_det09' }, - ['1125248555'] = { Name = 'po1_09_bridge_det11' }, - ['1432982234'] = { Name = 'po1_09_bridge_det13' }, - ['2042452865'] = { Name = 'po1_09_bridge_det15' }, - ['-914011912'] = { Name = 'po1_09_bridge' }, - ['1531369880'] = { Name = 'po1_09_brig_det_00' }, - ['1753543700'] = { Name = 'po1_09_brig_det_01' }, - ['918425735'] = { Name = 'po1_09_brig_det_02' }, - ['-1026545495'] = { Name = 'po1_09_brig_det_03' }, - ['-1811789042'] = { Name = 'po1_09_brig_det_04' }, - ['-1573099646'] = { Name = 'po1_09_brig_det_05' }, - ['1875346073'] = { Name = 'po1_09_brig_det_06' }, - ['-71722365'] = { Name = 'po1_09_brig_det_07' }, - ['150910221'] = { Name = 'po1_09_brig_det_08' }, - ['-680537624'] = { Name = 'po1_09_brig_det_09' }, - ['-1163788866'] = { Name = 'po1_09_brig_det01' }, - ['-1538076384'] = { Name = 'po1_09_brig_det02' }, - ['759290290'] = { Name = 'po1_09_brig_m_glue' }, - ['809476508'] = { Name = 'po1_09_brig_m' }, - ['-1681863007'] = { Name = 'po1_09_briga' }, - ['-1441895620'] = { Name = 'po1_09_brigb' }, - ['-1862975456'] = { Name = 'po1_09_ce_xr_ctr2_002' }, - ['887660495'] = { Name = 'po1_09_ce_xr_ctr2_gg_det1' }, - ['1109539394'] = { Name = 'po1_09_ce_xr_ctr2_gg_det2' }, - ['-177104432'] = { Name = 'po1_09_ce_xr_ctr2_gg' }, - ['-1458724314'] = { Name = 'po1_09_ce_xr_ctr3_gg_det' }, - ['452057548'] = { Name = 'po1_09_ce_xr_ctr3_gg_det2' }, - ['1567952789'] = { Name = 'po1_09_ce_xr_ctr3_gg' }, - ['-1149075785'] = { Name = 'po1_09_ce_xrdec' }, - ['-1958932207'] = { Name = 'po1_09_collapsed_dt1' }, - ['-1598145517'] = { Name = 'po1_09_collapsed_dt2' }, - ['420441682'] = { Name = 'po1_09_collapsed' }, - ['-712700665'] = { Name = 'po1_09_collapsed2_decal_lod' }, - ['830488600'] = { Name = 'po1_09_collapsed2_decal' }, - ['-1394274008'] = { Name = 'po1_09_collapsed2_det' }, - ['1971153404'] = { Name = 'po1_09_collapsed2' }, - ['-1243008143'] = { Name = 'po1_09_congrnd' }, - ['-117396406'] = { Name = 'po1_09_decalb02' }, - ['69452424'] = { Name = 'po1_09_decalb03' }, - ['366634485'] = { Name = 'po1_09_decalb04' }, - ['12204981'] = { Name = 'po1_09_decalb05' }, - ['1379950288'] = { Name = 'po1_09_decalb06' }, - ['1554609058'] = { Name = 'po1_09_decalb07' }, - ['778802983'] = { Name = 'po1_09_decalb08' }, - ['1033123192'] = { Name = 'po1_09_decalb09' }, - ['542276045'] = { Name = 'po1_09_decalb10' }, - ['-2084120444'] = { Name = 'po1_09_dock' }, - ['-402300937'] = { Name = 'po1_09_dtgnd_det' }, - ['1980765915'] = { Name = 'po1_09_dtgnd' }, - ['-592653548'] = { Name = 'po1_09_dtgndb001_decal' }, - ['1569090510'] = { Name = 'po1_09_dtgndb001' }, - ['-1068832209'] = { Name = 'po1_09_dtgndentrance_dt' }, - ['-1414890814'] = { Name = 'po1_09_dtgndentrance' }, - ['-779689788'] = { Name = 'po1_09_ducto' }, - ['1301196091'] = { Name = 'po1_09_elec_wires_spline14' }, - ['1914069288'] = { Name = 'po1_09_factory_det' }, - ['1513236963'] = { Name = 'po1_09_factory' }, - ['-440762701'] = { Name = 'po1_09_factory2_det' }, - ['1904668164'] = { Name = 'po1_09_factory2' }, - ['-1429343892'] = { Name = 'po1_09_fence_01' }, - ['2096895433'] = { Name = 'po1_09_fence_02' }, - ['-1872544617'] = { Name = 'po1_09_fence_03' }, - ['-493428475'] = { Name = 'po1_09_fence_04' }, - ['-1271200690'] = { Name = 'po1_09_fence_05' }, - ['-978475213'] = { Name = 'po1_09_fence_06' }, - ['-827180652'] = { Name = 'po1_09_fence_07' }, - ['-1125378552'] = { Name = 'po1_09_fence_08' }, - ['-346164501'] = { Name = 'po1_09_fence_09' }, - ['1625886244'] = { Name = 'po1_09_fence_10' }, - ['1344534635'] = { Name = 'po1_09_fence2' }, - ['-96222078'] = { Name = 'po1_09_fwyrail_01' }, - ['-398778255'] = { Name = 'po1_09_fwyrail_02' }, - ['-675020925'] = { Name = 'po1_09_fwyrail_03' }, - ['1438481272'] = { Name = 'po1_09_fwyrail_04' }, - ['1131108052'] = { Name = 'po1_09_fwyrail_05' }, - ['844838068'] = { Name = 'po1_09_fwyrail_06' }, - ['551915977'] = { Name = 'po1_09_fwyrail_07' }, - ['2056242456'] = { Name = 'po1_09_fwyrail_08' }, - ['1758077325'] = { Name = 'po1_09_fwyrail_09' }, - ['-1653109669'] = { Name = 'po1_09_fwyrail_10' }, - ['-2019925859'] = { Name = 'po1_09_fwyrail_11' }, - ['-2063246477'] = { Name = 'po1_09_fwyrail_12' }, - ['1941420248'] = { Name = 'po1_09_fwyrail_13' }, - ['-148248168'] = { Name = 'po1_09_gg_ladder' }, - ['-1366619160'] = { Name = 'po1_09_gg_les_steps' }, - ['2007254'] = { Name = 'po1_09_gg_supp' }, - ['1458978935'] = { Name = 'po1_09_gg_walls1_noshad' }, - ['2010672569'] = { Name = 'po1_09_gg00_det01' }, - ['-1916700161'] = { Name = 'po1_09_gg00_steps_det' }, - ['-1815762836'] = { Name = 'po1_09_gg00_steps' }, - ['605458855'] = { Name = 'po1_09_gg00' }, - ['15064663'] = { Name = 'po1_09_gg00b_det' }, - ['895374011'] = { Name = 'po1_09_gg00b' }, - ['-1226382022'] = { Name = 'po1_09_gg02_det_05' }, - ['1107481362'] = { Name = 'po1_09_gg02_det01' }, - ['2066597227'] = { Name = 'po1_09_gg02_det02' }, - ['1820829727'] = { Name = 'po1_09_gg02_det03' }, - ['902871714'] = { Name = 'po1_09_gg02_det04' }, - ['1200707740'] = { Name = 'po1_09_gg02' }, - ['104856488'] = { Name = 'po1_09_gg03_balcony_det' }, - ['-1359658317'] = { Name = 'po1_09_gg03_decal' }, - ['401174650'] = { Name = 'po1_09_gg03_ladders_det1' }, - ['-491092451'] = { Name = 'po1_09_gg03_ladders_det2' }, - ['955549264'] = { Name = 'po1_09_gg03_lean1' }, - ['-13528373'] = { Name = 'po1_09_gg03_lean2' }, - ['-1037061637'] = { Name = 'po1_09_gg03_lowerstairs1_det' }, - ['-582050033'] = { Name = 'po1_09_gg03_lowerstairs2_det' }, - ['-325522912'] = { Name = 'po1_09_gg03_lowrail_01' }, - ['-76216364'] = { Name = 'po1_09_gg03_lowrail_02' }, - ['-1040902951'] = { Name = 'po1_09_gg03_lowrail_03' }, - ['-810373036'] = { Name = 'po1_09_gg03_lowrail_04' }, - ['1214521773'] = { Name = 'po1_09_gg03_lowrail_05' }, - ['1721982507'] = { Name = 'po1_09_gg03_lowrail_06' }, - ['748317210'] = { Name = 'po1_09_gg03_lowrail_07' }, - ['987530910'] = { Name = 'po1_09_gg03_lowrail_08' }, - ['-1624092852'] = { Name = 'po1_09_gg03_lowrail_09' }, - ['-243480599'] = { Name = 'po1_09_gg03_railing_det_01' }, - ['-15506666'] = { Name = 'po1_09_gg03_railing_det_02' }, - ['-605020976'] = { Name = 'po1_09_gg03_railing_det_03' }, - ['-376588277'] = { Name = 'po1_09_gg03_railing_det_04' }, - ['-1811706636'] = { Name = 'po1_09_gg03_railing_det_05' }, - ['-1582356405'] = { Name = 'po1_09_gg03_railing_det_06' }, - ['-225097218'] = { Name = 'po1_09_gg03_railing_det_07' }, - ['-13343940'] = { Name = 'po1_09_gg03_railing_det_08' }, - ['2135679877'] = { Name = 'po1_09_gg03_railing_det_09' }, - ['816039210'] = { Name = 'po1_09_gg03_railing_det_10' }, - ['-1417597819'] = { Name = 'po1_09_gg03_stair_det' }, - ['-581051450'] = { Name = 'po1_09_gg03_sup' }, - ['971685199'] = { Name = 'po1_09_gg03' }, - ['-874617518'] = { Name = 'po1_09_gg04_a_det01' }, - ['-1661499515'] = { Name = 'po1_09_gg04_a_det02' }, - ['538856661'] = { Name = 'po1_09_gg04_a' }, - ['1130800576'] = { Name = 'po1_09_gg04_det1' }, - ['1421920372'] = { Name = 'po1_09_gg04_det2' }, - ['1782615609'] = { Name = 'po1_09_gg04_det69' }, - ['1322511976'] = { Name = 'po1_09_gg04_fence_det' }, - ['1024402943'] = { Name = 'po1_09_gg04_fence' }, - ['1296736699'] = { Name = 'po1_09_gg04_lod' }, - ['-610992015'] = { Name = 'po1_09_gg04' }, - ['1469929734'] = { Name = 'po1_09_gg1b_dlod' }, - ['727067150'] = { Name = 'po1_09_gg1b' }, - ['-695215346'] = { Name = 'po1_09_ground_decal_01' }, - ['-380501874'] = { Name = 'po1_09_ground_decal_02' }, - ['-1307373035'] = { Name = 'po1_09_ground_decal_03' }, - ['-456394874'] = { Name = 'po1_09_ground_decal_04' }, - ['542600860'] = { Name = 'po1_09_ground_decal_05' }, - ['1469318540'] = { Name = 'po1_09_jumpdecal' }, - ['948498569'] = { Name = 'po1_09_ladder_03' }, - ['338482723'] = { Name = 'po1_09_landa' }, - ['351804967'] = { Name = 'po1_09_landab' }, - ['1027024951'] = { Name = 'po1_09_landb' }, - ['-715723928'] = { Name = 'po1_09_landbb_s' }, - ['1426532948'] = { Name = 'po1_09_landbb' }, - ['462657962'] = { Name = 'po1_09_memorial_det' }, - ['1596484297'] = { Name = 'po1_09_memorial' }, - ['-216688915'] = { Name = 'po1_09_met_stair_ref_source' }, - ['-116234767'] = { Name = 'po1_09_pipes_det01' }, - ['-425803510'] = { Name = 'po1_09_pipes_det02' }, - ['359931576'] = { Name = 'po1_09_pipes_det03' }, - ['1104115566'] = { Name = 'po1_09_pipes_det04' }, - ['747130080'] = { Name = 'po1_09_pipes_det05' }, - ['-1218880632'] = { Name = 'po1_09_pipes_detail1' }, - ['-988317948'] = { Name = 'po1_09_pipes_detail2' }, - ['-1846636365'] = { Name = 'po1_09_pipes_detail3' }, - ['1449708114'] = { Name = 'po1_09_pipes_metal01' }, - ['1647763950'] = { Name = 'po1_09_pipes_metal02' }, - ['-1409190638'] = { Name = 'po1_09_pipes_metal03' }, - ['-1707093617'] = { Name = 'po1_09_pipes_metal04' }, - ['-1217917985'] = { Name = 'po1_09_pipes_metal05' }, - ['1394979243'] = { Name = 'po1_09_pipes' }, - ['-1611417924'] = { Name = 'po1_09_pipes004_det' }, - ['1985140352'] = { Name = 'po1_09_pipes004' }, - ['-578905468'] = { Name = 'po1_09_pipes2' }, - ['-161565127'] = { Name = 'po1_09_po109_gg_walls1' }, - ['74142290'] = { Name = 'po1_09_po109_gg_walls2' }, - ['957857156'] = { Name = 'po1_09_prereflprox01_dummy' }, - ['1171921038'] = { Name = 'po1_09_prereflprox01' }, - ['1989774053'] = { Name = 'po1_09_prop_tank_05_decal' }, - ['-507842927'] = { Name = 'po1_09_railcrane_det' }, - ['362266212'] = { Name = 'po1_09_railcrane_det6' }, - ['1111167555'] = { Name = 'po1_09_railcrane_lod' }, - ['-2131213691'] = { Name = 'po1_09_railcrane_track' }, - ['1819899732'] = { Name = 'po1_09_railcrane' }, - ['950815684'] = { Name = 'po1_09_railcrane1' }, - ['-1221998403'] = { Name = 'po1_09_railcrane2' }, - ['1832989933'] = { Name = 'po1_09_railcrane3' }, - ['-785313269'] = { Name = 'po1_09_rails' }, - ['-671659056'] = { Name = 'po1_09_redrail2_01' }, - ['-1580507271'] = { Name = 'po1_09_redrail2_02' }, - ['1921777915'] = { Name = 'po1_09_redrail2_03' }, - ['1013028007'] = { Name = 'po1_09_redrail2_04' }, - ['1336654651'] = { Name = 'po1_09_redrail2_05' }, - ['1509773278'] = { Name = 'po1_09_redrail2_06' }, - ['1799254624'] = { Name = 'po1_09_redrail2_07' }, - ['-975356472'] = { Name = 'po1_09_redrailing_01' }, - ['-1810802131'] = { Name = 'po1_09_redrailing_02' }, - ['-1998109723'] = { Name = 'po1_09_redrailing_03' }, - ['-1187306336'] = { Name = 'po1_09_redrailing_04' }, - ['-1417934558'] = { Name = 'po1_09_redrailing_05' }, - ['509188715'] = { Name = 'po1_09_spec_decals' }, - ['212945726'] = { Name = 'po1_09_stairref_source_d' }, - ['-1207539782'] = { Name = 'po1_09_tower_detail_hd_01' }, - ['625984420'] = { Name = 'po1_09_tower_hd_01' }, - ['204522659'] = { Name = 'po1_09_weewall' }, - ['2019560323'] = { Name = 'po1_09_wet_new' }, - ['466882323'] = { Name = 'po1_09_xr_ctr2_2_det01' }, - ['-1681177772'] = { Name = 'po1_10_armco_2' }, - ['-1891317448'] = { Name = 'po1_10_armco1' }, - ['1344202741'] = { Name = 'po1_10_bigpipes_det_01' }, - ['-579632496'] = { Name = 'po1_10_bigpipes_det_02' }, - ['680007880'] = { Name = 'po1_10_bigpipes_det_03' }, - ['-834336068'] = { Name = 'po1_10_bigpipes' }, - ['-1530080408'] = { Name = 'po1_10_buid207' }, - ['1037627582'] = { Name = 'po1_10_buif207_detail' }, - ['357273879'] = { Name = 'po1_10_buif207_details' }, - ['-328286727'] = { Name = 'po1_10_buif207' }, - ['-68584758'] = { Name = 'po1_10_cablemesh_thvy' }, - ['1727806363'] = { Name = 'po1_10_elecwire' }, - ['700668077'] = { Name = 'po1_10_fizz_hd' }, - ['-451058061'] = { Name = 'po1_10_fizzing_bars_002' }, - ['283164161'] = { Name = 'po1_10_fizzing_bars_003' }, - ['-1776660653'] = { Name = 'po1_10_fizzing_bars_01' }, - ['312872721'] = { Name = 'po1_10_fizzy_006' }, - ['1025874090'] = { Name = 'po1_10_fizzy_04' }, - ['1980435060'] = { Name = 'po1_10_fizzy_08' }, - ['-1033791927'] = { Name = 'po1_10_fizzy_hd_02' }, - ['-135136870'] = { Name = 'po1_10_gaaaate' }, - ['-1283805971'] = { Name = 'po1_10_gaaaate001' }, - ['46189432'] = { Name = 'po1_10_gaaaate002' }, - ['268822018'] = { Name = 'po1_10_gaaaate003' }, - ['-565706105'] = { Name = 'po1_10_gaaaate004' }, - ['-803181949'] = { Name = 'po1_10_gg_ladder' }, - ['38042240'] = { Name = 'po1_10_gound2_build' }, - ['2135347557'] = { Name = 'po1_10_gound2_detail' }, - ['-1017012170'] = { Name = 'po1_10_gound2' }, - ['1068821914'] = { Name = 'po1_10_ground1_details' }, - ['294069676'] = { Name = 'po1_10_ground1' }, - ['-15445256'] = { Name = 'po1_10_ground3_detail' }, - ['-170496437'] = { Name = 'po1_10_ground3' }, - ['-2072167053'] = { Name = 'po1_10_ground4_detail' }, - ['-544521803'] = { Name = 'po1_10_ground4' }, - ['-1203930220'] = { Name = 'po1_10_ground5_detail' }, - ['-2081086074'] = { Name = 'po1_10_ground5_pipes' }, - ['1515894610'] = { Name = 'po1_10_ground5' }, - ['-965126350'] = { Name = 'po1_10_house1_detail' }, - ['965092516'] = { Name = 'po1_10_house1_int_det' }, - ['1647152576'] = { Name = 'po1_10_house1_int' }, - ['-504130017'] = { Name = 'po1_10_house1' }, - ['-1574439387'] = { Name = 'po1_10_ladder_002' }, - ['-1329032346'] = { Name = 'po1_10_ladder_003' }, - ['1305062362'] = { Name = 'po1_10_ladder_01' }, - ['-1011308966'] = { Name = 'po1_10_largepipe' }, - ['-468065982'] = { Name = 'po1_10_new_yell1_detail' }, - ['1165990509'] = { Name = 'po1_10_new_yell1_wall' }, - ['-861812570'] = { Name = 'po1_10_new_yell1' }, - ['-159591261'] = { Name = 'po1_10_pier_detail' }, - ['1100059398'] = { Name = 'po1_10_pier_hd' }, - ['1732460782'] = { Name = 'po1_10_pier_hd2' }, - ['1792791999'] = { Name = 'po1_10_pier' }, - ['-1378716855'] = { Name = 'po1_10_pierbuild01_detail' }, - ['-667216973'] = { Name = 'po1_10_pierbuild01' }, - ['-2105570937'] = { Name = 'po1_10_pipe1_2' }, - ['1236326308'] = { Name = 'po1_10_pipe1_3_det' }, - ['-1807733496'] = { Name = 'po1_10_pipe1_3' }, - ['629378962'] = { Name = 'po1_10_pipe1_detail' }, - ['1370064921'] = { Name = 'po1_10_pipe1_pipefail' }, - ['-1428916698'] = { Name = 'po1_10_pipe1_pipefail2' }, - ['-2051629200'] = { Name = 'po1_10_pipe1' }, - ['-279332751'] = { Name = 'po1_10_pipes_fizzy_01' }, - ['902776103'] = { Name = 'po1_10_pipes_fizzy_02' }, - ['-289054264'] = { Name = 'po1_10_silo_detail' }, - ['1587383701'] = { Name = 'po1_10_silo_fizz1' }, - ['1208115299'] = { Name = 'po1_10_silo_fizz2' }, - ['978306302'] = { Name = 'po1_10_silo_fizz3' }, - ['323042034'] = { Name = 'po1_10_silo_small_ladders' }, - ['-740565927'] = { Name = 'po1_10_silo_smallgg' }, - ['-714341136'] = { Name = 'po1_10_silo' }, - ['2075217504'] = { Name = 'po1_10_supports_hd' }, - ['1843489597'] = { Name = 'po1_10_supports2_hd' }, - ['-597309867'] = { Name = 'po1_10_supports3_hd' }, - ['-848905384'] = { Name = 'po1_10_tarp' }, - ['-1001751646'] = { Name = 'po1_10_tower1_detail' }, - ['690064848'] = { Name = 'po1_10_tower1' }, - ['571828606'] = { Name = 'po1_10_tower1b_detail' }, - ['526195371'] = { Name = 'po1_10_tower1b' }, - ['1825775319'] = { Name = 'po1_10_tower3_detail' }, - ['1152337131'] = { Name = 'po1_10_tower3' }, - ['1599098414'] = { Name = 'po1_10_tower4_detail' }, - ['1382342742'] = { Name = 'po1_10_tower4' }, - ['-1793585478'] = { Name = 'po1_10_walkway1_detail' }, - ['-139380079'] = { Name = 'po1_10_walkway1' }, - ['119137630'] = { Name = 'po1_10_walkway1b' }, - ['846928484'] = { Name = 'po1_10_walkway2_detail' }, - ['-1960746653'] = { Name = 'po1_10_walkway2' }, - ['1834429475'] = { Name = 'po1_10_walkway2a' }, - ['-1323322441'] = { Name = 'po1_10_walkway2b' }, - ['-252741249'] = { Name = 'po1_emissive_po1_01a' }, - ['-2037078837'] = { Name = 'po1_emissive_po1_01b' }, - ['-747618687'] = { Name = 'po1_emissive_po1_01c' }, - ['-515712474'] = { Name = 'po1_emissive_po1_01d' }, - ['881458531'] = { Name = 'po1_emissive_po1_02a' }, - ['522703519'] = { Name = 'po1_emissive_po1_02b' }, - ['-805325748'] = { Name = 'po1_emissive_po1_02c' }, - ['-1161655854'] = { Name = 'po1_emissive_po1_02d' }, - ['939820120'] = { Name = 'po1_emissive_po1_02e' }, - ['41959915'] = { Name = 'po1_emissive_po1_03_emc' }, - ['1172774133'] = { Name = 'po1_emissive_po1_03b' }, - ['866416752'] = { Name = 'po1_emissive_po1_03c' }, - ['594106362'] = { Name = 'po1_emissive_po1_03d' }, - ['-1168243207'] = { Name = 'po1_emissive_po1_03e' }, - ['-862115209'] = { Name = 'po1_emissive_po1_03f' }, - ['1672593981'] = { Name = 'po1_emissive_po1_04' }, - ['617886152'] = { Name = 'po1_emissive_po1_05_ema' }, - ['1927138782'] = { Name = 'po1_emissive_po1_05_emb' }, - ['1618290957'] = { Name = 'po1_emissive_po1_05_emc' }, - ['-788203254'] = { Name = 'po1_emissive_po1_05_emc1' }, - ['303207796'] = { Name = 'po1_emissive_po1_06_ema' }, - ['536097079'] = { Name = 'po1_emissive_po1_06_emb' }, - ['1658315630'] = { Name = 'po1_emissive_po1_061_ema' }, - ['-773228401'] = { Name = 'po1_emissive_po1_07_emb' }, - ['-1584382455'] = { Name = 'po1_emissive_po1_07' }, - ['305531456'] = { Name = 'po1_emissive_po1_08a' }, - ['553396172'] = { Name = 'po1_emissive_po1_08b' }, - ['916640537'] = { Name = 'po1_emissive_po1_08c' }, - ['1130491031'] = { Name = 'po1_emissive_po1_08d' }, - ['1737241835'] = { Name = 'po1_emissive_po1_08e' }, - ['-1254207410'] = { Name = 'po1_emissive_po1_08f' }, - ['-1946223152'] = { Name = 'po1_emissive_po1_08g' }, - ['1504254245'] = { Name = 'po1_emissive_po1_08h' }, - ['-1540018628'] = { Name = 'po1_emissive_po1_08i' }, - ['-1206822548'] = { Name = 'po1_emissive_po1_09a' }, - ['-1093310732'] = { Name = 'po1_emissive_po1_09b' }, - ['561476973'] = { Name = 'po1_emissive_po1_10_ema' }, - ['-298643739'] = { Name = 'po1_emissive_po1_10_emb' }, - ['1160527050'] = { Name = 'po1_emissive_po1_10_emc' }, - ['262066620'] = { Name = 'po1_emissive_po1_10_emd' }, - ['-632690925'] = { Name = 'po1_emissive_po1_10_eme' }, - ['-1022642025'] = { Name = 'po1_emissive_po1_10_emf' }, - ['576022948'] = { Name = 'po1_lod_emi_proxy_slod3' }, - ['-506918457'] = { Name = 'po1_lod_emissive' }, - ['-1327155414'] = { Name = 'po1_lod_slod4' }, - ['-1788412152'] = { Name = 'po1_rd_barrier_01' }, - ['-2084283453'] = { Name = 'po1_rd_barrier_02' }, - ['-1179531351'] = { Name = 'po1_rd_barrier_03' }, - ['386534411'] = { Name = 'po1_rd_big_junc' }, - ['-775332018'] = { Name = 'po1_rd_bj2' }, - ['-523993788'] = { Name = 'po1_rd_bj3' }, - ['1160850440'] = { Name = 'po1_rd_bork' }, - ['521756822'] = { Name = 'po1_rd_gg1' }, - ['-395742401'] = { Name = 'po1_rd_gg2' }, - ['-57161550'] = { Name = 'po1_rd_ovly_01_new' }, - ['1936793046'] = { Name = 'po1_rd_ovly_02_lod' }, - ['122438017'] = { Name = 'po1_rd_ovly_02' }, - ['420603148'] = { Name = 'po1_rd_ovly_03' }, - ['-1278403960'] = { Name = 'po1_rd_ovly_04' }, - ['-802630849'] = { Name = 'po1_rd_ovly_06' }, - ['-525700030'] = { Name = 'po1_rd_ovly_07' }, - ['2098212107'] = { Name = 'po1_rd_ovly_09' }, - ['1597042385'] = { Name = 'po1_rd_props_l_001' }, - ['-1066803320'] = { Name = 'po1_rd_road04' }, - ['-846104105'] = { Name = 'po1_rd_road05' }, - ['-884327658'] = { Name = 'po1_rd_road10_det' }, - ['-1683024693'] = { Name = 'po1_rd_road10' }, - ['1820345435'] = { Name = 'po1_rd_road116' }, - ['1229679321'] = { Name = 'po1_rd_road25' }, - ['-467913573'] = { Name = 'po1_rd_shadow' }, - ['-1892654688'] = { Name = 'po1_sh1_cable007' }, - ['-2144116454'] = { Name = 'po1_sh1_cablemesh132857_thvy' }, - ['1358355856'] = { Name = 'po1_sh1_cablemesh132858_thvy' }, - ['260615645'] = { Name = 'po1_sh1_cablemesh74254_thvy' }, - ['-1389651603'] = { Name = 'po1_sh1_cablemesh74267_thvy' }, - ['-1407261995'] = { Name = 'po1_sh1_cablemesh74322_thvy' }, - ['880693418'] = { Name = 'po1_sh1_cablemesh74323_thvy' }, - ['1615030391'] = { Name = 'po1_sh1_cablemesh74324_thvy' }, - ['1101062279'] = { Name = 'po1_sh1_cablemesh74325_thvy' }, - ['-762618947'] = { Name = 'po1_sh1_cablemesh91910_thvy' }, - ['1110203487'] = { Name = 'po1_sh1_cablemesh91925_thvy' }, - ['-850325873'] = { Name = 'po1_sh1_cablemesh91941_thvy' }, - ['-1614090404'] = { Name = 'po1_sh1_cablemesh91956_thvy' }, - ['1205023989'] = { Name = 'po1_sh1_cablemesh91971_thvy' }, - ['-413712297'] = { Name = 'po1_sh1_cablemesh91986_thvy' }, - ['1953678221'] = { Name = 'po1_sh1_cablemesh92001_thvy' }, - ['905007624'] = { Name = 'po1_sh1_cablemesh92016_thvy' }, - ['-187438110'] = { Name = 'po1_sh1_cablemesh92031_thvy' }, - ['158639696'] = { Name = 'po1_sh1_cablemesh92046_thvy' }, - ['1423701083'] = { Name = 'po1_sh1_cablemesh92061_thvy' }, - ['1787893875'] = { Name = 'po1_sh1_cablemesh92076_thvy' }, - ['779624194'] = { Name = 'po1_sh1_cablemesh92092_thvy' }, - ['55258574'] = { Name = 'po1_sh1_cablemesh92107_thvy' }, - ['1328452171'] = { Name = 'po1_sh1_cablemesh92381_thvy' }, - ['1462981042'] = { Name = 'po1_sh1_cablemesh92382_thvy' }, - ['109283038'] = { Name = 'po1_sh1_cablemesh92383_thvy' }, - ['253544174'] = { Name = 'po1_sh1_cablemesh92384_thvy' }, - ['1065150549'] = { Name = 'po1_sh1_cablemesh92385_thvy' }, - ['-635693058'] = { Name = 'po1_sh1_cablemesh92386_thvy' }, - ['-1737592698'] = { Name = 'po1_sh1_cablemesh92387_thvy' }, - ['1989904336'] = { Name = 'po1_sh1_cablemesh92388_thvy' }, - ['-20347931'] = { Name = 'po1_sh1_cablemesh92389_thvy' }, - ['1037126769'] = { Name = 'po1_sh1_cablemesh92390_thvy' }, - ['-179638538'] = { Name = 'po1_sh1_cablemesh92391_thvy' }, - ['1654555837'] = { Name = 'po1_sh1_cablemesh92392_thvy' }, - ['-937607461'] = { Name = 'po1_sh1_cablemesh92393_thvy' }, - ['-465644219'] = { Name = 'po1_sh1_cablemesh92394_thvy' }, - ['-1575724083'] = { Name = 'po1_sh1_cablemesh92627_thvy' }, - ['-124078652'] = { Name = 'po1_sh1_cablemesh92628_thvy' }, - ['1373725116'] = { Name = 'po1_sh1_cablemesh92629_thvy' }, - ['1569687330'] = { Name = 'po1_sh1_cablemesh92630_thvy' }, - ['-448888884'] = { Name = 'po1_sh1_cablemesh92631_thvy' }, - ['-2136204015'] = { Name = 'po1_sh1_cablemesh92632_thvy' }, - ['-1154796704'] = { Name = 'po1_sh1_cablemesh92633_thvy' }, - ['-345472610'] = { Name = 'po1_sh1_cablemesh92634_thvy' }, - ['-312481226'] = { Name = 'po1_sh1_cablemesh92635_thvy' }, - ['287836390'] = { Name = 'po1_sh1_cablemesh92636_thvy' }, - ['487639633'] = { Name = 'po1_sh1_cablemesh92739_thvy' }, - ['-1402574965'] = { Name = 'po1_sh1_cablemesh92740_thvy' }, - ['320514514'] = { Name = 'po1_sh1_cablemesh92742_thvy' }, - ['-173881972'] = { Name = 'po1_sh1_cablemesh92743_thvy' }, - ['2043994835'] = { Name = 'po1_sh1_cablemesh92744_thvy' }, - ['1780666843'] = { Name = 'po1_sh1_cablemesh92745_thvy' }, - ['-1611571907'] = { Name = 'po1_sh1_cablemesh92960_thvy' }, - ['543605257'] = { Name = 'po1_sh1_cablemesh92961_thvy' }, - ['941540822'] = { Name = 'po1_sh1_cablemesh92962_thvy' }, - ['1938615983'] = { Name = 'po1_sh1_cablemesh92963_thvy' }, - ['1377491721'] = { Name = 'po1_sh1_cablemesh92964_thvy' }, - ['-1882642571'] = { Name = 'po1_sh1_cablemesh92965_thvy' }, - ['-1100025059'] = { Name = 'po1_sh1_cablemesh92966_thvy' }, - ['-367975617'] = { Name = 'po1_sh1_cablemesh92967_thvy' }, - ['-1304647027'] = { Name = 'po1_sh1_cablemesh92968_thvy' }, - ['1661321925'] = { Name = 'po1_sh1_cablemesh92969_thvy' }, - ['754805482'] = { Name = 'po1_sh1_cablemesh92970_thvy' }, - ['-1681632956'] = { Name = 'po1_sh1_cablemesh92971_thvy' }, - ['1209290430'] = { Name = 'po1_sh1_cablemesh92986_thvy' }, - ['-368457898'] = { Name = 'po1_sh1_cablemesh92987_thvy' }, - ['748768904'] = { Name = 'po1_sh1_cablemesh93508_thvy' }, - ['-1752228188'] = { Name = 'po1_sh1_cablemesh93509_thvy' }, - ['-1731814015'] = { Name = 'po1_sh1_cablemesh93510_thvy' }, - ['-549357191'] = { Name = 'po1_sh1_cablemesh93511_thvy' }, - ['1220373552'] = { Name = 'po1_sh1_cablemesh93512_thvy' }, - ['1144237072'] = { Name = 'po1_sh1_cablemesh93513_thvy' }, - ['1441674390'] = { Name = 'po1_sh1_cablemesh93514_thvy' }, - ['-960308527'] = { Name = 'po1_sh1_cablemesh93515_thvy' }, - ['425215711'] = { Name = 'po1_sh1_cablemesh93516_thvy' }, - ['1600601284'] = { Name = 'po1_sh1_cablemesh93517_thvy' }, - ['1971493884'] = { Name = 'po1_sh1_cablemesh93518_thvy' }, - ['1065243060'] = { Name = 'po1_sh1_cablemesh93519_thvy' }, - ['1396932670'] = { Name = 'po1_sh1_cablemesh93520_thvy' }, - ['1611495361'] = { Name = 'po1_sh1_cablemesh93521_thvy' }, - ['-1791440933'] = { Name = 'po1_sh1_cablemesh93524_thvy' }, - ['1140228521'] = { Name = 'po1_sh1_cablemesh93525_thvy' }, - ['-2086976284'] = { Name = 'po1_sh1_cablemesh93526_thvy' }, - ['436798399'] = { Name = 'po1_sh1_cablemesh93527_thvy' }, - ['-299799291'] = { Name = 'po1_sh1_cablemesh93528_thvy' }, - ['-1500923011'] = { Name = 'po1_sh1_cablemesh93529_thvy' }, - ['-373115256'] = { Name = 'po1_sh1_cablemesh93530_thvy' }, - ['-1785739863'] = { Name = 'po1_sh1_cablemesh93531_thvy' }, - ['-225910105'] = { Name = 'po1_sh1_cablemesh93533_thvy' }, - ['89393425'] = { Name = 'po1_sh1_cablemesh93534_thvy' }, - ['2050331064'] = { Name = 'po1_sh1_cablemesh93535_thvy' }, - ['-1732552693'] = { Name = 'po1_sh1_cablemesh93536_thvy' }, - ['-1678711685'] = { Name = 'po1_sh1_cablemesh93537_thvy' }, - ['1700726269'] = { Name = 'po1_sh1_cablemesh93538_thvy' }, - ['2056200971'] = { Name = 'po1_sh1_cablemesh93602_thvy' }, - ['378833876'] = { Name = 'po1_sh1_cablemesh93603_thvy' }, - ['327452601'] = { Name = 'po1_sh1_cablemesh93604_thvy' }, - ['1474465310'] = { Name = 'po1_sh1_cablemesh93605_thvy' }, - ['-767815094'] = { Name = 'po1_sh1_cablemesh93607_thvy' }, - ['-478973760'] = { Name = 'po1_sh1_cablemesh93609_thvy' }, - ['-1479200007'] = { Name = 'po1_sh1_cablemesh93611_thvy' }, - ['998702070'] = { Name = 'po1_sh1_cablemesh93612_thvy' }, - ['1989117003'] = { Name = 'po1_sh1_cablemesh93613_thvy' }, - ['137741997'] = { Name = 'po1_sh1_cablemesh93614_thvy' }, - ['-1072838151'] = { Name = 'po1_sh1_cablemesh93616_thvy' }, - ['-2145648939'] = { Name = 'po1_sh1_cablemesh93617_thvy' }, - ['1631543348'] = { Name = 'po1_sh1_cablemesh94042_thvy' }, - ['-1325859523'] = { Name = 'po1_sh1_cablemesh94043_thvy' }, - ['1203680880'] = { Name = 'po1_sh1_cablemesh94044_thvy' }, - ['-318755264'] = { Name = 'po1_sh1_cablemesh94045_thvy' }, - ['-554791307'] = { Name = 'po1_sh1_cablemesh94046_thvy' }, - ['-38984706'] = { Name = 'po1_sh1_cablemesh94047_thvy' }, - ['-1256772166'] = { Name = 'po1_sh1_cablemesh94048_thvy' }, - ['328703459'] = { Name = 'po1_sh1_cablemesh94049_thvy' }, - ['1229759026'] = { Name = 'po1_sh1_cablemesh94050_thvy' }, - ['1680916584'] = { Name = 'po1_sh1_cablemesh94051_thvy' }, - ['-268379608'] = { Name = 'po1_sh1_cablemesh94052_thvy' }, - ['-907121250'] = { Name = 'po1_sh1_cablemesh94053_thvy' }, - ['-1061785066'] = { Name = 'po1_sh1_cablemesh94054_thvy' }, - ['-146338329'] = { Name = 'po1_sh1_cablemesh94055_thvy' }, - ['316954512'] = { Name = 'po1_sh1_cablemesh94056_thvy' }, - ['-72209233'] = { Name = 'po1_sh1_cablemesh94057_thvy' }, - ['2043608357'] = { Name = 'po1_sh1_cablemesh94058_thvy' }, - ['1577368522'] = { Name = 'po1_sh1_cablemesh94059_thvy' }, - ['-683630197'] = { Name = 'po1_sh1_cablemesh94060_thvy' }, - ['-1248510969'] = { Name = 'po1_sh1_cablemesh94061_thvy' }, - ['-10865491'] = { Name = 'po1_sh1_cablemesh94062_thvy' }, - ['-902136477'] = { Name = 'po1_sh1_cablemesh94063_thvy' }, - ['-1275103973'] = { Name = 'po1_sh1_cablemesh94064_thvy' }, - ['-1543444401'] = { Name = 'po1_sh1_cablemesh94065_thvy' }, - ['709327744'] = { Name = 'po1_sh1_cablemesh94066_thvy' }, - ['1506204649'] = { Name = 'po1_sh1_cablemesh94067_thvy' }, - ['1954394458'] = { Name = 'po1_sh1_cablemesh94068_thvy' }, - ['257364230'] = { Name = 'po1_sh1_cablemesh94069_thvy' }, - ['53032664'] = { Name = 'po1_sh1_crane_dec00' }, - ['-251833918'] = { Name = 'po1_sh1_crane00' }, - ['-1924055100'] = { Name = 'po1_sh1_cranewire1' }, - ['-845692848'] = { Name = 'po1_sh1_cranewire2' }, - ['1254229492'] = { Name = 'po1_sh1_drips' }, - ['-1837704821'] = { Name = 'po1_sh1_fire_overlay' }, - ['861993529'] = { Name = 'po1_sh1_gg_fizz1' }, - ['96804610'] = { Name = 'po1_sh1_gg_fizz2' }, - ['1182965884'] = { Name = 'po1_sh1_gg_fizz3' }, - ['412206235'] = { Name = 'po1_sh1_gg_fizz4' }, - ['1027509748'] = { Name = 'po1_sh1_gg_fizz6' }, - ['828208578'] = { Name = 'po1_sh1_gg_fizz7' }, - ['-4812171'] = { Name = 'po1_sh1_gg_fizz8' }, - ['-96174935'] = { Name = 'po1_sh1_gg_lad1' }, - ['-402008012'] = { Name = 'po1_sh1_gg_lad2' }, - ['-221352519'] = { Name = 'po1_sh1_gg_lad3' }, - ['-487338492'] = { Name = 'po1_sh1_gg_lad4' }, - ['-1663551752'] = { Name = 'po1_sh1_gg_netting' }, - ['-1337057720'] = { Name = 'po1_sh1_gg_netting2' }, - ['1456640986'] = { Name = 'po1_sh1_gg003' }, - ['2142004621'] = { Name = 'po1_sh1_gg004' }, - ['1897220191'] = { Name = 'po1_sh1_gg005' }, - ['-1918271089'] = { Name = 'po1_sh1_gg006' }, - ['-2693656'] = { Name = 'po1_sh1_gg007' }, - ['-930351277'] = { Name = 'po1_sh1_gg008' }, - ['-1176053239'] = { Name = 'po1_sh1_gg009' }, - ['1941399646'] = { Name = 'po1_sh1_gg1' }, - ['746910308'] = { Name = 'po1_sh1_hangrope5' }, - ['-1702528301'] = { Name = 'po1_sh1_hull_debris002' }, - ['1032304185'] = { Name = 'po1_sh1_lod_01b' }, - ['269019608'] = { Name = 'po1_sh1_numbers' }, - ['-1269106316'] = { Name = 'po1_sh1_pipe003' }, - ['2137657235'] = { Name = 'po1_sh1_pipe004' }, - ['-470542093'] = { Name = 'po1_sh1_pipe1' }, - ['-2121480745'] = { Name = 'po1_sh1_pipe2_lod' }, - ['-776604553'] = { Name = 'po1_sh1_pipe2' }, - ['-137510746'] = { Name = 'po1_sh1_pipe3' }, - ['-150290656'] = { Name = 'po1_sh1_pipe4' }, - ['465275021'] = { Name = 'po1_sh1_pipe5' }, - ['175597049'] = { Name = 'po1_sh1_pipe6' }, - ['1395619700'] = { Name = 'po1_sh1_pipe7' }, - ['770714870'] = { Name = 'po1_sh1_pipe8' }, - ['-1653295277'] = { Name = 'po1_sh1_port_xr_door00' }, - ['-15369581'] = { Name = 'po1_sh1_port_xr_door01' }, - ['-371437535'] = { Name = 'po1_sh1_port_xr_door02' }, - ['-1556593958'] = { Name = 'po1_sh1_port_xr_door03' }, - ['-832005830'] = { Name = 'po1_sh1_port_xr_door04' }, - ['419212901'] = { Name = 'po1_sh1_port_xr_door05' }, - ['48857663'] = { Name = 'po1_sh1_port_xr_door06' }, - ['-63048472'] = { Name = 'po1_sh1_port_xr_door07' }, - ['-411841708'] = { Name = 'po1_sh1_port_xr_door08' }, - ['1238732822'] = { Name = 'po1_sh1_port_xr_door09' }, - ['-318351467'] = { Name = 'po1_sh1_port_xr_door10' }, - ['-774790868'] = { Name = 'po1_sh1_port_xr_door11' }, - ['-930378080'] = { Name = 'po1_sh1_port_xr_door12' }, - ['497072333'] = { Name = 'po1_sh1_port_xr_door13' }, - ['862053455'] = { Name = 'po1_sh1_port_xr_door14' }, - ['-1993647489'] = { Name = 'po1_sh1_props_combo_slod' }, - ['-1842428275'] = { Name = 'po1_sh1_props_combo01_slod' }, - ['1720302083'] = { Name = 'po1_sh1_props_lod' }, - ['-1082140071'] = { Name = 'po1_sh1_props10_lod' }, - ['-368807232'] = { Name = 'po1_sh1_props10b_lod' }, - ['536195830'] = { Name = 'po1_sh1_props11_lod' }, - ['-1266142119'] = { Name = 'po1_sh1_props12_lod' }, - ['953732150'] = { Name = 'po1_sh1_props2_lod' }, - ['-1366109013'] = { Name = 'po1_sh1_props4_lod' }, - ['1180333701'] = { Name = 'po1_sh1_props5_lod' }, - ['-576313983'] = { Name = 'po1_sh1_props6_lod' }, - ['1202330715'] = { Name = 'po1_sh1_props7_lod' }, - ['445945453'] = { Name = 'po1_sh1_props8_lod' }, - ['-1555331043'] = { Name = 'po1_sh1_props9_lod' }, - ['-1703523201'] = { Name = 'po1_sh1_rf_door004' }, - ['397323665'] = { Name = 'po1_sh1_rf_prop23' }, - ['-376779463'] = { Name = 'po1_sh1_rope004' }, - ['-1711100374'] = { Name = 'po1_sh1_rope005' }, - ['1422926786'] = { Name = 'po1_sh1_rope006' }, - ['1183156013'] = { Name = 'po1_sh1_rope007' }, - ['-1057620980'] = { Name = 'po1_sh1_rope009' }, - ['2001436006'] = { Name = 'po1_sh1_rustedge' }, - ['-94741319'] = { Name = 'po1_sh1_ship_sunk_det00' }, - ['-1637361686'] = { Name = 'po1_sh1_ship_sunk_int01' }, - ['-929469528'] = { Name = 'po1_sh1_shipa_006' }, - ['2087747926'] = { Name = 'po1_sh1_shipa_05' }, - ['-644403589'] = { Name = 'po1_sh1_shipa_05a' }, - ['-942372106'] = { Name = 'po1_sh1_shipa_05b' }, - ['850682036'] = { Name = 'po1_sh1_shipa_05c' }, - ['1877234107'] = { Name = 'po1_sh1_shipa_09_rope1_det' }, - ['-119662110'] = { Name = 'po1_sh1_shipa_09_rope1' }, - ['1406001375'] = { Name = 'po1_sh1_shipa_09_rope2_det' }, - ['1090660957'] = { Name = 'po1_sh1_shipa_09_rope2' }, - ['1073907835'] = { Name = 'po1_sh1_shipa_09' }, - ['-450984745'] = { Name = 'po1_sh1_shipa_cabin_ov' }, - ['1232442706'] = { Name = 'po1_sh1_shipa_cabin' }, - ['940111680'] = { Name = 'po1_sh1_shipa_cabin001' }, - ['-1221521939'] = { Name = 'po1_sh1_shipa_decals' }, - ['-1968632191'] = { Name = 'po1_sh1_shipa_decals2' }, - ['-769072662'] = { Name = 'po1_sh1_shipa_detail' }, - ['1381926518'] = { Name = 'po1_sh1_shipa_detail001' }, - ['1792440137'] = { Name = 'po1_sh1_shipa_hull' }, - ['-726921261'] = { Name = 'po1_sh1_shipa_hull001' }, - ['565440205'] = { Name = 'po1_sh1_shipa_ladder_p1' }, - ['-335379605'] = { Name = 'po1_sh1_shipa_ladder_p2' }, - ['-369181351'] = { Name = 'po1_sh1_shipa_ladder002' }, - ['-925203762'] = { Name = 'po1_sh1_shipa_ladder002b' }, - ['506809511'] = { Name = 'po1_sh1_shipa_lifeboats' }, - ['924001114'] = { Name = 'po1_sh1_shipa_lifeboats001' }, - ['-1664318454'] = { Name = 'po1_sh1_shipa_lifeboats2' }, - ['1211853693'] = { Name = 'po1_sh1_shipa_railings_3' }, - ['317784297'] = { Name = 'po1_sh1_shipa_railings_4' }, - ['-914952718'] = { Name = 'po1_sh1_shipa_railings_6' }, - ['-1892484757'] = { Name = 'po1_sh1_shipa_railings_7' }, - ['-438846243'] = { Name = 'po1_sh1_shipa_railings_p01' }, - ['-406077243'] = { Name = 'po1_sh1_shipa_railings_p02' }, - ['-96115272'] = { Name = 'po1_sh1_shipa_railings_p03' }, - ['208701966'] = { Name = 'po1_sh1_shipa_railings_p04' }, - ['515059347'] = { Name = 'po1_sh1_shipa_railings_p05' }, - ['1092973431'] = { Name = 'po1_sh1_shipa_railings_p06' }, - ['1398872050'] = { Name = 'po1_sh1_shipa_railings_p07' }, - ['1639363741'] = { Name = 'po1_sh1_shipa_railings_p08' }, - ['1944901897'] = { Name = 'po1_sh1_shipa_railings_p09' }, - ['1582664252'] = { Name = 'po1_sh1_shipa_railings_p1' }, - ['-689891012'] = { Name = 'po1_sh1_shipa_railings_p10' }, - ['-1580126431'] = { Name = 'po1_sh1_shipa_railings_p11' }, - ['-358235963'] = { Name = 'po1_sh1_shipa_railings_p12' }, - ['-1794312278'] = { Name = 'po1_sh1_shipa_railings_p2' }, - ['-2118495995'] = { Name = 'po1_sh1_shipa_railings_p3' }, - ['-1200177535'] = { Name = 'po1_sh1_shipa_railings_p4' }, - ['-910213443'] = { Name = 'po1_sh1_shipa_railings001' }, - ['-2117551994'] = { Name = 'po1_sh1_shipa_stairs' }, - ['1601214123'] = { Name = 'po1_sh1_shipa_stairs002' }, - ['-853020136'] = { Name = 'po1_sh1_shipa_stairs003' }, - ['-2080022572'] = { Name = 'po1_sh1_shipa_stairs004' }, - ['-38102941'] = { Name = 'po1_sh1_shipcrates1' }, - ['1957081450'] = { Name = 'po1_sh1_shipcrates2_d' }, - ['789871382'] = { Name = 'po1_sh1_shipcrates2' }, - ['360464429'] = { Name = 'po1_sh1_shipcrates2b_d' }, - ['-1948354067'] = { Name = 'po1_sh1_shipcrates2b' }, - ['938468680'] = { Name = 'po1_sh1_shipcrates3_d' }, - ['-631320148'] = { Name = 'po1_sh1_shipcrates3' }, - ['-1233711778'] = { Name = 'po1_sh1_shipcrates3b_d' }, - ['301861762'] = { Name = 'po1_sh1_shipcrates3b' }, - ['1213197611'] = { Name = 'po1_sh1_shipcrates4_d' }, - ['193836041'] = { Name = 'po1_sh1_shipcrates4' }, - ['-361195211'] = { Name = 'po1_sh1_shipcrates4b_d' }, - ['481894928'] = { Name = 'po1_sh1_shipcrates4b' }, - ['-35405218'] = { Name = 'po1_sh1_shipcrates5_d' }, - ['496162831'] = { Name = 'po1_sh1_shipcrates5' }, - ['-624607375'] = { Name = 'po1_sh1_shipcrates5b_d' }, - ['-1348449008'] = { Name = 'po1_sh1_shipcrates5b' }, - ['616271603'] = { Name = 'po1_sh1_slod002' }, - ['-1291964770'] = { Name = 'po1_sh1_stairs_004' }, - ['490386153'] = { Name = 'po1_sh1_stairs_03' }, - ['-617580230'] = { Name = 'po1_sh1_stairs_032' }, - ['-1995114922'] = { Name = 'po1_sh1_sunk_slod' }, - ['-14043999'] = { Name = 'po1_sh1_sunklad1' }, - ['175426359'] = { Name = 'po1_sh1_sunklad2' }, - ['1689190314'] = { Name = 'po1_sh1_sunklad3' }, - ['-297790770'] = { Name = 'po1_sh1_sunklad4' }, - ['-1714267800'] = { Name = 'po1_sh1_window_overlay' }, - ['1522069532'] = { Name = 'po1_sh2_crane_cables_01' }, - ['830447018'] = { Name = 'po1_sh2_crane_cables_02' }, - ['-1193741830'] = { Name = 'po1_sh2_decalsgg_01' }, - ['-837084034'] = { Name = 'po1_sh2_decalsgg_02' }, - ['-486848962'] = { Name = 'po1_sh2_decalsgg_03' }, - ['884131854'] = { Name = 'po1_sh2_drips' }, - ['-768896172'] = { Name = 'po1_sh2_gavfix_fiz1_lod' }, - ['782411229'] = { Name = 'po1_sh2_gavfix_fiz2_lod' }, - ['740851122'] = { Name = 'po1_sh2_gg_lad2' }, - ['-1551225730'] = { Name = 'po1_sh2_gg003' }, - ['145880780'] = { Name = 'po1_sh2_gg004' }, - ['-694480225'] = { Name = 'po1_sh2_gg005' }, - ['841627149'] = { Name = 'po1_sh2_gg1' }, - ['-2091444081'] = { Name = 'po1_sh2_laddertest1' }, - ['-1799373984'] = { Name = 'po1_sh2_laddertest2' }, - ['1501447398'] = { Name = 'po1_sh2_laddertest3' }, - ['191564381'] = { Name = 'po1_sh2_lod_04b' }, - ['-1483220376'] = { Name = 'po1_sh2_numbers' }, - ['-1940821995'] = { Name = 'po1_sh2_pipe1' }, - ['-1625813594'] = { Name = 'po1_sh2_pipe2' }, - ['979726030'] = { Name = 'po1_sh2_po1_sh1_anchors' }, - ['-810687974'] = { Name = 'po1_sh2_po1_sh1_antenna1' }, - ['236911090'] = { Name = 'po1_sh2_po1_sh1_decals_02' }, - ['-540009131'] = { Name = 'po1_sh2_po1_sh1_decals_03' }, - ['315196223'] = { Name = 'po1_sh2_po1_sh1_decals_04' }, - ['619718540'] = { Name = 'po1_sh2_po1_sh1_decals_05' }, - ['-881003345'] = { Name = 'po1_sh2_po1_sh1_decals_06' }, - ['-1731031205'] = { Name = 'po1_sh2_po1_sh1_decals_07' }, - ['-270025340'] = { Name = 'po1_sh2_po1_sh1_decals_08' }, - ['-1186443194'] = { Name = 'po1_sh2_po1_sh1_decals_09' }, - ['1899250551'] = { Name = 'po1_sh2_po1_sh1_decals_11' }, - ['-606791497'] = { Name = 'po1_sh2_po1_sh1_decals_12' }, - ['816070070'] = { Name = 'po1_sh2_po1_sh1_decalwires_03' }, - ['-1276838965'] = { Name = 'po1_sh2_po1_sh1_details_02' }, - ['-430743385'] = { Name = 'po1_sh2_po1_sh1_details_03' }, - ['1633340585'] = { Name = 'po1_sh2_po1_sh1_hull001' }, - ['1561725554'] = { Name = 'po1_sh2_po1_sh1_hullrudder' }, - ['329685343'] = { Name = 'po1_sh2_po1_sh1_pipes' }, - ['-974020524'] = { Name = 'po1_sh2_po1_sh1_ropes01' }, - ['-1909235556'] = { Name = 'po1_sh2_po1_sh1_ropesf' }, - ['451017103'] = { Name = 'po1_sh2_po1_sh1_ropesr' }, - ['-2016344491'] = { Name = 'po1_sh2_po1_sh1_stps_det' }, - ['1267804496'] = { Name = 'po1_sh2_po1_sh1_stps' }, - ['608609330'] = { Name = 'po1_sh2_po1_sh1_tower002' }, - ['102336357'] = { Name = 'po1_sh2_railings_01' }, - ['315891930'] = { Name = 'po1_sh2_railings_02' }, - ['937290477'] = { Name = 'po1_sh2_railings_04' }, - ['705777488'] = { Name = 'po1_sh2_railings_05' }, - ['-22873996'] = { Name = 'po1_sh2_railings_07' }, - ['-1391585082'] = { Name = 'po1_sh2_railings_100' }, - ['1289214023'] = { Name = 'po1_sh2_railings_101' }, - ['1418848187'] = { Name = 'po1_sh2_railings_102' }, - ['1633386830'] = { Name = 'po1_sh2_railings_103' }, - ['2024976380'] = { Name = 'po1_sh2_railings_104' }, - ['-175232571'] = { Name = 'po1_sh2_railings_105' }, - ['458126661'] = { Name = 'po1_sh2_railings_106' }, - ['724833536'] = { Name = 'po1_sh2_railings_107' }, - ['966373835'] = { Name = 'po1_sh2_railings_108' }, - ['369519273'] = { Name = 'po1_sh2_railings_109' }, - ['2143865516'] = { Name = 'po1_sh2_railings_110' }, - ['-540341581'] = { Name = 'po1_sh2_railings_111' }, - ['-181010663'] = { Name = 'po1_sh2_railings2_01' }, - ['-833360488'] = { Name = 'po1_sh2_rope02' }, - ['-1332956662'] = { Name = 'po1_sh2_rope03' }, - ['-1562765659'] = { Name = 'po1_sh2_rope04' }, - ['-33436441'] = { Name = 'po1_sh2_rope05' }, - ['198469772'] = { Name = 'po1_sh2_rope06' }, - ['-752683226'] = { Name = 'po1_sh2_rope07' }, - ['-523857295'] = { Name = 'po1_sh2_rope08' }, - ['440266385'] = { Name = 'po1_sh2_rope1_2' }, - ['-1636567301'] = { Name = 'po1_sh2_rope1_3' }, - ['-1887905531'] = { Name = 'po1_sh2_rope1_4' }, - ['-1932569282'] = { Name = 'po1_sh2_rope3_2' }, - ['-125487144'] = { Name = 'po1_sh2_rustedge' }, - ['-2070698107'] = { Name = 'po1_sh2_s_001' }, - ['-474210339'] = { Name = 'po1_sh2_sh1_details_01_hd' }, - ['-991994332'] = { Name = 'po1_sh2_sh1_details_02_hd' }, - ['1099359019'] = { Name = 'po1_sh2_sh1_details_69' }, - ['1096963266'] = { Name = 'po1_sh2_ship2_fizz1' }, - ['1328607327'] = { Name = 'po1_sh2_ship2_fizz2' }, - ['139190922'] = { Name = 'po1_sh2_ship2_fizz3' }, - ['872233464'] = { Name = 'po1_sh2_ship2_fizz4' }, - ['-320521672'] = { Name = 'po1_sh2_shipa_05' }, - ['-1663070894'] = { Name = 'po1_sh2_shipa_05b_det' }, - ['-416818391'] = { Name = 'po1_sh2_shipa_05b' }, - ['44393912'] = { Name = 'po1_sh2_shipa_06' }, - ['376474241'] = { Name = 'po1_sh2_shipa_bollards1' }, - ['-1293761693'] = { Name = 'po1_sh2_shipa_bollards2' }, - ['-2122594469'] = { Name = 'po1_sh2_shipa_cabin_ov2' }, - ['1216271714'] = { Name = 'po1_sh2_shipa_cabin_ov3' }, - ['1455256031'] = { Name = 'po1_sh2_shipa_cabin_ov4' }, - ['-423359804'] = { Name = 'po1_sh2_shipa_cabin' }, - ['-1273158462'] = { Name = 'po1_sh2_shipa_dec_1' }, - ['-949990584'] = { Name = 'po1_sh2_shipa_dec_2' }, - ['190784200'] = { Name = 'po1_sh2_shipa_dec' }, - ['-1627181951'] = { Name = 'po1_sh2_shipa_decals' }, - ['1115677385'] = { Name = 'po1_sh2_shipa_decals2' }, - ['-979889780'] = { Name = 'po1_sh2_shipa_detail' }, - ['420187091'] = { Name = 'po1_sh2_shipa_hull' }, - ['-478050236'] = { Name = 'po1_sh2_shipa_ladder002' }, - ['-179033111'] = { Name = 'po1_sh2_shipa_ladder003' }, - ['-486983846'] = { Name = 'po1_sh2_shipa_ladder01' }, - ['-248785985'] = { Name = 'po1_sh2_shipa_ladder02' }, - ['271734987'] = { Name = 'po1_sh2_shipa_lifeboats1' }, - ['562559862'] = { Name = 'po1_sh2_shipa_lifeboats2' }, - ['-1463346467'] = { Name = 'po1_sh2_shipa_railings' }, - ['-1334616724'] = { Name = 'po1_sh2_shipa_stairs' }, - ['229387087'] = { Name = 'po1_sh2_shipa_stairs002' }, - ['2120934406'] = { Name = 'po1_sh2_shipa_windows' }, - ['-855924320'] = { Name = 'po1_sh2_stairs_01' }, - ['-1652669790'] = { Name = 'po1_sh2_stairs_07' }, - ['743767427'] = { Name = 'po1_sh2_wire' }, - ['2046537925'] = { Name = 'police' }, - ['-1627000575'] = { Name = 'police2' }, - ['1912215274'] = { Name = 'police3' }, - ['-1973172295'] = { Name = 'police4' }, - ['-34623805'] = { Name = 'policeb' }, - ['-1536924937'] = { Name = 'policeold1' }, - ['-1779120616'] = { Name = 'policeold2' }, - ['456714581'] = { Name = 'policet' }, - ['353883353'] = { Name = 'polmav' }, - ['-119658072'] = { Name = 'pony' }, - ['943752001'] = { Name = 'pony2' }, - ['-1290268385'] = { Name = 'pop_v_bank_door_l' }, - ['-498077814'] = { Name = 'pop_v_bank_door_r' }, - ['-1977698976'] = { Name = 'poro_06_sig1_c_source' }, - ['-1976806603'] = { Name = 'port_xr_bins' }, - ['-1221701255'] = { Name = 'port_xr_cont_01' }, - ['-1803023315'] = { Name = 'port_xr_cont_02' }, - ['-1171564689'] = { Name = 'port_xr_cont_03' }, - ['-935595120'] = { Name = 'port_xr_cont_04' }, - ['710539794'] = { Name = 'port_xr_cont_sm' }, - ['575329936'] = { Name = 'port_xr_contpod_01' }, - ['806973997'] = { Name = 'port_xr_contpod_02' }, - ['1917744790'] = { Name = 'port_xr_contpod_03' }, - ['-401460437'] = { Name = 'port_xr_cranelg' }, - ['1369145036'] = { Name = 'port_xr_door_01' }, - ['-2085166334'] = { Name = 'port_xr_door_04' }, - ['1450215542'] = { Name = 'port_xr_door_05' }, - ['2123151705'] = { Name = 'port_xr_elecbox_1' }, - ['-2007544594'] = { Name = 'port_xr_elecbox_2' }, - ['-1683917950'] = { Name = 'port_xr_elecbox_3' }, - ['2133090796'] = { Name = 'port_xr_fire' }, - ['1034340814'] = { Name = 'port_xr_firehose' }, - ['-1340510246'] = { Name = 'port_xr_lifeboat' }, - ['-1727003037'] = { Name = 'port_xr_lifep' }, - ['456885502'] = { Name = 'port_xr_lightdoor' }, - ['1809625346'] = { Name = 'port_xr_lighthal' }, - ['-390630130'] = { Name = 'port_xr_lightspot' }, - ['1013710720'] = { Name = 'port_xr_railbal' }, - ['-626023976'] = { Name = 'port_xr_railside' }, - ['1857662402'] = { Name = 'port_xr_railst' }, - ['-734430729'] = { Name = 'port_xr_spoolsm' }, - ['-520750160'] = { Name = 'port_xr_stairs_01' }, - ['-833990705'] = { Name = 'port_xr_tiedown' }, - ['2112052861'] = { Name = 'pounder' }, - ['-1450650718'] = { Name = 'prairie' }, - ['741586030'] = { Name = 'pranger' }, - ['-488123221'] = { Name = 'predator' }, - ['-1883869285'] = { Name = 'premier' }, - ['-1150599089'] = { Name = 'primo' }, - ['-2040426790'] = { Name = 'primo2' }, - ['-1100075058'] = { Name = 'proair_hoc_puck' }, - ['29828513'] = { Name = 'proc_brittlebush_01' }, - ['-1280423821'] = { Name = 'proc_coral_01' }, - ['-2114240528'] = { Name = 'proc_desert_sage_01' }, - ['1870499111'] = { Name = 'proc_drkyel001' }, - ['2041844081'] = { Name = 'proc_dry_plants_01' }, - ['2015249693'] = { Name = 'proc_drygrasses01' }, - ['-1511795599'] = { Name = 'proc_drygrasses01b' }, - ['1781006001'] = { Name = 'proc_drygrassfronds01' }, - ['-2044882611'] = { Name = 'proc_dryplantsgrass_01' }, - ['-1945854697'] = { Name = 'proc_dryplantsgrass_02' }, - ['-2131000111'] = { Name = 'proc_fern_02' }, - ['-203856859'] = { Name = 'proc_flower_wild_04' }, - ['-287168502'] = { Name = 'proc_flower1' }, - ['-67644897'] = { Name = 'proc_forest_grass01' }, - ['-429997852'] = { Name = 'proc_forest_ivy_01' }, - ['-1010825119'] = { Name = 'proc_grassdandelion01' }, - ['1599985244'] = { Name = 'proc_grasses01' }, - ['-1065905452'] = { Name = 'proc_grasses01b' }, - ['1406134282'] = { Name = 'proc_grassfronds01' }, - ['-638302388'] = { Name = 'proc_grassplantmix_01' }, - ['213036232'] = { Name = 'proc_grassplantmix_02' }, - ['-964059938'] = { Name = 'proc_indian_pbrush_01' }, - ['-783590493'] = { Name = 'proc_leafybush_01' }, - ['849975660'] = { Name = 'proc_leafyplant_01' }, - ['775482218'] = { Name = 'proc_litter_01' }, - ['479086613'] = { Name = 'proc_litter_02' }, - ['1775565172'] = { Name = 'proc_lizardtail_01' }, - ['-1025025503'] = { Name = 'proc_lupins_01' }, - ['17258065'] = { Name = 'proc_meadowmix_01' }, - ['-508643576'] = { Name = 'proc_meadowpoppy_01' }, - ['580043721'] = { Name = 'proc_mntn_stone01' }, - ['334177914'] = { Name = 'proc_mntn_stone02' }, - ['237509364'] = { Name = 'proc_mntn_stone03' }, - ['-876909511'] = { Name = 'proc_sage_01' }, - ['1872771678'] = { Name = 'proc_scrub_bush01' }, - ['2064959419'] = { Name = 'proc_searock_01' }, - ['1758339886'] = { Name = 'proc_searock_02' }, - ['1589448460'] = { Name = 'proc_searock_03' }, - ['-814048611'] = { Name = 'proc_sml_reeds_01' }, - ['875648136'] = { Name = 'proc_sml_reeds_01b' }, - ['1173321732'] = { Name = 'proc_sml_reeds_01c' }, - ['-503723136'] = { Name = 'proc_sml_stones01' }, - ['-741527769'] = { Name = 'proc_sml_stones02' }, - ['-1015640454'] = { Name = 'proc_sml_stones03' }, - ['-1405230777'] = { Name = 'proc_stones_01' }, - ['-889446717'] = { Name = 'proc_stones_02' }, - ['-646857810'] = { Name = 'proc_stones_03' }, - ['-412821612'] = { Name = 'proc_stones_04' }, - ['-182488311'] = { Name = 'proc_stones_05' }, - ['31952029'] = { Name = 'proc_stones_06' }, - ['950980702'] = { Name = 'proc_trolley_lakebed' }, - ['-1406314798'] = { Name = 'proc_weeds01a' }, - ['-1272191277'] = { Name = 'proc_weeds01b' }, - ['-1578024354'] = { Name = 'proc_weeds01c' }, - ['-1533650692'] = { Name = 'proc_wildquinine' }, - ['-1344020018'] = { Name = 'prop_06_sig1_a' }, - ['2041509221'] = { Name = 'prop_06_sig1_b' }, - ['1982492248'] = { Name = 'prop_06_sig1_d' }, - ['1760580580'] = { Name = 'prop_06_sig1_e' }, - ['1384097539'] = { Name = 'prop_06_sig1_f' }, - ['1162513561'] = { Name = 'prop_06_sig1_g' }, - ['790913101'] = { Name = 'prop_06_sig1_h' }, - ['563529010'] = { Name = 'prop_06_sig1_i' }, - ['-331261304'] = { Name = 'prop_06_sig1_j' }, - ['368618998'] = { Name = 'prop_06_sig1_k' }, - ['-1619803918'] = { Name = 'prop_06_sig1_l' }, - ['-785013643'] = { Name = 'prop_06_sig1_m' }, - ['-1701726418'] = { Name = 'prop_06_sig1_n' }, - ['-1940612428'] = { Name = 'prop_06_sig1_o' }, - ['1875279045'] = { Name = 'prop_1st_hostage_scene' }, - ['1280887308'] = { Name = 'prop_1st_prologue_scene' }, - ['-742199344'] = { Name = 'prop_2nd_hostage_scene' }, - ['-1331536247'] = { Name = 'prop_50s_jukebox' }, - ['1611303890'] = { Name = 'prop_a_base_bars_01' }, - ['1293907652'] = { Name = 'prop_a_trailer_door_01' }, - ['478908889'] = { Name = 'prop_a4_pile_01' }, - ['-1378325165'] = { Name = 'prop_a4_sheet_01' }, - ['-1220181943'] = { Name = 'prop_a4_sheet_02' }, - ['-1831225514'] = { Name = 'prop_a4_sheet_03' }, - ['-1684027166'] = { Name = 'prop_a4_sheet_04' }, - ['17929184'] = { Name = 'prop_a4_sheet_05' }, - ['1373227456'] = { Name = 'prop_abat_roller_static' }, - ['-1468417022'] = { Name = 'prop_abat_slide' }, - ['-121802573'] = { Name = 'prop_acc_guitar_01_d1' }, - ['-708789241'] = { Name = 'prop_acc_guitar_01' }, - ['-1602845292'] = { Name = 'prop_aerial_01a' }, - ['363720705'] = { Name = 'prop_aerial_01b' }, - ['201055389'] = { Name = 'prop_aerial_01c' }, - ['1161678624'] = { Name = 'prop_aerial_01d' }, - ['924808509'] = { Name = 'prop_afsign_amun' }, - ['718227482'] = { Name = 'prop_afsign_vbike' }, - ['-1056637498'] = { Name = 'prop_agave_01' }, - ['-1437872044'] = { Name = 'prop_agave_02' }, - ['-1716731852'] = { Name = 'prop_aiprort_sign_01' }, - ['-1187578040'] = { Name = 'prop_aiprort_sign_02' }, - ['167557869'] = { Name = 'prop_air_bagloader' }, - ['1683244033'] = { Name = 'prop_air_bagloader2_cr' }, - ['-1287677794'] = { Name = 'prop_air_bagloader2' }, - ['1175931267'] = { Name = 'prop_air_barrier' }, - ['-76230599'] = { Name = 'prop_air_bench_01' }, - ['307625467'] = { Name = 'prop_air_bench_02' }, - ['-1550393228'] = { Name = 'prop_air_bigradar_l1' }, - ['-1773582887'] = { Name = 'prop_air_bigradar_l2' }, - ['-1062232474'] = { Name = 'prop_air_bigradar_slod' }, - ['-1988908952'] = { Name = 'prop_air_bigradar' }, - ['-1265137328'] = { Name = 'prop_air_blastfence_01' }, - ['-1562286620'] = { Name = 'prop_air_blastfence_02' }, - ['131289656'] = { Name = 'prop_air_bridge01' }, - ['497122772'] = { Name = 'prop_air_bridge02' }, - ['1610144111'] = { Name = 'prop_air_cargo_01a' }, - ['1891269362'] = { Name = 'prop_air_cargo_01b' }, - ['1046025776'] = { Name = 'prop_air_cargo_01c' }, - ['-274013936'] = { Name = 'prop_air_cargo_02a' }, - ['542982772'] = { Name = 'prop_air_cargo_02b' }, - ['-1986685425'] = { Name = 'prop_air_cargo_03a' }, - ['628478833'] = { Name = 'prop_air_cargo_04a' }, - ['-500478759'] = { Name = 'prop_air_cargo_04b' }, - ['-806573988'] = { Name = 'prop_air_cargo_04c' }, - ['1757803317'] = { Name = 'prop_air_cargoloader_01' }, - ['1514102675'] = { Name = 'prop_air_chock_01' }, - ['-452397756'] = { Name = 'prop_air_chock_03' }, - ['1800372691'] = { Name = 'prop_air_chock_04' }, - ['-1587301201'] = { Name = 'prop_air_conelight' }, - ['-1779825653'] = { Name = 'prop_air_fireexting' }, - ['-770054074'] = { Name = 'prop_air_fueltrail1' }, - ['-1075526692'] = { Name = 'prop_air_fueltrail2' }, - ['-925511118'] = { Name = 'prop_air_gasbogey_01' }, - ['-1564544556'] = { Name = 'prop_air_generator_01' }, - ['-1474397017'] = { Name = 'prop_air_generator_03' }, - ['78540130'] = { Name = 'prop_air_hoc_paddle_01' }, - ['-218084858'] = { Name = 'prop_air_hoc_paddle_02' }, - ['1784537360'] = { Name = 'prop_air_lights_01a' }, - ['1095208676'] = { Name = 'prop_air_lights_01b' }, - ['-1035660791'] = { Name = 'prop_air_lights_02a' }, - ['-772034186'] = { Name = 'prop_air_lights_02b' }, - ['1998517203'] = { Name = 'prop_air_lights_03a' }, - ['-887448895'] = { Name = 'prop_air_lights_04a' }, - ['-173347079'] = { Name = 'prop_air_lights_05a' }, - ['-1914374242'] = { Name = 'prop_air_luggtrolley' }, - ['-1824199444'] = { Name = 'prop_air_mast_01' }, - ['1524825141'] = { Name = 'prop_air_mast_02' }, - ['1849402306'] = { Name = 'prop_air_monhut_01' }, - ['1670942332'] = { Name = 'prop_air_monhut_02' }, - ['169792355'] = { Name = 'prop_air_monhut_03_cr' }, - ['-961391442'] = { Name = 'prop_air_monhut_03' }, - ['1562403901'] = { Name = 'prop_air_propeller01' }, - ['-1867237480'] = { Name = 'prop_air_radar_01' }, - ['-105439435'] = { Name = 'prop_air_sechut_01' }, - ['1363465830'] = { Name = 'prop_air_stair_01' }, - ['123191949'] = { Name = 'prop_air_stair_02' }, - ['900603705'] = { Name = 'prop_air_stair_03' }, - ['-2103481739'] = { Name = 'prop_air_stair_04a_cr' }, - ['1412727143'] = { Name = 'prop_air_stair_04a' }, - ['-68540493'] = { Name = 'prop_air_stair_04b_cr' }, - ['-1444467509'] = { Name = 'prop_air_stair_04b' }, - ['2129093333'] = { Name = 'prop_air_taxisign_01a' }, - ['1896958025'] = { Name = 'prop_air_taxisign_02a' }, - ['-159713206'] = { Name = 'prop_air_taxisign_03a' }, - ['-994110897'] = { Name = 'prop_air_terlight_01a' }, - ['-479309907'] = { Name = 'prop_air_terlight_01b' }, - ['714071539'] = { Name = 'prop_air_terlight_01c' }, - ['-806121615'] = { Name = 'prop_air_towbar_01' }, - ['-576443694'] = { Name = 'prop_air_towbar_02' }, - ['1555409147'] = { Name = 'prop_air_towbar_03' }, - ['-397607777'] = { Name = 'prop_air_trailer_1a' }, - ['-1161911933'] = { Name = 'prop_air_trailer_1b' }, - ['-1957313850'] = { Name = 'prop_air_trailer_1c' }, - ['401136338'] = { Name = 'prop_air_trailer_2a' }, - ['623310158'] = { Name = 'prop_air_trailer_2b' }, - ['-399903427'] = { Name = 'prop_air_trailer_3a' }, - ['-1236266614'] = { Name = 'prop_air_trailer_3b' }, - ['-64349163'] = { Name = 'prop_air_trailer_4a' }, - ['712505520'] = { Name = 'prop_air_trailer_4b' }, - ['425776770'] = { Name = 'prop_air_trailer_4c' }, - ['638798121'] = { Name = 'prop_air_watertank1' }, - ['1422763677'] = { Name = 'prop_air_watertank2' }, - ['447918696'] = { Name = 'prop_air_watertank3' }, - ['61509710'] = { Name = 'prop_air_windsock_base' }, - ['-310772260'] = { Name = 'prop_air_windsock' }, - ['886547537'] = { Name = 'prop_air_woodsteps' }, - ['827943275'] = { Name = 'prop_aircon_l_01' }, - ['605277920'] = { Name = 'prop_aircon_l_02' }, - ['1413477803'] = { Name = 'prop_aircon_l_03_dam' }, - ['1426534598'] = { Name = 'prop_aircon_l_03' }, - ['1195939145'] = { Name = 'prop_aircon_l_04' }, - ['1369811908'] = { Name = 'prop_aircon_m_01' }, - ['1131941737'] = { Name = 'prop_aircon_m_02' }, - ['1948414141'] = { Name = 'prop_aircon_m_03' }, - ['1709954128'] = { Name = 'prop_aircon_m_04' }, - ['-1393761711'] = { Name = 'prop_aircon_m_05' }, - ['-1625667924'] = { Name = 'prop_aircon_m_06' }, - ['1366469466'] = { Name = 'prop_aircon_m_07' }, - ['1135153095'] = { Name = 'prop_aircon_m_08' }, - ['-432646941'] = { Name = 'prop_aircon_m_09' }, - ['726292818'] = { Name = 'prop_aircon_m_10' }, - ['-223157118'] = { Name = 'prop_aircon_s_01a' }, - ['317638569'] = { Name = 'prop_aircon_s_02a' }, - ['532504902'] = { Name = 'prop_aircon_s_02b' }, - ['1767043400'] = { Name = 'prop_aircon_s_03a' }, - ['1552504757'] = { Name = 'prop_aircon_s_03b' }, - ['217291359'] = { Name = 'prop_aircon_s_04a' }, - ['-759879321'] = { Name = 'prop_aircon_s_05a' }, - ['-867494225'] = { Name = 'prop_aircon_s_06a' }, - ['1928095639'] = { Name = 'prop_aircon_s_07a' }, - ['-1177062036'] = { Name = 'prop_aircon_s_07b' }, - ['-1545030330'] = { Name = 'prop_aircon_t_03' }, - ['-793463384'] = { Name = 'prop_aircon_tna_02' }, - ['-775805135'] = { Name = 'prop_airdancer_2_cloth' }, - ['1480247349'] = { Name = 'prop_airdancer_base' }, - ['-1679199186'] = { Name = 'prop_airhockey_01' }, - ['160628940'] = { Name = 'prop_airport_sale_sign' }, - ['-1758446314'] = { Name = 'prop_alarm_01' }, - ['-2112285976'] = { Name = 'prop_alarm_02' }, - ['1803116220'] = { Name = 'prop_alien_egg_01' }, - ['-73263722'] = { Name = 'prop_aloevera_01' }, - ['-1536173086'] = { Name = 'prop_am_box_wood_01' }, - ['-1139842859'] = { Name = 'prop_amanda_note_01' }, - ['503635721'] = { Name = 'prop_amanda_note_01b' }, - ['-440787091'] = { Name = 'prop_amb_40oz_02' }, - ['-1217150239'] = { Name = 'prop_amb_40oz_03' }, - ['683570518'] = { Name = 'prop_amb_beer_bottle' }, - ['2017086435'] = { Name = 'prop_amb_ciggy_01' }, - ['1847598393'] = { Name = 'prop_amb_donut' }, - ['1197080420'] = { Name = 'prop_amb_handbag_01' }, - ['974883178'] = { Name = 'prop_amb_phone' }, - ['-547813259'] = { Name = 'prop_ammunation_sign_01' }, - ['1011250084'] = { Name = 'prop_amp_01' }, - ['1814532926'] = { Name = 'prop_anim_cash_note_b' }, - ['1597489407'] = { Name = 'prop_anim_cash_note' }, - ['-1170050911'] = { Name = 'prop_anim_cash_pile_01' }, - ['-1448063107'] = { Name = 'prop_anim_cash_pile_02' }, - ['1405043423'] = { Name = 'prop_apple_box_01' }, - ['-585968300'] = { Name = 'prop_apple_box_02' }, - ['1011158577'] = { Name = 'prop_ar_arrow_1' }, - ['1811869092'] = { Name = 'prop_ar_arrow_2' }, - ['958367714'] = { Name = 'prop_ar_arrow_3' }, - ['977639986'] = { Name = 'prop_ar_ring_01' }, - ['-1995840812'] = { Name = 'prop_arc_blueprints_01' }, - ['-1991361770'] = { Name = 'prop_arcade_01' }, - ['952375787'] = { Name = 'prop_arcade_02' }, - ['-2029892494'] = { Name = 'prop_arm_gate_l' }, - ['-861197080'] = { Name = 'prop_arm_wrestle_01' }, - ['719404538'] = { Name = 'prop_armchair_01' }, - ['1534513698'] = { Name = 'prop_armenian_gate' }, - ['701173564'] = { Name = 'prop_armour_pickup' }, - ['-267139712'] = { Name = 'prop_artgallery_02_dl' }, - ['650392296'] = { Name = 'prop_artgallery_02_dr' }, - ['-751501685'] = { Name = 'prop_artgallery_dl' }, - ['-1382730932'] = { Name = 'prop_artgallery_dr' }, - ['-956377380'] = { Name = 'prop_artifact_01' }, - ['996113921'] = { Name = 'prop_ashtray_01' }, - ['-543669801'] = { Name = 'prop_asteroid_01' }, - ['1685515260'] = { Name = 'prop_astro_table_01' }, - ['832407114'] = { Name = 'prop_astro_table_02' }, - ['-870868698'] = { Name = 'prop_atm_01' }, - ['-1126237515'] = { Name = 'prop_atm_02' }, - ['-1364697528'] = { Name = 'prop_atm_03' }, - ['-1600440298'] = { Name = 'prop_attache_case_01' }, - ['2047842025'] = { Name = 'prop_aviators_01' }, - ['1335593994'] = { Name = 'prop_b_board_blank' }, - ['-1212160278'] = { Name = 'prop_bahammenu' }, - ['-465397894'] = { Name = 'prop_balcony_glass_01' }, - ['-156648376'] = { Name = 'prop_balcony_glass_02' }, - ['128212541'] = { Name = 'prop_balcony_glass_03' }, - ['170812241'] = { Name = 'prop_balcony_glass_04' }, - ['-206337278'] = { Name = 'prop_ball_box' }, - ['812526004'] = { Name = 'prop_ballistic_shield_lod1' }, - ['1141389967'] = { Name = 'prop_ballistic_shield' }, - ['-1743279446'] = { Name = 'prop_bandsaw_01' }, - ['-554465314'] = { Name = 'prop_bank_shutter' }, - ['-134415992'] = { Name = 'prop_bank_vaultdoor' }, - ['-1766751344'] = { Name = 'prop_bar_beans' }, - ['-1102277088'] = { Name = 'prop_bar_beerfridge_01' }, - ['-1711526423'] = { Name = 'prop_bar_caddy' }, - ['-16236139'] = { Name = 'prop_bar_coastbarr' }, - ['-2132107072'] = { Name = 'prop_bar_coastchamp' }, - ['1260570993'] = { Name = 'prop_bar_coastdusc' }, - ['1793667637'] = { Name = 'prop_bar_coasterdisp' }, - ['1374371923'] = { Name = 'prop_bar_coastmount' }, - ['-420103132'] = { Name = 'prop_bar_cockshaker' }, - ['-1525506599'] = { Name = 'prop_bar_cockshakropn' }, - ['2072037848'] = { Name = 'prop_bar_cooler_01' }, - ['1913075429'] = { Name = 'prop_bar_cooler_03' }, - ['-1660391290'] = { Name = 'prop_bar_drinkstraws' }, - ['-458183035'] = { Name = 'prop_bar_fridge_01' }, - ['-304627501'] = { Name = 'prop_bar_fridge_02' }, - ['18704222'] = { Name = 'prop_bar_fridge_03' }, - ['-1720674274'] = { Name = 'prop_bar_fridge_04' }, - ['1753238891'] = { Name = 'prop_bar_fruit' }, - ['-1696280277'] = { Name = 'prop_bar_ice_01' }, - ['993353915'] = { Name = 'prop_bar_lemons' }, - ['2010966735'] = { Name = 'prop_bar_limes' }, - ['67883626'] = { Name = 'prop_bar_measrjug' }, - ['-521301105'] = { Name = 'prop_bar_napkindisp' }, - ['-1838355393'] = { Name = 'prop_bar_nuts' }, - ['-1281229898'] = { Name = 'prop_bar_pump_01' }, - ['-766101190'] = { Name = 'prop_bar_pump_04' }, - ['-1188362524'] = { Name = 'prop_bar_pump_05' }, - ['-420814237'] = { Name = 'prop_bar_pump_06' }, - ['-1339984727'] = { Name = 'prop_bar_pump_07' }, - ['2143392746'] = { Name = 'prop_bar_pump_08' }, - ['1285434788'] = { Name = 'prop_bar_pump_09' }, - ['1090360663'] = { Name = 'prop_bar_pump_10' }, - ['-754287693'] = { Name = 'prop_bar_shots' }, - ['-1619027728'] = { Name = 'prop_bar_sink_01' }, - ['846652480'] = { Name = 'prop_bar_stirrers' }, - ['-1829764702'] = { Name = 'prop_bar_stool_01' }, - ['2139379968'] = { Name = 'prop_barbell_01' }, - ['-1711403533'] = { Name = 'prop_barbell_02' }, - ['-486823720'] = { Name = 'prop_barbell_100kg' }, - ['-1902111326'] = { Name = 'prop_barbell_10kg' }, - ['371177307'] = { Name = 'prop_barbell_20kg' }, - ['927793327'] = { Name = 'prop_barbell_30kg' }, - ['-1314904318'] = { Name = 'prop_barbell_40kg' }, - ['1897403261'] = { Name = 'prop_barbell_50kg' }, - ['-43213041'] = { Name = 'prop_barbell_60kg' }, - ['-164226377'] = { Name = 'prop_barbell_80kg' }, - ['-1882134861'] = { Name = 'prop_barebulb_01' }, - ['-1228223417'] = { Name = 'prop_barier_conc_01a' }, - ['-978556406'] = { Name = 'prop_barier_conc_01b' }, - ['-347163314'] = { Name = 'prop_barier_conc_01c' }, - ['-1286880215'] = { Name = 'prop_barier_conc_02a' }, - ['-514023350'] = { Name = 'prop_barier_conc_02b' }, - ['-674591450'] = { Name = 'prop_barier_conc_02c' }, - ['432739598'] = { Name = 'prop_barier_conc_03a' }, - ['-1810823144'] = { Name = 'prop_barier_conc_04a' }, - ['693843550'] = { Name = 'prop_barier_conc_05a' }, - ['415536433'] = { Name = 'prop_barier_conc_05b' }, - ['1172303719'] = { Name = 'prop_barier_conc_05c' }, - ['-165117488'] = { Name = 'prop_barn_door_l' }, - ['-459350339'] = { Name = 'prop_barn_door_r' }, - ['18445149'] = { Name = 'prop_barrachneon' }, - ['-1738103333'] = { Name = 'prop_barrel_01a' }, - ['1298403575'] = { Name = 'prop_barrel_02a' }, - ['-1069975900'] = { Name = 'prop_barrel_02b' }, - ['89948745'] = { Name = 'prop_barrel_03a' }, - ['344662182'] = { Name = 'prop_barrel_03d' }, - ['-1344435013'] = { Name = 'prop_barrel_exp_01a' }, - ['-1088738506'] = { Name = 'prop_barrel_exp_01b' }, - ['-1935686084'] = { Name = 'prop_barrel_exp_01c' }, - ['-1269401419'] = { Name = 'prop_barrel_float_1' }, - ['-840225818'] = { Name = 'prop_barrel_float_2' }, - ['1652026494'] = { Name = 'prop_barrel_pile_01' }, - ['-260208501'] = { Name = 'prop_barrel_pile_02' }, - ['-921781850'] = { Name = 'prop_barrel_pile_03' }, - ['-566369276'] = { Name = 'prop_barrel_pile_04' }, - ['631304913'] = { Name = 'prop_barrel_pile_05' }, - ['-841417216'] = { Name = 'prop_barrier_wat_01a' }, - ['2080595106'] = { Name = 'prop_barrier_wat_03a' }, - ['546252211'] = { Name = 'prop_barrier_wat_03b' }, - ['579512398'] = { Name = 'prop_barrier_wat_04a' }, - ['1198649884'] = { Name = 'prop_barrier_wat_04b' }, - ['968840887'] = { Name = 'prop_barrier_wat_04c' }, - ['1072616162'] = { Name = 'prop_barrier_work01a' }, - ['1329951119'] = { Name = 'prop_barrier_work01b' }, - ['1718951922'] = { Name = 'prop_barrier_work01c' }, - ['1946925855'] = { Name = 'prop_barrier_work01d' }, - ['-1984567405'] = { Name = 'prop_barrier_work02a' }, - ['-565797937'] = { Name = 'prop_barrier_work04a' }, - ['-143315610'] = { Name = 'prop_barrier_work05' }, - ['765541575'] = { Name = 'prop_barrier_work06a' }, - ['1048501890'] = { Name = 'prop_barrier_work06b' }, - ['742943823'] = { Name = 'prop_barriercrash_01' }, - ['1415068782'] = { Name = 'prop_barriercrash_02' }, - ['574380059'] = { Name = 'prop_barriercrash_03' }, - ['1871573721'] = { Name = 'prop_barriercrash_04' }, - ['118769507'] = { Name = 'prop_barry_table_detail' }, - ['510628364'] = { Name = 'prop_basejump_target_01' }, - ['659269893'] = { Name = 'prop_basketball_net' }, - ['-2088525666'] = { Name = 'prop_bath_dirt_01' }, - ['-1966747703'] = { Name = 'prop_battery_01' }, - ['-1726256012'] = { Name = 'prop_battery_02' }, - ['-1525817904'] = { Name = 'prop_bball_arcade_01' }, - ['1903501406'] = { Name = 'prop_bbq_1' }, - ['519797612'] = { Name = 'prop_bbq_2' }, - ['-476379988'] = { Name = 'prop_bbq_3' }, - ['-770250239'] = { Name = 'prop_bbq_4_l1' }, - ['977744387'] = { Name = 'prop_bbq_4' }, - ['286252949'] = { Name = 'prop_bbq_5' }, - ['-1363752925'] = { Name = 'prop_beach_bag_01a' }, - ['2094687343'] = { Name = 'prop_beach_bag_01b' }, - ['-845760792'] = { Name = 'prop_beach_bag_02' }, - ['1972733671'] = { Name = 'prop_beach_bag_03' }, - ['-489525601'] = { Name = 'prop_beach_bars_01' }, - ['1920863736'] = { Name = 'prop_beach_bars_02' }, - ['-1608693916'] = { Name = 'prop_beach_bbq' }, - ['1672330940'] = { Name = 'prop_beach_dip_bars_01' }, - ['-1531756342'] = { Name = 'prop_beach_dip_bars_02' }, - ['-1065766299'] = { Name = 'prop_beach_fire' }, - ['-1880772547'] = { Name = 'prop_beach_lg_float' }, - ['183900128'] = { Name = 'prop_beach_lg_stretch' }, - ['-418873017'] = { Name = 'prop_beach_lg_surf' }, - ['1715961520'] = { Name = 'prop_beach_lilo_01' }, - ['-1675793829'] = { Name = 'prop_beach_lilo_02' }, - ['-554270033'] = { Name = 'prop_beach_lotion_01' }, - ['238248232'] = { Name = 'prop_beach_lotion_02' }, - ['-1826591984'] = { Name = 'prop_beach_lotion_03' }, - ['1054627099'] = { Name = 'prop_beach_parasol_01' }, - ['756855196'] = { Name = 'prop_beach_parasol_02' }, - ['516887809'] = { Name = 'prop_beach_parasol_03' }, - ['-1929219726'] = { Name = 'prop_beach_parasol_04' }, - ['-2108662770'] = { Name = 'prop_beach_parasol_05' }, - ['1913502601'] = { Name = 'prop_beach_parasol_06' }, - ['1473546007'] = { Name = 'prop_beach_parasol_07' }, - ['-979901796'] = { Name = 'prop_beach_parasol_08' }, - ['-1151218128'] = { Name = 'prop_beach_parasol_09' }, - ['1483509531'] = { Name = 'prop_beach_parasol_10' }, - ['1867233273'] = { Name = 'prop_beach_punchbag' }, - ['1677315747'] = { Name = 'prop_beach_ring_01' }, - ['1772442022'] = { Name = 'prop_beach_rings_01' }, - ['336523661'] = { Name = 'prop_beach_sandcas_01' }, - ['339341791'] = { Name = 'prop_beach_sandcas_03' }, - ['1285350052'] = { Name = 'prop_beach_sandcas_04' }, - ['-488829146'] = { Name = 'prop_beach_sandcas_05' }, - ['1639776969'] = { Name = 'prop_beach_sculp_01' }, - ['1181350742'] = { Name = 'prop_beach_towel_01' }, - ['951345131'] = { Name = 'prop_beach_towel_02' }, - ['1604201946'] = { Name = 'prop_beach_towel_03' }, - ['1230242118'] = { Name = 'prop_beach_towel_04' }, - ['-946169730'] = { Name = 'prop_beach_volball01' }, - ['1017479830'] = { Name = 'prop_beach_volball02' }, - ['34136386'] = { Name = 'prop_beachbag_01' }, - ['-886312055'] = { Name = 'prop_beachbag_02' }, - ['-393990599'] = { Name = 'prop_beachbag_03' }, - ['-1414482797'] = { Name = 'prop_beachbag_04' }, - ['-1658644616'] = { Name = 'prop_beachbag_05' }, - ['-1571249689'] = { Name = 'prop_beachbag_06' }, - ['1407021173'] = { Name = 'prop_beachbag_combo_01' }, - ['-429845122'] = { Name = 'prop_beachbag_combo_02' }, - ['1574107526'] = { Name = 'prop_beachball_01' }, - ['136236575'] = { Name = 'prop_beachball_02' }, - ['1275920395'] = { Name = 'prop_beachf_01_cr' }, - ['-764254753'] = { Name = 'prop_beachflag_01' }, - ['1585741317'] = { Name = 'prop_beachflag_02' }, - ['803874239'] = { Name = 'prop_beachflag_le' }, - ['1350970027'] = { Name = 'prop_beer_am' }, - ['1174226320'] = { Name = 'prop_beer_amopen' }, - ['-527552795'] = { Name = 'prop_beer_bar' }, - ['-1403539035'] = { Name = 'prop_beer_bison' }, - ['-1555693050'] = { Name = 'prop_beer_blr' }, - ['1172836182'] = { Name = 'prop_beer_bottle' }, - ['2057005985'] = { Name = 'prop_beer_box_01' }, - ['-1145966996'] = { Name = 'prop_beer_jakey' }, - ['348272579'] = { Name = 'prop_beer_logger' }, - ['1146109585'] = { Name = 'prop_beer_logopen' }, - ['1433474877'] = { Name = 'prop_beer_neon_01' }, - ['1671082896'] = { Name = 'prop_beer_neon_02' }, - ['-487902677'] = { Name = 'prop_beer_neon_03' }, - ['-1178279969'] = { Name = 'prop_beer_neon_04' }, - ['-535527755'] = { Name = 'prop_beer_patriot' }, - ['1451528099'] = { Name = 'prop_beer_pissh' }, - ['1669623194'] = { Name = 'prop_beer_pride' }, - ['-1243177429'] = { Name = 'prop_beer_stz' }, - ['1940235411'] = { Name = 'prop_beer_stzopen' }, - ['-2060136857'] = { Name = 'prop_beerdusche' }, - ['88234209'] = { Name = 'prop_beerneon' }, - ['-245386275'] = { Name = 'prop_beggers_sign_01' }, - ['-533655168'] = { Name = 'prop_beggers_sign_02' }, - ['-1109340972'] = { Name = 'prop_beggers_sign_03' }, - ['-801803927'] = { Name = 'prop_beggers_sign_04' }, - ['1805980844'] = { Name = 'prop_bench_01a' }, - ['2037887057'] = { Name = 'prop_bench_01b' }, - ['-1215681419'] = { Name = 'prop_bench_01c' }, - ['-628719744'] = { Name = 'prop_bench_02' }, - ['-1062810675'] = { Name = 'prop_bench_03' }, - ['-763859088'] = { Name = 'prop_bench_04' }, - ['-1631057904'] = { Name = 'prop_bench_05' }, - ['-1317098115'] = { Name = 'prop_bench_06' }, - ['-71417349'] = { Name = 'prop_bench_07' }, - ['-403891623'] = { Name = 'prop_bench_08' }, - ['-99500382'] = { Name = 'prop_bench_09' }, - ['437354449'] = { Name = 'prop_bench_10' }, - ['1290593659'] = { Name = 'prop_bench_11' }, - ['345907779'] = { Name = 'prop_beta_tape' }, - ['576744296'] = { Name = 'prop_beware_dog_sign' }, - ['-1747119540'] = { Name = 'prop_bh1_03_gate_l' }, - ['-1565579268'] = { Name = 'prop_bh1_03_gate_r' }, - ['-2036241356'] = { Name = 'prop_bh1_08_mp_gar' }, - ['1301550063'] = { Name = 'prop_bh1_09_mp_gar' }, - ['-918724285'] = { Name = 'prop_bh1_09_mp_l' }, - ['1410103055'] = { Name = 'prop_bh1_09_mp_r' }, - ['1713721272'] = { Name = 'prop_bh1_16_display' }, - ['1523529669'] = { Name = 'prop_bh1_44_door_01l' }, - ['1596276849'] = { Name = 'prop_bh1_44_door_01r' }, - ['-1454760130'] = { Name = 'prop_bh1_48_backdoor_l' }, - ['1245831483'] = { Name = 'prop_bh1_48_backdoor_r' }, - ['-1568354151'] = { Name = 'prop_bh1_48_gate_1' }, - ['-403433025'] = { Name = 'prop_bhhotel_door_l' }, - ['1308911070'] = { Name = 'prop_bhhotel_door_r' }, - ['1234788901'] = { Name = 'prop_big_bag_01' }, - ['914229232'] = { Name = 'prop_big_cin_screen' }, - ['-346427197'] = { Name = 'prop_big_clock_01' }, - ['-1842599357'] = { Name = 'prop_big_shit_01' }, - ['-2071359746'] = { Name = 'prop_big_shit_02' }, - ['940495467'] = { Name = 'prop_bikerack_1a' }, - ['-1314273436'] = { Name = 'prop_bikerack_2' }, - ['-1747937636'] = { Name = 'prop_bikerset' }, - ['1772964347'] = { Name = 'prop_bikini_disp_01' }, - ['265721423'] = { Name = 'prop_bikini_disp_02' }, - ['-614421216'] = { Name = 'prop_bikini_disp_03' }, - ['-451690362'] = { Name = 'prop_bikini_disp_04' }, - ['1119091721'] = { Name = 'prop_bikini_disp_05' }, - ['-836824419'] = { Name = 'prop_bikini_disp_06' }, - ['1317998709'] = { Name = 'prop_billb_frame01a' }, - ['-2058846745'] = { Name = 'prop_billb_frame01b' }, - ['-1482898465'] = { Name = 'prop_billb_frame02a' }, - ['1538534411'] = { Name = 'prop_billb_frame02b' }, - ['2024434543'] = { Name = 'prop_billb_frame03a' }, - ['1784860384'] = { Name = 'prop_billb_frame03b' }, - ['1412211316'] = { Name = 'prop_billb_frame03c' }, - ['731304561'] = { Name = 'prop_billb_frame04a' }, - ['-514310667'] = { Name = 'prop_billb_frame04b' }, - ['934279312'] = { Name = 'prop_billboard_01' }, - ['-915891197'] = { Name = 'prop_billboard_02' }, - ['369046831'] = { Name = 'prop_billboard_03' }, - ['666654889'] = { Name = 'prop_billboard_04' }, - ['1653034562'] = { Name = 'prop_billboard_05' }, - ['73306606'] = { Name = 'prop_billboard_06' }, - ['1233198134'] = { Name = 'prop_billboard_07' }, - ['1328228234'] = { Name = 'prop_billboard_08' }, - ['-1507502723'] = { Name = 'prop_billboard_09' }, - ['1154944443'] = { Name = 'prop_billboard_09wall' }, - ['281779892'] = { Name = 'prop_billboard_10' }, - ['1539912878'] = { Name = 'prop_billboard_11' }, - ['756504395'] = { Name = 'prop_billboard_12' }, - ['1748749715'] = { Name = 'prop_billboard_13' }, - ['1233293345'] = { Name = 'prop_billboard_14' }, - ['-2068543868'] = { Name = 'prop_billboard_15' }, - ['-1778996984'] = { Name = 'prop_billboard_16' }, - ['1437508529'] = { Name = 'prop_bin_01a' }, - ['1614656839'] = { Name = 'prop_bin_02a' }, - ['-130812911'] = { Name = 'prop_bin_03a' }, - ['-93819890'] = { Name = 'prop_bin_04a' }, - ['1329570871'] = { Name = 'prop_bin_05a' }, - ['1143474856'] = { Name = 'prop_bin_06a' }, - ['-228596739'] = { Name = 'prop_bin_07a' }, - ['-468629664'] = { Name = 'prop_bin_07b' }, - ['-1426008804'] = { Name = 'prop_bin_07c' }, - ['-1187286639'] = { Name = 'prop_bin_07d' }, - ['-1096777189'] = { Name = 'prop_bin_08a' }, - ['-413198204'] = { Name = 'prop_bin_08open' }, - ['437765445'] = { Name = 'prop_bin_09a' }, - ['-1830793175'] = { Name = 'prop_bin_10a' }, - ['-329415894'] = { Name = 'prop_bin_10b' }, - ['-341442425'] = { Name = 'prop_bin_11a' }, - ['1792999139'] = { Name = 'prop_bin_11b' }, - ['-2096124444'] = { Name = 'prop_bin_12a' }, - ['122303831'] = { Name = 'prop_bin_13a' }, - ['1748268526'] = { Name = 'prop_bin_14a' }, - ['998415499'] = { Name = 'prop_bin_14b' }, - ['234941195'] = { Name = 'prop_bin_beach_01a' }, - ['-5943724'] = { Name = 'prop_bin_beach_01d' }, - ['1380691550'] = { Name = 'prop_bin_delpiero_b' }, - ['-317177646'] = { Name = 'prop_bin_delpiero' }, - ['985101275'] = { Name = 'prop_binoc_01' }, - ['1071105235'] = { Name = 'prop_biolab_g_door' }, - ['361533569'] = { Name = 'prop_biotech_store' }, - ['2142268482'] = { Name = 'prop_bird_poo' }, - ['-321570585'] = { Name = 'prop_birdbath1' }, - ['667168444'] = { Name = 'prop_birdbath2' }, - ['1032165235'] = { Name = 'prop_birdbathtap' }, - ['1641541792'] = { Name = 'prop_bison_winch' }, - ['1861974681'] = { Name = 'prop_blackjack_01' }, - ['-200725035'] = { Name = 'prop_bleachers_01' }, - ['1079494257'] = { Name = 'prop_bleachers_02' }, - ['1329488958'] = { Name = 'prop_bleachers_03' }, - ['-1663557985'] = { Name = 'prop_bleachers_04_cr' }, - ['493125771'] = { Name = 'prop_bleachers_04' }, - ['984170102'] = { Name = 'prop_bleachers_05_cr' }, - ['-1691255725'] = { Name = 'prop_bleachers_05' }, - ['-1484965124'] = { Name = 'prop_blox_spray' }, - ['634122469'] = { Name = 'prop_bmu_01_b' }, - ['-1525295470'] = { Name = 'prop_bmu_01' }, - ['1969144476'] = { Name = 'prop_bmu_02_ld_cab' }, - ['-1919316447'] = { Name = 'prop_bmu_02_ld_sup' }, - ['-1127914163'] = { Name = 'prop_bmu_02_ld' }, - ['-1754285242'] = { Name = 'prop_bmu_02' }, - ['-570322204'] = { Name = 'prop_bmu_track01' }, - ['-273336757'] = { Name = 'prop_bmu_track02' }, - ['-1387646590'] = { Name = 'prop_bmu_track03' }, - ['1111175276'] = { Name = 'prop_bodyarmour_02' }, - ['-1779214373'] = { Name = 'prop_bodyarmour_03' }, - ['-1497794201'] = { Name = 'prop_bodyarmour_04' }, - ['2022153476'] = { Name = 'prop_bodyarmour_05' }, - ['-84434502'] = { Name = 'prop_bodyarmour_06' }, - ['-79347610'] = { Name = 'prop_bollard_01a' }, - ['1348987562'] = { Name = 'prop_bollard_01b' }, - ['-542078659'] = { Name = 'prop_bollard_01c' }, - ['-994492850'] = { Name = 'prop_bollard_02a' }, - ['-903362261'] = { Name = 'prop_bollard_02b' }, - ['-663886409'] = { Name = 'prop_bollard_02c' }, - ['-1510803822'] = { Name = 'prop_bollard_03a' }, - ['-259356231'] = { Name = 'prop_bollard_04' }, - ['37760292'] = { Name = 'prop_bollard_05' }, - ['1764669601'] = { Name = 'prop_bomb_01_s' }, - ['848107085'] = { Name = 'prop_bomb_01' }, - ['346229883'] = { Name = 'prop_bonesaw' }, - ['-257549932'] = { Name = 'prop_bong_01' }, - ['591916419'] = { Name = 'prop_bongos_01' }, - ['1203342297'] = { Name = 'prop_boogbd_stack_01' }, - ['1091305086'] = { Name = 'prop_boogbd_stack_02' }, - ['1159992493'] = { Name = 'prop_boogieboard_01' }, - ['1323771955'] = { Name = 'prop_boogieboard_02' }, - ['1977677406'] = { Name = 'prop_boogieboard_03' }, - ['1142887131'] = { Name = 'prop_boogieboard_04' }, - ['1517567877'] = { Name = 'prop_boogieboard_05' }, - ['-1463264208'] = { Name = 'prop_boogieboard_06' }, - ['-1397464056'] = { Name = 'prop_boogieboard_07' }, - ['2062975117'] = { Name = 'prop_boogieboard_08' }, - ['-1856393901'] = { Name = 'prop_boogieboard_09' }, - ['688185351'] = { Name = 'prop_boogieboard_10' }, - ['1729911864'] = { Name = 'prop_boombox_01' }, - ['-23214081'] = { Name = 'prop_bottle_brandy' }, - ['-1296774200'] = { Name = 'prop_bottle_cap_01' }, - ['1404018125'] = { Name = 'prop_bottle_cognac' }, - ['-1756838334'] = { Name = 'prop_bottle_macbeth' }, - ['-748864306'] = { Name = 'prop_bottle_richard' }, - ['2018525338'] = { Name = 'prop_bowl_crisps' }, - ['-563331074'] = { Name = 'prop_bowling_ball' }, - ['-1501785249'] = { Name = 'prop_bowling_pin' }, - ['1843823183'] = { Name = 'prop_box_ammo01a' }, - ['-1522670383'] = { Name = 'prop_box_ammo02a' }, - ['-1586104172'] = { Name = 'prop_box_ammo03a_set' }, - ['2107849419'] = { Name = 'prop_box_ammo03a_set2' }, - ['-1422265815'] = { Name = 'prop_box_ammo03a' }, - ['-371004270'] = { Name = 'prop_box_ammo04a' }, - ['155659266'] = { Name = 'prop_box_ammo05b' }, - ['1824078756'] = { Name = 'prop_box_ammo06a' }, - ['1580014892'] = { Name = 'prop_box_ammo07a' }, - ['1093460780'] = { Name = 'prop_box_ammo07b' }, - ['1430410579'] = { Name = 'prop_box_guncase_01a' }, - ['-1920611843'] = { Name = 'prop_box_guncase_02a' }, - ['798951501'] = { Name = 'prop_box_guncase_03a' }, - ['-1147461795'] = { Name = 'prop_box_tea01a' }, - ['1165008631'] = { Name = 'prop_box_wood01a' }, - ['-1032791704'] = { Name = 'prop_box_wood02a_mws' }, - ['-1861623876'] = { Name = 'prop_box_wood02a_pu' }, - ['396412624'] = { Name = 'prop_box_wood02a' }, - ['-2022916910'] = { Name = 'prop_box_wood03a' }, - ['-1322183878'] = { Name = 'prop_box_wood04a' }, - ['-1513883840'] = { Name = 'prop_box_wood05a' }, - ['738624455'] = { Name = 'prop_box_wood05b' }, - ['-1685625437'] = { Name = 'prop_box_wood06a' }, - ['307713837'] = { Name = 'prop_box_wood07a' }, - ['1916770868'] = { Name = 'prop_box_wood08a' }, - ['1815646479'] = { Name = 'prop_boxcar5_handle' }, - ['335898267'] = { Name = 'prop_boxing_glove_01' }, - ['1513590521'] = { Name = 'prop_boxpile_01a' }, - ['1524671283'] = { Name = 'prop_boxpile_02b' }, - ['1280771616'] = { Name = 'prop_boxpile_02c' }, - ['-865565111'] = { Name = 'prop_boxpile_02d' }, - ['1576342596'] = { Name = 'prop_boxpile_03a' }, - ['300547451'] = { Name = 'prop_boxpile_04a' }, - ['1935071027'] = { Name = 'prop_boxpile_05a' }, - ['-77338465'] = { Name = 'prop_boxpile_06a' }, - ['153748523'] = { Name = 'prop_boxpile_06b' }, - ['-1726996371'] = { Name = 'prop_boxpile_07a' }, - ['519908417'] = { Name = 'prop_boxpile_07d' }, - ['-188983024'] = { Name = 'prop_boxpile_08a' }, - ['-340374416'] = { Name = 'prop_boxpile_09a' }, - ['-1480604471'] = { Name = 'prop_boxpile_10a' }, - ['-1249550252'] = { Name = 'prop_boxpile_10b' }, - ['155046858'] = { Name = 'prop_brandy_glass' }, - ['2064772359'] = { Name = 'prop_bread_rack_01' }, - ['1186956387'] = { Name = 'prop_bread_rack_02' }, - ['329675898'] = { Name = 'prop_breadbin_01' }, - ['-559661536'] = { Name = 'prop_break_skylight_01' }, - ['-1039974809'] = { Name = 'prop_broken_cboard_p1' }, - ['208851797'] = { Name = 'prop_broken_cboard_p2' }, - ['-1261591476'] = { Name = 'prop_broken_cell_gate_01' }, - ['-355648437'] = { Name = 'prop_broom_unit_01' }, - ['-1635579193'] = { Name = 'prop_bs_map_door_01' }, - ['1840863642'] = { Name = 'prop_bskball_01' }, - ['1678716578'] = { Name = 'prop_buck_spade_01' }, - ['1909574183'] = { Name = 'prop_buck_spade_02' }, - ['-2120586824'] = { Name = 'prop_buck_spade_03' }, - ['655799498'] = { Name = 'prop_buck_spade_04' }, - ['-1503317171'] = { Name = 'prop_buck_spade_05' }, - ['-1154786087'] = { Name = 'prop_buck_spade_06' }, - ['-906364298'] = { Name = 'prop_buck_spade_07' }, - ['1353058256'] = { Name = 'prop_buck_spade_08' }, - ['-226735210'] = { Name = 'prop_buck_spade_09' }, - ['2054934387'] = { Name = 'prop_buck_spade_10' }, - ['702767871'] = { Name = 'prop_bucket_01a' }, - ['4591557'] = { Name = 'prop_bucket_01b' }, - ['-13720938'] = { Name = 'prop_bucket_02a' }, - ['1474888937'] = { Name = 'prop_buckets_02' }, - ['-1948924681'] = { Name = 'prop_bumper_01' }, - ['-1720688596'] = { Name = 'prop_bumper_02' }, - ['-1185439750'] = { Name = 'prop_bumper_03' }, - ['-956482747'] = { Name = 'prop_bumper_04' }, - ['-774156031'] = { Name = 'prop_bumper_05' }, - ['-401310349'] = { Name = 'prop_bumper_06' }, - ['-77393630'] = { Name = 'prop_bumper_car_01' }, - ['1129053052'] = { Name = 'prop_burgerstand_01' }, - ['-550386901'] = { Name = 'prop_burto_gate_01' }, - ['-1022684418'] = { Name = 'prop_bus_stop_sign' }, - ['-704596622'] = { Name = 'prop_bush_dead_02' }, - ['1719383358'] = { Name = 'prop_bush_gorse_dry' }, - ['-1576578766'] = { Name = 'prop_bush_gorse_lush' }, - ['1116369239'] = { Name = 'prop_bush_grape_01' }, - ['754902525'] = { Name = 'prop_bush_ivy_01_1m' }, - ['1551246947'] = { Name = 'prop_bush_ivy_01_2m' }, - ['218547716'] = { Name = 'prop_bush_ivy_01_bk' }, - ['1727654695'] = { Name = 'prop_bush_ivy_01_l' }, - ['1724835979'] = { Name = 'prop_bush_ivy_01_pot' }, - ['-1963183301'] = { Name = 'prop_bush_ivy_01_r' }, - ['-298407735'] = { Name = 'prop_bush_ivy_01_top' }, - ['-2145301823'] = { Name = 'prop_bush_ivy_02_1m' }, - ['1296557055'] = { Name = 'prop_bush_ivy_02_2m' }, - ['-467587443'] = { Name = 'prop_bush_ivy_02_l' }, - ['425311731'] = { Name = 'prop_bush_ivy_02_pot' }, - ['14149626'] = { Name = 'prop_bush_ivy_02_r' }, - ['858596542'] = { Name = 'prop_bush_ivy_02_top' }, - ['-685850110'] = { Name = 'prop_bush_lrg_01' }, - ['-1825519337'] = { Name = 'prop_bush_lrg_01b' }, - ['11906616'] = { Name = 'prop_bush_lrg_01c_cr' }, - ['2044171877'] = { Name = 'prop_bush_lrg_01c' }, - ['-2003160086'] = { Name = 'prop_bush_lrg_01d' }, - ['662880068'] = { Name = 'prop_bush_lrg_01e_cr' }, - ['-1705943745'] = { Name = 'prop_bush_lrg_01e_cr2' }, - ['735410778'] = { Name = 'prop_bush_lrg_01e' }, - ['498290474'] = { Name = 'prop_bush_lrg_02' }, - ['-465751269'] = { Name = 'prop_bush_lrg_02b' }, - ['1277635601'] = { Name = 'prop_bush_lrg_03' }, - ['21490660'] = { Name = 'prop_bush_lrg_03b' }, - ['211487370'] = { Name = 'prop_bush_lrg_04b' }, - ['849958566'] = { Name = 'prop_bush_lrg_04c' }, - ['-302658244'] = { Name = 'prop_bush_lrg_04d' }, - ['-26307958'] = { Name = 'prop_bush_med_01' }, - ['236794343'] = { Name = 'prop_bush_med_02' }, - ['-1658282356'] = { Name = 'prop_bush_med_03_cr' }, - ['-1656246279'] = { Name = 'prop_bush_med_03_cr2' }, - ['-1733179630'] = { Name = 'prop_bush_med_03' }, - ['992644101'] = { Name = 'prop_bush_med_05' }, - ['1165271193'] = { Name = 'prop_bush_med_06' }, - ['-307793672'] = { Name = 'prop_bush_med_07' }, - ['1225919411'] = { Name = 'prop_bush_neat_01' }, - ['-1205638700'] = { Name = 'prop_bush_neat_02' }, - ['-1385802662'] = { Name = 'prop_bush_neat_03' }, - ['-1127746783'] = { Name = 'prop_bush_neat_04' }, - ['-1316102995'] = { Name = 'prop_bush_neat_05' }, - ['-1602995590'] = { Name = 'prop_bush_neat_06' }, - ['-148117528'] = { Name = 'prop_bush_neat_07' }, - ['-435337813'] = { Name = 'prop_bush_neat_08' }, - ['754546165'] = { Name = 'prop_bush_ornament_01' }, - ['-29353853'] = { Name = 'prop_bush_ornament_02' }, - ['1235038012'] = { Name = 'prop_bush_ornament_03' }, - ['466408348'] = { Name = 'prop_bush_ornament_04' }, - ['-1153241480'] = { Name = 'prop_busker_hat_01' }, - ['2142033519'] = { Name = 'prop_busstop_02' }, - ['1681727376'] = { Name = 'prop_busstop_04' }, - ['1888204845'] = { Name = 'prop_busstop_05' }, - ['1575751856'] = { Name = 'prop_byard_bench01' }, - ['-1884883931'] = { Name = 'prop_byard_bench02' }, - ['-27783086'] = { Name = 'prop_byard_benchset' }, - ['-1188661082'] = { Name = 'prop_byard_block_01' }, - ['122468881'] = { Name = 'prop_byard_boat01' }, - ['1062775336'] = { Name = 'prop_byard_boat02' }, - ['-371331137'] = { Name = 'prop_byard_chains01' }, - ['674064465'] = { Name = 'prop_byard_dingy' }, - ['686477543'] = { Name = 'prop_byard_elecbox01' }, - ['-244456978'] = { Name = 'prop_byard_elecbox02' }, - ['246619256'] = { Name = 'prop_byard_elecbox03' }, - ['-708760939'] = { Name = 'prop_byard_elecbox04' }, - ['-559617036'] = { Name = 'prop_byard_float_01' }, - ['-162430513'] = { Name = 'prop_byard_float_01b' }, - ['73742208'] = { Name = 'prop_byard_float_02' }, - ['-977919647'] = { Name = 'prop_byard_float_02b' }, - ['-1203351544'] = { Name = 'prop_byard_floatpile' }, - ['936543891'] = { Name = 'prop_byard_gastank01' }, - ['1242409737'] = { Name = 'prop_byard_gastank02' }, - ['817332001'] = { Name = 'prop_byard_hoist_2' }, - ['-1479518736'] = { Name = 'prop_byard_hoist' }, - ['1049934319'] = { Name = 'prop_byard_hoses01' }, - ['808918324'] = { Name = 'prop_byard_hoses02' }, - ['-1289036632'] = { Name = 'prop_byard_ladder01' }, - ['-1056923006'] = { Name = 'prop_byard_lifering' }, - ['-1729805677'] = { Name = 'prop_byard_machine01' }, - ['-735594213'] = { Name = 'prop_byard_machine02' }, - ['-993191322'] = { Name = 'prop_byard_machine03' }, - ['-1703033697'] = { Name = 'prop_byard_motor_01' }, - ['-1471717326'] = { Name = 'prop_byard_motor_02' }, - ['1907585799'] = { Name = 'prop_byard_motor_03' }, - ['1324389995'] = { Name = 'prop_byard_net02' }, - ['-1387053364'] = { Name = 'prop_byard_phone' }, - ['-1323388435'] = { Name = 'prop_byard_pipe_01' }, - ['568297919'] = { Name = 'prop_byard_pipes01' }, - ['-896684404'] = { Name = 'prop_byard_planks01' }, - ['2082303835'] = { Name = 'prop_byard_pulley01' }, - ['880641625'] = { Name = 'prop_byard_rack' }, - ['-341893038'] = { Name = 'prop_byard_ramp' }, - ['-535359464'] = { Name = 'prop_byard_rampold_cr' }, - ['-555044201'] = { Name = 'prop_byard_rampold' }, - ['-1249123711'] = { Name = 'prop_byard_rowboat1' }, - ['-1507769428'] = { Name = 'prop_byard_rowboat2' }, - ['-1685705098'] = { Name = 'prop_byard_rowboat3' }, - ['-2006939605'] = { Name = 'prop_byard_rowboat4' }, - ['-290892613'] = { Name = 'prop_byard_rowboat5' }, - ['-459195495'] = { Name = 'prop_byard_scfhold01' }, - ['-1881895757'] = { Name = 'prop_byard_sleeper01' }, - ['-1115854844'] = { Name = 'prop_byard_sleeper02' }, - ['-1200565436'] = { Name = 'prop_byard_steps_01' }, - ['-551453476'] = { Name = 'prop_byard_tank_01' }, - ['-264508577'] = { Name = 'prop_byard_trailer01' }, - ['-1081538054'] = { Name = 'prop_byard_trailer02' }, - ['-2033654589'] = { Name = 'prop_c4_final_green' }, - ['-1266278729'] = { Name = 'prop_c4_final' }, - ['921663118'] = { Name = 'prop_c4_num_0001' }, - ['-765547158'] = { Name = 'prop_c4_num_0002' }, - ['-594492978'] = { Name = 'prop_c4_num_0003' }, - ['1144664784'] = { Name = 'prop_cabinet_01' }, - ['-2008585441'] = { Name = 'prop_cabinet_01b' }, - ['1797500920'] = { Name = 'prop_cabinet_02b' }, - ['461118750'] = { Name = 'prop_cable_hook_01' }, - ['-423137698'] = { Name = 'prop_cablespool_01a' }, - ['-903793390'] = { Name = 'prop_cablespool_01b' }, - ['-1485906437'] = { Name = 'prop_cablespool_02' }, - ['-1255376522'] = { Name = 'prop_cablespool_03' }, - ['2111998691'] = { Name = 'prop_cablespool_04' }, - ['-1951881617'] = { Name = 'prop_cablespool_05' }, - ['-497495090'] = { Name = 'prop_cablespool_06' }, - ['-1951996480'] = { Name = 'prop_cactus_01a' }, - ['-759499797'] = { Name = 'prop_cactus_01b' }, - ['-938090847'] = { Name = 'prop_cactus_01c' }, - ['-194496699'] = { Name = 'prop_cactus_01d' }, - ['-492137526'] = { Name = 'prop_cactus_01e' }, - ['390870628'] = { Name = 'prop_cactus_02' }, - ['704797648'] = { Name = 'prop_cactus_03' }, - ['2092257548'] = { Name = 'prop_camera_strap' }, - ['996225620'] = { Name = 'prop_can_canoe' }, - ['-984269803'] = { Name = 'prop_candy_pqs' }, - ['1819853303'] = { Name = 'prop_cap_01' }, - ['1619813869'] = { Name = 'prop_cap_01b' }, - ['-1435549699'] = { Name = 'prop_cap_row_01' }, - ['-1523993790'] = { Name = 'prop_cap_row_01b' }, - ['-131638424'] = { Name = 'prop_cap_row_02' }, - ['-1604836925'] = { Name = 'prop_cap_row_02b' }, - ['1158698200'] = { Name = 'prop_car_battery_01' }, - ['-1196571587'] = { Name = 'prop_car_bonnet_01' }, - ['342457267'] = { Name = 'prop_car_bonnet_02' }, - ['277255495'] = { Name = 'prop_car_door_01' }, - ['-699424554'] = { Name = 'prop_car_door_02' }, - ['674546851'] = { Name = 'prop_car_door_03' }, - ['-204842037'] = { Name = 'prop_car_door_04' }, - ['232216084'] = { Name = 'prop_car_engine_01' }, - ['-60739707'] = { Name = 'prop_car_exhaust_01' }, - ['-8553080'] = { Name = 'prop_car_ignition' }, - ['1382419899'] = { Name = 'prop_car_seat' }, - ['272384846'] = { Name = 'prop_carcreeper' }, - ['-1364253020'] = { Name = 'prop_cardbordbox_01a' }, - ['250374685'] = { Name = 'prop_cardbordbox_02a' }, - ['-1515940233'] = { Name = 'prop_cardbordbox_03a' }, - ['-1438964996'] = { Name = 'prop_cardbordbox_04a' }, - ['-475360078'] = { Name = 'prop_cardbordbox_05a' }, - ['1511660505'] = { Name = 'prop_cargo_int' }, - ['859851171'] = { Name = 'prop_carjack_l2' }, - ['-946793326'] = { Name = 'prop_carjack' }, - ['-982012260'] = { Name = 'prop_carrier_bag_01_lod' }, - ['-1681475898'] = { Name = 'prop_carrier_bag_01' }, - ['-157551270'] = { Name = 'prop_cartwheel_01' }, - ['1435400154'] = { Name = 'prop_carwash_roller_horz' }, - ['-382832258'] = { Name = 'prop_carwash_roller_vert' }, - ['-2084301080'] = { Name = 'prop_casey_sec_id' }, - ['1603932804'] = { Name = 'prop_cash_case_01' }, - ['-1787068858'] = { Name = 'prop_cash_case_02' }, - ['-464691988'] = { Name = 'prop_cash_crate_01' }, - ['31652530'] = { Name = 'prop_cash_dep_bag_01' }, - ['1284202985'] = { Name = 'prop_cash_depot_billbrd' }, - ['-293267906'] = { Name = 'prop_cash_envelope_01' }, - ['-449200111'] = { Name = 'prop_cash_note_01' }, - ['-295781225'] = { Name = 'prop_cash_pile_01' }, - ['-598402940'] = { Name = 'prop_cash_pile_02' }, - ['929864185'] = { Name = 'prop_cash_trolly' }, - ['-655196089'] = { Name = 'prop_casino_door_01l' }, - ['1713150633'] = { Name = 'prop_casino_door_01r' }, - ['-1927236321'] = { Name = 'prop_cat_tail_01' }, - ['708945182'] = { Name = 'prop_cattlecrush' }, - ['-448246534'] = { Name = 'prop_cava' }, - ['-906652006'] = { Name = 'prop_cctv_01_sm_02' }, - ['-1217031096'] = { Name = 'prop_cctv_01_sm' }, - ['1924666731'] = { Name = 'prop_cctv_02_sm' }, - ['548760764'] = { Name = 'prop_cctv_cam_01a' }, - ['-354221800'] = { Name = 'prop_cctv_cam_01b' }, - ['-1159421424'] = { Name = 'prop_cctv_cam_02a' }, - ['1449155105'] = { Name = 'prop_cctv_cam_03a' }, - ['-1095296451'] = { Name = 'prop_cctv_cam_04a' }, - ['1919058329'] = { Name = 'prop_cctv_cam_04b' }, - ['-1884701657'] = { Name = 'prop_cctv_cam_04c' }, - ['-173206916'] = { Name = 'prop_cctv_cam_05a' }, - ['168901740'] = { Name = 'prop_cctv_cam_06a' }, - ['-1340405475'] = { Name = 'prop_cctv_cam_07a' }, - ['1079430269'] = { Name = 'prop_cctv_cont_01' }, - ['262335250'] = { Name = 'prop_cctv_cont_02' }, - ['-505081961'] = { Name = 'prop_cctv_cont_03' }, - ['-1420320131'] = { Name = 'prop_cctv_cont_04' }, - ['-41040152'] = { Name = 'prop_cctv_cont_05' }, - ['-982919519'] = { Name = 'prop_cctv_cont_06' }, - ['39380961'] = { Name = 'prop_cctv_mon_02' }, - ['1927491455'] = { Name = 'prop_cctv_pole_01a' }, - ['299608302'] = { Name = 'prop_cctv_pole_02' }, - ['-6978462'] = { Name = 'prop_cctv_pole_03' }, - ['2135655372'] = { Name = 'prop_cctv_pole_04' }, - ['808554411'] = { Name = 'prop_cctv_unit_01' }, - ['-155935570'] = { Name = 'prop_cctv_unit_02' }, - ['7254050'] = { Name = 'prop_cctv_unit_03' }, - ['1517151235'] = { Name = 'prop_cctv_unit_04' }, - ['1295239567'] = { Name = 'prop_cctv_unit_05' }, - ['-1524553731'] = { Name = 'prop_cd_folder_pile1' }, - ['-1906181505'] = { Name = 'prop_cd_folder_pile2' }, - ['1573132612'] = { Name = 'prop_cd_folder_pile3' }, - ['1879489993'] = { Name = 'prop_cd_folder_pile4' }, - ['2006770941'] = { Name = 'prop_cd_lamp' }, - ['-925658112'] = { Name = 'prop_cd_paper_pile1' }, - ['-1339628889'] = { Name = 'prop_cd_paper_pile2' }, - ['-1503146199'] = { Name = 'prop_cd_paper_pile3' }, - ['1899123601'] = { Name = 'prop_cementbags01' }, - ['-2113539824'] = { Name = 'prop_cementmixer_01a' }, - ['-500221685'] = { Name = 'prop_cementmixer_02a' }, - ['-1414337382'] = { Name = 'prop_ceramic_jug_01' }, - ['-769322496'] = { Name = 'prop_ceramic_jug_cork' }, - ['2052512905'] = { Name = 'prop_ch_025c_g_door_01' }, - ['441265733'] = { Name = 'prop_ch1_02_glass_01' }, - ['758895650'] = { Name = 'prop_ch1_02_glass_02' }, - ['-44475594'] = { Name = 'prop_ch1_07_door_01l' }, - ['1183182250'] = { Name = 'prop_ch1_07_door_01r' }, - ['1764111426'] = { Name = 'prop_ch1_07_door_02l' }, - ['-1082334994'] = { Name = 'prop_ch1_07_door_02r' }, - ['1056781042'] = { Name = 'prop_ch2_05d_g_door' }, - ['-264464292'] = { Name = 'prop_ch2_07b_20_g_door' }, - ['1291867081'] = { Name = 'prop_ch2_09b_door' }, - ['913904359'] = { Name = 'prop_ch2_09c_garage_door' }, - ['-345463719'] = { Name = 'prop_ch2_wdfence_01' }, - ['-709723927'] = { Name = 'prop_ch2_wdfence_02' }, - ['-26664553'] = { Name = 'prop_ch3_01_trlrdoor_l' }, - ['914592203'] = { Name = 'prop_ch3_01_trlrdoor_r' }, - ['-582278602'] = { Name = 'prop_ch3_04_door_01l' }, - ['1343686600'] = { Name = 'prop_ch3_04_door_01r' }, - ['1742849246'] = { Name = 'prop_ch3_04_door_02' }, - ['525667351'] = { Name = 'prop_chair_01a' }, - ['764848282'] = { Name = 'prop_chair_01b' }, - ['725259233'] = { Name = 'prop_chair_02' }, - ['1064877149'] = { Name = 'prop_chair_03' }, - ['2064599526'] = { Name = 'prop_chair_04a' }, - ['-1941377959'] = { Name = 'prop_chair_04b' }, - ['1545434534'] = { Name = 'prop_chair_05' }, - ['826023884'] = { Name = 'prop_chair_06' }, - ['1056357185'] = { Name = 'prop_chair_07' }, - ['1281480215'] = { Name = 'prop_chair_08' }, - ['1612971419'] = { Name = 'prop_chair_09' }, - ['1691387372'] = { Name = 'prop_chair_10' }, - ['-296249014'] = { Name = 'prop_chair_pile_01' }, - ['-1764790987'] = { Name = 'prop_chall_lamp_01' }, - ['-1720704599'] = { Name = 'prop_chall_lamp_01n' }, - ['-1529607874'] = { Name = 'prop_chall_lamp_02' }, - ['-169049173'] = { Name = 'prop_champ_01a' }, - ['1053267296'] = { Name = 'prop_champ_01b' }, - ['1470358132'] = { Name = 'prop_champ_box_01' }, - ['-781987689'] = { Name = 'prop_champ_cool' }, - ['1217034051'] = { Name = 'prop_champ_flute' }, - ['1275890453'] = { Name = 'prop_champ_jer_01a' }, - ['-1504198742'] = { Name = 'prop_champ_jer_01b' }, - ['866201454'] = { Name = 'prop_champset' }, - ['1028260687'] = { Name = 'prop_chateau_chair_01' }, - ['-1593767197'] = { Name = 'prop_chateau_table_01' }, - ['936905486'] = { Name = 'prop_cheetah_covered' }, - ['-1297635988'] = { Name = 'prop_chem_grill_bit' }, - ['705954659'] = { Name = 'prop_chem_grill' }, - ['-330775550'] = { Name = 'prop_chem_vial_02' }, - ['-192665395'] = { Name = 'prop_chem_vial_02b' }, - ['516891919'] = { Name = 'prop_cherenkov_01' }, - ['218661250'] = { Name = 'prop_cherenkov_02' }, - ['95220379'] = { Name = 'prop_cherenkov_03' }, - ['-77406713'] = { Name = 'prop_cherenkov_04' }, - ['-1380380796'] = { Name = 'prop_cherenneon' }, - ['965237685'] = { Name = 'prop_chickencoop_a' }, - ['1532772963'] = { Name = 'prop_chip_fryer' }, - ['-447760697'] = { Name = 'prop_choc_ego' }, - ['921283475'] = { Name = 'prop_choc_meto' }, - ['1374501775'] = { Name = 'prop_choc_pq' }, - ['-1425058769'] = { Name = 'prop_cigar_01' }, - ['-461945070'] = { Name = 'prop_cigar_02' }, - ['-693032058'] = { Name = 'prop_cigar_03' }, - ['-222435362'] = { Name = 'prop_cigar_pack_01' }, - ['66849370'] = { Name = 'prop_cigar_pack_02' }, - ['-942741090'] = { Name = 'prop_cj_big_boat' }, - ['2040474443'] = { Name = 'prop_clapper_brd_01' }, - ['-177104014'] = { Name = 'prop_cleaning_trolly' }, - ['123739945'] = { Name = 'prop_cleaver' }, - ['1551512929'] = { Name = 'prop_cliff_paper' }, - ['1633371511'] = { Name = 'prop_clippers_01' }, - ['180400975'] = { Name = 'prop_clothes_rail_01' }, - ['-680244041'] = { Name = 'prop_clothes_rail_02' }, - ['772635112'] = { Name = 'prop_clothes_rail_03' }, - ['1282291969'] = { Name = 'prop_clothes_rail_2b' }, - ['1870748288'] = { Name = 'prop_clothes_tub_01' }, - ['-2105381678'] = { Name = 'prop_clown_chair' }, - ['-1218939119'] = { Name = 'prop_clubset' }, - ['-1848368739'] = { Name = 'prop_cntrdoor_ld_l' }, - ['-1035763073'] = { Name = 'prop_cntrdoor_ld_r' }, - ['1535443769'] = { Name = 'prop_coathook_01' }, - ['-2344144'] = { Name = 'prop_cockneon' }, - ['-563430544'] = { Name = 'prop_cocktail_glass' }, - ['-2140390666'] = { Name = 'prop_cocktail' }, - ['1348707560'] = { Name = 'prop_coffee_cup_trailer' }, - ['-938179374'] = { Name = 'prop_coffee_mac_01' }, - ['-170500011'] = { Name = 'prop_coffee_mac_02' }, - ['253279588'] = { Name = 'prop_coffin_01' }, - ['460248592'] = { Name = 'prop_coffin_02' }, - ['-2101688943'] = { Name = 'prop_coffin_02b' }, - ['-1447228138'] = { Name = 'prop_coke_block_01' }, - ['-1508012205'] = { Name = 'prop_coke_block_half_a' }, - ['-1268044818'] = { Name = 'prop_coke_block_half_b' }, - ['-190780785'] = { Name = 'prop_com_gar_door_01' }, - ['-550347177'] = { Name = 'prop_com_ls_door_01' }, - ['1742374783'] = { Name = 'prop_compressor_01' }, - ['1917885559'] = { Name = 'prop_compressor_02' }, - ['-527501070'] = { Name = 'prop_compressor_03' }, - ['-1951226014'] = { Name = 'prop_conc_blocks01a' }, - ['-1672689514'] = { Name = 'prop_conc_blocks01b' }, - ['1711856655'] = { Name = 'prop_conc_blocks01c' }, - ['-1828462170'] = { Name = 'prop_conc_sacks_02a' }, - ['-175009656'] = { Name = 'prop_cone_float_1' }, - ['1962326206'] = { Name = 'prop_cons_cements01' }, - ['1262767548'] = { Name = 'prop_cons_crate' }, - ['1742463912'] = { Name = 'prop_cons_plank' }, - ['-219300'] = { Name = 'prop_cons_ply01' }, - ['256067049'] = { Name = 'prop_cons_ply02' }, - ['1804750010'] = { Name = 'prop_cons_plyboard_01' }, - ['-1901869594'] = { Name = 'prop_conschute' }, - ['1848810133'] = { Name = 'prop_consign_01a' }, - ['-1686309583'] = { Name = 'prop_consign_01b' }, - ['-1874075953'] = { Name = 'prop_consign_01c' }, - ['-2146714905'] = { Name = 'prop_consign_02a' }, - ['-277986462'] = { Name = 'prop_conslift_base' }, - ['1981921967'] = { Name = 'prop_conslift_brace' }, - ['1082648418'] = { Name = 'prop_conslift_cage' }, - ['1500925016'] = { Name = 'prop_conslift_door' }, - ['1925435073'] = { Name = 'prop_conslift_lift' }, - ['-1528949789'] = { Name = 'prop_conslift_rail' }, - ['-1348447382'] = { Name = 'prop_conslift_rail2' }, - ['358100685'] = { Name = 'prop_conslift_steps' }, - ['1942724096'] = { Name = 'prop_console_01' }, - ['1993507294'] = { Name = 'prop_const_fence01a' }, - ['2108146567'] = { Name = 'prop_const_fence01b_cr' }, - ['-1998445059'] = { Name = 'prop_const_fence01b' }, - ['1087520462'] = { Name = 'prop_const_fence02a' }, - ['779917859'] = { Name = 'prop_const_fence02b' }, - ['-679229497'] = { Name = 'prop_const_fence03a_cr' }, - ['-1147467348'] = { Name = 'prop_const_fence03b_cr' }, - ['-1404409203'] = { Name = 'prop_const_fence03b' }, - ['2061319915'] = { Name = 'prop_construcionlamp_01' }, - ['-339041260'] = { Name = 'prop_cont_chiller_01' }, - ['-629735826'] = { Name = 'prop_container_01a' }, - ['466911544'] = { Name = 'prop_container_01b' }, - ['772023703'] = { Name = 'prop_container_01c' }, - ['2140719283'] = { Name = 'prop_container_01d' }, - ['-1857328104'] = { Name = 'prop_container_01e' }, - ['1525186387'] = { Name = 'prop_container_01f' }, - ['-380625884'] = { Name = 'prop_container_01g' }, - ['511018606'] = { Name = 'prop_container_01h' }, - ['1600026313'] = { Name = 'prop_container_01mb' }, - ['1670285818'] = { Name = 'prop_container_02a' }, - ['2082122732'] = { Name = 'prop_container_03_ld' }, - ['314436594'] = { Name = 'prop_container_03a' }, - ['-328261803'] = { Name = 'prop_container_03b' }, - ['-1001469406'] = { Name = 'prop_container_03mb' }, - ['-2003545603'] = { Name = 'prop_container_04a' }, - ['-973498652'] = { Name = 'prop_container_04mb' }, - ['1765283457'] = { Name = 'prop_container_05a' }, - ['-384237829'] = { Name = 'prop_container_05mb' }, - ['1437126442'] = { Name = 'prop_container_door_mb_l' }, - ['519594446'] = { Name = 'prop_container_door_mb_r' }, - ['1082797888'] = { Name = 'prop_container_hole' }, - ['-1617592469'] = { Name = 'prop_container_ld_d' }, - ['-699955605'] = { Name = 'prop_container_ld_pu' }, - ['1022953480'] = { Name = 'prop_container_ld' }, - ['-1363788725'] = { Name = 'prop_container_ld2' }, - ['1067874014'] = { Name = 'prop_container_old1' }, - ['1934587523'] = { Name = 'prop_contnr_pile_01a' }, - ['874602658'] = { Name = 'prop_contr_03b_ld' }, - ['1413187371'] = { Name = 'prop_control_rm_door_01' }, - ['-561798108'] = { Name = 'prop_controller_01' }, - ['-1781967271'] = { Name = 'prop_cooker_03' }, - ['1925308724'] = { Name = 'prop_coolbox_01' }, - ['-1025251070'] = { Name = 'prop_copier_01' }, - ['-512779781'] = { Name = 'prop_copper_pan' }, - ['-1197075149'] = { Name = 'prop_cora_clam_01' }, - ['2085456462'] = { Name = 'prop_coral_01' }, - ['454281176'] = { Name = 'prop_coral_02' }, - ['148251485'] = { Name = 'prop_coral_03' }, - ['-1066518642'] = { Name = 'prop_coral_bush_01' }, - ['1515229990'] = { Name = 'prop_coral_flat_01_l1' }, - ['732902614'] = { Name = 'prop_coral_flat_01' }, - ['1932313568'] = { Name = 'prop_coral_flat_02' }, - ['-899327850'] = { Name = 'prop_coral_flat_brainy' }, - ['1142716866'] = { Name = 'prop_coral_flat_clam' }, - ['-1644521867'] = { Name = 'prop_coral_grass_01' }, - ['-1383778934'] = { Name = 'prop_coral_grass_02' }, - ['2012178995'] = { Name = 'prop_coral_kelp_01_l1' }, - ['-1438425225'] = { Name = 'prop_coral_kelp_01' }, - ['-362837572'] = { Name = 'prop_coral_kelp_02_l1' }, - ['1634749906'] = { Name = 'prop_coral_kelp_02' }, - ['-500555734'] = { Name = 'prop_coral_kelp_03_l1' }, - ['1169102416'] = { Name = 'prop_coral_kelp_03' }, - ['611872568'] = { Name = 'prop_coral_kelp_03a' }, - ['302500439'] = { Name = 'prop_coral_kelp_03b' }, - ['130856417'] = { Name = 'prop_coral_kelp_03c' }, - ['-178188022'] = { Name = 'prop_coral_kelp_03d' }, - ['857050146'] = { Name = 'prop_coral_kelp_04_l1' }, - ['11701240'] = { Name = 'prop_coral_kelp_04' }, - ['40625548'] = { Name = 'prop_coral_pillar_01' }, - ['-274317311'] = { Name = 'prop_coral_pillar_02' }, - ['624417658'] = { Name = 'prop_coral_spikey_01' }, - ['17064270'] = { Name = 'prop_coral_stone_03' }, - ['976638897'] = { Name = 'prop_coral_stone_04' }, - ['-2119215420'] = { Name = 'prop_coral_sweed_01' }, - ['-1265714046'] = { Name = 'prop_coral_sweed_02' }, - ['-1555752465'] = { Name = 'prop_coral_sweed_03' }, - ['595499640'] = { Name = 'prop_coral_sweed_04' }, - ['-936729545'] = { Name = 'prop_cork_board' }, - ['267944901'] = { Name = 'prop_couch_01' }, - ['1787607276'] = { Name = 'prop_couch_03' }, - ['1960004985'] = { Name = 'prop_couch_04' }, - ['-712445787'] = { Name = 'prop_couch_lg_02' }, - ['1469543616'] = { Name = 'prop_couch_lg_05' }, - ['-359621964'] = { Name = 'prop_couch_lg_06' }, - ['-65258037'] = { Name = 'prop_couch_lg_07' }, - ['2131641261'] = { Name = 'prop_couch_lg_08' }, - ['1781364495'] = { Name = 'prop_couch_sm_02' }, - ['-405540270'] = { Name = 'prop_couch_sm_05' }, - ['-1896300387'] = { Name = 'prop_couch_sm_06' }, - ['-863683659'] = { Name = 'prop_couch_sm_07' }, - ['332315958'] = { Name = 'prop_couch_sm1_07' }, - ['266823484'] = { Name = 'prop_couch_sm2_07' }, - ['322789545'] = { Name = 'prop_crane_01_truck1' }, - ['77841270'] = { Name = 'prop_crane_01_truck2' }, - ['1482017401'] = { Name = 'prop_cranial_saw' }, - ['-1903396261'] = { Name = 'prop_crashed_heli' }, - ['1138020438'] = { Name = 'prop_crate_01a' }, - ['2027909842'] = { Name = 'prop_crate_02a' }, - ['2078243314'] = { Name = 'prop_crate_03a' }, - ['1228641767'] = { Name = 'prop_crate_04a' }, - ['1734726491'] = { Name = 'prop_crate_05a' }, - ['1452552716'] = { Name = 'prop_crate_06a' }, - ['1195840658'] = { Name = 'prop_crate_07a' }, - ['-1349621981'] = { Name = 'prop_crate_08a' }, - ['-1748158271'] = { Name = 'prop_crate_09a' }, - ['1502702711'] = { Name = 'prop_crate_10a' }, - ['279501755'] = { Name = 'prop_crate_11a' }, - ['575569670'] = { Name = 'prop_crate_11b' }, - ['-718674754'] = { Name = 'prop_crate_11c' }, - ['-1092569044'] = { Name = 'prop_crate_11d' }, - ['2009246193'] = { Name = 'prop_crate_11e' }, - ['1062737045'] = { Name = 'prop_crate_float_1' }, - ['-1885873988'] = { Name = 'prop_cratepile_01a' }, - ['1872828871'] = { Name = 'prop_cratepile_02a' }, - ['2005215959'] = { Name = 'prop_cratepile_03a' }, - ['-939897404'] = { Name = 'prop_cratepile_05a' }, - ['-746113019'] = { Name = 'prop_cratepile_07a_l1' }, - ['-2073573168'] = { Name = 'prop_cratepile_07a' }, - ['958706278'] = { Name = 'prop_creosote_b_01' }, - ['-1106953345'] = { Name = 'prop_crisp_small' }, - ['664874098'] = { Name = 'prop_crisp' }, - ['274043485'] = { Name = 'prop_crosssaw_01' }, - ['810004487'] = { Name = 'prop_crt_mon_01' }, - ['1123308896'] = { Name = 'prop_crt_mon_02' }, - ['-937216864'] = { Name = 'prop_cs_20m_rope' }, - ['-532590520'] = { Name = 'prop_cs_30m_rope' }, - ['13812341'] = { Name = 'prop_cs_abattoir_switch' }, - ['63698946'] = { Name = 'prop_cs_aircon_01' }, - ['-1442454769'] = { Name = 'prop_cs_aircon_fan' }, - ['1536669612'] = { Name = 'prop_cs_amanda_shoe' }, - ['1768299584'] = { Name = 'prop_cs_ashtray' }, - ['1256177865'] = { Name = 'prop_cs_bandana' }, - ['-1232739548'] = { Name = 'prop_cs_bar' }, - ['1280564504'] = { Name = 'prop_cs_beachtowel_01' }, - ['-1620762220'] = { Name = 'prop_cs_beer_bot_01' }, - ['142566137'] = { Name = 'prop_cs_beer_bot_01b' }, - ['426102607'] = { Name = 'prop_cs_beer_bot_01lod' }, - ['1360987401'] = { Name = 'prop_cs_beer_bot_02' }, - ['2138694078'] = { Name = 'prop_cs_beer_bot_03' }, - ['2010247122'] = { Name = 'prop_cs_beer_bot_40oz_02' }, - ['466433990'] = { Name = 'prop_cs_beer_bot_40oz_03' }, - ['1027704914'] = { Name = 'prop_cs_beer_bot_40oz' }, - ['-611631168'] = { Name = 'prop_cs_beer_bot_test' }, - ['465289078'] = { Name = 'prop_cs_beer_box' }, - ['-2056768813'] = { Name = 'prop_cs_bin_01_lid' }, - ['1010534896'] = { Name = 'prop_cs_bin_01_skinned' }, - ['-654874323'] = { Name = 'prop_cs_bin_01' }, - ['651101403'] = { Name = 'prop_cs_bin_02' }, - ['909943734'] = { Name = 'prop_cs_bin_03' }, - ['-1176461999'] = { Name = 'prop_cs_binder_01' }, - ['2025816514'] = { Name = 'prop_cs_book_01' }, - ['-1427999220'] = { Name = 'prop_cs_bottle_opener' }, - ['170053282'] = { Name = 'prop_cs_bowie_knife' }, - ['2120940455'] = { Name = 'prop_cs_bowl_01' }, - ['-295727581'] = { Name = 'prop_cs_bowl_01b' }, - ['-719727517'] = { Name = 'prop_cs_box_clothes' }, - ['1956168703'] = { Name = 'prop_cs_box_step' }, - ['201663137'] = { Name = 'prop_cs_brain_chunk' }, - ['-775118285'] = { Name = 'prop_cs_bs_cup' }, - ['-1677504802'] = { Name = 'prop_cs_bucket_s_lod' }, - ['554267863'] = { Name = 'prop_cs_bucket_s' }, - ['-2054442544'] = { Name = 'prop_cs_burger_01' }, - ['-1282513796'] = { Name = 'prop_cs_business_card' }, - ['1302435108'] = { Name = 'prop_cs_cardbox_01' }, - ['-1505197182'] = { Name = 'prop_cs_cash_note_01' }, - ['406712611'] = { Name = 'prop_cs_cashenvelope' }, - ['2090203758'] = { Name = 'prop_cs_cctv' }, - ['-1615062121'] = { Name = 'prop_cs_champ_flute' }, - ['-917746868'] = { Name = 'prop_cs_ciggy_01' }, - ['-1025266894'] = { Name = 'prop_cs_ciggy_01b' }, - ['652737713'] = { Name = 'prop_cs_clothes_box' }, - ['545057810'] = { Name = 'prop_cs_coke_line' }, - ['533451505'] = { Name = 'prop_cs_cont_latch' }, - ['-693475324'] = { Name = 'prop_cs_crackpipe' }, - ['-875075437'] = { Name = 'prop_cs_credit_card' }, - ['723503026'] = { Name = 'prop_cs_creeper_01' }, - ['-406097840'] = { Name = 'prop_cs_crisps_01' }, - ['1070220657'] = { Name = 'prop_cs_cuffs_01' }, - ['-335230536'] = { Name = 'prop_cs_diaphram' }, - ['-422877666'] = { Name = 'prop_cs_dildo_01' }, - ['-445408901'] = { Name = 'prop_cs_documents_01' }, - ['-996771701'] = { Name = 'prop_cs_dog_lead_2a' }, - ['1266353722'] = { Name = 'prop_cs_dog_lead_2b' }, - ['977232831'] = { Name = 'prop_cs_dog_lead_2c' }, - ['-1928819012'] = { Name = 'prop_cs_dog_lead_3a' }, - ['-575524846'] = { Name = 'prop_cs_dog_lead_3b' }, - ['-697139703'] = { Name = 'prop_cs_dog_lead_a_s' }, - ['-66960395'] = { Name = 'prop_cs_dog_lead_a' }, - ['917372867'] = { Name = 'prop_cs_dog_lead_b_s' }, - ['-1456365995'] = { Name = 'prop_cs_dog_lead_b' }, - ['-546403634'] = { Name = 'prop_cs_dog_lead_c' }, - ['1666748342'] = { Name = 'prop_cs_duffel_01' }, - ['-1623160520'] = { Name = 'prop_cs_duffel_01b' }, - ['684586828'] = { Name = 'prop_cs_dumpster_01a' }, - ['-1111368675'] = { Name = 'prop_cs_dumpster_lidl' }, - ['1620484584'] = { Name = 'prop_cs_dumpster_lidr' }, - ['1898245022'] = { Name = 'prop_cs_dvd_case' }, - ['159474821'] = { Name = 'prop_cs_dvd_player' }, - ['-1990299112'] = { Name = 'prop_cs_dvd' }, - ['-401083813'] = { Name = 'prop_cs_envolope_01' }, - ['424800391'] = { Name = 'prop_cs_fertilizer' }, - ['-1843032146'] = { Name = 'prop_cs_film_reel_01' }, - ['-502288475'] = { Name = 'prop_cs_focussheet1' }, - ['-222397056'] = { Name = 'prop_cs_folding_chair_01' }, - ['798703340'] = { Name = 'prop_cs_fork' }, - ['495720653'] = { Name = 'prop_cs_frank_photo' }, - ['1107966991'] = { Name = 'prop_cs_freightdoor_l1' }, - ['-405152626'] = { Name = 'prop_cs_freightdoor_r1' }, - ['885756908'] = { Name = 'prop_cs_fridge_door' }, - ['1425833142'] = { Name = 'prop_cs_fridge' }, - ['1877113268'] = { Name = 'prop_cs_fuel_hose' }, - ['-1937636863'] = { Name = 'prop_cs_fuel_nozle' }, - ['-1999455180'] = { Name = 'prop_cs_gascutter_1' }, - ['2056069033'] = { Name = 'prop_cs_gascutter_2' }, - ['-1978316686'] = { Name = 'prop_cs_glass_scrap' }, - ['-1152832576'] = { Name = 'prop_cs_gravyard_gate_l' }, - ['-1613007647'] = { Name = 'prop_cs_gravyard_gate_r' }, - ['-1385720190'] = { Name = 'prop_cs_gunrack' }, - ['1474598747'] = { Name = 'prop_cs_h_bag_strap_01' }, - ['-1964402432'] = { Name = 'prop_cs_hand_radio' }, - ['-711724000'] = { Name = 'prop_cs_heist_bag_01' }, - ['1626933972'] = { Name = 'prop_cs_heist_bag_02' }, - ['-885937534'] = { Name = 'prop_cs_heist_bag_strap_01' }, - ['-180730371'] = { Name = 'prop_cs_heist_rope_b' }, - ['-701398104'] = { Name = 'prop_cs_heist_rope' }, - ['-1729226035'] = { Name = 'prop_cs_hotdog_01' }, - ['-1490012335'] = { Name = 'prop_cs_hotdog_02' }, - ['1781429436'] = { Name = 'prop_cs_ice_locker_door_l' }, - ['-1248359543'] = { Name = 'prop_cs_ice_locker_door_r' }, - ['-315721232'] = { Name = 'prop_cs_ice_locker' }, - ['-1718725630'] = { Name = 'prop_cs_ilev_blind_01' }, - ['913235136'] = { Name = 'prop_cs_ironing_board' }, - ['-491126417'] = { Name = 'prop_cs_katana_01' }, - ['1653123003'] = { Name = 'prop_cs_kettle_01' }, - ['1355944948'] = { Name = 'prop_cs_keyboard_01' }, - ['403319434'] = { Name = 'prop_cs_keys_01' }, - ['1745889433'] = { Name = 'prop_cs_kitchen_cab_l' }, - ['-472476695'] = { Name = 'prop_cs_kitchen_cab_l2' }, - ['-1078473900'] = { Name = 'prop_cs_kitchen_cab_ld' }, - ['-4270084'] = { Name = 'prop_cs_kitchen_cab_r' }, - ['-702878534'] = { Name = 'prop_cs_kitchen_cab_rd' }, - ['-173563530'] = { Name = 'prop_cs_lazlow_ponytail' }, - ['-64507759'] = { Name = 'prop_cs_lazlow_shirt_01' }, - ['1307059286'] = { Name = 'prop_cs_lazlow_shirt_01b' }, - ['-1837161340'] = { Name = 'prop_cs_leaf' }, - ['-1289626238'] = { Name = 'prop_cs_leg_chain_01' }, - ['1779489719'] = { Name = 'prop_cs_lester_crate' }, - ['-1265049850'] = { Name = 'prop_cs_lipstick' }, - ['-1567349688'] = { Name = 'prop_cs_magazine' }, - ['-294844349'] = { Name = 'prop_cs_marker_01' }, - ['-212446848'] = { Name = 'prop_cs_meth_pipe' }, - ['-2127730952'] = { Name = 'prop_cs_milk_01' }, - ['-2111499173'] = { Name = 'prop_cs_mini_tv' }, - ['-320848029'] = { Name = 'prop_cs_mop_s' }, - ['-1325917674'] = { Name = 'prop_cs_mopbucket_01' }, - ['-802505806'] = { Name = 'prop_cs_mouse_01' }, - ['1230429806'] = { Name = 'prop_cs_nail_file' }, - ['-1342300326'] = { Name = 'prop_cs_newspaper' }, - ['-1118419705'] = { Name = 'prop_cs_office_chair' }, - ['-730039367'] = { Name = 'prop_cs_overalls_01' }, - ['-280273712'] = { Name = 'prop_cs_package_01' }, - ['-964718646'] = { Name = 'prop_cs_padlock' }, - ['-2015467307'] = { Name = 'prop_cs_pamphlet_01' }, - ['680820076'] = { Name = 'prop_cs_panel_01' }, - ['392343608'] = { Name = 'prop_cs_panties_02' }, - ['183572309'] = { Name = 'prop_cs_panties_03' }, - ['-107476029'] = { Name = 'prop_cs_panties' }, - ['1151364435'] = { Name = 'prop_cs_paper_cup' }, - ['188509020'] = { Name = 'prop_cs_para_ropebit' }, - ['1802746629'] = { Name = 'prop_cs_para_ropes' }, - ['-1210765722'] = { Name = 'prop_cs_pebble_02' }, - ['825178770'] = { Name = 'prop_cs_pebble' }, - ['-963445391'] = { Name = 'prop_cs_petrol_can' }, - ['810403723'] = { Name = 'prop_cs_phone_01' }, - ['-1771756887'] = { Name = 'prop_cs_photoframe_01' }, - ['-756465278'] = { Name = 'prop_cs_pills' }, - ['543307053'] = { Name = 'prop_cs_plane_int_01' }, - ['2003467845'] = { Name = 'prop_cs_planning_photo' }, - ['-2032546125'] = { Name = 'prop_cs_plant_01' }, - ['1699172013'] = { Name = 'prop_cs_plate_01' }, - ['929749731'] = { Name = 'prop_cs_polaroid' }, - ['211760048'] = { Name = 'prop_cs_police_torch_02' }, - ['1110740384'] = { Name = 'prop_cs_police_torch' }, - ['2044620980'] = { Name = 'prop_cs_pour_tube' }, - ['1456723945'] = { Name = 'prop_cs_power_cell' }, - ['885625790'] = { Name = 'prop_cs_power_cord' }, - ['-1202268978'] = { Name = 'prop_cs_protest_sign_01' }, - ['513679711'] = { Name = 'prop_cs_protest_sign_02' }, - ['684677473'] = { Name = 'prop_cs_protest_sign_02b' }, - ['1289584093'] = { Name = 'prop_cs_protest_sign_03' }, - ['-1957551963'] = { Name = 'prop_cs_protest_sign_04a' }, - ['-668026271'] = { Name = 'prop_cs_protest_sign_04b' }, - ['-410593242'] = { Name = 'prop_cs_r_business_card' }, - ['-1005864181'] = { Name = 'prop_cs_rage_statue_p1' }, - ['-1777344752'] = { Name = 'prop_cs_rage_statue_p2' }, - ['542291840'] = { Name = 'prop_cs_remote_01' }, - ['-1721110035'] = { Name = 'prop_cs_rolled_paper' }, - ['-2144934510'] = { Name = 'prop_cs_rope_tie_01' }, - ['-675277761'] = { Name = 'prop_cs_rub_binbag_01' }, - ['-1649986476'] = { Name = 'prop_cs_rub_box_01' }, - ['-1358047455'] = { Name = 'prop_cs_rub_box_02' }, - ['161602935'] = { Name = 'prop_cs_sack_01' }, - ['1932149942'] = { Name = 'prop_cs_saucer_01' }, - ['-601355186'] = { Name = 'prop_cs_sc1_11_gate' }, - ['-1089970267'] = { Name = 'prop_cs_scissors' }, - ['1648892290'] = { Name = 'prop_cs_script_bottle_01' }, - ['393961710'] = { Name = 'prop_cs_script_bottle' }, - ['977288393'] = { Name = 'prop_cs_server_drive' }, - ['573064907'] = { Name = 'prop_cs_sheers' }, - ['684238724'] = { Name = 'prop_cs_shirt_01' }, - ['-1187210516'] = { Name = 'prop_cs_shopping_bag' }, - ['1109316917'] = { Name = 'prop_cs_shot_glass' }, - ['-1668478519'] = { Name = 'prop_cs_silver_tray' }, - ['2084853348'] = { Name = 'prop_cs_sink_filler_02' }, - ['-1358251024'] = { Name = 'prop_cs_sink_filler_03' }, - ['-2046364835'] = { Name = 'prop_cs_sink_filler' }, - ['-197632755'] = { Name = 'prop_cs_sm_27_gate' }, - ['-1703594174'] = { Name = 'prop_cs_sol_glasses' }, - ['1749718958'] = { Name = 'prop_cs_spray_can' }, - ['-1663028984'] = { Name = 'prop_cs_steak' }, - ['-1483715345'] = { Name = 'prop_cs_stock_book' }, - ['628215202'] = { Name = 'prop_cs_street_binbag_01' }, - ['1080644630'] = { Name = 'prop_cs_street_card_01' }, - ['454560116'] = { Name = 'prop_cs_street_card_02' }, - ['771280738'] = { Name = 'prop_cs_sub_hook_01' }, - ['925468589'] = { Name = 'prop_cs_sub_rope_01' }, - ['511938898'] = { Name = 'prop_cs_swipe_card' }, - ['-1048256558'] = { Name = 'prop_cs_t_shirt_pile' }, - ['921401054'] = { Name = 'prop_cs_tablet_02' }, - ['-1585232418'] = { Name = 'prop_cs_tablet' }, - ['-1505729971'] = { Name = 'prop_cs_toaster' }, - ['-1388073043'] = { Name = 'prop_cs_trev_overlay' }, - ['-1776497660'] = { Name = 'prop_cs_trolley_01' }, - ['-1934174148'] = { Name = 'prop_cs_trowel' }, - ['84687303'] = { Name = 'prop_cs_truck_ladder' }, - ['1201332031'] = { Name = 'prop_cs_tshirt_ball_01' }, - ['122877578'] = { Name = 'prop_cs_tv_stand' }, - ['-1457669319'] = { Name = 'prop_cs_valve' }, - ['-116183211'] = { Name = 'prop_cs_vent_cover' }, - ['-2022085894'] = { Name = 'prop_cs_vial_01' }, - ['1806057883'] = { Name = 'prop_cs_walkie_talkie' }, - ['1152510020'] = { Name = 'prop_cs_walking_stick' }, - ['561783600'] = { Name = 'prop_cs_whiskey_bot_stop' }, - ['211213803'] = { Name = 'prop_cs_whiskey_bottle' }, - ['1959553115'] = { Name = 'prop_cs_wrench' }, - ['-1258501664'] = { Name = 'prop_cs1_14b_traind_dam' }, - ['1301406642'] = { Name = 'prop_cs1_14b_traind' }, - ['1342464176'] = { Name = 'prop_cs4_05_tdoor' }, - ['67910261'] = { Name = 'prop_cs4_10_tr_gd_01' }, - ['-948829372'] = { Name = 'prop_cs4_11_door' }, - ['338220432'] = { Name = 'prop_cs6_03_door_l' }, - ['1075555701'] = { Name = 'prop_cs6_03_door_r' }, - ['337097444'] = { Name = 'prop_cs6_04_glass' }, - ['1930882775'] = { Name = 'prop_cub_door_lifeblurb' }, - ['617643669'] = { Name = 'prop_cub_lifeblurb' }, - ['-331172978'] = { Name = 'prop_cuff_keys_01' }, - ['-1039780876'] = { Name = 'prop_cup_saucer_01' }, - ['-1555713785'] = { Name = 'prop_curl_bar_01' }, - ['1042946313'] = { Name = 'prop_d_balcony_l_light' }, - ['1978304752'] = { Name = 'prop_d_balcony_r_light' }, - ['836865002'] = { Name = 'prop_daiquiri' }, - ['-1023447729'] = { Name = 'prop_damdoor_01' }, - ['1327834842'] = { Name = 'prop_dandy_b' }, - ['-472443277'] = { Name = 'prop_dart_1' }, - ['-790269808'] = { Name = 'prop_dart_2' }, - ['-303331298'] = { Name = 'prop_dart_bd_01' }, - ['-1113392619'] = { Name = 'prop_dart_bd_cab_01' }, - ['-1479543950'] = { Name = 'prop_dealer_win_01' }, - ['-1785934100'] = { Name = 'prop_dealer_win_02' }, - ['-1568511773'] = { Name = 'prop_dealer_win_03' }, - ['-332567508'] = { Name = 'prop_defilied_ragdoll_01' }, - ['-1165586043'] = { Name = 'prop_desert_iron_01' }, - ['-1787521651'] = { Name = 'prop_dest_cctv_01' }, - ['383555675'] = { Name = 'prop_dest_cctv_02' }, - ['480355301'] = { Name = 'prop_dest_cctv_03' }, - ['-1211836083'] = { Name = 'prop_dest_cctv_03b' }, - ['-1282911349'] = { Name = 'prop_detergent_01a' }, - ['-918651145'] = { Name = 'prop_detergent_01b' }, - ['-1797423879'] = { Name = 'prop_devin_box_01' }, - ['-1619952456'] = { Name = 'prop_devin_box_closed' }, - ['-1632945196'] = { Name = 'prop_devin_box_dummy_01' }, - ['1443647253'] = { Name = 'prop_devin_rope_01' }, - ['770306532'] = { Name = 'prop_diggerbkt_01' }, - ['900821510'] = { Name = 'prop_direct_chair_01' }, - ['181607490'] = { Name = 'prop_direct_chair_02' }, - ['1731771922'] = { Name = 'prop_disp_cabinet_002' }, - ['1030901262'] = { Name = 'prop_disp_cabinet_01' }, - ['1042666393'] = { Name = 'prop_disp_razor_01' }, - ['-7099851'] = { Name = 'prop_display_unit_01' }, - ['592572849'] = { Name = 'prop_display_unit_02' }, - ['1946261094'] = { Name = 'prop_distantcar_day' }, - ['-307663033'] = { Name = 'prop_distantcar_night' }, - ['-1310331447'] = { Name = 'prop_distantcar_truck' }, - ['1164617828'] = { Name = 'prop_dj_deck_01' }, - ['411094673'] = { Name = 'prop_dj_deck_02' }, - ['455567202'] = { Name = 'prop_dock_bouy_1' }, - ['736528608'] = { Name = 'prop_dock_bouy_2' }, - ['1944361179'] = { Name = 'prop_dock_bouy_3' }, - ['1341706512'] = { Name = 'prop_dock_bouy_5' }, - ['2098247772'] = { Name = 'prop_dock_crane_01' }, - ['991230204'] = { Name = 'prop_dock_crane_02_cab' }, - ['1562489357'] = { Name = 'prop_dock_crane_02_hook' }, - ['69661806'] = { Name = 'prop_dock_crane_02_ld' }, - ['-1948789270'] = { Name = 'prop_dock_crane_02' }, - ['-1473868153'] = { Name = 'prop_dock_crane_04' }, - ['-1064744201'] = { Name = 'prop_dock_crane_lift' }, - ['-1846445721'] = { Name = 'prop_dock_float_1' }, - ['670963709'] = { Name = 'prop_dock_float_1b' }, - ['-1775749263'] = { Name = 'prop_dock_moor_01' }, - ['-1789381239'] = { Name = 'prop_dock_moor_04' }, - ['-2095279854'] = { Name = 'prop_dock_moor_05' }, - ['-130712762'] = { Name = 'prop_dock_moor_06' }, - ['-418457351'] = { Name = 'prop_dock_moor_07' }, - ['836548561'] = { Name = 'prop_dock_ropefloat' }, - ['499271674'] = { Name = 'prop_dock_ropetyre1' }, - ['1237491706'] = { Name = 'prop_dock_ropetyre2' }, - ['1938092926'] = { Name = 'prop_dock_ropetyre3' }, - ['14112042'] = { Name = 'prop_dock_rtg_01' }, - ['1120043236'] = { Name = 'prop_dock_rtg_ld' }, - ['1170431850'] = { Name = 'prop_dock_shippad' }, - ['-62671737'] = { Name = 'prop_dock_sign_01' }, - ['-509384787'] = { Name = 'prop_dock_woodpole1' }, - ['-790673883'] = { Name = 'prop_dock_woodpole2' }, - ['187087539'] = { Name = 'prop_dock_woodpole3' }, - ['-44884212'] = { Name = 'prop_dock_woodpole4' }, - ['664892328'] = { Name = 'prop_dock_woodpole5' }, - ['379820688'] = { Name = 'prop_dog_cage_01' }, - ['1692612370'] = { Name = 'prop_dog_cage_02' }, - ['-1782242710'] = { Name = 'prop_doghouse_01' }, - ['439871883'] = { Name = 'prop_dolly_01' }, - ['175786512'] = { Name = 'prop_dolly_02' }, - ['702242327'] = { Name = 'prop_donut_01' }, - ['874345115'] = { Name = 'prop_donut_02' }, - ['-302942743'] = { Name = 'prop_donut_02b' }, - ['776184575'] = { Name = 'prop_door_01' }, - ['-1776185420'] = { Name = 'prop_door_balcony_frame' }, - ['-197147162'] = { Name = 'prop_door_balcony_left' }, - ['368191321'] = { Name = 'prop_door_balcony_right' }, - ['254309271'] = { Name = 'prop_door_bell_01' }, - ['1668169185'] = { Name = 'prop_double_grid_line' }, - ['-1478588509'] = { Name = 'prop_dress_disp_01' }, - ['-587238940'] = { Name = 'prop_dress_disp_02' }, - ['-891859564'] = { Name = 'prop_dress_disp_03' }, - ['-47795662'] = { Name = 'prop_dress_disp_04' }, - ['600913159'] = { Name = 'prop_drink_champ' }, - ['-1296547421'] = { Name = 'prop_drink_redwine' }, - ['-1863407086'] = { Name = 'prop_drink_whisky' }, - ['-1081236305'] = { Name = 'prop_drink_whtwine' }, - ['-1096792232'] = { Name = 'prop_drinkmenu' }, - ['-1319782883'] = { Name = 'prop_drop_armscrate_01' }, - ['1877891248'] = { Name = 'prop_drop_armscrate_01b' }, - ['505870426'] = { Name = 'prop_drop_crate_01_set' }, - ['758360035'] = { Name = 'prop_drop_crate_01_set2' }, - ['247892203'] = { Name = 'prop_drop_crate_01' }, - ['-1382355819'] = { Name = 'prop_drug_bottle' }, - ['2046325121'] = { Name = 'prop_drug_burner' }, - ['-374844025'] = { Name = 'prop_drug_erlenmeyer' }, - ['-1964997422'] = { Name = 'prop_drug_package_02' }, - ['528555233'] = { Name = 'prop_drug_package' }, - ['1842782908'] = { Name = 'prop_drywallpile_01' }, - ['-300211401'] = { Name = 'prop_drywallpile_02' }, - ['1466610934'] = { Name = 'prop_dryweed_001_a' }, - ['-771025032'] = { Name = 'prop_dryweed_002_a' }, - ['-1370006795'] = { Name = 'prop_dt1_13_groundlight' }, - ['-604862988'] = { Name = 'prop_dt1_13_walllightsource' }, - ['2026076529'] = { Name = 'prop_dt1_20_mp_door_l' }, - ['207200483'] = { Name = 'prop_dt1_20_mp_door_r' }, - ['-904347255'] = { Name = 'prop_dt1_20_mp_gar' }, - ['716584927'] = { Name = 'prop_ducktape_01' }, - ['2147205602'] = { Name = 'prop_dummy_01' }, - ['-1007599668'] = { Name = 'prop_dummy_car' }, - ['-1748817893'] = { Name = 'prop_dummy_light' }, - ['-473036318'] = { Name = 'prop_dummy_plane' }, - ['218085040'] = { Name = 'prop_dumpster_01a' }, - ['666561306'] = { Name = 'prop_dumpster_02a' }, - ['-58485588'] = { Name = 'prop_dumpster_02b' }, - ['-206690185'] = { Name = 'prop_dumpster_3a' }, - ['-349837572'] = { Name = 'prop_dumpster_3step' }, - ['1511880420'] = { Name = 'prop_dumpster_4a' }, - ['682791951'] = { Name = 'prop_dumpster_4b' }, - ['1600071214'] = { Name = 'prop_dyn_pc_02' }, - ['-1830645735'] = { Name = 'prop_dyn_pc' }, - ['1581199790'] = { Name = 'prop_ear_defenders_01' }, - ['-1807045778'] = { Name = 'prop_ecg_01_cable_01' }, - ['1719717851'] = { Name = 'prop_ecg_01_cable_02' }, - ['-776740207'] = { Name = 'prop_ecg_01' }, - ['1020618269'] = { Name = 'prop_ecola_can' }, - ['-1774898062'] = { Name = 'prop_egg_clock_01' }, - ['953734356'] = { Name = 'prop_ejector_seat_01' }, - ['-1528307545'] = { Name = 'prop_el_guitar_01' }, - ['916292624'] = { Name = 'prop_el_guitar_02' }, - ['61087258'] = { Name = 'prop_el_guitar_03' }, - ['1593642543'] = { Name = 'prop_el_tapeplayer_01' }, - ['-1599192661'] = { Name = 'prop_elec_heater_01' }, - ['393527760'] = { Name = 'prop_elecbox_01a' }, - ['1419852836'] = { Name = 'prop_elecbox_01b' }, - ['-2138350253'] = { Name = 'prop_elecbox_02a' }, - ['1381105889'] = { Name = 'prop_elecbox_02b' }, - ['1130200868'] = { Name = 'prop_elecbox_03a' }, - ['-2008643115'] = { Name = 'prop_elecbox_04a' }, - ['-2007495856'] = { Name = 'prop_elecbox_05a' }, - ['491238953'] = { Name = 'prop_elecbox_06a' }, - ['-1620823304'] = { Name = 'prop_elecbox_07a' }, - ['1841929479'] = { Name = 'prop_elecbox_08' }, - ['-259008966'] = { Name = 'prop_elecbox_08b' }, - ['1923262137'] = { Name = 'prop_elecbox_09' }, - ['-1333576134'] = { Name = 'prop_elecbox_10_cr' }, - ['-686494084'] = { Name = 'prop_elecbox_10' }, - ['1518466392'] = { Name = 'prop_elecbox_11' }, - ['1756664253'] = { Name = 'prop_elecbox_12' }, - ['2114960499'] = { Name = 'prop_elecbox_13' }, - ['-1944495994'] = { Name = 'prop_elecbox_14' }, - ['1820092997'] = { Name = 'prop_elecbox_15_cr' }, - ['254402217'] = { Name = 'prop_elecbox_15' }, - ['493845300'] = { Name = 'prop_elecbox_16' }, - ['-1001532663'] = { Name = 'prop_elecbox_17_cr' }, - ['847750500'] = { Name = 'prop_elecbox_17' }, - ['1086210513'] = { Name = 'prop_elecbox_18' }, - ['-1008711657'] = { Name = 'prop_elecbox_19' }, - ['-1372185849'] = { Name = 'prop_elecbox_20' }, - ['-1610383710'] = { Name = 'prop_elecbox_21' }, - ['-1046756910'] = { Name = 'prop_elecbox_22' }, - ['-1284627081'] = { Name = 'prop_elecbox_23' }, - ['-450918183'] = { Name = 'prop_elecbox_24' }, - ['-1094431857'] = { Name = 'prop_elecbox_24b' }, - ['-692524020'] = { Name = 'prop_elecbox_25' }, - ['1660155592'] = { Name = 'prop_employee_month_01' }, - ['1427692306'] = { Name = 'prop_employee_month_02' }, - ['582043502'] = { Name = 'prop_energy_drink' }, - ['1742634574'] = { Name = 'prop_engine_hoist' }, - ['-1319764601'] = { Name = 'prop_entityxf_covered' }, - ['-2045308299'] = { Name = 'prop_epsilon_door_l' }, - ['-42303174'] = { Name = 'prop_epsilon_door_r' }, - ['667105809'] = { Name = 'prop_etricmotor_01' }, - ['361676134'] = { Name = 'prop_exer_bike_01' }, - ['1853930700'] = { Name = 'prop_exer_bike_mg' }, - ['-387859854'] = { Name = 'prop_exercisebike' }, - ['1496262794'] = { Name = 'prop_f_b_insert_broken' }, - ['-1589821555'] = { Name = 'prop_f_duster_01_s' }, - ['-2121195449'] = { Name = 'prop_f_duster_02' }, - ['501823275'] = { Name = 'prop_fac_machine_02' }, - ['1285415702'] = { Name = 'prop_face_rag_01' }, - ['393888353'] = { Name = 'prop_faceoffice_door_l' }, - ['-893114122'] = { Name = 'prop_faceoffice_door_r' }, - ['569833973'] = { Name = 'prop_facgate_01' }, - ['-655468553'] = { Name = 'prop_facgate_01b' }, - ['-1975652018'] = { Name = 'prop_facgate_02_l' }, - ['-878463029'] = { Name = 'prop_facgate_02pole' }, - ['437009729'] = { Name = 'prop_facgate_03_l' }, - ['-970794948'] = { Name = 'prop_facgate_03_ld_l' }, - ['-1740145570'] = { Name = 'prop_facgate_03_ld_r' }, - ['450182863'] = { Name = 'prop_facgate_03_r' }, - ['406528547'] = { Name = 'prop_facgate_03b_l' }, - ['-1391539216'] = { Name = 'prop_facgate_03b_r' }, - ['432085890'] = { Name = 'prop_facgate_03post' }, - ['-742460265'] = { Name = 'prop_facgate_04_l' }, - ['1107349801'] = { Name = 'prop_facgate_04_r' }, - ['112336130'] = { Name = 'prop_facgate_05_r_dam_l1' }, - ['1154123433'] = { Name = 'prop_facgate_05_r_l1' }, - ['-43433986'] = { Name = 'prop_facgate_05_r' }, - ['-1368913668'] = { Name = 'prop_facgate_06_l' }, - ['-1657444801'] = { Name = 'prop_facgate_06_r' }, - ['-768779561'] = { Name = 'prop_facgate_07' }, - ['1286535678'] = { Name = 'prop_facgate_07b' }, - ['-775744691'] = { Name = 'prop_facgate_08_frame' }, - ['-512634970'] = { Name = 'prop_facgate_08_ld' }, - ['1054262428'] = { Name = 'prop_facgate_08_ld2' }, - ['-1483471451'] = { Name = 'prop_facgate_08' }, - ['44830813'] = { Name = 'prop_facgate_id1_27' }, - ['-1890824350'] = { Name = 'prop_fag_packet_01' }, - ['-1837476061'] = { Name = 'prop_fan_01' }, - ['374464092'] = { Name = 'prop_fan_palm_01a' }, - ['1785922871'] = { Name = 'prop_fax_01' }, - ['1598545299'] = { Name = 'prop_fbi3_coffee_table' }, - ['-433502981'] = { Name = 'prop_fbibombbin' }, - ['-1848876151'] = { Name = 'prop_fbibombcupbrd' }, - ['1601487018'] = { Name = 'prop_fbibombfile' }, - ['-886501662'] = { Name = 'prop_fbibombplant' }, - ['-335465691'] = { Name = 'prop_feed_sack_01' }, - ['641607582'] = { Name = 'prop_feed_sack_02' }, - ['-1576911260'] = { Name = 'prop_feeder1_cr' }, - ['1563219665'] = { Name = 'prop_feeder1' }, - ['1145422464'] = { Name = 'prop_fem_01' }, - ['966503966'] = { Name = 'prop_fence_log_01' }, - ['-1996501787'] = { Name = 'prop_fence_log_02' }, - ['-837772196'] = { Name = 'prop_fernba' }, - ['-532037426'] = { Name = 'prop_fernbb' }, - ['-2021542625'] = { Name = 'prop_ferris_car_01_lod1' }, - ['-1975182244'] = { Name = 'prop_ferris_car_01' }, - ['-483631019'] = { Name = 'prop_ff_counter_01' }, - ['-1326449699'] = { Name = 'prop_ff_counter_02' }, - ['-1567006928'] = { Name = 'prop_ff_counter_03' }, - ['1027524526'] = { Name = 'prop_ff_noodle_01' }, - ['50451253'] = { Name = 'prop_ff_noodle_02' }, - ['-1940201823'] = { Name = 'prop_ff_shelves_01' }, - ['1506123827'] = { Name = 'prop_ff_sink_01' }, - ['-1527269738'] = { Name = 'prop_ff_sink_02' }, - ['-70627249'] = { Name = 'prop_fib_3b_bench' }, - ['-505150482'] = { Name = 'prop_fib_3b_cover1' }, - ['-262823731'] = { Name = 'prop_fib_3b_cover2' }, - ['-568951729'] = { Name = 'prop_fib_3b_cover3' }, - ['-339081347'] = { Name = 'prop_fib_ashtray_01' }, - ['1409747695'] = { Name = 'prop_fib_badge' }, - ['775109203'] = { Name = 'prop_fib_broken_window_2' }, - ['544251598'] = { Name = 'prop_fib_broken_window_3' }, - ['1596462100'] = { Name = 'prop_fib_broken_window' }, - ['176137803'] = { Name = 'prop_fib_clipboard' }, - ['52546966'] = { Name = 'prop_fib_coffee' }, - ['1019644700'] = { Name = 'prop_fib_counter' }, - ['1173660835'] = { Name = 'prop_fib_morg_cnr01' }, - ['712268108'] = { Name = 'prop_fib_morg_plr01' }, - ['-1936019214'] = { Name = 'prop_fib_morg_wal01' }, - ['-2044627725'] = { Name = 'prop_fib_plant_01' }, - ['1942868044'] = { Name = 'prop_fib_plant_02' }, - ['352272157'] = { Name = 'prop_fib_skylight_piece' }, - ['1310540658'] = { Name = 'prop_fib_skylight_plug' }, - ['-133590469'] = { Name = 'prop_fib_wallfrag01' }, - ['-1689979033'] = { Name = 'prop_film_cam_01' }, - ['-1185606320'] = { Name = 'prop_fire_driser_1a' }, - ['-1405158620'] = { Name = 'prop_fire_driser_1b' }, - ['-680963984'] = { Name = 'prop_fire_driser_2b' }, - ['-578110513'] = { Name = 'prop_fire_driser_3b' }, - ['380522805'] = { Name = 'prop_fire_driser_4a' }, - ['210058467'] = { Name = 'prop_fire_driser_4b' }, - ['-666581633'] = { Name = 'prop_fire_exting_1a' }, - ['-1980225301'] = { Name = 'prop_fire_exting_1b' }, - ['-1610165324'] = { Name = 'prop_fire_exting_2a' }, - ['-875057463'] = { Name = 'prop_fire_exting_3a' }, - ['-956123246'] = { Name = 'prop_fire_hosebox_01' }, - ['-651275771'] = { Name = 'prop_fire_hosereel_l1' }, - ['-149015768'] = { Name = 'prop_fire_hosereel' }, - ['200846641'] = { Name = 'prop_fire_hydrant_1' }, - ['687935120'] = { Name = 'prop_fire_hydrant_2_l1' }, - ['-97646180'] = { Name = 'prop_fire_hydrant_2' }, - ['-366155374'] = { Name = 'prop_fire_hydrant_4' }, - ['241167444'] = { Name = 'prop_fireescape_01a' }, - ['-631339950'] = { Name = 'prop_fireescape_01b' }, - ['-360111801'] = { Name = 'prop_fireescape_02a' }, - ['-1552346328'] = { Name = 'prop_fireescape_02b' }, - ['-2013814998'] = { Name = 'prop_fish_slice_01' }, - ['-1910604593'] = { Name = 'prop_fishing_rod_01' }, - ['1338703913'] = { Name = 'prop_fishing_rod_02' }, - ['-112762029'] = { Name = 'prop_flag_canada_s' }, - ['1627828183'] = { Name = 'prop_flag_canada' }, - ['541248010'] = { Name = 'prop_flag_eu_s' }, - ['-1296409602'] = { Name = 'prop_flag_eu' }, - ['-666399476'] = { Name = 'prop_flag_france_s' }, - ['-1034797968'] = { Name = 'prop_flag_france' }, - ['1603975478'] = { Name = 'prop_flag_german_s' }, - ['1970675376'] = { Name = 'prop_flag_german' }, - ['-1434834004'] = { Name = 'prop_flag_ireland_s' }, - ['302931829'] = { Name = 'prop_flag_ireland' }, - ['1155186447'] = { Name = 'prop_flag_japan_s' }, - ['-178815855'] = { Name = 'prop_flag_japan' }, - ['-2055846053'] = { Name = 'prop_flag_ls_s' }, - ['-1493938606'] = { Name = 'prop_flag_ls' }, - ['-425441205'] = { Name = 'prop_flag_lsfd_s' }, - ['366178255'] = { Name = 'prop_flag_lsfd' }, - ['-1734859577'] = { Name = 'prop_flag_lsservices_s' }, - ['1072290182'] = { Name = 'prop_flag_lsservices' }, - ['11846651'] = { Name = 'prop_flag_mexico_s' }, - ['-716201733'] = { Name = 'prop_flag_mexico' }, - ['-474725660'] = { Name = 'prop_flag_russia_s' }, - ['-908104950'] = { Name = 'prop_flag_russia' }, - ['-1730980585'] = { Name = 'prop_flag_s' }, - ['1793411117'] = { Name = 'prop_flag_sa_s' }, - ['1374928302'] = { Name = 'prop_flag_sa' }, - ['-1404481545'] = { Name = 'prop_flag_sapd_s' }, - ['-2114165809'] = { Name = 'prop_flag_sapd' }, - ['1357789167'] = { Name = 'prop_flag_scotland_s' }, - ['-795774545'] = { Name = 'prop_flag_scotland' }, - ['1382367337'] = { Name = 'prop_flag_sheriff_s' }, - ['1689290811'] = { Name = 'prop_flag_sheriff' }, - ['-109750292'] = { Name = 'prop_flag_uk_s' }, - ['-1051882404'] = { Name = 'prop_flag_uk' }, - ['1976910263'] = { Name = 'prop_flag_us_r' }, - ['-2032933964'] = { Name = 'prop_flag_us_s' }, - ['1117917059'] = { Name = 'prop_flag_us' }, - ['1487401018'] = { Name = 'prop_flag_usboat' }, - ['-1207959739'] = { Name = 'prop_flagpole_1a' }, - ['-686248546'] = { Name = 'prop_flagpole_2a' }, - ['-992802541'] = { Name = 'prop_flagpole_2b' }, - ['-225680251'] = { Name = 'prop_flagpole_2c' }, - ['-755161417'] = { Name = 'prop_flagpole_3a' }, - ['-1070059960'] = { Name = 'prop_flamingo' }, - ['-2071229766'] = { Name = 'prop_flare_01' }, - ['445804908'] = { Name = 'prop_flare_01b' }, - ['-212318599'] = { Name = 'prop_flash_unit' }, - ['-1020908409'] = { Name = 'prop_flatbed_strap_b' }, - ['111820268'] = { Name = 'prop_flatbed_strap' }, - ['2079702193'] = { Name = 'prop_flatscreen_overlay' }, - ['649665061'] = { Name = 'prop_flattrailer_01a' }, - ['531440379'] = { Name = 'prop_flattruck_01a' }, - ['282166596'] = { Name = 'prop_flattruck_01b' }, - ['51866064'] = { Name = 'prop_flattruck_01c' }, - ['-191836989'] = { Name = 'prop_flattruck_01d' }, - ['506770882'] = { Name = 'prop_fleeca_atm' }, - ['-589090886'] = { Name = 'prop_flight_box_01' }, - ['1869935347'] = { Name = 'prop_flight_box_insert' }, - ['-768970549'] = { Name = 'prop_flight_box_insert2' }, - ['1822567898'] = { Name = 'prop_flipchair_01' }, - ['-1509387784'] = { Name = 'prop_floor_duster_01' }, - ['2027852753'] = { Name = 'prop_flowerweed_005_a' }, - ['-219706798'] = { Name = 'prop_fnc_farm_01a' }, - ['93794225'] = { Name = 'prop_fnc_farm_01b' }, - ['1322893877'] = { Name = 'prop_fnc_farm_01c' }, - ['-1178167275'] = { Name = 'prop_fnc_farm_01d' }, - ['-872399736'] = { Name = 'prop_fnc_farm_01e' }, - ['373936410'] = { Name = 'prop_fnc_farm_01f' }, - ['710800597'] = { Name = 'prop_fnc_omesh_01a' }, - ['344241399'] = { Name = 'prop_fnc_omesh_02a' }, - ['1469496946'] = { Name = 'prop_fnc_omesh_03a' }, - ['-1210289519'] = { Name = 'prop_fncbeach_01a' }, - ['-704270621'] = { Name = 'prop_fncbeach_01b' }, - ['-1640448182'] = { Name = 'prop_fncbeach_01c' }, - ['-941064660'] = { Name = 'prop_fncconstruc_01d' }, - ['1660695985'] = { Name = 'prop_fncconstruc_02a' }, - ['-733651026'] = { Name = 'prop_fncconstruc_ld' }, - ['360404853'] = { Name = 'prop_fnccorgm_01a' }, - ['1042000049'] = { Name = 'prop_fnccorgm_01b' }, - ['-1894591898'] = { Name = 'prop_fnccorgm_02a' }, - ['-1519583462'] = { Name = 'prop_fnccorgm_02b' }, - ['1916672189'] = { Name = 'prop_fnccorgm_02c' }, - ['-940719073'] = { Name = 'prop_fnccorgm_02d' }, - ['1185366416'] = { Name = 'prop_fnccorgm_02e' }, - ['1159289407'] = { Name = 'prop_fnccorgm_02pole' }, - ['2074061472'] = { Name = 'prop_fnccorgm_03a' }, - ['-1593445012'] = { Name = 'prop_fnccorgm_03b' }, - ['-1880599759'] = { Name = 'prop_fnccorgm_03c' }, - ['-94130214'] = { Name = 'prop_fnccorgm_04a' }, - ['176705571'] = { Name = 'prop_fnccorgm_04c' }, - ['-37833296'] = { Name = 'prop_fnccorgm_05a' }, - ['-296347937'] = { Name = 'prop_fnccorgm_05b' }, - ['1150658405'] = { Name = 'prop_fnccorgm_06a' }, - ['1386955664'] = { Name = 'prop_fnccorgm_06b' }, - ['-1851510046'] = { Name = 'prop_fncglass_01a' }, - ['1821799499'] = { Name = 'prop_fnclink_01a' }, - ['409652213'] = { Name = 'prop_fnclink_01b' }, - ['-928338834'] = { Name = 'prop_fnclink_01c' }, - ['-208600510'] = { Name = 'prop_fnclink_01d' }, - ['637724453'] = { Name = 'prop_fnclink_01e' }, - ['-475536788'] = { Name = 'prop_fnclink_01f' }, - ['526006615'] = { Name = 'prop_fnclink_01gate1' }, - ['-856050416'] = { Name = 'prop_fnclink_01h' }, - ['-2007760198'] = { Name = 'prop_fnclink_02a_sdt' }, - ['2012223962'] = { Name = 'prop_fnclink_02a' }, - ['-1591940045'] = { Name = 'prop_fnclink_02b' }, - ['-1767254195'] = { Name = 'prop_fnclink_02c' }, - ['1035773304'] = { Name = 'prop_fnclink_02d' }, - ['796035300'] = { Name = 'prop_fnclink_02e' }, - ['1481857697'] = { Name = 'prop_fnclink_02f' }, - ['1242349076'] = { Name = 'prop_fnclink_02g' }, - ['1843657781'] = { Name = 'prop_fnclink_02gate1' }, - ['1046551856'] = { Name = 'prop_fnclink_02gate2' }, - ['1278261455'] = { Name = 'prop_fnclink_02gate3' }, - ['436622459'] = { Name = 'prop_fnclink_02gate4' }, - ['733542368'] = { Name = 'prop_fnclink_02gate5' }, - ['1526539404'] = { Name = 'prop_fnclink_02gate6_l' }, - ['227019171'] = { Name = 'prop_fnclink_02gate6_r' }, - ['-138702874'] = { Name = 'prop_fnclink_02gate6' }, - ['91564889'] = { Name = 'prop_fnclink_02gate7' }, - ['-186182710'] = { Name = 'prop_fnclink_02h' }, - ['1722447695'] = { Name = 'prop_fnclink_02i' }, - ['254920799'] = { Name = 'prop_fnclink_02j' }, - ['81703865'] = { Name = 'prop_fnclink_02k' }, - ['-1414692524'] = { Name = 'prop_fnclink_02l' }, - ['493020353'] = { Name = 'prop_fnclink_02m' }, - ['1833567378'] = { Name = 'prop_fnclink_02n' }, - ['-552277978'] = { Name = 'prop_fnclink_02o' }, - ['-1439105425'] = { Name = 'prop_fnclink_02p' }, - ['-759902142'] = { Name = 'prop_fnclink_03a' }, - ['-1900591032'] = { Name = 'prop_fnclink_03b' }, - ['-1591284441'] = { Name = 'prop_fnclink_03c' }, - ['729940451'] = { Name = 'prop_fnclink_03d' }, - ['1001693768'] = { Name = 'prop_fnclink_03e' }, - ['874386199'] = { Name = 'prop_fnclink_03f' }, - ['1181661112'] = { Name = 'prop_fnclink_03g' }, - ['-1234764774'] = { Name = 'prop_fnclink_03gate1' }, - ['-250842784'] = { Name = 'prop_fnclink_03gate2' }, - ['-446014948'] = { Name = 'prop_fnclink_03gate3' }, - ['-875157772'] = { Name = 'prop_fnclink_03gate4' }, - ['-1156020871'] = { Name = 'prop_fnclink_03gate5' }, - ['-21288878'] = { Name = 'prop_fnclink_03h' }, - ['1357335721'] = { Name = 'prop_fnclink_03i' }, - ['266061667'] = { Name = 'prop_fnclink_04a' }, - ['1543004059'] = { Name = 'prop_fnclink_04b' }, - ['1764620806'] = { Name = 'prop_fnclink_04c' }, - ['928814692'] = { Name = 'prop_fnclink_04d' }, - ['1186411801'] = { Name = 'prop_fnclink_04e' }, - ['790529524'] = { Name = 'prop_fnclink_04f' }, - ['1020862825'] = { Name = 'prop_fnclink_04g' }, - ['-1218968680'] = { Name = 'prop_fnclink_04gate1' }, - ['1804939234'] = { Name = 'prop_fnclink_04h_l2' }, - ['-1952203011'] = { Name = 'prop_fnclink_04h' }, - ['-448728522'] = { Name = 'prop_fnclink_04j' }, - ['2079727522'] = { Name = 'prop_fnclink_04k' }, - ['-1043649717'] = { Name = 'prop_fnclink_04l' }, - ['-796079922'] = { Name = 'prop_fnclink_04m' }, - ['-1985397776'] = { Name = 'prop_fnclink_05a' }, - ['1102326779'] = { Name = 'prop_fnclink_05b' }, - ['-1491536177'] = { Name = 'prop_fnclink_05c' }, - ['206865238'] = { Name = 'prop_fnclink_05crnr1' }, - ['1560863396'] = { Name = 'prop_fnclink_05d' }, - ['304918404'] = { Name = 'prop_fnclink_05pole' }, - ['-1393524934'] = { Name = 'prop_fnclink_06a' }, - ['-837500542'] = { Name = 'prop_fnclink_06b' }, - ['2122752615'] = { Name = 'prop_fnclink_06c' }, - ['-1314912103'] = { Name = 'prop_fnclink_06d' }, - ['-419676332'] = { Name = 'prop_fnclink_06gate2' }, - ['-768731720'] = { Name = 'prop_fnclink_06gate3' }, - ['-1555641785'] = { Name = 'prop_fnclink_06gatepost' }, - ['1620465091'] = { Name = 'prop_fnclink_07a' }, - ['1031606161'] = { Name = 'prop_fnclink_07b' }, - ['1187258911'] = { Name = 'prop_fnclink_07c' }, - ['-1744550758'] = { Name = 'prop_fnclink_07d' }, - ['1127922797'] = { Name = 'prop_fnclink_07gate1' }, - ['1846022663'] = { Name = 'prop_fnclink_07gate2' }, - ['-1615465118'] = { Name = 'prop_fnclink_07gate3' }, - ['1322200853'] = { Name = 'prop_fnclink_08b' }, - ['1904768135'] = { Name = 'prop_fnclink_08c' }, - ['-148960916'] = { Name = 'prop_fnclink_08post' }, - ['1411103374'] = { Name = 'prop_fnclink_09a' }, - ['1130240275'] = { Name = 'prop_fnclink_09b' }, - ['-216200273'] = { Name = 'prop_fnclink_09crnr1' }, - ['-2025053974'] = { Name = 'prop_fnclink_09d' }, - ['2122387284'] = { Name = 'prop_fnclink_09e' }, - ['351792706'] = { Name = 'prop_fnclink_09frame' }, - ['1817008884'] = { Name = 'prop_fnclink_09gate1' }, - ['-313656158'] = { Name = 'prop_fnclink_10a' }, - ['-1754771240'] = { Name = 'prop_fnclink_10b' }, - ['-911526563'] = { Name = 'prop_fnclink_10c' }, - ['1819728343'] = { Name = 'prop_fnclink_10d_ld' }, - ['1976339873'] = { Name = 'prop_fnclink_10d' }, - ['-1509528044'] = { Name = 'prop_fnclink_10e' }, - ['-1141167399'] = { Name = 'prop_fnclog_01a' }, - ['-1444411725'] = { Name = 'prop_fnclog_01b' }, - ['237424435'] = { Name = 'prop_fnclog_01c' }, - ['-1325788233'] = { Name = 'prop_fnclog_02a' }, - ['-1095553239'] = { Name = 'prop_fnclog_02b' }, - ['994927545'] = { Name = 'prop_fnclog_03a' }, - ['-352585176'] = { Name = 'prop_fncpeir_03a' }, - ['-519102073'] = { Name = 'prop_fncply_01a' }, - ['-226179982'] = { Name = 'prop_fncply_01b' }, - ['311268833'] = { Name = 'prop_fncply_01gate' }, - ['1135099165'] = { Name = 'prop_fncply_01post' }, - ['1172914654'] = { Name = 'prop_fncres_01a' }, - ['931439893'] = { Name = 'prop_fncres_01b' }, - ['41630463'] = { Name = 'prop_fncres_01c' }, - ['-1489109258'] = { Name = 'prop_fncres_02_gate1' }, - ['1984962971'] = { Name = 'prop_fncres_02a' }, - ['1736803334'] = { Name = 'prop_fncres_02b' }, - ['-369653524'] = { Name = 'prop_fncres_02c' }, - ['453929753'] = { Name = 'prop_fncres_02d' }, - ['58931935'] = { Name = 'prop_fncres_03a' }, - ['-759735992'] = { Name = 'prop_fncres_03b' }, - ['-453116459'] = { Name = 'prop_fncres_03c' }, - ['1006450599'] = { Name = 'prop_fncres_03gate1' }, - ['955919780'] = { Name = 'prop_fncres_04a' }, - ['583270712'] = { Name = 'prop_fncres_04b' }, - ['-73256531'] = { Name = 'prop_fncres_05a' }, - ['1272140286'] = { Name = 'prop_fncres_05b' }, - ['1411643001'] = { Name = 'prop_fncres_05c_l1' }, - ['519370834'] = { Name = 'prop_fncres_05c' }, - ['-531924460'] = { Name = 'prop_fncres_06a' }, - ['1730774994'] = { Name = 'prop_fncres_06b' }, - ['1543721754'] = { Name = 'prop_fncres_06gatel' }, - ['-1258814178'] = { Name = 'prop_fncres_06gater' }, - ['1113832743'] = { Name = 'prop_fncres_07a' }, - ['1351637376'] = { Name = 'prop_fncres_07b' }, - ['950819638'] = { Name = 'prop_fncres_07gate' }, - ['-659178840'] = { Name = 'prop_fncres_08a' }, - ['1875234307'] = { Name = 'prop_fncres_08gatel' }, - ['355284102'] = { Name = 'prop_fncres_09a' }, - ['62686511'] = { Name = 'prop_fncres_09gate' }, - ['1405325415'] = { Name = 'prop_fncsec_01a' }, - ['-958269790'] = { Name = 'prop_fncsec_01b' }, - ['982664653'] = { Name = 'prop_fncsec_01crnr' }, - ['-1442782001'] = { Name = 'prop_fncsec_01gate' }, - ['-1145238320'] = { Name = 'prop_fncsec_01pole' }, - ['1423774102'] = { Name = 'prop_fncsec_02a' }, - ['2004077130'] = { Name = 'prop_fncsec_02pole' }, - ['-288824422'] = { Name = 'prop_fncsec_03a' }, - ['-1669382392'] = { Name = 'prop_fncsec_03b' }, - ['1153503113'] = { Name = 'prop_fncsec_03c' }, - ['1385605940'] = { Name = 'prop_fncsec_03d' }, - ['-1113128273'] = { Name = 'prop_fncsec_04a' }, - ['1977269893'] = { Name = 'prop_fncwood_01_ld' }, - ['1614306905'] = { Name = 'prop_fncwood_01a' }, - ['1912373737'] = { Name = 'prop_fncwood_01b' }, - ['-1547278980'] = { Name = 'prop_fncwood_01c' }, - ['-1965126495'] = { Name = 'prop_fncwood_01gate' }, - ['494529585'] = { Name = 'prop_fncwood_02b' }, - ['174737202'] = { Name = 'prop_fncwood_03a' }, - ['45854657'] = { Name = 'prop_fncwood_04a' }, - ['-1266608755'] = { Name = 'prop_fncwood_06a' }, - ['119454419'] = { Name = 'prop_fncwood_06b' }, - ['-670704490'] = { Name = 'prop_fncwood_06c' }, - ['310596348'] = { Name = 'prop_fncwood_07a' }, - ['-916632445'] = { Name = 'prop_fncwood_07gate1' }, - ['545913053'] = { Name = 'prop_fncwood_08a' }, - ['-365360068'] = { Name = 'prop_fncwood_08b' }, - ['-51629662'] = { Name = 'prop_fncwood_08c' }, - ['1265028758'] = { Name = 'prop_fncwood_08d' }, - ['1560179421'] = { Name = 'prop_fncwood_09a' }, - ['397076535'] = { Name = 'prop_fncwood_09b' }, - ['158026680'] = { Name = 'prop_fncwood_09c' }, - ['-150919444'] = { Name = 'prop_fncwood_09d' }, - ['-100540097'] = { Name = 'prop_fncwood_10b' }, - ['1305807072'] = { Name = 'prop_fncwood_10d' }, - ['-440387398'] = { Name = 'prop_fncwood_11a_l1' }, - ['-958252923'] = { Name = 'prop_fncwood_11a' }, - ['-21026390'] = { Name = 'prop_fncwood_12a' }, - ['-1769679457'] = { Name = 'prop_fncwood_13c' }, - ['321245018'] = { Name = 'prop_fncwood_14a' }, - ['20786057'] = { Name = 'prop_fncwood_14b' }, - ['-253064476'] = { Name = 'prop_fncwood_14c' }, - ['1594648354'] = { Name = 'prop_fncwood_14d' }, - ['1512136012'] = { Name = 'prop_fncwood_14e' }, - ['-1805953701'] = { Name = 'prop_fncwood_15a' }, - ['-1029492242'] = { Name = 'prop_fncwood_15b' }, - ['-1212802028'] = { Name = 'prop_fncwood_15c' }, - ['-997805143'] = { Name = 'prop_fncwood_16a' }, - ['-1243802026'] = { Name = 'prop_fncwood_16b' }, - ['-964053093'] = { Name = 'prop_fncwood_16c' }, - ['-551294769'] = { Name = 'prop_fncwood_16d' }, - ['-790803390'] = { Name = 'prop_fncwood_16e' }, - ['2074059204'] = { Name = 'prop_fncwood_16f' }, - ['1805779401'] = { Name = 'prop_fncwood_16g' }, - ['-1140513222'] = { Name = 'prop_fncwood_17b' }, - ['-1357771692'] = { Name = 'prop_fncwood_17c' }, - ['-1200153162'] = { Name = 'prop_fncwood_18a' }, - ['2028813471'] = { Name = 'prop_fncwood_19_end' }, - ['-1418426619'] = { Name = 'prop_fncwood_19a' }, - ['1937946092'] = { Name = 'prop_folded_polo_shirt' }, - ['-1066172296'] = { Name = 'prop_folder_01' }, - ['-711873868'] = { Name = 'prop_folder_02' }, - ['936464539'] = { Name = 'prop_food_bag1' }, - ['1463127915'] = { Name = 'prop_food_bag2' }, - ['-246439655'] = { Name = 'prop_food_bin_01' }, - ['74073934'] = { Name = 'prop_food_bin_02' }, - ['-1922399062'] = { Name = 'prop_food_bs_bag_01' }, - ['-1690230697'] = { Name = 'prop_food_bs_bag_02' }, - ['-2089652038'] = { Name = 'prop_food_bs_bag_03' }, - ['301501900'] = { Name = 'prop_food_bs_bag_04' }, - ['-660240499'] = { Name = 'prop_food_bs_bshelf' }, - ['2103979129'] = { Name = 'prop_food_bs_burg1' }, - ['759729215'] = { Name = 'prop_food_bs_burg3' }, - ['987331897'] = { Name = 'prop_food_bs_burger2' }, - ['1443311452'] = { Name = 'prop_food_bs_chips' }, - ['128394026'] = { Name = 'prop_food_bs_coffee' }, - ['69797947'] = { Name = 'prop_food_bs_cups01' }, - ['360098518'] = { Name = 'prop_food_bs_cups02' }, - ['666652513'] = { Name = 'prop_food_bs_cups03' }, - ['2127253708'] = { Name = 'prop_food_bs_juice01' }, - ['438929182'] = { Name = 'prop_food_bs_juice02' }, - ['735816322'] = { Name = 'prop_food_bs_juice03' }, - ['-164904344'] = { Name = 'prop_food_bs_soda_01' }, - ['-358765748'] = { Name = 'prop_food_bs_soda_02' }, - ['510552540'] = { Name = 'prop_food_bs_tray_01' }, - ['-2040350273'] = { Name = 'prop_food_bs_tray_02' }, - ['2014649636'] = { Name = 'prop_food_bs_tray_03' }, - ['-1832103274'] = { Name = 'prop_food_bs_tray_06' }, - ['880981550'] = { Name = 'prop_food_burg1' }, - ['-624196927'] = { Name = 'prop_food_burg2' }, - ['420216641'] = { Name = 'prop_food_burg3' }, - ['193377723'] = { Name = 'prop_food_cb_bag_01' }, - ['1447185213'] = { Name = 'prop_food_cb_bag_02' }, - ['-208361166'] = { Name = 'prop_food_cb_bshelf' }, - ['421881790'] = { Name = 'prop_food_cb_burg01' }, - ['308173360'] = { Name = 'prop_food_cb_burg02' }, - ['2029023424'] = { Name = 'prop_food_cb_chips' }, - ['-593980191'] = { Name = 'prop_food_cb_coffee' }, - ['-768271918'] = { Name = 'prop_food_cb_cups01' }, - ['-1621314530'] = { Name = 'prop_food_cb_cups02' }, - ['-1517371262'] = { Name = 'prop_food_cb_cups04' }, - ['-1916043210'] = { Name = 'prop_food_cb_donuts' }, - ['-656006459'] = { Name = 'prop_food_cb_juice01' }, - ['-163947155'] = { Name = 'prop_food_cb_juice02' }, - ['-2092475251'] = { Name = 'prop_food_cb_nugets' }, - ['-912034344'] = { Name = 'prop_food_cb_soda_01' }, - ['-1763798961'] = { Name = 'prop_food_cb_soda_02' }, - ['141145745'] = { Name = 'prop_food_cb_tray_01' }, - ['1388727113'] = { Name = 'prop_food_cb_tray_02' }, - ['754220966'] = { Name = 'prop_food_cb_tray_03' }, - ['-521383735'] = { Name = 'prop_food_chips' }, - ['-1306484245'] = { Name = 'prop_food_coffee' }, - ['1530773952'] = { Name = 'prop_food_cups1' }, - ['2006710908'] = { Name = 'prop_food_cups2' }, - ['1407151828'] = { Name = 'prop_food_juice01' }, - ['-510326207'] = { Name = 'prop_food_juice02' }, - ['1777646892'] = { Name = 'prop_food_ketchup' }, - ['1453189379'] = { Name = 'prop_food_mustard' }, - ['-1317924709'] = { Name = 'prop_food_napkin_01' }, - ['-391348465'] = { Name = 'prop_food_napkin_02' }, - ['-22826474'] = { Name = 'prop_food_sugarjar' }, - ['-446181301'] = { Name = 'prop_food_tray_01' }, - ['-1455204349'] = { Name = 'prop_food_tray_02' }, - ['-1344051901'] = { Name = 'prop_food_tray_03' }, - ['-272361894'] = { Name = 'prop_food_van_01' }, - ['1257426102'] = { Name = 'prop_food_van_02' }, - ['-1415058956'] = { Name = 'prop_foodprocess_01' }, - ['1193854962'] = { Name = 'prop_forsale_dyn_01' }, - ['292248696'] = { Name = 'prop_forsale_dyn_02' }, - ['1916908483'] = { Name = 'prop_forsale_lenny_01' }, - ['1756612226'] = { Name = 'prop_forsale_lrg_01' }, - ['2063723294'] = { Name = 'prop_forsale_lrg_02' }, - ['1295978393'] = { Name = 'prop_forsale_lrg_03' }, - ['1517333028'] = { Name = 'prop_forsale_lrg_04' }, - ['1278610863'] = { Name = 'prop_forsale_lrg_05' }, - ['1979474235'] = { Name = 'prop_forsale_lrg_06' }, - ['1740162228'] = { Name = 'prop_forsale_lrg_07' }, - ['394699857'] = { Name = 'prop_forsale_lrg_08' }, - ['356949969'] = { Name = 'prop_forsale_lrg_09' }, - ['348364163'] = { Name = 'prop_forsale_lrg_10' }, - ['626610300'] = { Name = 'prop_forsale_sign_01' }, - ['-678415125'] = { Name = 'prop_forsale_sign_02' }, - ['44927781'] = { Name = 'prop_forsale_sign_03' }, - ['889089990'] = { Name = 'prop_forsale_sign_04' }, - ['1581302346'] = { Name = 'prop_forsale_sign_05' }, - ['276407997'] = { Name = 'prop_forsale_sign_06' }, - ['-1561146455'] = { Name = 'prop_forsale_sign_07' }, - ['-1054037867'] = { Name = 'prop_forsale_sign_fs' }, - ['1627083076'] = { Name = 'prop_forsale_sign_jb' }, - ['-420425946'] = { Name = 'prop_forsale_tri_01' }, - ['2013260172'] = { Name = 'prop_forsalejr1' }, - ['133695870'] = { Name = 'prop_forsalejr2' }, - ['1542041952'] = { Name = 'prop_forsalejr3' }, - ['1847940567'] = { Name = 'prop_forsalejr4' }, - ['-1146344215'] = { Name = 'prop_foundation_sponge' }, - ['-2049104282'] = { Name = 'prop_fountain1' }, - ['-736410911'] = { Name = 'prop_fountain2' }, - ['500451298'] = { Name = 'prop_fragtest_cnst_01' }, - ['-163907412'] = { Name = 'prop_fragtest_cnst_02' }, - ['-939910101'] = { Name = 'prop_fragtest_cnst_03' }, - ['310817095'] = { Name = 'prop_fragtest_cnst_04' }, - ['-459352716'] = { Name = 'prop_fragtest_cnst_05' }, - ['2054127895'] = { Name = 'prop_fragtest_cnst_06' }, - ['-1014310545'] = { Name = 'prop_fragtest_cnst_06b' }, - ['-1892636007'] = { Name = 'prop_fragtest_cnst_07' }, - ['-655507950'] = { Name = 'prop_fragtest_cnst_08' }, - ['-1263978120'] = { Name = 'prop_fragtest_cnst_08b' }, - ['891468385'] = { Name = 'prop_fragtest_cnst_08c' }, - ['-1383667899'] = { Name = 'prop_fragtest_cnst_09' }, - ['-552825026'] = { Name = 'prop_fragtest_cnst_09b' }, - ['143302823'] = { Name = 'prop_fragtest_cnst_10' }, - ['-104070358'] = { Name = 'prop_fragtest_cnst_11' }, - ['251142457'] = { Name = 'prop_franklin_dl' }, - ['-540000270'] = { Name = 'prop_freeweight_01' }, - ['-309142665'] = { Name = 'prop_freeweight_02' }, - ['-41273338'] = { Name = 'prop_fridge_01' }, - ['1876827312'] = { Name = 'prop_fridge_03' }, - ['1970182901'] = { Name = 'prop_front_seat_01' }, - ['-2035794584'] = { Name = 'prop_front_seat_02' }, - ['-1713871928'] = { Name = 'prop_front_seat_03' }, - ['-1423243667'] = { Name = 'prop_front_seat_04' }, - ['764611387'] = { Name = 'prop_front_seat_05' }, - ['1070641078'] = { Name = 'prop_front_seat_06' }, - ['1376179234'] = { Name = 'prop_front_seat_07' }, - ['960293494'] = { Name = 'prop_front_seat_row_01' }, - ['-1204812477'] = { Name = 'prop_fruit_basket' }, - ['-1673688289'] = { Name = 'prop_fruit_plas_crate_01' }, - ['-2007742866'] = { Name = 'prop_fruit_sign_01' }, - ['-1381786722'] = { Name = 'prop_fruit_stand_01' }, - ['-1016215758'] = { Name = 'prop_fruit_stand_02' }, - ['-689705442'] = { Name = 'prop_fruit_stand_03' }, - ['-1655478122'] = { Name = 'prop_fruitstand_01' }, - ['-2133104859'] = { Name = 'prop_fruitstand_b_nite' }, - ['858993389'] = { Name = 'prop_fruitstand_b' }, - ['1136462066'] = { Name = 'prop_ftowel_01' }, - ['-388312273'] = { Name = 'prop_ftowel_07' }, - ['-1153697806'] = { Name = 'prop_ftowel_08' }, - ['797243150'] = { Name = 'prop_ftowel_10' }, - ['1488589320'] = { Name = 'prop_funfair_zoltan' }, - ['393296697'] = { Name = 'prop_gaffer_arm_bind_cut' }, - ['2084404420'] = { Name = 'prop_gaffer_arm_bind' }, - ['465122537'] = { Name = 'prop_gaffer_leg_bind_cut' }, - ['-618339469'] = { Name = 'prop_gaffer_leg_bind' }, - ['419222340'] = { Name = 'prop_gaffer_tape_strip' }, - ['-1179532563'] = { Name = 'prop_gaffer_tape' }, - ['-1004588353'] = { Name = 'prop_game_clock_01' }, - ['-349306656'] = { Name = 'prop_game_clock_02' }, - ['-1652821467'] = { Name = 'prop_gar_door_01' }, - ['1013329911'] = { Name = 'prop_gar_door_02' }, - ['-1223237597'] = { Name = 'prop_gar_door_03_ld' }, - ['-1212275031'] = { Name = 'prop_gar_door_03' }, - ['-982531572'] = { Name = 'prop_gar_door_04' }, - ['-910962270'] = { Name = 'prop_gar_door_05_l' }, - ['1946625558'] = { Name = 'prop_gar_door_05_r' }, - ['-728539053'] = { Name = 'prop_gar_door_05' }, - ['2051508718'] = { Name = 'prop_gar_door_a_01' }, - ['239492112'] = { Name = 'prop_gar_door_plug' }, - ['1181558204'] = { Name = 'prop_garden_chimes_01' }, - ['1929765107'] = { Name = 'prop_garden_dreamcatch_01' }, - ['-1405103747'] = { Name = 'prop_garden_edging_01' }, - ['1874876539'] = { Name = 'prop_garden_edging_02' }, - ['-1831680671'] = { Name = 'prop_garden_zapper_01' }, - ['2004141829'] = { Name = 'prop_gardnght_01' }, - ['-1730917948'] = { Name = 'prop_gas_01' }, - ['-478519537'] = { Name = 'prop_gas_02' }, - ['1973650275'] = { Name = 'prop_gas_03' }, - ['1304671132'] = { Name = 'prop_gas_04' }, - ['1602967339'] = { Name = 'prop_gas_05' }, - ['-132092731'] = { Name = 'prop_gas_airunit01' }, - ['-1472203944'] = { Name = 'prop_gas_binunit01' }, - ['-1936212109'] = { Name = 'prop_gas_grenade' }, - ['-2025105036'] = { Name = 'prop_gas_mask_hang_01' }, - ['1470731681'] = { Name = 'prop_gas_mask_hang_01bb' }, - ['1339433404'] = { Name = 'prop_gas_pump_1a' }, - ['1694452750'] = { Name = 'prop_gas_pump_1b' }, - ['1933174915'] = { Name = 'prop_gas_pump_1c' }, - ['-2007231801'] = { Name = 'prop_gas_pump_1d' }, - ['-469694731'] = { Name = 'prop_gas_pump_old2' }, - ['-164877493'] = { Name = 'prop_gas_pump_old3' }, - ['310783660'] = { Name = 'prop_gas_rack01' }, - ['865150065'] = { Name = 'prop_gas_smallbin01' }, - ['-2129526670'] = { Name = 'prop_gas_tank_01a' }, - ['-46303329'] = { Name = 'prop_gas_tank_02a' }, - ['-353447166'] = { Name = 'prop_gas_tank_02b' }, - ['-9837968'] = { Name = 'prop_gas_tank_04a' }, - ['-1348598835'] = { Name = 'prop_gascage01' }, - ['1270590574'] = { Name = 'prop_gascyl_01a' }, - ['2138646444'] = { Name = 'prop_gascyl_02a' }, - ['-672016228'] = { Name = 'prop_gascyl_02b' }, - ['-1918614878'] = { Name = 'prop_gascyl_03a' }, - ['1257553220'] = { Name = 'prop_gascyl_03b' }, - ['-1029296059'] = { Name = 'prop_gascyl_04a' }, - ['1962660298'] = { Name = 'prop_gascyl_ramp_01' }, - ['920306374'] = { Name = 'prop_gascyl_ramp_door_01' }, - ['725274945'] = { Name = 'prop_gate_airport_01' }, - ['-1934898817'] = { Name = 'prop_gate_bridge_ld' }, - ['-13153749'] = { Name = 'prop_gate_cult_01_l' }, - ['-1578791031'] = { Name = 'prop_gate_cult_01_r' }, - ['1286392437'] = { Name = 'prop_gate_docks_ld' }, - ['1911284463'] = { Name = 'prop_gate_farm_01a' }, - ['1733865899'] = { Name = 'prop_gate_farm_03' }, - ['-696575513'] = { Name = 'prop_gate_farm_post' }, - ['-588124891'] = { Name = 'prop_gate_frame_01' }, - ['-885831256'] = { Name = 'prop_gate_frame_02' }, - ['-1692014194'] = { Name = 'prop_gate_frame_04' }, - ['-1050528246'] = { Name = 'prop_gate_frame_05' }, - ['-1348431225'] = { Name = 'prop_gate_frame_06' }, - ['1185512375'] = { Name = 'prop_gate_military_01' }, - ['741314661'] = { Name = 'prop_gate_prison_01' }, - ['-1049302886'] = { Name = 'prop_gate_tep_01_l' }, - ['1653418708'] = { Name = 'prop_gate_tep_01_r' }, - ['613608955'] = { Name = 'prop_gatecom_01' }, - ['-238286738'] = { Name = 'prop_gatecom_02' }, - ['1845903456'] = { Name = 'prop_gazebo_01' }, - ['468818960'] = { Name = 'prop_gazebo_02' }, - ['1186722212'] = { Name = 'prop_gazebo_03' }, - ['558578166'] = { Name = 'prop_gc_chair02' }, - ['-915091986'] = { Name = 'prop_gd_ch2_08' }, - ['-415509317'] = { Name = 'prop_generator_01a' }, - ['-1775229459'] = { Name = 'prop_generator_02a' }, - ['136645433'] = { Name = 'prop_generator_03a' }, - ['-57215983'] = { Name = 'prop_generator_03b' }, - ['-1001828301'] = { Name = 'prop_generator_04' }, - ['1433530172'] = { Name = 'prop_ghettoblast_01' }, - ['1060029110'] = { Name = 'prop_ghettoblast_02' }, - ['2096990081'] = { Name = 'prop_girder_01a' }, - ['1723816705'] = { Name = 'prop_girder_01b' }, - ['209943352'] = { Name = 'prop_glass_panel_01' }, - ['-636152228'] = { Name = 'prop_glass_panel_02' }, - ['-439931456'] = { Name = 'prop_glass_panel_03' }, - ['-1282324139'] = { Name = 'prop_glass_panel_04' }, - ['825312403'] = { Name = 'prop_glass_panel_05' }, - ['1064231182'] = { Name = 'prop_glass_panel_06' }, - ['781107022'] = { Name = 'prop_glass_panel_07' }, - ['677473294'] = { Name = 'prop_glass_stack_01' }, - ['-2065226472'] = { Name = 'prop_glass_stack_02' }, - ['-542975346'] = { Name = 'prop_glass_stack_03' }, - ['-242975151'] = { Name = 'prop_glass_stack_04' }, - ['-1136258091'] = { Name = 'prop_glass_stack_05' }, - ['1004245762'] = { Name = 'prop_glass_stack_06' }, - ['1311389599'] = { Name = 'prop_glass_stack_07' }, - ['-1466766225'] = { Name = 'prop_glass_stack_08' }, - ['1923645595'] = { Name = 'prop_glass_stack_09' }, - ['-1842692417'] = { Name = 'prop_glass_stack_10' }, - ['-279982155'] = { Name = 'prop_glass_suck_holder' }, - ['1731206726'] = { Name = 'prop_glasscutter_01' }, - ['-2012285464'] = { Name = 'prop_glf_roller' }, - ['884216853'] = { Name = 'prop_glf_spreader' }, - ['809669486'] = { Name = 'prop_gnome1' }, - ['1301925404'] = { Name = 'prop_gnome2' }, - ['-11849332'] = { Name = 'prop_gnome3' }, - ['-475521732'] = { Name = 'prop_goal_posts_01' }, - ['-263787977'] = { Name = 'prop_gold_bar' }, - ['959275690'] = { Name = 'prop_gold_cont_01' }, - ['1396140175'] = { Name = 'prop_gold_cont_01b' }, - ['-1363719163'] = { Name = 'prop_gold_trolly_full' }, - ['1098812088'] = { Name = 'prop_gold_trolly_strap_01' }, - ['-1326042488'] = { Name = 'prop_gold_trolly' }, - ['-463637955'] = { Name = 'prop_gold_vault_fence_l' }, - ['1450792563'] = { Name = 'prop_gold_vault_fence_r' }, - ['-275220570'] = { Name = 'prop_gold_vault_gate_01' }, - ['886428669'] = { Name = 'prop_golf_bag_01' }, - ['-344128923'] = { Name = 'prop_golf_bag_01b' }, - ['-37837080'] = { Name = 'prop_golf_bag_01c' }, - ['1616526761'] = { Name = 'prop_golf_ball_p2' }, - ['-717871261'] = { Name = 'prop_golf_ball_p3' }, - ['-980219875'] = { Name = 'prop_golf_ball_p4' }, - ['-1243214768'] = { Name = 'prop_golf_ball_tee' }, - ['-1358020705'] = { Name = 'prop_golf_ball' }, - ['-2141023172'] = { Name = 'prop_golf_driver' }, - ['334347537'] = { Name = 'prop_golf_iron_01' }, - ['-1124612472'] = { Name = 'prop_golf_marker_01' }, - ['1933637837'] = { Name = 'prop_golf_pitcher_01' }, - ['1750479612'] = { Name = 'prop_golf_putter_01' }, - ['-1315457772'] = { Name = 'prop_golf_tee' }, - ['1705580940'] = { Name = 'prop_golf_wood_01' }, - ['-1939813147'] = { Name = 'prop_golfflag' }, - ['1487505949'] = { Name = 'prop_grain_hopper' }, - ['1104521776'] = { Name = 'prop_grapes_01' }, - ['753041482'] = { Name = 'prop_grapes_02' }, - ['1590120139'] = { Name = 'prop_grapeseed_sign_01' }, - ['-2130406583'] = { Name = 'prop_grapeseed_sign_02' }, - ['-440885967'] = { Name = 'prop_grass_001_a' }, - ['1481697203'] = { Name = 'prop_grass_ca' }, - ['1793920587'] = { Name = 'prop_grass_da' }, - ['987584502'] = { Name = 'prop_grass_dry_02' }, - ['1221915621'] = { Name = 'prop_grass_dry_03' }, - ['-547750016'] = { Name = 'prop_gravestones_01a' }, - ['1735136050'] = { Name = 'prop_gravestones_02a' }, - ['1996337525'] = { Name = 'prop_gravestones_03a' }, - ['-1734058762'] = { Name = 'prop_gravestones_04a' }, - ['-1551797828'] = { Name = 'prop_gravestones_05a' }, - ['106473525'] = { Name = 'prop_gravestones_06a' }, - ['828538216'] = { Name = 'prop_gravestones_07a' }, - ['-1217653243'] = { Name = 'prop_gravestones_08a' }, - ['-1117413116'] = { Name = 'prop_gravestones_09a' }, - ['806109679'] = { Name = 'prop_gravestones_10a' }, - ['1801452061'] = { Name = 'prop_gravetomb_01a' }, - ['879398291'] = { Name = 'prop_gravetomb_02a' }, - ['2050228397'] = { Name = 'prop_griddle_01' }, - ['-1876087649'] = { Name = 'prop_griddle_02' }, - ['1888438146'] = { Name = 'prop_grumandoor_l' }, - ['272205552'] = { Name = 'prop_grumandoor_r' }, - ['-1567395276'] = { Name = 'prop_gshotsensor_01' }, - ['454331217'] = { Name = 'prop_guard_tower_glass' }, - ['1243022785'] = { Name = 'prop_gumball_01' }, - ['462203053'] = { Name = 'prop_gumball_02' }, - ['785076010'] = { Name = 'prop_gumball_03' }, - ['-1821585180'] = { Name = 'prop_gun_case_01' }, - ['-1590104964'] = { Name = 'prop_gun_case_02' }, - ['132273106'] = { Name = 'prop_gun_frame' }, - ['-177773532'] = { Name = 'prop_hacky_sack_01' }, - ['2133050471'] = { Name = 'prop_hand_toilet' }, - ['1022326434'] = { Name = 'prop_handdry_01' }, - ['792353592'] = { Name = 'prop_handdry_02' }, - ['-447055518'] = { Name = 'prop_handrake' }, - ['1011723317'] = { Name = 'prop_handtowels' }, - ['-1992828732'] = { Name = 'prop_hanger_door_1' }, - ['-537490919'] = { Name = 'prop_hard_hat_01' }, - ['1841479543'] = { Name = 'prop_hat_box_01' }, - ['1064067787'] = { Name = 'prop_hat_box_02' }, - ['-2022214944'] = { Name = 'prop_hat_box_03' }, - ['1497011815'] = { Name = 'prop_hat_box_04' }, - ['-1563678327'] = { Name = 'prop_hat_box_05' }, - ['1955876122'] = { Name = 'prop_hat_box_06' }, - ['1731900299'] = { Name = 'prop_hayb_st_01_cr' }, - ['-213622973'] = { Name = 'prop_haybailer_01' }, - ['533342826'] = { Name = 'prop_haybale_01' }, - ['1700312454'] = { Name = 'prop_haybale_02' }, - ['1395331371'] = { Name = 'prop_haybale_03' }, - ['1976202024'] = { Name = 'prop_haybale_stack_01' }, - ['173430006'] = { Name = 'prop_hd_seats_01' }, - ['960152042'] = { Name = 'prop_headphones_01' }, - ['-409048857'] = { Name = 'prop_headset_01' }, - ['1632396221'] = { Name = 'prop_hedge_trimmer_01' }, - ['-505101878'] = { Name = 'prop_helipad_01' }, - ['1487220553'] = { Name = 'prop_helipad_02' }, - ['659046336'] = { Name = 'prop_henna_disp_01' }, - ['-1568983512'] = { Name = 'prop_henna_disp_02' }, - ['-1865248041'] = { Name = 'prop_henna_disp_03' }, - ['-1380152605'] = { Name = 'prop_hifi_01' }, - ['1866775124'] = { Name = 'prop_highway_paddle' }, - ['1019962318'] = { Name = 'prop_hobo_seat_01' }, - ['690464963'] = { Name = 'prop_hobo_stove_01' }, - ['1517156714'] = { Name = 'prop_hockey_bag_01' }, - ['-1735747416'] = { Name = 'prop_hole_plug_01' }, - ['-1169577885'] = { Name = 'prop_holster_01' }, - ['1578055800'] = { Name = 'prop_homeles_shelter_01' }, - ['884467146'] = { Name = 'prop_homeles_shelter_02' }, - ['810220961'] = { Name = 'prop_homeless_matress_01' }, - ['-242909161'] = { Name = 'prop_homeless_matress_02' }, - ['309119026'] = { Name = 'prop_horo_box_01' }, - ['624061885'] = { Name = 'prop_horo_box_02' }, - ['-23080404'] = { Name = 'prop_hose_1' }, - ['-1306773210'] = { Name = 'prop_hose_2' }, - ['862960591'] = { Name = 'prop_hose_3' }, - ['329068831'] = { Name = 'prop_hose_nozzle' }, - ['711901167'] = { Name = 'prop_hospital_door_l' }, - ['-227061755'] = { Name = 'prop_hospital_door_r' }, - ['1316648054'] = { Name = 'prop_hospitaldoors_start' }, - ['926831074'] = { Name = 'prop_hot_tub_coverd' }, - ['-1581502570'] = { Name = 'prop_hotdogstand_01' }, - ['495599970'] = { Name = 'prop_hotel_clock_01' }, - ['-1793698597'] = { Name = 'prop_hotel_trolley' }, - ['2142042627'] = { Name = 'prop_hottub2' }, - ['-85281267'] = { Name = 'prop_huf_rag_01' }, - ['-984871726'] = { Name = 'prop_huge_display_01' }, - ['-752703361'] = { Name = 'prop_huge_display_02' }, - ['451150746'] = { Name = 'prop_hunterhide' }, - ['1991494706'] = { Name = 'prop_hw1_03_gardoor_01' }, - ['-1463743939'] = { Name = 'prop_hw1_04_door_l1' }, - ['-1429437264'] = { Name = 'prop_hw1_04_door_r1' }, - ['-1677789234'] = { Name = 'prop_hw1_23_door' }, - ['-539645279'] = { Name = 'prop_hwbowl_pseat_6x1' }, - ['1726530640'] = { Name = 'prop_hwbowl_seat_01' }, - ['1438851589'] = { Name = 'prop_hwbowl_seat_02' }, - ['1269566935'] = { Name = 'prop_hwbowl_seat_03' }, - ['189672896'] = { Name = 'prop_hwbowl_seat_03b' }, - ['870777956'] = { Name = 'prop_hwbowl_seat_6x6' }, - ['105539200'] = { Name = 'prop_hydro_platform_01' }, - ['686266275'] = { Name = 'prop_ice_box_01_l1' }, - ['923172859'] = { Name = 'prop_ice_box_01' }, - ['-536963642'] = { Name = 'prop_ice_cube_01' }, - ['1253272370'] = { Name = 'prop_ice_cube_02' }, - ['962709647'] = { Name = 'prop_ice_cube_03' }, - ['889818406'] = { Name = 'prop_id_21_gardoor_01' }, - ['2120130511'] = { Name = 'prop_id_21_gardoor_02' }, - ['270330101'] = { Name = 'prop_id2_11_gdoor' }, - ['1336644224'] = { Name = 'prop_id2_20_clock' }, - ['-1016291832'] = { Name = 'prop_idol_01_error' }, - ['1972583435'] = { Name = 'prop_idol_01' }, - ['319657375'] = { Name = 'prop_idol_case_01' }, - ['-36934887'] = { Name = 'prop_idol_case_02' }, - ['-128067231'] = { Name = 'prop_idol_case' }, - ['430616003'] = { Name = 'prop_in_tray_01' }, - ['487569140'] = { Name = 'prop_ind_barge_01_cr' }, - ['-993863934'] = { Name = 'prop_ind_barge_01' }, - ['-678364002'] = { Name = 'prop_ind_barge_02' }, - ['-1912798749'] = { Name = 'prop_ind_coalcar_01' }, - ['-1630952580'] = { Name = 'prop_ind_coalcar_02' }, - ['206536334'] = { Name = 'prop_ind_coalcar_03' }, - ['-1604772893'] = { Name = 'prop_ind_conveyor_01' }, - ['-1383057839'] = { Name = 'prop_ind_conveyor_02' }, - ['2107037279'] = { Name = 'prop_ind_conveyor_04' }, - ['-84563444'] = { Name = 'prop_ind_crusher' }, - ['1519880608'] = { Name = 'prop_ind_deiseltank' }, - ['1777231328'] = { Name = 'prop_ind_light_01a' }, - ['-303862328'] = { Name = 'prop_ind_light_01b' }, - ['-539274824'] = { Name = 'prop_ind_light_01c' }, - ['273101167'] = { Name = 'prop_ind_light_02a' }, - ['-805588751'] = { Name = 'prop_ind_light_02b' }, - ['-306910109'] = { Name = 'prop_ind_light_02c' }, - ['1393636838'] = { Name = 'prop_ind_light_03a' }, - ['-753093121'] = { Name = 'prop_ind_light_03b' }, - ['-1059778192'] = { Name = 'prop_ind_light_03c' }, - ['-1401479836'] = { Name = 'prop_ind_light_04' }, - ['-1161709063'] = { Name = 'prop_ind_light_05' }, - ['-456055176'] = { Name = 'prop_ind_mech_01c' }, - ['1776894270'] = { Name = 'prop_ind_mech_02a' }, - ['2142465234'] = { Name = 'prop_ind_mech_02b' }, - ['1960859144'] = { Name = 'prop_ind_mech_03a' }, - ['1800683984'] = { Name = 'prop_ind_mech_04a' }, - ['-899728244'] = { Name = 'prop_ind_oldcrane' }, - ['-1047752402'] = { Name = 'prop_ind_pipe_01' }, - ['905405774'] = { Name = 'prop_ind_washer_02' }, - ['838685283'] = { Name = 'prop_indus_meet_door_l' }, - ['-1020431159'] = { Name = 'prop_indus_meet_door_r' }, - ['-1750759319'] = { Name = 'prop_inflatearch_01' }, - ['350476011'] = { Name = 'prop_inflategate_01' }, - ['-1286783315'] = { Name = 'prop_ing_camera_01' }, - ['495450405'] = { Name = 'prop_ing_crowbar' }, - ['538293533'] = { Name = 'prop_inhaler_01' }, - ['-2137905671'] = { Name = 'prop_inout_tray_01' }, - ['-601924246'] = { Name = 'prop_inout_tray_02' }, - ['334531408'] = { Name = 'prop_int_cf_chick_01' }, - ['-931728298'] = { Name = 'prop_int_cf_chick_02' }, - ['-1205447755'] = { Name = 'prop_int_cf_chick_03' }, - ['1856037649'] = { Name = 'prop_int_gate01' }, - ['1754291799'] = { Name = 'prop_irish_sign_01' }, - ['1772380287'] = { Name = 'prop_irish_sign_02' }, - ['1005159690'] = { Name = 'prop_irish_sign_03' }, - ['1293363045'] = { Name = 'prop_irish_sign_04' }, - ['534039777'] = { Name = 'prop_irish_sign_05' }, - ['202089803'] = { Name = 'prop_irish_sign_06' }, - ['-555267329'] = { Name = 'prop_irish_sign_07' }, - ['-275256224'] = { Name = 'prop_irish_sign_08' }, - ['-765939230'] = { Name = 'prop_irish_sign_09' }, - ['59737791'] = { Name = 'prop_irish_sign_10' }, - ['-325625649'] = { Name = 'prop_irish_sign_11' }, - ['-565396422'] = { Name = 'prop_irish_sign_12' }, - ['-907308168'] = { Name = 'prop_irish_sign_13' }, - ['-249304586'] = { Name = 'prop_iron_01' }, - ['-317499403'] = { Name = 'prop_j_disptray_01_dam' }, - ['854404762'] = { Name = 'prop_j_disptray_01' }, - ['1373326460'] = { Name = 'prop_j_disptray_01b' }, - ['817210985'] = { Name = 'prop_j_disptray_02_dam' }, - ['-1345673133'] = { Name = 'prop_j_disptray_02' }, - ['2116459863'] = { Name = 'prop_j_disptray_03_dam' }, - ['375485823'] = { Name = 'prop_j_disptray_03' }, - ['120772386'] = { Name = 'prop_j_disptray_04' }, - ['-934392140'] = { Name = 'prop_j_disptray_04b' }, - ['-176933979'] = { Name = 'prop_j_disptray_05' }, - ['-1833835356'] = { Name = 'prop_j_disptray_05b' }, - ['1451839726'] = { Name = 'prop_j_heist_pic_01' }, - ['-1112072400'] = { Name = 'prop_j_heist_pic_02' }, - ['-396266364'] = { Name = 'prop_j_heist_pic_03' }, - ['-650848725'] = { Name = 'prop_j_heist_pic_04' }, - ['119825807'] = { Name = 'prop_j_neck_disp_01' }, - ['-74035597'] = { Name = 'prop_j_neck_disp_02' }, - ['-359093128'] = { Name = 'prop_j_neck_disp_03' }, - ['1928679056'] = { Name = 'prop_jb700_covered' }, - ['517117079'] = { Name = 'prop_jeans_01' }, - ['786272259'] = { Name = 'prop_jerrycan_01a' }, - ['-1281648158'] = { Name = 'prop_jet_bloodsplat_01' }, - ['-1081534242'] = { Name = 'prop_jetski_ramp_01' }, - ['1083683517'] = { Name = 'prop_jetski_trailer_01' }, - ['-46504303'] = { Name = 'prop_jewel_02a' }, - ['-352927222'] = { Name = 'prop_jewel_02b' }, - ['-569858002'] = { Name = 'prop_jewel_02c' }, - ['-1407761612'] = { Name = 'prop_jewel_03a' }, - ['-908427590'] = { Name = 'prop_jewel_03b' }, - ['-1386034965'] = { Name = 'prop_jewel_04a' }, - ['-1147673259'] = { Name = 'prop_jewel_04b' }, - ['-304401110'] = { Name = 'prop_jewel_glass_root' }, - ['1982992541'] = { Name = 'prop_jewel_glass' }, - ['-2052363316'] = { Name = 'prop_jewel_pickup_new_01' }, - ['1052756483'] = { Name = 'prop_joshua_tree_01a' }, - ['-2010456872'] = { Name = 'prop_joshua_tree_01b' }, - ['-1838026394'] = { Name = 'prop_joshua_tree_01c' }, - ['727229237'] = { Name = 'prop_joshua_tree_01d' }, - ['99244117'] = { Name = 'prop_joshua_tree_01e' }, - ['337638300'] = { Name = 'prop_joshua_tree_02a' }, - ['-1060680468'] = { Name = 'prop_joshua_tree_02b' }, - ['1863264633'] = { Name = 'prop_joshua_tree_02c' }, - ['-1659075177'] = { Name = 'prop_joshua_tree_02d' }, - ['-848665038'] = { Name = 'prop_joshua_tree_02e' }, - ['-1369928609'] = { Name = 'prop_juice_dispenser' }, - ['-369673841'] = { Name = 'prop_juice_pool_01' }, - ['148511758'] = { Name = 'prop_juicestand' }, - ['1049684170'] = { Name = 'prop_jukebox_01' }, - ['1945457558'] = { Name = 'prop_jukebox_02' }, - ['-560584347'] = { Name = 'prop_jyard_block_01a' }, - ['-507412625'] = { Name = 'prop_kayak_01' }, - ['-1671588654'] = { Name = 'prop_kayak_01b' }, - ['354187183'] = { Name = 'prop_kebab_grill' }, - ['1265521483'] = { Name = 'prop_keg_01' }, - ['1862437453'] = { Name = 'prop_kettle_01' }, - ['1173831889'] = { Name = 'prop_kettle' }, - ['-954257764'] = { Name = 'prop_keyboard_01a' }, - ['-69396461'] = { Name = 'prop_keyboard_01b' }, - ['-1666213193'] = { Name = 'prop_kino_light_01' }, - ['1792816905'] = { Name = 'prop_kino_light_02' }, - ['2035667964'] = { Name = 'prop_kino_light_03' }, - ['1859812803'] = { Name = 'prop_kitch_juicer' }, - ['260566774'] = { Name = 'prop_kitch_pot_fry' }, - ['-1030226139'] = { Name = 'prop_kitch_pot_huge' }, - ['-920794651'] = { Name = 'prop_kitch_pot_lrg' }, - ['-1591250544'] = { Name = 'prop_kitch_pot_lrg2' }, - ['-854388316'] = { Name = 'prop_kitch_pot_med' }, - ['-718917135'] = { Name = 'prop_kitch_pot_sm' }, - ['-729631922'] = { Name = 'prop_knife_stand' }, - ['436978267'] = { Name = 'prop_knife' }, - ['-1447681559'] = { Name = 'prop_kt1_06_door_l' }, - ['1543931499'] = { Name = 'prop_kt1_06_door_r' }, - ['1701450624'] = { Name = 'prop_kt1_10_mpdoor_l' }, - ['340291898'] = { Name = 'prop_kt1_10_mpdoor_r' }, - ['483841708'] = { Name = 'prop_ladel' }, - ['1385417869'] = { Name = 'prop_laptop_01a' }, - ['-1159050800'] = { Name = 'prop_laptop_02_closed' }, - ['363555755'] = { Name = 'prop_laptop_jimmy' }, - ['881450200'] = { Name = 'prop_laptop_lester' }, - ['-1769322543'] = { Name = 'prop_laptop_lester2' }, - ['-1802035584'] = { Name = 'prop_large_gold_alt_a' }, - ['1240336683'] = { Name = 'prop_large_gold_alt_b' }, - ['-1324034181'] = { Name = 'prop_large_gold_alt_c' }, - ['-1479600188'] = { Name = 'prop_large_gold_empty' }, - ['1483319544'] = { Name = 'prop_large_gold' }, - ['447976993'] = { Name = 'prop_lawnmower_01' }, - ['-1637875765'] = { Name = 'prop_ld_alarm_01_dam' }, - ['1378673294'] = { Name = 'prop_ld_alarm_01' }, - ['-1062200609'] = { Name = 'prop_ld_alarm_alert' }, - ['190687980'] = { Name = 'prop_ld_ammo_pack_01' }, - ['1560006187'] = { Name = 'prop_ld_ammo_pack_02' }, - ['669213687'] = { Name = 'prop_ld_ammo_pack_03' }, - ['-1806890273'] = { Name = 'prop_ld_armour' }, - ['295541576'] = { Name = 'prop_ld_balastrude' }, - ['-980870186'] = { Name = 'prop_ld_balcfnc_01a' }, - ['-1979013930'] = { Name = 'prop_ld_balcfnc_01b' }, - ['-1053157648'] = { Name = 'prop_ld_balcfnc_02a' }, - ['-1926582578'] = { Name = 'prop_ld_balcfnc_02b' }, - ['-611923063'] = { Name = 'prop_ld_balcfnc_02c' }, - ['-1425083786'] = { Name = 'prop_ld_balcfnc_03a' }, - ['-2117361680'] = { Name = 'prop_ld_balcfnc_03b' }, - ['-434396696'] = { Name = 'prop_ld_bale01' }, - ['-1743257725'] = { Name = 'prop_ld_bankdoors_01' }, - ['-2041685008'] = { Name = 'prop_ld_bankdoors_02' }, - ['54588191'] = { Name = 'prop_ld_barrier_01' }, - ['1916676832'] = { Name = 'prop_ld_bench01' }, - ['-935625561'] = { Name = 'prop_ld_binbag_01' }, - ['-1466745439'] = { Name = 'prop_ld_bomb_01_open' }, - ['-1306048251'] = { Name = 'prop_ld_bomb_01' }, - ['1771868096'] = { Name = 'prop_ld_bomb_anim' }, - ['929047740'] = { Name = 'prop_ld_bomb' }, - ['-89848631'] = { Name = 'prop_ld_breakmast' }, - ['-963499920'] = { Name = 'prop_ld_cable_tie_01' }, - ['-423939669'] = { Name = 'prop_ld_cable' }, - ['-1153271191'] = { Name = 'prop_ld_can_01' }, - ['114933932'] = { Name = 'prop_ld_can_01b' }, - ['1338392374'] = { Name = 'prop_ld_case_01_lod' }, - ['248872646'] = { Name = 'prop_ld_case_01_s' }, - ['880595258'] = { Name = 'prop_ld_case_01' }, - ['1197489041'] = { Name = 'prop_ld_cont_light_01' }, - ['1214755619'] = { Name = 'prop_ld_contact_card' }, - ['-1376085798'] = { Name = 'prop_ld_contain_dl' }, - ['211871682'] = { Name = 'prop_ld_contain_dl2' }, - ['-2125774984'] = { Name = 'prop_ld_contain_dr' }, - ['-825889959'] = { Name = 'prop_ld_contain_dr2' }, - ['-469102706'] = { Name = 'prop_ld_container' }, - ['-1787668082'] = { Name = 'prop_ld_crate_01' }, - ['-1913949042'] = { Name = 'prop_ld_crate_lid_01' }, - ['542041270'] = { Name = 'prop_ld_crocclips01' }, - ['260653867'] = { Name = 'prop_ld_crocclips02' }, - ['1215053148'] = { Name = 'prop_ld_dstcover_01' }, - ['-1123867000'] = { Name = 'prop_ld_dstcover_02' }, - ['1405006221'] = { Name = 'prop_ld_dstpillar_01' }, - ['1192859715'] = { Name = 'prop_ld_dstpillar_02' }, - ['2037611766'] = { Name = 'prop_ld_dstpillar_03' }, - ['189702314'] = { Name = 'prop_ld_dstpillar_04' }, - ['-49478617'] = { Name = 'prop_ld_dstpillar_05' }, - ['180592504'] = { Name = 'prop_ld_dstpillar_06' }, - ['419576821'] = { Name = 'prop_ld_dstpillar_07' }, - ['638277127'] = { Name = 'prop_ld_dstpillar_08' }, - ['-544464940'] = { Name = 'prop_ld_dstplanter_01' }, - ['316900990'] = { Name = 'prop_ld_dstplanter_02' }, - ['924295337'] = { Name = 'prop_ld_dstsign_01' }, - ['-360336526'] = { Name = 'prop_ld_dummy_rope' }, - ['-596948790'] = { Name = 'prop_ld_fags_01' }, - ['-245402958'] = { Name = 'prop_ld_fags_02' }, - ['-1737154494'] = { Name = 'prop_ld_fan_01_old' }, - ['-1768401357'] = { Name = 'prop_ld_fan_01' }, - ['-1869605644'] = { Name = 'prop_ld_farm_chair01' }, - ['-527772679'] = { Name = 'prop_ld_farm_cnr01' }, - ['544186037'] = { Name = 'prop_ld_farm_couch01' }, - ['773405192'] = { Name = 'prop_ld_farm_couch02' }, - ['1891144592'] = { Name = 'prop_ld_farm_rail01' }, - ['973800157'] = { Name = 'prop_ld_farm_table01' }, - ['1272292978'] = { Name = 'prop_ld_farm_table02' }, - ['-1001341595'] = { Name = 'prop_ld_faucet' }, - ['-1003748966'] = { Name = 'prop_ld_ferris_wheel' }, - ['466974385'] = { Name = 'prop_ld_fib_pillar01' }, - ['-1589780889'] = { Name = 'prop_ld_filmset' }, - ['2133533553'] = { Name = 'prop_ld_fireaxe' }, - ['746336278'] = { Name = 'prop_ld_flow_bottle' }, - ['-818999775'] = { Name = 'prop_ld_fragwall_01a' }, - ['-1116116298'] = { Name = 'prop_ld_fragwall_01b' }, - ['30769481'] = { Name = 'prop_ld_garaged_01' }, - ['1489572967'] = { Name = 'prop_ld_gold_chest' }, - ['-1189971267'] = { Name = 'prop_ld_gold_tooth' }, - ['909721256'] = { Name = 'prop_ld_greenscreen_01' }, - ['-619058125'] = { Name = 'prop_ld_handbag_s' }, - ['-1950370778'] = { Name = 'prop_ld_handbag' }, - ['-1929385697'] = { Name = 'prop_ld_hat_01' }, - ['1410413102'] = { Name = 'prop_ld_haybail' }, - ['329627681'] = { Name = 'prop_ld_hdd_01' }, - ['1753541233'] = { Name = 'prop_ld_headset_01' }, - ['678958360'] = { Name = 'prop_ld_health_pack' }, - ['-301207358'] = { Name = 'prop_ld_hook' }, - ['-1251197000'] = { Name = 'prop_ld_int_safe_01' }, - ['-642608865'] = { Name = 'prop_ld_jail_door' }, - ['-1157632529'] = { Name = 'prop_ld_jeans_01' }, - ['-1471068014'] = { Name = 'prop_ld_jeans_02' }, - ['1069395324'] = { Name = 'prop_ld_jerrycan_01' }, - ['1321190118'] = { Name = 'prop_ld_keypad_01' }, - ['277179989'] = { Name = 'prop_ld_keypad_01b_lod' }, - ['623406777'] = { Name = 'prop_ld_keypad_01b' }, - ['1351606497'] = { Name = 'prop_ld_lab_corner01' }, - ['-170235898'] = { Name = 'prop_ld_lab_dorway01' }, - ['668041498'] = { Name = 'prop_ld_lap_top' }, - ['-1911264257'] = { Name = 'prop_ld_monitor_01' }, - ['787795698'] = { Name = 'prop_ld_peep_slider' }, - ['525797972'] = { Name = 'prop_ld_pipe_single_01' }, - ['932342438'] = { Name = 'prop_ld_planning_pin_01' }, - ['-975272128'] = { Name = 'prop_ld_planning_pin_02' }, - ['-735763507'] = { Name = 'prop_ld_planning_pin_03' }, - ['339283616'] = { Name = 'prop_ld_planter1a' }, - ['1778465327'] = { Name = 'prop_ld_planter1b' }, - ['2024691593'] = { Name = 'prop_ld_planter1c' }, - ['-717043092'] = { Name = 'prop_ld_planter2a' }, - ['-413765997'] = { Name = 'prop_ld_planter2b' }, - ['-1314389193'] = { Name = 'prop_ld_planter2c' }, - ['-1864252677'] = { Name = 'prop_ld_planter3a' }, - ['-1901937027'] = { Name = 'prop_ld_planter3b' }, - ['-1307376291'] = { Name = 'prop_ld_planter3c' }, - ['461387027'] = { Name = 'prop_ld_purse_01_lod' }, - ['-34897201'] = { Name = 'prop_ld_purse_01' }, - ['152884146'] = { Name = 'prop_ld_rail_01' }, - ['-480540624'] = { Name = 'prop_ld_rail_02' }, - ['1185249461'] = { Name = 'prop_ld_rope_t' }, - ['-1998455445'] = { Name = 'prop_ld_rub_binbag_01' }, - ['-1350614541'] = { Name = 'prop_ld_rubble_01' }, - ['-305283433'] = { Name = 'prop_ld_rubble_02' }, - ['-611378662'] = { Name = 'prop_ld_rubble_03' }, - ['1507825333'] = { Name = 'prop_ld_rubble_04' }, - ['-2122188986'] = { Name = 'prop_ld_scrap' }, - ['-1256588656'] = { Name = 'prop_ld_shirt_01' }, - ['1682675077'] = { Name = 'prop_ld_shoe_01' }, - ['1916612968'] = { Name = 'prop_ld_shoe_02' }, - ['-966735958'] = { Name = 'prop_ld_shovel_dirt' }, - ['1925751803'] = { Name = 'prop_ld_shovel' }, - ['-1877813643'] = { Name = 'prop_ld_snack_01' }, - ['-994740387'] = { Name = 'prop_ld_suitcase_01' }, - ['697352466'] = { Name = 'prop_ld_suitcase_02' }, - ['186956100'] = { Name = 'prop_ld_test_01' }, - ['1872312775'] = { Name = 'prop_ld_toilet_01' }, - ['-1716504528'] = { Name = 'prop_ld_tooth' }, - ['1346165884'] = { Name = 'prop_ld_tshirt_01' }, - ['578126062'] = { Name = 'prop_ld_tshirt_02' }, - ['-1264354268'] = { Name = 'prop_ld_vault_door' }, - ['-2055486531'] = { Name = 'prop_ld_w_me_machette' }, - ['1334928729'] = { Name = 'prop_ld_wallet_01_s' }, - ['-1379254308'] = { Name = 'prop_ld_wallet_01' }, - ['-1734077040'] = { Name = 'prop_ld_wallet_02' }, - ['-21449061'] = { Name = 'prop_ld_wallet_pickup' }, - ['1603835013'] = { Name = 'prop_leaf_blower_01' }, - ['1671786281'] = { Name = 'prop_lectern_01' }, - ['-830216854'] = { Name = 'prop_letterbox_01' }, - ['354284193'] = { Name = 'prop_letterbox_02' }, - ['-1414914121'] = { Name = 'prop_letterbox_03' }, - ['-138758181'] = { Name = 'prop_letterbox_04' }, - ['1892623307'] = { Name = 'prop_lev_crate_01' }, - ['-1963621339'] = { Name = 'prop_lev_des_barge_01' }, - ['-1669978330'] = { Name = 'prop_lev_des_barge_02' }, - ['-1487498162'] = { Name = 'prop_life_ring_01' }, - ['-1306547744'] = { Name = 'prop_life_ring_02' }, - ['262294578'] = { Name = 'prop_lifeblurb_01' }, - ['1609518039'] = { Name = 'prop_lifeblurb_01b' }, - ['-1014909978'] = { Name = 'prop_lifeblurb_02' }, - ['-211749928'] = { Name = 'prop_lifeblurb_02b' }, - ['1721635574'] = { Name = 'prop_lift_overlay_01' }, - ['2014688741'] = { Name = 'prop_lift_overlay_02' }, - ['1489118250'] = { Name = 'prop_lime_jar' }, - ['-1619549892'] = { Name = 'prop_litter_picker' }, - ['1366334172'] = { Name = 'prop_log_01' }, - ['-1692750285'] = { Name = 'prop_log_02' }, - ['-1395207765'] = { Name = 'prop_log_03' }, - ['-989183355'] = { Name = 'prop_log_aa' }, - ['-1236753150'] = { Name = 'prop_log_ab' }, - ['1581872401'] = { Name = 'prop_log_ac' }, - ['1203849217'] = { Name = 'prop_log_ad' }, - ['-41176169'] = { Name = 'prop_log_ae' }, - ['-279701720'] = { Name = 'prop_log_af' }, - ['-593160806'] = { Name = 'prop_log_break_01' }, - ['-672395555'] = { Name = 'prop_loggneon' }, - ['-37176073'] = { Name = 'prop_logpile_01' }, - ['192829538'] = { Name = 'prop_logpile_02' }, - ['-1381557071'] = { Name = 'prop_logpile_03' }, - ['-1152075764'] = { Name = 'prop_logpile_04' }, - ['-1060060412'] = { Name = 'prop_logpile_05' }, - ['-685576280'] = { Name = 'prop_logpile_06' }, - ['1889091531'] = { Name = 'prop_logpile_06b' }, - ['1417112147'] = { Name = 'prop_logpile_07' }, - ['-12425453'] = { Name = 'prop_logpile_07b' }, - ['920165506'] = { Name = 'prop_loose_rag_01' }, - ['-349730013'] = { Name = 'prop_lrggate_01_l' }, - ['1383638045'] = { Name = 'prop_lrggate_01_pst' }, - ['-1918480350'] = { Name = 'prop_lrggate_01_r' }, - ['256791144'] = { Name = 'prop_lrggate_01b' }, - ['546378757'] = { Name = 'prop_lrggate_01c_l' }, - ['-1249591818'] = { Name = 'prop_lrggate_01c_r' }, - ['-2125423493'] = { Name = 'prop_lrggate_02_ld' }, - ['-844827165'] = { Name = 'prop_lrggate_02' }, - ['575680671'] = { Name = 'prop_lrggate_03a' }, - ['724862427'] = { Name = 'prop_lrggate_03b_ld' }, - ['279678294'] = { Name = 'prop_lrggate_03b' }, - ['1738619932'] = { Name = 'prop_lrggate_04a' }, - ['11038584'] = { Name = 'prop_lrggate_05a' }, - ['-1153093533'] = { Name = 'prop_lrggate_06a' }, - ['-206954186'] = { Name = 'prop_luggage_01a' }, - ['4602238'] = { Name = 'prop_luggage_02a' }, - ['1424581035'] = { Name = 'prop_luggage_03a' }, - ['879323380'] = { Name = 'prop_luggage_04a' }, - ['914418735'] = { Name = 'prop_luggage_05a' }, - ['656854087'] = { Name = 'prop_luggage_06a' }, - ['753227456'] = { Name = 'prop_luggage_07a' }, - ['-230858727'] = { Name = 'prop_luggage_08a' }, - ['-2137120552'] = { Name = 'prop_luggage_09a' }, - ['-934705991'] = { Name = 'prop_m_pack_int_01' }, - ['668467214'] = { Name = 'prop_magenta_door' }, - ['-2098426548'] = { Name = 'prop_makeup_brush' }, - ['-293536422'] = { Name = 'prop_makeup_trail_01_cr' }, - ['-1738641949'] = { Name = 'prop_makeup_trail_01' }, - ['1012842044'] = { Name = 'prop_makeup_trail_02_cr' }, - ['-1534786000'] = { Name = 'prop_makeup_trail_02' }, - ['-502195954'] = { Name = 'prop_map_door_01' }, - ['-1313704889'] = { Name = 'prop_mask_ballistic_trip1' }, - ['-1072033486'] = { Name = 'prop_mask_ballistic_trip2' }, - ['-594044771'] = { Name = 'prop_mask_ballistic' }, - ['-1730591027'] = { Name = 'prop_mask_bugstar_trip' }, - ['-30968431'] = { Name = 'prop_mask_bugstar' }, - ['570101940'] = { Name = 'prop_mask_fireman' }, - ['1048062970'] = { Name = 'prop_mask_flight' }, - ['-1010838977'] = { Name = 'prop_mask_motobike_a' }, - ['-1394924426'] = { Name = 'prop_mask_motobike_b' }, - ['-1766193780'] = { Name = 'prop_mask_motobike_trip' }, - ['-1630286816'] = { Name = 'prop_mask_motobike' }, - ['1994083055'] = { Name = 'prop_mask_motox_trip' }, - ['-1734491935'] = { Name = 'prop_mask_motox' }, - ['-630008420'] = { Name = 'prop_mask_scuba01_trip' }, - ['-1981720153'] = { Name = 'prop_mask_scuba01' }, - ['1313795453'] = { Name = 'prop_mask_scuba02_trip' }, - ['1165086929'] = { Name = 'prop_mask_scuba02' }, - ['1115396903'] = { Name = 'prop_mask_scuba03_trip' }, - ['1407249839'] = { Name = 'prop_mask_scuba03' }, - ['768085611'] = { Name = 'prop_mask_scuba04_trip' }, - ['619515848'] = { Name = 'prop_mask_scuba04' }, - ['404420572'] = { Name = 'prop_mask_specops_trip' }, - ['-368775533'] = { Name = 'prop_mask_specops' }, - ['-550146809'] = { Name = 'prop_mask_test_01' }, - ['591839817'] = { Name = 'prop_mast_01' }, - ['-1709503252'] = { Name = 'prop_mat_box' }, - ['-1118478184'] = { Name = 'prop_maxheight_01' }, - ['-789386409'] = { Name = 'prop_mb_cargo_01a' }, - ['2082783416'] = { Name = 'prop_mb_cargo_02a' }, - ['-222480965'] = { Name = 'prop_mb_cargo_03a' }, - ['897366637'] = { Name = 'prop_mb_cargo_04a' }, - ['1197039142'] = { Name = 'prop_mb_cargo_04b' }, - ['-666179646'] = { Name = 'prop_mb_crate_01a_set' }, - ['481432069'] = { Name = 'prop_mb_crate_01a' }, - ['788248216'] = { Name = 'prop_mb_crate_01b' }, - ['1727205997'] = { Name = 'prop_mb_hanger_sprinkler' }, - ['1354899844'] = { Name = 'prop_mb_hesco_06' }, - ['502597611'] = { Name = 'prop_mb_ordnance_01' }, - ['1246158990'] = { Name = 'prop_mb_ordnance_02' }, - ['2013608974'] = { Name = 'prop_mb_ordnance_03' }, - ['-152913465'] = { Name = 'prop_mb_ordnance_04' }, - ['-148635027'] = { Name = 'prop_mb_sandblock_01' }, - ['165521376'] = { Name = 'prop_mb_sandblock_02' }, - ['523344868'] = { Name = 'prop_mb_sandblock_03_cr' }, - ['1485817159'] = { Name = 'prop_mb_sandblock_03' }, - ['1834086091'] = { Name = 'prop_mb_sandblock_04' }, - ['1708971027'] = { Name = 'prop_mb_sandblock_05_cr' }, - ['1056805411'] = { Name = 'prop_mb_sandblock_05' }, - ['2139919312'] = { Name = 'prop_mc_conc_barrier_01' }, - ['1368637848'] = { Name = 'prop_med_bag_01' }, - ['-509478557'] = { Name = 'prop_med_bag_01b' }, - ['1303897364'] = { Name = 'prop_med_jet_01' }, - ['1185713036'] = { Name = 'prop_medal_01' }, - ['-509973344'] = { Name = 'prop_medstation_01' }, - ['1869023287'] = { Name = 'prop_medstation_02' }, - ['1313261047'] = { Name = 'prop_medstation_03' }, - ['1539137764'] = { Name = 'prop_medstation_04' }, - ['-1585551192'] = { Name = 'prop_megaphone_01' }, - ['-769292007'] = { Name = 'prop_mem_candle_01' }, - ['-529291851'] = { Name = 'prop_mem_candle_02' }, - ['781500918'] = { Name = 'prop_mem_candle_03' }, - ['-1359461697'] = { Name = 'prop_mem_candle_04' }, - ['-853901565'] = { Name = 'prop_mem_candle_05' }, - ['-1685349402'] = { Name = 'prop_mem_candle_06' }, - ['-1721654639'] = { Name = 'prop_mem_candle_combo' }, - ['1753243846'] = { Name = 'prop_mem_reef_01' }, - ['-1652897094'] = { Name = 'prop_mem_reef_02' }, - ['-1934481111'] = { Name = 'prop_mem_reef_03' }, - ['336541402'] = { Name = 'prop_mem_teddy_01' }, - ['-319297368'] = { Name = 'prop_mem_teddy_02' }, - ['2067252279'] = { Name = 'prop_metal_plates01' }, - ['1757912919'] = { Name = 'prop_metal_plates02' }, - ['-546529839'] = { Name = 'prop_metalfoodjar_002' }, - ['-898793083'] = { Name = 'prop_metalfoodjar_01' }, - ['285917444'] = { Name = 'prop_meth_bag_01' }, - ['-2059889071'] = { Name = 'prop_meth_setup_01' }, - ['1585260068'] = { Name = 'prop_michael_backpack' }, - ['-407830426'] = { Name = 'prop_michael_balaclava' }, - ['1011598562'] = { Name = 'prop_michael_door' }, - ['-720810643'] = { Name = 'prop_michael_sec_id' }, - ['566576618'] = { Name = 'prop_michaels_credit_tv' }, - ['1490269418'] = { Name = 'prop_micro_01' }, - ['1796594030'] = { Name = 'prop_micro_02' }, - ['356462018'] = { Name = 'prop_micro_04' }, - ['-891120940'] = { Name = 'prop_micro_cs_01_door' }, - ['380825205'] = { Name = 'prop_micro_cs_01' }, - ['933500565'] = { Name = 'prop_microphone_02' }, - ['1306960905'] = { Name = 'prop_microwave_1' }, - ['90805875'] = { Name = 'prop_mil_crate_01' }, - ['-301668442'] = { Name = 'prop_mil_crate_02' }, - ['-1313687957'] = { Name = 'prop_military_pickup_01' }, - ['-18398025'] = { Name = 'prop_mine_doorng_l' }, - ['-872784146'] = { Name = 'prop_mine_doorng_r' }, - ['-1241212535'] = { Name = 'prop_mineshaft_door' }, - ['-929681224'] = { Name = 'prop_minigun_01' }, - ['1267718013'] = { Name = 'prop_mk_arrow_3d' }, - ['-2069820128'] = { Name = 'prop_mk_arrow_flat' }, - ['-2026528599'] = { Name = 'prop_mk_bike_logo_1' }, - ['2029257766'] = { Name = 'prop_mk_bike_logo_2' }, - ['1400047790'] = { Name = 'prop_mk_boost' }, - ['1682183567'] = { Name = 'prop_mk_cone' }, - ['-461640156'] = { Name = 'prop_mk_cylinder' }, - ['489393990'] = { Name = 'prop_mk_flag_2' }, - ['556204867'] = { Name = 'prop_mk_flag' }, - ['-1751054247'] = { Name = 'prop_mk_heli' }, - ['169493890'] = { Name = 'prop_mk_lap' }, - ['-992932885'] = { Name = 'prop_mk_mp_ring_01' }, - ['-1499561117'] = { Name = 'prop_mk_mp_ring_01b' }, - ['457010614'] = { Name = 'prop_mk_num_0' }, - ['-56151926'] = { Name = 'prop_mk_num_1' }, - ['-1216076223'] = { Name = 'prop_mk_num_2' }, - ['-1455748689'] = { Name = 'prop_mk_num_3' }, - ['-660543366'] = { Name = 'prop_mk_num_4' }, - ['-898872303'] = { Name = 'prop_mk_num_5' }, - ['1966973365'] = { Name = 'prop_mk_num_6' }, - ['1727005978'] = { Name = 'prop_mk_num_7' }, - ['-1580631348'] = { Name = 'prop_mk_num_8' }, - ['-1823285793'] = { Name = 'prop_mk_num_9' }, - ['1387939745'] = { Name = 'prop_mk_plane' }, - ['-237215991'] = { Name = 'prop_mk_race_chevron_01' }, - ['-1633273698'] = { Name = 'prop_mk_race_chevron_02' }, - ['-2056845792'] = { Name = 'prop_mk_race_chevron_03' }, - ['-247073735'] = { Name = 'prop_mk_repair' }, - ['2136410906'] = { Name = 'prop_mk_ring_flat' }, - ['-1565856713'] = { Name = 'prop_mk_ring' }, - ['1530167798'] = { Name = 'prop_mk_sphere' }, - ['-1386785352'] = { Name = 'prop_mk_tri_cycle' }, - ['-256059350'] = { Name = 'prop_mk_tri_run' }, - ['1358269310'] = { Name = 'prop_mk_tri_swim' }, - ['1888604944'] = { Name = 'prop_mobile_mast_1' }, - ['1660696549'] = { Name = 'prop_mobile_mast_2' }, - ['1565560522'] = { Name = 'prop_mojito' }, - ['289396019'] = { Name = 'prop_money_bag_01' }, - ['1333557690'] = { Name = 'prop_monitor_01a' }, - ['557686077'] = { Name = 'prop_monitor_01b' }, - ['843005760'] = { Name = 'prop_monitor_01c' }, - ['1940636184'] = { Name = 'prop_monitor_01d' }, - ['-1496356952'] = { Name = 'prop_monitor_02' }, - ['1140820728'] = { Name = 'prop_monitor_03b' }, - ['-943811168'] = { Name = 'prop_monitor_04a' }, - ['394821236'] = { Name = 'prop_monitor_li' }, - ['-1524180747'] = { Name = 'prop_monitor_w_large' }, - ['-1306074314'] = { Name = 'prop_motel_door_09' }, - ['-830589106'] = { Name = 'prop_mouse_01' }, - ['-524036402'] = { Name = 'prop_mouse_01a' }, - ['-1884703589'] = { Name = 'prop_mouse_01b' }, - ['-1128754237'] = { Name = 'prop_mouse_02' }, - ['-1192183952'] = { Name = 'prop_mov_sechutwin_02' }, - ['1398321063'] = { Name = 'prop_mov_sechutwin' }, - ['-1800403885'] = { Name = 'prop_movie_rack' }, - ['1867879106'] = { Name = 'prop_mp_arrow_barrier_01' }, - ['-1507470892'] = { Name = 'prop_mp_arrow_ring' }, - ['868148414'] = { Name = 'prop_mp_barrier_01' }, - ['1603241576'] = { Name = 'prop_mp_barrier_01b' }, - ['24969275'] = { Name = 'prop_mp_barrier_02' }, - ['-205311355'] = { Name = 'prop_mp_barrier_02b' }, - ['1672168046'] = { Name = 'prop_mp_base_marker' }, - ['1709896882'] = { Name = 'prop_mp_boost_01' }, - ['628878810'] = { Name = 'prop_mp_cant_place_lrg' }, - ['-263709501'] = { Name = 'prop_mp_cant_place_med' }, - ['-1860765147'] = { Name = 'prop_mp_cant_place_sm' }, - ['682373179'] = { Name = 'prop_mp_conc_barrier_01' }, - ['939377219'] = { Name = 'prop_mp_cone_01' }, - ['1245865676'] = { Name = 'prop_mp_cone_02' }, - ['862664990'] = { Name = 'prop_mp_cone_03' }, - ['93871477'] = { Name = 'prop_mp_cone_04' }, - ['-1620734287'] = { Name = 'prop_mp_drug_pack_blue' }, - ['138777325'] = { Name = 'prop_mp_drug_pack_red' }, - ['765087784'] = { Name = 'prop_mp_drug_package' }, - ['203510308'] = { Name = 'prop_mp_halo_lrg' }, - ['1573742756'] = { Name = 'prop_mp_halo_med' }, - ['-1720855371'] = { Name = 'prop_mp_halo_point_lrg' }, - ['1181134573'] = { Name = 'prop_mp_halo_point_med' }, - ['359824118'] = { Name = 'prop_mp_halo_point_sm' }, - ['1067498314'] = { Name = 'prop_mp_halo_point' }, - ['1528913568'] = { Name = 'prop_mp_halo_rotate_lrg' }, - ['-547833144'] = { Name = 'prop_mp_halo_rotate_med' }, - ['1988157930'] = { Name = 'prop_mp_halo_rotate_sm' }, - ['-317653089'] = { Name = 'prop_mp_halo_rotate' }, - ['-1855054434'] = { Name = 'prop_mp_halo_sm' }, - ['19912391'] = { Name = 'prop_mp_halo' }, - ['-1029803156'] = { Name = 'prop_mp_icon_shad_lrg' }, - ['-133291774'] = { Name = 'prop_mp_icon_shad_med' }, - ['-1916383162'] = { Name = 'prop_mp_icon_shad_sm' }, - ['-1099135528'] = { Name = 'prop_mp_max_out_lrg' }, - ['-458245934'] = { Name = 'prop_mp_max_out_med' }, - ['391417229'] = { Name = 'prop_mp_max_out_sm' }, - ['-939235386'] = { Name = 'prop_mp_num_0' }, - ['1519357138'] = { Name = 'prop_mp_num_1' }, - ['1798123021'] = { Name = 'prop_mp_num_2' }, - ['2046479272'] = { Name = 'prop_mp_num_3' }, - ['-507372739'] = { Name = 'prop_mp_num_4' }, - ['-135051361'] = { Name = 'prop_mp_num_5' }, - ['84140480'] = { Name = 'prop_mp_num_6' }, - ['-1686303052'] = { Name = 'prop_mp_num_7' }, - ['518657424'] = { Name = 'prop_mp_num_8' }, - ['748204269'] = { Name = 'prop_mp_num_9' }, - ['-621140855'] = { Name = 'prop_mp_placement_lrg' }, - ['2053394677'] = { Name = 'prop_mp_placement_maxd' }, - ['-51423166'] = { Name = 'prop_mp_placement_med' }, - ['1700850768'] = { Name = 'prop_mp_placement_red' }, - ['-582796990'] = { Name = 'prop_mp_placement_sm' }, - ['379560922'] = { Name = 'prop_mp_placement' }, - ['-1775547488'] = { Name = 'prop_mp_pointer_ring' }, - ['1212630005'] = { Name = 'prop_mp_ramp_01_tu' }, - ['-1319646748'] = { Name = 'prop_mp_ramp_01' }, - ['-1135198622'] = { Name = 'prop_mp_ramp_02_tu' }, - ['-185511650'] = { Name = 'prop_mp_ramp_02' }, - ['55777251'] = { Name = 'prop_mp_ramp_03_tu' }, - ['-1818980770'] = { Name = 'prop_mp_ramp_03' }, - ['1219257666'] = { Name = 'prop_mp_repair_01' }, - ['-419793040'] = { Name = 'prop_mp_repair' }, - ['170715090'] = { Name = 'prop_mp_respawn_02' }, - ['-1531914544'] = { Name = 'prop_mp_rocket_01' }, - ['-414027994'] = { Name = 'prop_mp_solid_ring' }, - ['1944414445'] = { Name = 'prop_mp_spike_01' }, - ['-627813781'] = { Name = 'prop_mp3_dock' }, - ['1998656713'] = { Name = 'prop_mr_rasberryclean' }, - ['1022578470'] = { Name = 'prop_mr_raspberry_01' }, - ['-331509782'] = { Name = 'prop_mug_01' }, - ['1319392426'] = { Name = 'prop_mug_02' }, - ['130107121'] = { Name = 'prop_mug_03' }, - ['-164781110'] = { Name = 'prop_mug_04' }, - ['647955628'] = { Name = 'prop_mug_06' }, - ['672753785'] = { Name = 'prop_mugs_rm_flashb' }, - ['1191103069'] = { Name = 'prop_mugs_rm_lightoff' }, - ['1725772482'] = { Name = 'prop_mugs_rm_lighton' }, - ['-1838046182'] = { Name = 'prop_muscle_bench_01' }, - ['-1577762015'] = { Name = 'prop_muscle_bench_02' }, - ['-1095992177'] = { Name = 'prop_muscle_bench_03' }, - ['-865527800'] = { Name = 'prop_muscle_bench_04' }, - ['-115510932'] = { Name = 'prop_muscle_bench_05' }, - ['383495400'] = { Name = 'prop_muscle_bench_06' }, - ['-409840349'] = { Name = 'prop_muster_wboard_01' }, - ['-1713129017'] = { Name = 'prop_muster_wboard_02' }, - ['483744672'] = { Name = 'prop_necklace_board' }, - ['506350134'] = { Name = 'prop_new_drug_pack_01' }, - ['-1186769817'] = { Name = 'prop_news_disp_01a' }, - ['-377891123'] = { Name = 'prop_news_disp_02a_s' }, - ['1211559620'] = { Name = 'prop_news_disp_02a' }, - ['1375076930'] = { Name = 'prop_news_disp_02b' }, - ['720581693'] = { Name = 'prop_news_disp_02c' }, - ['917457845'] = { Name = 'prop_news_disp_02d' }, - ['261193082'] = { Name = 'prop_news_disp_02e' }, - ['-756152956'] = { Name = 'prop_news_disp_03a' }, - ['-1383056703'] = { Name = 'prop_news_disp_03c' }, - ['-838860344'] = { Name = 'prop_news_disp_05a' }, - ['1287257122'] = { Name = 'prop_news_disp_06a' }, - ['-1829964307'] = { Name = 'prop_ng_sculpt_fix' }, - ['1010590096'] = { Name = 'prop_nigel_bag_pickup' }, - ['-1276798450'] = { Name = 'prop_night_safe_01' }, - ['29402038'] = { Name = 'prop_notepad_01' }, - ['-334989242'] = { Name = 'prop_notepad_02' }, - ['944959446'] = { Name = 'prop_novel_01' }, - ['1407197773'] = { Name = 'prop_npc_phone_02' }, - ['-1038739674'] = { Name = 'prop_npc_phone' }, - ['536071214'] = { Name = 'prop_off_chair_01' }, - ['96868307'] = { Name = 'prop_off_chair_03' }, - ['475561894'] = { Name = 'prop_off_chair_04_s' }, - ['1268458364'] = { Name = 'prop_off_chair_04' }, - ['1480618483'] = { Name = 'prop_off_chair_04b' }, - ['1037469683'] = { Name = 'prop_off_chair_05' }, - ['124188622'] = { Name = 'prop_off_phone_01' }, - ['-508101108'] = { Name = 'prop_office_alarm_01' }, - ['-95585677'] = { Name = 'prop_office_desk_01' }, - ['148141454'] = { Name = 'prop_office_phone_tnt' }, - ['1451741313'] = { Name = 'prop_offroad_bale01' }, - ['90475403'] = { Name = 'prop_offroad_bale02_l1_frag_' }, - ['-1601837956'] = { Name = 'prop_offroad_bale02' }, - ['2084346858'] = { Name = 'prop_offroad_bale03' }, - ['-757971088'] = { Name = 'prop_offroad_barrel01' }, - ['-996988174'] = { Name = 'prop_offroad_barrel02' }, - ['1369821530'] = { Name = 'prop_offroad_tyres01_tu' }, - ['509852852'] = { Name = 'prop_offroad_tyres01' }, - ['812376260'] = { Name = 'prop_offroad_tyres02' }, - ['-705229846'] = { Name = 'prop_oil_derrick_01' }, - ['-2127648188'] = { Name = 'prop_oil_guage_01' }, - ['1195772660'] = { Name = 'prop_oil_spool_02' }, - ['-482489660'] = { Name = 'prop_oil_valve_01' }, - ['-774920224'] = { Name = 'prop_oil_valve_02' }, - ['1464670617'] = { Name = 'prop_oil_wellhead_01' }, - ['64287394'] = { Name = 'prop_oil_wellhead_03' }, - ['-1570558016'] = { Name = 'prop_oil_wellhead_04' }, - ['-1867871153'] = { Name = 'prop_oil_wellhead_05' }, - ['-1091540774'] = { Name = 'prop_oil_wellhead_06' }, - ['-276344022'] = { Name = 'prop_oilcan_01a' }, - ['-1532806025'] = { Name = 'prop_oilcan_02a' }, - ['834559808'] = { Name = 'prop_oiltub_01' }, - ['1681638458'] = { Name = 'prop_oiltub_02' }, - ['309108893'] = { Name = 'prop_oiltub_03' }, - ['1851545707'] = { Name = 'prop_oiltub_04' }, - ['544881832'] = { Name = 'prop_oiltub_05' }, - ['1437574930'] = { Name = 'prop_oiltub_06' }, - ['1803975195'] = { Name = 'prop_old_boot' }, - ['129608276'] = { Name = 'prop_old_churn_01' }, - ['-159152152'] = { Name = 'prop_old_churn_02' }, - ['956957017'] = { Name = 'prop_old_deck_chair_02' }, - ['1103738692'] = { Name = 'prop_old_deck_chair' }, - ['-636008946'] = { Name = 'prop_old_farm_01' }, - ['-857396310'] = { Name = 'prop_old_farm_02' }, - ['-125664540'] = { Name = 'prop_old_farm_03' }, - ['734263480'] = { Name = 'prop_old_wood_chair_lod' }, - ['1544350879'] = { Name = 'prop_old_wood_chair' }, - ['-1572767351'] = { Name = 'prop_oldlight_01a' }, - ['-1895279849'] = { Name = 'prop_oldlight_01b' }, - ['1035808898'] = { Name = 'prop_oldlight_01c' }, - ['-1296622201'] = { Name = 'prop_oldplough1' }, - ['283394517'] = { Name = 'prop_optic_jd' }, - ['-2084757382'] = { Name = 'prop_optic_rum' }, - ['-1320431804'] = { Name = 'prop_optic_vodka' }, - ['1832502141'] = { Name = 'prop_orang_can_01' }, - ['-1890952940'] = { Name = 'prop_out_door_speaker' }, - ['57758678'] = { Name = 'prop_outdoor_fan_01' }, - ['-1973482041'] = { Name = 'prop_overalls_01' }, - ['-1759159805'] = { Name = 'prop_owl_totem_01' }, - ['1670527089'] = { Name = 'prop_p_jack_03_col' }, - ['-992734280'] = { Name = 'prop_p_spider_01a' }, - ['-400827833'] = { Name = 'prop_p_spider_01c' }, - ['-1687076625'] = { Name = 'prop_p_spider_01d' }, - ['874772806'] = { Name = 'prop_paint_brush01' }, - ['-42923039'] = { Name = 'prop_paint_brush02' }, - ['179316319'] = { Name = 'prop_paint_brush03' }, - ['1453178373'] = { Name = 'prop_paint_brush04' }, - ['976586037'] = { Name = 'prop_paint_brush05' }, - ['1807682983'] = { Name = 'prop_paint_roller' }, - ['724405277'] = { Name = 'prop_paint_spray01a' }, - ['-1788911489'] = { Name = 'prop_paint_spray01b' }, - ['214384272'] = { Name = 'prop_paint_stepl01' }, - ['-2096130282'] = { Name = 'prop_paint_stepl01b' }, - ['1316995584'] = { Name = 'prop_paint_stepl02' }, - ['1214673062'] = { Name = 'prop_paint_tray' }, - ['-590902397'] = { Name = 'prop_paint_wpaper01' }, - ['2126419969'] = { Name = 'prop_paints_bench01' }, - ['-597454856'] = { Name = 'prop_paints_can01' }, - ['1032540746'] = { Name = 'prop_paints_can02' }, - ['-174505373'] = { Name = 'prop_paints_can03' }, - ['-405100826'] = { Name = 'prop_paints_can04' }, - ['-1595008754'] = { Name = 'prop_paints_can05' }, - ['322272667'] = { Name = 'prop_paints_can06' }, - ['1786752042'] = { Name = 'prop_paints_can07' }, - ['2082302221'] = { Name = 'prop_paints_pallete01' }, - ['757019157'] = { Name = 'prop_pallet_01a' }, - ['830159341'] = { Name = 'prop_pallet_02a' }, - ['740895081'] = { Name = 'prop_pallet_03a' }, - ['1047645690'] = { Name = 'prop_pallet_03b' }, - ['-1853453107'] = { Name = 'prop_pallet_pile_01' }, - ['-3872440'] = { Name = 'prop_pallet_pile_02' }, - ['1615800919'] = { Name = 'prop_pallet_pile_03' }, - ['1343261146'] = { Name = 'prop_pallet_pile_04' }, - ['-1894042373'] = { Name = 'prop_pallettruck_01' }, - ['895484294'] = { Name = 'prop_pallettruck_02' }, - ['-1969479583'] = { Name = 'prop_palm_fan_02_a' }, - ['2095154412'] = { Name = 'prop_palm_fan_02_b' }, - ['-2116697995'] = { Name = 'prop_palm_fan_03_a' }, - ['2096445108'] = { Name = 'prop_palm_fan_03_b' }, - ['-212949180'] = { Name = 'prop_palm_fan_03_c_graff' }, - ['1848580392'] = { Name = 'prop_palm_fan_03_c' }, - ['1829091778'] = { Name = 'prop_palm_fan_03_d_graff' }, - ['-648384643'] = { Name = 'prop_palm_fan_03_d' }, - ['-627182787'] = { Name = 'prop_palm_fan_04_a' }, - ['-850405215'] = { Name = 'prop_palm_fan_04_b' }, - ['-654381053'] = { Name = 'prop_palm_fan_04_c' }, - ['-876325490'] = { Name = 'prop_palm_fan_04_d' }, - ['-1209618476'] = { Name = 'prop_palm_huge_01a' }, - ['287728210'] = { Name = 'prop_palm_huge_01b' }, - ['-1901972340'] = { Name = 'prop_palm_med_01a' }, - ['-1459918530'] = { Name = 'prop_palm_med_01b' }, - ['743960561'] = { Name = 'prop_palm_med_01c' }, - ['-1268318187'] = { Name = 'prop_palm_med_01d' }, - ['709417929'] = { Name = 'prop_palm_sm_01a' }, - ['945879033'] = { Name = 'prop_palm_sm_01d' }, - ['2044426993'] = { Name = 'prop_palm_sm_01e' }, - ['1802493466'] = { Name = 'prop_palm_sm_01f' }, - ['680380202'] = { Name = 'prop_pap_camera_01' }, - ['1108364521'] = { Name = 'prop_paper_bag_01' }, - ['-1803909274'] = { Name = 'prop_paper_bag_small' }, - ['2145382395'] = { Name = 'prop_paper_ball' }, - ['-1996476047'] = { Name = 'prop_paper_box_01' }, - ['1950582780'] = { Name = 'prop_paper_box_02' }, - ['-1938376606'] = { Name = 'prop_paper_box_03' }, - ['1465830963'] = { Name = 'prop_paper_box_04' }, - ['1636622991'] = { Name = 'prop_paper_box_05' }, - ['643651670'] = { Name = 'prop_parachute' }, - ['-1679378668'] = { Name = 'prop_parapack_01' }, - ['-1043239133'] = { Name = 'prop_parasol_01_b' }, - ['-1317220738'] = { Name = 'prop_parasol_01_c' }, - ['1878378076'] = { Name = 'prop_parasol_01_down' }, - ['478737801'] = { Name = 'prop_parasol_01_lod' }, - ['-592861175'] = { Name = 'prop_parasol_01' }, - ['-987757643'] = { Name = 'prop_parasol_01b_lod' }, - ['1398809829'] = { Name = 'prop_parasol_02_b' }, - ['1629405282'] = { Name = 'prop_parasol_02_c' }, - ['56751481'] = { Name = 'prop_parasol_02' }, - ['264031651'] = { Name = 'prop_parasol_03_b' }, - ['25538869'] = { Name = 'prop_parasol_03_c' }, - ['-248688364'] = { Name = 'prop_parasol_03' }, - ['-60790918'] = { Name = 'prop_parasol_04' }, - ['-104193816'] = { Name = 'prop_parasol_04b' }, - ['-333412971'] = { Name = 'prop_parasol_04c' }, - ['639433101'] = { Name = 'prop_parasol_04d' }, - ['1249015613'] = { Name = 'prop_parasol_04e_lod1' }, - ['400973088'] = { Name = 'prop_parasol_04e' }, - ['175309727'] = { Name = 'prop_parasol_05' }, - ['-1327303424'] = { Name = 'prop_parasol_bh_48' }, - ['1447355784'] = { Name = 'prop_park_ticket_01' }, - ['304890764'] = { Name = 'prop_parking_hut_2' }, - ['1981833514'] = { Name = 'prop_parking_hut_2b' }, - ['290648114'] = { Name = 'prop_parking_sign_06' }, - ['-404775616'] = { Name = 'prop_parking_sign_07' }, - ['-2038478357'] = { Name = 'prop_parking_sign_1' }, - ['-1040137999'] = { Name = 'prop_parking_sign_2' }, - ['-839348691'] = { Name = 'prop_parking_wand_01' }, - ['-544726684'] = { Name = 'prop_parkingpay' }, - ['-1940238623'] = { Name = 'prop_parknmeter_01' }, - ['2108567945'] = { Name = 'prop_parknmeter_02' }, - ['-756713902'] = { Name = 'prop_partsbox_01' }, - ['-1750183478'] = { Name = 'prop_passport_01' }, - ['-1714859751'] = { Name = 'prop_patio_heater_01' }, - ['1699040865'] = { Name = 'prop_patio_lounger_2' }, - ['2017293393'] = { Name = 'prop_patio_lounger_3' }, - ['-1682596365'] = { Name = 'prop_patio_lounger1_table' }, - ['-1498352975'] = { Name = 'prop_patio_lounger1' }, - ['-2024837020'] = { Name = 'prop_patio_lounger1b' }, - ['-1814664762'] = { Name = 'prop_patriotneon' }, - ['1774846173'] = { Name = 'prop_paynspray_door_l' }, - ['546827942'] = { Name = 'prop_paynspray_door_r' }, - ['1429487523'] = { Name = 'prop_pc_01a' }, - ['1654151435'] = { Name = 'prop_pc_02a' }, - ['-1669330389'] = { Name = 'prop_peanut_bowl_01' }, - ['1530424218'] = { Name = 'prop_ped_gib_01' }, - ['1052085257'] = { Name = 'prop_ped_pic_01_sm' }, - ['1110699354'] = { Name = 'prop_ped_pic_01' }, - ['618574817'] = { Name = 'prop_ped_pic_02_sm' }, - ['602124474'] = { Name = 'prop_ped_pic_02' }, - ['1316165619'] = { Name = 'prop_ped_pic_03_sm' }, - ['-576805839'] = { Name = 'prop_ped_pic_03' }, - ['-152094541'] = { Name = 'prop_ped_pic_04_sm' }, - ['-751857837'] = { Name = 'prop_ped_pic_04' }, - ['1098873624'] = { Name = 'prop_ped_pic_05_sm' }, - ['-52305225'] = { Name = 'prop_ped_pic_05' }, - ['-363675173'] = { Name = 'prop_ped_pic_06_sm' }, - ['-292927992'] = { Name = 'prop_ped_pic_06' }, - ['2130308972'] = { Name = 'prop_ped_pic_07_sm' }, - ['-232108832'] = { Name = 'prop_ped_pic_07' }, - ['-2118131946'] = { Name = 'prop_ped_pic_08_sm' }, - ['-535582541'] = { Name = 'prop_ped_pic_08' }, - ['463086472'] = { Name = 'prop_pencil_01' }, - ['1979076528'] = { Name = 'prop_peyote_chunk_01' }, - ['421059073'] = { Name = 'prop_peyote_gold_01' }, - ['-212010961'] = { Name = 'prop_peyote_highland_01' }, - ['1367913609'] = { Name = 'prop_peyote_highland_02' }, - ['-1425791387'] = { Name = 'prop_peyote_lowland_01' }, - ['-1178483744'] = { Name = 'prop_peyote_lowland_02' }, - ['-1429181545'] = { Name = 'prop_peyote_water_01' }, - ['-1910370445'] = { Name = 'prop_pharm_sign_01' }, - ['1534100734'] = { Name = 'prop_phone_cs_frank' }, - ['1907022252'] = { Name = 'prop_phone_ing_02_lod' }, - ['-746954904'] = { Name = 'prop_phone_ing_02' }, - ['-263063365'] = { Name = 'prop_phone_ing_03_lod' }, - ['-511116411'] = { Name = 'prop_phone_ing_03' }, - ['413312110'] = { Name = 'prop_phone_ing' }, - ['485673473'] = { Name = 'prop_phone_overlay_01' }, - ['-1645196294'] = { Name = 'prop_phone_overlay_02' }, - ['-1348538537'] = { Name = 'prop_phone_overlay_03' }, - ['127083682'] = { Name = 'prop_phone_overlay_anim' }, - ['-1599936665'] = { Name = 'prop_phone_proto_back' }, - ['1525904360'] = { Name = 'prop_phone_proto_battery' }, - ['-2017357667'] = { Name = 'prop_phone_proto' }, - ['1511539537'] = { Name = 'prop_phonebox_01a' }, - ['1281992692'] = { Name = 'prop_phonebox_01b' }, - ['-2103798695'] = { Name = 'prop_phonebox_01c' }, - ['295857659'] = { Name = 'prop_phonebox_02' }, - ['-78626473'] = { Name = 'prop_phonebox_03' }, - ['1158960338'] = { Name = 'prop_phonebox_04' }, - ['-55180266'] = { Name = 'prop_phonebox_05a' }, - ['163244680'] = { Name = 'prop_phys_wades_head' }, - ['465817409'] = { Name = 'prop_picnictable_01_lod' }, - ['-1572018818'] = { Name = 'prop_picnictable_01' }, - ['-1795175708'] = { Name = 'prop_picnictable_02' }, - ['1688679327'] = { Name = 'prop_pier_kiosk_01' }, - ['1511005809'] = { Name = 'prop_pier_kiosk_02' }, - ['-2009466172'] = { Name = 'prop_pier_kiosk_03' }, - ['923487792'] = { Name = 'prop_piercing_gun' }, - ['986152416'] = { Name = 'prop_pighouse1' }, - ['657577653'] = { Name = 'prop_pighouse2' }, - ['196166568'] = { Name = 'prop_pile_dirt_01' }, - ['1004872719'] = { Name = 'prop_pile_dirt_02' }, - ['-1218241727'] = { Name = 'prop_pile_dirt_03' }, - ['-382992686'] = { Name = 'prop_pile_dirt_04' }, - ['-17159622'] = { Name = 'prop_pile_dirt_06' }, - ['-1977592297'] = { Name = 'prop_pile_dirt_07_cr' }, - ['-26957549'] = { Name = 'prop_pile_dirt_07' }, - ['-814630114'] = { Name = 'prop_pinacolada' }, - ['-845035989'] = { Name = 'prop_pineapple' }, - ['-337441861'] = { Name = 'prop_ping_pong' }, - ['-1465676794'] = { Name = 'prop_pint_glass_01' }, - ['-748232308'] = { Name = 'prop_pint_glass_02' }, - ['-133185213'] = { Name = 'prop_pint_glass_tall' }, - ['1980814227'] = { Name = 'prop_pipe_single_01' }, - ['1668676931'] = { Name = 'prop_pipe_stack_01' }, - ['-1654693836'] = { Name = 'prop_pipes_01a' }, - ['1836351583'] = { Name = 'prop_pipes_01b' }, - ['764282027'] = { Name = 'prop_pipes_02a' }, - ['1530421247'] = { Name = 'prop_pipes_02b' }, - ['2099682835'] = { Name = 'prop_pipes_03a' }, - ['-1418167626'] = { Name = 'prop_pipes_03b' }, - ['-1341946012'] = { Name = 'prop_pipes_04a' }, - ['1722122269'] = { Name = 'prop_pipes_05a' }, - ['63237339'] = { Name = 'prop_pipes_conc_01' }, - ['-310198185'] = { Name = 'prop_pipes_conc_02' }, - ['1207991827'] = { Name = 'prop_pipes_ld_01' }, - ['534382381'] = { Name = 'prop_pistol_holster' }, - ['-1250752255'] = { Name = 'prop_pitcher_01_cs' }, - ['-722072228'] = { Name = 'prop_pitcher_01' }, - ['1320288466'] = { Name = 'prop_pitcher_02' }, - ['604847691'] = { Name = 'prop_pizza_box_01' }, - ['-856584171'] = { Name = 'prop_pizza_box_02' }, - ['1085274000'] = { Name = 'prop_pizza_box_03' }, - ['458266265'] = { Name = 'prop_pizza_oven_01' }, - ['311860131'] = { Name = 'prop_planer_01' }, - ['-1683281785'] = { Name = 'prop_plant_01a' }, - ['-1979382469'] = { Name = 'prop_plant_01b' }, - ['-147519789'] = { Name = 'prop_plant_base_01' }, - ['1648483571'] = { Name = 'prop_plant_base_02' }, - ['1282650455'] = { Name = 'prop_plant_base_03' }, - ['1099128256'] = { Name = 'prop_plant_cane_01a' }, - ['1160242441'] = { Name = 'prop_plant_cane_01b' }, - ['894583222'] = { Name = 'prop_plant_cane_02a' }, - ['1390116040'] = { Name = 'prop_plant_cane_02b' }, - ['-500041449'] = { Name = 'prop_plant_clover_01' }, - ['-1276175214'] = { Name = 'prop_plant_clover_02' }, - ['1951116262'] = { Name = 'prop_plant_fern_01a' }, - ['562366042'] = { Name = 'prop_plant_fern_01b' }, - ['-765237524'] = { Name = 'prop_plant_fern_02a' }, - ['-1719175883'] = { Name = 'prop_plant_fern_02b' }, - ['-1950262871'] = { Name = 'prop_plant_fern_02c' }, - ['-1751947657'] = { Name = 'prop_plant_flower_01' }, - ['-2051292472'] = { Name = 'prop_plant_flower_02' }, - ['2080223052'] = { Name = 'prop_plant_flower_03' }, - ['1780681623'] = { Name = 'prop_plant_flower_04' }, - ['1859431100'] = { Name = 'prop_plant_group_01' }, - ['1563330416'] = { Name = 'prop_plant_group_02' }, - ['-1968414101'] = { Name = 'prop_plant_group_03' }, - ['1566353027'] = { Name = 'prop_plant_group_04_cr' }, - ['-2020516811'] = { Name = 'prop_plant_group_04' }, - ['-1224328414'] = { Name = 'prop_plant_group_05' }, - ['-335093434'] = { Name = 'prop_plant_group_05b' }, - ['-1580184358'] = { Name = 'prop_plant_group_05c' }, - ['-1886934967'] = { Name = 'prop_plant_group_05d' }, - ['-946956202'] = { Name = 'prop_plant_group_05e' }, - ['-2099867525'] = { Name = 'prop_plant_group_06a' }, - ['-1794886442'] = { Name = 'prop_plant_group_06b' }, - ['1311254299'] = { Name = 'prop_plant_group_06c' }, - ['276954077'] = { Name = 'prop_plant_int_01a' }, - ['-1328202619'] = { Name = 'prop_plant_int_01b' }, - ['-1672244062'] = { Name = 'prop_plant_int_02a' }, - ['-904499161'] = { Name = 'prop_plant_int_02b' }, - ['-664859048'] = { Name = 'prop_plant_int_03a' }, - ['119729119'] = { Name = 'prop_plant_int_03b' }, - ['-67906175'] = { Name = 'prop_plant_int_03c' }, - ['1883518564'] = { Name = 'prop_plant_int_04a' }, - ['1637751064'] = { Name = 'prop_plant_int_04b' }, - ['1458701228'] = { Name = 'prop_plant_int_04c' }, - ['1680905773'] = { Name = 'prop_plant_int_05a' }, - ['-1812892242'] = { Name = 'prop_plant_int_05b' }, - ['-1580658051'] = { Name = 'prop_plant_int_06a' }, - ['-1275414816'] = { Name = 'prop_plant_int_06b' }, - ['-1736736754'] = { Name = 'prop_plant_int_06c' }, - ['1818151509'] = { Name = 'prop_plant_interior_05a' }, - ['-1327429222'] = { Name = 'prop_plant_palm_01a' }, - ['-1028739787'] = { Name = 'prop_plant_palm_01b' }, - ['-1636670283'] = { Name = 'prop_plant_palm_01c' }, - ['-43948379'] = { Name = 'prop_plant_paradise_b' }, - ['-1194642315'] = { Name = 'prop_plant_paradise' }, - ['-1199673887'] = { Name = 'prop_plas_barier_01a' }, - ['-1016640704'] = { Name = 'prop_plastic_cup_02' }, - ['-306982646'] = { Name = 'prop_plate_01' }, - ['751033'] = { Name = 'prop_plate_02' }, - ['-901903841'] = { Name = 'prop_plate_03' }, - ['-596726144'] = { Name = 'prop_plate_04' }, - ['-1706302154'] = { Name = 'prop_plate_stand_01' }, - ['1191386269'] = { Name = 'prop_plate_warmer' }, - ['-1154398125'] = { Name = 'prop_player_gasmask' }, - ['760935785'] = { Name = 'prop_player_phone_01' }, - ['1448265560'] = { Name = 'prop_player_phone_02' }, - ['654965994'] = { Name = 'prop_pliers_01' }, - ['1644097553'] = { Name = 'prop_plonk_red' }, - ['-295049461'] = { Name = 'prop_plonk_rose' }, - ['112192004'] = { Name = 'prop_plonk_white' }, - ['1602949740'] = { Name = 'prop_plough' }, - ['-351060269'] = { Name = 'prop_plywoodpile_01a' }, - ['-658531796'] = { Name = 'prop_plywoodpile_01b' }, - ['567755715'] = { Name = 'prop_podium_mic' }, - ['-176635891'] = { Name = 'prop_police_door_l_dam' }, - ['-2062889184'] = { Name = 'prop_police_door_l' }, - ['1609617895'] = { Name = 'prop_police_door_r_dam' }, - ['130962589'] = { Name = 'prop_police_door_r' }, - ['1829375674'] = { Name = 'prop_police_door_surround' }, - ['-1623189257'] = { Name = 'prop_police_id_board' }, - ['-1090119157'] = { Name = 'prop_police_id_text_02' }, - ['-955488312'] = { Name = 'prop_police_id_text' }, - ['-975421026'] = { Name = 'prop_police_phone' }, - ['-1619540609'] = { Name = 'prop_police_radio_handset' }, - ['-1712659381'] = { Name = 'prop_police_radio_main' }, - ['-1194335261'] = { Name = 'prop_poly_bag_01' }, - ['290621560'] = { Name = 'prop_poly_bag_money' }, - ['473985065'] = { Name = 'prop_pool_ball_01' }, - ['1184113278'] = { Name = 'prop_pool_cue' }, - ['1299967108'] = { Name = 'prop_pool_rack_01' }, - ['551195458'] = { Name = 'prop_pool_rack_02' }, - ['-1279805564'] = { Name = 'prop_pool_tri' }, - ['518638935'] = { Name = 'prop_poolball_1' }, - ['-1545548207'] = { Name = 'prop_poolball_10' }, - ['-1306105124'] = { Name = 'prop_poolball_11' }, - ['-281647869'] = { Name = 'prop_poolball_12' }, - ['2104951174'] = { Name = 'prop_poolball_13' }, - ['-1826083608'] = { Name = 'prop_poolball_14' }, - ['-1201572006'] = { Name = 'prop_poolball_15' }, - ['-1629729474'] = { Name = 'prop_poolball_2' }, - ['-2008080348'] = { Name = 'prop_poolball_3' }, - ['1982987238'] = { Name = 'prop_poolball_4' }, - ['1744002921'] = { Name = 'prop_poolball_5' }, - ['-406462704'] = { Name = 'prop_poolball_6' }, - ['-779701614'] = { Name = 'prop_poolball_7' }, - ['-1015736721'] = { Name = 'prop_poolball_8' }, - ['-1388647941'] = { Name = 'prop_poolball_9' }, - ['1541020665'] = { Name = 'prop_poolball_cue' }, - ['1969778515'] = { Name = 'prop_poolskimmer' }, - ['322248450'] = { Name = 'prop_pooltable_02' }, - ['-314623274'] = { Name = 'prop_pooltable_3b' }, - ['-1603796423'] = { Name = 'prop_porn_mag_01' }, - ['-1876336196'] = { Name = 'prop_porn_mag_02' }, - ['-988623986'] = { Name = 'prop_porn_mag_03' }, - ['-1227804917'] = { Name = 'prop_porn_mag_04' }, - ['-1259776486'] = { Name = 'prop_portable_hifi_01' }, - ['-1098506160'] = { Name = 'prop_portacabin01' }, - ['682074297'] = { Name = 'prop_portaloo_01a' }, - ['-455113622'] = { Name = 'prop_portasteps_01' }, - ['-113824571'] = { Name = 'prop_portasteps_02' }, - ['1363150739'] = { Name = 'prop_postbox_01a' }, - ['-861422469'] = { Name = 'prop_postbox_ss_01a' }, - ['715767402'] = { Name = 'prop_postcard_rack' }, - ['-476875122'] = { Name = 'prop_poster_tube_01' }, - ['-782380509'] = { Name = 'prop_poster_tube_02' }, - ['485216006'] = { Name = 'prop_postit_drive' }, - ['-487697737'] = { Name = 'prop_postit_gun' }, - ['-1991880252'] = { Name = 'prop_postit_it' }, - ['2023983392'] = { Name = 'prop_postit_lock' }, - ['-1674632306'] = { Name = 'prop_pot_01' }, - ['-114565750'] = { Name = 'prop_pot_02' }, - ['-1703665636'] = { Name = 'prop_pot_03' }, - ['-725281603'] = { Name = 'prop_pot_04' }, - ['134970185'] = { Name = 'prop_pot_05' }, - ['1068591760'] = { Name = 'prop_pot_06' }, - ['-1737949350'] = { Name = 'prop_pot_plant_01a' }, - ['-1191427964'] = { Name = 'prop_pot_plant_01b' }, - ['-1256343353'] = { Name = 'prop_pot_plant_01c' }, - ['-530673848'] = { Name = 'prop_pot_plant_01d' }, - ['-894868514'] = { Name = 'prop_pot_plant_01e' }, - ['-901521477'] = { Name = 'prop_pot_plant_02a' }, - ['-1878463678'] = { Name = 'prop_pot_plant_02b' }, - ['1558349046'] = { Name = 'prop_pot_plant_02c' }, - ['-1299468213'] = { Name = 'prop_pot_plant_02d' }, - ['-1860309428'] = { Name = 'prop_pot_plant_03a' }, - ['1435537088'] = { Name = 'prop_pot_plant_03b_cr2' }, - ['-199904194'] = { Name = 'prop_pot_plant_03b' }, - ['-442558639'] = { Name = 'prop_pot_plant_03c' }, - ['2139768797'] = { Name = 'prop_pot_plant_04a' }, - ['933214217'] = { Name = 'prop_pot_plant_04b' }, - ['702880916'] = { Name = 'prop_pot_plant_04c' }, - ['1874766238'] = { Name = 'prop_pot_plant_05a' }, - ['336917068'] = { Name = 'prop_pot_plant_05b' }, - ['-503017940'] = { Name = 'prop_pot_plant_05c' }, - ['-1304172382'] = { Name = 'prop_pot_plant_05d_l1' }, - ['-1203783005'] = { Name = 'prop_pot_plant_05d' }, - ['-1822851821'] = { Name = 'prop_pot_plant_6a' }, - ['1019629550'] = { Name = 'prop_pot_plant_6b' }, - ['-1491050248'] = { Name = 'prop_pot_plant_bh1' }, - ['264354080'] = { Name = 'prop_pot_plant_inter_03a' }, - ['-489719518'] = { Name = 'prop_pot_rack' }, - ['-841373210'] = { Name = 'prop_potatodigger' }, - ['-2059885722'] = { Name = 'prop_power_cell' }, - ['1774228345'] = { Name = 'prop_power_cord_01' }, - ['272925894'] = { Name = 'prop_premier_fence_01' }, - ['1039360035'] = { Name = 'prop_premier_fence_02' }, - ['-824819003'] = { Name = 'prop_printer_01' }, - ['-78931017'] = { Name = 'prop_printer_02' }, - ['233175726'] = { Name = 'prop_pris_bars_01' }, - ['1005957871'] = { Name = 'prop_pris_bench_01' }, - ['-752497691'] = { Name = 'prop_pris_door_01_l' }, - ['1737094319'] = { Name = 'prop_pris_door_01_r' }, - ['-1204251591'] = { Name = 'prop_pris_door_02' }, - ['1373390714'] = { Name = 'prop_pris_door_03' }, - ['1193398208'] = { Name = 'prop_prlg_gravestone_01a' }, - ['1397319391'] = { Name = 'prop_prlg_gravestone_02a' }, - ['-56833361'] = { Name = 'prop_prlg_gravestone_03a' }, - ['1719178257'] = { Name = 'prop_prlg_gravestone_04a' }, - ['1667673456'] = { Name = 'prop_prlg_gravestone_05a_l1' }, - ['-1008546364'] = { Name = 'prop_prlg_gravestone_05a' }, - ['-1394499950'] = { Name = 'prop_prlg_gravestone_06a' }, - ['-1617412079'] = { Name = 'prop_prlg_snowpile' }, - ['1284375840'] = { Name = 'prop_projector_overlay' }, - ['-1435460625'] = { Name = 'prop_prologue_phone_lod' }, - ['251676848'] = { Name = 'prop_prologue_phone' }, - ['-2033615398'] = { Name = 'prop_prologue_pillar_01' }, - ['-78587596'] = { Name = 'prop_prop_tree_01' }, - ['763411859'] = { Name = 'prop_prop_tree_02' }, - ['1716800000'] = { Name = 'prop_protest_sign_01' }, - ['974300346'] = { Name = 'prop_protest_table_01' }, - ['385429618'] = { Name = 'prop_prototype_minibomb' }, - ['-1100726734'] = { Name = 'prop_proxy_chateau_table' }, - ['-1870936557'] = { Name = 'prop_proxy_hat_01' }, - ['-215322844'] = { Name = 'prop_punch_bag_l' }, - ['-48775863'] = { Name = 'prop_pylon_01' }, - ['70929294'] = { Name = 'prop_pylon_02' }, - ['294348336'] = { Name = 'prop_pylon_03' }, - ['1487500395'] = { Name = 'prop_pylon_04' }, - ['996499903'] = { Name = 'prop_ql_revolving_door' }, - ['1237270008'] = { Name = 'prop_quad_grid_line' }, - ['1200261250'] = { Name = 'prop_rad_waste_barrel_01' }, - ['2057223314'] = { Name = 'prop_radio_01' }, - ['-1374416477'] = { Name = 'prop_radiomast01' }, - ['-2041757162'] = { Name = 'prop_radiomast02' }, - ['679927467'] = { Name = 'prop_rag_01' }, - ['1428702884'] = { Name = 'prop_ragganeon' }, - ['1961489851'] = { Name = 'prop_rail_boxcar' }, - ['-1565687858'] = { Name = 'prop_rail_boxcar2' }, - ['-943306241'] = { Name = 'prop_rail_boxcar3' }, - ['2097329273'] = { Name = 'prop_rail_boxcar4' }, - ['-939452740'] = { Name = 'prop_rail_boxcar5_d' }, - ['1504341417'] = { Name = 'prop_rail_boxcar5' }, - ['81690419'] = { Name = 'prop_rail_buffer_01' }, - ['-292793713'] = { Name = 'prop_rail_buffer_02' }, - ['-257022130'] = { Name = 'prop_rail_controller' }, - ['701128452'] = { Name = 'prop_rail_crane_01' }, - ['805649274'] = { Name = 'prop_rail_points01' }, - ['-2112331873'] = { Name = 'prop_rail_points02' }, - ['1728588159'] = { Name = 'prop_rail_points04' }, - ['1656167615'] = { Name = 'prop_rail_sigbox01' }, - ['-1882949927'] = { Name = 'prop_rail_sigbox02' }, - ['-2009270739'] = { Name = 'prop_rail_sign01' }, - ['-1275638367'] = { Name = 'prop_rail_sign02' }, - ['1638934804'] = { Name = 'prop_rail_sign03' }, - ['-1413006015'] = { Name = 'prop_rail_sign04' }, - ['-1708877316'] = { Name = 'prop_rail_sign05' }, - ['123499626'] = { Name = 'prop_rail_sign06' }, - ['1612443970'] = { Name = 'prop_rail_signals01' }, - ['-285602028'] = { Name = 'prop_rail_signals02' }, - ['-591697261'] = { Name = 'prop_rail_signals03' }, - ['-897497569'] = { Name = 'prop_rail_signals04' }, - ['-1622919007'] = { Name = 'prop_rail_tankcar' }, - ['1518155103'] = { Name = 'prop_rail_tankcar2' }, - ['1754255748'] = { Name = 'prop_rail_tankcar3' }, - ['-1282428048'] = { Name = 'prop_rail_wellcar' }, - ['1024332415'] = { Name = 'prop_rail_wellcar2' }, - ['-1120465738'] = { Name = 'prop_rail_wheel01' }, - ['2042711033'] = { Name = 'prop_railsleepers01' }, - ['-1897367993'] = { Name = 'prop_railsleepers02' }, - ['1213103781'] = { Name = 'prop_railstack01' }, - ['437133861'] = { Name = 'prop_railstack02' }, - ['1707194767'] = { Name = 'prop_railstack03' }, - ['1474305484'] = { Name = 'prop_railstack04' }, - ['1606004099'] = { Name = 'prop_railstack05' }, - ['-700892790'] = { Name = 'prop_railway_barrier_01' }, - ['-1451925505'] = { Name = 'prop_railway_barrier_02' }, - ['1741284929'] = { Name = 'prop_range_target_01' }, - ['-58618026'] = { Name = 'prop_range_target_02' }, - ['104571594'] = { Name = 'prop_range_target_03' }, - ['-1740687742'] = { Name = 'prop_rcyl_win_01' }, - ['-1508781529'] = { Name = 'prop_rcyl_win_02' }, - ['-1243975240'] = { Name = 'prop_rcyl_win_03' }, - ['513712149'] = { Name = 'prop_rebar_pile01' }, - ['-250952474'] = { Name = 'prop_rebar_pile02' }, - ['-1724049248'] = { Name = 'prop_recycle_light' }, - ['-115771139'] = { Name = 'prop_recyclebin_01a' }, - ['-85604259'] = { Name = 'prop_recyclebin_02_c' }, - ['1233216915'] = { Name = 'prop_recyclebin_02_d' }, - ['375956747'] = { Name = 'prop_recyclebin_02a' }, - ['673826957'] = { Name = 'prop_recyclebin_02b' }, - ['354692929'] = { Name = 'prop_recyclebin_03_a' }, - ['-14708062'] = { Name = 'prop_recyclebin_04_a' }, - ['811169045'] = { Name = 'prop_recyclebin_04_b' }, - ['-96647174'] = { Name = 'prop_recyclebin_05_a' }, - ['-5479653'] = { Name = 'prop_ret_door_02' }, - ['761708175'] = { Name = 'prop_ret_door_03' }, - ['456661554'] = { Name = 'prop_ret_door_04' }, - ['1739173235'] = { Name = 'prop_ret_door' }, - ['99477918'] = { Name = 'prop_rf_conc_pillar' }, - ['727439546'] = { Name = 'prop_riding_crop_01' }, - ['1747729913'] = { Name = 'prop_rio_del_01_l3' }, - ['1506471111'] = { Name = 'prop_rio_del_01' }, - ['-547381377'] = { Name = 'prop_riot_shield' }, - ['1774274711'] = { Name = 'prop_road_memorial_01' }, - ['1325339411'] = { Name = 'prop_road_memorial_02' }, - ['-534360227'] = { Name = 'prop_roadcone01a' }, - ['-1059647297'] = { Name = 'prop_roadcone01b' }, - ['-73333162'] = { Name = 'prop_roadcone01c' }, - ['-1036807324'] = { Name = 'prop_roadcone02a' }, - ['1839621839'] = { Name = 'prop_roadcone02b' }, - ['1008436154'] = { Name = 'prop_roadcone02c' }, - ['1462955468'] = { Name = 'prop_roadheader_01' }, - ['10928689'] = { Name = 'prop_roadpole_01a' }, - ['-223271354'] = { Name = 'prop_roadpole_01b' }, - ['690963000'] = { Name = 'prop_rock_1_a' }, - ['374873226'] = { Name = 'prop_rock_1_b' }, - ['76642561'] = { Name = 'prop_rock_1_c' }, - ['-266907635'] = { Name = 'prop_rock_1_d' }, - ['-571659335'] = { Name = 'prop_rock_1_e' }, - ['-877983947'] = { Name = 'prop_rock_1_f' }, - ['-1186241930'] = { Name = 'prop_rock_1_g' }, - ['-1454521733'] = { Name = 'prop_rock_1_h' }, - ['-1764385397'] = { Name = 'prop_rock_1_i' }, - ['-1663061536'] = { Name = 'prop_rock_2_a' }, - ['103187568'] = { Name = 'prop_rock_2_c' }, - ['1952637159'] = { Name = 'prop_rock_2_d' }, - ['1362008703'] = { Name = 'prop_rock_2_f' }, - ['-786884010'] = { Name = 'prop_rock_2_g' }, - ['1887007857'] = { Name = 'prop_rock_3_a' }, - ['1308766083'] = { Name = 'prop_rock_3_b' }, - ['400343865'] = { Name = 'prop_rock_3_c' }, - ['694838868'] = { Name = 'prop_rock_3_d' }, - ['52435392'] = { Name = 'prop_rock_3_e' }, - ['351714669'] = { Name = 'prop_rock_3_f' }, - ['-560377681'] = { Name = 'prop_rock_3_g' }, - ['-264047614'] = { Name = 'prop_rock_3_h' }, - ['232075042'] = { Name = 'prop_rock_3_i' }, - ['-76838321'] = { Name = 'prop_rock_3_j' }, - ['-1814952641'] = { Name = 'prop_rock_4_a' }, - ['2124667619'] = { Name = 'prop_rock_4_b' }, - ['725387438'] = { Name = 'prop_rock_4_big' }, - ['2042668880'] = { Name = 'prop_rock_4_big2' }, - ['390804950'] = { Name = 'prop_rock_4_c_2' }, - ['-1215378248'] = { Name = 'prop_rock_4_c' }, - ['-1625949270'] = { Name = 'prop_rock_4_cl_1' }, - ['2055647880'] = { Name = 'prop_rock_4_cl_2' }, - ['-1053433850'] = { Name = 'prop_rock_4_d' }, - ['1797043157'] = { Name = 'prop_rock_4_e' }, - ['-1204312266'] = { Name = 'prop_rock_5_a' }, - ['-949664367'] = { Name = 'prop_rock_5_b' }, - ['-608997843'] = { Name = 'prop_rock_5_c' }, - ['1835700637'] = { Name = 'prop_rock_5_d' }, - ['-2120435199'] = { Name = 'prop_rock_5_e' }, - ['-239598083'] = { Name = 'prop_rock_5_smash1' }, - ['736590427'] = { Name = 'prop_rock_5_smash2' }, - ['2139496847'] = { Name = 'prop_rock_5_smash3' }, - ['854385596'] = { Name = 'prop_rock_chair_01' }, - ['783940841'] = { Name = 'prop_rolled_sock_01' }, - ['948080762'] = { Name = 'prop_rolled_sock_02' }, - ['-648012001'] = { Name = 'prop_rolled_yoga_mat' }, - ['1446187959'] = { Name = 'prop_roller_car_01' }, - ['-881525183'] = { Name = 'prop_roller_car_02' }, - ['-1428622127'] = { Name = 'prop_ron_door_01' }, - ['1727181033'] = { Name = 'prop_roofpipe_01' }, - ['1487410260'] = { Name = 'prop_roofpipe_02' }, - ['-1961526994'] = { Name = 'prop_roofpipe_03' }, - ['2102386083'] = { Name = 'prop_roofpipe_04' }, - ['-1368342556'] = { Name = 'prop_roofpipe_05' }, - ['-1884061078'] = { Name = 'prop_roofpipe_06' }, - ['-733979128'] = { Name = 'prop_roofvent_011a' }, - ['1412500798'] = { Name = 'prop_roofvent_01a' }, - ['-1109401446'] = { Name = 'prop_roofvent_01b' }, - ['1221493993'] = { Name = 'prop_roofvent_02a' }, - ['1678424929'] = { Name = 'prop_roofvent_02b' }, - ['669336675'] = { Name = 'prop_roofvent_03a' }, - ['1929467662'] = { Name = 'prop_roofvent_04a' }, - ['193890678'] = { Name = 'prop_roofvent_05a' }, - ['-95131902'] = { Name = 'prop_roofvent_05b' }, - ['1214250852'] = { Name = 'prop_roofvent_06a' }, - ['-695558945'] = { Name = 'prop_roofvent_07a' }, - ['97299702'] = { Name = 'prop_roofvent_08a' }, - ['-1500333376'] = { Name = 'prop_roofvent_09a' }, - ['-1835000284'] = { Name = 'prop_roofvent_10a' }, - ['733106246'] = { Name = 'prop_roofvent_10b' }, - ['-594595103'] = { Name = 'prop_roofvent_11b' }, - ['-836528630'] = { Name = 'prop_roofvent_11c' }, - ['150472798'] = { Name = 'prop_roofvent_12a' }, - ['969992943'] = { Name = 'prop_roofvent_13a' }, - ['1776671180'] = { Name = 'prop_roofvent_14a' }, - ['-989556436'] = { Name = 'prop_roofvent_15a' }, - ['-889153068'] = { Name = 'prop_roofvent_16a' }, - ['-1237359228'] = { Name = 'prop_rope_family_3' }, - ['1704695145'] = { Name = 'prop_rope_hook_01' }, - ['-508617917'] = { Name = 'prop_roundbailer01' }, - ['738930686'] = { Name = 'prop_roundbailer02' }, - ['731682010'] = { Name = 'prop_rub_bike_01' }, - ['902408500'] = { Name = 'prop_rub_bike_02' }, - ['134794675'] = { Name = 'prop_rub_bike_03' }, - ['-375613925'] = { Name = 'prop_rub_binbag_01' }, - ['-1681329307'] = { Name = 'prop_rub_binbag_01b' }, - ['897494494'] = { Name = 'prop_rub_binbag_03' }, - ['1948359883'] = { Name = 'prop_rub_binbag_03b' }, - ['600967813'] = { Name = 'prop_rub_binbag_04' }, - ['1388308576'] = { Name = 'prop_rub_binbag_05' }, - ['1098827230'] = { Name = 'prop_rub_binbag_06' }, - ['1813879595'] = { Name = 'prop_rub_binbag_08' }, - ['1388415578'] = { Name = 'prop_rub_binbag_sd_01' }, - ['1627301588'] = { Name = 'prop_rub_binbag_sd_02' }, - ['856312526'] = { Name = 'prop_rub_boxpile_01' }, - ['1138027619'] = { Name = 'prop_rub_boxpile_02' }, - ['258835349'] = { Name = 'prop_rub_boxpile_03' }, - ['-1712220001'] = { Name = 'prop_rub_boxpile_04' }, - ['1167668471'] = { Name = 'prop_rub_boxpile_04b' }, - ['-1415300092'] = { Name = 'prop_rub_boxpile_05' }, - ['-52732303'] = { Name = 'prop_rub_boxpile_06' }, - ['143291855'] = { Name = 'prop_rub_boxpile_07' }, - ['1735046030'] = { Name = 'prop_rub_boxpile_08' }, - ['-1211968443'] = { Name = 'prop_rub_boxpile_09' }, - ['-466572284'] = { Name = 'prop_rub_boxpile_10' }, - ['-992845609'] = { Name = 'prop_rub_busdoor_01' }, - ['-1231371160'] = { Name = 'prop_rub_busdoor_02' }, - ['-105334880'] = { Name = 'prop_rub_buswreck_01' }, - ['1111476397'] = { Name = 'prop_rub_buswreck_03' }, - ['929870599'] = { Name = 'prop_rub_buswreck_06' }, - ['-1782210005'] = { Name = 'prop_rub_cabinet' }, - ['306579620'] = { Name = 'prop_rub_cabinet01' }, - ['603696143'] = { Name = 'prop_rub_cabinet02' }, - ['309266674'] = { Name = 'prop_rub_cabinet03' }, - ['2063962179'] = { Name = 'prop_rub_cage01a' }, - ['-1386777370'] = { Name = 'prop_rub_cage01b' }, - ['-1601152168'] = { Name = 'prop_rub_cage01c' }, - ['1387151245'] = { Name = 'prop_rub_cage01d' }, - ['1679057497'] = { Name = 'prop_rub_cage01e' }, - ['-1413947866'] = { Name = 'prop_rub_cardpile_01' }, - ['741629727'] = { Name = 'prop_rub_cardpile_02' }, - ['379532277'] = { Name = 'prop_rub_cardpile_03' }, - ['122721624'] = { Name = 'prop_rub_cardpile_04' }, - ['1626425496'] = { Name = 'prop_rub_cardpile_05' }, - ['-580107888'] = { Name = 'prop_rub_cardpile_06' }, - ['-819616509'] = { Name = 'prop_rub_cardpile_07' }, - ['211799305'] = { Name = 'prop_rub_carpart_02' }, - ['986884462'] = { Name = 'prop_rub_carpart_03' }, - ['-171729071'] = { Name = 'prop_rub_carpart_04' }, - ['575699050'] = { Name = 'prop_rub_carpart_05' }, - ['1898296526'] = { Name = 'prop_rub_carwreck_10' }, - ['1069797899'] = { Name = 'prop_rub_carwreck_11' }, - ['1434516869'] = { Name = 'prop_rub_carwreck_12' }, - ['-896997473'] = { Name = 'prop_rub_carwreck_13' }, - ['-1748303324'] = { Name = 'prop_rub_carwreck_14' }, - ['-1366478936'] = { Name = 'prop_rub_carwreck_15' }, - ['2090224559'] = { Name = 'prop_rub_carwreck_16' }, - ['-52638650'] = { Name = 'prop_rub_carwreck_17' }, - ['591265130'] = { Name = 'prop_rub_carwreck_2' }, - ['-915224107'] = { Name = 'prop_rub_carwreck_3' }, - ['-273279397'] = { Name = 'prop_rub_carwreck_5' }, - ['322493792'] = { Name = 'prop_rub_carwreck_7' }, - ['10106915'] = { Name = 'prop_rub_carwreck_8' }, - ['1120812170'] = { Name = 'prop_rub_carwreck_9' }, - ['1696004910'] = { Name = 'prop_rub_chassis_01' }, - ['-1023166706'] = { Name = 'prop_rub_chassis_02' }, - ['-1330310543'] = { Name = 'prop_rub_chassis_03' }, - ['-937016776'] = { Name = 'prop_rub_cont_01a' }, - ['-173040310'] = { Name = 'prop_rub_cont_01b' }, - ['109264625'] = { Name = 'prop_rub_cont_01c' }, - ['-1841495633'] = { Name = 'prop_rub_couch01' }, - ['-2021659595'] = { Name = 'prop_rub_couch02' }, - ['1975077032'] = { Name = 'prop_rub_couch03' }, - ['-1199485389'] = { Name = 'prop_rub_couch04' }, - ['-203906105'] = { Name = 'prop_rub_flotsam_01' }, - ['550501813'] = { Name = 'prop_rub_flotsam_02' }, - ['243292438'] = { Name = 'prop_rub_flotsam_03' }, - ['-1752323099'] = { Name = 'prop_rub_frklft' }, - ['-1698683516'] = { Name = 'prop_rub_generator' }, - ['1207821893'] = { Name = 'prop_rub_litter_01' }, - ['443058963'] = { Name = 'prop_rub_litter_02' }, - ['750661566'] = { Name = 'prop_rub_litter_03' }, - ['-1671360865'] = { Name = 'prop_rub_litter_03b' }, - ['-804358663'] = { Name = 'prop_rub_litter_03c' }, - ['906314316'] = { Name = 'prop_rub_litter_04' }, - ['-205570378'] = { Name = 'prop_rub_litter_04b' }, - ['1213196001'] = { Name = 'prop_rub_litter_05' }, - ['1634867493'] = { Name = 'prop_rub_litter_06' }, - ['1912846920'] = { Name = 'prop_rub_litter_07' }, - ['-1884850801'] = { Name = 'prop_rub_litter_09' }, - ['-1709324304'] = { Name = 'prop_rub_litter_8' }, - ['973168155'] = { Name = 'prop_rub_matress_01' }, - ['-838892007'] = { Name = 'prop_rub_matress_02' }, - ['4385439'] = { Name = 'prop_rub_matress_03' }, - ['-242987742'] = { Name = 'prop_rub_matress_04' }, - ['1004070522'] = { Name = 'prop_rub_monitor' }, - ['1914146234'] = { Name = 'prop_rub_pile_01' }, - ['-560863591'] = { Name = 'prop_rub_pile_02' }, - ['-1919073083'] = { Name = 'prop_rub_pile_03' }, - ['2069078066'] = { Name = 'prop_rub_pile_04' }, - ['730596951'] = { Name = 'prop_rub_planks_01' }, - ['1698789825'] = { Name = 'prop_rub_planks_02' }, - ['1460133198'] = { Name = 'prop_rub_planks_03' }, - ['-2138558390'] = { Name = 'prop_rub_planks_04' }, - ['-530738665'] = { Name = 'prop_rub_railwreck_1' }, - ['-1136244251'] = { Name = 'prop_rub_railwreck_2' }, - ['-1374769802'] = { Name = 'prop_rub_railwreck_3' }, - ['-316280517'] = { Name = 'prop_rub_scrap_02' }, - ['2137036206'] = { Name = 'prop_rub_scrap_03' }, - ['-1850623408'] = { Name = 'prop_rub_scrap_04' }, - ['-1543217419'] = { Name = 'prop_rub_scrap_05' }, - ['-1505729683'] = { Name = 'prop_rub_scrap_06' }, - ['882180120'] = { Name = 'prop_rub_scrap_07' }, - ['740404217'] = { Name = 'prop_rub_stool' }, - ['-1832470637'] = { Name = 'prop_rub_sunktyre' }, - ['141476213'] = { Name = 'prop_rub_t34' }, - ['48898026'] = { Name = 'prop_rub_table_01' }, - ['-555690024'] = { Name = 'prop_rub_table_02' }, - ['-1050536022'] = { Name = 'prop_rub_trainers_01' }, - ['1854419556'] = { Name = 'prop_rub_trainers_01b' }, - ['1622841033'] = { Name = 'prop_rub_trainers_01c' }, - ['1395334609'] = { Name = 'prop_rub_trolley01a' }, - ['979462386'] = { Name = 'prop_rub_trolley02a' }, - ['-1322592273'] = { Name = 'prop_rub_trolley03a' }, - ['-92549270'] = { Name = 'prop_rub_trukwreck_1' }, - ['69853894'] = { Name = 'prop_rub_trukwreck_2' }, - ['-1048832984'] = { Name = 'prop_rub_tyre_01' }, - ['-1694087371'] = { Name = 'prop_rub_tyre_02' }, - ['-1992580192'] = { Name = 'prop_rub_tyre_03' }, - ['-333661828'] = { Name = 'prop_rub_tyre_dam1' }, - ['-238828342'] = { Name = 'prop_rub_tyre_dam2' }, - ['-826835278'] = { Name = 'prop_rub_tyre_dam3' }, - ['-151044291'] = { Name = 'prop_rub_washer_01' }, - ['103020963'] = { Name = 'prop_rub_wheel_01' }, - ['-857962731'] = { Name = 'prop_rub_wheel_02' }, - ['-1810291396'] = { Name = 'prop_rub_wreckage_3' }, - ['-2089384969'] = { Name = 'prop_rub_wreckage_4' }, - ['-1063518655'] = { Name = 'prop_rub_wreckage_5' }, - ['-1379772274'] = { Name = 'prop_rub_wreckage_6' }, - ['-620711158'] = { Name = 'prop_rub_wreckage_7' }, - ['-912256951'] = { Name = 'prop_rub_wreckage_8' }, - ['-405713749'] = { Name = 'prop_rub_wreckage_9' }, - ['-154609122'] = { Name = 'prop_rum_bottle' }, - ['402778632'] = { Name = 'prop_runlight_b' }, - ['140790497'] = { Name = 'prop_runlight_g' }, - ['754816039'] = { Name = 'prop_runlight_r' }, - ['-1384835816'] = { Name = 'prop_runlight_y' }, - ['-1569260983'] = { Name = 'prop_rural_windmill_l1' }, - ['762449981'] = { Name = 'prop_rural_windmill_l2' }, - ['1000238796'] = { Name = 'prop_rural_windmill' }, - ['-1584403182'] = { Name = 'prop_rus_olive_l2' }, - ['2075346744'] = { Name = 'prop_rus_olive_wint' }, - ['-1173932531'] = { Name = 'prop_rus_olive' }, - ['-676184356'] = { Name = 'prop_s_pine_dead_01' }, - ['-200982847'] = { Name = 'prop_sacktruck_01' }, - ['38230152'] = { Name = 'prop_sacktruck_02a' }, - ['686990798'] = { Name = 'prop_sacktruck_02b' }, - ['-2011860718'] = { Name = 'prop_safety_glasses' }, - ['-1479625776'] = { Name = 'prop_sam_01' }, - ['-692093509'] = { Name = 'prop_sandwich_01' }, - ['-1026778664'] = { Name = 'prop_saplin_001_b' }, - ['-1884146780'] = { Name = 'prop_saplin_001_c' }, - ['618696223'] = { Name = 'prop_saplin_002_b' }, - ['863710036'] = { Name = 'prop_saplin_002_c' }, - ['-1711923954'] = { Name = 'prop_sapling_01' }, - ['-2093428068'] = { Name = 'prop_sapling_break_01' }, - ['-1324470710'] = { Name = 'prop_sapling_break_02' }, - ['-385807240'] = { Name = 'prop_satdish_2_a' }, - ['-213901066'] = { Name = 'prop_satdish_2_b' }, - ['-1040630167'] = { Name = 'prop_satdish_2_f' }, - ['1959633939'] = { Name = 'prop_satdish_2_g' }, - ['-1673594709'] = { Name = 'prop_satdish_3_b' }, - ['-1557461381'] = { Name = 'prop_satdish_3_c' }, - ['-1855167746'] = { Name = 'prop_satdish_3_d' }, - ['-1495557877'] = { Name = 'prop_satdish_l_01' }, - ['-1188479578'] = { Name = 'prop_satdish_l_02' }, - ['1046318489'] = { Name = 'prop_satdish_l_02b' }, - ['-727843691'] = { Name = 'prop_satdish_s_01' }, - ['-1025550056'] = { Name = 'prop_satdish_s_02' }, - ['-368990372'] = { Name = 'prop_satdish_s_03' }, - ['-1584951622'] = { Name = 'prop_satdish_s_04a' }, - ['541723713'] = { Name = 'prop_satdish_s_04b' }, - ['1309435845'] = { Name = 'prop_satdish_s_04c' }, - ['-1749780528'] = { Name = 'prop_satdish_s_05a' }, - ['1223940684'] = { Name = 'prop_satdish_s_05b' }, - ['115679102'] = { Name = 'prop_sc1_06_gate_l' }, - ['-1927271438'] = { Name = 'prop_sc1_06_gate_r' }, - ['720693755'] = { Name = 'prop_sc1_12_door' }, - ['703855057'] = { Name = 'prop_sc1_21_g_door_01' }, - ['1896366565'] = { Name = 'prop_scaffold_pole' }, - ['1507654113'] = { Name = 'prop_scafold_01a' }, - ['-1726580657'] = { Name = 'prop_scafold_01c' }, - ['-845684399'] = { Name = 'prop_scafold_01f' }, - ['-952969805'] = { Name = 'prop_scafold_02a' }, - ['-1508928659'] = { Name = 'prop_scafold_02c' }, - ['709238004'] = { Name = 'prop_scafold_03a' }, - ['1056851556'] = { Name = 'prop_scafold_03b' }, - ['1321264617'] = { Name = 'prop_scafold_03c' }, - ['-502264711'] = { Name = 'prop_scafold_03f' }, - ['108315486'] = { Name = 'prop_scafold_04a' }, - ['-318072738'] = { Name = 'prop_scafold_05a' }, - ['1769771028'] = { Name = 'prop_scafold_06a' }, - ['-301885156'] = { Name = 'prop_scafold_06b' }, - ['6503903'] = { Name = 'prop_scafold_06c' }, - ['380070235'] = { Name = 'prop_scafold_07a' }, - ['-1453683313'] = { Name = 'prop_scafold_08a' }, - ['-726771162'] = { Name = 'prop_scafold_09a' }, - ['-820094346'] = { Name = 'prop_scafold_frame1a' }, - ['-507904083'] = { Name = 'prop_scafold_frame1b' }, - ['573669515'] = { Name = 'prop_scafold_frame1c' }, - ['404057187'] = { Name = 'prop_scafold_frame1f' }, - ['-827794773'] = { Name = 'prop_scafold_frame2a' }, - ['-772415163'] = { Name = 'prop_scafold_frame2b' }, - ['1467739199'] = { Name = 'prop_scafold_frame2c' }, - ['17157696'] = { Name = 'prop_scafold_frame3a' }, - ['889108045'] = { Name = 'prop_scafold_frame3c' }, - ['2026758407'] = { Name = 'prop_scafold_rail_01' }, - ['-592402233'] = { Name = 'prop_scafold_rail_02' }, - ['-296006628'] = { Name = 'prop_scafold_rail_03' }, - ['799268283'] = { Name = 'prop_scafold_xbrace' }, - ['1985013634'] = { Name = 'prop_scalpel' }, - ['-66965919'] = { Name = 'prop_scn_police_torch' }, - ['1411425721'] = { Name = 'prop_scourer_01' }, - ['886171930'] = { Name = 'prop_scrap_2_crate' }, - ['-1791375708'] = { Name = 'prop_scrap_win_01' }, - ['1363024442'] = { Name = 'prop_scrim_01' }, - ['-1018528175'] = { Name = 'prop_scrim_02' }, - ['-1397635855'] = { Name = 'prop_scythemower' }, - ['1274586365'] = { Name = 'prop_sea_rubprox_01' }, - ['-16149258'] = { Name = 'prop_seabrain_01' }, - ['2030999457'] = { Name = 'prop_seagroup_02' }, - ['297693906'] = { Name = 'prop_sealife_01' }, - ['567350007'] = { Name = 'prop_sealife_02' }, - ['862041624'] = { Name = 'prop_sealife_03' }, - ['1293609354'] = { Name = 'prop_sealife_04' }, - ['1593871705'] = { Name = 'prop_sealife_05' }, - ['641979137'] = { Name = 'prop_seaweed_01' }, - ['948533132'] = { Name = 'prop_seaweed_02' }, - ['1142865108'] = { Name = 'prop_sec_barier_01a' }, - ['406416082'] = { Name = 'prop_sec_barier_02a' }, - ['242636620'] = { Name = 'prop_sec_barier_02b' }, - ['627816582'] = { Name = 'prop_sec_barier_03a' }, - ['-136782495'] = { Name = 'prop_sec_barier_03b' }, - ['-1591116048'] = { Name = 'prop_sec_barier_04a' }, - ['1801655140'] = { Name = 'prop_sec_barier_04b' }, - ['307771752'] = { Name = 'prop_sec_barier_base_01' }, - ['-1184516519'] = { Name = 'prop_sec_barrier_ld_01a' }, - ['1230099731'] = { Name = 'prop_sec_barrier_ld_02a' }, - ['628598716'] = { Name = 'prop_sec_gate_01b' }, - ['-577103870'] = { Name = 'prop_sec_gate_01c' }, - ['267648181'] = { Name = 'prop_sec_gate_01d' }, - ['878161517'] = { Name = 'prop_secdoor_01' }, - ['1482630529'] = { Name = 'prop_section_garage_01' }, - ['-1249748547'] = { Name = 'prop_security_case_01' }, - ['-1162517469'] = { Name = 'prop_security_case_02' }, - ['205857876'] = { Name = 'prop_securityvan_lightrig' }, - ['54873101'] = { Name = 'prop_set_generator_01_cr' }, - ['-823726932'] = { Name = 'prop_set_generator_01' }, - ['1511642783'] = { Name = 'prop_sewing_fabric' }, - ['262461191'] = { Name = 'prop_sewing_machine' }, - ['2091124520'] = { Name = 'prop_sglasses_stand_01' }, - ['-1964268617'] = { Name = 'prop_sglasses_stand_02' }, - ['1563902689'] = { Name = 'prop_sglasses_stand_02b' }, - ['1967421541'] = { Name = 'prop_sglasses_stand_03' }, - ['1973320977'] = { Name = 'prop_sglasses_stand_1b' }, - ['486135506'] = { Name = 'prop_sglasss_1_lod' }, - ['-2110365083'] = { Name = 'prop_sglasss_1b_lod' }, - ['610446625'] = { Name = 'prop_sgun_casing' }, - ['-278067143'] = { Name = 'prop_sh_beer_pissh_01' }, - ['-342360182'] = { Name = 'prop_sh_bong_01' }, - ['-110986183'] = { Name = 'prop_sh_cigar_01' }, - ['-1199910959'] = { Name = 'prop_sh_joint_01' }, - ['-711103718'] = { Name = 'prop_sh_mr_rasp_01' }, - ['1598379640'] = { Name = 'prop_sh_shot_glass' }, - ['-2132370718'] = { Name = 'prop_sh_tall_glass' }, - ['-1536154964'] = { Name = 'prop_sh_tt_fridgedoor' }, - ['757668998'] = { Name = 'prop_sh_wine_glass' }, - ['1257886169'] = { Name = 'prop_shamal_crash' }, - ['572449021'] = { Name = 'prop_shelves_01' }, - ['-1653844078'] = { Name = 'prop_shelves_02' }, - ['-886295791'] = { Name = 'prop_shelves_03' }, - ['24002365'] = { Name = 'prop_shop_front_door_l' }, - ['1833539318'] = { Name = 'prop_shop_front_door_r' }, - ['605601072'] = { Name = 'prop_shopping_bags01' }, - ['1907480645'] = { Name = 'prop_shopping_bags02' }, - ['1627778316'] = { Name = 'prop_shopsign_01' }, - ['-1118166626'] = { Name = 'prop_shot_glass' }, - ['333258627'] = { Name = 'prop_shots_glass_cs' }, - ['313442092'] = { Name = 'prop_shower_01' }, - ['1472881208'] = { Name = 'prop_shower_rack_01' }, - ['-1593002777'] = { Name = 'prop_shower_towel' }, - ['-1902553960'] = { Name = 'prop_showroom_door_l' }, - ['1564471782'] = { Name = 'prop_showroom_door_r' }, - ['773350470'] = { Name = 'prop_showroom_glass_1' }, - ['-1829309699'] = { Name = 'prop_showroom_glass_1b' }, - ['2000516751'] = { Name = 'prop_showroom_glass_2' }, - ['143825211'] = { Name = 'prop_showroom_glass_3' }, - ['1404743562'] = { Name = 'prop_showroom_glass_4' }, - ['1703138076'] = { Name = 'prop_showroom_glass_5' }, - ['-1383800031'] = { Name = 'prop_showroom_glass_6' }, - ['-1432741974'] = { Name = 'prop_shredder_01' }, - ['-1744853985'] = { Name = 'prop_shrub_rake' }, - ['-1352332651'] = { Name = 'prop_shuttering01' }, - ['667319138'] = { Name = 'prop_shuttering02' }, - ['309416120'] = { Name = 'prop_shuttering03' }, - ['137575484'] = { Name = 'prop_shuttering04' }, - ['1370689662'] = { Name = 'prop_side_lights' }, - ['2023881475'] = { Name = 'prop_side_spreader' }, - ['-1127113574'] = { Name = 'prop_sign_airp_01a' }, - ['-733459309'] = { Name = 'prop_sign_airp_02a' }, - ['-1860385163'] = { Name = 'prop_sign_airp_02b' }, - ['1356205294'] = { Name = 'prop_sign_big_01' }, - ['-667908451'] = { Name = 'prop_sign_freewayentrance' }, - ['-377605116'] = { Name = 'prop_sign_gas_01' }, - ['-59483664'] = { Name = 'prop_sign_gas_02' }, - ['-1862434048'] = { Name = 'prop_sign_gas_03' }, - ['-1614012259'] = { Name = 'prop_sign_gas_04' }, - ['1211452612'] = { Name = 'prop_sign_interstate_01' }, - ['1441261609'] = { Name = 'prop_sign_interstate_02' }, - ['749704633'] = { Name = 'prop_sign_interstate_03' }, - ['979185940'] = { Name = 'prop_sign_interstate_04' }, - ['284941906'] = { Name = 'prop_sign_interstate_05' }, - ['543595731'] = { Name = 'prop_sign_loading_1' }, - ['-1532791430'] = { Name = 'prop_sign_mallet' }, - ['238110203'] = { Name = 'prop_sign_parking_1' }, - ['-1892213657'] = { Name = 'prop_sign_prologue_01a' }, - ['-276539604'] = { Name = 'prop_sign_prologue_06e' }, - ['-1798594116'] = { Name = 'prop_sign_prologue_06g' }, - ['-949234773'] = { Name = 'prop_sign_road_01a' }, - ['2029303486'] = { Name = 'prop_sign_road_01b' }, - ['1800641404'] = { Name = 'prop_sign_road_01c' }, - ['-639994124'] = { Name = 'prop_sign_road_02a' }, - ['-1293825'] = { Name = 'prop_sign_road_03a' }, - ['840050250'] = { Name = 'prop_sign_road_03b' }, - ['609684180'] = { Name = 'prop_sign_road_03c' }, - ['1452666705'] = { Name = 'prop_sign_road_03d' }, - ['1191039009'] = { Name = 'prop_sign_road_03e' }, - ['2034218148'] = { Name = 'prop_sign_road_03f' }, - ['1803721002'] = { Name = 'prop_sign_road_03g' }, - ['-1648525921'] = { Name = 'prop_sign_road_03h' }, - ['-1917330028'] = { Name = 'prop_sign_road_03i' }, - ['-1607925130'] = { Name = 'prop_sign_road_03j' }, - ['-765008143'] = { Name = 'prop_sign_road_03k' }, - ['-998978803'] = { Name = 'prop_sign_road_03l' }, - ['-156356737'] = { Name = 'prop_sign_road_03m' }, - ['-395898127'] = { Name = 'prop_sign_road_03n' }, - ['432141734'] = { Name = 'prop_sign_road_03o' }, - ['193190186'] = { Name = 'prop_sign_road_03p' }, - ['-488700007'] = { Name = 'prop_sign_road_03q' }, - ['-249781228'] = { Name = 'prop_sign_road_03r' }, - ['-9158461'] = { Name = 'prop_sign_road_03s' }, - ['768318833'] = { Name = 'prop_sign_road_03t' }, - ['966571283'] = { Name = 'prop_sign_road_03u' }, - ['1205227910'] = { Name = 'prop_sign_road_03v' }, - ['1445490218'] = { Name = 'prop_sign_road_03w' }, - ['1685785295'] = { Name = 'prop_sign_road_03x' }, - ['1963305956'] = { Name = 'prop_sign_road_03y' }, - ['-2092152719'] = { Name = 'prop_sign_road_03z' }, - ['-463994753'] = { Name = 'prop_sign_road_04a' }, - ['-133126160'] = { Name = 'prop_sign_road_04b' }, - ['156945028'] = { Name = 'prop_sign_road_04c' }, - ['455110159'] = { Name = 'prop_sign_road_04d' }, - ['-1722094986'] = { Name = 'prop_sign_road_04e' }, - ['730828513'] = { Name = 'prop_sign_road_04f' }, - ['-1174808720'] = { Name = 'prop_sign_road_04g_l1' }, - ['1053734239'] = { Name = 'prop_sign_road_04g' }, - ['1347016789'] = { Name = 'prop_sign_road_04h' }, - ['-764650340'] = { Name = 'prop_sign_road_04i' }, - ['1707967324'] = { Name = 'prop_sign_road_04j' }, - ['2012751793'] = { Name = 'prop_sign_road_04k' }, - ['-1993258461'] = { Name = 'prop_sign_road_04l' }, - ['133449643'] = { Name = 'prop_sign_road_04m' }, - ['422144533'] = { Name = 'prop_sign_road_04n' }, - ['-1418850656'] = { Name = 'prop_sign_road_04o' }, - ['-1117900160'] = { Name = 'prop_sign_road_04p' }, - ['1081686200'] = { Name = 'prop_sign_road_04q' }, - ['1393352159'] = { Name = 'prop_sign_road_04r' }, - ['-435354659'] = { Name = 'prop_sign_road_04s' }, - ['-159800138'] = { Name = 'prop_sign_road_04t' }, - ['1977951119'] = { Name = 'prop_sign_road_04u' }, - ['-2018392280'] = { Name = 'prop_sign_road_04v' }, - ['-1721242988'] = { Name = 'prop_sign_road_04w' }, - ['729058991'] = { Name = 'prop_sign_road_04x' }, - ['-1371630523'] = { Name = 'prop_sign_road_04y' }, - ['-1057375813'] = { Name = 'prop_sign_road_04z' }, - ['1887651104'] = { Name = 'prop_sign_road_04za' }, - ['-2100663890'] = { Name = 'prop_sign_road_04zb' }, - ['1502931467'] = { Name = 'prop_sign_road_05a' }, - ['-331378834'] = { Name = 'prop_sign_road_05b' }, - ['219009290'] = { Name = 'prop_sign_road_05c' }, - ['532969079'] = { Name = 'prop_sign_road_05d' }, - ['-1651641860'] = { Name = 'prop_sign_road_05e' }, - ['793482617'] = { Name = 'prop_sign_road_05f' }, - ['1144831835'] = { Name = 'prop_sign_road_05g' }, - ['1392401630'] = { Name = 'prop_sign_road_05h' }, - ['-943634842'] = { Name = 'prop_sign_road_05i' }, - ['-628921366'] = { Name = 'prop_sign_road_05j' }, - ['1797524777'] = { Name = 'prop_sign_road_05k' }, - ['-1914350933'] = { Name = 'prop_sign_road_05l' }, - ['-582192764'] = { Name = 'prop_sign_road_05m' }, - ['-1148375546'] = { Name = 'prop_sign_road_05n' }, - ['-2118829485'] = { Name = 'prop_sign_road_05o' }, - ['1868764591'] = { Name = 'prop_sign_road_05p' }, - ['133285582'] = { Name = 'prop_sign_road_05q' }, - ['-172481957'] = { Name = 'prop_sign_road_05r' }, - ['-1467316223'] = { Name = 'prop_sign_road_05s' }, - ['442297252'] = { Name = 'prop_sign_road_05t' }, - ['995405207'] = { Name = 'prop_sign_road_05u' }, - ['688785674'] = { Name = 'prop_sign_road_05v' }, - ['-269904194'] = { Name = 'prop_sign_road_05w' }, - ['1566503339'] = { Name = 'prop_sign_road_05x' }, - ['1983816554'] = { Name = 'prop_sign_road_05y' }, - ['1944821444'] = { Name = 'prop_sign_road_05z' }, - ['-1753555592'] = { Name = 'prop_sign_road_05za' }, - ['-1496457572'] = { Name = 'prop_sign_road_06a' }, - ['-1798096217'] = { Name = 'prop_sign_road_06b' }, - ['-2090002469'] = { Name = 'prop_sign_road_06c' }, - ['1898279756'] = { Name = 'prop_sign_road_06d' }, - ['-570995470'] = { Name = 'prop_sign_road_06e' }, - ['-879318991'] = { Name = 'prop_sign_road_06f' }, - ['-1169914483'] = { Name = 'prop_sign_road_06g' }, - ['-1474502342'] = { Name = 'prop_sign_road_06h' }, - ['843019649'] = { Name = 'prop_sign_road_06i' }, - ['539480402'] = { Name = 'prop_sign_road_06j' }, - ['282735287'] = { Name = 'prop_sign_road_06k' }, - ['-290853289'] = { Name = 'prop_sign_road_06l' }, - ['1822452318'] = { Name = 'prop_sign_road_06m' }, - ['1509115140'] = { Name = 'prop_sign_road_06n' }, - ['1212260769'] = { Name = 'prop_sign_road_06o' }, - ['1165990941'] = { Name = 'prop_sign_road_06p' }, - ['-1454939221'] = { Name = 'prop_sign_road_06q' }, - ['-1547577184'] = { Name = 'prop_sign_road_06r' }, - ['-1853115340'] = { Name = 'prop_sign_road_06s' }, - ['-797331153'] = { Name = 'prop_sign_road_07a' }, - ['-1119188271'] = { Name = 'prop_sign_road_07b' }, - ['-1815190559'] = { Name = 'prop_sign_road_08a' }, - ['1762201175'] = { Name = 'prop_sign_road_08b' }, - ['-1097090961'] = { Name = 'prop_sign_road_09a' }, - ['240277467'] = { Name = 'prop_sign_road_09b' }, - ['-733912134'] = { Name = 'prop_sign_road_09c' }, - ['-1333126068'] = { Name = 'prop_sign_road_09d' }, - ['1999907185'] = { Name = 'prop_sign_road_09e' }, - ['-974207211'] = { Name = 'prop_sign_road_09f' }, - ['-1058868155'] = { Name = 'prop_sign_road_callbox' }, - ['1021214550'] = { Name = 'prop_sign_road_restriction_10' }, - ['60777741'] = { Name = 'prop_sign_route_01' }, - ['-928289202'] = { Name = 'prop_sign_route_11' }, - ['-1522620555'] = { Name = 'prop_sign_route_13' }, - ['-614394955'] = { Name = 'prop_sign_route_15' }, - ['826728812'] = { Name = 'prop_sign_sec_01' }, - ['-157127644'] = { Name = 'prop_sign_sec_02' }, - ['425374100'] = { Name = 'prop_sign_sec_03' }, - ['-735074497'] = { Name = 'prop_sign_sec_04' }, - ['-455948155'] = { Name = 'prop_sign_sec_05' }, - ['-1326686055'] = { Name = 'prop_sign_sec_06' }, - ['-1792687544'] = { Name = 'prop_sign_taxi_1' }, - ['1491239074'] = { Name = 'prop_single_grid_line' }, - ['76092178'] = { Name = 'prop_single_rose' }, - ['-832054451'] = { Name = 'prop_sink_01' }, - ['-525238304'] = { Name = 'prop_sink_02' }, - ['555352240'] = { Name = 'prop_sink_03' }, - ['844145437'] = { Name = 'prop_sink_04' }, - ['90130747'] = { Name = 'prop_sink_05' }, - ['384625750'] = { Name = 'prop_sink_06' }, - ['-1907102305'] = { Name = 'prop_skate_flatramp_cr' }, - ['2109585724'] = { Name = 'prop_skate_flatramp' }, - ['-1912195761'] = { Name = 'prop_skate_funbox_cr' }, - ['1325012866'] = { Name = 'prop_skate_funbox' }, - ['-613845235'] = { Name = 'prop_skate_halfpipe_cr' }, - ['-160475089'] = { Name = 'prop_skate_halfpipe' }, - ['1982829832'] = { Name = 'prop_skate_kickers_cr' }, - ['1931428867'] = { Name = 'prop_skate_kickers' }, - ['1367199760'] = { Name = 'prop_skate_quartpipe_cr' }, - ['846020017'] = { Name = 'prop_skate_quartpipe' }, - ['51727836'] = { Name = 'prop_skate_rail' }, - ['-1685045150'] = { Name = 'prop_skate_spiner_cr' }, - ['-1964556336'] = { Name = 'prop_skate_spiner' }, - ['1424042130'] = { Name = 'prop_skid_box_01' }, - ['1730858277'] = { Name = 'prop_skid_box_02' }, - ['832856633'] = { Name = 'prop_skid_box_03' }, - ['1132529106'] = { Name = 'prop_skid_box_04' }, - ['525712796'] = { Name = 'prop_skid_box_05' }, - ['553894136'] = { Name = 'prop_skid_box_06' }, - ['-87886729'] = { Name = 'prop_skid_box_07' }, - ['291348133'] = { Name = 'prop_skid_chair_01' }, - ['1071807406'] = { Name = 'prop_skid_chair_02' }, - ['-1108904010'] = { Name = 'prop_skid_chair_03' }, - ['-204585309'] = { Name = 'prop_skid_pillar_01' }, - ['-435147993'] = { Name = 'prop_skid_pillar_02' }, - ['-1356608749'] = { Name = 'prop_skid_sleepbag_1' }, - ['-596943609'] = { Name = 'prop_skid_tent_01' }, - ['1777271576'] = { Name = 'prop_skid_tent_01b' }, - ['-1055611302'] = { Name = 'prop_skid_tent_03' }, - ['617248772'] = { Name = 'prop_skid_tent_cloth' }, - ['1918323043'] = { Name = 'prop_skid_trolley_1' }, - ['-230045366'] = { Name = 'prop_skid_trolley_2' }, - ['-387405094'] = { Name = 'prop_skip_01a' }, - ['364445978'] = { Name = 'prop_skip_02a' }, - ['-515278816'] = { Name = 'prop_skip_03' }, - ['-1340926540'] = { Name = 'prop_skip_04' }, - ['-1831107703'] = { Name = 'prop_skip_05a' }, - ['-995793124'] = { Name = 'prop_skip_05b' }, - ['1605769687'] = { Name = 'prop_skip_06a' }, - ['388197031'] = { Name = 'prop_skip_08a' }, - ['161075092'] = { Name = 'prop_skip_08b' }, - ['-1790177567'] = { Name = 'prop_skip_10a' }, - ['680025219'] = { Name = 'prop_skip_rope_01' }, - ['-48112401'] = { Name = 'prop_skunk_bush_01' }, - ['-1175037383'] = { Name = 'prop_sky_cover_01' }, - ['-1324621082'] = { Name = 'prop_skylight_01' }, - ['1242953190'] = { Name = 'prop_skylight_02_l1' }, - ['1054932594'] = { Name = 'prop_skylight_02' }, - ['1252726310'] = { Name = 'prop_skylight_03' }, - ['1473556601'] = { Name = 'prop_skylight_04' }, - ['1982197019'] = { Name = 'prop_skylight_05' }, - ['2132727951'] = { Name = 'prop_skylight_06a' }, - ['925419684'] = { Name = 'prop_skylight_06b' }, - ['1223453739'] = { Name = 'prop_skylight_06c' }, - ['-1729975506'] = { Name = 'prop_slacks_01' }, - ['-1961095263'] = { Name = 'prop_slacks_02' }, - ['816950694'] = { Name = 'prop_sluicegate' }, - ['-1168924436'] = { Name = 'prop_sluicegatel' }, - ['1283966294'] = { Name = 'prop_sluicegater' }, - ['1251246798'] = { Name = 'prop_slush_dispenser' }, - ['308262790'] = { Name = 'prop_sm_10_mp_door' }, - ['671816687'] = { Name = 'prop_sm_14_mp_gar' }, - ['-1378557197'] = { Name = 'prop_sm_19_clock' }, - ['-1904897132'] = { Name = 'prop_sm_27_door' }, - ['-1368963005'] = { Name = 'prop_sm_27_gate_02' }, - ['-1063457618'] = { Name = 'prop_sm_27_gate_03' }, - ['-1964932808'] = { Name = 'prop_sm_27_gate_04' }, - ['939273339'] = { Name = 'prop_sm_27_gate' }, - ['-48868009'] = { Name = 'prop_sm_locker_door' }, - ['-725970636'] = { Name = 'prop_sm1_11_doorl' }, - ['827574885'] = { Name = 'prop_sm1_11_doorr' }, - ['-627681782'] = { Name = 'prop_sm1_11_garaged' }, - ['1936183844'] = { Name = 'prop_small_bushyba' }, - ['1674224970'] = { Name = 'prop_smg_holster_01' }, - ['1915081479'] = { Name = 'prop_snow_bailer_01' }, - ['903076338'] = { Name = 'prop_snow_barrel_pile_03' }, - ['1544445682'] = { Name = 'prop_snow_bench_01' }, - ['2012837021'] = { Name = 'prop_snow_bin_01' }, - ['173513051'] = { Name = 'prop_snow_bin_02' }, - ['-1436938693'] = { Name = 'prop_snow_bush_01_a' }, - ['739293418'] = { Name = 'prop_snow_bush_02_a' }, - ['1017666073'] = { Name = 'prop_snow_bush_02_b' }, - ['443483936'] = { Name = 'prop_snow_bush_03' }, - ['1235412359'] = { Name = 'prop_snow_bush_04' }, - ['1638772241'] = { Name = 'prop_snow_bush_04b' }, - ['1382242693'] = { Name = 'prop_snow_cam_03' }, - ['1849991131'] = { Name = 'prop_snow_cam_03a' }, - ['1291938645'] = { Name = 'prop_snow_diggerbkt_01' }, - ['-1587184881'] = { Name = 'prop_snow_dumpster_01' }, - ['-871648433'] = { Name = 'prop_snow_elecbox_16' }, - ['635680451'] = { Name = 'prop_snow_facgate_01' }, - ['-337848190'] = { Name = 'prop_snow_field_01' }, - ['562447320'] = { Name = 'prop_snow_field_02' }, - ['1053589092'] = { Name = 'prop_snow_field_03' }, - ['81496707'] = { Name = 'prop_snow_field_04' }, - ['176971574'] = { Name = 'prop_snow_flower_01' }, - ['-1676901836'] = { Name = 'prop_snow_flower_02' }, - ['1162298325'] = { Name = 'prop_snow_fnc_01' }, - ['-515818037'] = { Name = 'prop_snow_fnclink_03crnr2' }, - ['-1863772065'] = { Name = 'prop_snow_fnclink_03h' }, - ['49970308'] = { Name = 'prop_snow_fnclink_03i' }, - ['392997700'] = { Name = 'prop_snow_fncwood_14a' }, - ['-1712213940'] = { Name = 'prop_snow_fncwood_14b' }, - ['1907318728'] = { Name = 'prop_snow_fncwood_14c' }, - ['2127100411'] = { Name = 'prop_snow_fncwood_14d' }, - ['1410835609'] = { Name = 'prop_snow_fncwood_14e' }, - ['-99254484'] = { Name = 'prop_snow_gate_farm_03' }, - ['-1331473695'] = { Name = 'prop_snow_grain_01' }, - ['-924743781'] = { Name = 'prop_snow_grass_01' }, - ['2049774069'] = { Name = 'prop_snow_light_01' }, - ['1363875138'] = { Name = 'prop_snow_oldlight_01b' }, - ['873869803'] = { Name = 'prop_snow_rail_signals02' }, - ['147102372'] = { Name = 'prop_snow_rub_trukwreck_2' }, - ['-351262629'] = { Name = 'prop_snow_side_spreader_01' }, - ['962570067'] = { Name = 'prop_snow_sign_road_01a' }, - ['-2065375912'] = { Name = 'prop_snow_sign_road_06e' }, - ['-1124643460'] = { Name = 'prop_snow_sign_road_06g' }, - ['-692954963'] = { Name = 'prop_snow_streetlight_01_frag_' }, - ['-996428325'] = { Name = 'prop_snow_streetlight_09' }, - ['-1486404392'] = { Name = 'prop_snow_streetlight01' }, - ['-698339330'] = { Name = 'prop_snow_sub_frame_01a' }, - ['443492491'] = { Name = 'prop_snow_sub_frame_04b' }, - ['558395118'] = { Name = 'prop_snow_t_ml_01' }, - ['185221746'] = { Name = 'prop_snow_t_ml_02' }, - ['73184535'] = { Name = 'prop_snow_t_ml_03' }, - ['76677081'] = { Name = 'prop_snow_t_ml_cscene' }, - ['-409826211'] = { Name = 'prop_snow_telegraph_01a' }, - ['-1272339428'] = { Name = 'prop_snow_telegraph_02a' }, - ['-801765866'] = { Name = 'prop_snow_telegraph_03' }, - ['229526925'] = { Name = 'prop_snow_traffic_rail_1a' }, - ['1073918521'] = { Name = 'prop_snow_traffic_rail_1b' }, - ['-1367245739'] = { Name = 'prop_snow_trailer01' }, - ['1830560242'] = { Name = 'prop_snow_tree_03_e' }, - ['546277594'] = { Name = 'prop_snow_tree_03_h' }, - ['905229220'] = { Name = 'prop_snow_tree_03_i' }, - ['-27978499'] = { Name = 'prop_snow_tree_04_d' }, - ['565828550'] = { Name = 'prop_snow_tree_04_f' }, - ['549555408'] = { Name = 'prop_snow_truktrailer_01a' }, - ['1408048185'] = { Name = 'prop_snow_tyre_01' }, - ['-508577929'] = { Name = 'prop_snow_wall_light_09a' }, - ['1219140462'] = { Name = 'prop_snow_wall_light_15a' }, - ['953081984'] = { Name = 'prop_snow_watertower01_l2' }, - ['-1512529268'] = { Name = 'prop_snow_watertower01' }, - ['-901878953'] = { Name = 'prop_snow_watertower03' }, - ['1360389234'] = { Name = 'prop_snow_woodpile_04a' }, - ['-1225719104'] = { Name = 'prop_snow_xmas_cards_01' }, - ['-1928024340'] = { Name = 'prop_snow_xmas_cards_02' }, - ['1823805071'] = { Name = 'prop_soap_disp_01' }, - ['-838086337'] = { Name = 'prop_soap_disp_02' }, - ['-524841151'] = { Name = 'prop_sock_box_01' }, - ['-1633198649'] = { Name = 'prop_sol_chair' }, - ['86768762'] = { Name = 'prop_solarpanel_01' }, - ['-759326818'] = { Name = 'prop_solarpanel_02' }, - ['61929864'] = { Name = 'prop_solarpanel_03' }, - ['-1114972153'] = { Name = 'prop_space_pistol' }, - ['1792222914'] = { Name = 'prop_space_rifle' }, - ['-968169310'] = { Name = 'prop_speaker_01' }, - ['2112313308'] = { Name = 'prop_speaker_02' }, - ['-1474974664'] = { Name = 'prop_speaker_03' }, - ['-1885111468'] = { Name = 'prop_speaker_05' }, - ['1126163022'] = { Name = 'prop_speaker_06' }, - ['1902132942'] = { Name = 'prop_speaker_07' }, - ['648227157'] = { Name = 'prop_speaker_08' }, - ['-157791115'] = { Name = 'prop_speedball_01' }, - ['-678752633'] = { Name = 'prop_sponge_01' }, - ['1157292806'] = { Name = 'prop_sports_clock_01' }, - ['1400279820'] = { Name = 'prop_spot_01' }, - ['1345719963'] = { Name = 'prop_spot_clamp_02' }, - ['127052170'] = { Name = 'prop_spot_clamp' }, - ['-1462085431'] = { Name = 'prop_spray_backpack_01' }, - ['1420515116'] = { Name = 'prop_spray_jackframe' }, - ['-1491499226'] = { Name = 'prop_spray_jackleg' }, - ['291444619'] = { Name = 'prop_sprayer' }, - ['-640983710'] = { Name = 'prop_spraygun_01' }, - ['-1625163671'] = { Name = 'prop_sprink_crop_01' }, - ['1864388154'] = { Name = 'prop_sprink_golf_01' }, - ['946782395'] = { Name = 'prop_sprink_park_01' }, - ['-203475463'] = { Name = 'prop_spycam' }, - ['1881787435'] = { Name = 'prop_squeegee' }, - ['1818395686'] = { Name = 'prop_ss1_05_mp_door' }, - ['2049718375'] = { Name = 'prop_ss1_08_mp_door_l' }, - ['216030657'] = { Name = 'prop_ss1_08_mp_door_r' }, - ['-2076287065'] = { Name = 'prop_ss1_10_door_l' }, - ['-374527357'] = { Name = 'prop_ss1_10_door_r' }, - ['-1857663329'] = { Name = 'prop_ss1_14_garage_door' }, - ['-1867159867'] = { Name = 'prop_ss1_mpint_door_l' }, - ['911651337'] = { Name = 'prop_ss1_mpint_door_r' }, - ['-493122268'] = { Name = 'prop_ss1_mpint_garage_cl' }, - ['-1212944997'] = { Name = 'prop_ss1_mpint_garage' }, - ['-1145063624'] = { Name = 'prop_stag_do_rope' }, - ['-2013109097'] = { Name = 'prop_starfish_01' }, - ['1976746040'] = { Name = 'prop_starfish_02' }, - ['748957148'] = { Name = 'prop_starfish_03' }, - ['-1157901789'] = { Name = 'prop_start_finish_line_01' }, - ['-183132887'] = { Name = 'prop_start_gate_01' }, - ['690751374'] = { Name = 'prop_start_gate_01b' }, - ['-221765270'] = { Name = 'prop_start_grid_01' }, - ['1099032664'] = { Name = 'prop_stat_pack_01' }, - ['-2102670060'] = { Name = 'prop_staticmixer_01' }, - ['1180729823'] = { Name = 'prop_steam_basket_01' }, - ['1478108498'] = { Name = 'prop_steam_basket_02' }, - ['-1033361631'] = { Name = 'prop_steps_big_01' }, - ['512062897'] = { Name = 'prop_stickbfly' }, - ['553845503'] = { Name = 'prop_stickhbird' }, - ['-274348208'] = { Name = 'prop_still' }, - ['311714906'] = { Name = 'prop_stockade_wheel_flat' }, - ['-890463279'] = { Name = 'prop_stockade_wheel' }, - ['-1027805354'] = { Name = 'prop_stoneshroom1' }, - ['1358072771'] = { Name = 'prop_stoneshroom2' }, - ['1130482396'] = { Name = 'prop_stool_01' }, - ['-1873238189'] = { Name = 'prop_storagetank_01_cr' }, - ['792791774'] = { Name = 'prop_storagetank_01' }, - ['1115304272'] = { Name = 'prop_storagetank_02' }, - ['1890640474'] = { Name = 'prop_storagetank_02b' }, - ['416210422'] = { Name = 'prop_storagetank_03' }, - ['1977052615'] = { Name = 'prop_storagetank_03a' }, - ['1747145311'] = { Name = 'prop_storagetank_03b' }, - ['638679163'] = { Name = 'prop_storagetank_04' }, - ['383146481'] = { Name = 'prop_storagetank_05' }, - ['-334560157'] = { Name = 'prop_storagetank_06' }, - ['1897886171'] = { Name = 'prop_storagetank_07a' }, - ['-1063472968'] = { Name = 'prop_streetlight_01' }, - ['1821241621'] = { Name = 'prop_streetlight_01b' }, - ['-1222468156'] = { Name = 'prop_streetlight_02' }, - ['729253480'] = { Name = 'prop_streetlight_03' }, - ['1327054116'] = { Name = 'prop_streetlight_03b' }, - ['1021745343'] = { Name = 'prop_streetlight_03c' }, - ['-1114695146'] = { Name = 'prop_streetlight_03d' }, - ['-1454378608'] = { Name = 'prop_streetlight_03e' }, - ['431612653'] = { Name = 'prop_streetlight_04' }, - ['326972916'] = { Name = 'prop_streetlight_05_b' }, - ['267702115'] = { Name = 'prop_streetlight_05' }, - ['-30528554'] = { Name = 'prop_streetlight_06' }, - ['-365135956'] = { Name = 'prop_streetlight_07a' }, - ['-614573584'] = { Name = 'prop_streetlight_07b' }, - ['1847069612'] = { Name = 'prop_streetlight_08' }, - ['1380570124'] = { Name = 'prop_streetlight_09' }, - ['-214501064'] = { Name = 'prop_streetlight_10' }, - ['173177608'] = { Name = 'prop_streetlight_11a' }, - ['-1684988513'] = { Name = 'prop_streetlight_11b' }, - ['-1529663453'] = { Name = 'prop_streetlight_11c' }, - ['-1332492740'] = { Name = 'prop_streetlight_12a' }, - ['-1978238654'] = { Name = 'prop_streetlight_12b' }, - ['681787797'] = { Name = 'prop_streetlight_14a' }, - ['-507269705'] = { Name = 'prop_streetlight_15a' }, - ['-1080006443'] = { Name = 'prop_streetlight_16a' }, - ['-1116041313'] = { Name = 'prop_strip_door_01' }, - ['2088900873'] = { Name = 'prop_strip_pole_01' }, - ['1529403367'] = { Name = 'prop_stripmenu' }, - ['-3921994'] = { Name = 'prop_stripset' }, - ['2074531687'] = { Name = 'prop_studio_light_01' }, - ['1776497632'] = { Name = 'prop_studio_light_02' }, - ['-2120293549'] = { Name = 'prop_studio_light_03' }, - ['-2086291435'] = { Name = 'prop_sub_chunk_01' }, - ['493317742'] = { Name = 'prop_sub_cover_01' }, - ['-2128680992'] = { Name = 'prop_sub_crane_hook' }, - ['-746947486'] = { Name = 'prop_sub_frame_01a' }, - ['-1103080978'] = { Name = 'prop_sub_frame_01b' }, - ['1899182025'] = { Name = 'prop_sub_frame_01c' }, - ['-1130344490'] = { Name = 'prop_sub_frame_02a' }, - ['681419899'] = { Name = 'prop_sub_frame_03a' }, - ['-1076177897'] = { Name = 'prop_sub_frame_04a' }, - ['-837455732'] = { Name = 'prop_sub_frame_04b' }, - ['-1116128604'] = { Name = 'prop_sub_gantry' }, - ['-1663877307'] = { Name = 'prop_sub_release' }, - ['-525926661'] = { Name = 'prop_sub_trans_01a' }, - ['1870961552'] = { Name = 'prop_sub_trans_02a' }, - ['900310739'] = { Name = 'prop_sub_trans_03a' }, - ['1464363276'] = { Name = 'prop_sub_trans_04a' }, - ['140757512'] = { Name = 'prop_sub_trans_05b' }, - ['-1968414405'] = { Name = 'prop_sub_trans_06b' }, - ['1184436308'] = { Name = 'prop_suitcase_01' }, - ['1622603823'] = { Name = 'prop_suitcase_01b' }, - ['-214655688'] = { Name = 'prop_suitcase_01c' }, - ['-177495642'] = { Name = 'prop_suitcase_01d' }, - ['623955332'] = { Name = 'prop_suitcase_02' }, - ['826992056'] = { Name = 'prop_suitcase_03' }, - ['-1460271444'] = { Name = 'prop_suitcase_03b' }, - ['59140280'] = { Name = 'prop_surf_board_01' }, - ['-105032410'] = { Name = 'prop_surf_board_02' }, - ['644198006'] = { Name = 'prop_surf_board_03' }, - ['344984267'] = { Name = 'prop_surf_board_04' }, - ['506946533'] = { Name = 'prop_surf_board_ldn_01' }, - ['246006942'] = { Name = 'prop_surf_board_ldn_02' }, - ['687012144'] = { Name = 'prop_surf_board_ldn_03' }, - ['-1154114121'] = { Name = 'prop_surf_board_ldn_04' }, - ['-131025346'] = { Name = 'prop_swiss_ball_01' }, - ['-61966571'] = { Name = 'prop_syringe_01' }, - ['-386283689'] = { Name = 'prop_t_coffe_table_02' }, - ['502827120'] = { Name = 'prop_t_coffe_table' }, - ['465647765'] = { Name = 'prop_t_shirt_ironing' }, - ['647052434'] = { Name = 'prop_t_shirt_row_01' }, - ['342136889'] = { Name = 'prop_t_shirt_row_02' }, - ['193415603'] = { Name = 'prop_t_shirt_row_02b' }, - ['-63346721'] = { Name = 'prop_t_shirt_row_03' }, - ['-371080400'] = { Name = 'prop_t_shirt_row_04' }, - ['1109832849'] = { Name = 'prop_t_shirt_row_05l' }, - ['-1826761078'] = { Name = 'prop_t_shirt_row_05r' }, - ['1088478360'] = { Name = 'prop_t_sofa_02' }, - ['-1964110779'] = { Name = 'prop_t_sofa' }, - ['-656927072'] = { Name = 'prop_t_telescope_01b' }, - ['-1521264200'] = { Name = 'prop_table_01_chr_a' }, - ['-1235256368'] = { Name = 'prop_table_01_chr_b' }, - ['-207026330'] = { Name = 'prop_table_01' }, - ['-1761659350'] = { Name = 'prop_table_02_chr' }, - ['702477265'] = { Name = 'prop_table_02' }, - ['-741944541'] = { Name = 'prop_table_03_chr' }, - ['386059801'] = { Name = 'prop_table_03' }, - ['146905321'] = { Name = 'prop_table_03b_chr' }, - ['-1462060028'] = { Name = 'prop_table_03b_cs' }, - ['-380698483'] = { Name = 'prop_table_03b' }, - ['1404176808'] = { Name = 'prop_table_04_chr' }, - ['794001094'] = { Name = 'prop_table_04' }, - ['47332588'] = { Name = 'prop_table_05_chr' }, - ['487905865'] = { Name = 'prop_table_05' }, - ['-2016553006'] = { Name = 'prop_table_06_chr' }, - ['1350713635'] = { Name = 'prop_table_06' }, - ['-1188005325'] = { Name = 'prop_table_07_l1' }, - ['1051204975'] = { Name = 'prop_table_07' }, - ['-232870343'] = { Name = 'prop_table_08_chr' }, - ['-46621628'] = { Name = 'prop_table_08_side' }, - ['1982532724'] = { Name = 'prop_table_08' }, - ['-219578277'] = { Name = 'prop_table_mic_01' }, - ['509106503'] = { Name = 'prop_table_para_comb_01' }, - ['816905720'] = { Name = 'prop_table_para_comb_02' }, - ['-40724548'] = { Name = 'prop_table_para_comb_03' }, - ['-679720048'] = { Name = 'prop_table_para_comb_04' }, - ['-382013683'] = { Name = 'prop_table_para_comb_05' }, - ['909487668'] = { Name = 'prop_table_ten_bat' }, - ['-692384911'] = { Name = 'prop_table_tennis' }, - ['-326606499'] = { Name = 'prop_tablesaw_01' }, - ['1981475410'] = { Name = 'prop_tablesmall_01' }, - ['1655278098'] = { Name = 'prop_taco_01' }, - ['1968648045'] = { Name = 'prop_taco_02' }, - ['959623711'] = { Name = 'prop_tail_gate_col' }, - ['-1851944363'] = { Name = 'prop_tall_drygrass_aa' }, - ['1943033760'] = { Name = 'prop_tall_glass' }, - ['-2139632096'] = { Name = 'prop_tall_grass_ba' }, - ['-531344027'] = { Name = 'prop_tanktrailer_01a' }, - ['-1999188639'] = { Name = 'prop_tapeplayer_01' }, - ['-1625479312'] = { Name = 'prop_target_arm_b' }, - ['-1142744341'] = { Name = 'prop_target_arm_long' }, - ['-1377695428'] = { Name = 'prop_target_arm_sm' }, - ['-1727683449'] = { Name = 'prop_target_arm' }, - ['-121801331'] = { Name = 'prop_target_backboard_b' }, - ['1531278693'] = { Name = 'prop_target_backboard' }, - ['1698512660'] = { Name = 'prop_target_blue_arrow' }, - ['520020464'] = { Name = 'prop_target_blue' }, - ['1806541954'] = { Name = 'prop_target_bull_b' }, - ['1994234085'] = { Name = 'prop_target_bull' }, - ['597152946'] = { Name = 'prop_target_comp_metal' }, - ['-66869463'] = { Name = 'prop_target_comp_wood' }, - ['-295816636'] = { Name = 'prop_target_frag_board' }, - ['-1020646305'] = { Name = 'prop_target_frame_01' }, - ['-1365850513'] = { Name = 'prop_target_inner_b' }, - ['1074322985'] = { Name = 'prop_target_inner1' }, - ['-22604388'] = { Name = 'prop_target_inner2_b' }, - ['1312193156'] = { Name = 'prop_target_inner2' }, - ['1169744207'] = { Name = 'prop_target_inner3_b' }, - ['1553176382'] = { Name = 'prop_target_inner3' }, - ['949702051'] = { Name = 'prop_target_ora_purp_01' }, - ['-1373134080'] = { Name = 'prop_target_oran_cross' }, - ['-2006859820'] = { Name = 'prop_target_orange_arrow' }, - ['1598655701'] = { Name = 'prop_target_purp_arrow' }, - ['784977997'] = { Name = 'prop_target_purp_cross' }, - ['180220464'] = { Name = 'prop_target_red_arrow' }, - ['-3877305'] = { Name = 'prop_target_red_blue_01' }, - ['1681797341'] = { Name = 'prop_target_red_cross' }, - ['485206839'] = { Name = 'prop_target_red' }, - ['-1232780856'] = { Name = 'prop_tarp_strap' }, - ['1867913151'] = { Name = 'prop_taxi_meter_1' }, - ['-232645291'] = { Name = 'prop_taxi_meter_2' }, - ['1553744564'] = { Name = 'prop_tea_trolly' }, - ['603786675'] = { Name = 'prop_tea_urn' }, - ['44758414'] = { Name = 'prop_telegraph_01a' }, - ['337057898'] = { Name = 'prop_telegraph_01b' }, - ['643087589'] = { Name = 'prop_telegraph_01c' }, - ['1782596803'] = { Name = 'prop_telegraph_01d' }, - ['2013454408'] = { Name = 'prop_telegraph_01e' }, - ['-1894576532'] = { Name = 'prop_telegraph_01f' }, - ['-1664177693'] = { Name = 'prop_telegraph_01g' }, - ['312449251'] = { Name = 'prop_telegraph_02a' }, - ['1044049945'] = { Name = 'prop_telegraph_02b' }, - ['-1222487368'] = { Name = 'prop_telegraph_03' }, - ['2043798770'] = { Name = 'prop_telegraph_04a' }, - ['-1383773092'] = { Name = 'prop_telegraph_04b' }, - ['658916172'] = { Name = 'prop_telegraph_05a' }, - ['573389082'] = { Name = 'prop_telegraph_05b' }, - ['131794038'] = { Name = 'prop_telegraph_05c' }, - ['2033510992'] = { Name = 'prop_telegraph_06a' }, - ['-1600276187'] = { Name = 'prop_telegraph_06b' }, - ['-1898474087'] = { Name = 'prop_telegraph_06c' }, - ['729614651'] = { Name = 'prop_telegwall_01a' }, - ['940581473'] = { Name = 'prop_telegwall_01b' }, - ['-432605400'] = { Name = 'prop_telegwall_02a' }, - ['-1288958521'] = { Name = 'prop_telegwall_03a' }, - ['552167744'] = { Name = 'prop_telegwall_03b' }, - ['-357761560'] = { Name = 'prop_telegwall_04a' }, - ['1186047406'] = { Name = 'prop_telescope_01' }, - ['844159446'] = { Name = 'prop_telescope' }, - ['-151113999'] = { Name = 'prop_temp_block_blocker' }, - ['552807189'] = { Name = 'prop_temp_carrier' }, - ['-1641715447'] = { Name = 'prop_tennis_bag_01' }, - ['2142056602'] = { Name = 'prop_tennis_ball_lobber' }, - ['-1720813907'] = { Name = 'prop_tennis_ball' }, - ['1188107761'] = { Name = 'prop_tennis_net_01' }, - ['2052737670'] = { Name = 'prop_tennis_rack_01' }, - ['-1085743389'] = { Name = 'prop_tennis_rack_01b' }, - ['-551366296'] = { Name = 'prop_tequila_bottle' }, - ['1673852595'] = { Name = 'prop_tequila' }, - ['-1632046606'] = { Name = 'prop_tequsunrise' }, - ['-357480896'] = { Name = 'prop_test_bed' }, - ['160789653'] = { Name = 'prop_test_boulder_01' }, - ['390860802'] = { Name = 'prop_test_boulder_02' }, - ['773471646'] = { Name = 'prop_test_boulder_03' }, - ['899107992'] = { Name = 'prop_test_boulder_04' }, - ['-1693574816'] = { Name = 'prop_test_elevator_dl' }, - ['1839251074'] = { Name = 'prop_test_elevator_dr' }, - ['251770068'] = { Name = 'prop_test_elevator' }, - ['-297314236'] = { Name = 'prop_test_rocks01' }, - ['-1601356591'] = { Name = 'prop_test_rocks02' }, - ['-1968566005'] = { Name = 'prop_test_rocks03' }, - ['122030657'] = { Name = 'prop_test_rocks04' }, - ['191758891'] = { Name = 'prop_test_sandcas_002' }, - ['1149510719'] = { Name = 'prop_thindesertfiller_aa' }, - ['743182023'] = { Name = 'prop_tick_02' }, - ['-1093265220'] = { Name = 'prop_tick' }, - ['-354930144'] = { Name = 'prop_till_01_dam' }, - ['303280717'] = { Name = 'prop_till_01' }, - ['534367705'] = { Name = 'prop_till_02' }, - ['759654580'] = { Name = 'prop_till_03' }, - ['-1176957578'] = { Name = 'prop_time_capsule_01' }, - ['787272080'] = { Name = 'prop_tint_towel' }, - ['-179254208'] = { Name = 'prop_tint_towels_01' }, - ['-2126169243'] = { Name = 'prop_tint_towels_01b' }, - ['1697216212'] = { Name = 'prop_toaster_01' }, - ['1055533654'] = { Name = 'prop_toaster_02' }, - ['-930879665'] = { Name = 'prop_toilet_01' }, - ['-1228586030'] = { Name = 'prop_toilet_02' }, - ['-1410060752'] = { Name = 'prop_toilet_03' }, - ['139983360'] = { Name = 'prop_toilet_brush_01' }, - ['1279857212'] = { Name = 'prop_toilet_cube_01' }, - ['806607070'] = { Name = 'prop_toilet_cube_02' }, - ['-217671688'] = { Name = 'prop_toilet_roll_01' }, - ['-468616690'] = { Name = 'prop_toilet_roll_02' }, - ['-699146605'] = { Name = 'prop_toilet_roll_03' }, - ['1793001351'] = { Name = 'prop_toilet_roll_04' }, - ['2000199738'] = { Name = 'prop_toilet_roll_05' }, - ['1564445728'] = { Name = 'prop_toilet_shamp_01' }, - ['1392670630'] = { Name = 'prop_toilet_shamp_02' }, - ['-546701982'] = { Name = 'prop_toilet_soap_01' }, - ['-802201875'] = { Name = 'prop_toilet_soap_02' }, - ['-1165675623'] = { Name = 'prop_toilet_soap_03' }, - ['-1404987630'] = { Name = 'prop_toilet_soap_04' }, - ['-2059029335'] = { Name = 'prop_toiletfoot_static' }, - ['260517631'] = { Name = 'prop_tollbooth_1' }, - ['-533884656'] = { Name = 'prop_tool_adjspanner' }, - ['732255442'] = { Name = 'prop_tool_bench01' }, - ['31071109'] = { Name = 'prop_tool_bench02_ld' }, - ['904554844'] = { Name = 'prop_tool_bench02' }, - ['896078401'] = { Name = 'prop_tool_blowtorch' }, - ['-2039574742'] = { Name = 'prop_tool_bluepnt' }, - ['887694239'] = { Name = 'prop_tool_box_01' }, - ['648185618'] = { Name = 'prop_tool_box_02' }, - ['-1784486639'] = { Name = 'prop_tool_box_03' }, - ['-1972842851'] = { Name = 'prop_tool_box_04' }, - ['-424507601'] = { Name = 'prop_tool_box_05' }, - ['1467574459'] = { Name = 'prop_tool_box_06' }, - ['1248317080'] = { Name = 'prop_tool_box_07' }, - ['-113902346'] = { Name = 'prop_tool_broom' }, - ['1990201466'] = { Name = 'prop_tool_broom2_l1' }, - ['1689385044'] = { Name = 'prop_tool_broom2' }, - ['-1960568157'] = { Name = 'prop_tool_cable01' }, - ['-1119158544'] = { Name = 'prop_tool_cable02' }, - ['2115125482'] = { Name = 'prop_tool_consaw' }, - ['1610146834'] = { Name = 'prop_tool_drill' }, - ['-1152027126'] = { Name = 'prop_tool_fireaxe' }, - ['-127739306'] = { Name = 'prop_tool_hammer' }, - ['-246563715'] = { Name = 'prop_tool_hardhat' }, - ['1360563376'] = { Name = 'prop_tool_jackham' }, - ['-1187684779'] = { Name = 'prop_tool_mallet' }, - ['1623033797'] = { Name = 'prop_tool_mopbucket' }, - ['1854391800'] = { Name = 'prop_tool_nailgun' }, - ['260873931'] = { Name = 'prop_tool_pickaxe' }, - ['-548333345'] = { Name = 'prop_tool_pliers' }, - ['434666704'] = { Name = 'prop_tool_rake_l1' }, - ['-1855416667'] = { Name = 'prop_tool_rake' }, - ['-358944507'] = { Name = 'prop_tool_sawhorse' }, - ['-1323607904'] = { Name = 'prop_tool_screwdvr01' }, - ['-910882349'] = { Name = 'prop_tool_screwdvr02' }, - ['1054209047'] = { Name = 'prop_tool_screwdvr03' }, - ['-531179099'] = { Name = 'prop_tool_shovel' }, - ['1594770590'] = { Name = 'prop_tool_shovel006' }, - ['2144550976'] = { Name = 'prop_tool_shovel2' }, - ['-1095320058'] = { Name = 'prop_tool_shovel3' }, - ['-1386603699'] = { Name = 'prop_tool_shovel4' }, - ['-617580807'] = { Name = 'prop_tool_shovel5' }, - ['58886654'] = { Name = 'prop_tool_sledgeham' }, - ['-2050576199'] = { Name = 'prop_tool_spanner01' }, - ['1996755764'] = { Name = 'prop_tool_spanner02' }, - ['-1840363064'] = { Name = 'prop_tool_spanner03' }, - ['1751718740'] = { Name = 'prop_tool_torch' }, - ['10555072'] = { Name = 'prop_tool_wrench' }, - ['-1674314660'] = { Name = 'prop_toolchest_01' }, - ['-1326111298'] = { Name = 'prop_toolchest_02' }, - ['-1485840051'] = { Name = 'prop_toolchest_03_l2' }, - ['-2111846380'] = { Name = 'prop_toolchest_03' }, - ['-866263921'] = { Name = 'prop_toolchest_04' }, - ['-573669520'] = { Name = 'prop_toolchest_05' }, - ['829211247'] = { Name = 'prop_toothb_cup_01' }, - ['-1664982460'] = { Name = 'prop_toothbrush_01' }, - ['-1643959453'] = { Name = 'prop_toothpaste_01' }, - ['814150459'] = { Name = 'prop_tornado_wheel' }, - ['-835068288'] = { Name = 'prop_torture_01' }, - ['1716133836'] = { Name = 'prop_torture_ch_01' }, - ['-645296272'] = { Name = 'prop_tourist_map_01' }, - ['-1391719270'] = { Name = 'prop_towel_01' }, - ['38324630'] = { Name = 'prop_towel_rail_01' }, - ['337341755'] = { Name = 'prop_towel_rail_02' }, - ['1902578957'] = { Name = 'prop_towel_shelf_01' }, - ['1415168320'] = { Name = 'prop_towel_small_01' }, - ['-1633398718'] = { Name = 'prop_towel2_01' }, - ['566679177'] = { Name = 'prop_towel2_02' }, - ['60858040'] = { Name = 'prop_towercrane_01a' }, - ['1681875160'] = { Name = 'prop_towercrane_02a' }, - ['494228293'] = { Name = 'prop_towercrane_02b' }, - ['263894992'] = { Name = 'prop_towercrane_02c' }, - ['1163207500'] = { Name = 'prop_towercrane_02d' }, - ['1613519098'] = { Name = 'prop_towercrane_02e' }, - ['-1526981220'] = { Name = 'prop_towercrane_02el' }, - ['1122863164'] = { Name = 'prop_towercrane_02el2' }, - ['1043035044'] = { Name = 'prop_traffic_01a' }, - ['862871082'] = { Name = 'prop_traffic_01b' }, - ['-655644382'] = { Name = 'prop_traffic_01d' }, - ['-730685616'] = { Name = 'prop_traffic_02a' }, - ['656557234'] = { Name = 'prop_traffic_02b' }, - ['865627822'] = { Name = 'prop_traffic_03a' }, - ['589548997'] = { Name = 'prop_traffic_03b' }, - ['-1535830511'] = { Name = 'prop_traffic_lightset_01' }, - ['-945465914'] = { Name = 'prop_traffic_rail_1a' }, - ['-925181899'] = { Name = 'prop_traffic_rail_1c' }, - ['-2065691369'] = { Name = 'prop_traffic_rail_2' }, - ['-22216529'] = { Name = 'prop_traffic_rail_3' }, - ['1560354582'] = { Name = 'prop_trafficdiv_01' }, - ['-1967654269'] = { Name = 'prop_trafficdiv_02' }, - ['899858262'] = { Name = 'prop_trailer_01_new' }, - ['1015012981'] = { Name = 'prop_trailer_door_closed' }, - ['-1461908217'] = { Name = 'prop_trailer_door_open' }, - ['-1495726010'] = { Name = 'prop_trailer_monitor_01' }, - ['1914490036'] = { Name = 'prop_trailer01_up' }, - ['483393123'] = { Name = 'prop_trailer01' }, - ['1033239239'] = { Name = 'prop_trailr_backside' }, - ['1465091378'] = { Name = 'prop_trailr_base_static' }, - ['279651793'] = { Name = 'prop_trailr_base' }, - ['-1711381475'] = { Name = 'prop_trailr_fridge' }, - ['1134178299'] = { Name = 'prop_trailr_porch1' }, - ['-455396574'] = { Name = 'prop_train_ticket_02_tu' }, - ['-1700277466'] = { Name = 'prop_train_ticket_02' }, - ['-1279684868'] = { Name = 'prop_tram_pole_double01' }, - ['923047320'] = { Name = 'prop_tram_pole_double02' }, - ['1156788597'] = { Name = 'prop_tram_pole_double03' }, - ['393610914'] = { Name = 'prop_tram_pole_roadside' }, - ['1799608506'] = { Name = 'prop_tram_pole_single01' }, - ['-1669416145'] = { Name = 'prop_tram_pole_single02' }, - ['-179487766'] = { Name = 'prop_tram_pole_wide01' }, - ['-947490680'] = { Name = 'prop_tree_birch_01' }, - ['-1170418187'] = { Name = 'prop_tree_birch_02' }, - ['977294842'] = { Name = 'prop_tree_birch_03' }, - ['-1286228176'] = { Name = 'prop_tree_birch_03b' }, - ['376901224'] = { Name = 'prop_tree_birch_04' }, - ['10609342'] = { Name = 'prop_tree_birch_05' }, - ['-2114297789'] = { Name = 'prop_tree_cedar_02' }, - ['1958725070'] = { Name = 'prop_tree_cedar_03' }, - ['1768206104'] = { Name = 'prop_tree_cedar_04' }, - ['-1272652611'] = { Name = 'prop_tree_cedar_s_01' }, - ['1600467771'] = { Name = 'prop_tree_cedar_s_02' }, - ['-844656702'] = { Name = 'prop_tree_cedar_s_04' }, - ['-148774218'] = { Name = 'prop_tree_cedar_s_05' }, - ['-429702855'] = { Name = 'prop_tree_cedar_s_06' }, - ['1314228253'] = { Name = 'prop_tree_cypress_01' }, - ['-567386505'] = { Name = 'prop_tree_eng_oak_01' }, - ['-1279773008'] = { Name = 'prop_tree_eng_oak_cr2' }, - ['1204839864'] = { Name = 'prop_tree_eng_oak_creator' }, - ['2070834250'] = { Name = 'prop_tree_eucalip_01' }, - ['1192617956'] = { Name = 'prop_tree_fallen_01' }, - ['887112569'] = { Name = 'prop_tree_fallen_02' }, - ['-1180374943'] = { Name = 'prop_tree_fallen_pine_01' }, - ['-1868979192'] = { Name = 'prop_tree_jacada_01' }, - ['-1903714332'] = { Name = 'prop_tree_jacada_02' }, - ['680549965'] = { Name = 'prop_tree_lficus_02' }, - ['721117987'] = { Name = 'prop_tree_lficus_03' }, - ['1563936387'] = { Name = 'prop_tree_lficus_05' }, - ['-1978097596'] = { Name = 'prop_tree_lficus_06' }, - ['1171197889'] = { Name = 'prop_tree_log_01' }, - ['-1147503786'] = { Name = 'prop_tree_log_02' }, - ['879962411'] = { Name = 'prop_tree_maple_02' }, - ['648056198'] = { Name = 'prop_tree_maple_03' }, - ['884889652'] = { Name = 'prop_tree_mquite_01_l2' }, - ['2138424832'] = { Name = 'prop_tree_mquite_01' }, - ['381625293'] = { Name = 'prop_tree_oak_01' }, - ['1352295901'] = { Name = 'prop_tree_olive_01' }, - ['-73584559'] = { Name = 'prop_tree_olive_cr2' }, - ['-155870793'] = { Name = 'prop_tree_olive_creator' }, - ['-1605097644'] = { Name = 'prop_tree_pine_01' }, - ['1380551480'] = { Name = 'prop_tree_pine_02' }, - ['-94404248'] = { Name = 'prop_tree_stump_01' }, - ['-1221006233'] = { Name = 'prop_trev_sec_id' }, - ['1434219911'] = { Name = 'prop_trev_tv_01' }, - ['-87845850'] = { Name = 'prop_trevor_rope_01' }, - ['1977786498'] = { Name = 'prop_tri_finish_banner' }, - ['1522397599'] = { Name = 'prop_tri_pod_lod' }, - ['-117184141'] = { Name = 'prop_tri_pod' }, - ['-600593637'] = { Name = 'prop_tri_start_banner' }, - ['1566872341'] = { Name = 'prop_tri_table_01' }, - ['-701685533'] = { Name = 'prop_trials_seesaw' }, - ['1323604488'] = { Name = 'prop_trials_seesaw2' }, - ['-734735991'] = { Name = 'prop_triple_grid_line' }, - ['726619973'] = { Name = 'prop_trough1' }, - ['1152297372'] = { Name = 'prop_truktrailer_01a' }, - ['296207441'] = { Name = 'prop_tshirt_box_01' }, - ['-1478135602'] = { Name = 'prop_tshirt_box_02' }, - ['-1251029815'] = { Name = 'prop_tshirt_shelf_1' }, - ['-962367694'] = { Name = 'prop_tshirt_shelf_2' }, - ['-2048004474'] = { Name = 'prop_tshirt_shelf_2a' }, - ['1295580445'] = { Name = 'prop_tshirt_shelf_2b' }, - ['920375395'] = { Name = 'prop_tshirt_shelf_2c' }, - ['2141353603'] = { Name = 'prop_tshirt_stand_01' }, - ['1393626871'] = { Name = 'prop_tshirt_stand_01b' }, - ['233968420'] = { Name = 'prop_tshirt_stand_02' }, - ['-532760642'] = { Name = 'prop_tshirt_stand_04' }, - ['-488621636'] = { Name = 'prop_tt_screenstatic' }, - ['169137225'] = { Name = 'prop_tumbler_01_empty' }, - ['-1244923879'] = { Name = 'prop_tumbler_01' }, - ['1115870447'] = { Name = 'prop_tumbler_01b_bar' }, - ['1025792510'] = { Name = 'prop_tumbler_01b' }, - ['1231444999'] = { Name = 'prop_tunnel_liner01' }, - ['-1809321587'] = { Name = 'prop_tunnel_liner02' }, - ['639538552'] = { Name = 'prop_tunnel_liner03' }, - ['-1898057898'] = { Name = 'prop_turkey_leg_01' }, - ['-1717091240'] = { Name = 'prop_turnstyle_01' }, - ['1531047580'] = { Name = 'prop_turnstyle_bars' }, - ['-1394674526'] = { Name = 'prop_tv_01' }, - ['-2111856860'] = { Name = 'prop_tv_02' }, - ['-1724413516'] = { Name = 'prop_tv_03_overlay' }, - ['-897601557'] = { Name = 'prop_tv_03' }, - ['743076735'] = { Name = 'prop_tv_04' }, - ['-435919116'] = { Name = 'prop_tv_05' }, - ['-1211954574'] = { Name = 'prop_tv_06' }, - ['1599855009'] = { Name = 'prop_tv_07' }, - ['-1990117150'] = { Name = 'prop_tv_cabinet_03' }, - ['2065669215'] = { Name = 'prop_tv_cabinet_04' }, - ['-1513164355'] = { Name = 'prop_tv_cabinet_05' }, - ['1355733718'] = { Name = 'prop_tv_cam_02' }, - ['-1113453233'] = { Name = 'prop_tv_flat_01_screen' }, - ['1036195894'] = { Name = 'prop_tv_flat_01' }, - ['1340914825'] = { Name = 'prop_tv_flat_02' }, - ['1065897083'] = { Name = 'prop_tv_flat_02b' }, - ['1393541839'] = { Name = 'prop_tv_flat_03' }, - ['-698352776'] = { Name = 'prop_tv_flat_03b' }, - ['1194029334'] = { Name = 'prop_tv_flat_michael' }, - ['1298316891'] = { Name = 'prop_tv_screeen_sign' }, - ['1444640441'] = { Name = 'prop_tv_stand_01' }, - ['1553931317'] = { Name = 'prop_tv_test' }, - ['132494565'] = { Name = 'prop_tyre_rack_01' }, - ['-57685738'] = { Name = 'prop_tyre_spike_01' }, - ['2090810892'] = { Name = 'prop_tyre_wall_01' }, - ['-1082910619'] = { Name = 'prop_tyre_wall_01b' }, - ['776861087'] = { Name = 'prop_tyre_wall_01c' }, - ['-905357089'] = { Name = 'prop_tyre_wall_02' }, - ['159919520'] = { Name = 'prop_tyre_wall_02b' }, - ['-160036996'] = { Name = 'prop_tyre_wall_02c' }, - ['-666143389'] = { Name = 'prop_tyre_wall_03' }, - ['690613779'] = { Name = 'prop_tyre_wall_03b' }, - ['-140899596'] = { Name = 'prop_tyre_wall_03c' }, - ['1465709448'] = { Name = 'prop_tyre_wall_04' }, - ['631705629'] = { Name = 'prop_tyre_wall_05' }, - ['-826852533'] = { Name = 'prop_umpire_01' }, - ['-1357436528'] = { Name = 'prop_utensil' }, - ['763497189'] = { Name = 'prop_v_15_cars_clock' }, - ['1623304263'] = { Name = 'prop_v_5_bclock' }, - ['-290464389'] = { Name = 'prop_v_bmike_01' }, - ['-206866686'] = { Name = 'prop_v_cam_01' }, - ['1427153555'] = { Name = 'prop_v_door_44' }, - ['-1137425659'] = { Name = 'prop_v_hook_s' }, - ['1298935678'] = { Name = 'prop_v_m_phone_01' }, - ['1142221529'] = { Name = 'prop_v_m_phone_o1s' }, - ['1654893215'] = { Name = 'prop_v_parachute' }, - ['1652730148'] = { Name = 'prop_valet_01' }, - ['-2086179979'] = { Name = 'prop_valet_02' }, - ['1902790395'] = { Name = 'prop_valet_03' }, - ['1710403596'] = { Name = 'prop_valet_04' }, - ['36810380'] = { Name = 'prop_vault_door_scene' }, - ['-1485006268'] = { Name = 'prop_vault_shutter' }, - ['1209027853'] = { Name = 'prop_vb_34_tencrt_lighting' }, - ['330240957'] = { Name = 'prop_vcr_01' }, - ['-2098052468'] = { Name = 'prop_veg_corn_01' }, - ['-1007446468'] = { Name = 'prop_veg_crop_01' }, - ['649223100'] = { Name = 'prop_veg_crop_02' }, - ['-634939447'] = { Name = 'prop_veg_crop_03_cab' }, - ['-2084538847'] = { Name = 'prop_veg_crop_03_pump' }, - ['-1163697832'] = { Name = 'prop_veg_crop_04_leaf' }, - ['-383623015'] = { Name = 'prop_veg_crop_04' }, - ['-83295126'] = { Name = 'prop_veg_crop_05' }, - ['955777091'] = { Name = 'prop_veg_crop_06' }, - ['2007502834'] = { Name = 'prop_veg_crop_orange' }, - ['-1194920181'] = { Name = 'prop_veg_crop_tr_01' }, - ['-2040982992'] = { Name = 'prop_veg_crop_tr_02' }, - ['-62459927'] = { Name = 'prop_veg_grass_01_a' }, - ['-1634847635'] = { Name = 'prop_veg_grass_01_b' }, - ['-1933078304'] = { Name = 'prop_veg_grass_01_c' }, - ['52002182'] = { Name = 'prop_veg_grass_01_d' }, - ['-1180346286'] = { Name = 'prop_veg_grass_02_a' }, - ['-534597020'] = { Name = 'prop_vehicle_hook' }, - ['463039275'] = { Name = 'prop_ven_market_stool' }, - ['-1184096195'] = { Name = 'prop_ven_market_table1' }, - ['615030415'] = { Name = 'prop_ven_shop_1_counter' }, - ['690372739'] = { Name = 'prop_vend_coffe_01' }, - ['684389648'] = { Name = 'prop_vend_condom_01' }, - ['73774428'] = { Name = 'prop_vend_fags_01' }, - ['-1317235795'] = { Name = 'prop_vend_fridge01' }, - ['-1034034125'] = { Name = 'prop_vend_snak_01_tu' }, - ['-654402915'] = { Name = 'prop_vend_snak_01' }, - ['992069095'] = { Name = 'prop_vend_soda_01' }, - ['1114264700'] = { Name = 'prop_vend_soda_02' }, - ['1099892058'] = { Name = 'prop_vend_water_01' }, - ['-770680652'] = { Name = 'prop_venice_board_01' }, - ['-459014693'] = { Name = 'prop_venice_board_02' }, - ['-1317169265'] = { Name = 'prop_venice_board_03' }, - ['797649894'] = { Name = 'prop_venice_counter_01' }, - ['504531189'] = { Name = 'prop_venice_counter_02' }, - ['-772083517'] = { Name = 'prop_venice_counter_03' }, - ['-999336532'] = { Name = 'prop_venice_counter_04' }, - ['-1137685101'] = { Name = 'prop_venice_shop_front_01' }, - ['1544902921'] = { Name = 'prop_venice_sign_01' }, - ['410964433'] = { Name = 'prop_venice_sign_02' }, - ['172569958'] = { Name = 'prop_venice_sign_03' }, - ['1125459709'] = { Name = 'prop_venice_sign_04' }, - ['896142247'] = { Name = 'prop_venice_sign_05' }, - ['-785038521'] = { Name = 'prop_venice_sign_06' }, - ['-1016485968'] = { Name = 'prop_venice_sign_07' }, - ['-67299122'] = { Name = 'prop_venice_sign_08' }, - ['-297501339'] = { Name = 'prop_venice_sign_09' }, - ['1357036280'] = { Name = 'prop_venice_sign_10' }, - ['1049138756'] = { Name = 'prop_venice_sign_11' }, - ['1690657469'] = { Name = 'prop_venice_sign_12' }, - ['-1754871813'] = { Name = 'prop_venice_sign_14' }, - ['-2062015650'] = { Name = 'prop_venice_sign_15' }, - ['1274163475'] = { Name = 'prop_venice_sign_16' }, - ['-1465259391'] = { Name = 'prop_venice_sign_17' }, - ['-565160499'] = { Name = 'prop_venice_sign_18' }, - ['-872566488'] = { Name = 'prop_venice_sign_19' }, - ['1568391284'] = { Name = 'prop_ventsystem_01' }, - ['263824625'] = { Name = 'prop_ventsystem_02' }, - ['-1666269479'] = { Name = 'prop_ventsystem_03' }, - ['-2030791835'] = { Name = 'prop_ventsystem_04' }, - ['77391653'] = { Name = 'prop_vertdrill_01' }, - ['-409330145'] = { Name = 'prop_vinewood_sign_01' }, - ['130556722'] = { Name = 'prop_vintage_filmcan' }, - ['-462817101'] = { Name = 'prop_vintage_pump' }, - ['1925761914'] = { Name = 'prop_vodka_bottle' }, - ['-1891207956'] = { Name = 'prop_voltmeter_01' }, - ['-1609037443'] = { Name = 'prop_w_board_blank_2' }, - ['-925331707'] = { Name = 'prop_w_board_blank' }, - ['1504162505'] = { Name = 'prop_w_fountain_01' }, - ['-789123952'] = { Name = 'prop_w_me_bottle' }, - ['1725061196'] = { Name = 'prop_w_me_dagger' }, - ['173095431'] = { Name = 'prop_w_me_hatchet' }, - ['-518344816'] = { Name = 'prop_w_me_knife_01' }, - ['80813867'] = { Name = 'prop_w_r_cedar_01' }, - ['1872658008'] = { Name = 'prop_w_r_cedar_dead' }, - ['267626795'] = { Name = 'prop_wait_bench_01' }, - ['1355718178'] = { Name = 'prop_waiting_seat_01' }, - ['962420079'] = { Name = 'prop_wall_light_01a' }, - ['-1874162628'] = { Name = 'prop_wall_light_02a' }, - ['1457658556'] = { Name = 'prop_wall_light_03a' }, - ['1965446988'] = { Name = 'prop_wall_light_03b' }, - ['1402414826'] = { Name = 'prop_wall_light_04a' }, - ['1976979908'] = { Name = 'prop_wall_light_05a' }, - ['305924745'] = { Name = 'prop_wall_light_05c' }, - ['-845118873'] = { Name = 'prop_wall_light_06a' }, - ['-153364983'] = { Name = 'prop_wall_light_07a' }, - ['1917308407'] = { Name = 'prop_wall_light_08a' }, - ['959280723'] = { Name = 'prop_wall_light_09a' }, - ['200219607'] = { Name = 'prop_wall_light_09b' }, - ['-1950573712'] = { Name = 'prop_wall_light_09c' }, - ['-1645527091'] = { Name = 'prop_wall_light_09d' }, - ['-1433191435'] = { Name = 'prop_wall_light_10a' }, - ['-481743520'] = { Name = 'prop_wall_light_10b' }, - ['83521730'] = { Name = 'prop_wall_light_10c' }, - ['1610843006'] = { Name = 'prop_wall_light_11' }, - ['-1790382584'] = { Name = 'prop_wall_light_12' }, - ['-200410159'] = { Name = 'prop_wall_light_12a' }, - ['-1310188721'] = { Name = 'prop_wall_light_13_snw' }, - ['-813556366'] = { Name = 'prop_wall_light_13a' }, - ['-1928422948'] = { Name = 'prop_wall_light_14a' }, - ['1513305126'] = { Name = 'prop_wall_light_14b' }, - ['1257909556'] = { Name = 'prop_wall_light_15a' }, - ['-1765292598'] = { Name = 'prop_wall_light_16a' }, - ['-1418399964'] = { Name = 'prop_wall_light_16b' }, - ['977439937'] = { Name = 'prop_wall_light_16c' }, - ['1293333097'] = { Name = 'prop_wall_light_16d' }, - ['1608538108'] = { Name = 'prop_wall_light_16e' }, - ['1404517486'] = { Name = 'prop_wall_light_17a' }, - ['-1563010389'] = { Name = 'prop_wall_light_17b' }, - ['1816194717'] = { Name = 'prop_wall_light_18a' }, - ['-156403936'] = { Name = 'prop_wall_light_19a' }, - ['-1356590918'] = { Name = 'prop_wall_light_20a' }, - ['1187140144'] = { Name = 'prop_wall_light_21' }, - ['1858825521'] = { Name = 'prop_wall_vent_01' }, - ['1492402563'] = { Name = 'prop_wall_vent_02' }, - ['1161501201'] = { Name = 'prop_wall_vent_03' }, - ['931495590'] = { Name = 'prop_wall_vent_04' }, - ['-869259227'] = { Name = 'prop_wall_vent_05' }, - ['-566178746'] = { Name = 'prop_wall_vent_06' }, - ['-1541521238'] = { Name = 'prop_wallbrick_01' }, - ['-1151045834'] = { Name = 'prop_wallbrick_02' }, - ['1065973630'] = { Name = 'prop_wallbrick_03' }, - ['-1268884662'] = { Name = 'prop_wallchunk_01' }, - ['-1638168425'] = { Name = 'prop_walllight_ld_01' }, - ['-851361974'] = { Name = 'prop_walllight_ld_01b' }, - ['283948267'] = { Name = 'prop_wardrobe_door_01' }, - ['-1902543747'] = { Name = 'prop_warehseshelf01' }, - ['2092685506'] = { Name = 'prop_warehseshelf02' }, - ['1846426471'] = { Name = 'prop_warehseshelf03' }, - ['424659621'] = { Name = 'prop_warninglight_01' }, - ['991241305'] = { Name = 'prop_washer_01' }, - ['1231012078'] = { Name = 'prop_washer_02' }, - ['-1312681555'] = { Name = 'prop_washer_03' }, - ['1492339777'] = { Name = 'prop_washing_basket_01' }, - ['587574807'] = { Name = 'prop_water_bottle_dark' }, - ['315205724'] = { Name = 'prop_water_bottle' }, - ['-1240857364'] = { Name = 'prop_water_corpse_01' }, - ['-1011638209'] = { Name = 'prop_water_corpse_02' }, - ['42353697'] = { Name = 'prop_water_frame' }, - ['1408345510'] = { Name = 'prop_water_ramp_01' }, - ['1226543098'] = { Name = 'prop_water_ramp_02' }, - ['2001562717'] = { Name = 'prop_water_ramp_03' }, - ['-1691644768'] = { Name = 'prop_watercooler_dark' }, - ['-742198632'] = { Name = 'prop_watercooler' }, - ['1370563384'] = { Name = 'prop_watercrate_01' }, - ['-1644950477'] = { Name = 'prop_wateringcan' }, - ['1102844316'] = { Name = 'prop_watertower01' }, - ['1343762004'] = { Name = 'prop_watertower02' }, - ['1535001888'] = { Name = 'prop_watertower03' }, - ['1822812015'] = { Name = 'prop_watertower04' }, - ['1382596692'] = { Name = 'prop_waterwheela' }, - ['-1128524427'] = { Name = 'prop_waterwheelb' }, - ['1016189997'] = { Name = 'prop_weed_001_aa' }, - ['861098586'] = { Name = 'prop_weed_002_ba' }, - ['452618762'] = { Name = 'prop_weed_01' }, - ['-305885281'] = { Name = 'prop_weed_02' }, - ['-1688127'] = { Name = 'prop_weed_block_01' }, - ['671777952'] = { Name = 'prop_weed_bottle' }, - ['243282660'] = { Name = 'prop_weed_pallet' }, - ['-232602273'] = { Name = 'prop_weed_tub_01' }, - ['1913437669'] = { Name = 'prop_weed_tub_01b' }, - ['-527085761'] = { Name = 'prop_weeddead_nxg01' }, - ['1621217110'] = { Name = 'prop_weeddead_nxg02' }, - ['-1279789847'] = { Name = 'prop_weeddry_nxg01' }, - ['1280913271'] = { Name = 'prop_weeddry_nxg01b' }, - ['-840357557'] = { Name = 'prop_weeddry_nxg02' }, - ['-329224025'] = { Name = 'prop_weeddry_nxg02b' }, - ['-1831947497'] = { Name = 'prop_weeddry_nxg03' }, - ['-1824211007'] = { Name = 'prop_weeddry_nxg03b' }, - ['-2063067254'] = { Name = 'prop_weeddry_nxg04' }, - ['105912864'] = { Name = 'prop_weeddry_nxg05' }, - ['1870743581'] = { Name = 'prop_weeds_nxg01' }, - ['1588183713'] = { Name = 'prop_weeds_nxg01b' }, - ['1572283529'] = { Name = 'prop_weeds_nxg02' }, - ['2008938025'] = { Name = 'prop_weeds_nxg02b' }, - ['621425456'] = { Name = 'prop_weeds_nxg03' }, - ['17892537'] = { Name = 'prop_weeds_nxg03b' }, - ['-2093224046'] = { Name = 'prop_weeds_nxg04' }, - ['1681607908'] = { Name = 'prop_weeds_nxg04b' }, - ['-1193616693'] = { Name = 'prop_weeds_nxg05' }, - ['1105329006'] = { Name = 'prop_weeds_nxg05b' }, - ['-1499154849'] = { Name = 'prop_weeds_nxg06' }, - ['-946010170'] = { Name = 'prop_weeds_nxg06b' }, - ['1272323782'] = { Name = 'prop_weeds_nxg07b' }, - ['-811215908'] = { Name = 'prop_weeds_nxg07b001' }, - ['-1139220153'] = { Name = 'prop_weeds_nxg08' }, - ['-853012324'] = { Name = 'prop_weeds_nxg08b' }, - ['-568220328'] = { Name = 'prop_weeds_nxg09' }, - ['2008030266'] = { Name = 'prop_weight_1_5k' }, - ['1844017351'] = { Name = 'prop_weight_10k' }, - ['933757793'] = { Name = 'prop_weight_15k' }, - ['588920696'] = { Name = 'prop_weight_2_5k' }, - ['-1450650106'] = { Name = 'prop_weight_20k' }, - ['-2011207824'] = { Name = 'prop_weight_5k' }, - ['1231502205'] = { Name = 'prop_weight_bench_02' }, - ['1749174061'] = { Name = 'prop_weight_rack_01' }, - ['1241057947'] = { Name = 'prop_weight_rack_02' }, - ['1505848876'] = { Name = 'prop_weight_squat' }, - ['-1010290664'] = { Name = 'prop_weld_torch' }, - ['1011326142'] = { Name = 'prop_welding_mask_01_s' }, - ['-1821801372'] = { Name = 'prop_welding_mask_01' }, - ['-624946387'] = { Name = 'prop_wheat_grass_empty' }, - ['-1270307707'] = { Name = 'prop_wheat_grass_glass' }, - ['945617281'] = { Name = 'prop_wheat_grass_half' }, - ['-292162984'] = { Name = 'prop_wheel_01' }, - ['626679780'] = { Name = 'prop_wheel_02' }, - ['-755287261'] = { Name = 'prop_wheel_03' }, - ['-1425970384'] = { Name = 'prop_wheel_04' }, - ['-1751235478'] = { Name = 'prop_wheel_05' }, - ['-563981839'] = { Name = 'prop_wheel_06' }, - ['-1286728675'] = { Name = 'prop_wheel_hub_01' }, - ['-1731873955'] = { Name = 'prop_wheel_hub_02_lod_02' }, - ['1465152224'] = { Name = 'prop_wheel_rim_01' }, - ['1150963052'] = { Name = 'prop_wheel_rim_02' }, - ['-1472588642'] = { Name = 'prop_wheel_rim_03' }, - ['-705040355'] = { Name = 'prop_wheel_rim_04' }, - ['212098417'] = { Name = 'prop_wheel_rim_05' }, - ['-1570565546'] = { Name = 'prop_wheel_tyre' }, - ['1430257647'] = { Name = 'prop_wheelbarrow01a' }, - ['1133730678'] = { Name = 'prop_wheelbarrow02a' }, - ['1737474779'] = { Name = 'prop_wheelchair_01_s' }, - ['1262298127'] = { Name = 'prop_wheelchair_01' }, - ['1909973641'] = { Name = 'prop_whisk' }, - ['-822947892'] = { Name = 'prop_whiskey_01' }, - ['-1461673141'] = { Name = 'prop_whiskey_bottle' }, - ['-1833232393'] = { Name = 'prop_whiskey_glasses' }, - ['-171496681'] = { Name = 'prop_white_keyboard' }, - ['-1956944339'] = { Name = 'prop_win_plug_01_dam' }, - ['1704392426'] = { Name = 'prop_win_plug_01' }, - ['-52859321'] = { Name = 'prop_win_trailer_ld' }, - ['997144281'] = { Name = 'prop_winch_hook_long' }, - ['-719148431'] = { Name = 'prop_winch_hook_short' }, - ['-1404196790'] = { Name = 'prop_windmill_01_l1' }, - ['1939614199'] = { Name = 'prop_windmill_01_slod' }, - ['1745179636'] = { Name = 'prop_windmill_01_slod2' }, - ['1952396163'] = { Name = 'prop_windmill_01' }, - ['1065211932'] = { Name = 'prop_windmill1' }, - ['1252486771'] = { Name = 'prop_windmill2' }, - ['1955084863'] = { Name = 'prop_windowbox_a' }, - ['-2079532728'] = { Name = 'prop_windowbox_b' }, - ['-925896790'] = { Name = 'prop_windowbox_broken' }, - ['-2024123364'] = { Name = 'prop_windowbox_small' }, - ['21833643'] = { Name = 'prop_wine_bot_01' }, - ['-285113580'] = { Name = 'prop_wine_bot_02' }, - ['54971870'] = { Name = 'prop_wine_glass' }, - ['1295017223'] = { Name = 'prop_wine_red' }, - ['2036176768'] = { Name = 'prop_wine_rose' }, - ['-1248983640'] = { Name = 'prop_wine_white' }, - ['-367045252'] = { Name = 'prop_wok' }, - ['650320113'] = { Name = 'prop_wooden_barrel' }, - ['1367246936'] = { Name = 'prop_woodpile_01a' }, - ['-1186441238'] = { Name = 'prop_woodpile_01b' }, - ['1861370687'] = { Name = 'prop_woodpile_01c' }, - ['1293189284'] = { Name = 'prop_woodpile_02a' }, - ['-740912282'] = { Name = 'prop_woodpile_03a' }, - ['382933634'] = { Name = 'prop_woodpile_04a' }, - ['-1783064501'] = { Name = 'prop_woodpile_04b' }, - ['-2107814619'] = { Name = 'prop_worklight_01a_l1' }, - ['145818549'] = { Name = 'prop_worklight_01a' }, - ['160663734'] = { Name = 'prop_worklight_02a' }, - ['-304108711'] = { Name = 'prop_worklight_03a_l1' }, - ['-350795026'] = { Name = 'prop_worklight_03a' }, - ['-1808235374'] = { Name = 'prop_worklight_03b_l1' }, - ['-1901227524'] = { Name = 'prop_worklight_03b' }, - ['-1208490064'] = { Name = 'prop_worklight_04a' }, - ['765603833'] = { Name = 'prop_worklight_04b_l1' }, - ['1813008354'] = { Name = 'prop_worklight_04b' }, - ['-1580136567'] = { Name = 'prop_worklight_04c_l1' }, - ['1506454359'] = { Name = 'prop_worklight_04c' }, - ['-1009522972'] = { Name = 'prop_worklight_04d_l1' }, - ['279288106'] = { Name = 'prop_worklight_04d' }, - ['1188930991'] = { Name = 'prop_workwall_01' }, - ['1496566363'] = { Name = 'prop_workwall_02' }, - ['-1288515433'] = { Name = 'prop_wrecked_buzzard' }, - ['-1663150675'] = { Name = 'prop_wreckedcart' }, - ['118627012'] = { Name = 'prop_xmas_ext' }, - ['238789712'] = { Name = 'prop_xmas_tree_int' }, - ['1160611253'] = { Name = 'prop_yacht_lounger' }, - ['-294499241'] = { Name = 'prop_yacht_seat_01' }, - ['-1320300017'] = { Name = 'prop_yacht_seat_02' }, - ['-1005619310'] = { Name = 'prop_yacht_seat_03' }, - ['-1848238485'] = { Name = 'prop_yacht_table_01' }, - ['-1788992133'] = { Name = 'prop_yacht_table_02' }, - ['-1367418948'] = { Name = 'prop_yacht_table_03' }, - ['-1931340691'] = { Name = 'prop_yaught_chair_01' }, - ['-864927101'] = { Name = 'prop_yaught_sofa_01' }, - ['58661718'] = { Name = 'prop_yell_plastic_target' }, - ['-232023078'] = { Name = 'prop_yoga_mat_01' }, - ['2057317573'] = { Name = 'prop_yoga_mat_02' }, - ['-1978741854'] = { Name = 'prop_yoga_mat_03' }, - ['267881419'] = { Name = 'prop_ztype_covered' }, - ['356391690'] = { Name = 'proptrailer' }, - ['2123327359'] = { Name = 'prototipo' }, - ['-1651067813'] = { Name = 'radi' }, - ['390902130'] = { Name = 'raketrailer' }, - ['-2103821244'] = { Name = 'rallytruck' }, - ['1645267888'] = { Name = 'rancherxl' }, - ['1933662059'] = { Name = 'rancherxl2' }, - ['-1934452204'] = { Name = 'rapidgt' }, - ['1737773231'] = { Name = 'rapidgt2' }, - ['-674927303'] = { Name = 'raptor' }, - ['1873600305'] = { Name = 'ratbike' }, - ['-667151410'] = { Name = 'ratloader' }, - ['-589178377'] = { Name = 'ratloader2' }, - ['234062309'] = { Name = 'reaper' }, - ['-1207771834'] = { Name = 'rebel' }, - ['-2045594037'] = { Name = 'rebel2' }, - ['775083365'] = { Name = 'reeds_03' }, - ['-14495224'] = { Name = 'regina' }, - ['-1098802077'] = { Name = 'rentalbus' }, - ['841808271'] = { Name = 'rhapsody' }, - ['782665360'] = { Name = 'rhino' }, - ['-1205689942'] = { Name = 'riot' }, - ['-845979911'] = { Name = 'ripley' }, - ['1794800292'] = { Name = 'rnotes' }, - ['1471437843'] = { Name = 'rock_4_cl_2_1' }, - ['-2041628332'] = { Name = 'rock_4_cl_2_2' }, - ['2136773105'] = { Name = 'rocoto' }, - ['627094268'] = { Name = 'romero' }, - ['14103519'] = { Name = 'root_scroll_anim_skel' }, - ['-1705304628'] = { Name = 'rubble' }, - ['-893578776'] = { Name = 'ruffian' }, - ['-227741703'] = { Name = 'ruiner' }, - ['941494461'] = { Name = 'ruiner2' }, - ['777714999'] = { Name = 'ruiner3' }, - ['1162065741'] = { Name = 'rumpo' }, - ['-1776615689'] = { Name = 'rumpo2' }, - ['1475773103'] = { Name = 'rumpo3' }, - ['719660200'] = { Name = 'ruston' }, - ['373000027'] = { Name = 's_f_m_fembarber' }, - ['-527186490'] = { Name = 's_f_m_maid_01' }, - ['-1371020112'] = { Name = 's_f_m_shop_high' }, - ['824925120'] = { Name = 's_f_m_sweatshop_01' }, - ['1567728751'] = { Name = 's_f_y_airhostess_01' }, - ['2014052797'] = { Name = 's_f_y_bartender_01' }, - ['1250841910'] = { Name = 's_f_y_baywatch_01' }, - ['368603149'] = { Name = 's_f_y_cop_01' }, - ['1777626099'] = { Name = 's_f_y_factory_01' }, - ['42647445'] = { Name = 's_f_y_hooker_01' }, - ['348382215'] = { Name = 's_f_y_hooker_02' }, - ['51789996'] = { Name = 's_f_y_hooker_03' }, - ['-715445259'] = { Name = 's_f_y_migrant_01' }, - ['587253782'] = { Name = 's_f_y_movprem_01' }, - ['-1614285257'] = { Name = 's_f_y_ranger_01' }, - ['-1420211530'] = { Name = 's_f_y_scrubs_01' }, - ['1096929346'] = { Name = 's_f_y_sheriff_01' }, - ['-1452399100'] = { Name = 's_f_y_shop_low' }, - ['1055701597'] = { Name = 's_f_y_shop_mid' }, - ['1381498905'] = { Name = 's_f_y_stripper_01' }, - ['1846523796'] = { Name = 's_f_y_stripper_02' }, - ['1544875514'] = { Name = 's_f_y_stripperlite' }, - ['-2063419726'] = { Name = 's_f_y_sweatshop_01' }, - ['233415434'] = { Name = 's_m_m_ammucountry' }, - ['-1782092083'] = { Name = 's_m_m_armoured_01' }, - ['1669696074'] = { Name = 's_m_m_armoured_02' }, - ['68070371'] = { Name = 's_m_m_autoshop_01' }, - ['-261389155'] = { Name = 's_m_m_autoshop_02' }, - ['-1613485779'] = { Name = 's_m_m_bouncer_01' }, - ['-907676309'] = { Name = 's_m_m_ccrew_01' }, - ['788443093'] = { Name = 's_m_m_chemsec_01' }, - ['1650288984'] = { Name = 's_m_m_ciasec_01' }, - ['436345731'] = { Name = 's_m_m_cntrybar_01' }, - ['349680864'] = { Name = 's_m_m_dockwork_01' }, - ['-730659924'] = { Name = 's_m_m_doctor_01' }, - ['-306416314'] = { Name = 's_m_m_fiboffice_01' }, - ['653289389'] = { Name = 's_m_m_fiboffice_02' }, - ['2072724299'] = { Name = 's_m_m_fibsec_01' }, - ['-1453933154'] = { Name = 's_m_m_gaffer_01' }, - ['1240094341'] = { Name = 's_m_m_gardener_01' }, - ['411102470'] = { Name = 's_m_m_gentransport' }, - ['1099825042'] = { Name = 's_m_m_hairdress_01' }, - ['-245247470'] = { Name = 's_m_m_highsec_01' }, - ['691061163'] = { Name = 's_m_m_highsec_02' }, - ['-1452549652'] = { Name = 's_m_m_janitor' }, - ['-1635724594'] = { Name = 's_m_m_lathandy_01' }, - ['-570394627'] = { Name = 's_m_m_lifeinvad_01' }, - ['-610530921'] = { Name = 's_m_m_linecook' }, - ['1985653476'] = { Name = 's_m_m_lsmetro_01' }, - ['2124742566'] = { Name = 's_m_m_mariachi_01' }, - ['-220552467'] = { Name = 's_m_m_marine_01' }, - ['-265970301'] = { Name = 's_m_m_marine_02' }, - ['-317922106'] = { Name = 's_m_m_migrant_01' }, - ['1684083350'] = { Name = 's_m_m_movalien_01' }, - ['-664900312'] = { Name = 's_m_m_movprem_01' }, - ['-407694286'] = { Name = 's_m_m_movspace_01' }, - ['-1286380898'] = { Name = 's_m_m_paramedic_01' }, - ['-413447396'] = { Name = 's_m_m_pilot_01' }, - ['-163714847'] = { Name = 's_m_m_pilot_02' }, - ['1650036788'] = { Name = 's_m_m_postal_01' }, - ['1936142927'] = { Name = 's_m_m_postal_02' }, - ['1456041926'] = { Name = 's_m_m_prisguard_01' }, - ['1092080539'] = { Name = 's_m_m_scientist_01' }, - ['-681004504'] = { Name = 's_m_m_security_01' }, - ['451459928'] = { Name = 's_m_m_snowcop_01' }, - ['2035992488'] = { Name = 's_m_m_strperf_01' }, - ['469792763'] = { Name = 's_m_m_strpreach_01' }, - ['-829353047'] = { Name = 's_m_m_strvend_01' }, - ['1498487404'] = { Name = 's_m_m_trucker_01' }, - ['-1614577886'] = { Name = 's_m_m_ups_01' }, - ['-792862442'] = { Name = 's_m_m_ups_02' }, - ['-1382092357'] = { Name = 's_m_o_busker_01' }, - ['1644266841'] = { Name = 's_m_y_airworker' }, - ['-1643617475'] = { Name = 's_m_y_ammucity_01' }, - ['1657546978'] = { Name = 's_m_y_armymech_01' }, - ['-1306051250'] = { Name = 's_m_y_autopsy_01' }, - ['-442429178'] = { Name = 's_m_y_barman_01' }, - ['189425762'] = { Name = 's_m_y_baywatch_01' }, - ['-1275859404'] = { Name = 's_m_y_blackops_01' }, - ['2047212121'] = { Name = 's_m_y_blackops_02' }, - ['1349953339'] = { Name = 's_m_y_blackops_03' }, - ['-654717625'] = { Name = 's_m_y_busboy_01' }, - ['261586155'] = { Name = 's_m_y_chef_01' }, - ['71929310'] = { Name = 's_m_y_clown_01' }, - ['-673538407'] = { Name = 's_m_y_construct_01' }, - ['-973145378'] = { Name = 's_m_y_construct_02' }, - ['1581098148'] = { Name = 's_m_y_cop_01' }, - ['-459818001'] = { Name = 's_m_y_dealer_01' }, - ['-1688898956'] = { Name = 's_m_y_devinsec_01' }, - ['-2039072303'] = { Name = 's_m_y_dockwork_01' }, - ['579932932'] = { Name = 's_m_y_doorman_01' }, - ['1976765073'] = { Name = 's_m_y_dwservice_01' }, - ['-175076858'] = { Name = 's_m_y_dwservice_02' }, - ['1097048408'] = { Name = 's_m_y_factory_01' }, - ['-1229853272'] = { Name = 's_m_y_fireman_01' }, - ['-294281201'] = { Name = 's_m_y_garbage' }, - ['815693290'] = { Name = 's_m_y_grip_01' }, - ['1939545845'] = { Name = 's_m_y_hwaycop_01' }, - ['1702441027'] = { Name = 's_m_y_marine_01' }, - ['1490458366'] = { Name = 's_m_y_marine_02' }, - ['1925237458'] = { Name = 's_m_y_marine_03' }, - ['1021093698'] = { Name = 's_m_y_mime' }, - ['1209091352'] = { Name = 's_m_y_pestcont_01' }, - ['-1422914553'] = { Name = 's_m_y_pilot_01' }, - ['1596003233'] = { Name = 's_m_y_prismuscl_01' }, - ['-1313105063'] = { Name = 's_m_y_prisoner_01' }, - ['-277793362'] = { Name = 's_m_y_ranger_01' }, - ['-1067576423'] = { Name = 's_m_y_robber_01' }, - ['-1320879687'] = { Name = 's_m_y_sheriff_01' }, - ['1846684678'] = { Name = 's_m_y_shop_mask' }, - ['-1837161693'] = { Name = 's_m_y_strvend_01' }, - ['-1920001264'] = { Name = 's_m_y_swat_01' }, - ['-905948951'] = { Name = 's_m_y_uscg_01' }, - ['999748158'] = { Name = 's_m_y_valet_01' }, - ['-1387498932'] = { Name = 's_m_y_waiter_01' }, - ['1426951581'] = { Name = 's_m_y_winclean_01' }, - ['1142162924'] = { Name = 's_m_y_xmech_01' }, - ['-1105135100'] = { Name = 's_m_y_xmech_02' }, - ['1673368704'] = { Name = 's_prop_hdphones_1' }, - ['2133258022'] = { Name = 's_prop_hdphones' }, - ['-1685021548'] = { Name = 'sabregt' }, - ['223258115'] = { Name = 'sabregt2' }, - ['-599568815'] = { Name = 'sadler' }, - ['734217681'] = { Name = 'sadler2' }, - ['788045382'] = { Name = 'sanchez' }, - ['-1453280962'] = { Name = 'sanchez2' }, - ['1491277511'] = { Name = 'sanctus' }, - ['-1189015600'] = { Name = 'sandking' }, - ['989381445'] = { Name = 'sandking2' }, - ['-82626025'] = { Name = 'savage' }, - ['-2008601783'] = { Name = 'sc1_00b_bld2' }, - ['-62401449'] = { Name = 'sc1_00b_det_01' }, - ['-229855071'] = { Name = 'sc1_00b_det_01a' }, - ['-535065537'] = { Name = 'sc1_00b_det_01b' }, - ['-682034506'] = { Name = 'sc1_00b_det_01c' }, - ['1269975498'] = { Name = 'sc1_00b_ground' }, - ['542470635'] = { Name = 'sc1_00b_lockups' }, - ['738819622'] = { Name = 'sc1_00b_lockupscorner' }, - ['1582216841'] = { Name = 'sc1_00b_pylon' }, - ['1301498202'] = { Name = 'sc1_00b_sc1_00c_pipes_01' }, - ['1591798773'] = { Name = 'sc1_00b_sc1_00c_pipes_02' }, - ['1762590801'] = { Name = 'sc1_00b_sc1_00c_pipes_03' }, - ['-161604899'] = { Name = 'sc1_00b_sc1_00c_pipes_04' }, - ['1015840874'] = { Name = 'sc1_00b_tram01' }, - ['-1287623216'] = { Name = 'sc1_00b_tram02' }, - ['-789052503'] = { Name = 'sc1_00b_wiresa' }, - ['-1997933682'] = { Name = 'sc1_00b_wiresb' }, - ['-1400414183'] = { Name = 'sc1_00c_bikeshop_sign' }, - ['-1828212850'] = { Name = 'sc1_00c_bikeshop' }, - ['-540550488'] = { Name = 'sc1_00c_build01' }, - ['1864501829'] = { Name = 'sc1_00c_cablemesh31014_tstd' }, - ['-365361876'] = { Name = 'sc1_00c_det_01' }, - ['-646880407'] = { Name = 'sc1_00c_det_02' }, - ['396091377'] = { Name = 'sc1_00c_det_03' }, - ['89471844'] = { Name = 'sc1_00c_det_04' }, - ['-2106247826'] = { Name = 'sc1_00c_det_05' }, - ['-643505374'] = { Name = 'sc1_00c_flag003' }, - ['-591871719'] = { Name = 'sc1_00c_land01' }, - ['90608244'] = { Name = 'sc1_00c_land02' }, - ['181018953'] = { Name = 'sc1_00c_lower_station_det' }, - ['1831838822'] = { Name = 'sc1_00c_pipes_01' }, - ['-1625716691'] = { Name = 'sc1_00c_pipes_02' }, - ['-1386568529'] = { Name = 'sc1_00c_pipes_03' }, - ['607228519'] = { Name = 'sc1_00c_pipes_04' }, - ['1531571186'] = { Name = 'sc1_00c_platform_det_01' }, - ['1065464930'] = { Name = 'sc1_00c_platform_det_02' }, - ['-1921855433'] = { Name = 'sc1_00c_platform_det_03' }, - ['-299884453'] = { Name = 'sc1_00c_platform_skylight' }, - ['-1586129227'] = { Name = 'sc1_00c_sc1`_00c_platform' }, - ['-834786947'] = { Name = 'sc1_00c_tacoshop' }, - ['-111831361'] = { Name = 'sc1_00c_tramlines' }, - ['1369546350'] = { Name = 'sc1_00c_tramtrck003' }, - ['-1878653559'] = { Name = 'sc1_00c_upper_station_det' }, - ['-1103681465'] = { Name = 'sc1_00d_cablemesh_swaying_01' }, - ['-1377695843'] = { Name = 'sc1_00d_cablemesh_swaying_02' }, - ['-33336891'] = { Name = 'sc1_00d_fence03' }, - ['1000161802'] = { Name = 'sc1_00d_fencedoor' }, - ['704966981'] = { Name = 'sc1_00d_glue01' }, - ['-1729959149'] = { Name = 'sc1_00d_glue2' }, - ['203749405'] = { Name = 'sc1_00d_gnd_decal' }, - ['-927169445'] = { Name = 'sc1_00d_gnd_decal01' }, - ['-150642452'] = { Name = 'sc1_00d_gnd_decal02' }, - ['1722891348'] = { Name = 'sc1_00d_gnd' }, - ['1730755967'] = { Name = 'sc1_00d_gnd01' }, - ['1215496211'] = { Name = 'sc1_00d_gnd02' }, - ['-1542615694'] = { Name = 'sc1_00d_rayhut' }, - ['770391499'] = { Name = 'sc1_00d_rocks' }, - ['1853051868'] = { Name = 'sc1_00d_sc1_00_rayhut' }, - ['531099269'] = { Name = 'sc1_00d_tunnel_ov' }, - ['-419320403'] = { Name = 'sc1_00d_tunnel_shadow' }, - ['2079968681'] = { Name = 'sc1_00d_tunnel' }, - ['-1841368491'] = { Name = 'sc1_00d_weed' }, - ['-1036941561'] = { Name = 'sc1_00d_weed01' }, - ['-1934697241'] = { Name = 'sc1_00e_bld1' }, - ['20179390'] = { Name = 'sc1_00e_detail01' }, - ['-1817276747'] = { Name = 'sc1_00e_detail02' }, - ['-714337745'] = { Name = 'sc1_00e_detail03' }, - ['162624953'] = { Name = 'sc1_00e_ground' }, - ['1726936538'] = { Name = 'sc1_00e_rails_01' }, - ['1459377641'] = { Name = 'sc1_00e_rails_02' }, - ['1748662373'] = { Name = 'sc1_00e_rails_03' }, - ['-92791582'] = { Name = 'sc1_00e_rails_04' }, - ['-47994724'] = { Name = 'sc1_00e_tram0' }, - ['-1203200281'] = { Name = 'sc1_00e_tram3' }, - ['-1031097493'] = { Name = 'sc1_00e_tram4' }, - ['327330473'] = { Name = 'sc1_00e_tramlines_01' }, - ['-1413653728'] = { Name = 'sc1_00e_tramlines_02' }, - ['-134353910'] = { Name = 'sc1_00f_bwall' }, - ['656935410'] = { Name = 'sc1_00f_detail01' }, - ['252860871'] = { Name = 'sc1_00f_detail02' }, - ['292025501'] = { Name = 'sc1_00f_ground1' }, - ['574690895'] = { Name = 'sc1_00f_ground2' }, - ['813347522'] = { Name = 'sc1_00f_ground3' }, - ['-1926198268'] = { Name = 'sc1_00f_tram1' }, - ['2080893363'] = { Name = 'sc1_00f_tram2' }, - ['540551802'] = { Name = 'sc1_00f_tramlines_01' }, - ['-1496079768'] = { Name = 'sc1_00g_b01_det' }, - ['-1222149160'] = { Name = 'sc1_00g_b01_detb2' }, - ['-271160011'] = { Name = 'sc1_00g_b01_detb3' }, - ['661929054'] = { Name = 'sc1_00g_b01_puddle' }, - ['-122547247'] = { Name = 'sc1_00g_build_01' }, - ['1929119835'] = { Name = 'sc1_00g_build_02' }, - ['-2061456220'] = { Name = 'sc1_00g_build_03' }, - ['716785308'] = { Name = 'sc1_00g_cable_thvy' }, - ['330484609'] = { Name = 'sc1_00g_cablemesh10073_hvstd' }, - ['1184850792'] = { Name = 'sc1_00g_detail' }, - ['1283915047'] = { Name = 'sc1_00g_detail2' }, - ['-1459620242'] = { Name = 'sc1_00g_ground' }, - ['-794872209'] = { Name = 'sc1_00g_metal_debris' }, - ['-1745498718'] = { Name = 'sc1_00g_stpa' }, - ['-374640372'] = { Name = 'sc1_00g_stpb' }, - ['-1148414769'] = { Name = 'sc1_00g_stpc' }, - ['-678291890'] = { Name = 'sc1_00g_tramtrck2' }, - ['-1539268935'] = { Name = 'sc1_01_bb_empty_slod' }, - ['-1658912950'] = { Name = 'sc1_01_bb_empty' }, - ['-364259600'] = { Name = 'sc1_01_bb_meltdown_slod' }, - ['-1983082903'] = { Name = 'sc1_01_bb_meltdown' }, - ['-94019181'] = { Name = 'sc1_01_build1' }, - ['-2137531411'] = { Name = 'sc1_01_det__02a' }, - ['1650045069'] = { Name = 'sc1_01_det_02' }, - ['-20960311'] = { Name = 'sc1_01_grnd01' }, - ['707560101'] = { Name = 'sc1_01_grnd02' }, - ['-765223349'] = { Name = 'sc1_01_ladder_01' }, - ['1391271776'] = { Name = 'sc1_01_ladder_02' }, - ['-1056932987'] = { Name = 'sc1_01_ladder_03' }, - ['-773333910'] = { Name = 'sc1_01_ladders_00' }, - ['1573774847'] = { Name = 'sc1_01_leanprk_build2' }, - ['1540223635'] = { Name = 'sc1_01_railings' }, - ['-694994529'] = { Name = 'sc1_01_wires00' }, - ['-927097356'] = { Name = 'sc1_01_wires01' }, - ['-227282592'] = { Name = 'sc1_01_wires02' }, - ['-1813334957'] = { Name = 'sc1_01_wires03' }, - ['-2118676499'] = { Name = 'sc1_01_wires04' }, - ['-1423646009'] = { Name = 'sc1_01_wires05' }, - ['-1661581718'] = { Name = 'sc1_01_wires06' }, - ['1451866510'] = { Name = 'sc1_01_wires07' }, - ['1215569251'] = { Name = 'sc1_01_wires08' }, - ['1913352337'] = { Name = 'sc1_01_wires09' }, - ['1640908807'] = { Name = 'sc1_01_wires10' }, - ['337325218'] = { Name = 'sc1_01_wires11' }, - ['-81377383'] = { Name = 'sc1_02__pipes01a' }, - ['424538606'] = { Name = 'sc1_02_build1_det' }, - ['1118513415'] = { Name = 'sc1_02_build1' }, - ['-156462837'] = { Name = 'sc1_02_build2' }, - ['557344468'] = { Name = 'sc1_02_build3_railings' }, - ['686716302'] = { Name = 'sc1_02_build3' }, - ['1024220108'] = { Name = 'sc1_02_det01' }, - ['1321140017'] = { Name = 'sc1_02_det02' }, - ['1484001947'] = { Name = 'sc1_02_det03' }, - ['1781642774'] = { Name = 'sc1_02_det04' }, - ['1489834825'] = { Name = 'sc1_02_det05' }, - ['1795864516'] = { Name = 'sc1_02_det06' }, - ['119346338'] = { Name = 'sc1_02_garage_posts_01_lod' }, - ['2139559772'] = { Name = 'sc1_02_garage_posts_01' }, - ['-740249712'] = { Name = 'sc1_02_garage_posts_02_lod' }, - ['-403773398'] = { Name = 'sc1_02_garage_posts_02' }, - ['-945652776'] = { Name = 'sc1_02_ground' }, - ['1340858276'] = { Name = 'sc1_02_halfpipe_01' }, - ['-264691652'] = { Name = 'sc1_02_halfpipe_02' }, - ['41403577'] = { Name = 'sc1_02_halfpipe_03' }, - ['1769297715'] = { Name = 'sc1_02_halfpipeb' }, - ['1971008470'] = { Name = 'sc1_02_ladder_01' }, - ['-317742339'] = { Name = 'sc1_02_ladder_02' }, - ['-558758334'] = { Name = 'sc1_02_ladder_03' }, - ['1367141334'] = { Name = 'sc1_02_ladder_04' }, - ['1107283164'] = { Name = 'sc1_02_ladder_05' }, - ['-383911344'] = { Name = 'sc1_02_spray_gates_01' }, - ['2069864149'] = { Name = 'sc1_02_spray_gates_02' }, - ['-1968030342'] = { Name = 'sc1_02_spray_gates_03' }, - ['-1528674638'] = { Name = 'sc1_02_spray_railings_02' }, - ['-1487982429'] = { Name = 'sc1_02_spray_railings' }, - ['2031062520'] = { Name = 'sc1_02_sprayshop2' }, - ['-1666977317'] = { Name = 'sc1_02_storge' }, - ['1936277519'] = { Name = 'sc1_03_247_em_dum_slod' }, - ['919876488'] = { Name = 'sc1_03_build_01_railings_a' }, - ['-2087727874'] = { Name = 'sc1_03_build_01_railings_b' }, - ['-2138592322'] = { Name = 'sc1_03_build1_det_01' }, - ['700567018'] = { Name = 'sc1_03_build1_det_02_lod' }, - ['1426347176'] = { Name = 'sc1_03_build1_det_02' }, - ['-2004168654'] = { Name = 'sc1_03_build1' }, - ['1090645799'] = { Name = 'sc1_03_build1b_sign' }, - ['1493372804'] = { Name = 'sc1_03_build1b_signs' }, - ['1651621499'] = { Name = 'sc1_03_build1b' }, - ['1135497871'] = { Name = 'sc1_03_build1c_det' }, - ['1361845232'] = { Name = 'sc1_03_build1c' }, - ['1881996678'] = { Name = 'sc1_03_build2_fiz' }, - ['2077898449'] = { Name = 'sc1_03_build2' }, - ['1879468651'] = { Name = 'sc1_03_cablemesh14618_tstd' }, - ['-1199579382'] = { Name = 'sc1_03_cablemesh14627_tstd' }, - ['-1722734303'] = { Name = 'sc1_03_det_01' }, - ['-1912073585'] = { Name = 'sc1_03_det_02' }, - ['64224777'] = { Name = 'sc1_03_det_03' }, - ['-1409850900'] = { Name = 'sc1_03_ground' }, - ['-4041248'] = { Name = 'sc1_03_ladder_008' }, - ['2111410555'] = { Name = 'sc1_03_ladder_01' }, - ['-1197275379'] = { Name = 'sc1_03_ladder_05' }, - ['-353211477'] = { Name = 'sc1_03_ladder_06' }, - ['243380937'] = { Name = 'sc1_03_ladder_07' }, - ['-178927576'] = { Name = 'sc1_03_pipes_01_xtra_a' }, - ['-626683192'] = { Name = 'sc1_03_pipes_01_xtra_b' }, - ['-1951172227'] = { Name = 'sc1_03_pipes001' }, - ['-236053992'] = { Name = 'sc1_03_railings_01' }, - ['-4442700'] = { Name = 'sc1_03_railings_02' }, - ['2085957352'] = { Name = 'sc1_03_railings_03' }, - ['353374571'] = { Name = 'sc1_04_bld_01' }, - ['648459416'] = { Name = 'sc1_04_bld_02' }, - ['1337207746'] = { Name = 'sc1_04_bld_03_emmisstime' }, - ['140933144'] = { Name = 'sc1_04_bld_03' }, - ['-1710941361'] = { Name = 'sc1_04_bld_04' }, - ['2049389667'] = { Name = 'sc1_04_cablemesh3039_thvy' }, - ['1075290411'] = { Name = 'sc1_04_det_01' }, - ['1591271085'] = { Name = 'sc1_04_det_02' }, - ['1460031220'] = { Name = 'sc1_04_det_03' }, - ['1071243760'] = { Name = 'sc1_04_det_03a' }, - ['1716055417'] = { Name = 'sc1_04_det_04' }, - ['-1588521526'] = { Name = 'sc1_04_em' }, - ['-1993723859'] = { Name = 'sc1_04_ground' }, - ['551178173'] = { Name = 'sc1_04_ladder_01' }, - ['-1172667841'] = { Name = 'sc1_04_ladder_02' }, - ['-1407064502'] = { Name = 'sc1_04_ladder_03' }, - ['895770394'] = { Name = 'sc1_04_mtl_frm_lod' }, - ['1648495087'] = { Name = 'sc1_04_mtl_frm' }, - ['529696609'] = { Name = 'sc1_04_signem_lod' }, - ['1593615189'] = { Name = 'sc1_04_signem' }, - ['-824382849'] = { Name = 'sc1_04_stps_railngs_lod' }, - ['-102551037'] = { Name = 'sc1_04_stps_railngs' }, - ['370275906'] = { Name = 'sc1_05_build_1' }, - ['-1606874490'] = { Name = 'sc1_05_build_4' }, - ['1868591364'] = { Name = 'sc1_05_build4_em' }, - ['1768892571'] = { Name = 'sc1_05_cablemesh28159_thvy' }, - ['1510406370'] = { Name = 'sc1_05_det_01' }, - ['-2039328328'] = { Name = 'sc1_05_det_02' }, - ['2117056827'] = { Name = 'sc1_05_emissive_2_slod' }, - ['-1906671436'] = { Name = 'sc1_05_flowers' }, - ['1935842084'] = { Name = 'sc1_05_gas_stn_det' }, - ['579090920'] = { Name = 'sc1_05_gas_stn_stripes' }, - ['2068286576'] = { Name = 'sc1_05_ground01' }, - ['-438279772'] = { Name = 'sc1_05_ground02' }, - ['200866254'] = { Name = 'sc1_05_ladder_01' }, - ['467900843'] = { Name = 'sc1_05_ladder_02' }, - ['-1412205734'] = { Name = 'sc1_05_shop_stripes' }, - ['-787287482'] = { Name = 'sc1_05_tools_sign' }, - ['1703468080'] = { Name = 'sc1_05_wall_shdw_proxy' }, - ['-1369570216'] = { Name = 'sc1_05_window_fiz' }, - ['-2097598983'] = { Name = 'sc1_06_build01' }, - ['-1473415071'] = { Name = 'sc1_06_build03' }, - ['2031085387'] = { Name = 'sc1_06_carpark' }, - ['-1877492060'] = { Name = 'sc1_06_det01' }, - ['1469730218'] = { Name = 'sc1_06_det02' }, - ['1675650614'] = { Name = 'sc1_06_det03' }, - ['906824336'] = { Name = 'sc1_06_det04' }, - ['1220259821'] = { Name = 'sc1_06_det05' }, - ['1733891551'] = { Name = 'sc1_06_detail2' }, - ['-1896321869'] = { Name = 'sc1_06_fizzles01' }, - ['-717129400'] = { Name = 'sc1_06_fizzles02' }, - ['-1012509166'] = { Name = 'sc1_06_fizzles03' }, - ['-668962160'] = { Name = 'sc1_06_ground' }, - ['1497233043'] = { Name = 'sc1_06_wires' }, - ['-479401150'] = { Name = 'sc1_07_build_det' }, - ['-2125542092'] = { Name = 'sc1_07_build' }, - ['-58092040'] = { Name = 'sc1_07_clinical_bin' }, - ['-792111134'] = { Name = 'sc1_07_cor_cutdet' }, - ['-910487531'] = { Name = 'sc1_07_coroner' }, - ['179758396'] = { Name = 'sc1_07_cupola_glass' }, - ['-716723906'] = { Name = 'sc1_07_det_01' }, - ['-68225396'] = { Name = 'sc1_07_det_02' }, - ['164008507'] = { Name = 'sc1_07_det_03' }, - ['335226532'] = { Name = 'sc1_07_det_04' }, - ['566018599'] = { Name = 'sc1_07_det_05' }, - ['945221467'] = { Name = 'sc1_07_det_06' }, - ['-339427617'] = { Name = 'sc1_07_em_lod' }, - ['-794514252'] = { Name = 'sc1_07_em' }, - ['1600321598'] = { Name = 'sc1_07_fence_00' }, - ['-418379878'] = { Name = 'sc1_07_fence_01' }, - ['-753475672'] = { Name = 'sc1_07_fence_02' }, - ['-521634997'] = { Name = 'sc1_07_fence_03' }, - ['-1363011841'] = { Name = 'sc1_07_fence_04' }, - ['-1135955440'] = { Name = 'sc1_07_fence_05' }, - ['1724614367'] = { Name = 'sc1_07_fence_06' }, - ['1964385140'] = { Name = 'sc1_07_fence_07' }, - ['639239135'] = { Name = 'sc1_07_ground_2' }, - ['1100877936'] = { Name = 'sc1_07_ground' }, - ['-853224615'] = { Name = 'sc1_07_ladder_01' }, - ['1352456775'] = { Name = 'sc1_07_ladder_02' }, - ['1659797226'] = { Name = 'sc1_07_ladder_03' }, - ['-239133555'] = { Name = 'sc1_07_ladder_04' }, - ['-194371101'] = { Name = 'sc1_07_ladder_05' }, - ['-546466925'] = { Name = 'sc1_07_milo_emissive_dummy' }, - ['-885950074'] = { Name = 'sc1_07_scroll_det' }, - ['1758470254'] = { Name = 'sc1_07_shadow_mesh' }, - ['390897501'] = { Name = 'sc1_07_uvanim01' }, - ['284350399'] = { Name = 'sc1_07_window_no_int' }, - ['-1974578571'] = { Name = 'sc1_08_det_01' }, - ['-1147915024'] = { Name = 'sc1_08_det_02' }, - ['1709803948'] = { Name = 'sc1_08_det_03' }, - ['-1758434247'] = { Name = 'sc1_08_det_04' }, - ['1094762587'] = { Name = 'sc1_08_det_05' }, - ['-946992633'] = { Name = 'sc1_08_entrance_fizz' }, - ['184791156'] = { Name = 'sc1_08_fake_interior' }, - ['-246692737'] = { Name = 'sc1_08_ground' }, - ['974076152'] = { Name = 'sc1_08_hdg1' }, - ['-2034335123'] = { Name = 'sc1_08_hdg1det' }, - ['-1211583279'] = { Name = 'sc1_08_hdg2' }, - ['780389973'] = { Name = 'sc1_08_hdg2det' }, - ['1049220749'] = { Name = 'sc1_08_hedge2_lod' }, - ['-2054027446'] = { Name = 'sc1_08_hosp_brid' }, - ['-662742446'] = { Name = 'sc1_08_hosp_shdw' }, - ['2027691010'] = { Name = 'sc1_08_hosp_winblin' }, - ['441124330'] = { Name = 'sc1_08_hosp' }, - ['1375534007'] = { Name = 'sc1_08_ladder_004' }, - ['-1914664746'] = { Name = 'sc1_08_ladder_01' }, - ['-1609880277'] = { Name = 'sc1_08_ladder_02' }, - ['-1438891635'] = { Name = 'sc1_08_ladder_03' }, - ['1048638088'] = { Name = 'sc1_08_railings_01' }, - ['876010996'] = { Name = 'sc1_08_railings_02' }, - ['-1029179306'] = { Name = 'sc1_08_shadow01' }, - ['-26620203'] = { Name = 'sc1_08_sign_lights' }, - ['198637310'] = { Name = 'sc1_09_bld1_det_fiz' }, - ['814697810'] = { Name = 'sc1_09_build_fiz' }, - ['587422966'] = { Name = 'sc1_09_build_sprts' }, - ['-1754019242'] = { Name = 'sc1_09_build' }, - ['-759705398'] = { Name = 'sc1_09_build1_detail' }, - ['324329341'] = { Name = 'sc1_09_emissive_slod' }, - ['-897987152'] = { Name = 'sc1_09_emissive' }, - ['-404950428'] = { Name = 'sc1_09_gas1_details' }, - ['582887904'] = { Name = 'sc1_09_gasem' }, - ['821128352'] = { Name = 'sc1_09_ground' }, - ['1820939251'] = { Name = 'sc1_09_ladder_01' }, - ['1040687496'] = { Name = 'sc1_09_pipefizz' }, - ['760570356'] = { Name = 'sc1_09_railings_01' }, - ['1294975356'] = { Name = 'sc1_09_roof_shadow' }, - ['2118891771'] = { Name = 'sc1_09_underfizz' }, - ['-1558725888'] = { Name = 'sc1_10_apt_03' }, - ['-1816730140'] = { Name = 'sc1_10_apt01_det' }, - ['-636506916'] = { Name = 'sc1_10_apt01' }, - ['2119734233'] = { Name = 'sc1_10_apt02_det_fz1' }, - ['927303088'] = { Name = 'sc1_10_apt02_det_fz2' }, - ['-1303188796'] = { Name = 'sc1_10_apt02_det' }, - ['-464666280'] = { Name = 'sc1_10_apt02' }, - ['-530042332'] = { Name = 'sc1_10_apt03_det' }, - ['1391864871'] = { Name = 'sc1_10_baseball_cage' }, - ['-1740692335'] = { Name = 'sc1_10_commc' }, - ['339643696'] = { Name = 'sc1_10_det02' }, - ['1114462039'] = { Name = 'sc1_10_detail01' }, - ['206283965'] = { Name = 'sc1_10_detail01a' }, - ['-561886937'] = { Name = 'sc1_10_detail01b' }, - ['464044975'] = { Name = 'sc1_10_detail01c' }, - ['825355969'] = { Name = 'sc1_10_detail01d' }, - ['1899212832'] = { Name = 'sc1_10_fence_01' }, - ['-1065169215'] = { Name = 'sc1_10_fence_07' }, - ['491579936'] = { Name = 'sc1_10_fizz_dummy' }, - ['1949401786'] = { Name = 'sc1_10_fizz_dummy2' }, - ['-252122686'] = { Name = 'sc1_10_fizzbalcony' }, - ['418914950'] = { Name = 'sc1_10_fizzdets_1' }, - ['1494860642'] = { Name = 'sc1_10_fizzer' }, - ['-1546585000'] = { Name = 'sc1_10_fizzpanels_00' }, - ['-1843898137'] = { Name = 'sc1_10_fizzpanels_01' }, - ['965519313'] = { Name = 'sc1_10_fizzpanels_02' }, - ['734628939'] = { Name = 'sc1_10_fizzpanels_03' }, - ['-780782950'] = { Name = 'sc1_10_grills_01' }, - ['691578060'] = { Name = 'sc1_10_ground01' }, - ['1623430093'] = { Name = 'sc1_10_ground02' }, - ['1181744731'] = { Name = 'sc1_10_hedge03' }, - ['-1276774599'] = { Name = 'sc1_10_lrg_fnc_alley' }, - ['2073686170'] = { Name = 'sc1_10_lrg_fnc00' }, - ['-1178833698'] = { Name = 'sc1_10_lrg_fnc01' }, - ['1225919371'] = { Name = 'sc1_10_lrg_fnc02' }, - ['804346186'] = { Name = 'sc1_10_lrg_fnc03' }, - ['901670116'] = { Name = 'sc1_10_lrg_fnc04' }, - ['307633684'] = { Name = 'sc1_10_lrg_fnc05' }, - ['573095353'] = { Name = 'sc1_10_lrg_fnc06' }, - ['-753983617'] = { Name = 'sc1_10_lrg_fnc08' }, - ['145558202'] = { Name = 'sc1_10_lrg_fnc09' }, - ['-671700382'] = { Name = 'sc1_10_lrg_fnc10' }, - ['2127384194'] = { Name = 'sc1_10_railings_01' }, - ['1617629630'] = { Name = 'sc1_10_railings_02' }, - ['1370190907'] = { Name = 'sc1_10_railings_03' }, - ['-1327582536'] = { Name = 'sc1_10_railings_04' }, - ['-747474909'] = { Name = 'sc1_10_shop' }, - ['1760214618'] = { Name = 'sc1_11_apt_d' }, - ['-2091131280'] = { Name = 'sc1_11_apt_railings' }, - ['-1175844579'] = { Name = 'sc1_11_apt' }, - ['577757959'] = { Name = 'sc1_11_carwash_det' }, - ['1275283653'] = { Name = 'sc1_11_carwash_nightshutters' }, - ['400591906'] = { Name = 'sc1_11_carwash_shdow' }, - ['-803074035'] = { Name = 'sc1_11_carwash' }, - ['-765474360'] = { Name = 'sc1_11_chophouse' }, - ['1683329301'] = { Name = 'sc1_11_cwash_d_a' }, - ['1029886076'] = { Name = 'sc1_11_cwash_d_no_spinners' }, - ['-595651090'] = { Name = 'sc1_11_cwash_d' }, - ['-1028319053'] = { Name = 'sc1_11_cwash_d02' }, - ['-562240624'] = { Name = 'sc1_11_det_000' }, - ['1944456804'] = { Name = 'sc1_11_det_001' }, - ['-157838435'] = { Name = 'sc1_11_det_002' }, - ['1818132265'] = { Name = 'sc1_11_det_003' }, - ['1500698962'] = { Name = 'sc1_11_det_004' }, - ['-1156334446'] = { Name = 'sc1_11_det_02' }, - ['835622378'] = { Name = 'sc1_11_det_02b' }, - ['1603367279'] = { Name = 'sc1_11_det_02c' }, - ['1528830045'] = { Name = 'sc1_11_frank_win' }, - ['-399816851'] = { Name = 'sc1_11_garage_01' }, - ['-1391253703'] = { Name = 'sc1_11_garage_shadow' }, - ['370703749'] = { Name = 'sc1_11_ground' }, - ['1425116535'] = { Name = 'sc1_11_ground01' }, - ['462153794'] = { Name = 'sc1_11_ind_d' }, - ['-166053792'] = { Name = 'sc1_11_ind_railings_01' }, - ['2007851883'] = { Name = 'sc1_11_ind' }, - ['-1488798657'] = { Name = 'sc1_11_ind2' }, - ['-2032920460'] = { Name = 'sc1_11_ladder_01' }, - ['-1727087383'] = { Name = 'sc1_11_ladder_02' }, - ['-598129795'] = { Name = 'sc1_11_ladder_03' }, - ['-296032384'] = { Name = 'sc1_11_ladder_04' }, - ['1348217733'] = { Name = 'sc1_11_ladder_05' }, - ['-288167535'] = { Name = 'sc1_11_ladder1' }, - ['-1826355401'] = { Name = 'sc1_11_light_emmissives' }, - ['-263587354'] = { Name = 'sc1_11_mall_d' }, - ['-958394461'] = { Name = 'sc1_11_mall1' }, - ['-1196887243'] = { Name = 'sc1_11_mall2' }, - ['-1277892803'] = { Name = 'sc1_11_railings_01' }, - ['2049504230'] = { Name = 'sc1_11_railings_02' }, - ['-1891230176'] = { Name = 'sc1_11_railings_03' }, - ['-2040689589'] = { Name = 'sc1_11_railings_04' }, - ['1905582778'] = { Name = 'sc1_11_railings_05' }, - ['-1159753232'] = { Name = 'sc1_11_res_d_a' }, - ['-868141901'] = { Name = 'sc1_11_res_d_b' }, - ['-1620911369'] = { Name = 'sc1_11_res_d_c' }, - ['291323834'] = { Name = 'sc1_11_res1_01' }, - ['328614956'] = { Name = 'sc1_11_res1_02' }, - ['-1842275781'] = { Name = 'sc1_11_trio' }, - ['28617184'] = { Name = 'sc1_12_apt_det01' }, - ['327306619'] = { Name = 'sc1_12_apt_det02' }, - ['-1489443265'] = { Name = 'sc1_12_apt_railings_01' }, - ['959646265'] = { Name = 'sc1_12_apt_railings_02' }, - ['1412585377'] = { Name = 'sc1_12_apt' }, - ['429320542'] = { Name = 'sc1_12_balc_fence' }, - ['853548768'] = { Name = 'sc1_12_bb' }, - ['-106199077'] = { Name = 'sc1_12_build' }, - ['2142676767'] = { Name = 'sc1_12_cablemesh377' }, - ['1872641470'] = { Name = 'sc1_12_cablemesh62638_tstd' }, - ['-184736504'] = { Name = 'sc1_12_church_d' }, - ['-1994824260'] = { Name = 'sc1_12_church' }, - ['92104339'] = { Name = 'sc1_12_detail_01' }, - ['-1347175679'] = { Name = 'sc1_12_detail_02' }, - ['-1164390185'] = { Name = 'sc1_12_detail_03' }, - ['69105825'] = { Name = 'sc1_12_fencing_00' }, - ['-1377612756'] = { Name = 'sc1_12_fencing_01' }, - ['-1718541432'] = { Name = 'sc1_12_fencing_02' }, - ['-746711199'] = { Name = 'sc1_12_fencing_03' }, - ['-1120343337'] = { Name = 'sc1_12_fencing_04' }, - ['382351087'] = { Name = 'sc1_12_fizzdet_1' }, - ['594071596'] = { Name = 'sc1_12_fizzdet_2' }, - ['974847376'] = { Name = 'sc1_12_fizzdet_3' }, - ['-1355946056'] = { Name = 'sc1_12_fizzdet_4' }, - ['1610069329'] = { Name = 'sc1_12_ground02_d1' }, - ['1140424049'] = { Name = 'sc1_12_ground02_d2' }, - ['-1553585069'] = { Name = 'sc1_12_ground02' }, - ['16476028'] = { Name = 'sc1_12_ground04' }, - ['1063686824'] = { Name = 'sc1_12_ladder_01' }, - ['-1993848924'] = { Name = 'sc1_12_props_combo_01_lod' }, - ['440329991'] = { Name = 'sc1_12_railing01' }, - ['-412942000'] = { Name = 'sc1_12_railing02' }, - ['2022092079'] = { Name = 'sc1_12_railings_2' }, - ['122733550'] = { Name = 'sc1_13__grd' }, - ['-879155217'] = { Name = 'sc1_13_build04' }, - ['1763227789'] = { Name = 'sc1_13_build06_ovly' }, - ['753527443'] = { Name = 'sc1_13_build07' }, - ['-343017754'] = { Name = 'sc1_13_buildladder_fizz' }, - ['-541739900'] = { Name = 'sc1_13_burger_ov' }, - ['-368612031'] = { Name = 'sc1_13_fizz01a' }, - ['1780804986'] = { Name = 'sc1_13_fizz01b' }, - ['249247464'] = { Name = 'sc1_13_fizz01c' }, - ['544496154'] = { Name = 'sc1_13_fizz01d' }, - ['-2061642732'] = { Name = 'sc1_13_glue_02' }, - ['775208945'] = { Name = 'sc1_13_glue' }, - ['-997727664'] = { Name = 'sc1_13_ladder' }, - ['-562084173'] = { Name = 'sc1_13_props_fnc_01_lod' }, - ['1038025393'] = { Name = 'sc1_13_props_fnc_02_lod' }, - ['-487470377'] = { Name = 'sc1_13_props_fnc_03_lod' }, - ['-1468254596'] = { Name = 'sc1_13_props_fnc_04_lod' }, - ['-624314612'] = { Name = 'sc1_13_strip_ldr' }, - ['-435776584'] = { Name = 'sc1_13_strip_ldr001' }, - ['-1203500197'] = { Name = 'sc1_13_strip_ldr2' }, - ['1252993669'] = { Name = 'sc1_13_strip_oly' }, - ['1002079316'] = { Name = 'sc1_13_stripsgn_ladder' }, - ['-1668290541'] = { Name = 'sc1_13_stripsgn' }, - ['-813257011'] = { Name = 'sc1_14_bb_meltdown_slod' }, - ['-2055558885'] = { Name = 'sc1_14_bb_meltdown' }, - ['-863149821'] = { Name = 'sc1_14_bb_mollis_slod' }, - ['-664997263'] = { Name = 'sc1_14_bb_mollis' }, - ['1644466330'] = { Name = 'sc1_14_build1_alpha' }, - ['-1148481743'] = { Name = 'sc1_14_build1' }, - ['-486580720'] = { Name = 'sc1_14_build2' }, - ['-71158690'] = { Name = 'sc1_14_detail_01' }, - ['184210075'] = { Name = 'sc1_14_detail_02' }, - ['1087127101'] = { Name = 'sc1_14_detail_03' }, - ['366699985'] = { Name = 'sc1_14_grate_fizz' }, - ['-2096729964'] = { Name = 'sc1_14_grnd_02' }, - ['1696038186'] = { Name = 'sc1_14_ironwork' }, - ['559494366'] = { Name = 'sc1_14_leanfizz' }, - ['1902963699'] = { Name = 'sc1_14_stairs' }, - ['-245137328'] = { Name = 'sc1_14_tacorail' }, - ['2011341572'] = { Name = 'sc1_15_billboard' }, - ['-1087971190'] = { Name = 'sc1_15_build1' }, - ['-336119266'] = { Name = 'sc1_15_build2' }, - ['-1168124184'] = { Name = 'sc1_15_build5' }, - ['-338815283'] = { Name = 'sc1_15_build7_wndws_01' }, - ['-100617422'] = { Name = 'sc1_15_build7_wndws_02' }, - ['-801480794'] = { Name = 'sc1_15_build7_wndws_03' }, - ['-1781920323'] = { Name = 'sc1_15_build7' }, - ['1707979512'] = { Name = 'sc1_15_det_01' }, - ['-2137134952'] = { Name = 'sc1_15_det_02' }, - ['308251677'] = { Name = 'sc1_15_det_03' }, - ['550512894'] = { Name = 'sc1_15_det_04' }, - ['848219259'] = { Name = 'sc1_15_det_05' }, - ['1027858917'] = { Name = 'sc1_15_det_06' }, - ['-822573744'] = { Name = 'sc1_15_det_07' }, - ['523279301'] = { Name = 'sc1_15_emissive' }, - ['-1626281886'] = { Name = 'sc1_15_flatfence00' }, - ['-1242720733'] = { Name = 'sc1_15_flatfence06' }, - ['1092397403'] = { Name = 'sc1_15_flatfence11' }, - ['604139243'] = { Name = 'sc1_15_flatfence12' }, - ['297323096'] = { Name = 'sc1_15_flatfence15' }, - ['1579705142'] = { Name = 'sc1_15_flatfence16' }, - ['2146361838'] = { Name = 'sc1_15_flatfence17_lod' }, - ['1185035306'] = { Name = 'sc1_15_flatfence18' }, - ['1492408526'] = { Name = 'sc1_15_flatfence19' }, - ['296333577'] = { Name = 'sc1_15_fountain_water' }, - ['2053230388'] = { Name = 'sc1_15_gates_01' }, - ['-2017695255'] = { Name = 'sc1_15_gates_02' }, - ['1501465966'] = { Name = 'sc1_15_gates_03' }, - ['911886827'] = { Name = 'sc1_15_gfences00' }, - ['1216867910'] = { Name = 'sc1_15_gfences01' }, - ['-1636046563'] = { Name = 'sc1_15_ground1' }, - ['-724542061'] = { Name = 'sc1_15_ladder_01' }, - ['36714582'] = { Name = 'sc1_15_ladder_02' }, - ['-260631324'] = { Name = 'sc1_15_ladder_03' }, - ['1529014834'] = { Name = 'sc1_15_ladder_04' }, - ['-432864195'] = { Name = 'sc1_15_looroof' }, - ['1657608955'] = { Name = 'sc1_15_mort_fnc' }, - ['1424587352'] = { Name = 'sc1_15_sc1_17_rails00' }, - ['1731993341'] = { Name = 'sc1_15_sc1_17_rails01' }, - ['1903637363'] = { Name = 'sc1_15_sc1_17_rails02' }, - ['1952192943'] = { Name = 'sc1_15_sfence' }, - ['1700639989'] = { Name = 'sc1_15_stairs_00' }, - ['-1639635261'] = { Name = 'sc1_15_stairs_04' }, - ['-992925208'] = { Name = 'sc1_15_theatre_det' }, - ['-859810169'] = { Name = 'sc1_15sc1_15_build2_det' }, - ['1806651451'] = { Name = 'sc1_17_apt01_det01' }, - ['1572713560'] = { Name = 'sc1_17_apt01_det02' }, - ['1341364420'] = { Name = 'sc1_17_apt01_det03' }, - ['1420108395'] = { Name = 'sc1_17_apt01_det04' }, - ['96225286'] = { Name = 'sc1_17_apt01' }, - ['744766308'] = { Name = 'sc1_17_apt02_det01' }, - ['-239221232'] = { Name = 'sc1_17_apt02_det02' }, - ['96202252'] = { Name = 'sc1_17_apt02_det03' }, - ['-700674290'] = { Name = 'sc1_17_apt02_det04' }, - ['60707767'] = { Name = 'sc1_17_apt02_rl01' }, - ['895629122'] = { Name = 'sc1_17_apt02_rl02' }, - ['507382010'] = { Name = 'sc1_17_apt02_rl03' }, - ['1342237823'] = { Name = 'sc1_17_apt02_rl04' }, - ['1550886409'] = { Name = 'sc1_17_apt02_step1' }, - ['1293354838'] = { Name = 'sc1_17_apt02_step2' }, - ['746296708'] = { Name = 'sc1_17_apt02' }, - ['925883134'] = { Name = 'sc1_17_apt02fizwal_lod' }, - ['746637933'] = { Name = 'sc1_17_apt02fizwal' }, - ['-926827715'] = { Name = 'sc1_17_apt03_det01' }, - ['461004973'] = { Name = 'sc1_17_apt03_det02' }, - ['302796241'] = { Name = 'sc1_17_apt03_det03' }, - ['-1005158'] = { Name = 'sc1_17_apt03_det04' }, - ['1506897967'] = { Name = 'sc1_17_apt03' }, - ['199813350'] = { Name = 'sc1_17_detail01' }, - ['496340035'] = { Name = 'sc1_17_detail02' }, - ['1068748927'] = { Name = 'sc1_17_detail03' }, - ['1355641522'] = { Name = 'sc1_17_detail04' }, - ['1677629716'] = { Name = 'sc1_17_detail05' }, - ['1965112153'] = { Name = 'sc1_17_detail06' }, - ['-2024153142'] = { Name = 'sc1_17_detail07' }, - ['-2022252540'] = { Name = 'sc1_17_detail08' }, - ['-1715960701'] = { Name = 'sc1_17_detail09' }, - ['-1224163257'] = { Name = 'sc1_17_detail10' }, - ['1464615600'] = { Name = 'sc1_17_fence_met_01' }, - ['-644561089'] = { Name = 'sc1_17_fence_met_02' }, - ['-339285085'] = { Name = 'sc1_17_fence_met_03' }, - ['-1141437436'] = { Name = 'sc1_17_fence_met_04' }, - ['-827182726'] = { Name = 'sc1_17_fence_met_05' }, - ['-1357942219'] = { Name = 'sc1_17_fence_met_06' }, - ['-2100487759'] = { Name = 'sc1_17_fence_met_07' }, - ['-1813267474'] = { Name = 'sc1_17_fence_met_08' }, - ['-444276965'] = { Name = 'sc1_17_fence_met_09' }, - ['-1506482640'] = { Name = 'sc1_17_fence_met_11' }, - ['-235405903'] = { Name = 'sc1_17_fence_met_13' }, - ['2098661713'] = { Name = 'sc1_17_fence_met2_00' }, - ['1937274392'] = { Name = 'sc1_17_fence_met2_02' }, - ['1715887028'] = { Name = 'sc1_17_fence_met2_03' }, - ['953319629'] = { Name = 'sc1_17_fence_met2_05' }, - ['511724581'] = { Name = 'sc1_17_fence_met2_07' }, - ['34607941'] = { Name = 'sc1_17_fence_met2_08' }, - ['-195201056'] = { Name = 'sc1_17_fence_met2_09' }, - ['417382622'] = { Name = 'sc1_17_fence_met2_10' }, - ['917830790'] = { Name = 'sc1_17_fence_met2_11' }, - ['1148819475'] = { Name = 'sc1_17_fence_met2_12' }, - ['1395045741'] = { Name = 'sc1_17_fence_met2_13' }, - ['1876422351'] = { Name = 'sc1_17_fence_met2_14' }, - ['1599358076'] = { Name = 'sc1_17_ground' }, - ['1810096381'] = { Name = 'sc1_17_hedges_a_tp1' }, - ['-42630114'] = { Name = 'sc1_17_hedges_a_tp2' }, - ['-58684192'] = { Name = 'sc1_17_hedges_a' }, - ['-1767369967'] = { Name = 'sc1_17_hedges_b_tp' }, - ['240103550'] = { Name = 'sc1_17_hedges_b' }, - ['947142807'] = { Name = 'sc1_17_hedges_tp' }, - ['-1934552907'] = { Name = 'sc1_17_poolshadow' }, - ['1477841903'] = { Name = 'sc1_17_railing01' }, - ['-2103809801'] = { Name = 'sc1_17_railing02' }, - ['-844422082'] = { Name = 'sc1_17_steps01' }, - ['-910910383'] = { Name = 'sc1_17_steps02' }, - ['-1573614200'] = { Name = 'sc1_18_bd1_rail01' }, - ['275638765'] = { Name = 'sc1_18_bd1_rail02' }, - ['-45562973'] = { Name = 'sc1_18_bd1_rail03' }, - ['-2762967'] = { Name = 'sc1_18_build1_det' }, - ['1021858630'] = { Name = 'sc1_18_build1' }, - ['354509525'] = { Name = 'sc1_18_det_a' }, - ['133384313'] = { Name = 'sc1_18_det_b' }, - ['-112481494'] = { Name = 'sc1_18_det_c' }, - ['1921523109'] = { Name = 'sc1_18_det_d' }, - ['-530089630'] = { Name = 'sc1_18_det_e' }, - ['-1454298866'] = { Name = 'sc1_18_det' }, - ['239415193'] = { Name = 'sc1_18_ground' }, - ['2015540815'] = { Name = 'sc1_18_ladder_01' }, - ['1857829747'] = { Name = 'sc1_18_taco' }, - ['-1464715819'] = { Name = 'sc1_19_carpk' }, - ['1601040707'] = { Name = 'sc1_19_city_hall' }, - ['1512077674'] = { Name = 'sc1_19_courts_de-fzz_lod' }, - ['-995438067'] = { Name = 'sc1_19_courts' }, - ['1129892776'] = { Name = 'sc1_19_cp_fence_00' }, - ['95244370'] = { Name = 'sc1_19_cp_fence_01' }, - ['-510752747'] = { Name = 'sc1_19_cp_fence_02' }, - ['-1409639298'] = { Name = 'sc1_19_cp_fence_03' }, - ['-1792007130'] = { Name = 'sc1_19_cp_fence_04_lod' }, - ['-2067116522'] = { Name = 'sc1_19_cp_fence_05' }, - ['-1884462116'] = { Name = 'sc1_19_cp_fence_06' }, - ['1501198199'] = { Name = 'sc1_19_cp_fence_07' }, - ['674665712'] = { Name = 'sc1_19_cp_fence_08' }, - ['1883428045'] = { Name = 'sc1_19_crprk_det' }, - ['-298928063'] = { Name = 'sc1_19_crprk_lights' }, - ['-648051180'] = { Name = 'sc1_19_de-fiz_hidden' }, - ['-2089271614'] = { Name = 'sc1_19_detail_1' }, - ['-1775803360'] = { Name = 'sc1_19_detail_2' }, - ['688753146'] = { Name = 'sc1_19_detail_3' }, - ['-1468462909'] = { Name = 'sc1_19_detail_4' }, - ['-1169314708'] = { Name = 'sc1_19_detail_5' }, - ['-99901242'] = { Name = 'sc1_19_fence_seg_end' }, - ['921765662'] = { Name = 'sc1_19_fence_seg1' }, - ['-784421947'] = { Name = 'sc1_19_fencebits_01' }, - ['-1812188867'] = { Name = 'sc1_19_fencebits_02' }, - ['-2070048128'] = { Name = 'sc1_19_fencebits_03' }, - ['661641254'] = { Name = 'sc1_19_fencebits_04' }, - ['439762355'] = { Name = 'sc1_19_fencebits_05' }, - ['-1118600209'] = { Name = 'sc1_19_fencebits_06' }, - ['765584522'] = { Name = 'sc1_19_fencebits_07' }, - ['-1183777746'] = { Name = 'sc1_19_fencebits_08' }, - ['1203148987'] = { Name = 'sc1_19_fencebits_09' }, - ['1218577430'] = { Name = 'sc1_19_ground_dtl' }, - ['-1087732761'] = { Name = 'sc1_19_ground' }, - ['-1336019943'] = { Name = 'sc1_19_imp_fence__01' }, - ['-1401763881'] = { Name = 'sc1_19_imp_fence_02' }, - ['-1645368619'] = { Name = 'sc1_19_imp_fence_03' }, - ['-1053918694'] = { Name = 'sc1_19_ladder_01' }, - ['-431133555'] = { Name = 'sc1_19_library' }, - ['1397286283'] = { Name = 'sc1_19_props_sheriff_heli_shdw' }, - ['-2040691719'] = { Name = 'sc1_19_sec_fence' }, - ['-2081194519'] = { Name = 'sc1_19_sheriff_bars' }, - ['-1760209647'] = { Name = 'sc1_19_sheriff' }, - ['1330012794'] = { Name = 'sc1_19_stairdetails_01' }, - ['505380909'] = { Name = 'sc1_19_stairdetails_02' }, - ['811148448'] = { Name = 'sc1_19_stairdetails_03' }, - ['-2008263559'] = { Name = 'sc1_19_stairdetails_04' }, - ['1823513922'] = { Name = 'sc1_19_stairdetails_06' }, - ['1047478464'] = { Name = 'sc1_19_stairdetails_07' }, - ['-1050687825'] = { Name = 'sc1_19_stairdetails_08' }, - ['-762189549'] = { Name = 'sc1_19_stairdetails_09' }, - ['1476984762'] = { Name = 'sc1_20_barrier_01' }, - ['489294333'] = { Name = 'sc1_20_barrier_02' }, - ['861812325'] = { Name = 'sc1_20_barrier_03' }, - ['413040874'] = { Name = 'sc1_20_barrier_04' }, - ['783527188'] = { Name = 'sc1_20_barrier_05' }, - ['-133120049'] = { Name = 'sc1_20_barrier_06' }, - ['-1531301003'] = { Name = 'sc1_20_building' }, - ['2098172315'] = { Name = 'sc1_20_frame_fiz_01' }, - ['-1898105546'] = { Name = 'sc1_20_frame_fiz_02' }, - ['1489443396'] = { Name = 'sc1_20_gantry_02' }, - ['-691889963'] = { Name = 'sc1_20_gantry' }, - ['1178281232'] = { Name = 'sc1_20_gd02' }, - ['1630427894'] = { Name = 'sc1_20_gd03' }, - ['-1081189850'] = { Name = 'sc1_20_glue_01' }, - ['1909669553'] = { Name = 'sc1_20_glue_02' }, - ['-1662413603'] = { Name = 'sc1_20_glue_03' }, - ['-1173439480'] = { Name = 'sc1_20_ground' }, - ['-1287405988'] = { Name = 'sc1_20_ladder_03' }, - ['-957225544'] = { Name = 'sc1_20_ladder_04' }, - ['1158042714'] = { Name = 'sc1_20_metalwork_2a' }, - ['-215338849'] = { Name = 'sc1_20_metalwork_2b' }, - ['140598041'] = { Name = 'sc1_20_metalwork_2c' }, - ['-1222494052'] = { Name = 'sc1_20_metalwork_2d' }, - ['-861641824'] = { Name = 'sc1_20_metalwork_2e' }, - ['-1701019149'] = { Name = 'sc1_20_metalwork' }, - ['766377489'] = { Name = 'sc1_20_wires_heavy_00' }, - ['-68740476'] = { Name = 'sc1_20_wires_heavy_01' }, - ['1244706582'] = { Name = 'sc1_20_wires_heavy_02' }, - ['410440611'] = { Name = 'sc1_20_wires_heavy_03' }, - ['792232226'] = { Name = 'sc1_20_wires_heavy_04' }, - ['1154395214'] = { Name = 'sc1_20_wires_heavy_05' }, - ['2003672566'] = { Name = 'sc1_20_wires_heavy_050' }, - ['1573346879'] = { Name = 'sc1_20_wires_heavy_06' }, - ['1632658769'] = { Name = 'sc1_20_wires_heavy_07' }, - ['2023625716'] = { Name = 'sc1_20_wires_heavy_08' }, - ['-1915732392'] = { Name = 'sc1_20_wires_heavy_09' }, - ['-126839049'] = { Name = 'sc1_20_wires_heavy_10' }, - ['103232100'] = { Name = 'sc1_20_wires_heavy_11' }, - ['1558044624'] = { Name = 'sc1_20_wires_heavy_12' }, - ['1789754223'] = { Name = 'sc1_20_wires_heavy_13' }, - ['1555619714'] = { Name = 'sc1_20_wires_heavy_14' }, - ['1787067161'] = { Name = 'sc1_20_wires_heavy_15' }, - ['-1590335358'] = { Name = 'sc1_20_wires_heavy_16' }, - ['788104196'] = { Name = 'sc1_20_wires_heavy_17' }, - ['-2050903653'] = { Name = 'sc1_20_wires_heavy_18' }, - ['-1780362789'] = { Name = 'sc1_20_wires_heavy_19' }, - ['-1211263854'] = { Name = 'sc1_20_wires_heavy_20' }, - ['-348652698'] = { Name = 'sc1_20_wires_heavy_21' }, - ['628420575'] = { Name = 'sc1_20_wires_heavy_22' }, - ['-960286083'] = { Name = 'sc1_20_wires_heavy_23' }, - ['34187529'] = { Name = 'sc1_20_wires_heavy_24' }, - ['-195621468'] = { Name = 'sc1_20_wires_heavy_25' }, - ['1570168866'] = { Name = 'sc1_20_wires_heavy_26' }, - ['1340949711'] = { Name = 'sc1_20_wires_heavy_27' }, - ['1705177142'] = { Name = 'sc1_20_wires_heavy_28' }, - ['1496667995'] = { Name = 'sc1_20_wires_heavy_29' }, - ['1194276475'] = { Name = 'sc1_20_wires_heavy_30' }, - ['1499486941'] = { Name = 'sc1_20_wires_heavy_31' }, - ['1789001056'] = { Name = 'sc1_20_wires_heavy_32' }, - ['-56155796'] = { Name = 'sc1_20_wires_heavy_33' }, - ['2143463333'] = { Name = 'sc1_20_wires_heavy_34' }, - ['-1839608621'] = { Name = 'sc1_20_wires_heavy_35' }, - ['-1555075394'] = { Name = 'sc1_20_wires_heavy_36' }, - ['897618718'] = { Name = 'sc1_20_wires_heavy_37' }, - ['-647636258'] = { Name = 'sc1_20_wires_heavy_38' }, - ['-349733279'] = { Name = 'sc1_20_wires_heavy_39' }, - ['-610345412'] = { Name = 'sc1_20_wires_heavy_40' }, - ['-883081799'] = { Name = 'sc1_20_wires_heavy_41' }, - ['-1201530941'] = { Name = 'sc1_20_wires_heavy_42' }, - ['641495926'] = { Name = 'sc1_20_wires_heavy_43' }, - ['-690793383'] = { Name = 'sc1_20_wires_heavy_44' }, - ['-451874604'] = { Name = 'sc1_20_wires_heavy_45' }, - ['2074418686'] = { Name = 'sc1_20_wires_heavy_46' }, - ['-1947746685'] = { Name = 'sc1_20_wires_heavy_47' }, - ['162216456'] = { Name = 'sc1_20_wires_heavy_48' }, - ['276187038'] = { Name = 'sc1_20_wires_heavy_49' }, - ['-1839488610'] = { Name = 'sc1_21_details_00' }, - ['-28542590'] = { Name = 'sc1_21_details_01' }, - ['-869919434'] = { Name = 'sc1_21_details_02' }, - ['-623398247'] = { Name = 'sc1_21_details_03' }, - ['-1196921285'] = { Name = 'sc1_21_details_04' }, - ['895903669'] = { Name = 'sc1_21_details_05' }, - ['53183296'] = { Name = 'sc1_21_details_06' }, - ['-446755403'] = { Name = 'sc1_21_fencing_01' }, - ['1740350778'] = { Name = 'sc1_21_gas_railings' }, - ['-1724148895'] = { Name = 'sc1_21_gas' }, - ['1869551763'] = { Name = 'sc1_21_ground01' }, - ['-1673366983'] = { Name = 'sc1_21_ground02' }, - ['-1810855192'] = { Name = 'sc1_21_ladder_01' }, - ['1912164995'] = { Name = 'sc1_21_res_det01' }, - ['1673115140'] = { Name = 'sc1_21_res_det02' }, - ['-1770382456'] = { Name = 'sc1_21_res_det03' }, - ['-2062452557'] = { Name = 'sc1_21_res_det04' }, - ['150438021'] = { Name = 'sc1_21_res_det05' }, - ['-225677733'] = { Name = 'sc1_21_res01_railings' }, - ['706597296'] = { Name = 'sc1_21_res01' }, - ['1122796353'] = { Name = 'sc1_21_res02' }, - ['1921009925'] = { Name = 'sc1_21_roundred_railings' }, - ['-630552158'] = { Name = 'sc1_21_roundred' }, - ['-683932959'] = { Name = 'sc1_21_shop01' }, - ['1028705967'] = { Name = 'sc1_21_w_fnc' }, - ['-1315194081'] = { Name = 'sc1_22_fizzblocker_1' }, - ['1527948176'] = { Name = 'sc1_22_fizzblocker_1b' }, - ['-1028629176'] = { Name = 'sc1_22_fizzblocker_4' }, - ['264304488'] = { Name = 'sc1_22_fizzblocker_7' }, - ['-1185855576'] = { Name = 'sc1_22_fizzblocker_7b' }, - ['-34122795'] = { Name = 'sc1_22_fizzblocker_8' }, - ['-2118888777'] = { Name = 'sc1_22_fizzpipes' }, - ['-207156362'] = { Name = 'sc1_22_grounda_dcl' }, - ['1411881003'] = { Name = 'sc1_22_grounda' }, - ['-364424650'] = { Name = 'sc1_22_groundb_dcl' }, - ['-730457918'] = { Name = 'sc1_22_groundb' }, - ['-678413229'] = { Name = 'sc1_22_ladder_002' }, - ['-869090438'] = { Name = 'sc1_22_ladder_01' }, - ['1351369763'] = { Name = 'sc1_22_ladder_03' }, - ['-2109181789'] = { Name = 'sc1_22_mall_04bb' }, - ['-1663863779'] = { Name = 'sc1_22_mall_dec' }, - ['1352847015'] = { Name = 'sc1_22_mall_railings_01' }, - ['2055840372'] = { Name = 'sc1_22_mall_railings_02' }, - ['-1471380813'] = { Name = 'sc1_22_park_sld_01' }, - ['-561115048'] = { Name = 'sc1_23_antenna' }, - ['-1750074354'] = { Name = 'sc1_23_bb_frame' }, - ['-1663565911'] = { Name = 'sc1_23_chicken' }, - ['-1052450924'] = { Name = 'sc1_23_detail_00' }, - ['208303582'] = { Name = 'sc1_23_detail_01' }, - ['-592931237'] = { Name = 'sc1_23_detail_02' }, - ['-1262631238'] = { Name = 'sc1_23_detail_03' }, - ['-270058228'] = { Name = 'sc1_23_detail_04' }, - ['-1725493363'] = { Name = 'sc1_23_detail_05' }, - ['-957551848'] = { Name = 'sc1_23_detail_06' }, - ['1980439285'] = { Name = 'sc1_23_fizzygrill' }, - ['1279568528'] = { Name = 'sc1_23_garage' }, - ['1563039106'] = { Name = 'sc1_23_ground01' }, - ['-1865224404'] = { Name = 'sc1_23_ladder_01' }, - ['1519420072'] = { Name = 'sc1_23_ladder_02' }, - ['1162893352'] = { Name = 'sc1_23_ladder_03' }, - ['572756431'] = { Name = 'sc1_23_ladder_05' }, - ['759667063'] = { Name = 'sc1_23_rails_det' }, - ['-1121790995'] = { Name = 'sc1_23_res_det' }, - ['688150710'] = { Name = 'sc1_23_res' }, - ['-689872355'] = { Name = 'sc1_23_roofpoles' }, - ['-2078834524'] = { Name = 'sc1_23_shadowprox' }, - ['-1294061372'] = { Name = 'sc1_23_shop01' }, - ['1453383568'] = { Name = 'sc1_23_shop02_grate' }, - ['1526726917'] = { Name = 'sc1_23_shop02' }, - ['-1841405354'] = { Name = 'sc1_23_stairrail' }, - ['1329166332'] = { Name = 'sc1_23_tram' }, - ['484858405'] = { Name = 'sc1_23_tramfence_00' }, - ['258653998'] = { Name = 'sc1_23_tramfence_01' }, - ['-1254671091'] = { Name = 'sc1_23_woodfizz' }, - ['1040650991'] = { Name = 'sc1_23_yorails' }, - ['-2137350583'] = { Name = 'sc1_24_bd07_d01' }, - ['1729162030'] = { Name = 'sc1_24_bd07_d02' }, - ['-386039419'] = { Name = 'sc1_24_build05' }, - ['328849085'] = { Name = 'sc1_24_build07' }, - ['-970405224'] = { Name = 'sc1_24_det01' }, - ['-707237385'] = { Name = 'sc1_24_det02' }, - ['-1350787776'] = { Name = 'sc1_24_det03' }, - ['1251494847'] = { Name = 'sc1_24_det04_b' }, - ['-1182420654'] = { Name = 'sc1_24_det04' }, - ['52413573'] = { Name = 'sc1_24_det05' }, - ['1911296340'] = { Name = 'sc1_24_fence' }, - ['-1573138049'] = { Name = 'sc1_24_garage' }, - ['-400780004'] = { Name = 'sc1_24_ground' }, - ['-414442120'] = { Name = 'sc1_24_ladder_002' }, - ['538545748'] = { Name = 'sc1_24_ladder_01' }, - ['-1078140701'] = { Name = 'sc1_24_ladder' }, - ['240590085'] = { Name = 'sc1_24_pipe01' }, - ['-116526477'] = { Name = 'sc1_24_pipe02' }, - ['-1089371757'] = { Name = 'sc1_24_railfizz1' }, - ['-179048937'] = { Name = 'sc1_24_railfizz2' }, - ['-230949915'] = { Name = 'sc1_24_res_det01' }, - ['-1623960133'] = { Name = 'sc1_24_res_det02' }, - ['-1930579666'] = { Name = 'sc1_24_res_det03' }, - ['1172284179'] = { Name = 'sc1_24_res_det04' }, - ['999132783'] = { Name = 'sc1_24_res_det05' }, - ['50385563'] = { Name = 'sc1_24_res1' }, - ['-2042169511'] = { Name = 'sc1_24_res1b' }, - ['-1818082376'] = { Name = 'sc1_25_detail_01' }, - ['-292587119'] = { Name = 'sc1_25_detail_03' }, - ['-1143270363'] = { Name = 'sc1_25_detail_04' }, - ['-434542431'] = { Name = 'sc1_25_detail_05' }, - ['-681129156'] = { Name = 'sc1_25_detail_06' }, - ['160477071'] = { Name = 'sc1_25_detail_07' }, - ['1121259583'] = { Name = 'sc1_25_detail_b' }, - ['891682632'] = { Name = 'sc1_25_ground' }, - ['1381522885'] = { Name = 'sc1_25_rail01' }, - ['1076803954'] = { Name = 'sc1_25_rail02' }, - ['756323134'] = { Name = 'sc1_25_rail03' }, - ['-198853803'] = { Name = 'sc1_25_res01_det01' }, - ['-436723974'] = { Name = 'sc1_25_res01_det02' }, - ['111239244'] = { Name = 'sc1_25_res01_det03' }, - ['-122502033'] = { Name = 'sc1_25_res01_det04' }, - ['-1948894842'] = { Name = 'sc1_25_res01' }, - ['-49973211'] = { Name = 'sc1_25_shops_01' }, - ['-758832219'] = { Name = 'sc1_25_shops_02' }, - ['1476357864'] = { Name = 'sc1_27_cutscene' }, - ['-1492384396'] = { Name = 'sc1_27_detail_01' }, - ['-892876617'] = { Name = 'sc1_27_detail_01b' }, - ['-269871313'] = { Name = 'sc1_27_detail_02' }, - ['1911493531'] = { Name = 'sc1_27_detail_02b' }, - ['1672509214'] = { Name = 'sc1_27_detail_02c' }, - ['1582424835'] = { Name = 'sc1_27_fencing' }, - ['-559117176'] = { Name = 'sc1_27_gate_dnt_ex' }, - ['-520572768'] = { Name = 'sc1_27_ground' }, - ['2018471343'] = { Name = 'sc1_27_res01_det01' }, - ['1505046651'] = { Name = 'sc1_27_res01_det02' }, - ['38470052'] = { Name = 'sc1_27_res01_det03' }, - ['384183002'] = { Name = 'sc1_27_res01_det04' }, - ['816307805'] = { Name = 'sc1_27_res01_det05' }, - ['-1175940848'] = { Name = 'sc1_27_res01' }, - ['-196704821'] = { Name = 'sc1_27_res02' }, - ['-2025984766'] = { Name = 'sc1_27_shp' }, - ['1755573221'] = { Name = 'sc1_28_b03_shutr' }, - ['-1437502437'] = { Name = 'sc1_28_bd01b_d01' }, - ['-1678132920'] = { Name = 'sc1_28_build01' }, - ['750461473'] = { Name = 'sc1_28_build01b' }, - ['-1332714891'] = { Name = 'sc1_28_build03' }, - ['-86673666'] = { Name = 'sc1_28_build04' }, - ['-389609384'] = { Name = 'sc1_28_detail01' }, - ['-1321002659'] = { Name = 'sc1_28_detail02' }, - ['540014377'] = { Name = 'sc1_28_detail03' }, - ['-977878460'] = { Name = 'sc1_28_detail04' }, - ['-998916158'] = { Name = 'sc1_28_detail05' }, - ['1816760171'] = { Name = 'sc1_28_detail06' }, - ['-686529281'] = { Name = 'sc1_28_detail07' }, - ['-1664126858'] = { Name = 'sc1_28_detail08' }, - ['-713984975'] = { Name = 'sc1_28_fizzsteps' }, - ['-1163304578'] = { Name = 'sc1_28_ground' }, - ['-1269481001'] = { Name = 'sc1_28_ladder_002' }, - ['2035290977'] = { Name = 'sc1_28_ladder_01' }, - ['2115057825'] = { Name = 'sc1_28_ladder01' }, - ['541595206'] = { Name = 'sc1_28_rail01' }, - ['-2030672991'] = { Name = 'sc1_28_rail02' }, - ['2071415971'] = { Name = 'sc1_28_rail03' }, - ['-1052747720'] = { Name = 'sc1_28_rail04' }, - ['1476494776'] = { Name = 'sc1_28_rail05' }, - ['-110966664'] = { Name = 'sc1_28_rail06' }, - ['-1339935240'] = { Name = 'sc1_28_rail07' }, - ['1533188285'] = { Name = 'sc1_28_res01_det01' }, - ['-1863154728'] = { Name = 'sc1_28_res01_det03' }, - ['-30330797'] = { Name = 'sc1_28_res01' }, - ['1808985961'] = { Name = 'sc1_29_corg00' }, - ['1452852469'] = { Name = 'sc1_29_corg01' }, - ['1791978878'] = { Name = 'sc1_29_corg02' }, - ['-776322172'] = { Name = 'sc1_29_detail01' }, - ['1148568392'] = { Name = 'sc1_29_detail01b' }, - ['-87019522'] = { Name = 'sc1_29_detail01c' }, - ['-529800985'] = { Name = 'sc1_29_detail02' }, - ['164875329'] = { Name = 'sc1_29_detail02b' }, - ['-588141704'] = { Name = 'sc1_29_fizzpanels1' }, - ['-776956682'] = { Name = 'sc1_29_fizzpanels2' }, - ['2024122806'] = { Name = 'sc1_29_fuckingfizz' }, - ['-1432676209'] = { Name = 'sc1_29_grnd01' }, - ['-170643728'] = { Name = 'sc1_29_grnd02' }, - ['1286545699'] = { Name = 'sc1_29_grndhge1' }, - ['1951523886'] = { Name = 'sc1_29_res01_det01' }, - ['-691295972'] = { Name = 'sc1_29_res01_det02' }, - ['-921301583'] = { Name = 'sc1_29_res01_det03' }, - ['-477348115'] = { Name = 'sc1_29_res01_det03b' }, - ['-837413887'] = { Name = 'sc1_29_res01_det03c' }, - ['-228630461'] = { Name = 'sc1_29_res01_det04' }, - ['-457915154'] = { Name = 'sc1_29_res01_det05' }, - ['534985546'] = { Name = 'sc1_29_res01_det06' }, - ['505122398'] = { Name = 'sc1_29_res01' }, - ['1423950477'] = { Name = 'sc1_29_res01b' }, - ['1932721971'] = { Name = 'sc1_29_res01c' }, - ['741550733'] = { Name = 'sc1_29_res02' }, - ['-89322167'] = { Name = 'sc1_29_res02b' }, - ['671518649'] = { Name = 'sc1_29_shop_d' }, - ['1941696375'] = { Name = 'sc1_29_shop' }, - ['-685097871'] = { Name = 'sc1_29_shopsign' }, - ['-1750894360'] = { Name = 'sc1_30_armco' }, - ['2142208886'] = { Name = 'sc1_30_billboard' }, - ['-358090189'] = { Name = 'sc1_30_building_4' }, - ['560068546'] = { Name = 'sc1_30_cablemesh119332_hvstd' }, - ['-651888659'] = { Name = 'sc1_30_cablemesh119347_hvstd' }, - ['1626310892'] = { Name = 'sc1_30_cablemesh119378_hvstd' }, - ['-19546827'] = { Name = 'sc1_30_cablemesh119393_hvstd' }, - ['-1550937586'] = { Name = 'sc1_30_cablemesh119408_hvstd' }, - ['1852714974'] = { Name = 'sc1_30_cablemesh119423_hvstd' }, - ['-996262164'] = { Name = 'sc1_30_church_railings' }, - ['-715223056'] = { Name = 'sc1_30_church_railings2' }, - ['1005417810'] = { Name = 'sc1_30_church' }, - ['963398157'] = { Name = 'sc1_30_detail_1' }, - ['1212573633'] = { Name = 'sc1_30_detail_2' }, - ['-705166554'] = { Name = 'sc1_30_detail_3' }, - ['998243147'] = { Name = 'sc1_30_fence_00' }, - ['172497116'] = { Name = 'sc1_30_fence_01' }, - ['1622263214'] = { Name = 'sc1_30_fence_02' }, - ['-560840335'] = { Name = 'sc1_30_fence_03' }, - ['-181899619'] = { Name = 'sc1_30_fence_04' }, - ['-851487345'] = { Name = 'sc1_30_fence_2_00' }, - ['-816355229'] = { Name = 'sc1_30_ground1' }, - ['-987933713'] = { Name = 'sc1_30_ground2' }, - ['-2061594840'] = { Name = 'sc1_30_motel_fiz00' }, - ['-1809830617'] = { Name = 'sc1_30_motel_fiz01' }, - ['-1234734667'] = { Name = 'sc1_30_motel_fiz02' }, - ['-1496591746'] = { Name = 'sc1_30_motel_fiz03' }, - ['1492760283'] = { Name = 'sc1_30_motel_fiz04' }, - ['1293328149'] = { Name = 'sc1_30_motel_fiz05' }, - ['1867375491'] = { Name = 'sc1_30_motel_fiz06' }, - ['1629767472'] = { Name = 'sc1_30_motel_fiz07' }, - ['296593476'] = { Name = 'sc1_30_motel_fiz08' }, - ['573786451'] = { Name = 'sc1_30_motel_fiz09' }, - ['1298675238'] = { Name = 'sc1_30_res_det01' }, - ['-1452216778'] = { Name = 'sc1_30_res_det02' }, - ['1932952002'] = { Name = 'sc1_30_res_det03' }, - ['1402601811'] = { Name = 'sc1_30_res' }, - ['1469303074'] = { Name = 'sc1_31_det01' }, - ['1350462585'] = { Name = 'sc1_31_det01b' }, - ['1049413782'] = { Name = 'sc1_31_det01c' }, - ['-2117886703'] = { Name = 'sc1_31_det02' }, - ['2032039989'] = { Name = 'sc1_31_det02b' }, - ['5796857'] = { Name = 'sc1_31_ground01' }, - ['168298332'] = { Name = 'sc1_31_ground02' }, - ['113007112'] = { Name = 'sc1_31_ladder_01' }, - ['1121275766'] = { Name = 'sc1_31_metalgrates' }, - ['-868164819'] = { Name = 'sc1_31_res01_det_2' }, - ['-2084005917'] = { Name = 'sc1_31_res01_det' }, - ['-987289038'] = { Name = 'sc1_31_res01' }, - ['1252435012'] = { Name = 'sc1_31_res02_det_2' }, - ['739428050'] = { Name = 'sc1_31_res02_det' }, - ['-1277950068'] = { Name = 'sc1_31_res02' }, - ['-2103235124'] = { Name = 'sc1_31_shops_det' }, - ['-2004085437'] = { Name = 'sc1_31_shops01' }, - ['-756236269'] = { Name = 'sc1_32_alley_ladder' }, - ['2051182732'] = { Name = 'sc1_32_decal_06' }, - ['951589876'] = { Name = 'sc1_32_decal_06b' }, - ['-331107399'] = { Name = 'sc1_32_facdetail_00' }, - ['-571926780'] = { Name = 'sc1_32_facdetail_01' }, - ['-464935991'] = { Name = 'sc1_32_facdetail_02' }, - ['-703658156'] = { Name = 'sc1_32_facdetail_03' }, - ['89974255'] = { Name = 'sc1_32_facdetail_04' }, - ['-107557277'] = { Name = 'sc1_32_facdetail_05' }, - ['-1463374652'] = { Name = 'sc1_32_facdetail_06' }, - ['-888671930'] = { Name = 'sc1_32_facdetail_07' }, - ['-1102882883'] = { Name = 'sc1_32_facdetail_08' }, - ['1853405225'] = { Name = 'sc1_32_facdetail_09' }, - ['1588238173'] = { Name = 'sc1_32_facdetail_10' }, - ['1826960338'] = { Name = 'sc1_32_facdetail_11' }, - ['-2111873466'] = { Name = 'sc1_32_facdetail_12' }, - ['1944109513'] = { Name = 'sc1_32_facdetail_13' }, - ['1233808661'] = { Name = 'sc1_32_facdetail_14' }, - ['374408867'] = { Name = 'sc1_32_facdetail_15' }, - ['327719179'] = { Name = 'sc1_32_fence_01' }, - ['-1393538088'] = { Name = 'sc1_32_fence_02' }, - ['-1632522405'] = { Name = 'sc1_32_fence_03' }, - ['-934280553'] = { Name = 'sc1_32_fence_04' }, - ['-1174116864'] = { Name = 'sc1_32_fence_05' }, - ['1944902094'] = { Name = 'sc1_32_fence_06' }, - ['1214677698'] = { Name = 'sc1_32_fence_07' }, - ['587056306'] = { Name = 'sc1_32_g6_b' }, - ['513260518'] = { Name = 'sc1_32_g6_c' }, - ['1326894715'] = { Name = 'sc1_32_ground02' }, - ['-1759971218'] = { Name = 'sc1_32_ground06_o' }, - ['-579074582'] = { Name = 'sc1_32_ground06_o2' }, - ['-1269222491'] = { Name = 'sc1_32_ground06_o3' }, - ['22983432'] = { Name = 'sc1_32_ground06' }, - ['2041225557'] = { Name = 'sc1_32_incin_01' }, - ['1886464739'] = { Name = 'sc1_32_incin_pipes1' }, - ['-1363927323'] = { Name = 'sc1_32_ladder_01' }, - ['-149776910'] = { Name = 'sc1_32_ladder_01b' }, - ['-1028364426'] = { Name = 'sc1_32_ladder_x' }, - ['-1259516952'] = { Name = 'sc1_32_ladder_y' }, - ['-1421352541'] = { Name = 'sc1_32_pipes_00' }, - ['-1645918498'] = { Name = 'sc1_32_pipes_01' }, - ['174464990'] = { Name = 'sc1_32_pipes_02' }, - ['158341923'] = { Name = 'sc1_32_prox' }, - ['-1510323592'] = { Name = 'sc1_32_stairs' }, - ['-324874259'] = { Name = 'sc1_32_wall04' }, - ['737979244'] = { Name = 'sc1_33_alley_d' }, - ['1296706256'] = { Name = 'sc1_33_alley_d2' }, - ['-1466573775'] = { Name = 'sc1_33_apt01' }, - ['-1110374749'] = { Name = 'sc1_33_apt02' }, - ['-265655467'] = { Name = 'sc1_33_apt03' }, - ['98321667'] = { Name = 'sc1_33_aptdet02' }, - ['-2055355320'] = { Name = 'sc1_33_aptdet03' }, - ['2143860958'] = { Name = 'sc1_33_aptdet04' }, - ['1924406965'] = { Name = 'sc1_33_aptdet05' }, - ['-583863375'] = { Name = 'sc1_33_aptdet06' }, - ['1551266362'] = { Name = 'sc1_33_aptdet07' }, - ['1319949991'] = { Name = 'sc1_33_aptdet08' }, - ['644007759'] = { Name = 'sc1_33_build05' }, - ['1798527575'] = { Name = 'sc1_33_decal_010' }, - ['1633826629'] = { Name = 'sc1_33_fizzers_00' }, - ['-548949230'] = { Name = 'sc1_33_fizzers_01' }, - ['-720003410'] = { Name = 'sc1_33_fizzers_02' }, - ['47413801'] = { Name = 'sc1_33_fizzers_03' }, - ['-426098249'] = { Name = 'sc1_33_fizzers_04' }, - ['828068842'] = { Name = 'sc1_33_glue_1' }, - ['284485242'] = { Name = 'sc1_33_ground004' }, - ['2050336927'] = { Name = 'sc1_33_ground03' }, - ['-1997765914'] = { Name = 'sc1_33_hedge01' }, - ['-790719795'] = { Name = 'sc1_33_hedge02' }, - ['-1207509295'] = { Name = 'sc1_33_tower_fence00' }, - ['-592009168'] = { Name = 'sc1_33_tower_fence01' }, - ['-864254020'] = { Name = 'sc1_33_tower_fence02' }, - ['-2126220983'] = { Name = 'sc1_33_tower_fence03' }, - ['1594174667'] = { Name = 'sc1_33_tower_fence04' }, - ['-1547323825'] = { Name = 'sc1_33_tower_fence05' }, - ['-1843981582'] = { Name = 'sc1_33_tower_fence06' }, - ['-1577930019'] = { Name = 'sc1_33_tower_fence07' }, - ['-1322757816'] = { Name = 'sc1_33_tower_fence08' }, - ['1796228373'] = { Name = 'sc1_33_tower_fence09' }, - ['-1088885727'] = { Name = 'sc1_33_tower_fence10' }, - ['-2084997797'] = { Name = 'sc1_33_tower_fence11' }, - ['1383043784'] = { Name = 'sc1_33_tower_fence12' }, - ['-1471922572'] = { Name = 'sc1_33_tower_fence13' }, - ['-623228365'] = { Name = 'sc1_33_tower_fence14_l1' }, - ['1990548275'] = { Name = 'sc1_33_tower_fence14' }, - ['-1458851040'] = { Name = 'sc1_33_tower01' }, - ['-1151969355'] = { Name = 'sc1_33_tower02' }, - ['-1186697918'] = { Name = 'sc1_33_wash_lines00' }, - ['-1113229816'] = { Name = 'sc1_33_wash_lines01' }, - ['-1944022273'] = { Name = 'sc1_33_wash_lines02' }, - ['-1571111053'] = { Name = 'sc1_33_wash_lines03' }, - ['-263857336'] = { Name = 'sc1_33_wash_lines04' }, - ['8158133'] = { Name = 'sc1_33_wash_lines05' }, - ['-1029046255'] = { Name = 'sc1_33_wash_lines06' }, - ['-655872883'] = { Name = 'sc1_33_wash_lines07' }, - ['657541406'] = { Name = 'sc1_33_wash_lines08' }, - ['1583658872'] = { Name = 'sc1_33_wash_lines09' }, - ['15320836'] = { Name = 'sc1_33_watts_d' }, - ['1402614089'] = { Name = 'sc1_34_bunting' }, - ['-299668850'] = { Name = 'sc1_34_detail' }, - ['-795868222'] = { Name = 'sc1_34_grnd_decal01' }, - ['-261636299'] = { Name = 'sc1_34_grnd01' }, - ['-371140139'] = { Name = 'sc1_34_ladder_02' }, - ['-602522048'] = { Name = 'sc1_34_ladder_03' }, - ['-1453921124'] = { Name = 'sc1_34_mos' }, - ['320930416'] = { Name = 'sc1_emissive_11_car' }, - ['1006881214'] = { Name = 'sc1_emissive_11_eme' }, - ['1196810338'] = { Name = 'sc1_emissive_11_emf' }, - ['1159845417'] = { Name = 'sc1_emissive_11_n1' }, - ['1898982909'] = { Name = 'sc1_emissive_11_n2' }, - ['972668877'] = { Name = 'sc1_emissive_247_em_dum' }, - ['-876390356'] = { Name = 'sc1_emissive_29_emaa' }, - ['562889662'] = { Name = 'sc1_emissive_29_emab' }, - ['862496629'] = { Name = 'sc1_emissive_29_emac' }, - ['990006659'] = { Name = 'sc1_emissive_build04_em1' }, - ['1699622123'] = { Name = 'sc1_emissive_build07_em1' }, - ['1286110770'] = { Name = 'sc1_emissive_ltd' }, - ['-460721795'] = { Name = 'sc1_emissive_sc1_00e001' }, - ['1587056293'] = { Name = 'sc1_emissive_sc1_01a' }, - ['1221092097'] = { Name = 'sc1_emissive_sc1_01b' }, - ['1420426748'] = { Name = 'sc1_emissive_sc1_02a' }, - ['515805734'] = { Name = 'sc1_emissive_sc1_02b' }, - ['-986063082'] = { Name = 'sc1_emissive_sc1_02c' }, - ['-738493287'] = { Name = 'sc1_emissive_sc1_02d' }, - ['-1648029651'] = { Name = 'sc1_emissive_sc1_02e' }, - ['1389842717'] = { Name = 'sc1_emissive_sc1_03_b' }, - ['479814818'] = { Name = 'sc1_emissive_sc1_03_c' }, - ['-156034858'] = { Name = 'sc1_emissive_sc1_03_d' }, - ['-423766382'] = { Name = 'sc1_emissive_sc1_04_neon_night' }, - ['302935603'] = { Name = 'sc1_emissive_sc1_04a' }, - ['-1556639625'] = { Name = 'sc1_emissive_sc1_04b' }, - ['-689604654'] = { Name = 'sc1_emissive_sc1_04c' }, - ['-940811808'] = { Name = 'sc1_emissive_sc1_04d' }, - ['1536294176'] = { Name = 'sc1_emissive_sc1_05' }, - ['-2048372276'] = { Name = 'sc1_emissive_sc1_06' }, - ['-740626079'] = { Name = 'sc1_emissive_sc1_07a' }, - ['1398763624'] = { Name = 'sc1_emissive_sc1_07b' }, - ['258827480'] = { Name = 'sc1_emissive_sc1_08' }, - ['-1365269181'] = { Name = 'sc1_emissive_sc1_10_2' }, - ['-1986372811'] = { Name = 'sc1_emissive_sc1_10_3' }, - ['-1692729802'] = { Name = 'sc1_emissive_sc1_10_4' }, - ['1408451482'] = { Name = 'sc1_emissive_sc1_10a' }, - ['-1655565493'] = { Name = 'sc1_emissive_sc1_11_em' }, - ['822109656'] = { Name = 'sc1_emissive_sc1_11_ema' }, - ['36833340'] = { Name = 'sc1_emissive_sc1_11_emb' }, - ['-2154465'] = { Name = 'sc1_emissive_sc1_11_emb1' }, - ['342207651'] = { Name = 'sc1_emissive_sc1_11_emc' }, - ['-401714187'] = { Name = 'sc1_emissive_sc1_11_emd' }, - ['-1015056529'] = { Name = 'sc1_emissive_sc1_12_1' }, - ['-180364557'] = { Name = 'sc1_emissive_sc1_12_2' }, - ['-2001436198'] = { Name = 'sc1_emissive_sc1_12_4' }, - ['355521790'] = { Name = 'sc1_emissive_sc1_13a' }, - ['169653301'] = { Name = 'sc1_emissive_sc1_13ab' }, - ['-219967388'] = { Name = 'sc1_emissive_sc1_13c' }, - ['550166982'] = { Name = 'sc1_emissive_sc1_14a' }, - ['238664868'] = { Name = 'sc1_emissive_sc1_14b' }, - ['1180642262'] = { Name = 'sc1_emissive_sc1_15a' }, - ['1390036172'] = { Name = 'sc1_emissive_sc1_15b' }, - ['2082870575'] = { Name = 'sc1_emissive_sc1_17a' }, - ['-1369212503'] = { Name = 'sc1_emissive_sc1_17b' }, - ['-1615274924'] = { Name = 'sc1_emissive_sc1_17c' }, - ['747151406'] = { Name = 'sc1_emissive_sc1_18' }, - ['-217402622'] = { Name = 'sc1_emissive_sc1_18b_lod' }, - ['-1576975407'] = { Name = 'sc1_emissive_sc1_18b' }, - ['305571190'] = { Name = 'sc1_emissive_sc1_19a' }, - ['602261716'] = { Name = 'sc1_emissive_sc1_19b' }, - ['-742512526'] = { Name = 'sc1_emissive_sc1_19c' }, - ['-729353908'] = { Name = 'sc1_emissive_sc1_20' }, - ['-1502950427'] = { Name = 'sc1_emissive_sc1_21_em' }, - ['41730646'] = { Name = 'sc1_emissive_sc1_21_emb' }, - ['1183861376'] = { Name = 'sc1_emissive_sc1_21_emc' }, - ['2020290101'] = { Name = 'sc1_emissive_sc1_21_emd' }, - ['-884775119'] = { Name = 'sc1_emissive_sc1_23_1' }, - ['-1192115570'] = { Name = 'sc1_emissive_sc1_23_2' }, - ['966607847'] = { Name = 'sc1_emissive_sc1_23_3' }, - ['795094901'] = { Name = 'sc1_emissive_sc1_23_4' }, - ['1687827391'] = { Name = 'sc1_emissive_sc1_24a' }, - ['182827643'] = { Name = 'sc1_emissive_sc1_24ab' }, - ['-1172119861'] = { Name = 'sc1_emissive_sc1_24b' }, - ['969170452'] = { Name = 'sc1_emissive_sc1_24c' }, - ['-1921743801'] = { Name = 'sc1_emissive_sc1_25a' }, - ['154500039'] = { Name = 'sc1_emissive_sc1_25b' }, - ['-228231610'] = { Name = 'sc1_emissive_sc1_27_1' }, - ['-853267516'] = { Name = 'sc1_emissive_sc1_27_2' }, - ['-1141929637'] = { Name = 'sc1_emissive_sc1_27_3' }, - ['290602286'] = { Name = 'sc1_emissive_sc1_28_1' }, - ['1605786101'] = { Name = 'sc1_emissive_sc1_28_2' }, - ['636713891'] = { Name = 'sc1_emissive_sc1_28_2b' }, - ['751301657'] = { Name = 'sc1_emissive_sc1_28_3' }, - ['1165475543'] = { Name = 'sc1_emissive_sc1_29_emc' }, - ['-679525422'] = { Name = 'sc1_emissive_sc1_30_1' }, - ['-1390153960'] = { Name = 'sc1_emissive_sc1_30_2' }, - ['-1616658941'] = { Name = 'sc1_emissive_sc1_31_1' }, - ['-1980656993'] = { Name = 'sc1_emissive_sc1_31_2' }, - ['2082993932'] = { Name = 'sc1_emissive_sc1_31_3' }, - ['1258067308'] = { Name = 'sc1_emissive_sc1_32a' }, - ['1706871532'] = { Name = 'sc1_emissive_sc1_32b' }, - ['690573766'] = { Name = 'sc1_emissive_sc1_32c' }, - ['1741475920'] = { Name = 'sc1_emissive_sc1_33a' }, - ['1585888708'] = { Name = 'sc1_emissive_sc1_33b' }, - ['2016833827'] = { Name = 'sc1_emissive_sc1_33d' }, - ['-1469539800'] = { Name = 'sc1_emissive_sc1_34' }, - ['-1786615116'] = { Name = 'sc1_emissive_shop' }, - ['-1371552351'] = { Name = 'sc1_emissive_stripsgn_em1' }, - ['-177400686'] = { Name = 'sc1_emissive_theatre' }, - ['-1953789186'] = { Name = 'sc1_lod_emi_a_slod3' }, - ['-687397906'] = { Name = 'sc1_lod_emi_b_slod3' }, - ['1519332188'] = { Name = 'sc1_lod_emi_c_slod3' }, - ['2078822704'] = { Name = 'sc1_lod_emissive' }, - ['-1374583281'] = { Name = 'sc1_lod_slod4' }, - ['-289861172'] = { Name = 'sc1_props_containers_slod' }, - ['1639813380'] = { Name = 'sc1_props_flyers00' }, - ['1946236299'] = { Name = 'sc1_props_flyers01' }, - ['369523099'] = { Name = 'sc1_props_flyers02' }, - ['-408642344'] = { Name = 'sc1_props_flyers03' }, - ['-193284476'] = { Name = 'sc1_props_flyers04' }, - ['-1010707181'] = { Name = 'sc1_props_flyers05' }, - ['1088671561'] = { Name = 'sc1_props_flyers06' }, - ['1246552603'] = { Name = 'sc1_props_flyers07' }, - ['460194910'] = { Name = 'sc1_props_flyers08' }, - ['113761054'] = { Name = 'sc1_props_flyers09' }, - ['319649529'] = { Name = 'sc1_props_flyers10' }, - ['547426844'] = { Name = 'sc1_props_flyers11' }, - ['1049579000'] = { Name = 'sc1_props_flyers12' }, - ['1276504325'] = { Name = 'sc1_props_flyers13' }, - ['1668552625'] = { Name = 'sc1_props_flyers14' }, - ['1899082540'] = { Name = 'sc1_props_flyers15' }, - ['-1914442608'] = { Name = 'sc1_props_flyers16' }, - ['-1684240379'] = { Name = 'sc1_props_flyers17' }, - ['444237247'] = { Name = 'sc1_props_flyers18' }, - ['922992337'] = { Name = 'sc1_props_flyers19' }, - ['1280699685'] = { Name = 'sc1_props_flyers20' }, - ['-938515310'] = { Name = 'sc1_props_flyers22' }, - ['-1780449227'] = { Name = 'sc1_props_flyers23' }, - ['-1399149143'] = { Name = 'sc1_props_flyers24' }, - ['-49295726'] = { Name = 'sc1_props_flyers25' }, - ['2060798491'] = { Name = 'sc1_props_flyers26' }, - ['-1849985049'] = { Name = 'sc1_props_flyers27' }, - ['1600688962'] = { Name = 'sc1_props_flyers28' }, - ['1947450520'] = { Name = 'sc1_props_flyers29' }, - ['-1445582084'] = { Name = 'sc1_props_flyers30' }, - ['-1260109544'] = { Name = 'sc1_props_flyers31' }, - ['-969153593'] = { Name = 'sc1_props_flyers32' }, - ['1468171858'] = { Name = 'sc1_props_flyers33' }, - ['-471621866'] = { Name = 'sc1_props_flyers34' }, - ['-325209974'] = { Name = 'sc1_props_flyers35' }, - ['-27306995'] = { Name = 'sc1_props_flyers36' }, - ['-1722840593'] = { Name = 'sc1_props_flyers37' }, - ['352026945'] = { Name = 'sc1_props_flyers38' }, - ['633938652'] = { Name = 'sc1_props_flyers39' }, - ['1650792111'] = { Name = 'sc1_props_flyers40' }, - ['1420950345'] = { Name = 'sc1_props_flyers41' }, - ['-706970208'] = { Name = 'sc1_props_flyers42' }, - ['-1487789940'] = { Name = 'sc1_props_flyers43' }, - ['-1706785167'] = { Name = 'sc1_props_flyers44' }, - ['-1948161625'] = { Name = 'sc1_props_flyers45' }, - ['276525789'] = { Name = 'sc1_props_flyers46' }, - ['40359606'] = { Name = 'sc1_props_flyers47' }, - ['-250727421'] = { Name = 'sc1_props_flyers48' }, - ['-421322835'] = { Name = 'sc1_props_flyers49' }, - ['1313042319'] = { Name = 'sc1_props_flyers50' }, - ['1854976045'] = { Name = 'sc1_props_flyers51' }, - ['1623266446'] = { Name = 'sc1_props_flyers52' }, - ['-541158777'] = { Name = 'sc1_props_flyers53' }, - ['-1582973973'] = { Name = 'sc1_props_sc1_00c_props_decal' }, - ['-907651195'] = { Name = 'sc1_rd_23_wires' }, - ['1382448327'] = { Name = 'sc1_rd_24_wires' }, - ['-1155917316'] = { Name = 'sc1_rd_bld_sc_rd_tun_j1' }, - ['-1438202729'] = { Name = 'sc1_rd_cable_tram_00f' }, - ['-2034762378'] = { Name = 'sc1_rd_cable_tram_00h' }, - ['124659242'] = { Name = 'sc1_rd_cablemesh13074_thvy' }, - ['-2024719331'] = { Name = 'sc1_rd_cablemesh13461_tstd' }, - ['-710889558'] = { Name = 'sc1_rd_cablemesh13729_thvy' }, - ['-1170398382'] = { Name = 'sc1_rd_cablemesh186898_hvhvy' }, - ['4791730'] = { Name = 'sc1_rd_cablemesh35055_tstd' }, - ['-1067197583'] = { Name = 'sc1_rd_cablemesh35056_tstd' }, - ['-196689588'] = { Name = 'sc1_rd_clbanner_slod' }, - ['339556162'] = { Name = 'sc1_rd_cloth_01' }, - ['19960105'] = { Name = 'sc1_rd_cloth_02' }, - ['-547140213'] = { Name = 'sc1_rd_cloth_03' }, - ['792747274'] = { Name = 'sc1_rd_cloth_slod' }, - ['-793387658'] = { Name = 'sc1_rd_decals05' }, - ['-1267171767'] = { Name = 'sc1_rd_duct_taping' }, - ['-1528829341'] = { Name = 'sc1_rd_fence_00' }, - ['-1969244701'] = { Name = 'sc1_rd_fence_01' }, - ['-715568283'] = { Name = 'sc1_rd_fence_02' }, - ['-1172892447'] = { Name = 'sc1_rd_fence_03' }, - ['-260308566'] = { Name = 'sc1_rd_fence_04' }, - ['-432739044'] = { Name = 'sc1_rd_fence_05' }, - ['-1896497505'] = { Name = 'sc1_rd_fence_06' }, - ['2091653644'] = { Name = 'sc1_rd_fence_07' }, - ['-1418037336'] = { Name = 'sc1_rd_fence_08' }, - ['-1724787945'] = { Name = 'sc1_rd_fence_09' }, - ['18554804'] = { Name = 'sc1_rd_fence_10' }, - ['247839497'] = { Name = 'sc1_rd_fence_11' }, - ['-1445859093'] = { Name = 'sc1_rd_fence_12' }, - ['325292681'] = { Name = 'sc1_rd_gnd03' }, - ['1596652604'] = { Name = 'sc1_rd_graf_sc_tun_01' }, - ['-1636194635'] = { Name = 'sc1_rd_ground06_oint1' }, - ['2132535290'] = { Name = 'sc1_rd_ground06_oint2' }, - ['-1973250977'] = { Name = 'sc1_rd_inttun1extras' }, - ['340689452'] = { Name = 'sc1_rd_inttun1extrasb' }, - ['-1690709935'] = { Name = 'sc1_rd_inttun1ol' }, - ['400113178'] = { Name = 'sc1_rd_inttun1shell' }, - ['123586542'] = { Name = 'sc1_rd_inttun2arail' }, - ['-1529264588'] = { Name = 'sc1_rd_inttun2b_lod' }, - ['788340028'] = { Name = 'sc1_rd_inttun2bol' }, - ['-744268850'] = { Name = 'sc1_rd_inttun2bolglue' }, - ['-547539026'] = { Name = 'sc1_rd_inttun2bpipes' }, - ['-1757425482'] = { Name = 'sc1_rd_inttun2brail' }, - ['1738158820'] = { Name = 'sc1_rd_inttun2bshell' }, - ['-12587536'] = { Name = 'sc1_rd_inttun2lod' }, - ['1605627744'] = { Name = 'sc1_rd_inttun2ol' }, - ['30964981'] = { Name = 'sc1_rd_inttun2olglue' }, - ['-972730899'] = { Name = 'sc1_rd_inttun2pipes' }, - ['1982268393'] = { Name = 'sc1_rd_inttun2pipesend' }, - ['-628904079'] = { Name = 'sc1_rd_inttun2rail' }, - ['364766464'] = { Name = 'sc1_rd_inttun2shell' }, - ['-1492972462'] = { Name = 'sc1_rd_inttun3arail001' }, - ['-622657671'] = { Name = 'sc1_rd_inttun3bol' }, - ['948572700'] = { Name = 'sc1_rd_inttun3bolglue' }, - ['-1270839018'] = { Name = 'sc1_rd_inttun3bpipes' }, - ['1839042638'] = { Name = 'sc1_rd_inttun3brail' }, - ['1730418232'] = { Name = 'sc1_rd_inttun3bshell' }, - ['214110228'] = { Name = 'sc1_rd_inttun3lod' }, - ['1828936086'] = { Name = 'sc1_rd_inttun3ol' }, - ['87733152'] = { Name = 'sc1_rd_inttun3olglue' }, - ['-2050186419'] = { Name = 'sc1_rd_inttun3pipes' }, - ['-1710298840'] = { Name = 'sc1_rd_inttun3rail' }, - ['-1269264880'] = { Name = 'sc1_rd_inttun3shell' }, - ['1183749472'] = { Name = 'sc1_rd_inttunnel1_wire_mesh' }, - ['-1638626877'] = { Name = 'sc1_rd_inttunnel2_wire_mesh' }, - ['-516826443'] = { Name = 'sc1_rd_inttunnel3_wire_mesh' }, - ['2031741510'] = { Name = 'sc1_rd_inttunnel4_wire_mesh' }, - ['2108847222'] = { Name = 'sc1_rd_inttunnel4_wire_mesh001' }, - ['-1540980448'] = { Name = 'sc1_rd_inttunnel5_wire_mesh' }, - ['1978321816'] = { Name = 'sc1_rd_inttunnel5_wire_mesh001' }, - ['270916864'] = { Name = 'sc1_rd_inttunpipes' }, - ['56968927'] = { Name = 'sc1_rd_inttunshortdecal' }, - ['-704145719'] = { Name = 'sc1_rd_inttunshortextras' }, - ['428095711'] = { Name = 'sc1_rd_inttunshortol' }, - ['-254539233'] = { Name = 'sc1_rd_inttunshortreflect' }, - ['537042739'] = { Name = 'sc1_rd_inttunshortshell' }, - ['1944169716'] = { Name = 'sc1_rd_inttunstdecalext' }, - ['737484915'] = { Name = 'sc1_rd_props_combo01_01_lod' }, - ['609287115'] = { Name = 'sc1_rd_props_combo02_01_lod' }, - ['1691380261'] = { Name = 'sc1_rd_r1_01_o' }, - ['267408586'] = { Name = 'sc1_rd_r1_01' }, - ['-1331367534'] = { Name = 'sc1_rd_r1_02_o' }, - ['498856033'] = { Name = 'sc1_rd_r1_02' }, - ['-617610920'] = { Name = 'sc1_rd_r1_03_o' }, - ['-1281942491'] = { Name = 'sc1_rd_r1_03' }, - ['558823178'] = { Name = 'sc1_rd_r1_04_o' }, - ['-1041647414'] = { Name = 'sc1_rd_r1_04' }, - ['2137223847'] = { Name = 'sc1_rd_r1_04x' }, - ['920815182'] = { Name = 'sc1_rd_r1_05_o' }, - ['-76174367'] = { Name = 'sc1_rd_r1_05' }, - ['710041848'] = { Name = 'sc1_rd_r1_06_o' }, - ['1224427243'] = { Name = 'sc1_rd_r1_06' }, - ['272455024'] = { Name = 'sc1_rd_r1_07' }, - ['2099166560'] = { Name = 'sc1_rd_r1_08_o' }, - ['510456271'] = { Name = 'sc1_rd_r1_08' }, - ['-555154252'] = { Name = 'sc1_rd_r1_09_o' }, - ['1114978783'] = { Name = 'sc1_rd_r1_09' }, - ['1787354811'] = { Name = 'sc1_rd_r1_10_o' }, - ['-2103043850'] = { Name = 'sc1_rd_r2_01_o' }, - ['-216163357'] = { Name = 'sc1_rd_r2_01' }, - ['597142992'] = { Name = 'sc1_rd_r2_02_o' }, - ['43727582'] = { Name = 'sc1_rd_r2_02' }, - ['-1736877573'] = { Name = 'sc1_rd_r2_03_o' }, - ['1424056169'] = { Name = 'sc1_rd_r2_03' }, - ['-287853905'] = { Name = 'sc1_rd_r2_04_o' }, - ['1611101621'] = { Name = 'sc1_rd_r2_04' }, - ['96807427'] = { Name = 'sc1_rd_r2_05_o' }, - ['811308638'] = { Name = 'sc1_rd_r2_05' }, - ['616400952'] = { Name = 'sc1_rd_r2_06_o' }, - ['969189680'] = { Name = 'sc1_rd_r2_06' }, - ['-1028014729'] = { Name = 'sc1_rd_r2_07_o' }, - ['-1940992457'] = { Name = 'sc1_rd_r2_07' }, - ['1901367034'] = { Name = 'sc1_rd_r2_08_o' }, - ['-1759452197'] = { Name = 'sc1_rd_r2_08' }, - ['-2040920650'] = { Name = 'sc1_rd_r2_09_o' }, - ['1758922568'] = { Name = 'sc1_rd_r2_09' }, - ['-582891155'] = { Name = 'sc1_rd_r2_10_o' }, - ['1550151049'] = { Name = 'sc1_rd_r2_10' }, - ['-2123433062'] = { Name = 'sc1_rd_r2_11_o' }, - ['656343805'] = { Name = 'sc1_rd_r2_11' }, - ['680048968'] = { Name = 'sc1_rd_r2_12_o' }, - ['939238582'] = { Name = 'sc1_rd_r2_12' }, - ['-460201925'] = { Name = 'sc1_rd_r3_01_o' }, - ['-458535692'] = { Name = 'sc1_rd_r3_01' }, - ['303609619'] = { Name = 'sc1_rd_r3_02_o' }, - ['-699453380'] = { Name = 'sc1_rd_r3_02' }, - ['1796120956'] = { Name = 'sc1_rd_r3_02x' }, - ['939879711'] = { Name = 'sc1_rd_r3_03_o' }, - ['-932080511'] = { Name = 'sc1_rd_r3_03' }, - ['655445077'] = { Name = 'sc1_rd_r3_04_o' }, - ['-1162053353'] = { Name = 'sc1_rd_r3_04' }, - ['-1137369398'] = { Name = 'sc1_rd_r3_05_o' }, - ['-1393173110'] = { Name = 'sc1_rd_r3_05' }, - ['1528547206'] = { Name = 'sc1_rd_r3_06_o' }, - ['-2002217748'] = { Name = 'sc1_rd_r3_06' }, - ['790740230'] = { Name = 'sc1_rd_r3_08_o' }, - ['1831198183'] = { Name = 'sc1_rd_r3_08' }, - ['711312641'] = { Name = 'sc1_rd_r3_09_o' }, - ['-1771818909'] = { Name = 'sc1_rd_r3_09' }, - ['1684737554'] = { Name = 'sc1_rd_r3_10_o' }, - ['1249189342'] = { Name = 'sc1_rd_r3_10' }, - ['1746109717'] = { Name = 'sc1_rd_r3_11_o' }, - ['1479981409'] = { Name = 'sc1_rd_r3_11' }, - ['-1603229506'] = { Name = 'sc1_rd_r3_12_o' }, - ['-1625143497'] = { Name = 'sc1_rd_r3_12' }, - ['-1441004878'] = { Name = 'sc1_rd_r3_13_o' }, - ['-1394810196'] = { Name = 'sc1_rd_r3_13' }, - ['559453306'] = { Name = 'sc1_rd_r3_14_o' }, - ['-208605161'] = { Name = 'sc1_rd_r3_14' }, - ['2017884916'] = { Name = 'sc1_rd_r3_14x' }, - ['-57554625'] = { Name = 'sc1_rd_r3_gantry' }, - ['-643456782'] = { Name = 'sc1_rd_r3_gantrybits' }, - ['723021238'] = { Name = 'sc1_rd_r3_t_01' }, - ['-1190458975'] = { Name = 'sc1_rd_r3_t_02' }, - ['368449137'] = { Name = 'sc1_rd_r4_01_o' }, - ['979051556'] = { Name = 'sc1_rd_r4_01' }, - ['-1691087190'] = { Name = 'sc1_rd_r4_01x' }, - ['-1337207104'] = { Name = 'sc1_rd_r4_02_o' }, - ['741902303'] = { Name = 'sc1_rd_r4_02' }, - ['406068875'] = { Name = 'sc1_rd_r4_04_o' }, - ['64763675'] = { Name = 'sc1_rd_r4_04' }, - ['61066704'] = { Name = 'sc1_rd_r4_05_o' }, - ['-242642314'] = { Name = 'sc1_rd_r4_05' }, - ['320561828'] = { Name = 'sc1_rd_r4_06_o' }, - ['-408650068'] = { Name = 'sc1_rd_r4_06' }, - ['223380804'] = { Name = 'sc1_rd_r4_07_o' }, - ['-713631151'] = { Name = 'sc1_rd_r4_07' }, - ['-855045118'] = { Name = 'sc1_rd_r4_08_o' }, - ['-1154964043'] = { Name = 'sc1_rd_r4_08' }, - ['397448305'] = { Name = 'sc1_rd_r4_09_o' }, - ['-1461583576'] = { Name = 'sc1_rd_r4_09' }, - ['-570094733'] = { Name = 'sc1_rd_r4_09x' }, - ['-1932743090'] = { Name = 'sc1_rd_r4_10_o' }, - ['1236809410'] = { Name = 'sc1_rd_r4_10' }, - ['1919430988'] = { Name = 'sc1_rd_r4_11_o' }, - ['580315264'] = { Name = 'sc1_rd_r4_11' }, - ['-1420977287'] = { Name = 'sc1_rd_r4_12_o' }, - ['-180089381'] = { Name = 'sc1_rd_r4_12' }, - ['-873616963'] = { Name = 'sc1_rd_r4_t_02_d' }, - ['1277274691'] = { Name = 'sc1_rd_r4_t_02_o' }, - ['100397473'] = { Name = 'sc1_rd_r4_t_02_ov' }, - ['-965929826'] = { Name = 'sc1_rd_r4_t_02_ovint' }, - ['-60025749'] = { Name = 'sc1_rd_r4_t_02' }, - ['-1027938953'] = { Name = 'sc1_rd_r4_t_02int' }, - ['-1718858071'] = { Name = 'sc1_rd_r4_t_03' }, - ['1467732640'] = { Name = 'sc1_rd_rnd_tun01_reflect' }, - ['-2061895302'] = { Name = 'sc1_rd_rnd_tun01_reflect2' }, - ['1791935716'] = { Name = 'sc1_rd_rnd_tun01_reflect3' }, - ['-394837969'] = { Name = 'sc1_rd_rnd_tun01_reflect4' }, - ['-636705958'] = { Name = 'sc1_rd_rnd_tun01_reflect5' }, - ['-807694600'] = { Name = 'sc1_rd_rnd_tun01_reflect6' }, - ['536008503'] = { Name = 'sc1_rd_rnd_tun01_shadow' }, - ['213079642'] = { Name = 'sc1_rd_rnd_tun02_reflect' }, - ['1860845702'] = { Name = 'sc1_rd_rnd_tun02_shadow' }, - ['1694551345'] = { Name = 'sc1_rd_rnd_tun03_shadow' }, - ['2014636606'] = { Name = 'sc1_rd_tram_dt_wires' }, - ['-118442785'] = { Name = 'sc1_rd_tram_tun_slack' }, - ['-1726155330'] = { Name = 'sc1_rd_tram_ufib' }, - ['-820003155'] = { Name = 'sc1_rd_trcks_01' }, - ['-1066184778'] = { Name = 'sc1_rd_tun_ent_01' }, - ['-793342661'] = { Name = 'sc1_rd_tun_ent_01bit' }, - ['-17016648'] = { Name = 'sc1_rd_tun_fake_grill' }, - ['-1076693489'] = { Name = 'sc1_rd_tun_grill' }, - ['1776821065'] = { Name = 'sc1_rd_tun_rain001' }, - ['-12798148'] = { Name = 'sc1_rd_tun_rim_01' }, - ['309682561'] = { Name = 'sc1_rd_tunnel_detailend' }, - ['-68290180'] = { Name = 'sc1_rd_tunnel_wire_mesh' }, - ['-849448192'] = { Name = 'sc1_rd_tunnel2bend_lod' }, - ['448553870'] = { Name = 'sc1_rd_tunnel2bend' }, - ['-2105632478'] = { Name = 'sc1_rd_tunnel3bend_lod' }, - ['997092118'] = { Name = 'sc1_rd_tunnel3bend' }, - ['-1155759671'] = { Name = 'sc1_rd_tunrof' }, - ['-1494625377'] = { Name = 'sc1_rd_wall_light_013' }, - ['-1865341074'] = { Name = 'sc1_rd_wall_light_014' }, - ['-2122643262'] = { Name = 'sc1_rd_wall_light_015' }, - ['-1610201648'] = { Name = 'sc1_rd_wall_light_016' }, - ['1417653956'] = { Name = 'sc1_rd_wall_light_017' }, - ['2128151414'] = { Name = 'sc1_rd_wall_light_018' }, - ['-1335892349'] = { Name = 'sc1_rd_wall_light_019' }, - ['748118040'] = { Name = 'sc1_rd_wall_light_020' }, - ['-1092352845'] = { Name = 'sc1_rd_wall_light_021' }, - ['-1469425728'] = { Name = 'sc1_rd_wall_light_022' }, - ['-1167492162'] = { Name = 'sc1_rd_wall_light_023' }, - ['-202543419'] = { Name = 'sc1_rd_wall_light_024' }, - ['-542438881'] = { Name = 'sc1_rd_wire_01' }, - ['240215915'] = { Name = 'sc1_rd_wire_02' }, - ['585446316'] = { Name = 'sc1_rd_wire_021' }, - ['152001767'] = { Name = 'sc1_rd_wire_03' }, - ['-1190380318'] = { Name = 'sc1_rd_wire_04' }, - ['-1496606623'] = { Name = 'sc1_rd_wire_05' }, - ['-1018670758'] = { Name = 'sc1_rd_wire_07' }, - ['-81378755'] = { Name = 'sc1_rd_wire_10' }, - ['-1444503617'] = { Name = 'sc1_rd_wire_11' }, - ['-676103336'] = { Name = 'sc1_rd_wire_12' }, - ['-965093147'] = { Name = 'sc1_rd_wire_13' }, - ['-1517021422'] = { Name = 'sc1_rd_wire_15' }, - ['-739380283'] = { Name = 'sc1_rd_wire_16' }, - ['-1053766069'] = { Name = 'sc1_rd_wire_17' }, - ['1841899401'] = { Name = 'sc1_rd_wire_18' }, - ['1535542020'] = { Name = 'sc1_rd_wire_19' }, - ['1512413883'] = { Name = 'sc1_rd_wire_19b' }, - ['-1884888664'] = { Name = 'sc1_rd_wire_20' }, - ['1311301293'] = { Name = 'sc1_rd_wire_22' }, - ['-934037770'] = { Name = 'sc1_rd_wirehangers' }, - ['-1529064319'] = { Name = 'sc1_rd_wirehangertun' }, - ['-1932536822'] = { Name = 'sc1_rd_wirehangertun001' }, - ['1017230255'] = { Name = 'sc1_rd_wirehangertun002' }, - ['1770261875'] = { Name = 'sc1_rd_wirehangertun003' }, - ['-1757550362'] = { Name = 'sc1_rd_wirehangertun004' }, - ['-1007074724'] = { Name = 'sc1_rd_wirehangertun005' }, - ['1939284377'] = { Name = 'sc1_rd_wirehangertun006' }, - ['-1065632927'] = { Name = 'sc1_rd_wirehangertun007' }, - ['-700127501'] = { Name = 'sc1_rd_wirehangertun008' }, - ['481227718'] = { Name = 'sc1_rd_wirehangertun009' }, - ['-1162825533'] = { Name = 'sc1_rd_wirehangertun010' }, - ['171593685'] = { Name = 'sc1_rd_wirehangertun011' }, - ['313745607'] = { Name = 'sc1_rd_wirehangertun012' }, - ['-461863854'] = { Name = 'sc1_rd_wirehangertun013' }, - ['-11617794'] = { Name = 'sc1_rd_wirehangertun014' }, - ['1262834170'] = { Name = 'sc1_rd_wirehangertun015' }, - ['1561392529'] = { Name = 'sc1_rd_wirehangertun016' }, - ['759830020'] = { Name = 'sc1_rd_wirehangertun017' }, - ['-2013082764'] = { Name = 'sc1_rd_wirehangertun018' }, - ['-1771214775'] = { Name = 'sc1_rd_wirehangertun019' }, - ['-96292582'] = { Name = 'sc1_rd_wirehangertun020' }, - ['-260596348'] = { Name = 'sc1_rd_wirehangertun021' }, - ['-1255452397'] = { Name = 'schafter2' }, - ['-1485523546'] = { Name = 'schafter3' }, - ['1489967196'] = { Name = 'schafter4' }, - ['-888242983'] = { Name = 'schafter5' }, - ['1922255844'] = { Name = 'schafter6' }, - ['-746882698'] = { Name = 'schwarzer' }, - ['-186537451'] = { Name = 'scorcher' }, - ['-1700801569'] = { Name = 'scrap' }, - ['575185516'] = { Name = 'sd_palm10_low_uv' }, - ['-1030275036'] = { Name = 'seashark' }, - ['-616331036'] = { Name = 'seashark2' }, - ['-311022263'] = { Name = 'seashark3' }, - ['1221512915'] = { Name = 'seminole' }, - ['1349725314'] = { Name = 'sentinel' }, - ['873639469'] = { Name = 'sentinel2' }, - ['1337041428'] = { Name = 'serrano' }, - ['-1757836725'] = { Name = 'seven70' }, - ['-1214505995'] = { Name = 'shamal' }, - ['819197656'] = { Name = 'sheava' }, - ['-1683328900'] = { Name = 'sheriff' }, - ['1922257928'] = { Name = 'sheriff2' }, - ['-405626514'] = { Name = 'shotaro' }, - ['1044954915'] = { Name = 'skylift' }, - ['729783779'] = { Name = 'slamvan' }, - ['833469436'] = { Name = 'slamvan2' }, - ['1119641113'] = { Name = 'slamvan3' }, - ['1057201338'] = { Name = 'slod_human' }, - ['-2056455422'] = { Name = 'slod_large_quadped' }, - ['762327283'] = { Name = 'slod_small_quadped' }, - ['-490686991'] = { Name = 'sm_01_decals_buld01' }, - ['-821129587'] = { Name = 'sm_01_decals_buld02' }, - ['223267736'] = { Name = 'sm_01_decals' }, - ['-871814109'] = { Name = 'sm_01_decals1' }, - ['514904437'] = { Name = 'sm_01_decals2' }, - ['-1614916722'] = { Name = 'sm_01_decals3' }, - ['-1316423901'] = { Name = 'sm_01_decals4' }, - ['1249434910'] = { Name = 'sm_01_dirtovrly02' }, - ['1992501973'] = { Name = 'sm_01_ground_decal' }, - ['-536470299'] = { Name = 'sm_01_ground_decal001' }, - ['1332417643'] = { Name = 'sm_01_ground_decal2' }, - ['2103308368'] = { Name = 'sm_01_ground_decal3' }, - ['-1404350930'] = { Name = 'sm_01_ground_decal4' }, - ['1519004329'] = { Name = 'sm_01_ground_decal5' }, - ['-1998682283'] = { Name = 'sm_01_ground_decal6' }, - ['1190085389'] = { Name = 'sm_01_ground' }, - ['1024731250'] = { Name = 'sm_01_ground2' }, - ['-2055872850'] = { Name = 'sm_01_pip' }, - ['-686675450'] = { Name = 'sm_01_pip01' }, - ['-975435878'] = { Name = 'sm_01_pip02' }, - ['2140060588'] = { Name = 'sm_01_sm01_water' }, - ['-171625316'] = { Name = 'sm_01_tower_base' }, - ['1146726909'] = { Name = 'sm_01_tower1' }, - ['1753346637'] = { Name = 'sm_01_tower2' }, - ['-1184602452'] = { Name = 'sm_01_towers_dtl' }, - ['-1611109860'] = { Name = 'sm_01_towers_g_00' }, - ['1858406326'] = { Name = 'sm_01_towers_g_01' }, - ['1135096185'] = { Name = 'sm_01_towers_g_02' }, - ['-1841246547'] = { Name = 'sm_01_towers_g_03' }, - ['-294156515'] = { Name = 'sm_01_towers_g_04' }, - ['-56351882'] = { Name = 'sm_01_towers_g_05' }, - ['306859714'] = { Name = 'sm_01_towers_g_06' }, - ['538962541'] = { Name = 'sm_01_towers_g_07' }, - ['-1248586421'] = { Name = 'sm_01_towers_g_08' }, - ['-1008553496'] = { Name = 'sm_01_towers_g_09' }, - ['-1956397109'] = { Name = 'sm_01_towers_g_10' }, - ['2033261414'] = { Name = 'sm_01_towers_g_11' }, - ['-1646828366'] = { Name = 'sm_01_towers_g_12' }, - ['-1951547297'] = { Name = 'sm_01_towers_g_13' }, - ['1412747626'] = { Name = 'sm_01_towers_g_14' }, - ['838569208'] = { Name = 'sm_01_towers_g_15' }, - ['-319872714'] = { Name = 'sm_01_towers_rails00' }, - ['44321952'] = { Name = 'sm_01_towers_rails01' }, - ['216686892'] = { Name = 'sm_01_towers_rails02' }, - ['-1616443721'] = { Name = 'sm_01_towers_rails03' }, - ['-1175438519'] = { Name = 'sm_01_towers_rails04' }, - ['-984395249'] = { Name = 'sm_01_towers_rails05' }, - ['-678103406'] = { Name = 'sm_01_towers_rails06' }, - ['1722520769'] = { Name = 'sm_01_towers_rails07' }, - ['-2130392717'] = { Name = 'sm_01_towers_rails08' }, - ['930862374'] = { Name = 'sm_06_apartment01' }, - ['700561842'] = { Name = 'sm_06_apartment02' }, - ['308336644'] = { Name = 'sm_06_apartment2_o_001' }, - ['958276994'] = { Name = 'sm_06_apartment2_o_002' }, - ['162296619'] = { Name = 'sm_06_apartment2_o_g1' }, - ['637885677'] = { Name = 'sm_06_apartment2_o' }, - ['74708245'] = { Name = 'sm_06_apt_detail' }, - ['1374785282'] = { Name = 'sm_06_plant' }, - ['1487538709'] = { Name = 'sm_06_terrain' }, - ['-790038218'] = { Name = 'sm_06_terrain2' }, - ['1330317885'] = { Name = 'sm_07_bgrime_right' }, - ['1292105138'] = { Name = 'sm_07_bgrime_right2' }, - ['-192901599'] = { Name = 'sm_07_bhdge1' }, - ['-1088085149'] = { Name = 'sm_07_bhdge2' }, - ['1039533797'] = { Name = 'sm_07_building_left' }, - ['400687066'] = { Name = 'sm_07_building_lleft' }, - ['1427757193'] = { Name = 'sm_07_building_right' }, - ['3178148'] = { Name = 'sm_07_dec_hdge1' }, - ['628642017'] = { Name = 'sm_07_decals_mid_01a' }, - ['-1248730086'] = { Name = 'sm_07_decals_mid_2a001' }, - ['-2130865445'] = { Name = 'sm_07_decals_mid' }, - ['1723311725'] = { Name = 'sm_07_decals_mid1_2' }, - ['-1470681049'] = { Name = 'sm_07_terrain_left' }, - ['1758084880'] = { Name = 'sm_07_terrain_right' }, - ['642052187'] = { Name = 'sm_07_water_mesh_01' }, - ['-907757720'] = { Name = 'sm_07_water_mesh_02' }, - ['-1492274951'] = { Name = 'sm_09_buildnew' }, - ['445362912'] = { Name = 'sm_09_new03' }, - ['-1360494032'] = { Name = 'sm_09det_3' }, - ['-577915979'] = { Name = 'sm_09det_3fizz' }, - ['574735845'] = { Name = 'sm_09dirt' }, - ['-1989518467'] = { Name = 'sm_09dirt2' }, - ['1857627675'] = { Name = 'sm_09dirt3' }, - ['1574667360'] = { Name = 'sm_09dirt4' }, - ['631785200'] = { Name = 'sm_09hedgedec1' }, - ['1587394774'] = { Name = 'sm_09hedgedec2' }, - ['1762672752'] = { Name = 'sm_09mesh077' }, - ['1581140650'] = { Name = 'sm_10_bld1_dtl' }, - ['-1313950115'] = { Name = 'sm_10_bld1_railing001' }, - ['-2128816842'] = { Name = 'sm_10_bld1_railing002' }, - ['-1104261284'] = { Name = 'sm_10_bld1_railing003' }, - ['-1617030596'] = { Name = 'sm_10_bld1_railing004' }, - ['-84413387'] = { Name = 'sm_10_bld1' }, - ['-2012318369'] = { Name = 'sm_10_bld3_awning' }, - ['711767328'] = { Name = 'sm_10_bld3_dtl' }, - ['409579288'] = { Name = 'sm_10_bld3' }, - ['-640924082'] = { Name = 'sm_10_bld4_dtl' }, - ['112266151'] = { Name = 'sm_10_bld4' }, - ['1533244568'] = { Name = 'sm_10_cloth_rail' }, - ['1156995908'] = { Name = 'sm_10_detail_gate_small' }, - ['-803905399'] = { Name = 'sm_10_detail_ladder2' }, - ['-1068437747'] = { Name = 'sm_10_detail' }, - ['1302021739'] = { Name = 'sm_10_flatdecals' }, - ['1122480347'] = { Name = 'sm_10_gate_big' }, - ['1954940682'] = { Name = 'sm_10_grnd_dtl' }, - ['-112667632'] = { Name = 'sm_10_ground_railing' }, - ['259339841'] = { Name = 'sm_10_ladder1' }, - ['530538968'] = { Name = 'sm_10_lads1' }, - ['302433959'] = { Name = 'sm_10_lads2' }, - ['1506747786'] = { Name = 'sm_10_lascuadras_em_lod' }, - ['1965416925'] = { Name = 'sm_10_lascuadras_em' }, - ['-1206132845'] = { Name = 'sm_10_railing005' }, - ['-1512293612'] = { Name = 'sm_10_railing006' }, - ['-744581480'] = { Name = 'sm_10_railing007' }, - ['-2041387672'] = { Name = 'sm_10_sm10_new00' }, - ['-518122231'] = { Name = 'sm_10_sm10_new14' }, - ['1712141675'] = { Name = 'sm_11_bld1_dtl' }, - ['686128170'] = { Name = 'sm_11_bld1' }, - ['-1196766785'] = { Name = 'sm_11_bld2_dtl' }, - ['-1880033579'] = { Name = 'sm_11_bld2_rdet' }, - ['724795594'] = { Name = 'sm_11_bld2' }, - ['-1759567827'] = { Name = 'sm_11_bld3_dtl' }, - ['-1921126539'] = { Name = 'sm_11_bld3_dtlhed1' }, - ['-714247722'] = { Name = 'sm_11_bld3_ladz1' }, - ['1635118414'] = { Name = 'sm_11_bld3' }, - ['368593994'] = { Name = 'sm_11_bld3fizzfnce' }, - ['-1607592289'] = { Name = 'sm_11_bld4_det2' }, - ['54170866'] = { Name = 'sm_11_bld4_dtl' }, - ['1354189777'] = { Name = 'sm_11_bld4' }, - ['-1839273906'] = { Name = 'sm_11_bld4shdb1' }, - ['1686362762'] = { Name = 'sm_11_fmdl1' }, - ['-380232121'] = { Name = 'sm_11_grnd_dtl' }, - ['863015953'] = { Name = 'sm_11_grnd' }, - ['837751201'] = { Name = 'sm_12_bld_ladfiz' }, - ['1147870520'] = { Name = 'sm_12_bld_railing' }, - ['-1153489592'] = { Name = 'sm_12_bld' }, - ['382940248'] = { Name = 'sm_12_glue' }, - ['162256486'] = { Name = 'sm_12_gluehg1' }, - ['402551563'] = { Name = 'sm_12_gluehg2' }, - ['-1453526036'] = { Name = 'sm_12_grnd' }, - ['1192921020'] = { Name = 'sm_12_sm1_12_em' }, - ['1956818049'] = { Name = 'sm_13_bld1_dtl' }, - ['-1033912541'] = { Name = 'sm_13_bld1_windowframe' }, - ['-1344106117'] = { Name = 'sm_13_bld1' }, - ['-1477218063'] = { Name = 'sm_13_bld2_dtl' }, - ['-472870922'] = { Name = 'sm_13_bld2_dtl2' }, - ['-458258'] = { Name = 'sm_13_bld2_dtlhed1' }, - ['-241736405'] = { Name = 'sm_13_bld2_dtlhed2' }, - ['755928017'] = { Name = 'sm_13_bld2' }, - ['301264831'] = { Name = 'sm_13_hedgemod1' }, - ['1483941575'] = { Name = 'sm_13_newgrd_railing' }, - ['-2139060822'] = { Name = 'sm_13_newgrd' }, - ['-1864248382'] = { Name = 'sm_13_shadmesh1' }, - ['-928957557'] = { Name = 'sm_13_sm13_emmisivesign' }, - ['-1631171168'] = { Name = 'sm_14_bld1_dtl' }, - ['1515714686'] = { Name = 'sm_14_bld1_railing' }, - ['1702461449'] = { Name = 'sm_14_bld1_railing2' }, - ['-1188502804'] = { Name = 'sm_14_bld1' }, - ['-1886132542'] = { Name = 'sm_14_bld2_dtl' }, - ['-1155989432'] = { Name = 'sm_14_bld2_railing' }, - ['-160801422'] = { Name = 'sm_14_bld2' }, - ['796298215'] = { Name = 'sm_14_bld2fizzb1' }, - ['330666416'] = { Name = 'sm_14_fzzpipes1' }, - ['-1710380545'] = { Name = 'sm_14_grnd_dtl' }, - ['-1585920121'] = { Name = 'sm_14_grnd_dtl2' }, - ['1329963810'] = { Name = 'sm_14_grnd_dtl3' }, - ['296094188'] = { Name = 'sm_14_grnd_railing' }, - ['1303716584'] = { Name = 'sm_14_ground' }, - ['-512415329'] = { Name = 'sm_14_ground2' }, - ['1536367999'] = { Name = 'sm_14_mp_door_l' }, - ['-849772278'] = { Name = 'sm_14_mp_door_r' }, - ['849075497'] = { Name = 'sm_14_propertyfudger' }, - ['-290217201'] = { Name = 'sm_15_bld1_dtl' }, - ['-1593931531'] = { Name = 'sm_15_bld1_dtl2' }, - ['273049475'] = { Name = 'sm_15_bld1_dtl3' }, - ['96410448'] = { Name = 'sm_15_bld1_wallov' }, - ['-1291573162'] = { Name = 'sm_15_bld1' }, - ['1506980188'] = { Name = 'sm_15_bld1wobjects' }, - ['-144748500'] = { Name = 'sm_15_bld2_dtl' }, - ['1153039600'] = { Name = 'sm_15_bld2_railing' }, - ['-1454500630'] = { Name = 'sm_15_bld2' }, - ['1470897157'] = { Name = 'sm_15_bldgraf1' }, - ['-1804662358'] = { Name = 'sm_15_delp_stepshadblk' }, - ['68712455'] = { Name = 'sm_15_delperro_extras' }, - ['-192167886'] = { Name = 'sm_15_delperro_rim' }, - ['-246265323'] = { Name = 'sm_15_delperro_shell' }, - ['285671071'] = { Name = 'sm_15_grnd_decal' }, - ['-251897624'] = { Name = 'sm_15_grnd' }, - ['-1694474225'] = { Name = 'sm_15_grnd2_rail' }, - ['-1213163682'] = { Name = 'sm_15_grnd2' }, - ['1570056720'] = { Name = 'sm_15_metro_top' }, - ['-1935230139'] = { Name = 'sm_15_props_heli_slod' }, - ['1090848396'] = { Name = 'sm_16_allefireerails' }, - ['-1539809421'] = { Name = 'sm_16_alleyg002' }, - ['-2010570298'] = { Name = 'sm_16_alleystuff1' }, - ['17950260'] = { Name = 'sm_16_bildfiz1' }, - ['661818286'] = { Name = 'sm_16_glue_weed' }, - ['-175655969'] = { Name = 'sm_16_glue_weed2' }, - ['-1346164653'] = { Name = 'sm_16_glue_weed3' }, - ['-1575449346'] = { Name = 'sm_16_glue_weed4' }, - ['-1406682575'] = { Name = 'sm_16_grndetail1' }, - ['-1191823951'] = { Name = 'sm_16_ground' }, - ['1964016422'] = { Name = 'sm_16_motel_decal' }, - ['-1609306558'] = { Name = 'sm_16_mtl_fzm1' }, - ['688894113'] = { Name = 'sm_16_mtl_water' }, - ['1627005467'] = { Name = 'sm_16_mtl' }, - ['2061937748'] = { Name = 'sm_16_mtlrl' }, - ['414241539'] = { Name = 'sm_16_mtlwalldet' }, - ['133804145'] = { Name = 'sm_16_sm16_alfizzlad1' }, - ['-114831466'] = { Name = 'sm_16_sm16_alfizzlad1f' }, - ['117506320'] = { Name = 'sm_16_sm16_cablesnw1' }, - ['833028433'] = { Name = 'sm_16_sm16_smov1' }, - ['591619210'] = { Name = 'sm_16_sm16_smov2' }, - ['1943307695'] = { Name = 'sm_16_sm16_smov3' }, - ['-1351758511'] = { Name = 'sm_16_smbuild1' }, - ['-461495527'] = { Name = 'sm_16_smbuild1rl' }, - ['-1640092942'] = { Name = 'sm_16_smbuild2' }, - ['-1849252499'] = { Name = 'sm_16_smbuildsign' }, - ['1487617474'] = { Name = 'sm_16_tmp2_decal' }, - ['-705932074'] = { Name = 'sm_16_tmp2_railings' }, - ['2116667909'] = { Name = 'sm_16_tmp2' }, - ['-714265724'] = { Name = 'sm_16_tmp2rl' }, - ['1159218182'] = { Name = 'sm_16_tmp2walldet' }, - ['-1243780692'] = { Name = 'sm_16_tmp3_decal' }, - ['-862919878'] = { Name = 'sm_17_building1' }, - ['-34124441'] = { Name = 'sm_17_building2_ladder' }, - ['-1094236249'] = { Name = 'sm_17_building2' }, - ['1880861265'] = { Name = 'sm_17_building3' }, - ['1661261026'] = { Name = 'sm_17_buildingrl1' }, - ['1767367048'] = { Name = 'sm_17_buildingrl2' }, - ['2065204493'] = { Name = 'sm_17_buildingrl3' }, - ['918562874'] = { Name = 'sm_17_cable_telephone_std' }, - ['-1254189408'] = { Name = 'sm_17_details_fizz' }, - ['1979163640'] = { Name = 'sm_17_details' }, - ['168028974'] = { Name = 'sm_17_ground' }, - ['472815843'] = { Name = 'sm_17_ground2' }, - ['-647589601'] = { Name = 'sm_17_ov' }, - ['754465499'] = { Name = 'sm_17_ov2' }, - ['522034982'] = { Name = 'sm_17_ov3' }, - ['-1386876719'] = { Name = 'sm_17_pavil2' }, - ['84957418'] = { Name = 'sm_17_vegbed1' }, - ['-214747856'] = { Name = 'sm_17_vegbed2' }, - ['428540383'] = { Name = 'sm_17_vegbed3' }, - ['164586088'] = { Name = 'sm_17_vegbed4' }, - ['-1358385912'] = { Name = 'sm_17_vegbed5' }, - ['2034771316'] = { Name = 'sm_17_weed_glue' }, - ['-1476159850'] = { Name = 'sm_17_weed_glue2' }, - ['-1230097429'] = { Name = 'sm_17_weed_glue3' }, - ['-220025773'] = { Name = 'sm_17_weed_glue4' }, - ['-13072319'] = { Name = 'sm_18_b6_fm1' }, - ['-677448979'] = { Name = 'sm_18_build3_railing' }, - ['644773145'] = { Name = 'sm_18_build3_stairs' }, - ['2073827549'] = { Name = 'sm_18_build3' }, - ['1000015058'] = { Name = 'sm_18_build4_railing' }, - ['1107775202'] = { Name = 'sm_18_build4_railing2' }, - ['1356055373'] = { Name = 'sm_18_build4' }, - ['-823535552'] = { Name = 'sm_18_build5_detail' }, - ['441270398'] = { Name = 'sm_18_build5_ladder' }, - ['2062569408'] = { Name = 'sm_18_build5_ladder3' }, - ['1567397049'] = { Name = 'sm_18_build5_ladder5' }, - ['328141622'] = { Name = 'sm_18_build6_h' }, - ['883034858'] = { Name = 'sm_18_build6' }, - ['1842069902'] = { Name = 'sm_18_build7_decals' }, - ['577670680'] = { Name = 'sm_18_build7_fire_exit' }, - ['-2128779480'] = { Name = 'sm_18_build7_h' }, - ['-1264350461'] = { Name = 'sm_18_build7' }, - ['-935206575'] = { Name = 'sm_18_build7fm1' }, - ['-1968870622'] = { Name = 'sm_18_build7rflad' }, - ['-1363460684'] = { Name = 'sm_18_gate' }, - ['947861998'] = { Name = 'sm_18_glue_05' }, - ['1958920574'] = { Name = 'sm_18_glue_build1' }, - ['855915978'] = { Name = 'sm_18_glue_build2' }, - ['1119582876'] = { Name = 'sm_18_glue_build2fz1' }, - ['524949078'] = { Name = 'sm_18_glue_build3' }, - ['975753656'] = { Name = 'sm_18_glue_build6_2' }, - ['53495407'] = { Name = 'sm_18_ground' }, - ['-303415282'] = { Name = 'sm_18_ground2' }, - ['-20152436'] = { Name = 'sm_18_j' }, - ['-1797918500'] = { Name = 'sm_18_jfm1' }, - ['-2039315551'] = { Name = 'sm_18_newbld' }, - ['-616328463'] = { Name = 'sm_18_newbldfm1' }, - ['-693726791'] = { Name = 'sm_18_sm19_gdec3_lod' }, - ['576305764'] = { Name = 'sm_18_sm19_gdec3' }, - ['-420608994'] = { Name = 'sm_18_smad3_ladder' }, - ['-1499198024'] = { Name = 'sm_18_smad3_ladder2' }, - ['-796202999'] = { Name = 'sm_18_smad3' }, - ['175434710'] = { Name = 'sm_18_smad3fm1' }, - ['57298379'] = { Name = 'sm_18_smad9' }, - ['530430168'] = { Name = 'sm_18_w_build1_railings' }, - ['-372204934'] = { Name = 'sm_18_w_build1_railings2' }, - ['1534650823'] = { Name = 'sm_18_w_build2_railing2' }, - ['751701106'] = { Name = 'sm_18_w_build2_railing3' }, - ['-794091179'] = { Name = 'sm_18_w_build2_railings1' }, - ['-1226749127'] = { Name = 'sm_18_w_build2' }, - ['-1649683811'] = { Name = 'sm_18_wires1' }, - ['-1813922039'] = { Name = 'sm_18_wires2' }, - ['-1181520632'] = { Name = 'sm_18_wm_build6_2' }, - ['-6918809'] = { Name = 'sm_18build6_2shad' }, - ['1716108536'] = { Name = 'sm_19_addons' }, - ['-2076061455'] = { Name = 'sm_19_ald2_lad1' }, - ['-1706033907'] = { Name = 'sm_19_ald2_lad2' }, - ['683121114'] = { Name = 'sm_19_ald2_lad3' }, - ['955136583'] = { Name = 'sm_19_ald2_lad4' }, - ['394974603'] = { Name = 'sm_19_ald3_ladder' }, - ['-1879563174'] = { Name = 'sm_19_b1_rfdec1' }, - ['-1162905144'] = { Name = 'sm_19_b1_rfdec2' }, - ['1010040015'] = { Name = 'sm_19_b1_rfdec3' }, - ['-1615923136'] = { Name = 'sm_19_build008' }, - ['-2084253155'] = { Name = 'sm_19_build1_ladder' }, - ['1028262070'] = { Name = 'sm_19_build1_railing1' }, - ['301428545'] = { Name = 'sm_19_build1_rfdet' }, - ['-1534905851'] = { Name = 'sm_19_build4_balcony' }, - ['-831956449'] = { Name = 'sm_19_build4' }, - ['-1957967549'] = { Name = 'sm_19_build4fzzf3' }, - ['491976689'] = { Name = 'sm_19_build5' }, - ['-257887431'] = { Name = 'sm_19_build8_railing' }, - ['1030116715'] = { Name = 'sm_19_cablemesh31659_tstd' }, - ['2000317926'] = { Name = 'sm_19_cablemesh31660_tstd' }, - ['-474693354'] = { Name = 'sm_19_cablemesh31661_tstd' }, - ['-1115547274'] = { Name = 'sm_19_cablemesh31662_tstd' }, - ['-1991286156'] = { Name = 'sm_19_cablemesh31663_tstd' }, - ['1197272630'] = { Name = 'sm_19_cablemesh31664_tstd' }, - ['1838507040'] = { Name = 'sm_19_cablemesh31665_tstd' }, - ['816671336'] = { Name = 'sm_19_cablemesh31666_tstd' }, - ['-474681266'] = { Name = 'sm_19_cablemesh31667_tstd' }, - ['1495909425'] = { Name = 'sm_19_cablemesh31668_tstd' }, - ['-145942681'] = { Name = 'sm_19_cablemesh31669_tstd' }, - ['944926320'] = { Name = 'sm_19_cablemesh31670_tstd' }, - ['-275838537'] = { Name = 'sm_19_cablemesh31671_tstd' }, - ['-1655364075'] = { Name = 'sm_19_cablemesh39684_hvstd' }, - ['549908841'] = { Name = 'sm_19_cablemesh39695_hvstd' }, - ['1910856084'] = { Name = 'sm_19_cablemesh39706_hvhvy' }, - ['-1181427442'] = { Name = 'sm_19_cablemesh39717_hvstd' }, - ['-1251314853'] = { Name = 'sm_19_cablemesh39728_hvstd' }, - ['-439339029'] = { Name = 'sm_19_cablemesh39739_hvstd' }, - ['641536944'] = { Name = 'sm_19_cablemesh39750_hvstd' }, - ['-421584810'] = { Name = 'sm_19_cablemesh39761_hvstd' }, - ['-1624805909'] = { Name = 'sm_19_cablemesh39772_hvstd' }, - ['-1344438771'] = { Name = 'sm_19_cablemesh39783_hvstd' }, - ['-449692774'] = { Name = 'sm_19_cablemesh39794_hvstd' }, - ['-1829776751'] = { Name = 'sm_19_cablemesh39805_hvstd' }, - ['71459147'] = { Name = 'sm_19_cablemesh39959_hvstd' }, - ['142428547'] = { Name = 'sm_19_cablemesh39970_hvstd' }, - ['-631548402'] = { Name = 'sm_19_cablemesh39981_hvstd' }, - ['-2055472964'] = { Name = 'sm_19_cablemesh39992_hvstd' }, - ['-156146124'] = { Name = 'sm_19_cablemesh40003_hvstd' }, - ['1999913067'] = { Name = 'sm_19_cablemesh40014_hvstd' }, - ['-2097578027'] = { Name = 'sm_19_cablemesh42146_hvstd' }, - ['-1086292911'] = { Name = 'sm_19_cablemesh42157_hvstd' }, - ['-1258278208'] = { Name = 'sm_19_cablemesh42168_hvstd' }, - ['-1506868825'] = { Name = 'sm_19_cablemesh42179_hvstd' }, - ['220363661'] = { Name = 'sm_19_cablemesh42190_hvstd' }, - ['-300584259'] = { Name = 'sm_19_cablemesh42201_hvstd' }, - ['-195676990'] = { Name = 'sm_19_cablemesh42212_hvstd' }, - ['1448724980'] = { Name = 'sm_19_cablemesh42223_hvstd' }, - ['-1278189782'] = { Name = 'sm_19_cablemesh42234_hvstd' }, - ['-1795888214'] = { Name = 'sm_19_cablemesh42245_hvstd' }, - ['439839557'] = { Name = 'sm_19_cablemesh42256_hvstd' }, - ['-1193797255'] = { Name = 'sm_19_column_ornament' }, - ['1266222694'] = { Name = 'sm_19_doorcanopy_iref' }, - ['-155206048'] = { Name = 'sm_19_dummykneel_iref' }, - ['1925982851'] = { Name = 'sm_19_dummystand_iref' }, - ['-1528271844'] = { Name = 'sm_19_gdec2' }, - ['1021759610'] = { Name = 'sm_19_glue_weed' }, - ['-1668233845'] = { Name = 'sm_19_glue_weed2' }, - ['-1907709697'] = { Name = 'sm_19_glue_weed3' }, - ['-2122117264'] = { Name = 'sm_19_glue_weed4' }, - ['-1176382356'] = { Name = 'sm_19_ground1' }, - ['-1477431159'] = { Name = 'sm_19_ground2' }, - ['1249334196'] = { Name = 'sm_19_hedges_dtl' }, - ['822482824'] = { Name = 'sm_19_hedges' }, - ['310885634'] = { Name = 'sm_19_ornatebalcony_iq' }, - ['-1837128215'] = { Name = 'sm_19_parking_ov' }, - ['-402425482'] = { Name = 'sm_19_parking' }, - ['-2143043464'] = { Name = 'sm_19_sm19_ald1' }, - ['-1837931305'] = { Name = 'sm_19_sm19_ald2' }, - ['-1529247309'] = { Name = 'sm_19_sm19_ald3' }, - ['979272561'] = { Name = 'sm_19_sm19_build1' }, - ['161192901'] = { Name = 'sm_19_sm19_gdec1' }, - ['598593870'] = { Name = 'sm_19_windowcanopy_iref' }, - ['-918470817'] = { Name = 'sm_19planteriref1' }, - ['-1602960329'] = { Name = 'sm_20_bld1_dtl' }, - ['-1230083624'] = { Name = 'sm_20_bld1a_dtl' }, - ['1541513272'] = { Name = 'sm_20_bridge_fence01a' }, - ['1832141533'] = { Name = 'sm_20_bridge_fence01b' }, - ['2147313775'] = { Name = 'sm_20_bridge_fence01c' }, - ['396990409'] = { Name = 'sm_20_bridge_fence01d' }, - ['299935348'] = { Name = 'sm_20_bridge_fence02' }, - ['-1044163522'] = { Name = 'sm_20_bridge_fence02a' }, - ['1073074337'] = { Name = 'sm_20_bridge_fence02b' }, - ['1371239468'] = { Name = 'sm_20_bridge_fence02c' }, - ['-536427839'] = { Name = 'sm_20_bridge_fence03' }, - ['-635010140'] = { Name = 'sm_20_bridge_fence03a' }, - ['-813928880'] = { Name = 'sm_20_bridge_fence03b' }, - ['-1112814929'] = { Name = 'sm_20_bridge_fence03c' }, - ['867816410'] = { Name = 'sm_20_bridge' }, - ['118584094'] = { Name = 'sm_20_buildin_railing01' }, - ['-170667869'] = { Name = 'sm_20_buildin_railing02' }, - ['801227902'] = { Name = 'sm_20_buildin_railing03' }, - ['1485300651'] = { Name = 'sm_20_building' }, - ['-2068772294'] = { Name = 'sm_20_entsign' }, - ['1097791782'] = { Name = 'sm_20_fizz' }, - ['-617008090'] = { Name = 'sm_20_grnd2_dtl' }, - ['192092472'] = { Name = 'sm_20_grnd2' }, - ['1000187100'] = { Name = 'sm_20_grnd2a_dtl' }, - ['1277796719'] = { Name = 'sm_20_grnd2b_dtl' }, - ['-2016897655'] = { Name = 'sm_20_grnd3_dtl' }, - ['499301847'] = { Name = 'sm_20_grnd3' }, - ['-93364281'] = { Name = 'sm_20_grnd4_dtl' }, - ['157193483'] = { Name = 'sm_20_grnd4' }, - ['-2130195232'] = { Name = 'sm_20_ground1' }, - ['-1870127130'] = { Name = 'sm_20_hedge_dcl' }, - ['1498456566'] = { Name = 'sm_20_railing1' }, - ['957413904'] = { Name = 'sm_20_slight_iref_01' }, - ['-1097169631'] = { Name = 'sm_20_slight_iref_02' }, - ['-474008154'] = { Name = 'sm_20_sm20_barrier2' }, - ['-712959702'] = { Name = 'sm_20_sm20_barrier3' }, - ['-928874647'] = { Name = 'sm_20_sm20_barrier4' }, - ['-973775492'] = { Name = 'sm_20_sm20_barrierends' }, - ['1888656663'] = { Name = 'sm_20_sm20_barrierends2' }, - ['-564844861'] = { Name = 'sm_20_sm20_road' }, - ['275282348'] = { Name = 'sm_20_sm20_road2' }, - ['-1635674680'] = { Name = 'sm_20_sm20_road3' }, - ['-1410125653'] = { Name = 'sm_20_sm20_road4' }, - ['907741444'] = { Name = 'sm_20_sm20_roadov' }, - ['-240220191'] = { Name = 'sm_20_sm20_roadov2' }, - ['185383581'] = { Name = 'sm_20_sm20_roadov3' }, - ['1749773175'] = { Name = 'sm_20_sm20_tunnel1' }, - ['-1355581106'] = { Name = 'sm_20_sm20_tunnel2' }, - ['-1666886606'] = { Name = 'sm_20_sm20_tunnel3' }, - ['22617492'] = { Name = 'sm_20_sm20_tunnel4' }, - ['778039869'] = { Name = 'sm_20_sm20_tunnel4ends' }, - ['-651778886'] = { Name = 'sm_20_sm20_tunnelshell' }, - ['-320583386'] = { Name = 'sm_20_sm20_tunnelshell2' }, - ['1830805'] = { Name = 'sm_20_sm20_tunnelshell3' }, - ['-492391257'] = { Name = 'sm_20_sm20_tunnelshell4' }, - ['284439818'] = { Name = 'sm_20_tun1_reflect' }, - ['339858791'] = { Name = 'sm_20_tun2_reflect' }, - ['211599300'] = { Name = 'sm_20_tun3_reflect' }, - ['954504406'] = { Name = 'sm_20_tun4_reflect' }, - ['1136936174'] = { Name = 'sm_20_tunnel_p1' }, - ['790277724'] = { Name = 'sm_20_tunnel_railing2' }, - ['491588289'] = { Name = 'sm_20_tunnel_railing3' }, - ['213215634'] = { Name = 'sm_20_tunnel_railing4' }, - ['-481810072'] = { Name = 'sm_20_tunnel_slod_a' }, - ['1176530711'] = { Name = 'sm_20_tunnel_slod_f' }, - ['1250221429'] = { Name = 'sm_20_tunnel1blight' }, - ['1651719894'] = { Name = 'sm_20_tunnel1blight001' }, - ['1883691645'] = { Name = 'sm_20_tunnel1blight002' }, - ['-1510193689'] = { Name = 'sm_20_tunnel1blight003' }, - ['-1279991464'] = { Name = 'sm_20_tunnel1blight004' }, - ['173346491'] = { Name = 'sm_20_tunnel1blight005' }, - ['1015903019'] = { Name = 'sm_20_tunnel1blight006' }, - ['2134014036'] = { Name = 'sm_20_tunnel1blight007' }, - ['421571666'] = { Name = 'sm_20_tunnel1blight008' }, - ['-327724284'] = { Name = 'sm_20_tunnel1blight009' }, - ['1988388356'] = { Name = 'sm_20_tunnel1blight010' }, - ['-1127124323'] = { Name = 'sm_20_tunnel1blight011' }, - ['1275990296'] = { Name = 'sm_20_tunnel1blight012' }, - ['275945950'] = { Name = 'sm_20_tunnel1blight013' }, - ['497857618'] = { Name = 'sm_20_tunnel1blight014' }, - ['1671413815'] = { Name = 'sm_20_tunnel1blight015' }, - ['-2090795079'] = { Name = 'sm_20_tunnel1blight016' }, - ['-679893011'] = { Name = 'sm_20_tunnel1blight017' }, - ['-457751960'] = { Name = 'sm_20_tunnel1blight018' }, - ['1931152593'] = { Name = 'sm_20_tunnel1slight' }, - ['873354528'] = { Name = 'sm_20_tunnel1slight001' }, - ['1636053003'] = { Name = 'sm_20_tunnel1slight002' }, - ['408526263'] = { Name = 'sm_20_tunnel1slight003' }, - ['1174305024'] = { Name = 'sm_20_tunnel1slight004' }, - ['-1469956670'] = { Name = 'sm_20_tunnel1slight005' }, - ['-1968307622'] = { Name = 'sm_20_tunnel1slight006' }, - ['2133158733'] = { Name = 'sm_20_tunnel1slight007' }, - ['1826113203'] = { Name = 'sm_20_tunnel1slight008' }, - ['-1317744661'] = { Name = 'sm_20_tunnel1slight009' }, - ['1163852077'] = { Name = 'sm_20_tunnel1slight010' }, - ['-26481852'] = { Name = 'sm_20_tunnel1slight011' }, - ['280006609'] = { Name = 'sm_20_tunnel1slight012' }, - ['1933792501'] = { Name = 'sm_20_tunnel1slight013' }, - ['2121689947'] = { Name = 'sm_20_tunnel1slight014' }, - ['1469029774'] = { Name = 'sm_20_tunnel1slight015' }, - ['1626976354'] = { Name = 'sm_20_tunnel1slight016' }, - ['-1944418653'] = { Name = 'sm_20_tunnel1slight017' }, - ['-1218323151'] = { Name = 'sm_20_tunnel1slight018' }, - ['1878707816'] = { Name = 'sm_20_tunnel1slight019' }, - ['1229552986'] = { Name = 'sm_20_tunnel1slight020' }, - ['1871137237'] = { Name = 'sm_20_tunnel1slight021' }, - ['500016739'] = { Name = 'sm_20_tunnel1slight022' }, - ['1675670152'] = { Name = 'sm_20_tunnel1slight023' }, - ['-2110591188'] = { Name = 'sm_20_tunnel1slight024' }, - ['1750743935'] = { Name = 'sm_20_tunnel1slight025' }, - ['1386418193'] = { Name = 'sm_20_tunnel1slight026' }, - ['-918028971'] = { Name = 'sm_20_tunnel1slight027' }, - ['-1220519610'] = { Name = 'sm_20_tunnel1slight028' }, - ['-1653791328'] = { Name = 'sm_20_tunnel1slight029' }, - ['593146525'] = { Name = 'sm_20_tunnel1slight030' }, - ['1497898615'] = { Name = 'sm_20_tunnel1slight031' }, - ['-1997144622'] = { Name = 'sm_20_tunnel1slight032' }, - ['1590438275'] = { Name = 'sm_20_tunnel1slight033' }, - ['1283589359'] = { Name = 'sm_20_tunnel1slight034' }, - ['-1038061530'] = { Name = 'sm_20_tunnel1slight035' }, - ['-1310109768'] = { Name = 'sm_20_tunnel1slight036' }, - ['-1480869027'] = { Name = 'sm_20_tunnel1slight037' }, - ['-1786931487'] = { Name = 'sm_20_tunnel1slight038' }, - ['-1767201589'] = { Name = 'sm_20_tunnelsshadow1_slod' }, - ['-1622820968'] = { Name = 'sm_20_tunnelsshadow1' }, - ['-105943958'] = { Name = 'sm_20_tunnelsshadow2' }, - ['-403388171'] = { Name = 'sm_20_tunnelsshadow3' }, - ['-1395278589'] = { Name = 'sm_20_tunnelsshadow4_slod' }, - ['-701323919'] = { Name = 'sm_20_tunnelsshadow4' }, - ['-613578063'] = { Name = 'sm_21_build02_b_wire' }, - ['-2052194255'] = { Name = 'sm_21_build02_dtl' }, - ['324848477'] = { Name = 'sm_21_build02_dtl2' }, - ['-1196419571'] = { Name = 'sm_21_build02_dtl3' }, - ['457680554'] = { Name = 'sm_21_build02_ladder1' }, - ['-1661257'] = { Name = 'sm_21_build02' }, - ['-1591592905'] = { Name = 'sm_21_build03_b_wire' }, - ['287164709'] = { Name = 'sm_21_build03' }, - ['677424286'] = { Name = 'sm_21_dtl_01' }, - ['1636802291'] = { Name = 'sm_21_dtl_02' }, - ['43268798'] = { Name = 'sm_21_dtl' }, - ['-751977770'] = { Name = 'sm_21_dtl03' }, - ['-1031990253'] = { Name = 'sm_21_ground2_2' }, - ['-226546807'] = { Name = 'sm_21_ground2' }, - ['1375642932'] = { Name = 'sm_21_railing1' }, - ['138056109'] = { Name = 'sm_21_railing2' }, - ['1103089243'] = { Name = 'sm_21_uvanim' }, - ['609814088'] = { Name = 'sm_22_alpha_01x' }, - ['-703152450'] = { Name = 'sm_22_alpha_02' }, - ['716729376'] = { Name = 'sm_22_alpha_1001' }, - ['-970775325'] = { Name = 'sm_22_alpha' }, - ['58722909'] = { Name = 'sm_22_bld69_fence' }, - ['-1667547961'] = { Name = 'sm_22_box_003' }, - ['-1077089985'] = { Name = 'sm_22_box_01' }, - ['1387695896'] = { Name = 'sm_22_box_02' }, - ['-1367775397'] = { Name = 'sm_22_build_01_railing' }, - ['1156480248'] = { Name = 'sm_22_build_01' }, - ['-421360249'] = { Name = 'sm_22_build_67_nw' }, - ['987981474'] = { Name = 'sm_22_build_67' }, - ['-1497112590'] = { Name = 'sm_22_build_railing' }, - ['-1498089899'] = { Name = 'sm_22_build_railing1' }, - ['239861010'] = { Name = 'sm_22_build0x' }, - ['-1776887296'] = { Name = 'sm_22_build13_railing' }, - ['1658388474'] = { Name = 'sm_22_build13_topcone' }, - ['-1711041105'] = { Name = 'sm_22_build13' }, - ['-1221364567'] = { Name = 'sm_22_building_69_nw' }, - ['1544399491'] = { Name = 'sm_22_building_69_railing' }, - ['-1457973941'] = { Name = 'sm_22_building_69' }, - ['-1817057176'] = { Name = 'sm_22_building_bulbs' }, - ['-160683799'] = { Name = 'sm_22_bulbs_01_irsrefm' }, - ['-1605597990'] = { Name = 'sm_22_bulbs_08' }, - ['310313467'] = { Name = 'sm_22_cableforbulbs' }, - ['2069732710'] = { Name = 'sm_22_cablemesh212741_thvy' }, - ['1236780306'] = { Name = 'sm_22_cables_01' }, - ['1429953832'] = { Name = 'sm_22_coffee_cup_trailer' }, - ['104043923'] = { Name = 'sm_22_detsjm' }, - ['700069859'] = { Name = 'sm_22_entsign2_slod' }, - ['-619570934'] = { Name = 'sm_22_entsign2' }, - ['-149539834'] = { Name = 'sm_22_extras_01' }, - ['1773443377'] = { Name = 'sm_22_extras_03' }, - ['1559127234'] = { Name = 'sm_22_extras_069' }, - ['2079276454'] = { Name = 'sm_22_extras_08' }, - ['2064918595'] = { Name = 'sm_22_ferris_motor_irm' }, - ['2013150397'] = { Name = 'sm_22_ferris_supp' }, - ['1607797324'] = { Name = 'sm_22_irefmaster_01' }, - ['-965486712'] = { Name = 'sm_22_irefmaster_02' }, - ['592646473'] = { Name = 'sm_22_irefmaster_03' }, - ['936000055'] = { Name = 'sm_22_irefmaster_04' }, - ['-1931582366'] = { Name = 'sm_22_irefmaster_06' }, - ['-501059040'] = { Name = 'sm_22_ladder' }, - ['-110202040'] = { Name = 'sm_22_master_railing2' }, - ['-1981098189'] = { Name = 'sm_22_office_alpha_lod' }, - ['1772320718'] = { Name = 'sm_22_office_alpha' }, - ['1454701673'] = { Name = 'sm_22_office_antena' }, - ['-1171044979'] = { Name = 'sm_22_office_det' }, - ['379855493'] = { Name = 'sm_22_office_det001' }, - ['758608782'] = { Name = 'sm_22_office_lattice' }, - ['1010580992'] = { Name = 'sm_22_office' }, - ['989032027'] = { Name = 'sm_22_oot_alpha_n' }, - ['-932057965'] = { Name = 'sm_22_oot_alpha' }, - ['2123354192'] = { Name = 'sm_22_orn_01_night' }, - ['-892102866'] = { Name = 'sm_22_orn_02_night' }, - ['1293652938'] = { Name = 'sm_22_orn_03_night' }, - ['1241621140'] = { Name = 'sm_22_orn_04_night' }, - ['884582834'] = { Name = 'sm_22_pier_alpha_01' }, - ['525053746'] = { Name = 'sm_22_pier_nrails100' }, - ['-1683445782'] = { Name = 'sm_22_pier_nrails101' }, - ['-1261905366'] = { Name = 'sm_22_pier_nrails102' }, - ['1536287100'] = { Name = 'sm_22_pier_nrails102a' }, - ['-1720190181'] = { Name = 'sm_22_pier_railing' }, - ['-146397616'] = { Name = 'sm_22_pier_railing06' }, - ['1695285842'] = { Name = 'sm_22_pier_railing07' }, - ['984108055'] = { Name = 'sm_22_pier_railing2' }, - ['686598304'] = { Name = 'sm_22_pier_railing3' }, - ['356680012'] = { Name = 'sm_22_pier_railing4' }, - ['-2120041979'] = { Name = 'sm_22_pier_section_006' }, - ['-1917871110'] = { Name = 'sm_22_pier' }, - ['1299462321'] = { Name = 'sm_22_piernewsteps' }, - ['573017481'] = { Name = 'sm_22_piersurf_3' }, - ['-1810687794'] = { Name = 'sm_22_piersurf' }, - ['-1705656149'] = { Name = 'sm_22_piersurf2' }, - ['-461984434'] = { Name = 'sm_22_pleas_pier_fr' }, - ['-1337850579'] = { Name = 'sm_22_pleas_pier_sgn' }, - ['2000965656'] = { Name = 'sm_22_pp_sign' }, - ['870157253'] = { Name = 'sm_22_pp_tied' }, - ['-1296999164'] = { Name = 'sm_22_railing03' }, - ['-1956676994'] = { Name = 'sm_22_railing1' }, - ['-1483600087'] = { Name = 'sm_22_rc_canopy' }, - ['-254430631'] = { Name = 'sm_22_rc_railing' }, - ['1202083777'] = { Name = 'sm_22_rccpyshad' }, - ['-1049331294'] = { Name = 'sm_22_rcoaster_neon' }, - ['1781890739'] = { Name = 'sm_22_rcoaster_railings' }, - ['-1355901367'] = { Name = 'sm_22_rcoaster1a' }, - ['-155736826'] = { Name = 'sm_22_rcoaster1b' }, - ['1675001750'] = { Name = 'sm_22_rcoaster1c' }, - ['371385308'] = { Name = 'sm_22_rcoaster1d' }, - ['-1587086666'] = { Name = 'sm_22_rcoaster1f' }, - ['1460823566'] = { Name = 'sm_22_rcoaster1g' }, - ['-1641375979'] = { Name = 'sm_22_sm1_22_glue_0' }, - ['140901141'] = { Name = 'sm_22_sm1_22_glue_01' }, - ['2015331827'] = { Name = 'sm_22_sm1_22_glue_01a' }, - ['-626843760'] = { Name = 'sm_22_sm1_22_glue_02' }, - ['65434138'] = { Name = 'sm_22_sm1_22_glue_03' }, - ['586794380'] = { Name = 'sm_22_sm1_22_weed_02' }, - ['1563145342'] = { Name = 'sm_22_splats_01' }, - ['-327064148'] = { Name = 'sm_22_splats' }, - ['1044605135'] = { Name = 'sm_22_splats02' }, - ['1144671393'] = { Name = 'sm_22_splats1_2' }, - ['1441820685'] = { Name = 'sm_22_splats1_3' }, - ['2047279980'] = { Name = 'sm_22_splats1' }, - ['-1372900328'] = { Name = 'sm_22_stend' }, - ['-765294459'] = { Name = 'sm_22_stend01' }, - ['-400182261'] = { Name = 'sm_22_stend02' }, - ['-165818373'] = { Name = 'sm_22_stend03' }, - ['787739750'] = { Name = 'sm_22_structend_a' }, - ['265468452'] = { Name = 'sm_22_structendsm' }, - ['-151177216'] = { Name = 'sm_22_structendsm01' }, - ['1171772852'] = { Name = 'sm_22_structendsm02' }, - ['-54148207'] = { Name = 'sm_22_structendsm03' }, - ['-359751901'] = { Name = 'sm_22_structendsm04' }, - ['1278304887'] = { Name = 'sm_22_structendsm05' }, - ['2070317877'] = { Name = 'sm_23_bld' }, - ['1577761086'] = { Name = 'sm_23_grnd_builing_dtl' }, - ['522037299'] = { Name = 'sm_23_grnd_dtl_1' }, - ['768591255'] = { Name = 'sm_23_grnd_dtl_2' }, - ['-1845785115'] = { Name = 'sm_23_grnd_dtl_3' }, - ['-1622333304'] = { Name = 'sm_23_grnd_dtl_4' }, - ['-1400487174'] = { Name = 'sm_23_grnd_dtl_5' }, - ['-1645920457'] = { Name = 'sm_23_grnd_dtl' }, - ['-1050418571'] = { Name = 'sm_23_grnd1' }, - ['62894459'] = { Name = 'sm_23_grnd2_dtl' }, - ['-74590520'] = { Name = 'sm_23_grnd2' }, - ['-1985289795'] = { Name = 'sm_24__awning_002' }, - ['178825545'] = { Name = 'sm_24__awning_02' }, - ['-1187823988'] = { Name = 'sm_24_b1_dd_hedge2' }, - ['-680660773'] = { Name = 'sm_24_b1_ddwg_rail_1' }, - ['-1391210823'] = { Name = 'sm_24_b1_ddwg' }, - ['1132621253'] = { Name = 'sm_24_b1_rail_01' }, - ['703046528'] = { Name = 'sm_24_b1' }, - ['1357841456'] = { Name = 'sm_24_b2_ddwg_rails' }, - ['-1505800095'] = { Name = 'sm_24_b2_ddwg_small_r' }, - ['1680594007'] = { Name = 'sm_24_b2_ddwg' }, - ['452386911'] = { Name = 'sm_24_b2_rail_01' }, - ['-817041840'] = { Name = 'sm_24_b2' }, - ['-976822227'] = { Name = 'sm_24_b3_ddwg' }, - ['1539609483'] = { Name = 'sm_24_b3_rail_003' }, - ['1871821609'] = { Name = 'sm_24_b3_rail_004' }, - ['-1174397613'] = { Name = 'sm_24_b3_rail_01' }, - ['1311458739'] = { Name = 'sm_24_b3_rail_02' }, - ['1213479429'] = { Name = 'sm_24_b3_rail_03' }, - ['-218165412'] = { Name = 'sm_24_b3_rail_04' }, - ['1136924869'] = { Name = 'sm_24_b3_rails00' }, - ['-658750793'] = { Name = 'sm_24_b3_rails01' }, - ['-360913352'] = { Name = 'sm_24_b3_rails02' }, - ['402075375'] = { Name = 'sm_24_b3_stair_rail' }, - ['-1091678829'] = { Name = 'sm_24_b3' }, - ['851725936'] = { Name = 'sm_24_b4_dd_hedge' }, - ['-457734280'] = { Name = 'sm_24_b4_ddwg_r_01' }, - ['-217635817'] = { Name = 'sm_24_b4_ddwg_r_02' }, - ['21807266'] = { Name = 'sm_24_b4_ddwg_r_03' }, - ['847192822'] = { Name = 'sm_24_b4_ddwg_r_04' }, - ['-2049188165'] = { Name = 'sm_24_b4_ddwg_wires_01' }, - ['-1471143005'] = { Name = 'sm_24_b4_ddwg_wires_02' }, - ['-1708816562'] = { Name = 'sm_24_b4_ddwg_wires_03' }, - ['-2077822119'] = { Name = 'sm_24_b4_ddwg_wires' }, - ['-1754747307'] = { Name = 'sm_24_b4_ddwg' }, - ['797218039'] = { Name = 'sm_24_b4_rail_001' }, - ['1637021971'] = { Name = 'sm_24_b4_rail_002' }, - ['-1948594782'] = { Name = 'sm_24_b4_rail_003' }, - ['-1921891364'] = { Name = 'sm_24_b4_top_rail_002' }, - ['-1009216359'] = { Name = 'sm_24_b4_top_rail' }, - ['-1667269257'] = { Name = 'sm_24_b4_wire_02' }, - ['-1465900809'] = { Name = 'sm_24_b4' }, - ['1495213017'] = { Name = 'sm_24_gr01_rail' }, - ['-791255862'] = { Name = 'sm_24_gr01_rail02' }, - ['1047461002'] = { Name = 'sm_24_gr01' }, - ['1870031033'] = { Name = 'sm_24_gr03_dcl' }, - ['945320025'] = { Name = 'sm_24_gr03' }, - ['787796914'] = { Name = 'sm_24_irefgatea_01' }, - ['-865315025'] = { Name = 'sm_24_irefgateb_01' }, - ['169308524'] = { Name = 'sm_24_irefgatec_01' }, - ['865836354'] = { Name = 'sm_25_land01' }, - ['1825761687'] = { Name = 'sm_25_land02_ov1' }, - ['-1515463864'] = { Name = 'sm_25_land02_ov2' }, - ['1091647533'] = { Name = 'sm_25_land02' }, - ['1711513863'] = { Name = 'sm_25_wall01' }, - ['-1510298083'] = { Name = 'sm_25_wall01a' }, - ['1480918410'] = { Name = 'sm_25_wall02' }, - ['-1597070171'] = { Name = 'sm_25_wall02a' }, - ['-793348501'] = { Name = 'sm_25_wall03' }, - ['2145607507'] = { Name = 'sm_25_wall03a' }, - ['1601519056'] = { Name = 'sm_25_weeds' }, - ['-570614247'] = { Name = 'sm_26_bld_hidet' }, - ['-1986535309'] = { Name = 'sm_26_bld_railing_2c' }, - ['960007174'] = { Name = 'sm_26_bld_window_01' }, - ['-24618024'] = { Name = 'sm_26_bld' }, - ['1519123745'] = { Name = 'sm_26_bldrail' }, - ['-243973540'] = { Name = 'sm_26_bldrail2' }, - ['1690999775'] = { Name = 'sm_26_building_railing' }, - ['616542661'] = { Name = 'sm_26_building_railing01' }, - ['507913422'] = { Name = 'sm_26_building_railing02' }, - ['1904565981'] = { Name = 'sm_26_carpark' }, - ['1292450893'] = { Name = 'sm_26_decals_001' }, - ['-800909349'] = { Name = 'sm_26_decals_02' }, - ['385230148'] = { Name = 'sm_26_decals_03' }, - ['868376284'] = { Name = 'sm_26_decals_04' }, - ['1041821445'] = { Name = 'sm_26_decals' }, - ['-1560643858'] = { Name = 'sm_26_fwayopas3' }, - ['-702017096'] = { Name = 'sm_26_gas' }, - ['-346684547'] = { Name = 'sm_26_gasdecal' }, - ['-143620092'] = { Name = 'sm_26_glassrailings01' }, - ['1709204706'] = { Name = 'sm_26_glassrailings02' }, - ['869806587'] = { Name = 'sm_26_grounds' }, - ['103999369'] = { Name = 'sm_26_h_bar' }, - ['-446315167'] = { Name = 'sm_26_land01' }, - ['-1625278249'] = { Name = 'sm_26_land02' }, - ['-1966665691'] = { Name = 'sm_26_land03' }, - ['-1368107137'] = { Name = 'sm_26_land05' }, - ['-688230919'] = { Name = 'sm_26_lnddcal02_01' }, - ['-382430611'] = { Name = 'sm_26_lnddcal02_02' }, - ['-76138768'] = { Name = 'sm_26_lnddcal02_03' }, - ['496444655'] = { Name = 'sm_26_lnddcal02' }, - ['1578841491'] = { Name = 'sm_26_op3_fence01' }, - ['-2120745844'] = { Name = 'sm_26_op3_fence03' }, - ['187726708'] = { Name = 'sm_26_pwall' }, - ['2057243973'] = { Name = 'sm_26_pwall0000' }, - ['452294618'] = { Name = 'sm_26_pwall001' }, - ['1766758981'] = { Name = 'sm_26_pwall04' }, - ['-1279348936'] = { Name = 'sm_26_pwall05' }, - ['-1670086492'] = { Name = 'sm_26_pwall06' }, - ['-511098249'] = { Name = 'sm_26_pwall06a' }, - ['-667650013'] = { Name = 'sm_26_pwall07' }, - ['-1866588882'] = { Name = 'sm_26_pwall07a' }, - ['-939138078'] = { Name = 'sm_26_sm26_pool' }, - ['-533534029'] = { Name = 'sm_26_steps01_of' }, - ['-709124335'] = { Name = 'sm_26_steps01' }, - ['269482554'] = { Name = 'sm_27_2_ddwg_hedge02' }, - ['-263170186'] = { Name = 'sm_27_2_ddwg' }, - ['1141047673'] = { Name = 'sm_27_2_ddwr_rail_09' }, - ['-757490555'] = { Name = 'sm_27_2_ddwr' }, - ['1379312669'] = { Name = 'sm_27_4_ddwg' }, - ['1620083039'] = { Name = 'sm_27_5_ddwg_hedge01' }, - ['360566340'] = { Name = 'sm_27_5_ddwg' }, - ['-1734223340'] = { Name = 'sm_27_5_ddwr_01' }, - ['-2088916418'] = { Name = 'sm_27_5_ddwr' }, - ['-1463145077'] = { Name = 'sm_27_5_ddwr4_01' }, - ['192443110'] = { Name = 'sm_27_5_ddwr4_03' }, - ['-707088786'] = { Name = 'sm_27_5_ddwr5_02' }, - ['-1758777072'] = { Name = 'sm_27_5_ddwr5_05' }, - ['-1494429325'] = { Name = 'sm_27_5_ddwr5_13' }, - ['419108905'] = { Name = 'sm_27_build1_dtl_railing1' }, - ['-1749642110'] = { Name = 'sm_27_build1_dtl' }, - ['-882328099'] = { Name = 'sm_27_build1_railing_001' }, - ['-609329560'] = { Name = 'sm_27_build1_railing_002' }, - ['1768788426'] = { Name = 'sm_27_build1_railing' }, - ['1772125361'] = { Name = 'sm_27_build1_railing1' }, - ['-1583059780'] = { Name = 'sm_27_build1_railing2' }, - ['793511945'] = { Name = 'sm_27_build1_railing3' }, - ['1000101024'] = { Name = 'sm_27_build1' }, - ['501569786'] = { Name = 'sm_27_build2_rail_001_lod' }, - ['-233745980'] = { Name = 'sm_27_build2_rail_002_lod' }, - ['572436936'] = { Name = 'sm_27_build2_rail_005' }, - ['-1118509472'] = { Name = 'sm_27_build2_rail_stair' }, - ['1622939716'] = { Name = 'sm_27_build2_window_rail' }, - ['501165076'] = { Name = 'sm_27_build2_window' }, - ['1239085341'] = { Name = 'sm_27_build2' }, - ['608286979'] = { Name = 'sm_27_build3_004' }, - ['-1812896704'] = { Name = 'sm_27_build3_dtl' }, - ['1781613157'] = { Name = 'sm_27_build3_rail_002' }, - ['-1078939479'] = { Name = 'sm_27_build3_rails_001' }, - ['-44320268'] = { Name = 'sm_27_build3_rails_03' }, - ['51635096'] = { Name = 'sm_27_build3' }, - ['-1694675769'] = { Name = 'sm_27_build4_top_02' }, - ['-2002081758'] = { Name = 'sm_27_build4_top_03' }, - ['-528197672'] = { Name = 'sm_27_build4_top_06' }, - ['-194886091'] = { Name = 'sm_27_build4' }, - ['-407294749'] = { Name = 'sm_27_build5' }, - ['1780594044'] = { Name = 'sm_27_cp02_decal' }, - ['538425931'] = { Name = 'sm_27_detail_001' }, - ['-1512913473'] = { Name = 'sm_27_detail_002' }, - ['-1282645710'] = { Name = 'sm_27_detail_003' }, - ['1484827420'] = { Name = 'sm_27_detail_005' }, - ['-1763197522'] = { Name = 'sm_27_gate003_ne_custom001' }, - ['1838197169'] = { Name = 'sm_27_gateb_002' }, - ['888986772'] = { Name = 'sm_27_gateb_01' }, - ['1559244'] = { Name = 'sm_27_gatec_002' }, - ['-316847744'] = { Name = 'sm_27_groundb' }, - ['1246062234'] = { Name = 'sm_27_groundc_02' }, - ['1528934537'] = { Name = 'sm_27_groundc_gates_01' }, - ['-756148958'] = { Name = 'sm_27_groundc' }, - ['1263090369'] = { Name = 'sm_27_shrinksofa' }, - ['1462914127'] = { Name = 'sm_boat_bckdet1' }, - ['-1383696138'] = { Name = 'sm_boat_bckdet2' }, - ['-502512154'] = { Name = 'sm_boat_bckdet2a' }, - ['2092701538'] = { Name = 'sm_boat_bckdet3' }, - ['-1016199418'] = { Name = 'sm_boat_bckdet3a' }, - ['62460645'] = { Name = 'sm_boat_clutter001' }, - ['1709829989'] = { Name = 'sm_boat_clutter1' }, - ['1381517382'] = { Name = 'sm_boat_clutter2' }, - ['1678437291'] = { Name = 'sm_boat_clutter3' }, - ['720599421'] = { Name = 'sm_boat_clutter7' }, - ['30091053'] = { Name = 'sm_boat_clutter8' }, - ['1407739869'] = { Name = 'sm_boat_deck_detail' }, - ['-981218795'] = { Name = 'sm_boat_deck_rails' }, - ['-1935173146'] = { Name = 'sm_boat_deck_rails01' }, - ['-1644610423'] = { Name = 'sm_boat_deck_rails02' }, - ['2064886860'] = { Name = 'sm_boat_emissive_lod' }, - ['343161602'] = { Name = 'sm_boat_front_rails' }, - ['1667665771'] = { Name = 'sm_boat_hoists' }, - ['390174753'] = { Name = 'sm_boat_hoists2' }, - ['-1252245183'] = { Name = 'sm_boat_holds' }, - ['-442075417'] = { Name = 'sm_boat_holds2' }, - ['-1285909936'] = { Name = 'sm_boat_holds3' }, - ['-1887498556'] = { Name = 'sm_boat_hull_dirt' }, - ['-1594046591'] = { Name = 'sm_boat_hull_dirt2' }, - ['-892789092'] = { Name = 'sm_boat_hull' }, - ['183168021'] = { Name = 'sm_boat_lounge_plants' }, - ['-482046838'] = { Name = 'sm_boat_lounge_seats' }, - ['2136198367'] = { Name = 'sm_boat_main_cabin' }, - ['1964501153'] = { Name = 'sm_boat_main_telecom_pole1' }, - ['-923234219'] = { Name = 'sm_boat_main_telecom_poles' }, - ['2131846142'] = { Name = 'sm_boat_main_telecom' }, - ['-709088705'] = { Name = 'sm_boat_poles' }, - ['-1838360539'] = { Name = 'sm_boat_pool_rails_01' }, - ['-1679275850'] = { Name = 'sm_boat_pool_rails' }, - ['-1044722502'] = { Name = 'sm_boat_pool_rails02' }, - ['1806374769'] = { Name = 'sm_boat_rear_ladders' }, - ['-583124630'] = { Name = 'sm_boat_rings_of_life' }, - ['779648633'] = { Name = 'sm_boat_side_windows' }, - ['-1298203218'] = { Name = 'sm_boat_slod1' }, - ['1725624309'] = { Name = 'sm_boat_top_stairs' }, - ['-1781534035'] = { Name = 'sm_boat_towbars' }, - ['-1047091432'] = { Name = 'sm_boat_towbars2' }, - ['-221144759'] = { Name = 'sm_emissive_bld1_em' }, - ['729811152'] = { Name = 'sm_emissive_bld2_em' }, - ['1790499833'] = { Name = 'sm_emissive_build7_em' }, - ['301012316'] = { Name = 'sm_emissive_em_nw1' }, - ['-337917650'] = { Name = 'sm_emissive_em_nw2' }, - ['812012102'] = { Name = 'sm_emissive_em_nw3' }, - ['192249758'] = { Name = 'sm_emissive_em1' }, - ['20409766'] = { Name = 'sm_emissive_em2b' }, - ['2034700625'] = { Name = 'sm_emissive_emb1' }, - ['1475137181'] = { Name = 'sm_emissive_emb2' }, - ['-1949026725'] = { Name = 'sm_emissive_emb3' }, - ['363101632'] = { Name = 'sm_emissive_emissive_b' }, - ['-560525402'] = { Name = 'sm_emissive_emissive_c' }, - ['-951070880'] = { Name = 'sm_emissive_emissive' }, - ['-1702906852'] = { Name = 'sm_emissive_emissive2z' }, - ['-1235919674'] = { Name = 'sm_emissive_night' }, - ['1155977889'] = { Name = 'sm_emissive_sm_01' }, - ['-1704821353'] = { Name = 'sm_emissive_sm_06' }, - ['1131668777'] = { Name = 'sm_emissive_sm_07a' }, - ['-492788856'] = { Name = 'sm_emissive_sm_07b' }, - ['-194754801'] = { Name = 'sm_emissive_sm_07c' }, - ['490969293'] = { Name = 'sm_emissive_sm_07d' }, - ['-1156104444'] = { Name = 'sm_emissive_sm_09' }, - ['-1150735716'] = { Name = 'sm_emissive_sm_12' }, - ['-863772149'] = { Name = 'sm_emissive_sm_13_emb' }, - ['1481204810'] = { Name = 'sm_emissive_sm_13' }, - ['647725295'] = { Name = 'sm_emissive_sm_14' }, - ['1874301734'] = { Name = 'sm_emissive_sm_15' }, - ['488205799'] = { Name = 'sm_emissive_sm_17' }, - ['-885340399'] = { Name = 'sm_emissive_sm_18_a' }, - ['-1426528969'] = { Name = 'sm_emissive_sm_18_z2' }, - ['-357660398'] = { Name = 'sm_emissive_sm_18' }, - ['-121650928'] = { Name = 'sm_emissive_sm_20' }, - ['-188450308'] = { Name = 'sm_emissive_sm_21_a' }, - ['214296860'] = { Name = 'sm_emissive_sm_21' }, - ['-1681892869'] = { Name = 'sm_emissive_sm_22_ema' }, - ['-1385824954'] = { Name = 'sm_emissive_sm_22_emb' }, - ['-1822144185'] = { Name = 'sm_emissive_sm_22_emc' }, - ['815837397'] = { Name = 'sm_emissive_sm_23' }, - ['1205460807'] = { Name = 'sm_emissive_sm_24' }, - ['1781244906'] = { Name = 'sm_emissive_sm_26' }, - ['1845124360'] = { Name = 'sm_emissive_sm_27_a' }, - ['-2107832883'] = { Name = 'sm_emissive_sm_27_c' }, - ['959050600'] = { Name = 'sm_emissive_sm_27_d' }, - ['1951443972'] = { Name = 'sm_emissive_sm_a_17' }, - ['-1196056862'] = { Name = 'sm_emissive_sm_b_17' }, - ['-2088621552'] = { Name = 'sm_emissive_sm_b_27' }, - ['-1084876826'] = { Name = 'sm_emissive_sm_e_27' }, - ['530606431'] = { Name = 'sm_emissive_sm_em24_nw3' }, - ['1053090072'] = { Name = 'sm_emissive_sm_em24nw1' }, - ['344362140'] = { Name = 'sm_emissive_sm_em24nw2' }, - ['468308552'] = { Name = 'sm_emissive_wm_bild62_em' }, - ['7188113'] = { Name = 'sm_lod_emissive_5_19_slod' }, - ['493026780'] = { Name = 'sm_lod_emissive' }, - ['-413517493'] = { Name = 'sm_lod_slod3' }, - ['-635134240'] = { Name = 'sm_lod_slod4' }, - ['-268741574'] = { Name = 'sm_lod_sm_emissive_slod' }, - ['-1553764902'] = { Name = 'sm_props_prop_billboard_rprox' }, - ['-1256061543'] = { Name = 'sm_rd_01_r1a_ovly' }, - ['-765749105'] = { Name = 'sm_rd_01_r1a_wires' }, - ['1316522703'] = { Name = 'sm_rd_01_r1a' }, - ['-461926922'] = { Name = 'sm_rd_01_r1b_ovly' }, - ['1769021199'] = { Name = 'sm_rd_01_r1b_wires' }, - ['-1569508669'] = { Name = 'sm_rd_01_r1b' }, - ['-1299283147'] = { Name = 'sm_rd_01_r1c_ovly' }, - ['332657377'] = { Name = 'sm_rd_01_r1c_wires' }, - ['1908166998'] = { Name = 'sm_rd_01_r1c' }, - ['-1015803771'] = { Name = 'sm_rd_01_r1d_ovly' }, - ['-953156548'] = { Name = 'sm_rd_01_r1d' }, - ['486486907'] = { Name = 'sm_rd_01_r1e_ovly' }, - ['-1787946823'] = { Name = 'sm_rd_01_r1e' }, - ['26209594'] = { Name = 'sm_rd_01_r1f_ovly' }, - ['-916946799'] = { Name = 'sm_rd_01_r1f' }, - ['-1747835346'] = { Name = 'sm_rd_01_r1g_ovly' }, - ['-1197252829'] = { Name = 'sm_rd_01_r1g' }, - ['2103136022'] = { Name = 'sm_rd_01_r1h_ovly' }, - ['-299677146'] = { Name = 'sm_rd_01_r1h' }, - ['123007247'] = { Name = 'sm_rd_01_r1i_ovly' }, - ['-54696102'] = { Name = 'sm_rd_01_r1i' }, - ['427745667'] = { Name = 'sm_rd_01_r2a_ovly' }, - ['-266285191'] = { Name = 'sm_rd_01_r2a' }, - ['1570369674'] = { Name = 'sm_rd_01_r2b_ovly' }, - ['-1252599326'] = { Name = 'sm_rd_01_r2b' }, - ['-364322289'] = { Name = 'sm_rd_01_r2c_ovly' }, - ['-1019087432'] = { Name = 'sm_rd_01_r2c' }, - ['1183255256'] = { Name = 'sm_rd_01_r2d_ovly' }, - ['451028219'] = { Name = 'sm_rd_01_r2d' }, - ['523347467'] = { Name = 'sm_rd_01_r2e_ovly' }, - ['686473484'] = { Name = 'sm_rd_01_r2e' }, - ['1539004010'] = { Name = 'sm_rd_01_r2f_ovly' }, - ['410126201'] = { Name = 'sm_rd_01_r2f_wires' }, - ['-27497488'] = { Name = 'sm_rd_01_r2f' }, - ['1509290267'] = { Name = 'sm_rd_01_r2g_ovly' }, - ['219285851'] = { Name = 'sm_rd_01_r2g' }, - ['1998964509'] = { Name = 'sm_rd_01_r2h_ovly' }, - ['1675736821'] = { Name = 'sm_rd_01_r2h' }, - ['-1845514624'] = { Name = 'sm_rd_01_r2i_ovly' }, - ['1906332274'] = { Name = 'sm_rd_01_r2i' }, - ['-1189542368'] = { Name = 'sm_rd_01_r3a_ovly' }, - ['1736239043'] = { Name = 'sm_rd_01_r3a' }, - ['-823556599'] = { Name = 'sm_rd_01_r3b_ovly' }, - ['-1374489362'] = { Name = 'sm_rd_01_r3b' }, - ['165101103'] = { Name = 'sm_rd_01_r3c_ovly' }, - ['1002999899'] = { Name = 'sm_rd_01_r3c' }, - ['-830176742'] = { Name = 'sm_rd_01_r3d_ovly' }, - ['-1838793323'] = { Name = 'sm_rd_01_r3d' }, - ['1925432931'] = { Name = 'sm_rd_01_r3e_ovly' }, - ['-1605117584'] = { Name = 'sm_rd_01_r3e' }, - ['924287638'] = { Name = 'sm_rd_01_r3f_ovly' }, - ['-216400125'] = { Name = 'sm_rd_01_r3f' }, - ['1280667701'] = { Name = 'sm_rd_01_r4a_ovly' }, - ['227554627'] = { Name = 'sm_rd_01_r4a' }, - ['-616057295'] = { Name = 'sm_rd_01_r4b_ovly' }, - ['946703101'] = { Name = 'sm_rd_01_r4b' }, - ['1309004936'] = { Name = 'sm_rd_01_r4c_ovly' }, - ['1777626634'] = { Name = 'sm_rd_01_r4c' }, - ['1349872815'] = { Name = 'sm_rd_01_r4d_ovly' }, - ['-1770338538'] = { Name = 'sm_rd_01_r4d' }, - ['-38421647'] = { Name = 'sm_rd_01_r4e_ovly' }, - ['1221700549'] = { Name = 'sm_rd_01_r4e' }, - ['-1253342689'] = { Name = 'sm_rd_01_r4f_ovly' }, - ['-1844003250'] = { Name = 'sm_rd_01_r4f' }, - ['-1114953147'] = { Name = 'sm_rd_01_r4g_ovly' }, - ['-1537809714'] = { Name = 'sm_rd_01_r4g' }, - ['-1704007840'] = { Name = 'sm_rd_01_r4h_ovly' }, - ['-275875516'] = { Name = 'sm_rd_01_r4h' }, - ['743478836'] = { Name = 'sovereign' }, - ['-1980482350'] = { Name = 'sp1_01_cnt_sign' }, - ['896396699'] = { Name = 'sp1_01_debries_001' }, - ['51775724'] = { Name = 'sp1_01_debries_002' }, - ['616161945'] = { Name = 'sp1_01_details_01' }, - ['576576993'] = { Name = 'sp1_01_details_02' }, - ['278870628'] = { Name = 'sp1_01_details_03' }, - ['369739109'] = { Name = 'sp1_01_details_0j' }, - ['272469416'] = { Name = 'sp1_01_grde001' }, - ['1040214317'] = { Name = 'sp1_01_grde002' }, - ['81524453'] = { Name = 'sp1_01_grde003' }, - ['1412331192'] = { Name = 'sp1_01_jumptest_fizzhd' }, - ['-289249109'] = { Name = 'sp1_01_jumptest' }, - ['-1930921615'] = { Name = 'sp1_03__hd_fizzing_044' }, - ['-1867874411'] = { Name = 'sp1_03__hd_fizzing_053' }, - ['1688341506'] = { Name = 'sp1_03__hd_fizzing_0675' }, - ['-1257765257'] = { Name = 'sp1_03_bbuild_01_d' }, - ['392373231'] = { Name = 'sp1_03_bbuild_01' }, - ['59283756'] = { Name = 'sp1_03_bbuild_05_d' }, - ['2130939928'] = { Name = 'sp1_03_bbuild_05_o' }, - ['1550265850'] = { Name = 'sp1_03_bbuild_05' }, - ['306827323'] = { Name = 'sp1_03_build_001_d' }, - ['1978499018'] = { Name = 'sp1_03_build_001' }, - ['396444463'] = { Name = 'sp1_03_build_003' }, - ['-1846163322'] = { Name = 'sp1_03_build_010_d' }, - ['1320399451'] = { Name = 'sp1_03_build_010' }, - ['2112918316'] = { Name = 'sp1_03_build_69_details' }, - ['1257126093'] = { Name = 'sp1_03_build_69_o' }, - ['1844662192'] = { Name = 'sp1_03_build_69' }, - ['-2020206640'] = { Name = 'sp1_03_build_69a_o' }, - ['1103126256'] = { Name = 'sp1_03_cablemesh37326_tstd' }, - ['161581647'] = { Name = 'sp1_03_carwreck_01' }, - ['2074930788'] = { Name = 'sp1_03_carwreck_02' }, - ['645284856'] = { Name = 'sp1_03_carwreck_03' }, - ['404858703'] = { Name = 'sp1_03_carwreck_04' }, - ['-526532'] = { Name = 'sp1_03_carwreck_05' }, - ['-1900505921'] = { Name = 'sp1_03_carwreck_06' }, - ['-529844189'] = { Name = 'sp1_03_carwreck_07' }, - ['-217850540'] = { Name = 'sp1_03_carwreck_08' }, - ['1313556003'] = { Name = 'sp1_03_carwreck_slod' }, - ['1997114228'] = { Name = 'sp1_03_grnd_d' }, - ['-357304705'] = { Name = 'sp1_03_grnd01_d' }, - ['-250212429'] = { Name = 'sp1_03_ground_detail_01' }, - ['-1357420178'] = { Name = 'sp1_03_ground_detail' }, - ['-789380911'] = { Name = 'sp1_03_ground' }, - ['-638571933'] = { Name = 'sp1_03_hd_fence_01' }, - ['-1627280765'] = { Name = 'sp1_03_hd_fence_mesh_01' }, - ['-1865675240'] = { Name = 'sp1_03_hd_fence_mesh_02' }, - ['-1502758569'] = { Name = 'sp1_03_hd_fence_mesh_03' }, - ['-1741284120'] = { Name = 'sp1_03_hd_fence_mesh_04' }, - ['1240236114'] = { Name = 'sp1_03_hd_fence_mesh_05' }, - ['2103994185'] = { Name = 'sp1_03_hd_fence_mesh_06' }, - ['-175441841'] = { Name = 'sp1_03_hd_fizzing_01' }, - ['-464792111'] = { Name = 'sp1_03_hd_fizzing_02' }, - ['303411556'] = { Name = 'sp1_03_hd_fizzing_03' }, - ['-1210319630'] = { Name = 'sp1_03_hd_fizzing_04' }, - ['-1517135777'] = { Name = 'sp1_03_hd_fizzing_05' }, - ['-1026878764'] = { Name = 'sp1_03_hd_fizzing_07' }, - ['1888513628'] = { Name = 'sp1_03_hd_fizzing_08' }, - ['-633600292'] = { Name = 'sp1_03_ladder_01' }, - ['132375083'] = { Name = 'sp1_03_ladder_02' }, - ['-21901369'] = { Name = 'sp1_03_ladder_03' }, - ['739027580'] = { Name = 'sp1_03_ladder_04' }, - ['643833635'] = { Name = 'sp1_03_ladder_05' }, - ['1418787716'] = { Name = 'sp1_03_ladder_06' }, - ['959817899'] = { Name = 'sp1_03_object002' }, - ['717528589'] = { Name = 'sp1_03_road_o' }, - ['844879939'] = { Name = 'sp1_03_road_o3' }, - ['-840129747'] = { Name = 'sp1_03_shed_002_d' }, - ['2016038755'] = { Name = 'sp1_03_shed_002' }, - ['4677527'] = { Name = 'sp1_03_shed_008' }, - ['970829994'] = { Name = 'sp1_03_shed_010_d' }, - ['-204825554'] = { Name = 'sp1_03_sign' }, - ['-623382305'] = { Name = 'sp1_03_sign02' }, - ['1151786152'] = { Name = 'sp1_03_wall_01_o' }, - ['-430549251'] = { Name = 'sp1_03_wall_02_o' }, - ['-1780843846'] = { Name = 'sp1_03_winnoshadow' }, - ['1022460823'] = { Name = 'sp1_04_details_01' }, - ['-1352636301'] = { Name = 'sp1_04_details_02' }, - ['-1601910084'] = { Name = 'sp1_04_details_03' }, - ['-1471019060'] = { Name = 'sp1_04_ground' }, - ['298645552'] = { Name = 'sp1_04_ground01' }, - ['-172083141'] = { Name = 'sp1_05_build_01_c' }, - ['748743525'] = { Name = 'sp1_05_build_01_detail' }, - ['865981490'] = { Name = 'sp1_05_build_01_o_d' }, - ['1957103851'] = { Name = 'sp1_05_build_01' }, - ['1448075052'] = { Name = 'sp1_05_build_02_o_d' }, - ['1715825704'] = { Name = 'sp1_05_build_02' }, - ['49824893'] = { Name = 'sp1_05_build_02pipe' }, - ['626187085'] = { Name = 'sp1_05_cablemesh_tstd' }, - ['1303926367'] = { Name = 'sp1_05_det_' }, - ['349755010'] = { Name = 'sp1_05_det_01' }, - ['-262238834'] = { Name = 'sp1_05_det_02' }, - ['-31381229'] = { Name = 'sp1_05_det_03' }, - ['-874920827'] = { Name = 'sp1_05_det_04' }, - ['-488692045'] = { Name = 'sp1_05_fences_hd' }, - ['-1329078151'] = { Name = 'sp1_05_ground_dec01' }, - ['320218392'] = { Name = 'sp1_05_ground_dec02' }, - ['266215080'] = { Name = 'sp1_05_ground_dec03' }, - ['-192076107'] = { Name = 'sp1_05_ground' }, - ['30663009'] = { Name = 'sp1_05_pipes_hd_01' }, - ['-294864237'] = { Name = 'sp1_05_pipes_hd_02' }, - ['-919121175'] = { Name = 'sp1_06_ground_detail_01' }, - ['1667922346'] = { Name = 'sp1_06_ground' }, - ['203985582'] = { Name = 'sp1_06_ground02_detail_02' }, - ['-335423559'] = { Name = 'sp1_07_details_01' }, - ['-124817196'] = { Name = 'sp1_07_details_02' }, - ['1434593976'] = { Name = 'sp1_07_details_03' }, - ['-2092333855'] = { Name = 'sp1_07_details_03a' }, - ['-1062008738'] = { Name = 'sp1_07_gndstones' }, - ['-1037961488'] = { Name = 'sp1_07_grnd01' }, - ['1216250795'] = { Name = 'sp1_07_grnd06' }, - ['1157018036'] = { Name = 'sp1_07_grnd07xxx' }, - ['-1471268258'] = { Name = 'sp1_10__fake_int' }, - ['-1393274362'] = { Name = 'sp1_10_brand_01_wip_dontdelq' }, - ['859153911'] = { Name = 'sp1_10_details2' }, - ['1089093984'] = { Name = 'sp1_10_details3' }, - ['1451256972'] = { Name = 'sp1_10_details4' }, - ['-4178167'] = { Name = 'sp1_10_details5' }, - ['-378662299'] = { Name = 'sp1_10_details6' }, - ['625609228'] = { Name = 'sp1_10_details7' }, - ['1248668236'] = { Name = 'sp1_10_fake_interior_lod' }, - ['1167231321'] = { Name = 'sp1_10_fake_interior_slod' }, - ['-1231039704'] = { Name = 'sp1_10_fences_hd_01' }, - ['1753790203'] = { Name = 'sp1_10_fences_hd_02' }, - ['2087771855'] = { Name = 'sp1_10_fences_hd_03' }, - ['239600255'] = { Name = 'sp1_10_fences_hd_04' }, - ['1460868116'] = { Name = 'sp1_10_fences_hd_05' }, - ['-1967621282'] = { Name = 'sp1_10_fences_hd_06' }, - ['-684030287'] = { Name = 'sp1_10_fizza_01' }, - ['1063991623'] = { Name = 'sp1_10_fpoles01' }, - ['1437296071'] = { Name = 'sp1_10_fpoles02' }, - ['-751836962'] = { Name = 'sp1_10_fpoles03' }, - ['-896872556'] = { Name = 'sp1_10_fpoles04' }, - ['2018028305'] = { Name = 'sp1_10_fpoles05' }, - ['1846449821'] = { Name = 'sp1_10_fpoles06' }, - ['646121431'] = { Name = 'sp1_10_fpoles07' }, - ['933374485'] = { Name = 'sp1_10_fpoles08' }, - ['-1991225984'] = { Name = 'sp1_10_fpoles09' }, - ['318853584'] = { Name = 'sp1_10_fpoles10' }, - ['-1009765533'] = { Name = 'sp1_10_fpoles11' }, - ['-1315107075'] = { Name = 'sp1_10_fpoles12' }, - ['-576384219'] = { Name = 'sp1_10_ground_1' }, - ['-279988614'] = { Name = 'sp1_10_ground_2' }, - ['-1909662728'] = { Name = 'sp1_10_hedge01' }, - ['2146385789'] = { Name = 'sp1_10_hedge02' }, - ['-1334992775'] = { Name = 'sp1_10_hedge03' }, - ['1430851769'] = { Name = 'sp1_10_int' }, - ['221673344'] = { Name = 'sp1_10_mainwall_1' }, - ['-1899183420'] = { Name = 'sp1_10_props_interior_slod' }, - ['452884211'] = { Name = 'sp1_10_roof01' }, - ['-932069920'] = { Name = 'sp1_10_roofbars' }, - ['864093339'] = { Name = 'sp1_10_roofshadow' }, - ['817111148'] = { Name = 'sp1_10_sidebars_hd' }, - ['-1449594966'] = { Name = 'sp1_10_sign_bars_hd' }, - ['-491177724'] = { Name = 'sp1_10_wind01' }, - ['-730620807'] = { Name = 'sp1_10_wind02' }, - ['946758765'] = { Name = 'sp1_10_wind03' }, - ['707774448'] = { Name = 'sp1_10_wind04' }, - ['-1356012400'] = { Name = 'sp1_11_01_detail_01' }, - ['275404410'] = { Name = 'sp1_11_01_detail' }, - ['2065813614'] = { Name = 'sp1_11_01' }, - ['-1992692578'] = { Name = 'sp1_11_02' }, - ['-461075416'] = { Name = 'sp1_11_03_detail' }, - ['1477970523'] = { Name = 'sp1_11_03' }, - ['440976732'] = { Name = 'sp1_11_04_det' }, - ['1104877596'] = { Name = 'sp1_11_04_detail' }, - ['-813767421'] = { Name = 'sp1_11_04_detail02' }, - ['-1968778096'] = { Name = 'sp1_11_04_detail02b' }, - ['-14273463'] = { Name = 'sp1_11_04_detaila' }, - ['1723672485'] = { Name = 'sp1_11_04' }, - ['2034646738'] = { Name = 'sp1_11_railings' }, - ['-551206808'] = { Name = 'sp1_12_a_build08graf' }, - ['2125673261'] = { Name = 'sp1_12_b00' }, - ['-909129351'] = { Name = 'sp1_12_b01' }, - ['6370975'] = { Name = 'sp1_12_b02' }, - ['1268239631'] = { Name = 'sp1_12_b03' }, - ['-857559116'] = { Name = 'sp1_12_billboard_hd_01' }, - ['-116783106'] = { Name = 'sp1_12_billboard_hd_02' }, - ['709388922'] = { Name = 'sp1_12_billboard_hd_03' }, - ['1952808627'] = { Name = 'sp1_12_billboard_hd_04' }, - ['-1977517011'] = { Name = 'sp1_12_bridge_03' }, - ['-2031134611'] = { Name = 'sp1_12_bridge_03fc2_lod' }, - ['-1288872892'] = { Name = 'sp1_12_bridge_03fc3' }, - ['-1711060759'] = { Name = 'sp1_12_bridge_03fc3a' }, - ['-255527289'] = { Name = 'sp1_12_bridge_03fc3b' }, - ['-1098837504'] = { Name = 'sp1_12_bridge_03fc3c' }, - ['2028722626'] = { Name = 'sp1_12_bridge_04' }, - ['-99737415'] = { Name = 'sp1_12_bridge_1' }, - ['1919252664'] = { Name = 'sp1_12_bridge_1fc' }, - ['-1386559208'] = { Name = 'sp1_12_bridge_1fcb' }, - ['-247656681'] = { Name = 'sp1_12_bridge_2' }, - ['-1800984982'] = { Name = 'sp1_12_bridge_fc1' }, - ['1521627777'] = { Name = 'sp1_12_bridge_fc2' }, - ['2029154049'] = { Name = 'sp1_12_bridge_fc3' }, - ['-1325834482'] = { Name = 'sp1_12_bridge_fc4' }, - ['-549635179'] = { Name = 'sp1_12_bridge_fc5' }, - ['-2113437397'] = { Name = 'sp1_12_bridge_fc6' }, - ['-1077805921'] = { Name = 'sp1_12_bridge_fc7' }, - ['1327936860'] = { Name = 'sp1_12_cablemesh_01' }, - ['-1770929171'] = { Name = 'sp1_12_cablemesh_02' }, - ['1337940827'] = { Name = 'sp1_12_decals00' }, - ['1629748772'] = { Name = 'sp1_12_decals01' }, - ['-397767565'] = { Name = 'sp1_12_decals02' }, - ['-39405781'] = { Name = 'sp1_12_decals03' }, - ['1184123133'] = { Name = 'sp1_12_decals04' }, - ['1538683713'] = { Name = 'sp1_12_decals05' }, - ['-488636010'] = { Name = 'sp1_12_decals06' }, - ['-1891116445'] = { Name = 'sp1_12_decals08' }, - ['-1587773812'] = { Name = 'sp1_12_decals09' }, - ['-1490318506'] = { Name = 'sp1_12_decals10' }, - ['-648384589'] = { Name = 'sp1_12_decals11' }, - ['1088601794'] = { Name = 'sp1_12_decals12' }, - ['590840684'] = { Name = 'sp1_12_decals13' }, - ['503806220'] = { Name = 'sp1_12_decals14' }, - ['273800609'] = { Name = 'sp1_12_decals15' }, - ['-1104172831'] = { Name = 'sp1_12_detail_01' }, - ['-516948407'] = { Name = 'sp1_12_detail_01a' }, - ['-478612621'] = { Name = 'sp1_12_detail_02' }, - ['-1228560299'] = { Name = 'sp1_12_detail_02a' }, - ['-641867779'] = { Name = 'sp1_12_detail_03' }, - ['778999449'] = { Name = 'sp1_12_detail_03a' }, - ['114014744'] = { Name = 'sp1_12_detail_04' }, - ['-315390232'] = { Name = 'sp1_12_detail_05' }, - ['433479725'] = { Name = 'sp1_12_detail_06' }, - ['-1649121089'] = { Name = 'sp1_12_detail_06a' }, - ['277433747'] = { Name = 'sp1_12_detail_07' }, - ['29601728'] = { Name = 'sp1_12_detail_07a' }, - ['-94428841'] = { Name = 'sp1_12_detail_08' }, - ['1872231654'] = { Name = 'sp1_12_detail_08a' }, - ['-273019891'] = { Name = 'sp1_12_detail_09' }, - ['-158065879'] = { Name = 'sp1_12_detail_10' }, - ['-917192533'] = { Name = 'sp1_12_detail_11' }, - ['1406153706'] = { Name = 'sp1_12_drain_cover' }, - ['528845980'] = { Name = 'sp1_12_fc7_lod' }, - ['1415690315'] = { Name = 'sp1_12_glue_007a' }, - ['1599394013'] = { Name = 'sp1_12_graph' }, - ['-240111796'] = { Name = 'sp1_12_graph001' }, - ['1132385000'] = { Name = 'sp1_12_graph002' }, - ['1467808484'] = { Name = 'sp1_12_graph003' }, - ['692461175'] = { Name = 'sp1_12_graph004' }, - ['956808698'] = { Name = 'sp1_12_graph005' }, - ['-1966710406'] = { Name = 'sp1_12_graph006' }, - ['1590167934'] = { Name = 'sp1_12_graph007' }, - ['1883221101'] = { Name = 'sp1_12_graph008' }, - ['-2015529547'] = { Name = 'sp1_12_graph008a' }, - ['-1366342170'] = { Name = 'sp1_12_railing01' }, - ['-1100356197'] = { Name = 'sp1_12_railing02' }, - ['-1483813328'] = { Name = 'sp1_12_rd_01' }, - ['-1995009728'] = { Name = 'sp1_12_rd_02' }, - ['-903559602'] = { Name = 'sp1_12_riv_01' }, - ['-290680991'] = { Name = 'sp1_12_riv_03' }, - ['-1467618230'] = { Name = 'sp1_12_riv_04_d' }, - ['1598255253'] = { Name = 'sp1_12_riv_04' }, - ['1417501449'] = { Name = 'sp1_12_riv_05' }, - ['-2081932846'] = { Name = 'sp1_12_riv_06' }, - ['1974377823'] = { Name = 'sp1_12_riv_07' }, - ['-833797854'] = { Name = 'sp1_12_riv_07graf' }, - ['403563051'] = { Name = 'sp1_12_riv_08' }, - ['-1201935805'] = { Name = 'sp1_12_riv_08g' }, - ['172705446'] = { Name = 'sp1_12_riv_09' }, - ['1309166911'] = { Name = 'sp1_12_riv_10' }, - ['1589702320'] = { Name = 'sp1_12_riv_11' }, - ['-1143441452'] = { Name = 'sp1_12_river_end_1' }, - ['-1448422535'] = { Name = 'sp1_12_river_end_2' }, - ['-4614628'] = { Name = 'sp1_12_shadowb01' }, - ['1865807127'] = { Name = 'sp1_12_shadowb02' }, - ['1280094021'] = { Name = 'sp1_12_shadowb03' }, - ['906986187'] = { Name = 'sp1_12_shadowb04' }, - ['-1497242578'] = { Name = 'sp1_12_shadowb05' }, - ['2097746109'] = { Name = 'sp1_12_shadowb08' }, - ['-1968859282'] = { Name = 'sp1_12_sp1_rd_shadow_prox' }, - ['-1012131300'] = { Name = 'sp1_emissive_sp1_03a' }, - ['-698957967'] = { Name = 'sp1_emissive_sp1_03b' }, - ['-1457888011'] = { Name = 'sp1_emissive_sp1_03c' }, - ['-1767129064'] = { Name = 'sp1_emissive_sp1_03d' }, - ['-1922650738'] = { Name = 'sp1_emissive_sp1_03e' }, - ['2066811171'] = { Name = 'sp1_emissive_sp1_03f' }, - ['-2076436231'] = { Name = 'sp1_emissive_sp1_05a' }, - ['-1779319708'] = { Name = 'sp1_emissive_sp1_05b' }, - ['1095954632'] = { Name = 'sp1_lod_em' }, - ['334848724'] = { Name = 'sp1_lod_slod4' }, - ['-1366432263'] = { Name = 'sp1_lod_sp1_10_particle_null' }, - ['1433497939'] = { Name = 'sp1_props_flyers_020' }, - ['534709807'] = { Name = 'sp1_props_flyers_022' }, - ['2070034192'] = { Name = 'sp1_props_flyers_053' }, - ['210196868'] = { Name = 'sp1_props_flyers_054' }, - ['-52905433'] = { Name = 'sp1_props_flyers_055' }, - ['-402485125'] = { Name = 'sp1_props_flyers_056' }, - ['1156598357'] = { Name = 'sp1_props_flyers_059' }, - ['506265027'] = { Name = 'sp1_props_flyers_062' }, - ['141742671'] = { Name = 'sp1_props_flyers_063' }, - ['1773540568'] = { Name = 'sp1_props_flyers_064' }, - ['721968862'] = { Name = 'sp1_rd_00_d' }, - ['1270332868'] = { Name = 'sp1_rd_01_d' }, - ['1429897999'] = { Name = 'sp1_rd_01' }, - ['1739401204'] = { Name = 'sp1_rd_02' }, - ['1591695087'] = { Name = 'sp1_rd_028' }, - ['-547891226'] = { Name = 'sp1_rd_029' }, - ['-2025533390'] = { Name = 'sp1_rd_03_d' }, - ['571914694'] = { Name = 'sp1_rd_03_shadprx' }, - ['-2133042606'] = { Name = 'sp1_rd_03' }, - ['-806865509'] = { Name = 'sp1_rd_030' }, - ['1329706060'] = { Name = 'sp1_rd_031' }, - ['-682389557'] = { Name = 'sp1_rd_04_d' }, - ['387811122'] = { Name = 'sp1_rd_04' }, - ['1760924780'] = { Name = 'sp1_rd_05_d' }, - ['527208646'] = { Name = 'sp1_rd_06_d' }, - ['584882842'] = { Name = 'sp1_rd_06a' }, - ['823637776'] = { Name = 'sp1_rd_06b' }, - ['2137576373'] = { Name = 'sp1_rd_06c' }, - ['2073902221'] = { Name = 'sp1_rd_07_d' }, - ['1555075671'] = { Name = 'sp1_rd_07' }, - ['1549058693'] = { Name = 'sp1_rd_08_d' }, - ['-573434724'] = { Name = 'sp1_rd_08' }, - ['-1708359422'] = { Name = 'sp1_rd_09_d' }, - ['1343289624'] = { Name = 'sp1_rd_09' }, - ['448818011'] = { Name = 'sp1_rd_10_d' }, - ['-1262698790'] = { Name = 'sp1_rd_10' }, - ['-1299957865'] = { Name = 'sp1_rd_11_d' }, - ['43834013'] = { Name = 'sp1_rd_11' }, - ['-1146937529'] = { Name = 'sp1_rd_12_d' }, - ['105374195'] = { Name = 'sp1_rd_12' }, - ['-2131793053'] = { Name = 'sp1_rd_13_d' }, - ['-612463519'] = { Name = 'sp1_rd_13' }, - ['664905876'] = { Name = 'sp1_rd_14_d' }, - ['1981661601'] = { Name = 'sp1_rd_14' }, - ['-1419077405'] = { Name = 'sp1_rd_15_d' }, - ['-1956844513'] = { Name = 'sp1_rd_15' }, - ['-1191744669'] = { Name = 'sp1_rd_16_d' }, - ['1835301423'] = { Name = 'sp1_rd_17_d' }, - ['1797663666'] = { Name = 'sp1_rd_17' }, - ['1959780514'] = { Name = 'sp1_rd_18_d' }, - ['1085069012'] = { Name = 'sp1_rd_18' }, - ['-1553491356'] = { Name = 'sp1_rd_19_d' }, - ['1307603291'] = { Name = 'sp1_rd_19' }, - ['1448810562'] = { Name = 'sp1_rd_20_d' }, - ['1588794304'] = { Name = 'sp1_rd_20' }, - ['816657794'] = { Name = 'sp1_rd_21_d' }, - ['-738329004'] = { Name = 'sp1_rd_21' }, - ['-20899850'] = { Name = 'sp1_rd_22_d' }, - ['-1053206325'] = { Name = 'sp1_rd_22' }, - ['1187563459'] = { Name = 'sp1_rd_23_d' }, - ['-1736964279'] = { Name = 'sp1_rd_23' }, - ['965768865'] = { Name = 'sp1_rd_24_d' }, - ['2084036814'] = { Name = 'sp1_rd_24a' }, - ['312806826'] = { Name = 'sp1_rd_24b' }, - ['402822573'] = { Name = 'sp1_rd_25_d' }, - ['1748149931'] = { Name = 'sp1_rd_25' }, - ['-602550984'] = { Name = 'sp1_rd_26_d' }, - ['1425473588'] = { Name = 'sp1_rd_26' }, - ['-1550085805'] = { Name = 'sp1_rd_27_d' }, - ['-877793888'] = { Name = 'sp1_rd_27' }, - ['-1508152312'] = { Name = 'sp1_rd_28_d' }, - ['-1147446384'] = { Name = 'sp1_rd_armco' }, - ['-1135087813'] = { Name = 'sp1_rd_blockades' }, - ['-1302603504'] = { Name = 'sp1_rd_props_combo01_dslod' }, - ['-2027445393'] = { Name = 'sp1_rd_props_combo02_dslod' }, - ['742143715'] = { Name = 'sp1_rd_props_combo03_dslod' }, - ['-682530277'] = { Name = 'sp1_rd_props_combo04_dslod' }, - ['-1477151821'] = { Name = 'sp1_rd_props_combo05_dslod' }, - ['-461473856'] = { Name = 'sp1_rd_rail1' }, - ['-768093389'] = { Name = 'sp1_rd_rail2' }, - ['1454633990'] = { Name = 'sp1_rd_wires' }, - ['76730524'] = { Name = 'sp1_rd_wires2' }, - ['1886268224'] = { Name = 'specter' }, - ['1074745671'] = { Name = 'specter2' }, - ['231083307'] = { Name = 'speeder' }, - ['437538602'] = { Name = 'speeder2' }, - ['-810318068'] = { Name = 'speedo' }, - ['728614474'] = { Name = 'speedo2' }, - ['674110876'] = { Name = 'spiritsrow' }, - ['400514754'] = { Name = 'squalo' }, - ['-1969678975'] = { Name = 'ss1_01_c_waterd' }, - ['-1413417189'] = { Name = 'ss1_01_column_iref' }, - ['1820076484'] = { Name = 'ss1_01_dtd01' }, - ['2094189169'] = { Name = 'ss1_01_dtd02' }, - ['-1821022473'] = { Name = 'ss1_01_dtd02b' }, - ['-451457211'] = { Name = 'ss1_01_dtd02bivy' }, - ['1077825861'] = { Name = 'ss1_01_dtd03' }, - ['1085046626'] = { Name = 'ss1_01_dtl04' }, - ['-828760800'] = { Name = 'ss1_01_fizza_00' }, - ['-1020197302'] = { Name = 'ss1_01_fizza_01' }, - ['-1322098099'] = { Name = 'ss1_01_fizza_02' }, - ['-1660732945'] = { Name = 'ss1_01_fizza_03' }, - ['-1968827083'] = { Name = 'ss1_01_fizza_04' }, - ['2020307136'] = { Name = 'ss1_01_fizza_05' }, - ['1716079740'] = { Name = 'ss1_01_fizza_06' }, - ['1436003097'] = { Name = 'ss1_01_fizza_07' }, - ['1204129653'] = { Name = 'ss1_01_fizza_08' }, - ['515055691'] = { Name = 'ss1_01_flower_1' }, - ['-1708517573'] = { Name = 'ss1_01_flower_3' }, - ['-297123381'] = { Name = 'ss1_01_fronthedges' }, - ['-774485830'] = { Name = 'ss1_01_ladder01' }, - ['-2145934018'] = { Name = 'ss1_01_ladder02' }, - ['-921225436'] = { Name = 'ss1_01_ladder03' }, - ['-1159652680'] = { Name = 'ss1_01_ladder04' }, - ['-575578024'] = { Name = 'ss1_01_ladder05' }, - ['-816331867'] = { Name = 'ss1_01_ladder06' }, - ['1490146991'] = { Name = 'ss1_01_ladder07' }, - ['-39868533'] = { Name = 'ss1_01_logo01' }, - ['-868105012'] = { Name = 'ss1_01_logo02' }, - ['1062929008'] = { Name = 'ss1_01_lowpdtd00' }, - ['1906763527'] = { Name = 'ss1_01_lowpdtd01' }, - ['618679675'] = { Name = 'ss1_01_lowpdtd02' }, - ['1429155352'] = { Name = 'ss1_01_lowpdtd03' }, - ['15612611'] = { Name = 'ss1_01_mansion' }, - ['1155146323'] = { Name = 'ss1_01_park_decal' }, - ['-842967124'] = { Name = 'ss1_01_park' }, - ['-2139978508'] = { Name = 'ss1_01_raildtd01' }, - ['-1363517053'] = { Name = 'ss1_01_raildtd02' }, - ['-470234113'] = { Name = 'ss1_01_raildtd03' }, - ['-1955735898'] = { Name = 'ss1_01_shadowproxy' }, - ['-919802388'] = { Name = 'ss1_01_ss1_emissive_ss1_01' }, - ['137063414'] = { Name = 'ss1_01_stairs01' }, - ['1456684485'] = { Name = 'ss1_01_stairsbase01' }, - ['1402537249'] = { Name = 'ss1_01_terrain_dtl01' }, - ['1907480515'] = { Name = 'ss1_01_terrain_dtl01b' }, - ['-2062587899'] = { Name = 'ss1_01_terrain_dtl02' }, - ['1345457371'] = { Name = 'ss1_01_terrain' }, - ['-417452013'] = { Name = 'ss1_01_terrainnoshad' }, - ['1401152204'] = { Name = 'ss1_02_building00_dtl_1' }, - ['21773918'] = { Name = 'ss1_02_building00_dtl_2' }, - ['1317947300'] = { Name = 'ss1_02_building00_dtl' }, - ['-1087287778'] = { Name = 'ss1_02_building00' }, - ['-724395030'] = { Name = 'ss1_02_building01_dtl' }, - ['-279744443'] = { Name = 'ss1_02_building01_dtl2' }, - ['-1426709080'] = { Name = 'ss1_02_building01' }, - ['-1543537378'] = { Name = 'ss1_02_building03_dtl_1' }, - ['1958430556'] = { Name = 'ss1_02_building03_dtl' }, - ['-2058855863'] = { Name = 'ss1_02_building03' }, - ['-1780886489'] = { Name = 'ss1_02_decal' }, - ['104890951'] = { Name = 'ss1_02_decal2' }, - ['-1393569881'] = { Name = 'ss1_02_decal3' }, - ['-1161270440'] = { Name = 'ss1_02_decal4' }, - ['1333040302'] = { Name = 'ss1_02_decal5' }, - ['-1732998491'] = { Name = 'ss1_02_grd01' }, - ['1602125812'] = { Name = 'ss1_02_hedge_dcl' }, - ['-1441045355'] = { Name = 'ss1_02_hedge_dcl2' }, - ['1919516466'] = { Name = 'ss1_02_pool_water' }, - ['-500045280'] = { Name = 'ss1_02_ss1_emissive_ss1_02' }, - ['-1920008361'] = { Name = 'ss1_02_ss1_emissive_ss1_02b' }, - ['1925852729'] = { Name = 'ss1_03_dec_tnt' }, - ['1555690038'] = { Name = 'ss1_03_fs_logo' }, - ['1700779227'] = { Name = 'ss1_03_ivy_a' }, - ['-2145923898'] = { Name = 'ss1_03_ladder_01' }, - ['-1762816313'] = { Name = 'ss1_03_north_dtl' }, - ['-1607807933'] = { Name = 'ss1_03_north_dtl2' }, - ['955451469'] = { Name = 'ss1_03_north' }, - ['1419796952'] = { Name = 'ss1_03_railing01' }, - ['-471728019'] = { Name = 'ss1_03_railing02' }, - ['-164322030'] = { Name = 'ss1_03_railing03' }, - ['290839380'] = { Name = 'ss1_03_railing04' }, - ['584547927'] = { Name = 'ss1_03_railing05' }, - ['-1414229997'] = { Name = 'ss1_03_railing06' }, - ['-1082574948'] = { Name = 'ss1_03_railing07' }, - ['-628986450'] = { Name = 'ss1_03_railing08' }, - ['1681424668'] = { Name = 'ss1_03_railing09' }, - ['1832948800'] = { Name = 'ss1_03_railing10' }, - ['2014816750'] = { Name = 'ss1_03_railing11' }, - ['-2057517960'] = { Name = 'ss1_03_railing12' }, - ['799349002'] = { Name = 'ss1_03_railing13' }, - ['1104723313'] = { Name = 'ss1_03_railing14' }, - ['1277874709'] = { Name = 'ss1_03_railing15' }, - ['1592096650'] = { Name = 'ss1_03_railing16' }, - ['-384463908'] = { Name = 'ss1_03_railing17' }, - ['-141088545'] = { Name = 'ss1_03_railing18' }, - ['157076586'] = { Name = 'ss1_03_railing19' }, - ['-1323327047'] = { Name = 'ss1_03_railing20' }, - ['-1505326073'] = { Name = 'ss1_03_railing21' }, - ['-1802770286'] = { Name = 'ss1_03_railing22' }, - ['2045096774'] = { Name = 'ss1_03_railing23' }, - ['1868013098'] = { Name = 'ss1_03_railing24' }, - ['1567160909'] = { Name = 'ss1_03_railing25' }, - ['1121174819'] = { Name = 'ss1_03_railing26' }, - ['1022507360'] = { Name = 'ss1_03_railing27' }, - ['658607615'] = { Name = 'ss1_03_railing28' }, - ['348514568'] = { Name = 'ss1_03_railing29' }, - ['1203223235'] = { Name = 'ss1_03_railing30' }, - ['1819692869'] = { Name = 'ss1_03_roof_fizz_01' }, - ['1075521186'] = { Name = 'ss1_03_south_dtl' }, - ['296970172'] = { Name = 'ss1_03_south_dtl2' }, - ['-1438790954'] = { Name = 'ss1_03_south' }, - ['314386334'] = { Name = 'ss1_03_southe_col' }, - ['281453505'] = { Name = 'ss1_03_southe_detail' }, - ['604171909'] = { Name = 'ss1_03_southe_detail2' }, - ['-1409315301'] = { Name = 'ss1_03_southe' }, - ['623563406'] = { Name = 'ss1_03_terrain_dtl' }, - ['-1246316451'] = { Name = 'ss1_03_terrain' }, - ['-992154463'] = { Name = 'ss1_04_apart_01' }, - ['2109290753'] = { Name = 'ss1_04_apart_02_dtl01' }, - ['-1820760959'] = { Name = 'ss1_04_apart_02_dtl02' }, - ['1667181023'] = { Name = 'ss1_04_apart_06' }, - ['466749814'] = { Name = 'ss1_04_apt02_01_dtl' }, - ['-1533194113'] = { Name = 'ss1_04_apt02_01_dtl2' }, - ['1466108594'] = { Name = 'ss1_04_apt02_01' }, - ['-170017976'] = { Name = 'ss1_04_aptrailing1' }, - ['-167191886'] = { Name = 'ss1_04_aptrailing10' }, - ['72439855'] = { Name = 'ss1_04_aptrailing2' }, - ['452887949'] = { Name = 'ss1_04_aptrailing3' }, - ['723232199'] = { Name = 'ss1_04_aptrailing4' }, - ['945373250'] = { Name = 'ss1_04_aptrailing5' }, - ['1319529692'] = { Name = 'ss1_04_aptrailing6' }, - ['1675466570'] = { Name = 'ss1_04_aptrailing7' }, - ['1949382641'] = { Name = 'ss1_04_aptrailing8' }, - ['-2123181452'] = { Name = 'ss1_04_aptrailing9' }, - ['-1034572158'] = { Name = 'ss1_04_cable' }, - ['-527678138'] = { Name = 'ss1_04_glueweed' }, - ['-1075284838'] = { Name = 'ss1_04_glueweed2' }, - ['-40964122'] = { Name = 'ss1_04_glueweed3' }, - ['-1630719388'] = { Name = 'ss1_04_glueweed4' }, - ['-317401090'] = { Name = 'ss1_04_grddecals' }, - ['136974040'] = { Name = 'ss1_04_greenbar_001' }, - ['1229426962'] = { Name = 'ss1_04_greenbar_002' }, - ['348123055'] = { Name = 'ss1_04_greenrail_002' }, - ['-353898698'] = { Name = 'ss1_04_greenrail01' }, - ['-1208701519'] = { Name = 'ss1_04_hdg_top' }, - ['248660029'] = { Name = 'ss1_04_hdg' }, - ['-1141209275'] = { Name = 'ss1_04_hedgeivywall' }, - ['-2137161087'] = { Name = 'ss1_04_hedgeivywall2' }, - ['-1425005495'] = { Name = 'ss1_04_ladder01' }, - ['-1159412750'] = { Name = 'ss1_04_ladder02' }, - ['-392028304'] = { Name = 'ss1_04_ladder03' }, - ['-160843009'] = { Name = 'ss1_04_ladder04' }, - ['279855155'] = { Name = 'ss1_04_newivy01' }, - ['-1092714562'] = { Name = 'ss1_04_newrailing001' }, - ['-943388183'] = { Name = 'ss1_04_sht01_dtl2' }, - ['-1899782901'] = { Name = 'ss1_04_sht01_dtl2b' }, - ['1859148382'] = { Name = 'ss1_04_sht01' }, - ['-1581764331'] = { Name = 'ss1_04_shtrail01' }, - ['1944474994'] = { Name = 'ss1_04_shtrail02' }, - ['-2076379617'] = { Name = 'ss1_04_shtrail03' }, - ['1324649359'] = { Name = 'ss1_04_shtrail04' }, - ['1623076642'] = { Name = 'ss1_04_shtrail05' }, - ['693944420'] = { Name = 'ss1_04_shtrail06' }, - ['901186973'] = { Name = 'ss1_04_terrain01' }, - ['1729980521'] = { Name = 'ss1_04_terrain02' }, - ['-416487290'] = { Name = 'ss1_04_terrain03' }, - ['-629715173'] = { Name = 'ss1_04_terrain04' }, - ['-1941276258'] = { Name = 'ss1_05_apart01_jan' }, - ['72950441'] = { Name = 'ss1_05_bigapt02_dtl2' }, - ['-893962709'] = { Name = 'ss1_05_bigapt02_dtl2b' }, - ['-461280833'] = { Name = 'ss1_05_bigapt02_dtl2c' }, - ['-1347482922'] = { Name = 'ss1_05_bigapt02' }, - ['-570202543'] = { Name = 'ss1_05_build1_dtl' }, - ['1856064297'] = { Name = 'ss1_05_build3_b' }, - ['832041070'] = { Name = 'ss1_05_build3_dtl' }, - ['-1825736558'] = { Name = 'ss1_05_build3_dtlnew' }, - ['-1447282578'] = { Name = 'ss1_05_build5' }, - ['940052003'] = { Name = 'ss1_05_buildn_emit' }, - ['-744961946'] = { Name = 'ss1_05_buildnew_a' }, - ['1230711645'] = { Name = 'ss1_05_emissive_hd' }, - ['1694854589'] = { Name = 'ss1_05_emissive_slod' }, - ['706155772'] = { Name = 'ss1_05_gr_n' }, - ['-1405432277'] = { Name = 'ss1_05_gr' }, - ['872749416'] = { Name = 'ss1_05_gr2' }, - ['1349305817'] = { Name = 'ss1_05_grbc1' }, - ['1579835732'] = { Name = 'ss1_05_grbc2' }, - ['-978914387'] = { Name = 'ss1_05_grounda001_dtl' }, - ['-1482085974'] = { Name = 'ss1_05_grounda001_dtlb' }, - ['-1653729996'] = { Name = 'ss1_05_grounda001_dtlc' }, - ['-30256148'] = { Name = 'ss1_05_groundb_dtl' }, - ['286180407'] = { Name = 'ss1_05_groundb_dtl2' }, - ['1599004858'] = { Name = 'ss1_05_groundb_dtlb' }, - ['1301196711'] = { Name = 'ss1_05_groundb' }, - ['1748992601'] = { Name = 'ss1_05_hedge_rnd_a_m_decl006' }, - ['496319053'] = { Name = 'ss1_05_hedge_sqr_a_l_decm001' }, - ['-1285349879'] = { Name = 'ss1_05_ladder01' }, - ['385738049'] = { Name = 'ss1_05_ladder02' }, - ['-863578633'] = { Name = 'ss1_05_pool' }, - ['421424729'] = { Name = 'ss1_05_shopframe01' }, - ['-1780286097'] = { Name = 'ss1_05_shw' }, - ['-756717576'] = { Name = 'ss1_05_units' }, - ['-344539447'] = { Name = 'ss1_05_wires' }, - ['423159696'] = { Name = 'ss1_05_xxx' }, - ['118508278'] = { Name = 'ss1_06_banner' }, - ['-1102142546'] = { Name = 'ss1_06_d1' }, - ['505265099'] = { Name = 'ss1_06_d1b_2' }, - ['-1676073142'] = { Name = 'ss1_06_d1b' }, - ['1246324607'] = { Name = 'ss1_06_d1b001' }, - ['758591526'] = { Name = 'ss1_06_d1bb_2' }, - ['-1186449106'] = { Name = 'ss1_06_d1bb' }, - ['293481756'] = { Name = 'ss1_06_d2_2' }, - ['-1342109933'] = { Name = 'ss1_06_d2' }, - ['1630392559'] = { Name = 'ss1_06_d2b_2' }, - ['305042635'] = { Name = 'ss1_06_d2b' }, - ['-1726232002'] = { Name = 'ss1_06_d2b001' }, - ['1750414869'] = { Name = 'ss1_06_glass' }, - ['-172758616'] = { Name = 'ss1_06_ground' }, - ['-1068789358'] = { Name = 'ss1_06_groundb' }, - ['-1307183833'] = { Name = 'ss1_06_groundc' }, - ['-1545676615'] = { Name = 'ss1_06_groundd' }, - ['985238221'] = { Name = 'ss1_06_hdg_top' }, - ['833433536'] = { Name = 'ss1_06_hdg' }, - ['-478642697'] = { Name = 'ss1_06_hdg01_top' }, - ['-587229387'] = { Name = 'ss1_06_hdg01' }, - ['637612818'] = { Name = 'ss1_06_hdg02_top' }, - ['-1017846816'] = { Name = 'ss1_06_hdg02' }, - ['-1078972206'] = { Name = 'ss1_06_hdgnew_d' }, - ['-605572715'] = { Name = 'ss1_06_hdgnew' }, - ['-1393226214'] = { Name = 'ss1_06_ladder01' }, - ['1960111416'] = { Name = 'ss1_06_monkey' }, - ['928480197'] = { Name = 'ss1_06_north' }, - ['-1080925435'] = { Name = 'ss1_06_number01' }, - ['-1847949418'] = { Name = 'ss1_06_number02' }, - ['373832953'] = { Name = 'ss1_06_number02b' }, - ['1718857929'] = { Name = 'ss1_06_number03' }, - ['-1920841762'] = { Name = 'ss1_06_railing01' }, - ['-1692540139'] = { Name = 'ss1_06_railing02' }, - ['2028248739'] = { Name = 'ss1_06_railing03' }, - ['-2065058131'] = { Name = 'ss1_06_railing04' }, - ['1387582024'] = { Name = 'ss1_06_railing05' }, - ['1644589291'] = { Name = 'ss1_06_railing06' }, - ['1075129609'] = { Name = 'ss1_06_railing07' }, - ['196592719'] = { Name = 'ss1_06_railing08' }, - ['436297954'] = { Name = 'ss1_06_railing09' }, - ['1960123488'] = { Name = 'ss1_06_railing10' }, - ['-1618579006'] = { Name = 'ss1_06_railing11' }, - ['-1140479296'] = { Name = 'ss1_06_railing12' }, - ['-1378021777'] = { Name = 'ss1_06_railing13' }, - ['-663526501'] = { Name = 'ss1_06_railing14' }, - ['-933346447'] = { Name = 'ss1_06_railing15' }, - ['71809863'] = { Name = 'ss1_06_railing16' }, - ['-157278216'] = { Name = 'ss1_06_railing17' }, - ['-1525475962'] = { Name = 'ss1_06_seblg' }, - ['12023110'] = { Name = 'ss1_06_shw' }, - ['452899949'] = { Name = 'ss1_06_shw2' }, - ['184371264'] = { Name = 'ss1_06_sign' }, - ['-1776294713'] = { Name = 'ss1_06_sign01' }, - ['-2082979784'] = { Name = 'ss1_06_sign02' }, - ['-1519828029'] = { Name = 'ss1_06_ss_06_cp00_2' }, - ['556932233'] = { Name = 'ss1_06_ss_06_cp00' }, - ['873509627'] = { Name = 'ss1_06_swblg' }, - ['-283072059'] = { Name = 'ss1_06_towels' }, - ['-620695079'] = { Name = 'ss1_06_woodb' }, - ['-566572923'] = { Name = 'ss1_06b_aptgrnd' }, - ['387347948'] = { Name = 'ss1_06b_bdd' }, - ['1155915766'] = { Name = 'ss1_06b_bdd2' }, - ['-1335731209'] = { Name = 'ss1_06b_card' }, - ['-897203232'] = { Name = 'ss1_06b_club_dtl001' }, - ['-1336619218'] = { Name = 'ss1_06b_club_grnd' }, - ['156210570'] = { Name = 'ss1_06b_club1' }, - ['1174528774'] = { Name = 'ss1_06b_club1lad' }, - ['282156055'] = { Name = 'ss1_06b_d' }, - ['1463155419'] = { Name = 'ss1_06b_d1' }, - ['-668828494'] = { Name = 'ss1_06b_d2' }, - ['-798021120'] = { Name = 'ss1_06b_d2b' }, - ['1659436552'] = { Name = 'ss1_06b_hdg_top' }, - ['1667584854'] = { Name = 'ss1_06b_hdg_top01' }, - ['1958802957'] = { Name = 'ss1_06b_hdg_top02' }, - ['-2014897063'] = { Name = 'ss1_06b_hdg_top03' }, - ['-1722958042'] = { Name = 'ss1_06b_hdg_top04' }, - ['-2121670004'] = { Name = 'ss1_06b_hdg' }, - ['-1714224279'] = { Name = 'ss1_06b_hdg01' }, - ['49710949'] = { Name = 'ss1_06b_ivy_top' }, - ['848154567'] = { Name = 'ss1_06b_ivy02' }, - ['764087883'] = { Name = 'ss1_06b_ivywall01' }, - ['1967096107'] = { Name = 'ss1_06b_new01' }, - ['1680465632'] = { Name = 'ss1_06b_new04' }, - ['-1975932717'] = { Name = 'ss1_06b_newivy' }, - ['-1629332993'] = { Name = 'ss1_06b_newrail001' }, - ['1954887339'] = { Name = 'ss1_06b_pool' }, - ['1443083033'] = { Name = 'ss1_06b_r_2' }, - ['903652897'] = { Name = 'ss1_06b_r' }, - ['-728277230'] = { Name = 'ss1_06b_rail' }, - ['-628744539'] = { Name = 'ss1_06b_rail2' }, - ['1482065203'] = { Name = 'ss1_06b_snw' }, - ['-857049812'] = { Name = 'ss1_06b_snw2' }, - ['1857307530'] = { Name = 'ss1_07_apts_d' }, - ['2060975401'] = { Name = 'ss1_07_apts_d2' }, - ['-675128553'] = { Name = 'ss1_07_apts_rail1' }, - ['-1997587086'] = { Name = 'ss1_07_apts_rail2' }, - ['1475712388'] = { Name = 'ss1_07_apts' }, - ['-521428309'] = { Name = 'ss1_07_bck_fizz1_lod' }, - ['-524774748'] = { Name = 'ss1_07_bdyshpd' }, - ['1885153129'] = { Name = 'ss1_07_bdyshpd001' }, - ['1756043269'] = { Name = 'ss1_07_bdyshpd002' }, - ['967439545'] = { Name = 'ss1_07_bdyshpgd' }, - ['-1322757967'] = { Name = 'ss1_07_bdyshpstr' }, - ['-1742272871'] = { Name = 'ss1_07_cp_d' }, - ['1911689828'] = { Name = 'ss1_07_cp_dirt_2' }, - ['752485526'] = { Name = 'ss1_07_cp_dirt' }, - ['480648872'] = { Name = 'ss1_07_cp_dirt2' }, - ['-376228998'] = { Name = 'ss1_07_cp' }, - ['1948689492'] = { Name = 'ss1_07_crnrbldg' }, - ['1287780767'] = { Name = 'ss1_07_crnrbldgd' }, - ['-1048219105'] = { Name = 'ss1_07_crnrbldgd2' }, - ['-583292529'] = { Name = 'ss1_07_crnrbldgd3' }, - ['-79149611'] = { Name = 'ss1_07_crnrbldggnd' }, - ['-516701073'] = { Name = 'ss1_07_crnrbldggnd02' }, - ['2132675970'] = { Name = 'ss1_07_crnrbldgrailing1' }, - ['1138857734'] = { Name = 'ss1_07_crnrbldgrailing2' }, - ['1875557367'] = { Name = 'ss1_07_grndrailings1' }, - ['651274782'] = { Name = 'ss1_07_grndrailings2' }, - ['421269171'] = { Name = 'ss1_07_grndrailings3' }, - ['1130324793'] = { Name = 'ss1_07_grndrailings4' }, - ['839172228'] = { Name = 'ss1_07_grndrailings5' }, - ['-1696889334'] = { Name = 'ss1_07_hedge_d1' }, - ['-2054005896'] = { Name = 'ss1_07_hedge_d2' }, - ['823450986'] = { Name = 'ss1_07_hotelrailing1' }, - ['995291622'] = { Name = 'ss1_07_hotelrailing2' }, - ['1390518563'] = { Name = 'ss1_07_hotelrailing3' }, - ['-1515469130'] = { Name = 'ss1_07_hotelrailing4' }, - ['-1871900222'] = { Name = 'ss1_07_pool_01' }, - ['-1035174531'] = { Name = 'ss1_07_rail' }, - ['44221186'] = { Name = 'ss1_07_raila' }, - ['295723261'] = { Name = 'ss1_07_railb' }, - ['-480410504'] = { Name = 'ss1_07_railc' }, - ['977900690'] = { Name = 'ss1_07_sgar_rail_lod' }, - ['348958955'] = { Name = 'ss1_07_sgar_rail' }, - ['-801427182'] = { Name = 'ss1_07_sgar' }, - ['2090512008'] = { Name = 'ss1_07_shotel' }, - ['1744963315'] = { Name = 'ss1_07_sstbck_fizz01' }, - ['-1111734132'] = { Name = 'ss1_07_sstbck' }, - ['-1255104445'] = { Name = 'ss1_07_sstgnd' }, - ['-409552964'] = { Name = 'ss1_07_ssttwr_d' }, - ['674399058'] = { Name = 'ss1_07_ssttwr' }, - ['103905016'] = { Name = 'ss1_07_stairsrailing1' }, - ['-1602180196'] = { Name = 'ss1_07_stairsrailing2' }, - ['-1851060751'] = { Name = 'ss1_07_stairsrailing3' }, - ['-1586958675'] = { Name = 'ss1_07_stdrdd' }, - ['-1998897412'] = { Name = 'ss1_07_stdrdd2' }, - ['63833635'] = { Name = 'ss1_07_stdrdground' }, - ['-1738702190'] = { Name = 'ss1_07_twrrailings1' }, - ['-1136567040'] = { Name = 'ss1_07_vpr_xd' }, - ['-2142713524'] = { Name = 'ss1_07_vpr_xd2' }, - ['-95686898'] = { Name = 'ss1_07_vpr' }, - ['1478904787'] = { Name = 'ss1_08_apart' }, - ['2042170471'] = { Name = 'ss1_08_build6' }, - ['-1342514898'] = { Name = 'ss1_08_corner_em' }, - ['1716062292'] = { Name = 'ss1_08_corner' }, - ['-652119717'] = { Name = 'ss1_08_dtl01' }, - ['-133058741'] = { Name = 'ss1_08_dtl02' }, - ['1675569826'] = { Name = 'ss1_08_ground_h' }, - ['724236877'] = { Name = 'ss1_08_ladder01' }, - ['-56550086'] = { Name = 'ss1_08_ladder02' }, - ['392516282'] = { Name = 'ss1_08_ladder03' }, - ['691598945'] = { Name = 'ss1_08_ladder04' }, - ['-67462171'] = { Name = 'ss1_08_ladder05' }, - ['229982042'] = { Name = 'ss1_08_ladder06' }, - ['-628196184'] = { Name = 'ss1_08_ls_sign' }, - ['-50427461'] = { Name = 'ss1_08_railing01' }, - ['-269881458'] = { Name = 'ss1_08_railing02' }, - ['-668155884'] = { Name = 'ss1_08_railing03' }, - ['-880073007'] = { Name = 'ss1_08_railing04' }, - ['-1243939983'] = { Name = 'ss1_08_railing05' }, - ['-1530898116'] = { Name = 'ss1_08_railing06' }, - ['-1771193193'] = { Name = 'ss1_08_railing07' }, - ['-2093509077'] = { Name = 'ss1_08_railing08' }, - ['1929508284'] = { Name = 'ss1_08_railing09' }, - ['229221505'] = { Name = 'ss1_08_railing10' }, - ['-75562964'] = { Name = 'ss1_08_railing11' }, - ['2065563496'] = { Name = 'ss1_08_railing12' }, - ['1705759876'] = { Name = 'ss1_08_railing13' }, - ['1453667959'] = { Name = 'ss1_08_railing14' }, - ['1161204634'] = { Name = 'ss1_08_railing15' }, - ['-1595585798'] = { Name = 'ss1_08_railing16' }, - ['1855012212'] = { Name = 'ss1_08_sign01' }, - ['685243265'] = { Name = 'ss1_09_decal_dt2' }, - ['-69361267'] = { Name = 'ss1_09_decal_dt3' }, - ['-305724064'] = { Name = 'ss1_09_decal_dt4' }, - ['1374441649'] = { Name = 'ss1_09_fence3_dt' }, - ['-1145492766'] = { Name = 'ss1_09_fence3_dtrails' }, - ['2044196043'] = { Name = 'ss1_09_flat_bd_01' }, - ['-963265655'] = { Name = 'ss1_09_gls_bd_03' }, - ['761649887'] = { Name = 'ss1_09_grd_bd_04' }, - ['-1756692556'] = { Name = 'ss1_09_hedge_sqr_b_sm_decl001' }, - ['1694792544'] = { Name = 'ss1_09_int_bd_05' }, - ['1367999366'] = { Name = 'ss1_09_int2_bd_06' }, - ['-1416710281'] = { Name = 'ss1_09_lightcasing01' }, - ['-1791456565'] = { Name = 'ss1_09_lightcasing02' }, - ['1899287637'] = { Name = 'ss1_09_office_bd_02' }, - ['-1639868882'] = { Name = 'ss1_09_office_bd_02a' }, - ['-1584097999'] = { Name = 'ss1_09_office_bd_cloth03' }, - ['-421266630'] = { Name = 'ss1_09_office_bd_clotha' }, - ['-652583001'] = { Name = 'ss1_09_office_bd_clothb' }, - ['-2088659862'] = { Name = 'ss1_09_railing01' }, - ['-647905235'] = { Name = 'ss1_09_railing04' }, - ['-249303119'] = { Name = 'ss1_09_railing05' }, - ['1855285910'] = { Name = 'ss1_09_railing06' }, - ['1417950836'] = { Name = 'ss1_09_railing07' }, - ['607475155'] = { Name = 'ss1_09_railing08' }, - ['1468350422'] = { Name = 'ss1_09_railing10' }, - ['1639076912'] = { Name = 'ss1_09_railing11' }, - ['-2019265798'] = { Name = 'ss1_10_bld_dt01' }, - ['1562753294'] = { Name = 'ss1_10_bld_trim01' }, - ['1257739442'] = { Name = 'ss1_10_bld_trim02' }, - ['210369767'] = { Name = 'ss1_10_bld' }, - ['341303678'] = { Name = 'ss1_10_decals01' }, - ['-1799331259'] = { Name = 'ss1_10_decals02' }, - ['865509363'] = { Name = 'ss1_10_decals03' }, - ['123852215'] = { Name = 'ss1_10_grd' }, - ['377613226'] = { Name = 'ss1_10_railing01' }, - ['-1967807737'] = { Name = 'ss1_10_ss1_emissive_ss1_10' }, - ['812397104'] = { Name = 'ss1_11_clth_09a' }, - ['-52147427'] = { Name = 'ss1_11_clth_09c' }, - ['-1312049931'] = { Name = 'ss1_11_clth_09d' }, - ['-1952814969'] = { Name = 'ss1_11_clth_09e' }, - ['2112015640'] = { Name = 'ss1_11_clth_09f' }, - ['1747231132'] = { Name = 'ss1_11_clth_09g' }, - ['-189678912'] = { Name = 'ss1_11_clth_09h' }, - ['-428335539'] = { Name = 'ss1_11_clth_09i' }, - ['-1024174266'] = { Name = 'ss1_11_clth_09k' }, - ['464329140'] = { Name = 'ss1_11_clth_ss1_11_' }, - ['-509355386'] = { Name = 'ss1_11_clth_ss1_11_01' }, - ['659187150'] = { Name = 'ss1_11_clth_ss1_11_02' }, - ['420170064'] = { Name = 'ss1_11_clth_ss1_11_05' }, - ['35101549'] = { Name = 'ss1_11_clth_ss1_11_06' }, - ['149931113'] = { Name = 'ss1_11_detail01' }, - ['651180941'] = { Name = 'ss1_11_detail01b' }, - ['1135098329'] = { Name = 'ss1_11_detail02' }, - ['355604273'] = { Name = 'ss1_11_detail02b' }, - ['-1691916070'] = { Name = 'ss1_11_detail03' }, - ['419420234'] = { Name = 'ss1_11_emt_sign' }, - ['1143381927'] = { Name = 'ss1_11_flagstand' }, - ['1590383694'] = { Name = 'ss1_11_flats' }, - ['-1398218166'] = { Name = 'ss1_11_flatsgrd01' }, - ['1302453174'] = { Name = 'ss1_11_hedge_d' }, - ['274567004'] = { Name = 'ss1_11_land01' }, - ['-449267437'] = { Name = 'ss1_11_land02' }, - ['-335886697'] = { Name = 'ss1_11_land03' }, - ['-1301155600'] = { Name = 'ss1_11_meddoordtl' }, - ['-786039918'] = { Name = 'ss1_11_medictower' }, - ['-1155909594'] = { Name = 'ss1_11_newrail01' }, - ['-1385915205'] = { Name = 'ss1_11_newrail02' }, - ['1067997622'] = { Name = 'ss1_11_propertyfudger' }, - ['2068808878'] = { Name = 'ss1_11_railing01' }, - ['1837984042'] = { Name = 'ss1_11_railing02' }, - ['-1914590786'] = { Name = 'ss1_11_railing03' }, - ['2019044912'] = { Name = 'ss1_11_roofdecal001' }, - ['-99544750'] = { Name = 'ss1_11_shop01' }, - ['951440198'] = { Name = 'ss1_11_striplight008' }, - ['-1209161735'] = { Name = 'ss1_11_teqframe' }, - ['-321950420'] = { Name = 'ss1_11_tequilala' }, - ['790699174'] = { Name = 'ss1_12_bb1' }, - ['965423482'] = { Name = 'ss1_12_bb2' }, - ['-1927517446'] = { Name = 'ss1_12_bld3c' }, - ['772190525'] = { Name = 'ss1_12_bld4' }, - ['-1170355803'] = { Name = 'ss1_12_bld5' }, - ['29552793'] = { Name = 'ss1_12_grnd' }, - ['2141487445'] = { Name = 'ss1_12_grnd2' }, - ['1469491637'] = { Name = 'ss1_12_ivy01' }, - ['707438599'] = { Name = 'ss1_12_night_slod' }, - ['-447870829'] = { Name = 'ss1_12_night' }, - ['209081272'] = { Name = 'ss1_12_night2' }, - ['785101165'] = { Name = 'ss1_12_nightcom' }, - ['220699494'] = { Name = 'ss1_12_ovly01' }, - ['519126777'] = { Name = 'ss1_12_ovly02' }, - ['1238221703'] = { Name = 'ss1_12_railing01' }, - ['908827715'] = { Name = 'ss1_12_railing02' }, - ['611252422'] = { Name = 'ss1_12_railing03' }, - ['313513288'] = { Name = 'ss1_12_railing04' }, - ['45757789'] = { Name = 'ss1_12_railing05' }, - ['-846742418'] = { Name = 'ss1_12_uvanim01' }, - ['1738536960'] = { Name = 'ss1_13_barbedwire01' }, - ['1682497610'] = { Name = 'ss1_13_billboard_start' }, - ['-1754168649'] = { Name = 'ss1_13_build01' }, - ['1946429257'] = { Name = 'ss1_13_build02a' }, - ['-219301458'] = { Name = 'ss1_13_build03' }, - ['-559812365'] = { Name = 'ss1_13_buildrailing001' }, - ['-1261200041'] = { Name = 'ss1_13_buildrailing002' }, - ['1402834636'] = { Name = 'ss1_13_dec01a' }, - ['1633692241'] = { Name = 'ss1_13_dec01b' }, - ['-1912374756'] = { Name = 'ss1_13_dec02' }, - ['-496261526'] = { Name = 'ss1_13_dec02a' }, - ['-809959163'] = { Name = 'ss1_13_dec02b' }, - ['-1054448672'] = { Name = 'ss1_13_dec02c' }, - ['-2143363437'] = { Name = 'ss1_13_dec03' }, - ['-105655262'] = { Name = 'ss1_13_dec03b' }, - ['-1434373353'] = { Name = 'ss1_13_dec04' }, - ['438822592'] = { Name = 'ss1_13_flower_1' }, - ['-601728044'] = { Name = 'ss1_13_grd01noshad' }, - ['896107841'] = { Name = 'ss1_13_grd01shad' }, - ['1451365344'] = { Name = 'ss1_13_grd02noshad' }, - ['-359979191'] = { Name = 'ss1_13_grd02shad' }, - ['-309550683'] = { Name = 'ss1_13_grd03_sp_lod' }, - ['-2081248133'] = { Name = 'ss1_13_grd03_sp' }, - ['1907726874'] = { Name = 'ss1_13_grd03noshad' }, - ['1477196103'] = { Name = 'ss1_13_grd03shad' }, - ['-1030417639'] = { Name = 'ss1_13_ivy_b_base' }, - ['1364224631'] = { Name = 'ss1_13_ivy_b_base001' }, - ['-1017440100'] = { Name = 'ss1_13_ivy_b_dec' }, - ['-982317508'] = { Name = 'ss1_13_ivy_b_dec002' }, - ['1580084506'] = { Name = 'ss1_13_night01_slod' }, - ['-1719298554'] = { Name = 'ss1_13_night01' }, - ['-1448828274'] = { Name = 'ss1_13_railing01' }, - ['1378087818'] = { Name = 'ss1_13_railing02' }, - ['1205985030'] = { Name = 'ss1_13_railing03' }, - ['2125778095'] = { Name = 'ss1_13_railing04' }, - ['1819420714'] = { Name = 'ss1_13_railing05' }, - ['144466044'] = { Name = 'ss1_13_railing06' }, - ['-11121168'] = { Name = 'ss1_13_railing07' }, - ['901331637'] = { Name = 'ss1_13_railing08' }, - ['461112891'] = { Name = 'ss1_13_railing09' }, - ['1318349791'] = { Name = 'ss1_13_railing10' }, - ['1967306959'] = { Name = 'ss1_13_railing11' }, - ['800534053'] = { Name = 'ss1_13_railing12' }, - ['1032571342'] = { Name = 'ss1_13_railing13' }, - ['180184114'] = { Name = 'ss1_13_railing14' }, - ['103116397'] = { Name = 'ss1_13_rooftopdtl01' }, - ['-647483573'] = { Name = 'ss1_13_walkway01' }, - ['-1362250531'] = { Name = 'ss1_13_woodbeams01' }, - ['-230031517'] = { Name = 'ss1_13_woodrail01' }, - ['-1288994521'] = { Name = 'ss1_13_woodrail02' }, - ['-990567238'] = { Name = 'ss1_13_woodrail03' }, - ['1168483861'] = { Name = 'ss1_13_woodrail04' }, - ['245222185'] = { Name = 'ss1_14_billboard' }, - ['1845194391'] = { Name = 'ss1_14_bkdtd01' }, - ['-679653473'] = { Name = 'ss1_14_chat_cottage' }, - ['1966367649'] = { Name = 'ss1_14_chat_detail' }, - ['-1598668276'] = { Name = 'ss1_14_chateau_ivy' }, - ['710210299'] = { Name = 'ss1_14_chateau' }, - ['979320000'] = { Name = 'ss1_14_decal_removed_opt' }, - ['-969697814'] = { Name = 'ss1_14_dtl01' }, - ['1005845080'] = { Name = 'ss1_14_dtl01b' }, - ['-591540891'] = { Name = 'ss1_14_dtl01b2' }, - ['868544783'] = { Name = 'ss1_14_dtl02' }, - ['1874354372'] = { Name = 'ss1_14_dtl02b' }, - ['1009173975'] = { Name = 'ss1_14_garage_01' }, - ['301564130'] = { Name = 'ss1_14_garagedecals' }, - ['-681044525'] = { Name = 'ss1_14_ground' }, - ['-148632159'] = { Name = 'ss1_14_ground2' }, - ['-1199791607'] = { Name = 'ss1_14_hotel01_emissive' }, - ['-2007002664'] = { Name = 'ss1_14_ivy001' }, - ['-1710934749'] = { Name = 'ss1_14_ivy002' }, - ['1383524332'] = { Name = 'ss1_14_ivy2' }, - ['1076970337'] = { Name = 'ss1_14_ivy3' }, - ['2055452677'] = { Name = 'ss1_14_ivy4' }, - ['1204291451'] = { Name = 'ss1_14_pool_water' }, - ['1045778643'] = { Name = 'ss1_14_railing01' }, - ['-322523721'] = { Name = 'ss1_14_railing02' }, - ['587176488'] = { Name = 'ss1_14_railing03' }, - ['1363736250'] = { Name = 'ss1_14_railing04' }, - ['-1993677183'] = { Name = 'ss1_14_railing05' }, - ['2005484350'] = { Name = 'ss1_14_railing06' }, - ['1841770426'] = { Name = 'ss1_14_railing07' }, - ['1538165641'] = { Name = 'ss1_14_railing08' }, - ['-799902513'] = { Name = 'ss1_14_railing09' }, - ['-1244479228'] = { Name = 'ss1_14_railing10' }, - ['-956931253'] = { Name = 'ss1_14_railing11' }, - ['-1720711105'] = { Name = 'ss1_14_railing12' }, - ['33101497'] = { Name = 'ss1_14_redflowers' }, - ['-2118918312'] = { Name = 'ss1_14_stairs01' }, - ['-1235367757'] = { Name = 'ss1_14_stairs02' }, - ['1680483397'] = { Name = 'ss1_14_stairs03' }, - ['-1729589815'] = { Name = 'ss1_14_stairs04' }, - ['-915575086'] = { Name = 'ss1_14_stairs05' }, - ['-13936051'] = { Name = 'ss1_14_stairs06' }, - ['-1376143381'] = { Name = 'ss1_14_stairs07' }, - ['-1888523714'] = { Name = 'ss1_14_stripwater' }, - ['446428276'] = { Name = 'ss1_14_tophedgedtl' }, - ['-617087940'] = { Name = 'ss1_14_wallivy01' }, - ['1372923653'] = { Name = 'ss1_emissive_bt1_01' }, - ['1555700852'] = { Name = 'ss1_emissive_bt1_01b' }, - ['-1963919135'] = { Name = 'ss1_emissive_bt1_01c' }, - ['1166020187'] = { Name = 'ss1_emissive_bt1_02' }, - ['1256650610'] = { Name = 'ss1_emissive_bt1_02b' }, - ['959206397'] = { Name = 'ss1_emissive_bt1_02c' }, - ['1943137022'] = { Name = 'ss1_emissive_bt1_03' }, - ['-2023058897'] = { Name = 'ss1_emissive_bt1_05' }, - ['955013433'] = { Name = 'ss1_emissive_bt1_05b' }, - ['1259994516'] = { Name = 'ss1_emissive_bt1_05c' }, - ['1293339916'] = { Name = 'ss1_emissive_club' }, - ['2008946871'] = { Name = 'ss1_emissive_ss1_01' }, - ['-2017544008'] = { Name = 'ss1_emissive_ss1_02' }, - ['976910415'] = { Name = 'ss1_emissive_ss1_02b' }, - ['1682091983'] = { Name = 'ss1_emissive_ss1_03_2' }, - ['1855505531'] = { Name = 'ss1_emissive_ss1_03_3' }, - ['-1060214555'] = { Name = 'ss1_emissive_ss1_03_4' }, - ['1393233248'] = { Name = 'ss1_emissive_ss1_03_5' }, - ['-1928740018'] = { Name = 'ss1_emissive_ss1_03' }, - ['1378763536'] = { Name = 'ss1_emissive_ss1_04_2' }, - ['1753509820'] = { Name = 'ss1_emissive_ss1_04_3' }, - ['-1589517998'] = { Name = 'ss1_emissive_ss1_04_4' }, - ['-1624676467'] = { Name = 'ss1_emissive_ss1_04' }, - ['-331365984'] = { Name = 'ss1_emissive_ss1_05_a' }, - ['-1885042581'] = { Name = 'ss1_emissive_ss1_05_c' }, - ['-1553846298'] = { Name = 'ss1_emissive_ss1_05_d' }, - ['-1845523171'] = { Name = 'ss1_emissive_ss1_05_e' }, - ['-1270820449'] = { Name = 'ss1_emissive_ss1_05_f' }, - ['-997100992'] = { Name = 'ss1_emissive_ss1_05_g' }, - ['-552424648'] = { Name = 'ss1_emissive_ss1_06_2' }, - ['-910131052'] = { Name = 'ss1_emissive_ss1_06_3' }, - ['1080371718'] = { Name = 'ss1_emissive_ss1_06' }, - ['-816822283'] = { Name = 'ss1_emissive_ss1_06b_3' }, - ['-940689103'] = { Name = 'ss1_emissive_ss1_06b_4' }, - ['-704781600'] = { Name = 'ss1_emissive_ss1_06b2b_2' }, - ['2056718584'] = { Name = 'ss1_emissive_ss1_06b2b' }, - ['1386466947'] = { Name = 'ss1_emissive_ss1_07' }, - ['112170738'] = { Name = 'ss1_emissive_ss1_07b' }, - ['726294567'] = { Name = 'ss1_emissive_ss1_07c' }, - ['-315878491'] = { Name = 'ss1_emissive_ss1_08_2' }, - ['1594586978'] = { Name = 'ss1_emissive_ss1_08_3' }, - ['-200863417'] = { Name = 'ss1_emissive_ss1_08' }, - ['-1509569972'] = { Name = 'ss1_emissive_ss1_09a' }, - ['-1665353798'] = { Name = 'ss1_emissive_ss1_09b' }, - ['-75488915'] = { Name = 'ss1_emissive_ss1_10' }, - ['559804073'] = { Name = 'ss1_emissive_ss1_11_a' }, - ['254495300'] = { Name = 'ss1_emissive_ss1_11_b' }, - ['1290486854'] = { Name = 'ss1_emissive_ss1_11' }, - ['-457441002'] = { Name = 'ss1_emissive_ss1_11b' }, - ['1559094347'] = { Name = 'ss1_emissive_ss1_12' }, - ['-1192351221'] = { Name = 'ss1_emissive_ss1_12b' }, - ['1214626619'] = { Name = 'ss1_emissive_ss1_13' }, - ['-453706056'] = { Name = 'ss1_emissive_ss1_13b' }, - ['-1296033201'] = { Name = 'ss1_emissive_ss1_13c' }, - ['-787949568'] = { Name = 'ss1_emissive_ss1_14a' }, - ['-543034062'] = { Name = 'ss1_emissive_ss1_14b' }, - ['557307319'] = { Name = 'ss1_lod_emissive_05' }, - ['-1110058314'] = { Name = 'ss1_lod_emissive_slod3' }, - ['1038936830'] = { Name = 'ss1_lod_emissive' }, - ['2007050028'] = { Name = 'ss1_lod_slod3' }, - ['-1780655002'] = { Name = 'ss1_props_bug1480687_slod' }, - ['1633166599'] = { Name = 'ss1_props_bug1513403_slod' }, - ['-1640273836'] = { Name = 'ss1_props_cablemesh63' }, - ['1652262705'] = { Name = 'ss1_props_cablemesh63217' }, - ['928902614'] = { Name = 'ss1_props_cablemesh6334' }, - ['2095548941'] = { Name = 'ss1_props_cablemesh63621' }, - ['-1410063030'] = { Name = 'ss1_props_cablemesh641' }, - ['1463686267'] = { Name = 'ss1_props_cablemesh947927' }, - ['43804629'] = { Name = 'ss1_props_cablemesh947938' }, - ['-855441989'] = { Name = 'ss1_props_cablemesh947946' }, - ['1864583097'] = { Name = 'ss1_props_cablemesh947955' }, - ['-1853036408'] = { Name = 'ss1_props_cablemesh9479554' }, - ['-1940859617'] = { Name = 'ss1_props_cablemesh9479767' }, - ['-1584286919'] = { Name = 'ss1_props_cablemesh947978' }, - ['78130487'] = { Name = 'ss1_props_cablemesh94799' }, - ['1182593489'] = { Name = 'ss1_props_cablemesh947994' }, - ['-1593736670'] = { Name = 'ss1_props_cablemesh9480' }, - ['1806008239'] = { Name = 'ss1_props_cablemesh94801' }, - ['-92136086'] = { Name = 'ss1_props_cablemesh94802' }, - ['-2050051847'] = { Name = 'ss1_props_cablemesh94803a' }, - ['-1837919433'] = { Name = 'ss1_rd1_00' }, - ['-1393997790'] = { Name = 'ss1_rd1_02' }, - ['-1247225431'] = { Name = 'ss1_rd1_03' }, - ['-1958705959'] = { Name = 'ss1_rd1_04' }, - ['-663347389'] = { Name = 'ss1_rd1_05' }, - ['-961250368'] = { Name = 'ss1_rd1_06' }, - ['-289125409'] = { Name = 'ss1_rd1_07' }, - ['-469092757'] = { Name = 'ss1_rd1_08' }, - ['169935508'] = { Name = 'ss1_rd1_09' }, - ['1609977121'] = { Name = 'ss1_rd1_10' }, - ['-152765696'] = { Name = 'ss1_rd1_11' }, - ['-929620379'] = { Name = 'ss1_rd1_12' }, - ['-914284487'] = { Name = 'ss1_rd1_13' }, - ['-1683340148'] = { Name = 'ss1_rd1_14' }, - ['470598995'] = { Name = 'ss1_rd1_15' }, - ['769845503'] = { Name = 'ss1_rd1_16' }, - ['310030895'] = { Name = 'ss1_rd1_17' }, - ['-503197382'] = { Name = 'ss1_rd1_18' }, - ['-1907152414'] = { Name = 'ss1_rd1_19' }, - ['817229101'] = { Name = 'ss1_rd1_20' }, - ['520636882'] = { Name = 'ss1_rd1_21' }, - ['319369684'] = { Name = 'ss1_rd1_22' }, - ['2041413403'] = { Name = 'ss1_rd1_24' }, - ['1743903652'] = { Name = 'ss1_rd1_25' }, - ['-546026801'] = { Name = 'ss1_rd1_26' }, - ['-248844740'] = { Name = 'ss1_rd1_27' }, - ['2077754264'] = { Name = 'ss1_rd1_28' }, - ['-1919441129'] = { Name = 'ss1_rd1_29' }, - ['1231266324'] = { Name = 'ss1_rd1_30' }, - ['1540507377'] = { Name = 'ss1_rd1_31' }, - ['-1272547428'] = { Name = 'ss1_rd1_32' }, - ['-848319954'] = { Name = 'ss1_rd1_33' }, - ['-1770406845'] = { Name = 'ss1_rd1_34' }, - ['-1597255449'] = { Name = 'ss1_rd1_35' }, - ['134324053'] = { Name = 'ss1_rd1_36' }, - ['-1917257703'] = { Name = 'ss1_rd1_37_ovly' }, - ['380845240'] = { Name = 'ss1_rd1_37' }, - ['-353409747'] = { Name = 'ss1_rd1_39' }, - ['-1987665603'] = { Name = 'ss1_rd1_40' }, - ['1211230595'] = { Name = 'ss1_rd1_40b' }, - ['-1177812545'] = { Name = 'ss1_rd1_42' }, - ['-403415537'] = { Name = 'ss1_rd1_43' }, - ['791962165'] = { Name = 'ss1_rd1_hedge001' }, - ['1560133063'] = { Name = 'ss1_rd1_hedge002' }, - ['817718595'] = { Name = 'ss1_rd1_hedge003' }, - ['511885518'] = { Name = 'ss1_rd1_hedge004' }, - ['340241496'] = { Name = 'ss1_rd1_hedge005' }, - ['101060565'] = { Name = 'ss1_rd1_hedge006' }, - ['-105253059'] = { Name = 'ss1_rd1_hedge007' }, - ['-405056640'] = { Name = 'ss1_rd1_hedge008' }, - ['-584171994'] = { Name = 'ss1_rd1_hedge009' }, - ['-505821651'] = { Name = 'ss1_rd1_hedge010' }, - ['893152497'] = { Name = 'ss1_rd1_hedge011' }, - ['106204962'] = { Name = 'ss1_rd1_hedge012' }, - ['-916384456'] = { Name = 'ss1_rd1_hedge013' }, - ['1346425877'] = { Name = 'ss1_rd1_median1' }, - ['-954957053'] = { Name = 'ss1_rd1_median1decals' }, - ['-305131723'] = { Name = 'ss1_rd1_median2' }, - ['1564774471'] = { Name = 'ss1_rd1_median2decals' }, - ['395207345'] = { Name = 'ss1_rd1_median3' }, - ['-2073374120'] = { Name = 'ss1_rd1_median3decals' }, - ['-542497523'] = { Name = 'ss1_rd1_ovly01' }, - ['-840203888'] = { Name = 'ss1_rd1_ovly02' }, - ['55372882'] = { Name = 'ss1_rd1_ovly03' }, - ['-241481489'] = { Name = 'ss1_rd1_ovly04' }, - ['360812703'] = { Name = 'ss1_rd1_ovly05' }, - ['666055938'] = { Name = 'ss1_rd1_ovly06' }, - ['965105832'] = { Name = 'ss1_rd1_ovly07' }, - ['1263860805'] = { Name = 'ss1_rd1_ovly08' }, - ['1326646209'] = { Name = 'ss1_rd1_ovly09' }, - ['1414105230'] = { Name = 'ss1_rd1_ovly10' }, - ['1259992631'] = { Name = 'ss1_rd1_ovly11' }, - ['963269336'] = { Name = 'ss1_rd1_ovly12' }, - ['647310638'] = { Name = 'ss1_rd1_ovly13' }, - ['350259653'] = { Name = 'ss1_rd1_ovly14' }, - ['-880314612'] = { Name = 'ss1_rd1_ovly15' }, - ['-581002566'] = { Name = 'ss1_rd1_ovly16' }, - ['-268058616'] = { Name = 'ss1_rd1_ovly17' }, - ['30892971'] = { Name = 'ss1_rd1_ovly18' }, - ['-2094930366'] = { Name = 'ss1_rd1_ovly19' }, - ['2071845494'] = { Name = 'ss1_rd1_ovly20' }, - ['-76522919'] = { Name = 'ss1_rd1_ovly21' }, - ['230031076'] = { Name = 'ss1_rd1_ovly22' }, - ['-671837342'] = { Name = 'ss1_rd1_ovly23' }, - ['-364693505'] = { Name = 'ss1_rd1_ovly24' }, - ['-1290876537'] = { Name = 'ss1_rd1_ovly25' }, - ['-989827734'] = { Name = 'ss1_rd1_ovly26' }, - ['-1901526852'] = { Name = 'ss1_rd1_ovly27' }, - ['-1605131247'] = { Name = 'ss1_rd1_ovly28' }, - ['569321294'] = { Name = 'ss1_rd1_ovly29' }, - ['-1259581270'] = { Name = 'ss1_rd1_ovly32' }, - ['-936184009'] = { Name = 'ss1_rd1_ovly33' }, - ['1516706721'] = { Name = 'ss1_rd1_ovly34' }, - ['-1706091672'] = { Name = 'ss1_rd1_ovly35' }, - ['-1411629438'] = { Name = 'ss1_rd1_ovly36' }, - ['-1390591740'] = { Name = 'ss1_rd1_ovly37' }, - ['-1082595909'] = { Name = 'ss1_rd1_ovly38' }, - ['1065444818'] = { Name = 'ss1_rd1_ovly39' }, - ['151911364'] = { Name = 'ss1_rd1_ovly40' }, - ['1365228070'] = { Name = 'ss1_rd1_props_busroof01' }, - ['-1552621441'] = { Name = 'ss1_rd1_props_cbl_x_' }, - ['192100189'] = { Name = 'ss1_rd1_props_cbl_x_01' }, - ['422105800'] = { Name = 'ss1_rd1_props_cbl_x_02' }, - ['-435262316'] = { Name = 'ss1_rd1_props_cbl_x_03' }, - ['-203618255'] = { Name = 'ss1_rd1_props_cbl_x_04' }, - ['1449282758'] = { Name = 'ss1_rd1_props_cbl_x_05' }, - ['1143515219'] = { Name = 'ss1_rd1_props_cbl_x_06' }, - ['2076645263'] = { Name = 'ss1_rd1_props_cbl_x_07' }, - ['1773433706'] = { Name = 'ss1_rd1_props_cbl_x_08' }, - ['212384084'] = { Name = 'ss1_rd1_props_cbl_x_09' }, - ['142520912'] = { Name = 'ss1_rd1_props_cbl_x_10' }, - ['-1014188431'] = { Name = 'ss1_rd1_props_cbl_x_100' }, - ['545779814'] = { Name = 'ss1_rd1_props_cbl_x_101' }, - ['840471427'] = { Name = 'ss1_rd1_props_cbl_x_102' }, - ['87243197'] = { Name = 'ss1_rd1_props_cbl_x_103' }, - ['381213896'] = { Name = 'ss1_rd1_props_cbl_x_104' }, - ['1874988757'] = { Name = 'ss1_rd1_props_cbl_x_105' }, - ['2033459641'] = { Name = 'ss1_rd1_props_cbl_x_106' }, - ['1146042352'] = { Name = 'ss1_rd1_props_cbl_x_107' }, - ['1577085778'] = { Name = 'ss1_rd1_props_cbl_x_108' }, - ['-1443495104'] = { Name = 'ss1_rd1_props_cbl_x_109' }, - ['-968675878'] = { Name = 'ss1_rd1_props_cbl_x_11' }, - ['1572040184'] = { Name = 'ss1_rd1_props_cbl_x_110' }, - ['536474258'] = { Name = 'ss1_rd1_props_cbl_x_111' }, - ['304961273'] = { Name = 'ss1_rd1_props_cbl_x_112' }, - ['95895053'] = { Name = 'ss1_rd1_props_cbl_x_113' }, - ['-259910749'] = { Name = 'ss1_rd1_props_cbl_x_114' }, - ['-633182428'] = { Name = 'ss1_rd1_props_cbl_x_115' }, - ['-926170057'] = { Name = 'ss1_rd1_props_cbl_x_116' }, - ['1194475870'] = { Name = 'ss1_rd1_props_cbl_x_117' }, - ['1540582048'] = { Name = 'ss1_rd1_props_cbl_x_118' }, - ['1973362231'] = { Name = 'ss1_rd1_props_cbl_x_119' }, - ['-736835203'] = { Name = 'ss1_rd1_props_cbl_x_12' }, - ['1890128643'] = { Name = 'ss1_rd1_props_cbl_x_120' }, - ['682885914'] = { Name = 'ss1_rd1_props_cbl_x_121' }, - ['981116583'] = { Name = 'ss1_rd1_props_cbl_x_122' }, - ['208358037'] = { Name = 'ss1_rd1_props_cbl_x_123' }, - ['396714249'] = { Name = 'ss1_rd1_props_cbl_x_124' }, - ['-274296564'] = { Name = 'ss1_rd1_props_cbl_x_125' }, - ['22623345'] = { Name = 'ss1_rd1_props_cbl_x_126' }, - ['-751445973'] = { Name = 'ss1_rd1_props_cbl_x_127' }, - ['-445416282'] = { Name = 'ss1_rd1_props_cbl_x_128' }, - ['-1233609039'] = { Name = 'ss1_rd1_props_cbl_x_129' }, - ['202783195'] = { Name = 'ss1_rd1_props_cbl_x_13' }, - ['235519794'] = { Name = 'ss1_rd1_props_cbl_x_130' }, - ['-619456185'] = { Name = 'ss1_rd1_props_cbl_x_131' }, - ['-376637895'] = { Name = 'ss1_rd1_props_cbl_x_132' }, - ['-983716389'] = { Name = 'ss1_rd1_props_cbl_x_133' }, - ['-1825584776'] = { Name = 'ss1_rd1_props_cbl_x_134' }, - ['503635384'] = { Name = 'ss1_rd1_props_cbl_x_14' }, - ['863734041'] = { Name = 'ss1_rd1_props_cbl_x_140' }, - ['-1434814671'] = { Name = 'ss1_rd1_props_cbl_x_141' }, - ['2025034660'] = { Name = 'ss1_rd1_props_cbl_x_142' }, - ['-2062177176'] = { Name = 'ss1_rd1_props_cbl_x_143' }, - ['1397213389'] = { Name = 'ss1_rd1_props_cbl_x_144' }, - ['1636099399'] = { Name = 'ss1_rd1_props_cbl_x_145' }, - ['801767890'] = { Name = 'ss1_rd1_props_cbl_x_146' }, - ['481418146'] = { Name = 'ss1_rd1_props_cbl_x_147' }, - ['709883614'] = { Name = 'ss1_rd1_props_cbl_x_148' }, - ['396185965'] = { Name = 'ss1_rd1_props_cbl_x_149' }, - ['-801029582'] = { Name = 'ss1_rd1_props_cbl_x_15' }, - ['519749440'] = { Name = 'ss1_rd1_props_cbl_x_150' }, - ['-700142123'] = { Name = 'ss1_rd1_props_cbl_x_153' }, - ['-1078492997'] = { Name = 'ss1_rd1_props_cbl_x_154' }, - ['-1316428706'] = { Name = 'ss1_rd1_props_cbl_x_155' }, - ['-1418405834'] = { Name = 'ss1_rd1_props_cbl_x_156' }, - ['-1092518133'] = { Name = 'ss1_rd1_props_cbl_x_157' }, - ['-1464970587'] = { Name = 'ss1_rd1_props_cbl_x_158' }, - ['-1703692752'] = { Name = 'ss1_rd1_props_cbl_x_159' }, - ['-489232547'] = { Name = 'ss1_rd1_props_cbl_x_16' }, - ['1293327139'] = { Name = 'ss1_rd1_props_cbl_x_160' }, - ['543932738'] = { Name = 'ss1_rd1_props_cbl_x_161' }, - ['314451431'] = { Name = 'ss1_rd1_props_cbl_x_162' }, - ['-46662949'] = { Name = 'ss1_rd1_props_cbl_x_163' }, - ['-276996250'] = { Name = 'ss1_rd1_props_cbl_x_164' }, - ['-645254272'] = { Name = 'ss1_rd1_props_cbl_x_165' }, - ['-942108643'] = { Name = 'ss1_rd1_props_cbl_x_166' }, - ['-1173293938'] = { Name = 'ss1_rd1_props_cbl_x_167' }, - ['-1534998160'] = { Name = 'ss1_rd1_props_cbl_x_168' }, - ['-1231327841'] = { Name = 'ss1_rd1_props_cbl_x_169' }, - ['-1256420375'] = { Name = 'ss1_rd1_props_cbl_x_17' }, - ['-418295158'] = { Name = 'ss1_rd1_props_cbl_x_170' }, - ['-43024570'] = { Name = 'ss1_rd1_props_cbl_x_171' }, - ['-878404687'] = { Name = 'ss1_rd1_props_cbl_x_172' }, - ['503201891'] = { Name = 'ss1_rd1_props_cbl_x_173' }, - ['870149153'] = { Name = 'ss1_rd1_props_cbl_x_174' }, - ['54954740'] = { Name = 'ss1_rd1_props_cbl_x_175' }, - ['411612536'] = { Name = 'ss1_rd1_props_cbl_x_176' }, - ['128783301'] = { Name = 'ss1_rd1_props_cbl_x_177' }, - ['487734927'] = { Name = 'ss1_rd1_props_cbl_x_178' }, - ['1883366637'] = { Name = 'ss1_rd1_props_cbl_x_179' }, - ['-955961414'] = { Name = 'ss1_rd1_props_cbl_x_18' }, - ['584894656'] = { Name = 'ss1_rd1_props_cbl_x_180' }, - ['667996844'] = { Name = 'ss1_rd1_props_cbl_x_181' }, - ['1517271017'] = { Name = 'ss1_rd1_props_cbl_x_182' }, - ['1228805510'] = { Name = 'ss1_rd1_props_cbl_x_183' }, - ['2105835026'] = { Name = 'ss1_rd1_props_cbl_x_184' }, - ['1585725458'] = { Name = 'ss1_rd1_props_cbl_x_185' }, - ['-1841354873'] = { Name = 'ss1_rd1_props_cbl_x_186' }, - ['-2090333735'] = { Name = 'ss1_rd1_props_cbl_x_187' }, - ['-1255543460'] = { Name = 'ss1_rd1_props_cbl_x_188' }, - ['2127593646'] = { Name = 'ss1_rd1_props_cbl_x_189' }, - ['-1719544660'] = { Name = 'ss1_rd1_props_cbl_x_19' }, - ['2119238491'] = { Name = 'ss1_rd1_props_cbl_x_190' }, - ['-290233314'] = { Name = 'ss1_rd1_props_cbl_x_191' }, - ['-380675754'] = { Name = 'ss1_rd1_props_cbl_x_192' }, - ['-716885694'] = { Name = 'ss1_rd1_props_cbl_x_193' }, - ['-947218995'] = { Name = 'ss1_rd1_props_cbl_x_194' }, - ['1571937709'] = { Name = 'ss1_rd1_props_cbl_x_20' }, - ['1195290827'] = { Name = 'ss1_rd1_props_cbl_x_21' }, - ['419419214'] = { Name = 'ss1_rd1_props_cbl_x_22' }, - ['1805875604'] = { Name = 'ss1_rd1_props_cbl_x_23' }, - ['1029283073'] = { Name = 'ss1_rd1_props_cbl_x_24' }, - ['4661981'] = { Name = 'ss1_rd1_props_cbl_x_25' }, - ['-340264513'] = { Name = 'ss1_rd1_props_cbl_x_26' }, - ['610134794'] = { Name = 'ss1_rd1_props_cbl_x_27' }, - ['-162525457'] = { Name = 'ss1_rd1_props_cbl_x_28' }, - ['-1164863641'] = { Name = 'ss1_rd1_props_cbl_x_29' }, - ['-1781676412'] = { Name = 'ss1_rd1_props_cbl_x_30' }, - ['1865447754'] = { Name = 'ss1_rd1_props_cbl_x_31' }, - ['1095736713'] = { Name = 'ss1_rd1_props_cbl_x_32' }, - ['-627781607'] = { Name = 'ss1_rd1_props_cbl_x_33' }, - ['-321686378'] = { Name = 'ss1_rd1_props_cbl_x_34' }, - ['-1444286788'] = { Name = 'ss1_rd1_props_cbl_x_35' }, - ['-1941720208'] = { Name = 'ss1_rd1_props_cbl_x_36' }, - ['-1257143025'] = { Name = 'ss1_rd1_props_cbl_x_37' }, - ['-943543695'] = { Name = 'ss1_rd1_props_cbl_x_38' }, - ['372295768'] = { Name = 'ss1_rd1_props_cbl_x_41' }, - ['677866693'] = { Name = 'ss1_rd1_props_cbl_x_42' }, - ['-1296203405'] = { Name = 'ss1_rd1_props_cbl_x_43' }, - ['-993319538'] = { Name = 'ss1_rd1_props_cbl_x_44' }, - ['60498729'] = { Name = 'ss1_rd1_props_cbl_x_45' }, - ['1440040860'] = { Name = 'ss1_rd1_props_cbl_x_46' }, - ['507566196'] = { Name = 'ss1_rd1_props_cbl_x_47' }, - ['813923577'] = { Name = 'ss1_rd1_props_cbl_x_48' }, - ['1216687356'] = { Name = 'ss1_rd1_props_cbl_x_49' }, - ['-1136945753'] = { Name = 'ss1_rd1_props_cbl_x_50' }, - ['-1566842272'] = { Name = 'ss1_rd1_props_cbl_x_51' }, - ['-1595810068'] = { Name = 'ss1_rd1_props_cbl_x_52' }, - ['-724744506'] = { Name = 'ss1_rd1_props_cbl_x_53' }, - ['45687453'] = { Name = 'ss1_rd1_props_cbl_x_54' }, - ['-1192587519'] = { Name = 'ss1_rd1_props_cbl_x_55' }, - ['-408589194'] = { Name = 'ss1_rd1_props_cbl_x_56' }, - ['463393896'] = { Name = 'ss1_rd1_props_cbl_x_57' }, - ['1236316299'] = { Name = 'ss1_rd1_props_cbl_x_58' }, - ['400695'] = { Name = 'ss1_rd1_props_cbl_x_59' }, - ['1223176182'] = { Name = 'ss1_rd1_props_cbl_x_60' }, - ['-1487770427'] = { Name = 'ss1_rd1_props_cbl_x_61' }, - ['-1731473480'] = { Name = 'ss1_rd1_props_cbl_x_62' }, - ['-1964002304'] = { Name = 'ss1_rd1_props_cbl_x_63' }, - ['2100664460'] = { Name = 'ss1_rd1_props_cbl_x_64' }, - ['-5759625'] = { Name = 'ss1_rd1_props_cbl_x_65' }, - ['-773930523'] = { Name = 'ss1_rd1_props_cbl_x_66' }, - ['-994629738'] = { Name = 'ss1_rd1_props_cbl_x_67' }, - ['-1241970150'] = { Name = 'ss1_rd1_props_cbl_x_68' }, - ['735966686'] = { Name = 'ss1_rd1_props_cbl_x_69' }, - ['452152401'] = { Name = 'ss1_rd1_props_cbl_x_70' }, - ['197963268'] = { Name = 'ss1_rd1_props_cbl_x_71' }, - ['-97121577'] = { Name = 'ss1_rd1_props_cbl_x_72' }, - ['2109346269'] = { Name = 'ss1_rd1_props_cbl_x_73' }, - ['-208142949'] = { Name = 'ss1_rd1_props_cbl_x_74' }, - ['-521840586'] = { Name = 'ss1_rd1_props_cbl_x_75' }, - ['-1216674462'] = { Name = 'ss1_rd1_props_cbl_x_76' }, - ['1051104187'] = { Name = 'ss1_rd1_props_cbl_x_79' }, - ['-1055155797'] = { Name = 'ss1_rd1_props_cbl_x_80' }, - ['-1774566427'] = { Name = 'ss1_rd1_props_cbl_x_83' }, - ['-1972884415'] = { Name = 'ss1_rd1_props_cbl_x_84' }, - ['-288164603'] = { Name = 'ss1_rd1_props_cbl_x_85' }, - ['-1986188649'] = { Name = 'ss1_rd1_props_cbl_x_86' }, - ['-1689137664'] = { Name = 'ss1_rd1_props_cbl_x_87' }, - ['-1509432468'] = { Name = 'ss1_rd1_props_cbl_x_88' }, - ['-181632236'] = { Name = 'ss1_rd1_props_cbl_x_94' }, - ['1682170177'] = { Name = 'ss1_rd1_props_cbl_x_95' }, - ['1495452415'] = { Name = 'ss1_rd1_props_cbl_x_96' }, - ['-830556743'] = { Name = 'ss1_rd1_props_cbl_x_97' }, - ['-1133571686'] = { Name = 'ss1_rd1_props_cbl_x_98' }, - ['833747998'] = { Name = 'ss1_rd1_props_cbl_x_99' }, - ['-1260892981'] = { Name = 'ss1_rd1_props_hv00' }, - ['-1029379996'] = { Name = 'ss1_rd1_props_hv01' }, - ['-1891991152'] = { Name = 'ss1_rd1_props_hv02' }, - ['-1385251336'] = { Name = 'ss1_rd1_props_hv03' }, - ['402043401'] = { Name = 'ss1_rd1_ssrd_fur00' }, - ['-474396273'] = { Name = 'ss1_rd1_ssrd_fur01' }, - ['-243112671'] = { Name = 'ss1_rd1_ssrd_fur02' }, - ['1868488920'] = { Name = 'ss1_rd1_ssrd_fur03' }, - ['1563475068'] = { Name = 'ss1_rd1_ssrd_fur04' }, - ['752802777'] = { Name = 'ss1_rd1_ssrd_fur05' }, - ['978187959'] = { Name = 'ss1_rd1_ssrd_fur06' }, - ['-1208323570'] = { Name = 'ss1_rd1_ssrd_fur07' }, - ['-2082076186'] = { Name = 'ss1_rd1_ssrd_fur08' }, - ['-1858591606'] = { Name = 'ss1_rd1_ssrd_fur09' }, - ['-542785400'] = { Name = 'ss1_rd1_ssrd_fur10' }, - ['1823660704'] = { Name = 'ss1_rd1_ssrd_fur11' }, - ['1531754452'] = { Name = 'ss1_rd1_ssrd_fur12' }, - ['1217532511'] = { Name = 'ss1_rd1_ssrd_fur13' }, - ['651218653'] = { Name = 'ss1_rd1_ssrd_fur14' }, - ['-1547810634'] = { Name = 'ss1_rd1_ssrd_fur15' }, - ['-1847319294'] = { Name = 'ss1_rd1_ssrd_fur16' }, - ['-1897652478'] = { Name = 'ss1_rd1_ssrd_fur17' }, - ['2101246903'] = { Name = 'ss1_rd1_ssrd_fur18' }, - ['-91589043'] = { Name = 'ss1_rd1_ssrd_fur19' }, - ['1840600785'] = { Name = 'ss1_rd1_ssrd_fur20' }, - ['-1570095046'] = { Name = 'ss1_rd1_ssrd_fur21' }, - ['1509121284'] = { Name = 'ss1_rd1_xfur00' }, - ['1202305137'] = { Name = 'ss1_rd1_xfur01' }, - ['1704129599'] = { Name = 'ss1_rd1_xfur02' }, - ['1405898930'] = { Name = 'ss1_rd1_xfur03' }, - ['180010644'] = { Name = 'ss1_rd1_xfur04' }, - ['-134407911'] = { Name = 'ss1_rd1_xfur05' }, - ['524642217'] = { Name = 'ss1_rd1_xfur06' }, - ['209895972'] = { Name = 'ss1_rd1_xfur07' }, - ['-1075762974'] = { Name = 'ss1_rd1_xfur08' }, - ['-1322808465'] = { Name = 'ss1_rd1_xfur09' }, - ['-1851372691'] = { Name = 'ss1_rd1_xfur10' }, - ['2131961415'] = { Name = 'ss1_rd1_xfur11' }, - ['906695736'] = { Name = 'ss1_rd1_xfur12' }, - ['-1549930660'] = { Name = 'ss1_rd1_xfur13' }, - ['1923400478'] = { Name = 'stalion' }, - ['-401643538'] = { Name = 'stalion2' }, - ['-1477580979'] = { Name = 'stanier' }, - ['-403758991'] = { Name = 'stickons' }, - ['1545842587'] = { Name = 'stinger' }, - ['-2098947590'] = { Name = 'stingergt' }, - ['1747439474'] = { Name = 'stockade' }, - ['-214455498'] = { Name = 'stockade3' }, - ['1723137093'] = { Name = 'stratum' }, - ['-1961627517'] = { Name = 'stretch' }, - ['-2122757008'] = { Name = 'stunt' }, - ['1706375705'] = { Name = 'sub_01_shb' }, - ['-1797633475'] = { Name = 'sub_04_sb' }, - ['417531182'] = { Name = 'sub_6_add_002' }, - ['1196089853'] = { Name = 'sub_6_add_003' }, - ['-391470130'] = { Name = 'sub_6_add_004' }, - ['-1243942856'] = { Name = 'sub_6_add_01' }, - ['-853989986'] = { Name = 'sub1_add_002' }, - ['50729335'] = { Name = 'sub1_add_003' }, - ['951352531'] = { Name = 'sub1_add_004' }, - ['1852205114'] = { Name = 'sub1_add_005' }, - ['1609878359'] = { Name = 'sub1_add_006' }, - ['1308600173'] = { Name = 'sub1_add_007' }, - ['1002504944'] = { Name = 'sub1_add_008' }, - ['1155736732'] = { Name = 'sub1_add_01' }, - ['-153407593'] = { Name = 'sub2_brandadd_002' }, - ['51955730'] = { Name = 'sub2_brandadd_003' }, - ['298181996'] = { Name = 'sub2_brandadd_004' }, - ['-1850645179'] = { Name = 'sub2_brandadd_005' }, - ['-1102856599'] = { Name = 'sub2_brandadd_006' }, - ['-863151364'] = { Name = 'sub2_brandadd_007' }, - ['-625445038'] = { Name = 'sub2_brandadd_008' }, - ['1427270664'] = { Name = 'sub2_brandadd_009' }, - ['-1329991983'] = { Name = 'sub2_brandadd_01' }, - ['-758781827'] = { Name = 'sub2_brandadd_010' }, - ['-1049049629'] = { Name = 'sub2_brandadd_011' }, - ['-280845962'] = { Name = 'sub2_brandadd_012' }, - ['1210651510'] = { Name = 'sub2ceiling_bits1' }, - ['1357043772'] = { Name = 'sub2walktext1' }, - ['-2130566113'] = { Name = 'sub3_reflectonly' }, - ['-1591921606'] = { Name = 'sub3_sb' }, - ['1629821265'] = { Name = 'sub3doors' }, - ['-1384399218'] = { Name = 'sub3wall_pans' }, - ['-1995425518'] = { Name = 'sub4_adds_002' }, - ['-1689068137'] = { Name = 'sub4_adds_003' }, - ['-1649614261'] = { Name = 'sub4_adds_004' }, - ['805668606'] = { Name = 'sub4_adds_005' }, - ['1110223692'] = { Name = 'sub4_adds_006' }, - ['-25932406'] = { Name = 'sub4_adds_01' }, - ['-377486242'] = { Name = 'sub4ceiling_bits1' }, - ['1772374739'] = { Name = 'sub4ceiling_bitsblergh' }, - ['519120503'] = { Name = 'sub5_signage1' }, - ['625214924'] = { Name = 'sub5ad_decals1' }, - ['-1702662071'] = { Name = 'sub5ad_decals2' }, - ['-748344549'] = { Name = 'sub5ceiling_bits1' }, - ['-978219084'] = { Name = 'sub5ceiling_bits2' }, - ['586083911'] = { Name = 'sub5doors1' }, - ['-335062999'] = { Name = 'sub5mirror_flr1' }, - ['-35128342'] = { Name = 'sub5mirror_flr2' }, - ['-740277011'] = { Name = 'sub5overlay1' }, - ['1619287607'] = { Name = 'sub5overlay2' }, - ['81953595'] = { Name = 'sub5panels1' }, - ['794991514'] = { Name = 'sub5pipes1' }, - ['1630830397'] = { Name = 'sub5pipes2' }, - ['1676941747'] = { Name = 'sub5wallbits1' }, - ['-1424840709'] = { Name = 'sub5wallbits2' }, - ['771711535'] = { Name = 'submersible' }, - ['-1066334226'] = { Name = 'submersible2' }, - ['2012211539'] = { Name = 'subway1_ceilingbits1' }, - ['1750878764'] = { Name = 'subway1_ceilingbits2' }, - ['-1665420704'] = { Name = 'subway1_mirror2' }, - ['1983101791'] = { Name = 'subway2_brandingtext002' }, - ['-2022023700'] = { Name = 'subway2_brandingtext003' }, - ['-1748697471'] = { Name = 'subway2_brandingtext004' }, - ['-1696135995'] = { Name = 'subway2_brandingtext005' }, - ['516086926'] = { Name = 'subway2_brandingtext1' }, - ['-185755532'] = { Name = 'subway2_dirt1' }, - ['-1719442365'] = { Name = 'subway2_panels1' }, - ['1248083080'] = { Name = 'subway2mirroflr1' }, - ['-631246063'] = { Name = 'subway2mirroflrlow' }, - ['250304836'] = { Name = 'subway3_mir' }, - ['1995637998'] = { Name = 'subway4logo1' }, - ['866435659'] = { Name = 'subway4mirrorflr1' }, - ['-735084042'] = { Name = 'subway4text2' }, - ['970598228'] = { Name = 'sultan' }, - ['-295689028'] = { Name = 'sultanrs' }, - ['-282946103'] = { Name = 'suntrap' }, - ['1123216662'] = { Name = 'superd' }, - ['710198397'] = { Name = 'supervolito' }, - ['-1671539132'] = { Name = 'supervolito2' }, - ['384071873'] = { Name = 'surano' }, - ['699456151'] = { Name = 'surfer' }, - ['-1311240698'] = { Name = 'surfer2' }, - ['-1894894188'] = { Name = 'surge' }, - ['-657696971'] = { Name = 'suway3pipes' }, - ['-339587598'] = { Name = 'swift' }, - ['1075432268'] = { Name = 'swift2' }, - ['1663218586'] = { Name = 't20' }, - ['1951180813'] = { Name = 'taco' }, - ['-1008861746'] = { Name = 'tailgater' }, - ['972671128'] = { Name = 'tampa' }, - ['-1071380347'] = { Name = 'tampa2' }, - ['-730904777'] = { Name = 'tanker' }, - ['1956216962'] = { Name = 'tanker2' }, - ['586013744'] = { Name = 'tankercar' }, - ['-956048545'] = { Name = 'taxi' }, - ['-2096818938'] = { Name = 'technical' }, - ['1180875963'] = { Name = 'technical2' }, - ['272929391'] = { Name = 'tempesta' }, - ['314192305'] = { Name = 'test_prop_gravestones_01a' }, - ['-1573887677'] = { Name = 'test_prop_gravestones_02a' }, - ['-1829121346'] = { Name = 'test_prop_gravestones_04a' }, - ['865506001'] = { Name = 'test_prop_gravestones_05a' }, - ['838307155'] = { Name = 'test_prop_gravestones_07a' }, - ['-373490769'] = { Name = 'test_prop_gravestones_08a' }, - ['-1507101831'] = { Name = 'test_prop_gravestones_09a' }, - ['-132218202'] = { Name = 'test_prop_gravetomb_01a' }, - ['1294871464'] = { Name = 'test_prop_gravetomb_02a' }, - ['1827343468'] = { Name = 'test_tree_cedar_trunk_001' }, - ['1239708330'] = { Name = 'test_tree_forest_trunk_01' }, - ['-284640012'] = { Name = 'test_tree_forest_trunk_04' }, - ['-1608076682'] = { Name = 'test_tree_forest_trunk_base_01' }, - ['-359103520'] = { Name = 'test_tree_forest_trunk_fall_01' }, - ['1836027715'] = { Name = 'thrust' }, - ['48339065'] = { Name = 'tiptruck' }, - ['-947761570'] = { Name = 'tiptruck2' }, - ['1981688531'] = { Name = 'titan' }, - ['-1064362163'] = { Name = 'to_be_swapped' }, - ['464687292'] = { Name = 'tornado' }, - ['1531094468'] = { Name = 'tornado2' }, - ['1762279763'] = { Name = 'tornado3' }, - ['-2033222435'] = { Name = 'tornado4' }, - ['-1797613329'] = { Name = 'tornado5' }, - ['-1558399629'] = { Name = 'tornado6' }, - ['1070967343'] = { Name = 'toro' }, - ['908897389'] = { Name = 'toro2' }, - ['1941029835'] = { Name = 'tourbus' }, - ['-1323100960'] = { Name = 'towtruck' }, - ['-442313018'] = { Name = 'towtruck2' }, - ['2078290630'] = { Name = 'tr2' }, - ['1784254509'] = { Name = 'tr3' }, - ['2091594960'] = { Name = 'tr4' }, - ['1641462412'] = { Name = 'tractor' }, - ['-2076478498'] = { Name = 'tractor2' }, - ['1445631933'] = { Name = 'tractor3' }, - ['2016027501'] = { Name = 'trailerlogs' }, - ['-877478386'] = { Name = 'trailers' }, - ['-1579533167'] = { Name = 'trailers2' }, - ['-2058878099'] = { Name = 'trailers3' }, - ['712162987'] = { Name = 'trailersmall' }, - ['1917016601'] = { Name = 'trash' }, - ['-1255698084'] = { Name = 'trash2' }, - ['-1352468814'] = { Name = 'trflat' }, - ['1127861609'] = { Name = 'tribike' }, - ['-1233807380'] = { Name = 'tribike2' }, - ['-400295096'] = { Name = 'tribike3' }, - ['101905590'] = { Name = 'trophytruck' }, - ['-663299102'] = { Name = 'trophytruck2' }, - ['290013743'] = { Name = 'tropic' }, - ['1448677353'] = { Name = 'tropic2' }, - ['1887331236'] = { Name = 'tropos' }, - ['-2100640717'] = { Name = 'tug' }, - ['-982130927'] = { Name = 'turismo2' }, - ['408192225'] = { Name = 'turismor' }, - ['-1770643266'] = { Name = 'tvtrailer' }, - ['2067820283'] = { Name = 'tyrus' }, - ['773063444'] = { Name = 'u_f_m_corpse_01' }, - ['-671910391'] = { Name = 'u_f_m_drowned_01' }, - ['1095737979'] = { Name = 'u_f_m_miranda' }, - ['-1576494617'] = { Name = 'u_f_m_promourn_01' }, - ['894928436'] = { Name = 'u_f_o_moviestar' }, - ['-988619485'] = { Name = 'u_f_o_prolhost_01' }, - ['-96953009'] = { Name = 'u_f_y_bikerchic' }, - ['-1230338610'] = { Name = 'u_f_y_comjane' }, - ['-1670377315'] = { Name = 'u_f_y_corpse_01' }, - ['228356856'] = { Name = 'u_f_y_corpse_02' }, - ['-1768198658'] = { Name = 'u_f_y_hotposh_01' }, - ['-254493138'] = { Name = 'u_f_y_jewelass_01' }, - ['1573528872'] = { Name = 'u_f_y_mistress' }, - ['602513566'] = { Name = 'u_f_y_poppymich' }, - ['-756833660'] = { Name = 'u_f_y_princess' }, - ['1535236204'] = { Name = 'u_f_y_spyactress' }, - ['-252946718'] = { Name = 'u_m_m_aldinapoli' }, - ['-1022961931'] = { Name = 'u_m_m_bankman' }, - ['1984382277'] = { Name = 'u_m_m_bikehire_01' }, - ['1646160893'] = { Name = 'u_m_m_doa_01' }, - ['712602007'] = { Name = 'u_m_m_edtoh' }, - ['874722259'] = { Name = 'u_m_m_fibarchitect' }, - ['728636342'] = { Name = 'u_m_m_filmdirector' }, - ['1169888870'] = { Name = 'u_m_m_glenstank_01' }, - ['-1001079621'] = { Name = 'u_m_m_griff_01' }, - ['-835930287'] = { Name = 'u_m_m_jesus_01' }, - ['-1395868234'] = { Name = 'u_m_m_jewelsec_01' }, - ['-422822692'] = { Name = 'u_m_m_jewelthief' }, - ['479578891'] = { Name = 'u_m_m_markfost' }, - ['-2114499097'] = { Name = 'u_m_m_partytarget' }, - ['1888624839'] = { Name = 'u_m_m_prolsec_01' }, - ['-829029621'] = { Name = 'u_m_m_promourn_01' }, - ['1624626906'] = { Name = 'u_m_m_rivalpap' }, - ['-1408326184'] = { Name = 'u_m_m_spyactor' }, - ['1813637474'] = { Name = 'u_m_m_streetart_01' }, - ['-1871275377'] = { Name = 'u_m_m_willyfist' }, - ['732742363'] = { Name = 'u_m_o_filmnoir' }, - ['1189322339'] = { Name = 'u_m_o_finguru_01' }, - ['-1709285806'] = { Name = 'u_m_o_taphillbilly' }, - ['1787764635'] = { Name = 'u_m_o_tramp_01' }, - ['-257153498'] = { Name = 'u_m_y_abner' }, - ['-815646164'] = { Name = 'u_m_y_antonb' }, - ['-636391810'] = { Name = 'u_m_y_babyd' }, - ['1380197501'] = { Name = 'u_m_y_baygor' }, - ['-1954728090'] = { Name = 'u_m_y_burgerdrug_01' }, - ['610290475'] = { Name = 'u_m_y_chip' }, - ['755956971'] = { Name = 'u_m_y_cyclist_01' }, - ['-2051422616'] = { Name = 'u_m_y_fibmugger_01' }, - ['-961242577'] = { Name = 'u_m_y_guido_01' }, - ['-1289578670'] = { Name = 'u_m_y_gunvend_01' }, - ['-264140789'] = { Name = 'u_m_y_hippie_01' }, - ['880829941'] = { Name = 'u_m_y_imporage' }, - ['2109968527'] = { Name = 'u_m_y_justin' }, - ['-927261102'] = { Name = 'u_m_y_mani' }, - ['1191548746'] = { Name = 'u_m_y_militarybum' }, - ['1346941736'] = { Name = 'u_m_y_paparazzi' }, - ['921110016'] = { Name = 'u_m_y_party_01' }, - ['-598109171'] = { Name = 'u_m_y_pogo_01' }, - ['2073775040'] = { Name = 'u_m_y_prisoner_01' }, - ['-2057423197'] = { Name = 'u_m_y_proldriver_01' }, - ['1011059922'] = { Name = 'u_m_y_rsranger_01' }, - ['1794381917'] = { Name = 'u_m_y_sbike' }, - ['-1852518909'] = { Name = 'u_m_y_staggrm_01' }, - ['-1800524916'] = { Name = 'u_m_y_tattoo_01' }, - ['-1404353274'] = { Name = 'u_m_y_zombie_01' }, - ['-1049233832'] = { Name = 'urbandryfrnds_01' }, - ['1982224326'] = { Name = 'urbandrygrass_01' }, - ['-1800661581'] = { Name = 'urbangrnfrnds_01' }, - ['671173206'] = { Name = 'urbangrngrass_01' }, - ['978689073'] = { Name = 'urbanweeds01_l1' }, - ['-525811767'] = { Name = 'urbanweeds01' }, - ['1830533141'] = { Name = 'urbanweeds02_l1' }, - ['100436592'] = { Name = 'urbanweeds02' }, - ['516990260'] = { Name = 'utillitruck' }, - ['887537515'] = { Name = 'utillitruck2' }, - ['2132890591'] = { Name = 'utillitruck3' }, - ['267118375'] = { Name = 'v_1_coils01' }, - ['1904847445'] = { Name = 'v_1_coils02' }, - ['-2085138768'] = { Name = 'v_1_coils03' }, - ['-1110424863'] = { Name = 'v_1_coils04' }, - ['-802822260'] = { Name = 'v_1_coils05' }, - ['838708030'] = { Name = 'v_1_coils06' }, - ['1535062819'] = { Name = 'v_1_dec_02' }, - ['-1234102084'] = { Name = 'v_1_door01' }, - ['-439715986'] = { Name = 'v_1_door02' }, - ['-756756061'] = { Name = 'v_1_door03' }, - ['886298911'] = { Name = 'v_1_duct02' }, - ['-1216490109'] = { Name = 'v_1_fd_crest' }, - ['-233563916'] = { Name = 'v_1_fdsm01' }, - ['186775436'] = { Name = 'v_1_floor_spec' }, - ['660022125'] = { Name = 'v_1_main_deta' }, - ['1677813156'] = { Name = 'v_1_mountedshelf' }, - ['1193576947'] = { Name = 'v_1_rails01' }, - ['-1461136400'] = { Name = 'v_1_shell' }, - ['153866875'] = { Name = 'v_1_vacuum003' }, - ['459896566'] = { Name = 'v_1_vacuum004' }, - ['144494953'] = { Name = 'v_1_vacuum005' }, - ['442135780'] = { Name = 'v_1_vacuum006' }, - ['-910308975'] = { Name = 'v_1_vacuum01' }, - ['503673375'] = { Name = 'v_1_vacuum02' }, - ['1423740420'] = { Name = 'v_10_baninbetbits' }, - ['-879871650'] = { Name = 'v_10_banker_tables' }, - ['651174116'] = { Name = 'v_10_bankinbetweendirt' }, - ['843317783'] = { Name = 'v_10_bankovers' }, - ['-1770878898'] = { Name = 'v_10_bckbnkdirt' }, - ['-671130313'] = { Name = 'v_10_boozeprices' }, - ['1917754936'] = { Name = 'v_10_fleecalogo' }, - ['-1044313957'] = { Name = 'v_10_fleecalogo2' }, - ['455109350'] = { Name = 'v_10_gan_bank_reflect' }, - ['-2094984685'] = { Name = 'v_10_gen_bankcounter' }, - ['-1621826475'] = { Name = 'v_10_gen_bnkvaultdetail' }, - ['-1266843692'] = { Name = 'v_10_gen_country_bank' }, - ['1563151887'] = { Name = 'v_10_gen_liq_reflect' }, - ['-89876203'] = { Name = 'v_10_genbank_bits' }, - ['1388521522'] = { Name = 'v_10_genbank_leaflets' }, - ['-513071989'] = { Name = 'v_10_genbank_rubbermat' }, - ['1237458198'] = { Name = 'v_10_genbankcounter' }, - ['869129040'] = { Name = 'v_10_genbanklights_01' }, - ['567224483'] = { Name = 'v_10_genbanktrim' }, - ['-716670247'] = { Name = 'v_10_gendepo_box01_lid' }, - ['1074372334'] = { Name = 'v_10_gendepo_box01' }, - ['1269359289'] = { Name = 'v_10_liqourceilingsigns' }, - ['1958517737'] = { Name = 'v_10_liquor_backdirt' }, - ['1025903659'] = { Name = 'v_10_liquor_counter' }, - ['-1722415101'] = { Name = 'v_10_liquoradposts' }, - ['-833856236'] = { Name = 'v_10_liquorbacktrim' }, - ['542020340'] = { Name = 'v_10_liquorbits1' }, - ['-1258479447'] = { Name = 'v_10_liquorboard' }, - ['1187816397'] = { Name = 'v_10_liquorboxads' }, - ['-575635765'] = { Name = 'v_10_liquorcellarbits' }, - ['-2081756346'] = { Name = 'v_10_liquordirt' }, - ['-1918850677'] = { Name = 'v_10_liquorestorebits' }, - ['1205623233'] = { Name = 'v_10_liquorfagdisplay' }, - ['520784046'] = { Name = 'v_10_liquorfloorshelves' }, - ['2129237178'] = { Name = 'v_10_liquornotes' }, - ['-601400119'] = { Name = 'v_10_liquorporn' }, - ['1585020000'] = { Name = 'v_10_liquorstore' }, - ['137684010'] = { Name = 'v_10_liquorstorebeerstacks' }, - ['726170109'] = { Name = 'v_10_liqurmat' }, - ['-540146049'] = { Name = 'v_10_liqyeltrim' }, - ['-1269442274'] = { Name = 'v_10_lquorbeerstackshope' }, - ['-534967432'] = { Name = 'v_10_price_note' }, - ['-338036873'] = { Name = 'v_10_shop_bits' }, - ['-1114380139'] = { Name = 'v_10_timshit' }, - ['585210042'] = { Name = 'v_10_weeroombits' }, - ['-1493049169'] = { Name = 'v_11__abbconang1' }, - ['-451223344'] = { Name = 'v_11__abbmetdoors' }, - ['280632055'] = { Name = 'v_11__abbprodover' }, - ['767119671'] = { Name = 'v_11_ab_dirty' }, - ['-639732560'] = { Name = 'v_11_ab_pipes' }, - ['1531872957'] = { Name = 'v_11_ab_pipes001' }, - ['-643038350'] = { Name = 'v_11_ab_pipes002' }, - ['-944185456'] = { Name = 'v_11_ab_pipes003' }, - ['1912267577'] = { Name = 'v_11_ab_pipesfrnt' }, - ['-566720429'] = { Name = 'v_11_abalphook001' }, - ['177525359'] = { Name = 'v_11_abarmsupp' }, - ['-406215282'] = { Name = 'v_11_abattoir_reflection' }, - ['1761914052'] = { Name = 'v_11_abattoirshadprox' }, - ['-85281472'] = { Name = 'v_11_abattoirshell' }, - ['-1544503507'] = { Name = 'v_11_abattoirsubshell' }, - ['82581555'] = { Name = 'v_11_abattoirsubshell2' }, - ['1346383582'] = { Name = 'v_11_abattoirsubshell3' }, - ['1501446490'] = { Name = 'v_11_abattoirsubshell4' }, - ['-574814449'] = { Name = 'v_11_abattpens' }, - ['1240568781'] = { Name = 'v_11_abb_repipes' }, - ['1933472203'] = { Name = 'v_11_abbabits01' }, - ['-85417069'] = { Name = 'v_11_abbbetlights_day' }, - ['-1017245907'] = { Name = 'v_11_abbbetlights' }, - ['1415800086'] = { Name = 'v_11_abbbigconv1' }, - ['-2141005548'] = { Name = 'v_11_abbcattlehooist' }, - ['-1080754292'] = { Name = 'v_11_abbconduit' }, - ['1546871972'] = { Name = 'v_11_abbcoofence' }, - ['-572268449'] = { Name = 'v_11_abbcorrishad' }, - ['101345245'] = { Name = 'v_11_abbcorrsigns' }, - ['-2016322935'] = { Name = 'v_11_abbdangles' }, - ['-45142426'] = { Name = 'v_11_abbdoorstop' }, - ['-805278313'] = { Name = 'v_11_abbebtsigns' }, - ['1490872358'] = { Name = 'v_11_abbendsigns' }, - ['1862024117'] = { Name = 'v_11_abbexitoverlays' }, - ['2078282668'] = { Name = 'v_11_abbgate' }, - ['2001011031'] = { Name = 'v_11_abbhosethings' }, - ['-1231457128'] = { Name = 'v_11_abbinbeplat' }, - ['-1325025053'] = { Name = 'v_11_abbleeddrains' }, - ['-1098394514'] = { Name = 'v_11_abbmain1_stuts' }, - ['1049702801'] = { Name = 'v_11_abbmain2_dirt' }, - ['-1837757798'] = { Name = 'v_11_abbmain2_rails' }, - ['493418656'] = { Name = 'v_11_abbmain3_rails' }, - ['-599168321'] = { Name = 'v_11_abbmain3bits' }, - ['-2069070624'] = { Name = 'v_11_abbmainbit1pipes' }, - ['870104350'] = { Name = 'v_11_abbmeatchunks001' }, - ['-596490586'] = { Name = 'v_11_abbmnrmshad1' }, - ['-366222823'] = { Name = 'v_11_abbmnrmshad2' }, - ['-671302213'] = { Name = 'v_11_abbmnrmshad3' }, - ['-1965677972'] = { Name = 'v_11_abbnardirt' }, - ['-913280628'] = { Name = 'v_11_abbnearenddirt' }, - ['-1427719489'] = { Name = 'v_11_abboffovers' }, - ['-115336001'] = { Name = 'v_11_abbpordshadroom' }, - ['-1697520387'] = { Name = 'v_11_abbprodbig' }, - ['979580520'] = { Name = 'v_11_abbproddirt' }, - ['-648263873'] = { Name = 'v_11_abbprodlit' }, - ['-1698817363'] = { Name = 'v_11_abbprodplats2' }, - ['394198343'] = { Name = 'v_11_abbrack1' }, - ['556601507'] = { Name = 'v_11_abbrack2' }, - ['-599161123'] = { Name = 'v_11_abbrack3' }, - ['110812031'] = { Name = 'v_11_abbrack4' }, - ['-193895672'] = { Name = 'v_11_abbreargirds' }, - ['651695598'] = { Name = 'v_11_abbrodovers' }, - ['623744713'] = { Name = 'v_11_abbrolldorrswitch' }, - ['-1418214751'] = { Name = 'v_11_abbrolldors' }, - ['1641910444'] = { Name = 'v_11_abbseams1' }, - ['-1572048740'] = { Name = 'v_11_abbslaugbld' }, - ['-733369186'] = { Name = 'v_11_abbslaugdirt' }, - ['-226352795'] = { Name = 'v_11_abbslaughtdrains' }, - ['423817432'] = { Name = 'v_11_abbslaughtshad' }, - ['152936678'] = { Name = 'v_11_abbslaughtshad2' }, - ['-1434151603'] = { Name = 'v_11_abbslausigns' }, - ['1351995295'] = { Name = 'v_11_abbtops1' }, - ['145014714'] = { Name = 'v_11_abbtops2' }, - ['-161277129'] = { Name = 'v_11_abbtops3' }, - ['929885194'] = { Name = 'v_11_abbwins' }, - ['-613294944'] = { Name = 'v_11_abcattlegirds' }, - ['357378553'] = { Name = 'v_11_abcattlights' }, - ['-865503302'] = { Name = 'v_11_abcattlightsent' }, - ['-1061519961'] = { Name = 'v_11_abcoolershad' }, - ['1740457115'] = { Name = 'v_11_abinbetbeams' }, - ['1172916701'] = { Name = 'v_11_abmatinbet' }, - ['-1900921204'] = { Name = 'v_11_abmeatbandsaw' }, - ['229669362'] = { Name = 'v_11_aboffal' }, - ['1071960393'] = { Name = 'v_11_aboffplatfrm' }, - ['-1203746455'] = { Name = 'v_11_abplastipsprod' }, - ['-729416481'] = { Name = 'v_11_abplatmovecop1' }, - ['-301002890'] = { Name = 'v_11_abplatmoveinbet' }, - ['-929945934'] = { Name = 'v_11_abplatstatic' }, - ['1506184467'] = { Name = 'v_11_abprodbeams' }, - ['-1988111383'] = { Name = 'v_11_abseamsmain' }, - ['-826900717'] = { Name = 'v_11_abskinpull' }, - ['392875289'] = { Name = 'v_11_abslaughmats' }, - ['-1060638272'] = { Name = 'v_11_abslauplat' }, - ['-1550682552'] = { Name = 'v_11_abslughtbeams' }, - ['-95266536'] = { Name = 'v_11_abstrthooks' }, - ['-5511026'] = { Name = 'v_11_backrails' }, - ['-192419657'] = { Name = 'v_11_beefheaddropper' }, - ['-392304518'] = { Name = 'v_11_beefheaddroppermn' }, - ['-819191876'] = { Name = 'v_11_beefsigns' }, - ['1665092468'] = { Name = 'v_11_bleederstep' }, - ['105571099'] = { Name = 'v_11_blufrocksign' }, - ['1079267610'] = { Name = 'v_11_cooheidrack' }, - ['2027255383'] = { Name = 'v_11_cooheidrack001' }, - ['1648020429'] = { Name = 'v_11_coolblood001' }, - ['-1011515909'] = { Name = 'v_11_cooler_drs' }, - ['1495352095'] = { Name = 'v_11_coolerrack001' }, - ['557069257'] = { Name = 'v_11_coolgirdsvest' }, - ['1791410739'] = { Name = 'v_11_crseloadpmp1' }, - ['-2141236564'] = { Name = 'v_11_de-hidebeam' }, - ['-1586047796'] = { Name = 'v_11_endoffbits' }, - ['1494494523'] = { Name = 'v_11_hangslughshp' }, - ['-1058902402'] = { Name = 'v_11_headlopperplatform' }, - ['1267938596'] = { Name = 'v_11_jointracksect' }, - ['-586535839'] = { Name = 'v_11_leccybox' }, - ['-926092390'] = { Name = 'v_11_mainarms' }, - ['-93037475'] = { Name = 'v_11_mainbitrolldoor' }, - ['2143361941'] = { Name = 'v_11_mainbitrolldoor2' }, - ['-1191215209'] = { Name = 'v_11_maindrainover' }, - ['-137085273'] = { Name = 'v_11_manrmsupps' }, - ['254531170'] = { Name = 'v_11_meatinbetween' }, - ['-1570093010'] = { Name = 'v_11_meatmain' }, - ['-921230640'] = { Name = 'v_11_metplate' }, - ['-402804050'] = { Name = 'v_11_midoffbuckets' }, - ['-56477256'] = { Name = 'v_11_midrackingsection' }, - ['1863956114'] = { Name = 'v_11_mincertrolley' }, - ['-2028606052'] = { Name = 'v_11_prod_wheel_hooks' }, - ['251007878'] = { Name = 'v_11_prodflrmeat' }, - ['-1122711766'] = { Name = 'v_11_producemeat' }, - ['-496971233'] = { Name = 'v_11_rack_signs' }, - ['779624722'] = { Name = 'v_11_rack_signsblu' }, - ['1375669295'] = { Name = 'v_11_sheephumperlight' }, - ['1817496410'] = { Name = 'v_11_slaughtbox' }, - ['1763789051'] = { Name = 'v_11_stungun' }, - ['564071872'] = { Name = 'v_11_stungun001' }, - ['2089858855'] = { Name = 'v_11_wincharm' }, - ['1412155506'] = { Name = 'v_13_rec_chop_card' }, - ['1371304953'] = { Name = 'v_13_rec_chop_deta' }, - ['611408871'] = { Name = 'v_13_rec_chop_exlamp' }, - ['-1215996827'] = { Name = 'v_13_rec_chop_over' }, - ['-2028883436'] = { Name = 'v_13_rec_chop_refl' }, - ['-2035847296'] = { Name = 'v_13_rec_chop_shad' }, - ['1730005798'] = { Name = 'v_13_rec_cor1_deta' }, - ['1504074188'] = { Name = 'v_13_rec_cor1_over' }, - ['-1226871722'] = { Name = 'v_13_rec_cor1_refl' }, - ['-300590450'] = { Name = 'v_13_rec_door_deta' }, - ['1111826835'] = { Name = 'v_13_rec_door_over' }, - ['-95027348'] = { Name = 'v_13_rec_door_refl' }, - ['-1924138198'] = { Name = 'v_13_rec_exit_deta' }, - ['-991183763'] = { Name = 'v_13_rec_exit_over' }, - ['11080595'] = { Name = 'v_13_rec_exit_refl' }, - ['1893877901'] = { Name = 'v_13_rec_main_card' }, - ['-1262238500'] = { Name = 'v_13_rec_main_deta' }, - ['-2146857748'] = { Name = 'v_13_rec_main_lamp' }, - ['1641002849'] = { Name = 'v_13_rec_main_over' }, - ['-1365079015'] = { Name = 'v_13_rec_main_refl' }, - ['-1302538923'] = { Name = 'v_13_rec_main_shre' }, - ['-480517504'] = { Name = 'v_13_rec_off1_det2' }, - ['-386535944'] = { Name = 'v_13_rec_off1_deta' }, - ['1702571542'] = { Name = 'v_13_rec_off1_exlamp' }, - ['-844999375'] = { Name = 'v_13_rec_off1_over' }, - ['-1470219067'] = { Name = 'v_13_rec_off1_refl' }, - ['1003750006'] = { Name = 'v_13_rec_off1_shad' }, - ['-2076197480'] = { Name = 'v_13_rec_rear_deta' }, - ['44952174'] = { Name = 'v_13_rec_rear_over' }, - ['-2040402295'] = { Name = 'v_13_rec_rear_refl' }, - ['-1375163780'] = { Name = 'v_13_rec_she2_deta' }, - ['1908716755'] = { Name = 'v_13_rec_she2_over' }, - ['-991070626'] = { Name = 'v_13_rec_shei_deta' }, - ['1129019053'] = { Name = 'v_13_rec_shei_over' }, - ['-531467176'] = { Name = 'v_13_rec_shei_refl' }, - ['-2050752077'] = { Name = 'v_13_rec_sta1_deta' }, - ['1440241177'] = { Name = 'v_13_rec_sta1_over' }, - ['1164321932'] = { Name = 'v_13_rec_sta1_refl' }, - ['-635435070'] = { Name = 'v_13_rec_sta2_deta' }, - ['-1906576005'] = { Name = 'v_13_rec_sta2_over' }, - ['1787900739'] = { Name = 'v_13_rec_sta2_refl' }, - ['-1619230853'] = { Name = 'v_13_rec_sta2_shad' }, - ['1634746050'] = { Name = 'v_13_rec_wind_card' }, - ['-1705910049'] = { Name = 'v_13_rec_wind_deta' }, - ['2120893302'] = { Name = 'v_13_rec_wind_deta001' }, - ['-1101801906'] = { Name = 'v_13_rec_wind_exlamp' }, - ['-620592483'] = { Name = 'v_13_rec_wind_over' }, - ['266750052'] = { Name = 'v_13_rec_wind_shad' }, - ['-407044356'] = { Name = 'v_13_shell' }, - ['492598206'] = { Name = 'v_13_windowshadows1' }, - ['-1358883063'] = { Name = 'v_13_windowshadows2' }, - ['-999865899'] = { Name = 'v_13_windowshadows4' }, - ['-847916050'] = { Name = 'v_13_windowshadows5' }, - ['508667353'] = { Name = 'v_15__exterior_building' }, - ['93402095'] = { Name = 'v_15__exterior_frame' }, - ['1166038987'] = { Name = 'v_15_cars_shell' }, - ['-1889000560'] = { Name = 'v_15_gar_over_decal' }, - ['-1418283506'] = { Name = 'v_15_gar_over_normal' }, - ['-1963439895'] = { Name = 'v_15_garg_delta_ceiling' }, - ['1698778120'] = { Name = 'v_15_garg_delta_doordown' }, - ['50309508'] = { Name = 'v_15_garg_delta_doorup' }, - ['1291125826'] = { Name = 'v_15_garg_delta' }, - ['-828676403'] = { Name = 'v_15_garg_mesh_carlift' }, - ['-196818787'] = { Name = 'v_15_garg_mesh_rack01' }, - ['262096269'] = { Name = 'v_15_garg_mesh_rack2' }, - ['993323452'] = { Name = 'v_15_garg_mesh_shelf' }, - ['-1268764657'] = { Name = 'v_15_ofa_over_decal' }, - ['-248726601'] = { Name = 'v_15_ofa_over_normal' }, - ['-1654267836'] = { Name = 'v_15_ofa_over_shadow' }, - ['2142096866'] = { Name = 'v_15_ofb_over_decal' }, - ['802130009'] = { Name = 'v_15_ofb_over_normal' }, - ['949858571'] = { Name = 'v_15_offa_delta_glass' }, - ['-1397574122'] = { Name = 'v_15_offa_delta2' }, - ['-1749406954'] = { Name = 'v_15_offa_props' }, - ['1320563827'] = { Name = 'v_15_offb_delta_ceiling' }, - ['-1074174275'] = { Name = 'v_15_offb_delta_glass' }, - ['1723723422'] = { Name = 'v_15_offb_delta_props' }, - ['480897073'] = { Name = 'v_15_offb_delta' }, - ['-1956973268'] = { Name = 'v_15_offb_glass' }, - ['1053246885'] = { Name = 'v_15_offb_mesh_frames' }, - ['27594084'] = { Name = 'v_15_shrm_cables' }, - ['-1012925063'] = { Name = 'v_15_shrm_delta_ceiling' }, - ['856965582'] = { Name = 'v_15_shrm_delta_ceiling2' }, - ['631355880'] = { Name = 'v_15_shrm_delta_photos' }, - ['-410120742'] = { Name = 'v_15_shrm_delta_props' }, - ['1610353134'] = { Name = 'v_15_shrm_delta' }, - ['-1899336793'] = { Name = 'v_15_shrm_frames' }, - ['-1654110746'] = { Name = 'v_15_shrm_glass1' }, - ['-1406016647'] = { Name = 'v_15_shrm_glass2' }, - ['1738629305'] = { Name = 'v_15_shrm_mesh_coffeetable' }, - ['1636667330'] = { Name = 'v_15_shrm_mesh_desk' }, - ['2027537347'] = { Name = 'v_15_shrm_mesh_woodboard' }, - ['1041275574'] = { Name = 'v_15_shrm_neonsign_iref001' }, - ['-1547325868'] = { Name = 'v_15_shrm_neonsign_prx' }, - ['-1022769224'] = { Name = 'v_15_shrm_neonsign' }, - ['1574605286'] = { Name = 'v_15_shrm_promotional' }, - ['-1845634532'] = { Name = 'v_15_shrm_shelfprops' }, - ['-1944492269'] = { Name = 'v_15_shrm_window_unbroken' }, - ['2127106692'] = { Name = 'v_15_srm_over_decal' }, - ['-1040080247'] = { Name = 'v_15_srm_over_normal' }, - ['1503110007'] = { Name = 'v_15_srm_over_shadow' }, - ['-463099505'] = { Name = 'v_15_window_broken' }, - ['-1204911835'] = { Name = 'v_16_ap_hi_pants1' }, - ['-1437801122'] = { Name = 'v_16_ap_hi_pants2' }, - ['-1694021933'] = { Name = 'v_16_ap_hi_pants3' }, - ['-22344159'] = { Name = 'v_16_ap_hi_pants4' }, - ['-520891725'] = { Name = 'v_16_ap_hi_pants5' }, - ['-746965056'] = { Name = 'v_16_ap_hi_pants6' }, - ['296488363'] = { Name = 'v_16_ap_mid_pants1' }, - ['1064233264'] = { Name = 'v_16_ap_mid_pants2' }, - ['906876526'] = { Name = 'v_16_ap_mid_pants3' }, - ['-439175687'] = { Name = 'v_16_ap_mid_pants4' }, - ['-627531899'] = { Name = 'v_16_ap_mid_pants5' }, - ['-2144208857'] = { Name = 'v_16_barglow' }, - ['-1245042072'] = { Name = 'v_16_barglow001' }, - ['-1639175907'] = { Name = 'v_16_barglownight' }, - ['592132096'] = { Name = 'v_16_basketball' }, - ['1753105766'] = { Name = 'v_16_bathemon' }, - ['1769990479'] = { Name = 'v_16_bathmirror' }, - ['1495774418'] = { Name = 'v_16_bathstuff' }, - ['1694551716'] = { Name = 'v_16_bdr_mesh_bed' }, - ['562784610'] = { Name = 'v_16_bdrm_mesh_bath' }, - ['554957387'] = { Name = 'v_16_bdrm_paintings002' }, - ['1635608336'] = { Name = 'v_16_bed_mesh_blinds' }, - ['-2038405478'] = { Name = 'v_16_bed_mesh_delta' }, - ['541212613'] = { Name = 'v_16_bed_mesh_windows' }, - ['-1655739971'] = { Name = 'v_16_bedrmemon' }, - ['1644861560'] = { Name = 'v_16_bookend' }, - ['-696587396'] = { Name = 'v_16_dnr_a' }, - ['176673685'] = { Name = 'v_16_dnr_c' }, - ['396344497'] = { Name = 'v_16_dt' }, - ['402779496'] = { Name = 'v_16_fh_sidebrdlngb_rsref001' }, - ['437506665'] = { Name = 'v_16_frankcable' }, - ['2012970818'] = { Name = 'v_16_frankcurtain1' }, - ['-645958848'] = { Name = 'v_16_frankstuff_noshad' }, - ['1395271370'] = { Name = 'v_16_frankstuff' }, - ['-548588043'] = { Name = 'v_16_frankstuff003' }, - ['-111777273'] = { Name = 'v_16_frankstuff004' }, - ['-401125507'] = { Name = 'v_16_goldrecords' }, - ['-855487398'] = { Name = 'v_16_hi_apt_planningrmstf' }, - ['1710746303'] = { Name = 'v_16_hi_apt_s_books' }, - ['2122176276'] = { Name = 'v_16_hi_studdorrtrim' }, - ['-1938917263'] = { Name = 'v_16_hifi' }, - ['795926619'] = { Name = 'v_16_high_bath_delta' }, - ['-61937122'] = { Name = 'v_16_high_bath_mesh_mirror' }, - ['1519962981'] = { Name = 'v_16_high_bath_mesh_mirror001' }, - ['28388079'] = { Name = 'v_16_high_bath_over_normals' }, - ['-2102769187'] = { Name = 'v_16_high_bath_over_shadow' }, - ['1282505899'] = { Name = 'v_16_high_bed_mesh_lights' }, - ['1848187037'] = { Name = 'v_16_high_bed_mesh_unit' }, - ['-1810487791'] = { Name = 'v_16_high_bed_over_dirt' }, - ['-1825762094'] = { Name = 'v_16_high_bed_over_normal' }, - ['-1637177333'] = { Name = 'v_16_high_bed_over_shadow' }, - ['-1725072230'] = { Name = 'v_16_high_hal_mesh_plant' }, - ['-2087534553'] = { Name = 'v_16_high_hall_mesh_delta' }, - ['-206202603'] = { Name = 'v_16_high_hall_over_dirt' }, - ['1501428630'] = { Name = 'v_16_high_hall_over_normal' }, - ['-998893158'] = { Name = 'v_16_high_hall_over_shadow' }, - ['1939050630'] = { Name = 'v_16_high_kit_mesh_unit' }, - ['-804437949'] = { Name = 'v_16_high_ktn_mesh_delta' }, - ['-703501524'] = { Name = 'v_16_high_ktn_mesh_fire' }, - ['1205639727'] = { Name = 'v_16_high_ktn_mesh_windows' }, - ['-328622740'] = { Name = 'v_16_high_ktn_over_decal' }, - ['764891703'] = { Name = 'v_16_high_ktn_over_dirt' }, - ['-415048780'] = { Name = 'v_16_high_ktn_over_shadow' }, - ['32267209'] = { Name = 'v_16_high_ktn_over_shadows' }, - ['1659989247'] = { Name = 'v_16_high_lng_armchairs' }, - ['-259264457'] = { Name = 'v_16_high_lng_details' }, - ['-1672731594'] = { Name = 'v_16_high_lng_mesh_delta' }, - ['-1993946058'] = { Name = 'v_16_high_lng_mesh_plant' }, - ['-1671259133'] = { Name = 'v_16_high_lng_mesh_shelf' }, - ['-1561464270'] = { Name = 'v_16_high_lng_mesh_tvunit' }, - ['-338992837'] = { Name = 'v_16_high_lng_over_dirt' }, - ['-1565038939'] = { Name = 'v_16_high_lng_over_shadow' }, - ['737627589'] = { Name = 'v_16_high_lng_over_shadow2' }, - ['-1875612265'] = { Name = 'v_16_high_plan_mesh_delta' }, - ['-1552478834'] = { Name = 'v_16_high_plan_over_normal' }, - ['246334229'] = { Name = 'v_16_high_pln_m_map' }, - ['-1915596431'] = { Name = 'v_16_high_pln_mesh_lights' }, - ['2109668307'] = { Name = 'v_16_high_pln_over_shadow' }, - ['124185503'] = { Name = 'v_16_high_stp_mesh_unit' }, - ['1686839869'] = { Name = 'v_16_high_ward_over_decal' }, - ['-684611335'] = { Name = 'v_16_high_ward_over_normal' }, - ['-1085127369'] = { Name = 'v_16_high_ward_over_shadow' }, - ['1505165660'] = { Name = 'v_16_highstudwalldirt' }, - ['-1657151895'] = { Name = 'v_16_hiigh_ktn_over_normal' }, - ['1580467277'] = { Name = 'v_16_knt_c' }, - ['-1792937432'] = { Name = 'v_16_knt_f' }, - ['-1925494464'] = { Name = 'v_16_knt_mesh_stuff' }, - ['-71964169'] = { Name = 'v_16_lgb_mesh_lngprop' }, - ['-372623874'] = { Name = 'v_16_lgb_rock001' }, - ['-1085847436'] = { Name = 'v_16_livstuff003' }, - ['965848181'] = { Name = 'v_16_livstuff00k2' }, - ['-1736550082'] = { Name = 'v_16_lnb_mesh_coffee' }, - ['-1956178182'] = { Name = 'v_16_lnb_mesh_tablecenter001' }, - ['-303021494'] = { Name = 'v_16_lng_mesh_blinds' }, - ['1657526695'] = { Name = 'v_16_lng_mesh_delta' }, - ['1436338573'] = { Name = 'v_16_lng_mesh_stairglass' }, - ['2007313326'] = { Name = 'v_16_lng_mesh_stairglassb' }, - ['1541620211'] = { Name = 'v_16_lng_mesh_windows' }, - ['-964847400'] = { Name = 'v_16_lng_over_normal' }, - ['868153000'] = { Name = 'v_16_lngas_mesh_delta003' }, - ['1182412177'] = { Name = 'v_16_lo_shower' }, - ['71215499'] = { Name = 'v_16_low_bath_mesh_window' }, - ['473108619'] = { Name = 'v_16_low_bath_over_decal' }, - ['-227255578'] = { Name = 'v_16_low_bed_over_decal' }, - ['805567639'] = { Name = 'v_16_low_bed_over_normal' }, - ['1431259987'] = { Name = 'v_16_low_bed_over_shadow' }, - ['480572754'] = { Name = 'v_16_low_ktn_mesh_sideboard' }, - ['-1803582127'] = { Name = 'v_16_low_ktn_mesh_units' }, - ['-699070147'] = { Name = 'v_16_low_ktn_over_decal' }, - ['-1999869780'] = { Name = 'v_16_low_lng_mesh_armchair' }, - ['-1498699789'] = { Name = 'v_16_low_lng_mesh_coffeetable' }, - ['-1414703914'] = { Name = 'v_16_low_lng_mesh_fireplace' }, - ['1767073950'] = { Name = 'v_16_low_lng_mesh_plant' }, - ['203302981'] = { Name = 'v_16_low_lng_mesh_rugs' }, - ['-862607347'] = { Name = 'v_16_low_lng_mesh_sidetable' }, - ['1573106874'] = { Name = 'v_16_low_lng_mesh_sofa1' }, - ['1883953608'] = { Name = 'v_16_low_lng_mesh_sofa2' }, - ['797777955'] = { Name = 'v_16_low_lng_mesh_tv' }, - ['1299566561'] = { Name = 'v_16_low_lng_over_decal' }, - ['-89008152'] = { Name = 'v_16_low_lng_over_normal' }, - ['-1148626287'] = { Name = 'v_16_low_lng_over_shadow' }, - ['1669110046'] = { Name = 'v_16_low_mesh_lng_shelf' }, - ['185958074'] = { Name = 'v_16_mags' }, - ['977523419'] = { Name = 'v_16_mesh_delta' }, - ['-1928851610'] = { Name = 'v_16_mesh_shell' }, - ['-1641773035'] = { Name = 'v_16_mid_bath_mesh_delta' }, - ['-686357611'] = { Name = 'v_16_mid_bath_mesh_mirror' }, - ['-1081334902'] = { Name = 'v_16_mid_bed_bed' }, - ['-41870171'] = { Name = 'v_16_mid_bed_delta' }, - ['-1933699208'] = { Name = 'v_16_mid_bed_over_decal' }, - ['423058140'] = { Name = 'v_16_mid_hall_mesh_delta' }, - ['-596208123'] = { Name = 'v_16_mid_shell' }, - ['-1562340743'] = { Name = 'v_16_midapartdeta' }, - ['1029035082'] = { Name = 'v_16_midapt_cabinet' }, - ['-640008227'] = { Name = 'v_16_midapt_curts' }, - ['-794678716'] = { Name = 'v_16_midapt_deca' }, - ['-319314280'] = { Name = 'v_16_molding01' }, - ['-757685759'] = { Name = 'v_16_mp_sofa' }, - ['1861434686'] = { Name = 'v_16_mpmidapart00' }, - ['2021740634'] = { Name = 'v_16_mpmidapart01' }, - ['-1413634140'] = { Name = 'v_16_mpmidapart018' }, - ['-1477562573'] = { Name = 'v_16_mpmidapart03' }, - ['627911247'] = { Name = 'v_16_mpmidapart07' }, - ['1121969460'] = { Name = 'v_16_mpmidapart09' }, - ['-1528124860'] = { Name = 'v_16_mpmidapart13' }, - ['2098322103'] = { Name = 'v_16_mpmidapart17' }, - ['162412429'] = { Name = 'v_16_rpt_mesh_pictures' }, - ['1218832826'] = { Name = 'v_16_rpt_mesh_pictures003' }, - ['-920153100'] = { Name = 'v_16_shadowobject69' }, - ['1747663014'] = { Name = 'v_16_shadsy' }, - ['109151345'] = { Name = 'v_16_skateboard' }, - ['473873172'] = { Name = 'v_16_strsdet01' }, - ['-1635956176'] = { Name = 'v_16_studapart00' }, - ['1933754349'] = { Name = 'v_16_studframe' }, - ['-1348140380'] = { Name = 'v_16_studio_loshell' }, - ['1500871631'] = { Name = 'v_16_studio_pants1' }, - ['-415131799'] = { Name = 'v_16_studio_pants2' }, - ['994590581'] = { Name = 'v_16_studio_pants3' }, - ['-1328852098'] = { Name = 'v_16_studio_skirt' }, - ['-1121708665'] = { Name = 'v_16_studio_slip1' }, - ['419629772'] = { Name = 'v_16_studposters' }, - ['1819360788'] = { Name = 'v_16_studunits' }, - ['1145706899'] = { Name = 'v_16_study_rug' }, - ['1236742542'] = { Name = 'v_16_study_sofa' }, - ['905287380'] = { Name = 'v_16_treeglow' }, - ['-1207622214'] = { Name = 'v_16_treeglow001' }, - ['-1462354034'] = { Name = 'v_16_v_1_studapart02' }, - ['-613043635'] = { Name = 'v_16_v_sofa' }, - ['-1861375461'] = { Name = 'v_16_vint1_multilow02' }, - ['-1845709974'] = { Name = 'v_16_wardrobe' }, - ['776084867'] = { Name = 'v_19_bar_speccy' }, - ['-2102113266'] = { Name = 'v_19_bubbles' }, - ['-338399248'] = { Name = 'v_19_changeshadsmain' }, - ['-172320734'] = { Name = 'v_19_corridor_bits' }, - ['815748996'] = { Name = 'v_19_curts' }, - ['370752112'] = { Name = 'v_19_dirtframes_ent' }, - ['1157232371'] = { Name = 'v_19_dtrpsbitsmore' }, - ['-1763494267'] = { Name = 'v_19_ducts' }, - ['67728679'] = { Name = 'v_19_fishy_coral' }, - ['-2064947552'] = { Name = 'v_19_fishy_coral2' }, - ['-881679119'] = { Name = 'v_19_jakemenneon' }, - ['-2108686054'] = { Name = 'v_19_jetceilights' }, - ['1755459821'] = { Name = 'v_19_jetchangebits' }, - ['1738241483'] = { Name = 'v_19_jetchangerail' }, - ['1023206247'] = { Name = 'v_19_jetchnceistuff' }, - ['56468989'] = { Name = 'v_19_jetchngwrkcrd' }, - ['462094182'] = { Name = 'v_19_jetdado' }, - ['-1407643777'] = { Name = 'v_19_jetdncflrlights' }, - ['-13703456'] = { Name = 'v_19_jetstripceilpan' }, - ['-1681510881'] = { Name = 'v_19_jetstripceilpan2' }, - ['-1890809400'] = { Name = 'v_19_jetstrpstge' }, - ['-1655216281'] = { Name = 'v_19_maindressingstuff' }, - ['1326367471'] = { Name = 'v_19_office_trim' }, - ['690135591'] = { Name = 'v_19_payboothtrim' }, - ['-1880181855'] = { Name = 'v_19_premium2' }, - ['-1897452100'] = { Name = 'v_19_priv_bits' }, - ['279777689'] = { Name = 'v_19_priv_shads' }, - ['-203731504'] = { Name = 'v_19_stp3fistank' }, - ['-181061911'] = { Name = 'v_19_stplightspriv' }, - ['1142677988'] = { Name = 'v_19_stpprvrmpics' }, - ['-530412110'] = { Name = 'v_19_stri3litstps' }, - ['1796505475'] = { Name = 'v_19_strip_off_overs' }, - ['781409003'] = { Name = 'v_19_strip_stickers' }, - ['-1140460783'] = { Name = 'v_19_strip3pole' }, - ['-101568154'] = { Name = 'v_19_stripbootbits' }, - ['2051732798'] = { Name = 'v_19_stripbooths' }, - ['-1374940188'] = { Name = 'v_19_stripchangemirror' }, - ['1496392170'] = { Name = 'v_19_stripduct' }, - ['-753381166'] = { Name = 'v_19_stripduct2' }, - ['-17721616'] = { Name = 'v_19_strp_offbits' }, - ['-887543880'] = { Name = 'v_19_strp_rig' }, - ['1444970912'] = { Name = 'v_19_strp3mirrors' }, - ['1935720206'] = { Name = 'v_19_strpbar' }, - ['-327460995'] = { Name = 'v_19_strpbarrier' }, - ['-1301822742'] = { Name = 'v_19_strpchngover1' }, - ['1799992495'] = { Name = 'v_19_strpchngover2' }, - ['-100902308'] = { Name = 'v_19_strpdjbarr' }, - ['-2138963736'] = { Name = 'v_19_strpdrfrm1' }, - ['-1844403195'] = { Name = 'v_19_strpdrfrm2' }, - ['1483845832'] = { Name = 'v_19_strpdrfrm3' }, - ['1843649452'] = { Name = 'v_19_strpdrfrm4' }, - ['933097249'] = { Name = 'v_19_strpdrfrm5' }, - ['1230574231'] = { Name = 'v_19_strpdrfrm6' }, - ['1438323505'] = { Name = 'v_19_strpentlites' }, - ['458056322'] = { Name = 'v_19_strpfrntpl' }, - ['-1156043042'] = { Name = 'v_19_strpmncled' }, - ['1234437091'] = { Name = 'v_19_strpprivlits' }, - ['-1137133608'] = { Name = 'v_19_strprvrmgdbits' }, - ['-373068607'] = { Name = 'v_19_strpshell' }, - ['1930101236'] = { Name = 'v_19_strpshellref' }, - ['-1746529895'] = { Name = 'v_19_strpstglt' }, - ['-320646842'] = { Name = 'v_19_strpstgtrm' }, - ['1458015340'] = { Name = 'v_19_strpstrplit' }, - ['302914944'] = { Name = 'v_19_trev_stuff' }, - ['-827514192'] = { Name = 'v_19_trev_stuff1' }, - ['952274871'] = { Name = 'v_19_vabbarcables' }, - ['1043570931'] = { Name = 'v_19_vanbckofftrim' }, - ['1605871746'] = { Name = 'v_19_vanchngfacings' }, - ['-604879834'] = { Name = 'v_19_vanchngfcngfrst' }, - ['1899078779'] = { Name = 'v_19_vangroundover' }, - ['-1705603715'] = { Name = 'v_19_vanilla_sign_neon' }, - ['200278506'] = { Name = 'v_19_vanillasigneon' }, - ['825282534'] = { Name = 'v_19_vanillasigneon2' }, - ['567582665'] = { Name = 'v_19_vanlobsigns' }, - ['77529160'] = { Name = 'v_19_vanmenuplain' }, - ['851007821'] = { Name = 'v_19_vannuisigns' }, - ['357208908'] = { Name = 'v_19_vanshadmainrm' }, - ['880393118'] = { Name = 'v_19_vanstageshads' }, - ['-529553211'] = { Name = 'v_19_vanuniwllart' }, - ['-1056047558'] = { Name = 'v_19_vanunofflights' }, - ['-627030076'] = { Name = 'v_19_weebitstuff' }, - ['140900193'] = { Name = 'v_2_ala_mesh_delta' }, - ['-1085509635'] = { Name = 'v_2_alb_mesh_delta' }, - ['-1124145780'] = { Name = 'v_2_atl_mirror_mesh2' }, - ['1000881750'] = { Name = 'v_2_atla_over_decal' }, - ['-646714696'] = { Name = 'v_2_atla_over_normal' }, - ['521470300'] = { Name = 'v_2_atla_over_shadow' }, - ['-1279459204'] = { Name = 'v_2_atlb_over_decal' }, - ['-551982738'] = { Name = 'v_2_atlb_over_normal' }, - ['1743516980'] = { Name = 'v_2_atlb_over_shadow' }, - ['-306030378'] = { Name = 'v_2_ats_mirror_mesh' }, - ['744323826'] = { Name = 'v_2_ats_over_decal' }, - ['529623221'] = { Name = 'v_2_ats_over_normals' }, - ['1936337860'] = { Name = 'v_2_ats_over_shadow' }, - ['46317015'] = { Name = 'v_2_atsm_mesh_bottles' }, - ['-2093891663'] = { Name = 'v_2_atsm_mesh_delta' }, - ['1610934588'] = { Name = 'v_2_atsm_mesh_frames' }, - ['-665565030'] = { Name = 'v_2_atsm_mesh_reflect' }, - ['622634633'] = { Name = 'v_2_atsm_mesh_units' }, - ['178556803'] = { Name = 'v_2_bckstrs_pipes' }, - ['1063132354'] = { Name = 'v_2_bckstrs_railing' }, - ['2095966182'] = { Name = 'v_2_bds_mesh_bodydrawers' }, - ['-1074980705'] = { Name = 'v_2_bds_mesh_ceiling' }, - ['975372137'] = { Name = 'v_2_bds_mesh_frame' }, - ['-709060764'] = { Name = 'v_2_bds_mesh_lift' }, - ['-1934217292'] = { Name = 'v_2_bds_mesh_skirting' }, - ['1430603214'] = { Name = 'v_2_bds_mirror_mesh' }, - ['1239275842'] = { Name = 'v_2_bds_over_decal' }, - ['-1548998472'] = { Name = 'v_2_bds_over_normal' }, - ['-780120463'] = { Name = 'v_2_bds_over_shadow' }, - ['1211383689'] = { Name = 'v_2_biosign' }, - ['-1256201790'] = { Name = 'v_2_bsnt_shell' }, - ['-185759913'] = { Name = 'v_2_cdb_mesh_06' }, - ['-742378842'] = { Name = 'v_2_cdb_mesh_delta' }, - ['-774703634'] = { Name = 'v_2_cdb_mesh_door' }, - ['-822034429'] = { Name = 'v_2_cdb_mesh_smalldoor' }, - ['157011038'] = { Name = 'v_2_cdb_over_normal' }, - ['-1778356134'] = { Name = 'v_2_cdbt_mesh_liftlights' }, - ['-75886800'] = { Name = 'v_2_cdt_mesh_05' }, - ['529323861'] = { Name = 'v_2_cdt_mesh_07' }, - ['1651012524'] = { Name = 'v_2_cdt_mesh_delta' }, - ['1592452521'] = { Name = 'v_2_cdt_mesh_smalldoor' }, - ['-599048534'] = { Name = 'v_2_cdt_over_normal' }, - ['-1684154620'] = { Name = 'v_2_cor1_mesh_delta1' }, - ['-1987300639'] = { Name = 'v_2_cor1_mesh_delta2' }, - ['1390608156'] = { Name = 'v_2_glow_reflect' }, - ['1556386640'] = { Name = 'v_2_glow_reflect001' }, - ['1402248558'] = { Name = 'v_2_lighttrigger002' }, - ['658288232'] = { Name = 'v_2_lighttrigger1' }, - ['2001442678'] = { Name = 'v_2_mst_mesh_04' }, - ['-1611110193'] = { Name = 'v_2_mst_mesh_06' }, - ['1007821060'] = { Name = 'v_2_mst_mesh_08' }, - ['1572609243'] = { Name = 'v_2_mst_mesh_banister' }, - ['366979122'] = { Name = 'v_2_mst_mesh_delta' }, - ['2036891287'] = { Name = 'v_2_mst_mesh_exterior' }, - ['1297537153'] = { Name = 'v_2_mst_mesh_wire' }, - ['-1697249867'] = { Name = 'v_2_mst_over_dirt' }, - ['-31073789'] = { Name = 'v_2_mst_over_normal' }, - ['127890401'] = { Name = 'v_2_rc1_over_normal' }, - ['1346419557'] = { Name = 'v_2_rc2_over_normal' }, - ['-466390241'] = { Name = 'v_2_rct_mesh_04' }, - ['2131405007'] = { Name = 'v_2_rct_mesh_05' }, - ['-703340310'] = { Name = 'v_2_reccorr2stuff' }, - ['-490052033'] = { Name = 'v_2_rep_over_normal' }, - ['810180977'] = { Name = 'v_2_room2_reflect' }, - ['1521682972'] = { Name = 'v_2_shadowmap1' }, - ['1792846447'] = { Name = 'v_2_shadowmap2' }, - ['-1121792262'] = { Name = 'v_2_shadowmap3' }, - ['1536082536'] = { Name = 'v_2_strs_shell' }, - ['-1000919610'] = { Name = 'v_2_tomd_mesh_ceiling' }, - ['-1856339267'] = { Name = 'v_2_tomd_mesh_delta' }, - ['953583686'] = { Name = 'v_2_tomd_mesh_desk' }, - ['-1962795178'] = { Name = 'v_2_tomd_mesh_frames' }, - ['-1917067297'] = { Name = 'v_2_top_xrays' }, - ['-1091091869'] = { Name = 'v_2_tort_mesh_delta' }, - ['1148800279'] = { Name = 'v_2_tort_mesh_files' }, - ['-1651496338'] = { Name = 'v_2_tort_mesh_frames' }, - ['-1668246780'] = { Name = 'v_2_tort_mesh_props' }, - ['703977413'] = { Name = 'v_2_tplt_mesh_ceiling' }, - ['1036437107'] = { Name = 'v_2_tplt_mesh_delta' }, - ['-1389778883'] = { Name = 'v_2_tplt_mesh_frames' }, - ['-1404669114'] = { Name = 'v_2_tplt_mesh_kitchen' }, - ['-920793138'] = { Name = 'v_2_tpo_mesh_22' }, - ['-1752011580'] = { Name = 'v_2_tpo_mesh_28' }, - ['2082748376'] = { Name = 'v_2_tpo_mesh_41' }, - ['-1386571196'] = { Name = 'v_2_tpo_mesh_42' }, - ['-300940315'] = { Name = 'v_2_tpo_over_decal' }, - ['1995840442'] = { Name = 'v_2_tpo_over_normal' }, - ['-361238537'] = { Name = 'v_2_tpoff_shell' }, - ['-563475542'] = { Name = 'v_20_arm_dec' }, - ['-1877045865'] = { Name = 'v_20_arm_det01' }, - ['1098896962'] = { Name = 'v_20_armoury_gate' }, - ['42114039'] = { Name = 'v_20_br_det' }, - ['2124444362'] = { Name = 'v_20_copfile01' }, - ['-1410478748'] = { Name = 'v_20_copfile02' }, - ['-913439184'] = { Name = 'v_20_evidence01' }, - ['1694435465'] = { Name = 'v_20_frontdesk' }, - ['466761642'] = { Name = 'v_20_lspd_sign' }, - ['468097357'] = { Name = 'v_20_notbrd002' }, - ['-2104596837'] = { Name = 'v_20_notbrd003' }, - ['2090228395'] = { Name = 'v_20_notbrd004' }, - ['1848622558'] = { Name = 'v_20_notbrd005' }, - ['1474859344'] = { Name = 'v_20_notbrd006' }, - ['311390209'] = { Name = 'v_20_notbrd01' }, - ['1989340262'] = { Name = 'v_20_ornaeagle' }, - ['1206211935'] = { Name = 'v_20_ph_arm_cab01' }, - ['-1822326102'] = { Name = 'v_20_ph_cells_dec' }, - ['1028299119'] = { Name = 'v_20_ph_flag01' }, - ['1331379600'] = { Name = 'v_20_ph_flag02' }, - ['412405764'] = { Name = 'v_20_ph_flag03' }, - ['-1934365233'] = { Name = 'v_20_ph_in_outbrd' }, - ['1555226669'] = { Name = 'v_20_ph_in_outbrd002' }, - ['876583346'] = { Name = 'v_20_ph_lobby_desk' }, - ['999250531'] = { Name = 'v_20_ph_lobby_det01' }, - ['672544373'] = { Name = 'v_20_ph_lobby_lights' }, - ['405855372'] = { Name = 'v_20_ph_lobby_planter003' }, - ['1850199601'] = { Name = 'v_20_ph_lobby_planter01' }, - ['1560357796'] = { Name = 'v_20_ph_lobby_planter02' }, - ['-1652030500'] = { Name = 'v_20_ph_lockers_det01' }, - ['-1256685581'] = { Name = 'v_20_ph_musdesk' }, - ['-916246589'] = { Name = 'v_20_ph_muster_det01' }, - ['-186146868'] = { Name = 'v_20_ph_office_det01' }, - ['128828748'] = { Name = 'v_20_ph_office_det02' }, - ['104176290'] = { Name = 'v_20_ph_office_flag01' }, - ['-739854491'] = { Name = 'v_20_ph_signs01' }, - ['2111410153'] = { Name = 'v_20_ph_stair_dec' }, - ['374120856'] = { Name = 'v_20_ph_stair_dec001' }, - ['-1398672861'] = { Name = 'v_20_ph_stairdets' }, - ['412821588'] = { Name = 'v_20_ph_stairdets001' }, - ['139659155'] = { Name = 'v_20_ph_stairs03' }, - ['-1230144054'] = { Name = 'v_20_ph_stairwell_det01' }, - ['-997713537'] = { Name = 'v_20_ph_stairwell_det02' }, - ['-1441797169'] = { Name = 'v_20_phcorrdirt' }, - ['-1261016667'] = { Name = 'v_20_phlobbylightsem' }, - ['1890838064'] = { Name = 'v_20_phlobdirt' }, - ['-321655962'] = { Name = 'v_20_phsm02' }, - ['-447334415'] = { Name = 'v_20_policehubshell' }, - ['79051028'] = { Name = 'v_20_rubbermat' }, - ['360511623'] = { Name = 'v_20_sm01' }, - ['1781977939'] = { Name = 'v_20_stairwell_det01' }, - ['859980781'] = { Name = 'v_20_wall_light003' }, - ['-1990168528'] = { Name = 'v_20_wall_light004' }, - ['1609178436'] = { Name = 'v_20_wall_light005' }, - ['-1408780930'] = { Name = 'v_20_wall_light006' }, - ['2051396091'] = { Name = 'v_20_wall_light007' }, - ['-1203089917'] = { Name = 'v_20_wall_light008' }, - ['1599995977'] = { Name = 'v_20_wall_light01' }, - ['-1375572224'] = { Name = 'v_20_wep_lo' }, - ['2098308325'] = { Name = 'v_21_dummybox' }, - ['-2130895084'] = { Name = 'v_22_ao_room' }, - ['-1432249240'] = { Name = 'v_22_bullets' }, - ['1755624762'] = { Name = 'v_22_cables1' }, - ['978147468'] = { Name = 'v_22_cables2' }, - ['-1343448250'] = { Name = 'v_22_g2_shell' }, - ['2103117968'] = { Name = 'v_22_g2_vents' }, - ['1874496076'] = { Name = 'v_22_glass01' }, - ['-1685528088'] = { Name = 'v_22_glass02' }, - ['-783790750'] = { Name = 'v_22_glass03' }, - ['2129668279'] = { Name = 'v_22_glass04' }, - ['884053051'] = { Name = 'v_22_glass05' }, - ['1682142046'] = { Name = 'v_22_glass06' }, - ['-1713709428'] = { Name = 'v_22_glass07' }, - ['1201191433'] = { Name = 'v_22_glass08' }, - ['569503416'] = { Name = 'v_22_glass09' }, - ['-79818067'] = { Name = 'v_22_glass10' }, - ['-244056295'] = { Name = 'v_22_glass11' }, - ['-542352502'] = { Name = 'v_22_glass12' }, - ['-2112322594'] = { Name = 'v_22_gunsneon' }, - ['-1882883884'] = { Name = 'v_22_handguns' }, - ['601807338'] = { Name = 'v_22_merch01' }, - ['1377272428'] = { Name = 'v_22_merchglass003' }, - ['1139861023'] = { Name = 'v_22_merchglass004' }, - ['1580604025'] = { Name = 'v_22_merchglass005' }, - ['-1827077066'] = { Name = 'v_22_merchglass009' }, - ['1285617263'] = { Name = 'v_22_merchglass010' }, - ['525573077'] = { Name = 'v_22_merchglass011' }, - ['1135617594'] = { Name = 'v_22_merchglass1' }, - ['-2001457087'] = { Name = 'v_22_merchglass2' }, - ['1730407713'] = { Name = 'v_22_merchglass3' }, - ['521264382'] = { Name = 'v_22_merchglass4' }, - ['212416557'] = { Name = 'v_22_merchglass5' }, - ['845972403'] = { Name = 'v_22_merchglass6' }, - ['808353591'] = { Name = 'v_22_merchglass7' }, - ['-1326153535'] = { Name = 'v_22_merchglass8' }, - ['-2071430002'] = { Name = 'v_22_overlays' }, - ['1215025646'] = { Name = 'v_22_reflectproxy' }, - ['368785959'] = { Name = 'v_22_shadowmap' }, - ['1073959231'] = { Name = 'v_22_shelves' }, - ['1296095006'] = { Name = 'v_22_shopdirt' }, - ['-1869488274'] = { Name = 'v_22_shopposters' }, - ['890769226'] = { Name = 'v_22_shopshadow' }, - ['457682390'] = { Name = 'v_22_shopskirt' }, - ['818809605'] = { Name = 'v_22_walledges' }, - ['-203737641'] = { Name = 'v_22_wallguns' }, - ['1105658306'] = { Name = 'v_22_wallhooks' }, - ['-2098905626'] = { Name = 'v_23_ao_front' }, - ['-2124634454'] = { Name = 'v_23_ao_office' }, - ['-1862572832'] = { Name = 'v_23_ao' }, - ['1724540583'] = { Name = 'v_23_blends' }, - ['2050081388'] = { Name = 'v_23_detail' }, - ['-75354233'] = { Name = 'v_23_doors' }, - ['-737130623'] = { Name = 'v_23_emissives_front' }, - ['1619314'] = { Name = 'v_23_emissives' }, - ['407933146'] = { Name = 'v_23_frames' }, - ['1132467105'] = { Name = 'v_23_front_blends' }, - ['1866258050'] = { Name = 'v_23_front_detail' }, - ['-143694130'] = { Name = 'v_23_front_reflect' }, - ['363964476'] = { Name = 'v_23_j2_dc' }, - ['1244863018'] = { Name = 'v_23_lamps_fr' }, - ['1512262106'] = { Name = 'v_23_lamps' }, - ['1118204532'] = { Name = 'v_23_lamps2' }, - ['-1565586770'] = { Name = 'v_23_lod' }, - ['926996797'] = { Name = 'v_23_mirrorfloor' }, - ['1375273861'] = { Name = 'v_23_office_detail' }, - ['1172635501'] = { Name = 'v_23_pointsale01' }, - ['565674966'] = { Name = 'v_23_reflect_ext' }, - ['-662678390'] = { Name = 'v_23_reflect' }, - ['655913209'] = { Name = 'v_23_shell' }, - ['-991820653'] = { Name = 'v_24_bdr_mesh_bed_stuff' }, - ['-1453011168'] = { Name = 'v_24_bdr_mesh_bed' }, - ['-1990202314'] = { Name = 'v_24_bdr_mesh_delta' }, - ['1214027725'] = { Name = 'v_24_bdr_mesh_lamp' }, - ['-1987020847'] = { Name = 'v_24_bdr_mesh_lstshirt' }, - ['1309527245'] = { Name = 'v_24_bdr_mesh_windows_closed' }, - ['211714468'] = { Name = 'v_24_bdr_mesh_windows_open' }, - ['804934733'] = { Name = 'v_24_bdr_over_decal' }, - ['685482669'] = { Name = 'v_24_bdr_over_dirt' }, - ['700872958'] = { Name = 'v_24_bdr_over_emmisve' }, - ['1605603164'] = { Name = 'v_24_bdr_over_normal' }, - ['-807542223'] = { Name = 'v_24_bdr_over_shadow_boxes' }, - ['510349115'] = { Name = 'v_24_bdr_over_shadow_frank' }, - ['-1042523960'] = { Name = 'v_24_bdr_over_shadow' }, - ['389359159'] = { Name = 'v_24_bdrm_mesh_arta' }, - ['710359790'] = { Name = 'v_24_bdrm_mesh_bath' }, - ['1891340530'] = { Name = 'v_24_bdrm_mesh_bathprops' }, - ['1664661158'] = { Name = 'v_24_bdrm_mesh_bookcase' }, - ['-1385073382'] = { Name = 'v_24_bdrm_mesh_bookcasestuff' }, - ['-2079067810'] = { Name = 'v_24_bdrm_mesh_boxes' }, - ['1773202095'] = { Name = 'v_24_bdrm_mesh_closetdoors' }, - ['1442523633'] = { Name = 'v_24_bdrm_mesh_dresser' }, - ['1394045836'] = { Name = 'v_24_bdrm_mesh_mags' }, - ['2135986081'] = { Name = 'v_24_bdrm_mesh_mirror' }, - ['416521724'] = { Name = 'v_24_bdrm_mesh_picframes' }, - ['1132898368'] = { Name = 'v_24_bdrm_mesh_rugs' }, - ['414680819'] = { Name = 'v_24_bdrm_mesh_wallshirts' }, - ['1245901170'] = { Name = 'v_24_bedroomshell' }, - ['1036514555'] = { Name = 'v_24_details1' }, - ['-851635225'] = { Name = 'v_24_details2' }, - ['734684986'] = { Name = 'v_24_hal_mesh_delta' }, - ['1444561315'] = { Name = 'v_24_hal_mesh_props' }, - ['-2107663832'] = { Name = 'v_24_hal_over_decal' }, - ['371116454'] = { Name = 'v_24_hal_over_normal' }, - ['393572465'] = { Name = 'v_24_hal_over_shadow' }, - ['601619015'] = { Name = 'v_24_hangingclothes' }, - ['-1879297800'] = { Name = 'v_24_hangingclothes1' }, - ['-1550318509'] = { Name = 'v_24_knt_mesh_blinds' }, - ['784152068'] = { Name = 'v_24_knt_mesh_boxes' }, - ['-2010287522'] = { Name = 'v_24_knt_mesh_center' }, - ['1451083444'] = { Name = 'v_24_knt_mesh_delta' }, - ['1033830821'] = { Name = 'v_24_knt_mesh_flyer' }, - ['-88857806'] = { Name = 'v_24_knt_mesh_mags' }, - ['-24273391'] = { Name = 'v_24_knt_mesh_stuff' }, - ['-822216982'] = { Name = 'v_24_knt_mesh_units' }, - ['-1993195884'] = { Name = 'v_24_knt_mesh_windowsa' }, - ['1533928200'] = { Name = 'v_24_knt_mesh_windowsb' }, - ['1293089609'] = { Name = 'v_24_knt_over_decal' }, - ['698665844'] = { Name = 'v_24_knt_over_normal' }, - ['26233750'] = { Name = 'v_24_knt_over_shadow_boxes' }, - ['1226041042'] = { Name = 'v_24_knt_over_shadow' }, - ['-1486546317'] = { Name = 'v_24_knt_over_shelf' }, - ['-582701829'] = { Name = 'v_24_ktn_over_dirt' }, - ['-379551260'] = { Name = 'v_24_lga_mesh_delta' }, - ['-1175478477'] = { Name = 'v_24_lga_over_dirt' }, - ['-1199983396'] = { Name = 'v_24_lga_over_normal' }, - ['2007651917'] = { Name = 'v_24_lga_over_shadow' }, - ['-939409227'] = { Name = 'v_24_lgb_mesh_bottomdelta' }, - ['531302143'] = { Name = 'v_24_lgb_mesh_fire' }, - ['108228295'] = { Name = 'v_24_lgb_mesh_lngprop' }, - ['58568078'] = { Name = 'v_24_lgb_mesh_sideboard_em' }, - ['-490529352'] = { Name = 'v_24_lgb_mesh_sideboard' }, - ['-2136166337'] = { Name = 'v_24_lgb_mesh_sideprops' }, - ['67581076'] = { Name = 'v_24_lgb_mesh_sofa' }, - ['-1258076755'] = { Name = 'v_24_lgb_mesh_topdelta' }, - ['2103993255'] = { Name = 'v_24_lgb_over_dirt' }, - ['1535242412'] = { Name = 'v_24_llga_mesh_coffeetable' }, - ['1624607763'] = { Name = 'v_24_llga_mesh_props' }, - ['-1221118907'] = { Name = 'v_24_lna_mesh_windows' }, - ['-248880225'] = { Name = 'v_24_lnb_coffeestuff' }, - ['-581669317'] = { Name = 'v_24_lnb_mesh_artwork' }, - ['1787746539'] = { Name = 'v_24_lnb_mesh_books' }, - ['-1251571207'] = { Name = 'v_24_lnb_mesh_cddecks' }, - ['585653348'] = { Name = 'v_24_lnb_mesh_coffee' }, - ['-1098491414'] = { Name = 'v_24_lnb_mesh_djdecks' }, - ['-1932905251'] = { Name = 'v_24_lnb_mesh_dvds' }, - ['-976235947'] = { Name = 'v_24_lnb_mesh_fireglass' }, - ['1896912733'] = { Name = 'v_24_lnb_mesh_goldrecords' }, - ['-147708120'] = { Name = 'v_24_lnb_mesh_lightceiling' }, - ['-562814293'] = { Name = 'v_24_lnb_mesh_records' }, - ['1322047205'] = { Name = 'v_24_lnb_mesh_sideboard' }, - ['-1895450375'] = { Name = 'v_24_lnb_mesh_smallvase' }, - ['-159116438'] = { Name = 'v_24_lnb_mesh_tablecenter' }, - ['1355205957'] = { Name = 'v_24_lnb_mesh_windows' }, - ['28403032'] = { Name = 'v_24_lnb_over_disk_shadow' }, - ['805086757'] = { Name = 'v_24_lnb_over_shadow_boxes' }, - ['-1965865732'] = { Name = 'v_24_lnb_over_shadow' }, - ['-389837123'] = { Name = 'v_24_lng_over_decal' }, - ['-825798087'] = { Name = 'v_24_lng_over_normal' }, - ['-383689547'] = { Name = 'v_24_lngb_mesh_boxes' }, - ['-859107878'] = { Name = 'v_24_lngb_mesh_chopbed' }, - ['-1527398160'] = { Name = 'v_24_lngb_mesh_mags' }, - ['239452158'] = { Name = 'v_24_postertubes' }, - ['-373355783'] = { Name = 'v_24_rct_lamptablestuff' }, - ['234859136'] = { Name = 'v_24_rct_mesh_boxes' }, - ['1867937132'] = { Name = 'v_24_rct_mesh_lamptable' }, - ['-113662910'] = { Name = 'v_24_rct_over_decal' }, - ['-973548806'] = { Name = 'v_24_rec_mesh_palnt' }, - ['598400030'] = { Name = 'v_24_rpt_mesh_delta' }, - ['1139773131'] = { Name = 'v_24_rpt_mesh_pictures' }, - ['-208547167'] = { Name = 'v_24_rpt_over_normal' }, - ['1035232215'] = { Name = 'v_24_rpt_over_shadow_boxes' }, - ['-707583489'] = { Name = 'v_24_rpt_over_shadow' }, - ['-1020520447'] = { Name = 'v_24_shell' }, - ['-650425777'] = { Name = 'v_24_shlfstudy' }, - ['-992262514'] = { Name = 'v_24_shlfstudybooks' }, - ['1909119672'] = { Name = 'v_24_shlfstudypics' }, - ['1967886586'] = { Name = 'v_24_sta_mesh_delta' }, - ['1935912868'] = { Name = 'v_24_sta_mesh_glass' }, - ['172493042'] = { Name = 'v_24_sta_mesh_plant' }, - ['-796985819'] = { Name = 'v_24_sta_mesh_props' }, - ['-1040640701'] = { Name = 'v_24_sta_over_normal' }, - ['721141620'] = { Name = 'v_24_sta_over_shadow' }, - ['-1049793093'] = { Name = 'v_24_sta_painting' }, - ['1327282592'] = { Name = 'v_24_storageboxs' }, - ['1781419470'] = { Name = 'v_24_tablebooks' }, - ['-1832124717'] = { Name = 'v_24_wdr_mesh_delta' }, - ['726462463'] = { Name = 'v_24_wdr_mesh_rugs' }, - ['212348610'] = { Name = 'v_24_wdr_mesh_windows' }, - ['1239025526'] = { Name = 'v_24_wdr_over_decal' }, - ['511688836'] = { Name = 'v_24_wdr_over_dirt' }, - ['-1963942288'] = { Name = 'v_24_wdr_over_normal' }, - ['-1155571204'] = { Name = 'v_24_wrd_mesh_boxes' }, - ['846465355'] = { Name = 'v_24_wrd_mesh_tux' }, - ['-102685204'] = { Name = 'v_24_wrd_mesh_wardrobe' }, - ['1564163252'] = { Name = 'v_25_class' }, - ['18170909'] = { Name = 'v_25_classlights' }, - ['17772065'] = { Name = 'v_25_controldesk' }, - ['1380337534'] = { Name = 'v_25_controlequip' }, - ['-209410441'] = { Name = 'v_25_controlsm' }, - ['1739383993'] = { Name = 'v_25_drframes' }, - ['-1037454721'] = { Name = 'v_25_elevator01' }, - ['-1843146108'] = { Name = 'v_25_elevstuff' }, - ['-54985807'] = { Name = 'v_25_elvsigns' }, - ['2135871526'] = { Name = 'v_25_hallstuff' }, - ['-492507806'] = { Name = 'v_25_levnumbers' }, - ['1606277980'] = { Name = 'v_25_lights' }, - ['269655474'] = { Name = 'v_25_lowershad' }, - ['-1656796257'] = { Name = 'v_25_obsvclutter' }, - ['588246212'] = { Name = 'v_25_obsvdesks' }, - ['-327988289'] = { Name = 'v_25_obsvlights' }, - ['1468041919'] = { Name = 'v_25_obsvsm' }, - ['511332709'] = { Name = 'v_25_reflect' }, - ['-1001224229'] = { Name = 'v_25_security' }, - ['202947026'] = { Name = 'v_25_servdesk' }, - ['1593467078'] = { Name = 'v_25_servers' }, - ['-1300361013'] = { Name = 'v_25_servershad' }, - ['1889975915'] = { Name = 'v_25_servleds' }, - ['-465343651'] = { Name = 'v_25_servlights' }, - ['258494309'] = { Name = 'v_25_stair01' }, - ['1637479371'] = { Name = 'v_25_stair02' }, - ['1908708384'] = { Name = 'v_25_stair03' }, - ['1152530940'] = { Name = 'v_25_stair04' }, - ['1448729931'] = { Name = 'v_25_stair05' }, - ['-1323265301'] = { Name = 'v_25_stair06' }, - ['9501481'] = { Name = 'v_25_stairlights' }, - ['-482132128'] = { Name = 'v_25_stairshd' }, - ['2070880347'] = { Name = 'v_25_towelod' }, - ['546033372'] = { Name = 'v_25_towerdetail' }, - ['-796342916'] = { Name = 'v_25_towerglass' }, - ['-1337636393'] = { Name = 'v_25_towershell' }, - ['-118671513'] = { Name = 'v_25_upperhallsm' }, - ['-506765268'] = { Name = 'v_26_bed' }, - ['-1202347598'] = { Name = 'v_26_bedtidy' }, - ['-2117952008'] = { Name = 'v_26_bedtrash' }, - ['1870293098'] = { Name = 'v_26_beerbox' }, - ['1840741883'] = { Name = 'v_26_beerboxtidy' }, - ['1037932615'] = { Name = 'v_26_cablestidy' }, - ['-1812827506'] = { Name = 'v_26_cablesuntidy' }, - ['-1194799815'] = { Name = 'v_26_cablesuntidy001' }, - ['-1981025060'] = { Name = 'v_26_calcabletidy' }, - ['1709725248'] = { Name = 'v_26_calcableuntidy' }, - ['-487873922'] = { Name = 'v_26_calcableuntidy001' }, - ['1540570583'] = { Name = 'v_26_cophelmet1' }, - ['-1327241225'] = { Name = 'v_26_cophelmet2' }, - ['-1567241381'] = { Name = 'v_26_cophelmet3' }, - ['758584474'] = { Name = 'v_26_couch' }, - ['11454104'] = { Name = 'v_26_couchtidy' }, - ['-1075847792'] = { Name = 'v_26_couchtrash' }, - ['-854193425'] = { Name = 'v_26_cupboards' }, - ['1899775714'] = { Name = 'v_26_cupboards001' }, - ['-297201651'] = { Name = 'v_26_cupboardstidy' }, - ['-835344549'] = { Name = 'v_26_cupboardtidy' }, - ['-1635614244'] = { Name = 'v_26_cupboardtrash' }, - ['8573371'] = { Name = 'v_26_cupbrdstrash' }, - ['-913488004'] = { Name = 'v_26_ducttape' }, - ['-924198322'] = { Name = 'v_26_ducttapetidy' }, - ['-2076086656'] = { Name = 'v_26_ducttapetrash' }, - ['-668465980'] = { Name = 'v_26_glass005' }, - ['-1629023681'] = { Name = 'v_26_glass006' }, - ['-1258930595'] = { Name = 'v_26_glass007' }, - ['-1145254934'] = { Name = 'v_26_glass008' }, - ['-2000907963'] = { Name = 'v_26_glass1' }, - ['-1699269318'] = { Name = 'v_26_glass2' }, - ['1699727980'] = { Name = 'v_26_glass3' }, - ['2004446911'] = { Name = 'v_26_glass4' }, - ['-593345329'] = { Name = 'v_26_glasstidy004' }, - ['-1040083789'] = { Name = 'v_26_glasstidy1' }, - ['1986854279'] = { Name = 'v_26_glasstidy2' }, - ['-1846692728'] = { Name = 'v_26_glasstidy4' }, - ['-1458842090'] = { Name = 'v_26_halloverlay' }, - ['2013947472'] = { Name = 'v_26_halloverlaytidy' }, - ['1934612623'] = { Name = 'v_26_hallovertrash' }, - ['372022075'] = { Name = 'v_26_kitchen' }, - ['1521016027'] = { Name = 'v_26_kitchendirt' }, - ['-493485163'] = { Name = 'v_26_kitchendirttrash' }, - ['-318319411'] = { Name = 'v_26_kitchentidy' }, - ['546751371'] = { Name = 'v_26_kitchentrash' }, - ['1769101064'] = { Name = 'v_26_lamp002' }, - ['-966408441'] = { Name = 'v_26_lamp1' }, - ['-2133554814'] = { Name = 'v_26_lamp1trash' }, - ['1472529137'] = { Name = 'v_26_m_blanket1' }, - ['-1912115339'] = { Name = 'v_26_m_blanket2' }, - ['-719618660'] = { Name = 'v_26_m_blanket3' }, - ['-839843582'] = { Name = 'v_26_michaelsuit1' }, - ['-20716889'] = { Name = 'v_26_michaelsuit2' }, - ['-904038065'] = { Name = 'v_26_michaelsuit3' }, - ['47125023'] = { Name = 'v_26_mirror' }, - ['-1694780931'] = { Name = 'v_26_mirror002' }, - ['560616265'] = { Name = 'v_26_mirrortrash' }, - ['-1576934409'] = { Name = 'v_26_overlays' }, - ['542297926'] = { Name = 'v_26_overlaystidy' }, - ['-1666506794'] = { Name = 'v_26_overlaytrash' }, - ['867390936'] = { Name = 'v_26_reflectdirty' }, - ['1026631985'] = { Name = 'v_26_reflecttidy' }, - ['1690922153'] = { Name = 'v_26_reflecttrashed' }, - ['-1104612259'] = { Name = 'v_26_shadowmap' }, - ['1088018973'] = { Name = 'v_26_shadowtidy' }, - ['584651306'] = { Name = 'v_26_shadowtrash' }, - ['-1580452763'] = { Name = 'v_26_toilet' }, - ['-329833299'] = { Name = 'v_26_toiletlight' }, - ['-193476971'] = { Name = 'v_26_toiletlighttidy' }, - ['1288996541'] = { Name = 'v_26_toiletlighttrash' }, - ['-785913333'] = { Name = 'v_26_toilettdirt' }, - ['-1817935674'] = { Name = 'v_26_toilettdirttrash' }, - ['-1439437256'] = { Name = 'v_26_toilettidy' }, - ['-1783090544'] = { Name = 'v_26_toilettrash' }, - ['-739040335'] = { Name = 'v_26_trailerint' }, - ['1750601708'] = { Name = 'v_26_trailerinttidy' }, - ['808205375'] = { Name = 'v_26_trailertrashint' }, - ['1004991743'] = { Name = 'v_26_walllampson' }, - ['1332341881'] = { Name = 'v_26_walllampson001' }, - ['-1798927883'] = { Name = 'v_26_walllamptrashon' }, - ['-1542956570'] = { Name = 'v_26_wardrobe' }, - ['-1700517986'] = { Name = 'v_26_wardrobetidy' }, - ['783579691'] = { Name = 'v_26_wardrobetrash' }, - ['-1318376588'] = { Name = 'v_26_windframes' }, - ['1489342121'] = { Name = 'v_26_windframestrash' }, - ['-1972733118'] = { Name = 'v_26_windowday' }, - ['691348495'] = { Name = 'v_26_windowday001' }, - ['756507526'] = { Name = 'v_26_windowdaytrash' }, - ['1605750980'] = { Name = 'v_26_winframetidy' }, - ['-1801952018'] = { Name = 'v_27_boxpile1' }, - ['-1261922187'] = { Name = 'v_27_epsilonism_ao' }, - ['1909763355'] = { Name = 'v_27_epsilonism_dt' }, - ['1411318270'] = { Name = 'v_27_epsilonism_extras' }, - ['-1422648916'] = { Name = 'v_27_epsilonism_ol' }, - ['1543636467'] = { Name = 'v_27_epsilonism_reflect' }, - ['481153748'] = { Name = 'v_27_epsilonism_shell' }, - ['1994422648'] = { Name = 'v_27_epsilonism_stuff' }, - ['332890911'] = { Name = 'v_28_alrm_case002' }, - ['639182754'] = { Name = 'v_28_alrm_case003' }, - ['2119555098'] = { Name = 'v_28_alrm_case004' }, - ['-1868268361'] = { Name = 'v_28_alrm_case005' }, - ['1564022241'] = { Name = 'v_28_alrm_case006' }, - ['-1235040205'] = { Name = 'v_28_alrm_case007' }, - ['-944936248'] = { Name = 'v_28_alrm_case008' }, - ['-1830878932'] = { Name = 'v_28_alrm_case009' }, - ['536123101'] = { Name = 'v_28_alrm_case010' }, - ['1494681889'] = { Name = 'v_28_alrm_case011' }, - ['1800711580'] = { Name = 'v_28_alrm_case012' }, - ['-1228520310'] = { Name = 'v_28_alrm_case013' }, - ['-930322410'] = { Name = 'v_28_alrm_case014' }, - ['-1578362154'] = { Name = 'v_28_alrm_case015' }, - ['-1272004773'] = { Name = 'v_28_alrm_case016' }, - ['-504288583'] = { Name = 'v_28_an1_deca' }, - ['-1302875366'] = { Name = 'v_28_an1_deta' }, - ['-91625412'] = { Name = 'v_28_an1_dirt' }, - ['-2131285395'] = { Name = 'v_28_an1_over' }, - ['665460296'] = { Name = 'v_28_an1_refl' }, - ['-889348411'] = { Name = 'v_28_an1_shut' }, - ['-425807828'] = { Name = 'v_28_an2_deca' }, - ['1783640636'] = { Name = 'v_28_an2_deta' }, - ['362267165'] = { Name = 'v_28_an2_dirt' }, - ['1297881980'] = { Name = 'v_28_an2_refl' }, - ['69949604'] = { Name = 'v_28_an2_shut' }, - ['1194273342'] = { Name = 'v_28_backlab_deta' }, - ['1694543848'] = { Name = 'v_28_backlab_refl' }, - ['-200730299'] = { Name = 'v_28_blab_dirt' }, - ['34154482'] = { Name = 'v_28_blab_over' }, - ['804918584'] = { Name = 'v_28_coldr_deta' }, - ['-1434323558'] = { Name = 'v_28_coldr_dirt' }, - ['-488407274'] = { Name = 'v_28_coldr_glass1' }, - ['-2077507176'] = { Name = 'v_28_coldr_glass2' }, - ['1977558271'] = { Name = 'v_28_coldr_glass3' }, - ['-98685561'] = { Name = 'v_28_coldr_glass4' }, - ['1767896228'] = { Name = 'v_28_coldr_over' }, - ['1868477278'] = { Name = 'v_28_coldr_refl' }, - ['340001409'] = { Name = 'v_28_corr_deta' }, - ['-962636934'] = { Name = 'v_28_corr_dirt' }, - ['-608743099'] = { Name = 'v_28_corr_over' }, - ['-597522645'] = { Name = 'v_28_corr_refl' }, - ['-514027226'] = { Name = 'v_28_gua2_deta' }, - ['-832341701'] = { Name = 'v_28_gua2_dirt' }, - ['827829926'] = { Name = 'v_28_gua2_over' }, - ['-965968944'] = { Name = 'v_28_gua2_refl' }, - ['-714592523'] = { Name = 'v_28_guard1_deta' }, - ['300413684'] = { Name = 'v_28_guard1_dirt' }, - ['-1296722956'] = { Name = 'v_28_guard1_over' }, - ['-157081729'] = { Name = 'v_28_guard1_refl' }, - ['327282338'] = { Name = 'v_28_ha1_cover' }, - ['572465687'] = { Name = 'v_28_ha1_cover001' }, - ['-2020977827'] = { Name = 'v_28_ha1_deca' }, - ['1285606275'] = { Name = 'v_28_ha1_deta' }, - ['-1086997870'] = { Name = 'v_28_ha1_dirt' }, - ['-100593278'] = { Name = 'v_28_ha1_refl' }, - ['-1470028723'] = { Name = 'v_28_ha1_step' }, - ['211609731'] = { Name = 'v_28_ha2_deca' }, - ['-1813155210'] = { Name = 'v_28_ha2_deta' }, - ['-543607668'] = { Name = 'v_28_ha2_dirt' }, - ['406125197'] = { Name = 'v_28_ha2_refl' }, - ['260450705'] = { Name = 'v_28_ha2_ste1' }, - ['10324924'] = { Name = 'v_28_ha2_ste2' }, - ['-272141034'] = { Name = 'v_28_hazmat1_deta' }, - ['559721213'] = { Name = 'v_28_hazmat1_dirt' }, - ['-987066264'] = { Name = 'v_28_hazmat1_over' }, - ['-1588074584'] = { Name = 'v_28_hazmat1_refl' }, - ['-521344584'] = { Name = 'v_28_hazmat2_deta' }, - ['-1176914998'] = { Name = 'v_28_hazmat2_dirt' }, - ['696079846'] = { Name = 'v_28_hazmat2_over' }, - ['680555297'] = { Name = 'v_28_hazmat2_refl' }, - ['-2088621436'] = { Name = 'v_28_lab_end' }, - ['-1302533415'] = { Name = 'v_28_lab_gar_dcl_01' }, - ['1028035968'] = { Name = 'v_28_lab_poen_deta' }, - ['-1111357348'] = { Name = 'v_28_lab_poen_pipe' }, - ['319419628'] = { Name = 'v_28_lab_pool_deta' }, - ['-1415744276'] = { Name = 'v_28_lab_pool_ladd' }, - ['-638975089'] = { Name = 'v_28_lab_pool_wat1' }, - ['-1384013695'] = { Name = 'v_28_lab_pool' }, - ['-1404084774'] = { Name = 'v_28_lab_poolshell' }, - ['-1964189383'] = { Name = 'v_28_lab_shell1' }, - ['181491968'] = { Name = 'v_28_lab_shell2' }, - ['77809468'] = { Name = 'v_28_lab_trellis' }, - ['-1962787629'] = { Name = 'v_28_lab1_deta' }, - ['-190848797'] = { Name = 'v_28_lab1_dirt' }, - ['-232027236'] = { Name = 'v_28_lab1_glas' }, - ['1603279933'] = { Name = 'v_28_lab1_glass' }, - ['-949321871'] = { Name = 'v_28_lab1_over' }, - ['564741461'] = { Name = 'v_28_lab1_refl' }, - ['1162521091'] = { Name = 'v_28_lab2_deta' }, - ['-757587924'] = { Name = 'v_28_lab2_dirt' }, - ['-689312037'] = { Name = 'v_28_lab2_over' }, - ['521205889'] = { Name = 'v_28_lab2_refl' }, - ['16013419'] = { Name = 'v_28_loa_deta' }, - ['-2005236848'] = { Name = 'v_28_loa_deta2' }, - ['-2086014198'] = { Name = 'v_28_loa_dirt' }, - ['-265195438'] = { Name = 'v_28_loa_lamp' }, - ['-1230616791'] = { Name = 'v_28_loa_over' }, - ['241954321'] = { Name = 'v_28_loa_refl' }, - ['-689267634'] = { Name = 'v_28_monkeyt_deta' }, - ['-858316370'] = { Name = 'v_28_monkeyt_dirt' }, - ['1124455535'] = { Name = 'v_28_monkeyt_over' }, - ['-861973630'] = { Name = 'v_28_monkeyt_refl' }, - ['-460342601'] = { Name = 'v_28_pool_deca' }, - ['796422397'] = { Name = 'v_28_pool_dirt' }, - ['-2027003491'] = { Name = 'v_28_pr1_deca' }, - ['1269601626'] = { Name = 'v_28_pr1_deta' }, - ['260842506'] = { Name = 'v_28_pr1_dirt' }, - ['164977034'] = { Name = 'v_28_pr1_refl' }, - ['-284315258'] = { Name = 'v_28_pr2_deca' }, - ['1367672895'] = { Name = 'v_28_pr2_deta' }, - ['977503839'] = { Name = 'v_28_pr2_dirt' }, - ['-1852856656'] = { Name = 'v_28_pr2_refl' }, - ['-452874694'] = { Name = 'v_28_pra_deca' }, - ['-136297901'] = { Name = 'v_28_pra_deta' }, - ['1305628999'] = { Name = 'v_28_pra_dirt' }, - ['-75452171'] = { Name = 'v_28_pra_refl' }, - ['300580010'] = { Name = 'v_28_prh_deca' }, - ['-134886226'] = { Name = 'v_28_prh_deta' }, - ['-1037992190'] = { Name = 'v_28_prh_dirt' }, - ['457061302'] = { Name = 'v_28_prh_refl' }, - ['-180738643'] = { Name = 'v_28_prh_shut' }, - ['882433006'] = { Name = 'v_28_prh_strs' }, - ['1097610739'] = { Name = 'v_28_steps_2' }, - ['488548103'] = { Name = 'v_28_wascor_deta' }, - ['560768807'] = { Name = 'v_28_wascor_dirt' }, - ['-940725559'] = { Name = 'v_28_wascor_over' }, - ['-1569357934'] = { Name = 'v_28_wasele_deta' }, - ['1867271850'] = { Name = 'v_28_wasele_dirt' }, - ['813359581'] = { Name = 'v_28_wasele_refl' }, - ['1040040142'] = { Name = 'v_28_waste_deta' }, - ['-468647901'] = { Name = 'v_28_waste_dirt' }, - ['695541702'] = { Name = 'v_28_waste_over' }, - ['-313084079'] = { Name = 'v_28_waste_refl' }, - ['-1183091144'] = { Name = 'v_28_wastecor_refl' }, - ['-1081348873'] = { Name = 'v_29_arc_furnace_doors' }, - ['-1667463119'] = { Name = 'v_29_arcfurnace' }, - ['-933537414'] = { Name = 'v_29_arcfurnpipes' }, - ['-492337262'] = { Name = 'v_29_arcfurnplat' }, - ['1124788726'] = { Name = 'v_29_arcfurnplat001' }, - ['-1782346946'] = { Name = 'v_29_arfurnplat' }, - ['-2097535211'] = { Name = 'v_29_bigcontainer' }, - ['2059898358'] = { Name = 'v_29_bigendblocks' }, - ['-2057633615'] = { Name = 'v_29_bigwallsheet1' }, - ['-830609035'] = { Name = 'v_29_chalk_dcals' }, - ['1595352207'] = { Name = 'v_29_contmetcabs' }, - ['-1592889616'] = { Name = 'v_29_controlbits' }, - ['685990166'] = { Name = 'v_29_controom' }, - ['-798081435'] = { Name = 'v_29_crucibles' }, - ['665817703'] = { Name = 'v_29_doors002' }, - ['1854399689'] = { Name = 'v_29_dustsheet02' }, - ['1379473356'] = { Name = 'v_29_emwindows' }, - ['1500346689'] = { Name = 'v_29_fllorplates' }, - ['711050622'] = { Name = 'v_29_foucontopertor' }, - ['903896472'] = { Name = 'v_29_founbenches' }, - ['-1720388292'] = { Name = 'v_29_founcastplat003' }, - ['-183929767'] = { Name = 'v_29_founcontconsol' }, - ['-1867289395'] = { Name = 'v_29_found_blobs' }, - ['-977313178'] = { Name = 'v_29_found_contr_dr' }, - ['-264732331'] = { Name = 'v_29_found_dustpiles' }, - ['-2046902820'] = { Name = 'v_29_found_glue' }, - ['1603404705'] = { Name = 'v_29_found_ref_prox' }, - ['1906302965'] = { Name = 'v_29_found_safety' }, - ['-282740942'] = { Name = 'v_29_foundarches001' }, - ['-546012987'] = { Name = 'v_29_foundbackdirt' }, - ['2037471314'] = { Name = 'v_29_foundbucket' }, - ['1389963181'] = { Name = 'v_29_foundcontdirt' }, - ['1768048980'] = { Name = 'v_29_foundcontrolcables' }, - ['-52041177'] = { Name = 'v_29_foundcontrolpornetc' }, - ['-79248749'] = { Name = 'v_29_foundentsigns' }, - ['-2121990711'] = { Name = 'v_29_foundentsigns2' }, - ['744831916'] = { Name = 'v_29_foundentsignsmainrm' }, - ['344780549'] = { Name = 'v_29_foundfurn_steps' }, - ['-390176336'] = { Name = 'v_29_foundlightcovers' }, - ['2143713901'] = { Name = 'v_29_foundlightcovers2' }, - ['-1564403087'] = { Name = 'v_29_foundmachbits' }, - ['1991987322'] = { Name = 'v_29_foundmachdirt' }, - ['-908241497'] = { Name = 'v_29_foundmachgirds' }, - ['-918305686'] = { Name = 'v_29_foundmachleccy' }, - ['-1564084549'] = { Name = 'v_29_foundmachwall' }, - ['1062119872'] = { Name = 'v_29_foundpipes' }, - ['-301785619'] = { Name = 'v_29_foundpipesupps' }, - ['1158380907'] = { Name = 'v_29_foundry_stairs' }, - ['-1921514612'] = { Name = 'v_29_foundrybackent' }, - ['216154794'] = { Name = 'v_29_foundryfloorbits' }, - ['196231839'] = { Name = 'v_29_foundryshell' }, - ['670814657'] = { Name = 'v_29_foundshieldpans' }, - ['930629662'] = { Name = 'v_29_foundslag001' }, - ['2114708923'] = { Name = 'v_29_foundsmllrmlocks' }, - ['935314090'] = { Name = 'v_29_foundtallcasts' }, - ['-1664309252'] = { Name = 'v_29_foundtoprmgirs' }, - ['-1107271703'] = { Name = 'v_29_foundtopstairs' }, - ['-791424195'] = { Name = 'v_29_founligths001' }, - ['-1301345160'] = { Name = 'v_29_founmaingant' }, - ['-1837276152'] = { Name = 'v_29_founmetplates' }, - ['-344938666'] = { Name = 'v_29_founsmllelec' }, - ['-1742995145'] = { Name = 'v_29_founsmllrmdirt' }, - ['695041733'] = { Name = 'v_29_founsmlrrmbench' }, - ['-262559910'] = { Name = 'v_29_fouondmachbitsmore' }, - ['-1187661967'] = { Name = 'v_29_funrplatshads' }, - ['-71390663'] = { Name = 'v_29_furnace_cables' }, - ['-1822626051'] = { Name = 'v_29_furnaceslag' }, - ['-1529564943'] = { Name = 'v_29_gantry_crucibles' }, - ['-662296789'] = { Name = 'v_29_gantrybarriers' }, - ['-889624009'] = { Name = 'v_29_girderwear' }, - ['1914295006'] = { Name = 'v_29_glue_crnr_in004' }, - ['1582559974'] = { Name = 'v_29_highbits' }, - ['2125976000'] = { Name = 'v_29_hut_cover' }, - ['-1977524103'] = { Name = 'v_29_ladder' }, - ['-1640506572'] = { Name = 'v_29_mainsupportgiders' }, - ['811690915'] = { Name = 'v_29_millrollback' }, - ['2085043658'] = { Name = 'v_29_millrollbody' }, - ['-1681320469'] = { Name = 'v_29_molten_metal' }, - ['-895178168'] = { Name = 'v_29_more_metalbits' }, - ['-1172848632'] = { Name = 'v_29_morecasts' }, - ['-395568870'] = { Name = 'v_29_nearcover' }, - ['-824933463'] = { Name = 'v_29_pithighbit' }, - ['848101617'] = { Name = 'v_29_rails' }, - ['1960159698'] = { Name = 'v_29_rollergantry' }, - ['845799425'] = { Name = 'v_29_sideroom' }, - ['779210579'] = { Name = 'v_29_sidestairs' }, - ['1503124072'] = { Name = 'v_29_smallcasts' }, - ['-300214313'] = { Name = 'v_29_smallcastsmore001' }, - ['-417219359'] = { Name = 'v_29_tanksteps' }, - ['70885467'] = { Name = 'v_29_underfunrcover' }, - ['-1492990560'] = { Name = 'v_29_vfx_ripple_mesh_skin' }, - ['427313124'] = { Name = 'v_3_jrm_over_decal' }, - ['916940396'] = { Name = 'v_3_jrm_over_normal' }, - ['-502341461'] = { Name = 'v_3_jrm_over_shadow' }, - ['1393877739'] = { Name = 'v_3_knt_mesh_delta' }, - ['-1034951235'] = { Name = 'v_3_knt_mesh_units' }, - ['-706949898'] = { Name = 'v_3_ktn_mesh_windows' }, - ['1612988969'] = { Name = 'v_3_lng_mesh_coats' }, - ['-1173988616'] = { Name = 'v_3_lng_mesh_delta' }, - ['1954210094'] = { Name = 'v_3_lng_mesh_magazines' }, - ['-1102952484'] = { Name = 'v_3_lng_mesh_timed' }, - ['-1990154022'] = { Name = 'v_3_lng_mesh_timed2' }, - ['-1565816879'] = { Name = 'v_3_lng_mesh_walldelta' }, - ['-780138613'] = { Name = 'v_3_lng_mesh_windows' }, - ['-1260370912'] = { Name = 'v_3_main_mesh_blinds' }, - ['502293730'] = { Name = 'v_3_main_mesh_chair' }, - ['-170356467'] = { Name = 'v_3_main_mesh_fdframe' }, - ['1151598458'] = { Name = 'v_3_main_mesh_fridge' }, - ['-959592644'] = { Name = 'v_3_shell' }, - ['1234388009'] = { Name = 'v_31_andyblend5' }, - ['941924684'] = { Name = 'v_31_andyblend6' }, - ['595976997'] = { Name = 'v_31_cablemesh5785278_hvstd' }, - ['-1271100996'] = { Name = 'v_31_cablemesh5785279_hvstd' }, - ['-868003203'] = { Name = 'v_31_cablemesh5785280_hvstd' }, - ['749206077'] = { Name = 'v_31_cablemesh5785282_hvstd' }, - ['-437253630'] = { Name = 'v_31_cablemesh5785283_hvstd' }, - ['-1480879683'] = { Name = 'v_31_cablemesh5785284_hvstd' }, - ['-753485989'] = { Name = 'v_31_cablemesh5785285_hvstd' }, - ['-2055829619'] = { Name = 'v_31_cablemesh5785286_hvstd' }, - ['1811945054'] = { Name = 'v_31_cablemesh5785287_hvstd' }, - ['-1675132279'] = { Name = 'v_31_cablemesh5785290_hvstd' }, - ['-2140922932'] = { Name = 'v_31_crappy_ramp' }, - ['-425959820'] = { Name = 'v_31_elec_supports' }, - ['611945820'] = { Name = 'v_31_electricityyparetn' }, - ['-446120734'] = { Name = 'v_31_emmisve_ext' }, - ['870200611'] = { Name = 'v_31_emrglightnew011' }, - ['210618883'] = { Name = 'v_31_faked_water' }, - ['1234993118'] = { Name = 'v_31_flow_fork_ah1' }, - ['-957046808'] = { Name = 'v_31_flow1_0069' }, - ['1745115545'] = { Name = 'v_31_flow1_0079' }, - ['-1254267479'] = { Name = 'v_31_low_tun_extem' }, - ['1633664682'] = { Name = 'v_31_lowerwater' }, - ['219466248'] = { Name = 'v_31_metro_30_cables003' }, - ['-277485022'] = { Name = 'v_31_newtun_mech_05c' }, - ['281113821'] = { Name = 'v_31_newtun_sh' }, - ['-329826232'] = { Name = 'v_31_newtun01ol' }, - ['-1037963740'] = { Name = 'v_31_newtun01water' }, - ['-375385747'] = { Name = 'v_31_newtun01waterb' }, - ['1486215202'] = { Name = 'v_31_newtun1reflect' }, - ['-62974975'] = { Name = 'v_31_newtun2_mech_05a' }, - ['-719832311'] = { Name = 'v_31_newtun2mech_05b' }, - ['2106261611'] = { Name = 'v_31_newtun2ol' }, - ['-1914736329'] = { Name = 'v_31_newtun2reflect001' }, - ['-665470289'] = { Name = 'v_31_newtun2sh' }, - ['2063511553'] = { Name = 'v_31_newtun2water' }, - ['246036232'] = { Name = 'v_31_newtun3ol' }, - ['1646453100'] = { Name = 'v_31_newtun3sh' }, - ['-475589349'] = { Name = 'v_31_newtun4_lod' }, - ['1870570389'] = { Name = 'v_31_newtun4b_lod' }, - ['80863164'] = { Name = 'v_31_newtun4b_slod' }, - ['-926404390'] = { Name = 'v_31_newtun9_slod' }, - ['-1819466372'] = { Name = 'v_31_newtun9lod' }, - ['-836688414'] = { Name = 'v_31_station_curtains' }, - ['-1931704889'] = { Name = 'v_31_tun_06_reflect' }, - ['-1215413074'] = { Name = 'v_31_tun_06_refwater' }, - ['-745034820'] = { Name = 'v_31_tun_07_reflect' }, - ['-1829502865'] = { Name = 'v_31_tun_lod' }, - ['-1837018283'] = { Name = 'v_31_tun_slod' }, - ['1604343045'] = { Name = 'v_31_tun_swap_lod' }, - ['137638566'] = { Name = 'v_31_tun_swap_slod' }, - ['907122881'] = { Name = 'v_31_tun01_lod' }, - ['-1666288450'] = { Name = 'v_31_tun01_slod' }, - ['-77632756'] = { Name = 'v_31_tun05_reflect' }, - ['-2075493503'] = { Name = 'v_31_tun05' }, - ['2013763245'] = { Name = 'v_31_tun05b' }, - ['-1087953689'] = { Name = 'v_31_tun05f' }, - ['-1993561717'] = { Name = 'v_31_tun05gravelol' }, - ['320662412'] = { Name = 'v_31_tun05-overlay' }, - ['1896377258'] = { Name = 'v_31_tun05shadprox' }, - ['-567646228'] = { Name = 'v_31_tun05stationsign' }, - ['-686976062'] = { Name = 'v_31_tun06_floorol' }, - ['-68527136'] = { Name = 'v_31_tun06_olay' }, - ['1432788410'] = { Name = 'v_31_tun06' }, - ['-1710302865'] = { Name = 'v_31_tun06b' }, - ['-1750053561'] = { Name = 'v_31_tun06pipes' }, - ['1367414746'] = { Name = 'v_31_tun06scrapes' }, - ['-1899923256'] = { Name = 'v_31_tun07_olay' }, - ['1475584724'] = { Name = 'v_31_tun07' }, - ['-275019753'] = { Name = 'v_31_tun07b' }, - ['424660899'] = { Name = 'v_31_tun07b001' }, - ['-1638352705'] = { Name = 'v_31_tun07bgate' }, - ['-964232399'] = { Name = 'v_31_tun08_olay' }, - ['-1228545929'] = { Name = 'v_31_tun08' }, - ['637728693'] = { Name = 'v_31_tun08reflect' }, - ['-1988950574'] = { Name = 'v_31_tun09' }, - ['-2068173882'] = { Name = 'v_31_tun09b' }, - ['861536970'] = { Name = 'v_31_tun09bol' }, - ['-1289237161'] = { Name = 'v_31_tun09junk005' }, - ['-1665195842'] = { Name = 'v_31_tun09junk009' }, - ['734245792'] = { Name = 'v_31_tun09junk009a' }, - ['1654593396'] = { Name = 'v_31_tun09junk2' }, - ['-419720215'] = { Name = 'v_31_tun09reflect' }, - ['-1958366748'] = { Name = 'v_31_tun10_gridnew' }, - ['-1202313901'] = { Name = 'v_31_tun10_olay' }, - ['-173271594'] = { Name = 'v_31_tun10_olaynew' }, - ['-2039085289'] = { Name = 'v_31_tun10new' }, - ['-4064799'] = { Name = 'v_31_tune06_newols' }, - ['-571185952'] = { Name = 'v_31_tune06_newols001' }, - ['308090142'] = { Name = 'v_31_walltext001' }, - ['-1780868074'] = { Name = 'v_31_walltext002' }, - ['-1520321755'] = { Name = 'v_31_walltext003' }, - ['-941653984'] = { Name = 'v_31_walltext005' }, - ['1782006993'] = { Name = 'v_31_walltext006' }, - ['2016141498'] = { Name = 'v_31_walltext007' }, - ['-1665816111'] = { Name = 'v_31_walltext009' }, - ['806374692'] = { Name = 'v_31_walltext010' }, - ['591442821'] = { Name = 'v_31_walltext012' }, - ['-176138239'] = { Name = 'v_31_walltext013' }, - ['1992546954'] = { Name = 'v_31_walltext014' }, - ['-1995800809'] = { Name = 'v_31_walltext015' }, - ['1245315447'] = { Name = 'v_31_walltext016' }, - ['1552131594'] = { Name = 'v_31_walltext017' }, - ['-1842704041'] = { Name = 'v_31_walltext018' }, - ['-1536936502'] = { Name = 'v_31_walltext019' }, - ['685064142'] = { Name = 'v_31_walltext020' }, - ['389094534'] = { Name = 'v_31_walltext021' }, - ['2028920832'] = { Name = 'v_31_walltext022' }, - ['1823885199'] = { Name = 'v_31_walltext023' }, - ['1584147195'] = { Name = 'v_31_walltext024' }, - ['1344704112'] = { Name = 'v_31_walltext025' }, - ['-1235690797'] = { Name = 'v_31_walltext026' }, - ['-1474740652'] = { Name = 'v_31_walltext027' }, - ['-1746690583'] = { Name = 'v_31_walltext028' }, - ['86017921'] = { Name = 'v_31_walltext031' }, - ['926395044'] = { Name = 'v_31a_cablemesh5777513_thvy' }, - ['1194913501'] = { Name = 'v_31a_cablemesh5777640_thvy' }, - ['-1185852742'] = { Name = 'v_31a_cablemesh5777641_thvy' }, - ['-291748668'] = { Name = 'v_31a_cablemesh5777642_thvy' }, - ['-1343376167'] = { Name = 'v_31a_cablemesh5777643_thvy' }, - ['1611178223'] = { Name = 'v_31a_cablemesh5777644_thvy' }, - ['657869656'] = { Name = 'v_31a_cablemesh5777645_thvy' }, - ['1817108743'] = { Name = 'v_31a_cablemesh5777646_thvy' }, - ['264665862'] = { Name = 'v_31a_cablemesh5777647_thvy' }, - ['-1873966622'] = { Name = 'v_31a_cablemesh5777648_thvy' }, - ['-2088061485'] = { Name = 'v_31a_cablemesh5777663_thvy' }, - ['-552805389'] = { Name = 'v_31a_cablemesh5777678_thvy' }, - ['-2140745166'] = { Name = 'v_31a_cablemesh5777693_thvy' }, - ['619662689'] = { Name = 'v_31a_cablemesh5777750_thvy' }, - ['923751592'] = { Name = 'v_31a_cablemesh5777751_thvy' }, - ['-727671172'] = { Name = 'v_31a_cablemesh5777752_thvy' }, - ['1365713058'] = { Name = 'v_31a_cablemesh5777753_thvy' }, - ['-2123871722'] = { Name = 'v_31a_ducttape' }, - ['-145238022'] = { Name = 'v_31a_emrglight005' }, - ['1103817947'] = { Name = 'v_31a_emrglight007' }, - ['-821650364'] = { Name = 'v_31a_emrglightnew' }, - ['1342497894'] = { Name = 'v_31a_highvizjackets' }, - ['-1337478021'] = { Name = 'v_31a_highvizjackets001' }, - ['1142807123'] = { Name = 'v_31a_jh_steps' }, - ['1728975675'] = { Name = 'v_31a_jh_tun_plastic' }, - ['1005618224'] = { Name = 'v_31a_jh_tunn_01a' }, - ['607572965'] = { Name = 'v_31a_jh_tunn_02a' }, - ['-647020973'] = { Name = 'v_31a_jh_tunn_02b' }, - ['-944989490'] = { Name = 'v_31a_jh_tunn_02c' }, - ['1883007971'] = { Name = 'v_31a_jh_tunn_02x' }, - ['-1044651449'] = { Name = 'v_31a_jh_tunn_03aextra' }, - ['-108474430'] = { Name = 'v_31a_jh_tunn_03b' }, - ['58188704'] = { Name = 'v_31a_jh_tunn_03c' }, - ['-1895171382'] = { Name = 'v_31a_jh_tunn_03d' }, - ['1619205565'] = { Name = 'v_31a_jh_tunn_03e' }, - ['1774006321'] = { Name = 'v_31a_jh_tunn_03f' }, - ['1006458034'] = { Name = 'v_31a_jh_tunn_03g' }, - ['-1141713765'] = { Name = 'v_31a_jh_tunn_03h' }, - ['-599574780'] = { Name = 'v_31a_jh_tunn_03wood' }, - ['1676007256'] = { Name = 'v_31a_jh_tunn_04b_ducktape' }, - ['-1404226508'] = { Name = 'v_31a_jh_tunn_04b' }, - ['322961952'] = { Name = 'v_31a_jh_tunn_04d' }, - ['701902668'] = { Name = 'v_31a_jh_tunn_04e' }, - ['-254526143'] = { Name = 'v_31a_jh_tunn_04f' }, - ['1795680809'] = { Name = 'v_31a_jh_tunnground' }, - ['-1131010595'] = { Name = 'v_31a_newtun4shpile008' }, - ['5881234'] = { Name = 'v_31a_ootside_bit' }, - ['152249940'] = { Name = 'v_31a_reflectionbox' }, - ['698624196'] = { Name = 'v_31a_reflectionbox2' }, - ['-933422270'] = { Name = 'v_31a_reftun2' }, - ['1219213886'] = { Name = 'v_31a_start_tun_cable_bits' }, - ['1085109131'] = { Name = 'v_31a_start_tun_cable_bits2' }, - ['423544064'] = { Name = 'v_31a_start_tun_roombits1' }, - ['-857049291'] = { Name = 'v_31a_tun_01_shadowbox' }, - ['802441001'] = { Name = 'v_31a_tun_03frame' }, - ['1432689644'] = { Name = 'v_31a_tun_05fakelod' }, - ['78367476'] = { Name = 'v_31a_tun_puds' }, - ['-795124420'] = { Name = 'v_31a_tun_tarp_tower' }, - ['-1228183513'] = { Name = 'v_31a_tun_tarp' }, - ['-898703047'] = { Name = 'v_31a_tun01_ovly' }, - ['1126566546'] = { Name = 'v_31a_tun01_shpile' }, - ['-1687713124'] = { Name = 'v_31a_tun01_shpile2' }, - ['-186791536'] = { Name = 'v_31a_tun01' }, - ['-1202557391'] = { Name = 'v_31a_tun01bitsnew' }, - ['-706105139'] = { Name = 'v_31a_tun01bitsnew2' }, - ['1040445526'] = { Name = 'v_31a_tun01rocks' }, - ['1278842581'] = { Name = 'v_31a_tun01rocks2' }, - ['1615460244'] = { Name = 'v_31a_tun02_fakelod' }, - ['110914829'] = { Name = 'v_31a_tun02' }, - ['739412168'] = { Name = 'v_31a_tun02bits_dirtol' }, - ['-847009626'] = { Name = 'v_31a_tun02bits' }, - ['1088879344'] = { Name = 'v_31a_tun02rocks' }, - ['1347721388'] = { Name = 'v_31a_tun03_over2a' }, - ['-1088653766'] = { Name = 'v_31a_tun03_over2b' }, - ['-1396518521'] = { Name = 'v_31a_tun03_over2c' }, - ['-1684885721'] = { Name = 'v_31a_tun03_over2d' }, - ['-1990456646'] = { Name = 'v_31a_tun03_over2e' }, - ['-798293845'] = { Name = 'v_31a_tun03' }, - ['-1169679489'] = { Name = 'v_31a_tun03i' }, - ['-1125048111'] = { Name = 'v_31a_tun03j' }, - ['363024948'] = { Name = 'v_31a_tun03k' }, - ['678819801'] = { Name = 'v_31a_tun03l' }, - ['-126740526'] = { Name = 'v_31a_tun03m' }, - ['161495598'] = { Name = 'v_31a_tun03n' }, - ['1138044567'] = { Name = 'v_31a_tun03o' }, - ['1695314181'] = { Name = 'v_31a_tun03p' }, - ['-684724948'] = { Name = 'v_31a_tun04_olay' }, - ['1255559870'] = { Name = 'v_31a_tunn_02_ovlay' }, - ['489286680'] = { Name = 'v_31a_tunnelsheeting' }, - ['-1927051973'] = { Name = 'v_31a_tunnerl_diger' }, - ['-1963645811'] = { Name = 'v_31a_tunreflect' }, - ['1904327311'] = { Name = 'v_31a_tunroof_01' }, - ['-246631913'] = { Name = 'v_31a_tunspoxyshadow' }, - ['-1305687387'] = { Name = 'v_31a_tunswap_dirt' }, - ['1027317983'] = { Name = 'v_31a_tunswap_fakelod' }, - ['1847946085'] = { Name = 'v_31a_tunswap_girders' }, - ['-1237471119'] = { Name = 'v_31a_tunswap_ground' }, - ['-806208216'] = { Name = 'v_31a_tunswap_plastic' }, - ['-2125221273'] = { Name = 'v_31a_tunswap_platforms' }, - ['1748792359'] = { Name = 'v_31a_tunswap_puds' }, - ['1216627055'] = { Name = 'v_31a_tunswap_reflection' }, - ['-696679295'] = { Name = 'v_31a_tunswap_rocks' }, - ['-116732144'] = { Name = 'v_31a_tunswap_shad_proxy' }, - ['-1425130734'] = { Name = 'v_31a_tunswap_sheet' }, - ['1324002801'] = { Name = 'v_31a_tunswap_steps' }, - ['-1213969775'] = { Name = 'v_31a_tunswap_tarp' }, - ['-1677377795'] = { Name = 'v_31a_tunswap_tower' }, - ['1129520978'] = { Name = 'v_31a_tunswapbitofcrap' }, - ['-359378585'] = { Name = 'v_31a_tunswapbits' }, - ['-1710468359'] = { Name = 'v_31a_tunswaphit1' }, - ['2115345573'] = { Name = 'v_31a_tunswaplight1' }, - ['1758687777'] = { Name = 'v_31a_tunswaplight2' }, - ['461721008'] = { Name = 'v_31a_tunswapover1' }, - ['-2094144548'] = { Name = 'v_31a_tunswaptunroof' }, - ['750404304'] = { Name = 'v_31a_tunswapwalls' }, - ['-495936384'] = { Name = 'v_31a_tunswapwallthing' }, - ['400569107'] = { Name = 'v_31a_tuntobankol' }, - ['1844303495'] = { Name = 'v_31a_v_tunnels_01b' }, - ['1656358496'] = { Name = 'v_31a_walltext029' }, - ['2108226521'] = { Name = 'v_31b_andyblend2' }, - ['1657718309'] = { Name = 'v_31b_andyblend3' }, - ['187078358'] = { Name = 'v_31b_andyblend4' }, - ['2027262804'] = { Name = 'v_31b_jh_tunn_03aextra001' }, - ['-1726277386'] = { Name = 'v_31b_newtun3reflect' }, - ['-441614056'] = { Name = 'v_31b_newtun3shadowbox' }, - ['-81634067'] = { Name = 'v_31b_newtun4ol' }, - ['-1196417417'] = { Name = 'v_31b_newtun4olblnd' }, - ['-620830723'] = { Name = 'v_31b_newtun4reflect' }, - ['-696018832'] = { Name = 'v_31b_newtun4sh' }, - ['499306796'] = { Name = 'v_31b_newtun4shadowbox' }, - ['-1148363654'] = { Name = 'v_31b_newtun4shadowbox2' }, - ['1364058142'] = { Name = 'v_31b_newtun4shpile002' }, - ['-911028182'] = { Name = 'v_31b_newtun4shpile010' }, - ['863825650'] = { Name = 'v_31b_newtun4water' }, - ['251145666'] = { Name = 'v_31b_newtun5_shadowbox' }, - ['2117954539'] = { Name = 'v_31b_newtun5ol' }, - ['-141344393'] = { Name = 'v_31b_newtun5water' }, - ['-1234875603'] = { Name = 'v_31b_newtun6ol' }, - ['-1647798784'] = { Name = 'v_31b_newtun6sh' }, - ['-622256408'] = { Name = 'v_31b_newtun7ol' }, - ['348535805'] = { Name = 'v_31b_newtun7sh' }, - ['-739197086'] = { Name = 'v_31b_newtun8ol' }, - ['-1451349104'] = { Name = 'v_31b_newtun8refectbox' }, - ['-709736427'] = { Name = 'v_31b_newtun8sh' }, - ['-2141150521'] = { Name = 'v_31b_newtun9ol' }, - ['-916052313'] = { Name = 'v_31b_newtun9ol2' }, - ['1316733902'] = { Name = 'v_31b_newtun9sh' }, - ['2138038403'] = { Name = 'v_31b_sewerpipes' }, - ['-1878483906'] = { Name = 'v_33_cur_of1_blin' }, - ['1944903413'] = { Name = 'v_33_cur_of1_deta' }, - ['1232352172'] = { Name = 'v_33_cur_of2_blin' }, - ['43217600'] = { Name = 'v_33_cur_of2_ceil' }, - ['-1404247306'] = { Name = 'v_33_cur_of2_deta' }, - ['1217365661'] = { Name = 'v_33_cur_of3_blin' }, - ['-722659768'] = { Name = 'v_33_cur_of3_blin001' }, - ['-1888311637'] = { Name = 'v_33_cur_of3_ceil' }, - ['-2072905430'] = { Name = 'v_33_cur_of3_ceil001' }, - ['1395535837'] = { Name = 'v_33_cur_of3_deta' }, - ['-1413207708'] = { Name = 'v_33_cur_of3_deta001' }, - ['733027250'] = { Name = 'v_33_cur_shell' }, - ['-100627722'] = { Name = 'v_33_shadowbox' }, - ['1870493881'] = { Name = 'v_33_sm_ao_det' }, - ['1489897722'] = { Name = 'v_33_v_int_33_refonly' }, - ['-336059269'] = { Name = 'v_34_5' }, - ['-134017662'] = { Name = 'v_34_boxes' }, - ['350106806'] = { Name = 'v_34_boxes02' }, - ['1729419554'] = { Name = 'v_34_boxes03' }, - ['-1093965078'] = { Name = 'v_34_cable1' }, - ['-1541261928'] = { Name = 'v_34_cable2' }, - ['935746782'] = { Name = 'v_34_cable3' }, - ['-593983653'] = { Name = 'v_34_cb_reflect1' }, - ['-814977745'] = { Name = 'v_34_cb_reflect2' }, - ['355367046'] = { Name = 'v_34_cb_reflect3' }, - ['116448267'] = { Name = 'v_34_cb_reflect4' }, - ['-868879094'] = { Name = 'v_34_cb_shell1' }, - ['-1165930079'] = { Name = 'v_34_cb_shell2' }, - ['-266093339'] = { Name = 'v_34_cb_shell3' }, - ['-715815095'] = { Name = 'v_34_cb_shell4' }, - ['1355788686'] = { Name = 'v_34_cb_windows' }, - ['-1843958127'] = { Name = 'v_34_chckmachine' }, - ['611954595'] = { Name = 'v_34_chickcrates' }, - ['370504501'] = { Name = 'v_34_chickcrates2' }, - ['-1268011033'] = { Name = 'v_34_chickcratesb' }, - ['-1377434900'] = { Name = 'v_34_chknrack' }, - ['2041665236'] = { Name = 'v_34_containers' }, - ['-2122600826'] = { Name = 'v_34_corrcratesa' }, - ['-818099709'] = { Name = 'v_34_corrcratesb' }, - ['-648317467'] = { Name = 'v_34_corrdirt' }, - ['1127044713'] = { Name = 'v_34_corrdirt2' }, - ['-53851640'] = { Name = 'v_34_corrdirt4' }, - ['-688882107'] = { Name = 'v_34_corrdirtb' }, - ['526552031'] = { Name = 'v_34_corrvents' }, - ['1222486858'] = { Name = 'v_34_curtain01' }, - ['1045075492'] = { Name = 'v_34_curtain02' }, - ['971282651'] = { Name = 'v_34_delcorrjunk' }, - ['1698258907'] = { Name = 'v_34_delivery' }, - ['1899259584'] = { Name = 'v_34_deloffice001' }, - ['1179332853'] = { Name = 'v_34_dirtchill' }, - ['1609010421'] = { Name = 'v_34_drains' }, - ['1815859587'] = { Name = 'v_34_drains001' }, - ['345312178'] = { Name = 'v_34_emwidw' }, - ['-2100292605'] = { Name = 'v_34_entcrates' }, - ['1952075703'] = { Name = 'v_34_entdirt' }, - ['1128796870'] = { Name = 'v_34_entoverlay' }, - ['-1526669481'] = { Name = 'v_34_entpipes' }, - ['526504143'] = { Name = 'v_34_entshutter' }, - ['-1569454457'] = { Name = 'v_34_entvents' }, - ['904735481'] = { Name = 'v_34_hallmarks' }, - ['1323110819'] = { Name = 'v_34_hallmarksb' }, - ['1805556643'] = { Name = 'v_34_hallsigns' }, - ['1793420626'] = { Name = 'v_34_hallsigns2' }, - ['-1677819945'] = { Name = 'v_34_hose' }, - ['-1014725838'] = { Name = 'v_34_killrmcable1' }, - ['1996665213'] = { Name = 'v_34_killvents' }, - ['-580400921'] = { Name = 'v_34_lights01' }, - ['834728125'] = { Name = 'v_34_lockers' }, - ['1181523520'] = { Name = 'v_34_machine' }, - ['1722921291'] = { Name = 'v_34_meatglue' }, - ['988193807'] = { Name = 'v_34_offdirt' }, - ['638936736'] = { Name = 'v_34_officepipe' }, - ['-266803324'] = { Name = 'v_34_offoverlay' }, - ['79133458'] = { Name = 'v_34_overlays01' }, - ['-1054929925'] = { Name = 'v_34_partwall' }, - ['-1259062831'] = { Name = 'v_34_procdirt' }, - ['85660929'] = { Name = 'v_34_procequip' }, - ['390964251'] = { Name = 'v_34_proclights' }, - ['64880921'] = { Name = 'v_34_proclights01' }, - ['-42406962'] = { Name = 'v_34_proclights2' }, - ['-201016788'] = { Name = 'v_34_procstains' }, - ['-971982902'] = { Name = 'v_34_puddle' }, - ['-386546255'] = { Name = 'v_34_racks' }, - ['1105696349'] = { Name = 'v_34_racksb' }, - ['1547553545'] = { Name = 'v_34_racksc' }, - ['-1541553586'] = { Name = 'v_34_shrinkwrap2' }, - ['2064881867'] = { Name = 'v_34_slurry' }, - ['-1086917516'] = { Name = 'v_34_slurrywrap' }, - ['-1061513633'] = { Name = 'v_34_sm_chill' }, - ['-1079242033'] = { Name = 'v_34_sm_corr' }, - ['454654597'] = { Name = 'v_34_sm_corrb' }, - ['49159047'] = { Name = 'v_34_sm_deloff' }, - ['870965650'] = { Name = 'v_34_sm_ent' }, - ['1376531074'] = { Name = 'v_34_sm_kill' }, - ['114641207'] = { Name = 'v_34_sm_proc' }, - ['2137425070'] = { Name = 'v_34_sm_staff2' }, - ['-684169776'] = { Name = 'v_34_sm_ware1' }, - ['906155794'] = { Name = 'v_34_sm_ware1corr' }, - ['1910348568'] = { Name = 'v_34_sm_ware2' }, - ['532041100'] = { Name = 'v_34_staffwin' }, - ['1457321583'] = { Name = 'v_34_trolley05' }, - ['1173377165'] = { Name = 'v_34_vents2' }, - ['-960408559'] = { Name = 'v_34_walkway' }, - ['990536898'] = { Name = 'v_34_ware2crcks' }, - ['1371399402'] = { Name = 'v_34_ware2dirt' }, - ['226144306'] = { Name = 'v_34_ware2dirt2' }, - ['2104599488'] = { Name = 'v_34_ware2ovrly' }, - ['827812566'] = { Name = 'v_34_ware2vents' }, - ['-2090151957'] = { Name = 'v_34_ware2vents2' }, - ['1936994302'] = { Name = 'v_34_ware2vents3' }, - ['-65548815'] = { Name = 'v_34_waredamp' }, - ['159039109'] = { Name = 'v_34_waredirt' }, - ['-423903506'] = { Name = 'v_34_warehouse' }, - ['-782498605'] = { Name = 'v_34_warejunk' }, - ['304314844'] = { Name = 'v_34_wareover2' }, - ['2136972049'] = { Name = 'v_34_wareracks' }, - ['1685654510'] = { Name = 'v_34_waresuprt' }, - ['-1477356272'] = { Name = 'v_34_warevents' }, - ['57764508'] = { Name = 'v_34_wcorrdirt' }, - ['-1560208531'] = { Name = 'v_34_wcorrtyremks' }, - ['-317778730'] = { Name = 'v_34_wtyremks' }, - ['-432318791'] = { Name = 'v_35_agency_bluprint' }, - ['2054353648'] = { Name = 'v_35_armour' }, - ['1344012317'] = { Name = 'v_35_beams' }, - ['39992491'] = { Name = 'v_35_beamsempty' }, - ['53720513'] = { Name = 'v_35_blinds' }, - ['1407231314'] = { Name = 'v_35_blindsempty' }, - ['1177748597'] = { Name = 'v_35_board' }, - ['1564474285'] = { Name = 'v_35_box3empty' }, - ['1346424911'] = { Name = 'v_35_boxes' }, - ['875000281'] = { Name = 'v_35_boxes2' }, - ['818827766'] = { Name = 'v_35_boxspare' }, - ['2081567852'] = { Name = 'v_35_bs_bluprint' }, - ['-1681298403'] = { Name = 'v_35_cables' }, - ['1292382900'] = { Name = 'v_35_cables1' }, - ['2008920293'] = { Name = 'v_35_cables1empty' }, - ['1134108630'] = { Name = 'v_35_cables2' }, - ['115378433'] = { Name = 'v_35_cables2empty' }, - ['-1502157424'] = { Name = 'v_35_cables3' }, - ['2120373256'] = { Name = 'v_35_cables3empty' }, - ['-1758574849'] = { Name = 'v_35_cables4' }, - ['-365088063'] = { Name = 'v_35_cables4empty' }, - ['-2085380086'] = { Name = 'v_35_cables5' }, - ['221096895'] = { Name = 'v_35_cables6empty' }, - ['-1676567698'] = { Name = 'v_35_cablesempty' }, - ['869600225'] = { Name = 'v_35_doorempty' }, - ['-1968957326'] = { Name = 'v_35_emwin2' }, - ['-331903238'] = { Name = 'v_35_emwin2empty' }, - ['-1446670439'] = { Name = 'v_35_emwindent' }, - ['-893457939'] = { Name = 'v_35_emwindent001' }, - ['1992725793'] = { Name = 'v_35_emwindows' }, - ['-1937624480'] = { Name = 'v_35_emwinempty' }, - ['1082615517'] = { Name = 'v_35_fanbase' }, - ['-1564578152'] = { Name = 'v_35_fire_app' }, - ['1008683327'] = { Name = 'v_35_firehelmet' }, - ['-2016980865'] = { Name = 'v_35_gasmasks' }, - ['-1205262635'] = { Name = 'v_35_hiest_overall1' }, - ['-1807105147'] = { Name = 'v_35_hiestmask1' }, - ['1731354785'] = { Name = 'v_35_janitor' }, - ['-1245218309'] = { Name = 'v_35_litter' }, - ['-827962246'] = { Name = 'v_35_litter2' }, - ['1104845953'] = { Name = 'v_35_litterempty' }, - ['1596843080'] = { Name = 'v_35_lockdoor' }, - ['1696959431'] = { Name = 'v_35_newspapempty' }, - ['736907095'] = { Name = 'v_35_nightlightempty' }, - ['-2118734600'] = { Name = 'v_35_nightlights' }, - ['-1725581572'] = { Name = 'v_35_offbeamempty' }, - ['1566918163'] = { Name = 'v_35_office' }, - ['-1700655893'] = { Name = 'v_35_officebeams' }, - ['-1889600842'] = { Name = 'v_35_officeempty' }, - ['931708537'] = { Name = 'v_35_officelights' }, - ['653259312'] = { Name = 'v_35_officeshad' }, - ['1616216478'] = { Name = 'v_35_officeshadempty' }, - ['503030053'] = { Name = 'v_35_offlightempty' }, - ['608179789'] = { Name = 'v_35_rails' }, - ['718989698'] = { Name = 'v_35_railsempty' }, - ['533237447'] = { Name = 'v_35_reflect' }, - ['498059132'] = { Name = 'v_35_reflectempty' }, - ['-1899157110'] = { Name = 'v_35_sewing' }, - ['1824210529'] = { Name = 'v_35_sewing02' }, - ['-1539641374'] = { Name = 'v_35_sewing2empty' }, - ['1193579876'] = { Name = 'v_35_sewingempty' }, - ['-1735377767'] = { Name = 'v_35_shadowempty' }, - ['-401596125'] = { Name = 'v_35_stairs' }, - ['1219869716'] = { Name = 'v_35_stairsempty' }, - ['1366692745'] = { Name = 'v_35_storeempty' }, - ['592700040'] = { Name = 'v_35_storelights' }, - ['-399741885'] = { Name = 'v_35_sweat_empty' }, - ['1498332426'] = { Name = 'v_35_sweatshad1' }, - ['2140834213'] = { Name = 'v_35_sweatshad2' }, - ['-1259801535'] = { Name = 'v_35_sweatshad3' }, - ['-587217810'] = { Name = 'v_35_sweatshad4' }, - ['1535109211'] = { Name = 'v_35_sweatshell' }, - ['1379451860'] = { Name = 'v_35_swtshdwempty1' }, - ['1676568383'] = { Name = 'v_35_swtshdwempty2' }, - ['2108398265'] = { Name = 'v_35_swtshdwempty3' }, - ['-1988447657'] = { Name = 'v_35_swtshdwempty4' }, - ['1666030335'] = { Name = 'v_35_tempwall001' }, - ['72977709'] = { Name = 'v_35_tempwallempty' }, - ['-839330247'] = { Name = 'v_35_vents02' }, - ['-255680381'] = { Name = 'v_35_vents2empty' }, - ['1399817496'] = { Name = 'v_35_wall' }, - ['-1978605261'] = { Name = 'v_35_wallempty' }, - ['-1711202555'] = { Name = 'v_35_window_02' }, - ['1773352356'] = { Name = 'v_35_window01' }, - ['924034901'] = { Name = 'v_35_windowempty' }, - ['1017294077'] = { Name = 'v_35_windows' }, - ['-200817160'] = { Name = 'v_35_windstoreempty' }, - ['801958102'] = { Name = 'v_35_winoffempty' }, - ['-144091702'] = { Name = 'v_36_5' }, - ['922594982'] = { Name = 'v_36_art' }, - ['-735595080'] = { Name = 'v_36_cables1' }, - ['-313006056'] = { Name = 'v_36_cables2' }, - ['-1225504011'] = { Name = 'v_36_deskstuff' }, - ['-1005703424'] = { Name = 'v_36_dirtovlay' }, - ['948582456'] = { Name = 'v_36_flames' }, - ['-1467736451'] = { Name = 'v_36_flames2' }, - ['-1700711508'] = { Name = 'v_36_lights' }, - ['1631764222'] = { Name = 'v_36_neon003' }, - ['-64274816'] = { Name = 'v_36_neon2' }, - ['-1500476110'] = { Name = 'v_36_normalonly' }, - ['1132989909'] = { Name = 'v_36_normalonly2' }, - ['279323304'] = { Name = 'v_36_pipes' }, - ['143701709'] = { Name = 'v_36_reflect' }, - ['-825823660'] = { Name = 'v_36_shadowmap' }, - ['1003655617'] = { Name = 'v_36_shell' }, - ['-674933860'] = { Name = 'v_36_shelves' }, - ['1709730606'] = { Name = 'v_36_storestuff' }, - ['762762514'] = { Name = 'v_36_tatseat' }, - ['1350761835'] = { Name = 'v_37_hd_ao' }, - ['-929816221'] = { Name = 'v_37_hd_blends' }, - ['-306939003'] = { Name = 'v_37_hd_detail' }, - ['438794269'] = { Name = 'v_37_hd_detail2' }, - ['-1586029164'] = { Name = 'v_37_hd_furn' }, - ['-1884088763'] = { Name = 'v_37_hd_furndr' }, - ['1979260483'] = { Name = 'v_37_hd_mirror' }, - ['1249767051'] = { Name = 'v_37_hd_reflect' }, - ['-1759149974'] = { Name = 'v_37_hd_shell_main_refl' }, - ['-538534518'] = { Name = 'v_37_hd_shell_wal1_refl' }, - ['-2012040656'] = { Name = 'v_37_hd_shell_wal2_refl' }, - ['-1173734113'] = { Name = 'v_37_hd_shell' }, - ['-1285341603'] = { Name = 'v_38_barb_plant003' }, - ['482157667'] = { Name = 'v_38_barb_plant02' }, - ['1959780881'] = { Name = 'v_38_barbers_det' }, - ['174452674'] = { Name = 'v_38_barbers_shell' }, - ['-1452891075'] = { Name = 'v_38_barbpole01' }, - ['-465332278'] = { Name = 'v_38_cabinet01' }, - ['-49034902'] = { Name = 'v_38_cabinet02' }, - ['521424757'] = { Name = 'v_38_fan' }, - ['1887843457'] = { Name = 'v_38_fan01' }, - ['-1576443601'] = { Name = 'v_38_lights' }, - ['1828744934'] = { Name = 'v_38_mirror' }, - ['474909440'] = { Name = 'v_38_pictures' }, - ['-2117807240'] = { Name = 'v_38_pictures3' }, - ['1674458821'] = { Name = 'v_38_reflect' }, - ['713194973'] = { Name = 'v_38_shadowmap' }, - ['156917919'] = { Name = 'v_38_shelves' }, - ['1374490841'] = { Name = 'v_38_sink' }, - ['-31778210'] = { Name = 'v_38_window01' }, - ['1778806458'] = { Name = 'v_39_beams' }, - ['-1410116789'] = { Name = 'v_39_beams2' }, - ['1637203601'] = { Name = 'v_39_beams3' }, - ['511490507'] = { Name = 'v_39_beerboxes02' }, - ['855663314'] = { Name = 'v_39_beerboxes04' }, - ['270015746'] = { Name = 'v_39_beerboxes05' }, - ['-101125948'] = { Name = 'v_39_beerboxes08' }, - ['976607369'] = { Name = 'v_39_beerbrokenshelves08' }, - ['408367526'] = { Name = 'v_39_brokewall' }, - ['136656517'] = { Name = 'v_39_bulb_on_1' }, - ['-101770727'] = { Name = 'v_39_bulb_on_2' }, - ['-347682182'] = { Name = 'v_39_cable1yellow' }, - ['-798250268'] = { Name = 'v_39_cable2white' }, - ['-1127075135'] = { Name = 'v_39_cable3white' }, - ['1212602949'] = { Name = 'v_39_cablelamp' }, - ['1813480256'] = { Name = 'v_39_cablesfan' }, - ['-1224888874'] = { Name = 'v_39_cablesshop' }, - ['272588959'] = { Name = 'v_39_decaldirt1' }, - ['-25281251'] = { Name = 'v_39_decaldirt2' }, - ['-1512633392'] = { Name = 'v_39_decaldirt3' }, - ['-1843338140'] = { Name = 'v_39_decaldirt4' }, - ['-2060170269'] = { Name = 'v_39_halllampon' }, - ['1345485654'] = { Name = 'v_39_meth_lab' }, - ['2143080783'] = { Name = 'v_39_methcooker' }, - ['-1356649983'] = { Name = 'v_39_methducttape' }, - ['899246841'] = { Name = 'v_39_methlab_8' }, - ['1794807326'] = { Name = 'v_39_methlab_stair' }, - ['1572606725'] = { Name = 'v_39_ovrly5' }, - ['1109643893'] = { Name = 'v_39_pills' }, - ['-1741954096'] = { Name = 'v_39_pipes' }, - ['-766100472'] = { Name = 'v_39_posters' }, - ['1637047757'] = { Name = 'v_39_reflect_proxy' }, - ['-520592709'] = { Name = 'v_39_shad_uppback' }, - ['-676063048'] = { Name = 'v_39_shadmeth' }, - ['-1257355426'] = { Name = 'v_39_shadow_liquor' }, - ['1815754047'] = { Name = 'v_39_shadow_store' }, - ['-1566208717'] = { Name = 'v_39_shadplan' }, - ['-2008302522'] = { Name = 'v_39_shopdirt' }, - ['758430064'] = { Name = 'v_39_shopovrlys' }, - ['1774095544'] = { Name = 'v_39_shops5kirt' }, - ['-2136444176'] = { Name = 'v_39_spdecaaldirt' }, - ['1897235116'] = { Name = 'v_39_tears2' }, - ['-2100812271'] = { Name = 'v_39_tears3' }, - ['-1835350602'] = { Name = 'v_39_tears4' }, - ['-1403782872'] = { Name = 'v_39_tears5' }, - ['62270247'] = { Name = 'v_39_tearshall' }, - ['-1668341863'] = { Name = 'v_39_ventilation' }, - ['-1784830875'] = { Name = 'v_39_winframe' }, - ['-98737209'] = { Name = 'v_40_ceilinglights2' }, - ['291872894'] = { Name = 'v_40_corri001' }, - ['45093818'] = { Name = 'v_40_debris1' }, - ['-1186594589'] = { Name = 'v_40_debris2' }, - ['-887905154'] = { Name = 'v_40_debris3' }, - ['791112872'] = { Name = 'v_40_debris4' }, - ['962167052'] = { Name = 'v_40_debris5' }, - ['336311921'] = { Name = 'v_40_debris6' }, - ['507955943'] = { Name = 'v_40_debris7' }, - ['1393603702'] = { Name = 'v_40_debris8' }, - ['518270419'] = { Name = 'v_40_details004' }, - ['-1215871715'] = { Name = 'v_40_details004b' }, - ['229280608'] = { Name = 'v_40_details005' }, - ['-1015980332'] = { Name = 'v_40_details1' }, - ['-354932931'] = { Name = 'v_40_details1b' }, - ['1418690838'] = { Name = 'v_40_details2' }, - ['-1630628465'] = { Name = 'v_40_details3' }, - ['-1385794092'] = { Name = 'v_40_doorfr2' }, - ['-1630447446'] = { Name = 'v_40_doorfr3' }, - ['166085559'] = { Name = 'v_40_exitpillar2' }, - ['-628711122'] = { Name = 'v_40_firehose003' }, - ['-1407925173'] = { Name = 'v_40_firehose004' }, - ['-1290299295'] = { Name = 'v_40_firehose2' }, - ['1450377097'] = { Name = 'v_40_firestand' }, - ['1703995662'] = { Name = 'v_40_firestand001' }, - ['160903452'] = { Name = 'v_40_firestand002' }, - ['-676147884'] = { Name = 'v_40_firestand003' }, - ['787938267'] = { Name = 'v_40_firestand004' }, - ['1489196476'] = { Name = 'v_40_frame011' }, - ['828868353'] = { Name = 'v_40_frame012' }, - ['1606509492'] = { Name = 'v_40_frame013' }, - ['-1250899357'] = { Name = 'v_40_gridlights004' }, - ['-2067145343'] = { Name = 'v_40_gridlights1' }, - ['-1299465980'] = { Name = 'v_40_gridlights2' }, - ['-1599302330'] = { Name = 'v_40_gridlights3' }, - ['-1161498737'] = { Name = 'v_40_hospbumpers2' }, - ['1325808595'] = { Name = 'v_40_hospital_reflect' }, - ['-1195059330'] = { Name = 'v_40_hospital' }, - ['-144818466'] = { Name = 'v_40_hospital1shad' }, - ['367028484'] = { Name = 'v_40_hospital1shadb' }, - ['1256210974'] = { Name = 'v_40_hospital2shad' }, - ['-1300091485'] = { Name = 'v_40_hospital3shad' }, - ['-1625975696'] = { Name = 'v_40_hospitaldoors_fixed' }, - ['-1428592125'] = { Name = 'v_40_hospitalgarden' }, - ['1938031722'] = { Name = 'v_40_hospitalglass' }, - ['1573403136'] = { Name = 'v_40_hospitalglass003' }, - ['-614867307'] = { Name = 'v_40_hospitalglass2' }, - ['-698606340'] = { Name = 'v_40_hospitallod' }, - ['-741357050'] = { Name = 'v_40_hospitalpipes' }, - ['-243110379'] = { Name = 'v_40_hospitalshop' }, - ['-1766220898'] = { Name = 'v_40_hospitalsidedoors' }, - ['-763183189'] = { Name = 'v_40_hospseating005' }, - ['542890844'] = { Name = 'v_40_hospseating006' }, - ['-1801993274'] = { Name = 'v_40_hospseating007' }, - ['1175365301'] = { Name = 'v_40_hospseating008' }, - ['1674787101'] = { Name = 'v_40_hospseating1' }, - ['1768637517'] = { Name = 'v_40_hospseating2' }, - ['2017780224'] = { Name = 'v_40_hospseating3' }, - ['-1912205946'] = { Name = 'v_40_hospseating4' }, - ['30863020'] = { Name = 'v_40_lift' }, - ['-1166172347'] = { Name = 'v_40_lights2' }, - ['-856243145'] = { Name = 'v_40_lights3' }, - ['618420815'] = { Name = 'v_40_nhospsign015' }, - ['-1727836487'] = { Name = 'v_40_oldlights' }, - ['434859764'] = { Name = 'v_40_receptiondesk' }, - ['1673570373'] = { Name = 'v_40_receptiondesk2' }, - ['623532546'] = { Name = 'v_40_roomlights' }, - ['-1948983387'] = { Name = 'v_40_shopdesk1' }, - ['239175797'] = { Name = 'v_40_sidedoor' }, - ['1103496429'] = { Name = 'v_40_sidedr' }, - ['-918255056'] = { Name = 'v_40_sign015' }, - ['-553863776'] = { Name = 'v_40_sign016' }, - ['-1490860634'] = { Name = 'v_40_sign017' }, - ['-1050314198'] = { Name = 'v_40_sign018' }, - ['1405689583'] = { Name = 'v_40_sign019' }, - ['-2081096142'] = { Name = 'v_40_sign020' }, - ['247665616'] = { Name = 'v_40_sign021' }, - ['546944893'] = { Name = 'v_40_sign022' }, - ['1000172932'] = { Name = 'v_40_sign024' }, - ['-977567298'] = { Name = 'v_40_sign025' }, - ['-1955083072'] = { Name = 'v_40_v_int40_hosp_plants' }, - ['-599122783'] = { Name = 'v_40_v_int40_hosp_plants001' }, - ['292325101'] = { Name = 'v_40_v_int40_hosp_plants002' }, - ['1977208774'] = { Name = 'v_40_v_int40_hosp_plants004' }, - ['596618035'] = { Name = 'v_40_v_int40_hosp_plants005' }, - ['1569169186'] = { Name = 'v_40_v_int40_hosp_plants006' }, - ['1826369957'] = { Name = 'v_40_wallbit' }, - ['1234993198'] = { Name = 'v_40_wood' }, - ['-940975603'] = { Name = 'v_40overlay1' }, - ['-186427643'] = { Name = 'v_40overlay1b' }, - ['2006694270'] = { Name = 'v_40overlay2' }, - ['-1905072340'] = { Name = 'v_40overlay3' }, - ['-1424855637'] = { Name = 'v_40overlayrubble' }, - ['-1306655153'] = { Name = 'v_41_back_counter' }, - ['1352348618'] = { Name = 'v_41_bank4_proxy_det' }, - ['98437368'] = { Name = 'v_41_bank4_proxy_shell' }, - ['-391291028'] = { Name = 'v_41_bank4_shell' }, - ['-857440036'] = { Name = 'v_41_barrier' }, - ['2105736410'] = { Name = 'v_41_blaine_crest' }, - ['1263450081'] = { Name = 'v_41_cables' }, - ['1313993890'] = { Name = 'v_41_depodet01' }, - ['-1149567563'] = { Name = 'v_41_desk01' }, - ['925839403'] = { Name = 'v_41_detail02' }, - ['297578599'] = { Name = 'v_41_details' }, - ['-490764252'] = { Name = 'v_41_dirt_deposit' }, - ['1391719252'] = { Name = 'v_41_flag' }, - ['-766812634'] = { Name = 'v_41_keypad' }, - ['-917254625'] = { Name = 'v_41_leaflets' }, - ['-225366444'] = { Name = 'v_41_lights_01' }, - ['-2037885372'] = { Name = 'v_41_lights_02' }, - ['1560893688'] = { Name = 'v_41_lit_on' }, - ['-1278659804'] = { Name = 'v_41_lits_ona' }, - ['-232740135'] = { Name = 'v_41_overlays' }, - ['-3104258'] = { Name = 'v_41_planter004' }, - ['-184906670'] = { Name = 'v_41_planter005' }, - ['-2066204010'] = { Name = 'v_41_planter01' }, - ['1161498025'] = { Name = 'v_41_rubbermat' }, - ['1635583631'] = { Name = 'v_41_seats01' }, - ['1476488591'] = { Name = 'v_41_tables' }, - ['-999038839'] = { Name = 'v_41_vault_det' }, - ['-438006612'] = { Name = 'v_41_vaultdecal' }, - ['-826232170'] = { Name = 'v_41_vlt_desk' }, - ['1255657581'] = { Name = 'v_41_wallmountedshelf' }, - ['591472838'] = { Name = 'v_44_1_daught_cdoor' }, - ['2087636702'] = { Name = 'v_44_1_daught_cdoor2' }, - ['-172113756'] = { Name = 'v_44_1_daught_deta_ns' }, - ['1355069479'] = { Name = 'v_44_1_daught_deta' }, - ['1540871336'] = { Name = 'v_44_1_daught_geoml' }, - ['-326164580'] = { Name = 'v_44_1_daught_item' }, - ['306643908'] = { Name = 'v_44_1_daught_mirr' }, - ['-2118087677'] = { Name = 'v_44_1_daught_moved' }, - ['-493464269'] = { Name = 'v_44_1_hall_deca' }, - ['379398760'] = { Name = 'v_44_1_hall_deta' }, - ['576819059'] = { Name = 'v_44_1_hall_emis' }, - ['1132977151'] = { Name = 'v_44_1_hall2_deca' }, - ['1889072789'] = { Name = 'v_44_1_hall2_deta' }, - ['-1795840269'] = { Name = 'v_44_1_hall2_emis' }, - ['463048617'] = { Name = 'v_44_1_mast_wadeca' }, - ['-282904342'] = { Name = 'v_44_1_mast_washel_m' }, - ['915170437'] = { Name = 'v_44_1_mast_washel' }, - ['-773551152'] = { Name = 'v_44_1_master_chan' }, - ['-406929574'] = { Name = 'v_44_1_master_deca' }, - ['-2030436657'] = { Name = 'v_44_1_master_deta' }, - ['-1622728272'] = { Name = 'v_44_1_master_mirdecal' }, - ['968954052'] = { Name = 'v_44_1_master_mirr' }, - ['587774879'] = { Name = 'v_44_1_master_pics1' }, - ['1740260617'] = { Name = 'v_44_1_master_pics2' }, - ['1194059832'] = { Name = 'v_44_1_master_refl' }, - ['-1441849776'] = { Name = 'v_44_1_master_wait' }, - ['2130628696'] = { Name = 'v_44_1_master_ward' }, - ['626896929'] = { Name = 'v_44_1_master_wcha' }, - ['1054259336'] = { Name = 'v_44_1_master_wrefl' }, - ['-377462278'] = { Name = 'v_44_1_son_deca' }, - ['-2021571148'] = { Name = 'v_44_1_son_deta' }, - ['-1320728955'] = { Name = 'v_44_1_son_item' }, - ['985964044'] = { Name = 'v_44_1_son_swap' }, - ['1102246587'] = { Name = 'v_44_1_wc_deca' }, - ['1767658141'] = { Name = 'v_44_1_wc_deta' }, - ['1810052538'] = { Name = 'v_44_1_wc_mirr' }, - ['1002783348'] = { Name = 'v_44_1_wc_wall' }, - ['-603630987'] = { Name = 'v_44_cablemesh1486013_tstd' }, - ['1941070416'] = { Name = 'v_44_d_chand' }, - ['1607341789'] = { Name = 'v_44_d_emis' }, - ['1480808153'] = { Name = 'v_44_d_items_over' }, - ['-2101628217'] = { Name = 'v_44_dine_deca' }, - ['1271607691'] = { Name = 'v_44_dine_deta' }, - ['226695967'] = { Name = 'v_44_fakewindow007' }, - ['-1288601804'] = { Name = 'v_44_fakewindow1' }, - ['-1789181048'] = { Name = 'v_44_fakewindow2' }, - ['-2033342867'] = { Name = 'v_44_fakewindow3' }, - ['2039385071'] = { Name = 'v_44_fakewindow4' }, - ['-599895731'] = { Name = 'v_44_fakewindow5' }, - ['-855854390'] = { Name = 'v_44_fakewindow6' }, - ['-86571393'] = { Name = 'v_44_g_cor_blen' }, - ['-328127049'] = { Name = 'v_44_g_cor_deta' }, - ['859338990'] = { Name = 'v_44_g_fron_deca' }, - ['143641345'] = { Name = 'v_44_g_fron_deta' }, - ['-1389695856'] = { Name = 'v_44_g_fron_refl' }, - ['-1798546221'] = { Name = 'v_44_g_gara_deca' }, - ['-24207526'] = { Name = 'v_44_g_gara_deta' }, - ['2093200767'] = { Name = 'v_44_g_gara_ref' }, - ['957428350'] = { Name = 'v_44_g_gara_shad' }, - ['-1226797095'] = { Name = 'v_44_g_hall_deca' }, - ['376085519'] = { Name = 'v_44_g_hall_detail' }, - ['779624795'] = { Name = 'v_44_g_hall_emis' }, - ['1185186973'] = { Name = 'v_44_g_hall_stairs' }, - ['-1092137679'] = { Name = 'v_44_g_kitche_deca' }, - ['-784892147'] = { Name = 'v_44_g_kitche_deca1' }, - ['-1213368531'] = { Name = 'v_44_g_kitche_deta' }, - ['1322076740'] = { Name = 'v_44_g_kitche_refl' }, - ['-787792751'] = { Name = 'v_44_g_kitche_shad' }, - ['407181954'] = { Name = 'v_44_g_scubagear' }, - ['-368474459'] = { Name = 'v_44_garage_shell' }, - ['2050258850'] = { Name = 'v_44_int_v_bit' }, - ['-1685707747'] = { Name = 'v_44_kitc_chand' }, - ['309845291'] = { Name = 'v_44_kitch_moved' }, - ['-1636347576'] = { Name = 'v_44_kitche_cables' }, - ['-245883976'] = { Name = 'v_44_kitche_units' }, - ['1655360555'] = { Name = 'v_44_lounge_deca' }, - ['948173474'] = { Name = 'v_44_lounge_decal' }, - ['-811780342'] = { Name = 'v_44_lounge_deta' }, - ['-656201850'] = { Name = 'v_44_lounge_items' }, - ['1428487575'] = { Name = 'v_44_lounge_movebot' }, - ['-133604724'] = { Name = 'v_44_lounge_movepic' }, - ['-948332355'] = { Name = 'v_44_lounge_photos' }, - ['62722912'] = { Name = 'v_44_lounge_refl' }, - ['1963262044'] = { Name = 'v_44_m_clothes' }, - ['-819268198'] = { Name = 'v_44_m_daught_over' }, - ['-825301026'] = { Name = 'v_44_m_premier' }, - ['-1762306153'] = { Name = 'v_44_m_spyglasses' }, - ['310112611'] = { Name = 'v_44_master_movebot' }, - ['-972728387'] = { Name = 'v_44_planeticket' }, - ['331763873'] = { Name = 'v_44_s_posters' }, - ['575284108'] = { Name = 'v_44_shell_dt' }, - ['221861893'] = { Name = 'v_44_shell_refl' }, - ['2101193759'] = { Name = 'v_44_shell' }, - ['-906623003'] = { Name = 'v_44_shell2_mb_ward_refl' }, - ['-1969983968'] = { Name = 'v_44_shell2_mb_wind_refl' }, - ['1030930191'] = { Name = 'v_44_shell2_refl' }, - ['328315379'] = { Name = 'v_44_shell2' }, - ['-215599798'] = { Name = 'v_44_son_clutter' }, - ['1858462547'] = { Name = 'v_45_cables' }, - ['-337385721'] = { Name = 'v_45_cables2' }, - ['-567985218'] = { Name = 'v_45_cablesshutter' }, - ['-875734576'] = { Name = 'v_45_carlift' }, - ['581450015'] = { Name = 'v_45_carparts' }, - ['-1574975172'] = { Name = 'v_45_clutter02' }, - ['-1547808736'] = { Name = 'v_45_dirtfloor' }, - ['1968716971'] = { Name = 'v_45_dirtovlay' }, - ['159043014'] = { Name = 'v_45_dirtovlay2' }, - ['1949872034'] = { Name = 'v_45_ladder' }, - ['-2010128249'] = { Name = 'v_45_ligts' }, - ['1087962509'] = { Name = 'v_45_overlay' }, - ['-691390650'] = { Name = 'v_45_overlay2' }, - ['-262648040'] = { Name = 'v_45_pipes' }, - ['-1571990056'] = { Name = 'v_45_racks' }, - ['-1041624609'] = { Name = 'v_45_reflect' }, - ['-1326433966'] = { Name = 'v_45_shadows' }, - ['616403178'] = { Name = 'v_45_shell' }, - ['2096178034'] = { Name = 'v_45_shelves' }, - ['2054055976'] = { Name = 'v_45_spraybth' }, - ['-1380038604'] = { Name = 'v_45_support' }, - ['1855035654'] = { Name = 'v_45_webs' }, - ['-1238385403'] = { Name = 'v_45_windows' }, - ['797162962'] = { Name = 'v_45_windows2' }, - ['144907061'] = { Name = 'v_45_workbench' }, - ['161675002'] = { Name = 'v_46_beams' }, - ['2047257786'] = { Name = 'v_46_beams2' }, - ['-1935124951'] = { Name = 'v_46_cardoors' }, - ['504243844'] = { Name = 'v_46_carlift' }, - ['-250917280'] = { Name = 'v_46_carlift2' }, - ['1968759822'] = { Name = 'v_46_carmd3office' }, - ['1623115860'] = { Name = 'v_46_carmd3spray' }, - ['-1243922919'] = { Name = 'v_46_carmd3stuff' }, - ['-1021052552'] = { Name = 'v_46_carmd3vents' }, - ['144752720'] = { Name = 'v_46_carmod3' }, - ['539250710'] = { Name = 'v_46_carmod3refproxy' }, - ['886650836'] = { Name = 'v_46_cm_junk' }, - ['1774210307'] = { Name = 'v_46_cm_lighting' }, - ['-389374738'] = { Name = 'v_46_cm_reflectprxy' }, - ['1501102292'] = { Name = 'v_46_cm_tyres' }, - ['-939297918'] = { Name = 'v_46_cm3dirtfloor' }, - ['-1334322288'] = { Name = 'v_46_cm3dirtfloor2' }, - ['-1292686600'] = { Name = 'v_46_cm3dirtovly' }, - ['852661480'] = { Name = 'v_46_cm3dirtovly002' }, - ['27791528'] = { Name = 'v_46_cm3dirtovly2' }, - ['-1278768011'] = { Name = 'v_46_cm3emissive' }, - ['-1790813968'] = { Name = 'v_46_cm3emissive2' }, - ['-1493631907'] = { Name = 'v_46_cm3emissive3' }, - ['-1456647356'] = { Name = 'v_46_cm3overlay' }, - ['-926618996'] = { Name = 'v_46_cm3overlay2' }, - ['1520078393'] = { Name = 'v_46_cm3overlay3' }, - ['-636449752'] = { Name = 'v_46_decal_dirt' }, - ['1267537954'] = { Name = 'v_46_elecboxes' }, - ['882072327'] = { Name = 'v_46_elecboxes2' }, - ['-527410317'] = { Name = 'v_46_frontshut' }, - ['-108329913'] = { Name = 'v_46_mainshell' }, - ['830844734'] = { Name = 'v_46_overlays' }, - ['-1369033087'] = { Name = 'v_46_overlays2' }, - ['-2010430874'] = { Name = 'v_46_paintovly' }, - ['-600751457'] = { Name = 'v_46_prepstat' }, - ['-2019109317'] = { Name = 'v_46_primedcar' }, - ['-1264805106'] = { Name = 'v_46_shadmap' }, - ['429348217'] = { Name = 'v_46_shutters' }, - ['1512665831'] = { Name = 'v_46_spraybth' }, - ['-2042124743'] = { Name = 'v_46_workbench' }, - ['-1531225547'] = { Name = 'v_47_celights01' }, - ['1852665242'] = { Name = 'v_47_celights02' }, - ['1468476797'] = { Name = 'v_47_dec004' }, - ['1640382971'] = { Name = 'v_47_dec005' }, - ['811437701'] = { Name = 'v_47_dec01' }, - ['1670247653'] = { Name = 'v_47_dec02' }, - ['1439160665'] = { Name = 'v_47_dec03' }, - ['-733190093'] = { Name = 'v_47_dust_sheets' }, - ['-1345348454'] = { Name = 'v_47_dust_sheets001' }, - ['1924923844'] = { Name = 'v_47_dustsheet02' }, - ['744458711'] = { Name = 'v_47_frontdesk' }, - ['1083112893'] = { Name = 'v_47_frontdesk001' }, - ['-1960598019'] = { Name = 'v_47_glass' }, - ['-773060862'] = { Name = 'v_47_glass001' }, - ['-531979329'] = { Name = 'v_47_glass002' }, - ['-2045579439'] = { Name = 'v_47_glass003' }, - ['1407453940'] = { Name = 'v_47_glass004' }, - ['-257961210'] = { Name = 'v_47_map003' }, - ['-26677608'] = { Name = 'v_47_map004' }, - ['722885611'] = { Name = 'v_47_map01' }, - ['1019412292'] = { Name = 'v_47_map02' }, - ['-1190483873'] = { Name = 'v_47_overlay002' }, - ['-1752420463'] = { Name = 'v_47_overlay01' }, - ['-801202192'] = { Name = 'v_47_refit_shell' }, - ['2077033144'] = { Name = 'v_47_seats' }, - ['877791843'] = { Name = 'v_47_seats001' }, - ['441894259'] = { Name = 'v_47_shelves002' }, - ['1077333982'] = { Name = 'v_47_shelves01' }, - ['-842919620'] = { Name = 'v_47_sheriff_shell' }, - ['-1482994655'] = { Name = 'v_47_sheriff2_ext' }, - ['1355736537'] = { Name = 'v_47_sheriff2_shell' }, - ['-396400031'] = { Name = 'v_47_sheriffdet002' }, - ['-577415987'] = { Name = 'v_47_sheriffdet003' }, - ['-884292749'] = { Name = 'v_47_sheriffdet01' }, - ['-607415060'] = { Name = 'v_47_shrfemsv01' }, - ['654479483'] = { Name = 'v_47_stairs' }, - ['97826250'] = { Name = 'v_47_striplights' }, - ['2128294516'] = { Name = 'v_47_striplights001' }, - ['665442498'] = { Name = 'v_47_trash01' }, - ['770696526'] = { Name = 'v_47_trash02' }, - ['-1879404595'] = { Name = 'v_48_bas_elev' }, - ['-83132045'] = { Name = 'v_48_corr_light001' }, - ['817753303'] = { Name = 'v_48_corr_light002' }, - ['1719654490'] = { Name = 'v_48_corr_light003' }, - ['233318188'] = { Name = 'v_48_corr_light004' }, - ['1133843077'] = { Name = 'v_48_corr_light005' }, - ['2038660705'] = { Name = 'v_48_corr_light006' }, - ['1564145712'] = { Name = 'v_48_dirt_dec_crdr' }, - ['1276713199'] = { Name = 'v_48_elev_sec006' }, - ['-1056424463'] = { Name = 'v_48_elev_shell' }, - ['-1767538381'] = { Name = 'v_48_emerg_light_a' }, - ['-1462098532'] = { Name = 'v_48_emerg_light_b' }, - ['1331535383'] = { Name = 'v_48_fib_embb099' }, - ['-898425895'] = { Name = 'v_48_fibas_door' }, - ['203165608'] = { Name = 'v_48_fibas_pipes' }, - ['-307754612'] = { Name = 'v_48_fibas_vents' }, - ['-590224292'] = { Name = 'v_48_fibas_vents2' }, - ['1125088331'] = { Name = 'v_48_glass_top' }, - ['1721189644'] = { Name = 'v_48_glass' }, - ['-1599821315'] = { Name = 'v_48_gnd_shell' }, - ['139806946'] = { Name = 'v_48_halldirt' }, - ['-903175384'] = { Name = 'v_48_ivy01' }, - ['1878781640'] = { Name = 'v_48_ivy02' }, - ['1565346155'] = { Name = 'v_48_ivy03' }, - ['-1534666783'] = { Name = 'v_48_ivy04' }, - ['-1082929938'] = { Name = 'v_48_lob_crest' }, - ['1757350943'] = { Name = 'v_48_lob_det' }, - ['864543808'] = { Name = 'v_48_lobplants' }, - ['-1750450153'] = { Name = 'v_48_plantsentrance01' }, - ['395940899'] = { Name = 'v_48_pot_plant02' }, - ['2059137229'] = { Name = 'v_48_recp_det' }, - ['-1585333391'] = { Name = 'v_48_recp_planter' }, - ['-2029972300'] = { Name = 'v_48_recp_seats' }, - ['-630932061'] = { Name = 'v_48_refl_prxy' }, - ['-2115103997'] = { Name = 'v_48_stair_shell001' }, - ['807634909'] = { Name = 'v_48_stairs03' }, - ['1306566297'] = { Name = 'v_48_turnstyle005' }, - ['-696214800'] = { Name = 'v_48_wall_det01' }, - ['-1155319973'] = { Name = 'v_49_cables1' }, - ['-861513119'] = { Name = 'v_49_cables2' }, - ['-596903444'] = { Name = 'v_49_cables3' }, - ['51222312'] = { Name = 'v_49_motelduct005' }, - ['-335052794'] = { Name = 'v_49_motelmp_bed' }, - ['-215145766'] = { Name = 'v_49_motelmp_clothes' }, - ['-1940280087'] = { Name = 'v_49_motelmp_curtains' }, - ['-1017054453'] = { Name = 'v_49_motelmp_glass' }, - ['-482074621'] = { Name = 'v_49_motelmp_lshell' }, - ['1876289231'] = { Name = 'v_49_motelmp_mirror' }, - ['261852243'] = { Name = 'v_49_motelmp_reflect' }, - ['-425183348'] = { Name = 'v_49_motelmp_stuff' }, - ['1096169341'] = { Name = 'v_49_neonsign' }, - ['-592386971'] = { Name = 'v_49_shadowmap' }, - ['-1798473163'] = { Name = 'v_49_tat2chair' }, - ['-1265420167'] = { Name = 'v_49_tat2dirt' }, - ['-1609186127'] = { Name = 'v_49_tat2emissives' }, - ['-1880537367'] = { Name = 'v_49_tat2lighting' }, - ['1135844065'] = { Name = 'v_49_tat2pipes' }, - ['1081670085'] = { Name = 'v_49_tat2reflect' }, - ['-1311365508'] = { Name = 'v_49_tat2shell' }, - ['-1242630427'] = { Name = 'v_49_tat2stuff' }, - ['-192715916'] = { Name = 'v_49_tat2windows' }, - ['-332995421'] = { Name = 'v_5_b_arch' }, - ['150237004'] = { Name = 'v_5_b_atm1' }, - ['-239124254'] = { Name = 'v_5_b_atm2' }, - ['-16252138'] = { Name = 'v_5_b_cornice1' }, - ['290105243'] = { Name = 'v_5_b_cornice2' }, - ['1479521636'] = { Name = 'v_5_b_cornice5' }, - ['568670825'] = { Name = 'v_5_b_counter1' }, - ['559893900'] = { Name = 'v_5_b_lamps' }, - ['1225548151'] = { Name = 'v_5_bank_mirrorfloor' }, - ['464077820'] = { Name = 'v_5_bank_shell' }, - ['-576553415'] = { Name = 'v_5_bankarches' }, - ['-979737978'] = { Name = 'v_5_basmntovrly' }, - ['-1304090349'] = { Name = 'v_5_bbalistrade1' }, - ['-671320959'] = { Name = 'v_5_bbalistrade2' }, - ['-767354546'] = { Name = 'v_5_bbanister03' }, - ['-1285519105'] = { Name = 'v_5_bbanister1' }, - ['1062493828'] = { Name = 'v_5_bcashfurnish' }, - ['1267148488'] = { Name = 'v_5_bdivide' }, - ['243651649'] = { Name = 'v_5_bdoorframe1' }, - ['741969832'] = { Name = 'v_5_bdoorframe3' }, - ['1205946103'] = { Name = 'v_5_bdoorframe5' }, - ['1006317363'] = { Name = 'v_5_bdoorframe6' }, - ['-1667633037'] = { Name = 'v_5_bdoorframe7' }, - ['-825470550'] = { Name = 'v_5_bentornlamp' }, - ['-1259359995'] = { Name = 'v_5_bfurniture' }, - ['1038676414'] = { Name = 'v_5_bfurniture02' }, - ['796153045'] = { Name = 'v_5_bfurniture03' }, - ['596404134'] = { Name = 'v_5_borntelamp' }, - ['-1232158736'] = { Name = 'v_5_borntelamp2' }, - ['-1076309372'] = { Name = 'v_5_borntelamp3' }, - ['-775784873'] = { Name = 'v_5_borntelamp4' }, - ['1714465921'] = { Name = 'v_5_brailing' }, - ['-573183536'] = { Name = 'v_5_broundtable' }, - ['705148627'] = { Name = 'v_5_bsafebars' }, - ['-1623607826'] = { Name = 'v_5_bsafeframe' }, - ['510288199'] = { Name = 'v_5_bsecurity' }, - ['1659123672'] = { Name = 'v_5_bskirt' }, - ['-1589164314'] = { Name = 'v_5_bstairs2' }, - ['1121726475'] = { Name = 'v_5_btable1' }, - ['957947013'] = { Name = 'v_5_btable2' }, - ['1884138103'] = { Name = 'v_5_btables002' }, - ['-1336818575'] = { Name = 'v_5_btellerglass' }, - ['-1276906522'] = { Name = 'v_5_dadorail' }, - ['-444869506'] = { Name = 'v_5_decalshadows1' }, - ['423208588'] = { Name = 'v_5_decalshadows10' }, - ['937195842'] = { Name = 'v_5_decalshadows2' }, - ['-909304543'] = { Name = 'v_5_decalshadows3' }, - ['-24607077'] = { Name = 'v_5_decalshadows4' }, - ['707845611'] = { Name = 'v_5_decalshadows5' }, - ['1662242736'] = { Name = 'v_5_decalshadows6' }, - ['1842668850'] = { Name = 'v_5_decalshadows7' }, - ['1169036517'] = { Name = 'v_5_decalshadows8' }, - ['1332750441'] = { Name = 'v_5_decalshadows9' }, - ['1306192136'] = { Name = 'v_5_depo_box01_lid' }, - ['583968031'] = { Name = 'v_5_depo_box01' }, - ['1584275927'] = { Name = 'v_5_lift01' }, - ['-2054523572'] = { Name = 'v_5_mirror_reflect' }, - ['-1061354586'] = { Name = 'v_5_normovly' }, - ['1241038820'] = { Name = 'v_5_offwind' }, - ['-734508660'] = { Name = 'v_5_paintings' }, - ['-78459657'] = { Name = 'v_5_reflectproxy' }, - ['-1967811035'] = { Name = 'v_5_safetable' }, - ['-970006642'] = { Name = 'v_5_safetable001' }, - ['-428924892'] = { Name = 'v_5_shadowblocker' }, - ['807488662'] = { Name = 'v_5_stairovrly' }, - ['-245703102'] = { Name = 'v_5_vaultdetail' }, - ['229871327'] = { Name = 'v_5_vaultoverlays001' }, - ['331104727'] = { Name = 'v_5_vlt_desk' }, - ['-1422138404'] = { Name = 'v_5_wall_shadow' }, - ['-1668043190'] = { Name = 'v_5_windemovly008' }, - ['-1308402120'] = { Name = 'v_5_windemovly10' }, - ['965111188'] = { Name = 'v_5_windemovly3' }, - ['551926871'] = { Name = 'v_5_windemovly4' }, - ['184586381'] = { Name = 'v_5_windemovly5' }, - ['1950868250'] = { Name = 'v_5_windemovly6' }, - ['1720534949'] = { Name = 'v_5_windemovly7' }, - ['131612235'] = { Name = 'v_5_windemovlyent' }, - ['-442839627'] = { Name = 'v_50_chairend' }, - ['748053245'] = { Name = 'v_50_chairend001' }, - ['37490249'] = { Name = 'v_50_chairend002' }, - ['234563015'] = { Name = 'v_50_chairend003' }, - ['1673941344'] = { Name = 'v_50_chairend004' }, - ['1902800040'] = { Name = 'v_50_chairend005' }, - ['1623542674'] = { Name = 'v_50_chairend006' }, - ['1854564124'] = { Name = 'v_50_chairend007' }, - ['89855163'] = { Name = 'v_50_chairend008' }, - ['-1013968366'] = { Name = 'v_50_chairend011' }, - ['-811948057'] = { Name = 'v_50_chairend034' }, - ['-1278900604'] = { Name = 'v_50_chairend133' }, - ['-1584602605'] = { Name = 'v_50_chairend134' }, - ['52789412'] = { Name = 'v_50_chairs' }, - ['1080203179'] = { Name = 'v_50_chairs1' }, - ['-1948995954'] = { Name = 'v_50_chairs3' }, - ['1925446765'] = { Name = 'v_50_chairs4' }, - ['1377221395'] = { Name = 'v_50_chairs6' }, - ['1575484037'] = { Name = 'v_50_chairsingle' }, - ['-645600804'] = { Name = 'v_50_chairsingle002' }, - ['-941767026'] = { Name = 'v_50_chairsingle003' }, - ['2019961352'] = { Name = 'v_50_chairsingle020' }, - ['1677918530'] = { Name = 'v_50_chairsingle021' }, - ['-1714590506'] = { Name = 'v_50_chairsingle022' }, - ['-2020685735'] = { Name = 'v_50_chairsingle023' }, - ['-753697626'] = { Name = 'v_50_chairsingle12' }, - ['642687771'] = { Name = 'v_50_chairsingle18' }, - ['950618064'] = { Name = 'v_50_chairsingle19' }, - ['-938495990'] = { Name = 'v_50_chairsingle2' }, - ['567758572'] = { Name = 'v_50_curtains' }, - ['2121235493'] = { Name = 'v_50_floornwalls' }, - ['1895042181'] = { Name = 'v_50_rails00' }, - ['2126882856'] = { Name = 'v_50_rails01' }, - ['-807941553'] = { Name = 'v_50_rails02' }, - ['-1236887763'] = { Name = 'v_50_rails03' }, - ['-906248553'] = { Name = 'v_50_rails04' }, - ['635181763'] = { Name = 'v_50_speakrsdetails' }, - ['1663940642'] = { Name = 'v_51_bench' }, - ['-1290059459'] = { Name = 'v_51_benches' }, - ['204112359'] = { Name = 'v_51_briefsbox' }, - ['2099753992'] = { Name = 'v_51_cable' }, - ['-1429935299'] = { Name = 'v_51_cable2' }, - ['-661698863'] = { Name = 'v_51_cable3' }, - ['1100241117'] = { Name = 'v_51_clothes04' }, - ['-1373719477'] = { Name = 'v_51_clothing01' }, - ['-1057433089'] = { Name = 'v_51_clothing02' }, - ['-791184964'] = { Name = 'v_51_clothing03' }, - ['1652366601'] = { Name = 'v_51_clothing04' }, - ['1967473305'] = { Name = 'v_51_clothing05' }, - ['-2029853164'] = { Name = 'v_51_clothing06' }, - ['-1360285111'] = { Name = 'v_51_clothing07' }, - ['-1591142716'] = { Name = 'v_51_clothing08' }, - ['-637210838'] = { Name = 'v_51_counter' }, - ['195744431'] = { Name = 'v_51_decdirt' }, - ['1546504755'] = { Name = 'v_51_det_back' }, - ['862861026'] = { Name = 'v_51_ducttapeshad' }, - ['-67044927'] = { Name = 'v_51_lights010' }, - ['-1289736192'] = { Name = 'v_51_main_det' }, - ['613850081'] = { Name = 'v_51_main_ovl' }, - ['-2071896745'] = { Name = 'v_51_masks' }, - ['-1908825210'] = { Name = 'v_51_masks01' }, - ['-90870231'] = { Name = 'v_51_mirror' }, - ['-1557617926'] = { Name = 'v_51_mirror2' }, - ['-1213527926'] = { Name = 'v_51_posters' }, - ['1619425394'] = { Name = 'v_51_reflectproxy' }, - ['1614554863'] = { Name = 'v_51_rubbermat' }, - ['-186245286'] = { Name = 'v_51_rugs' }, - ['338235866'] = { Name = 'v_51_store_ovl' }, - ['1541563655'] = { Name = 'v_51_v_clotheslo' }, - ['-2146544219'] = { Name = 'v_51_v_shadowmap' }, - ['1860724536'] = { Name = 'v_51_v_shadowmap2' }, - ['939895995'] = { Name = 'v_51_windows01' }, - ['672795876'] = { Name = 'v_51_windows02' }, - ['1440278625'] = { Name = 'v_51_windows03' }, - ['2099984133'] = { Name = 'v_51_windows04' }, - ['1793888904'] = { Name = 'v_51_windows05' }, - ['-2113852240'] = { Name = 'v_52_cables01' }, - ['-2023648125'] = { Name = 'v_52_cablesupporta' }, - ['-1835160837'] = { Name = 'v_52_cablesupportb' }, - ['578757984'] = { Name = 'v_52_cashcount' }, - ['1348852804'] = { Name = 'v_52_clothing01' }, - ['296638023'] = { Name = 'v_52_clothing013' }, - ['1545597880'] = { Name = 'v_52_clothing02' }, - ['-1975726143'] = { Name = 'v_52_clothing04' }, - ['-1821646305'] = { Name = 'v_52_clothing05' }, - ['-548668966'] = { Name = 'v_52_clothing07' }, - ['-1415736706'] = { Name = 'v_52_clothing08' }, - ['-1167118303'] = { Name = 'v_52_clothing09' }, - ['-260924745'] = { Name = 'v_52_clothing12' }, - ['855097084'] = { Name = 'v_52_decdirtovlys' }, - ['-1933391437'] = { Name = 'v_52_det003' }, - ['-1725491743'] = { Name = 'v_52_detail4' }, - ['-591429182'] = { Name = 'v_52_disp_table01' }, - ['1278230682'] = { Name = 'v_52_displayfront' }, - ['320079566'] = { Name = 'v_52_normalonly' }, - ['-61764086'] = { Name = 'v_52_pendant_light2' }, - ['2037680218'] = { Name = 'v_52_pendant_lights' }, - ['1229958970'] = { Name = 'v_52_puffa' }, - ['-1470670240'] = { Name = 'v_52_reflectproxy' }, - ['-1930847818'] = { Name = 'v_52_rug01' }, - ['420374239'] = { Name = 'v_52_shadowmap' }, - ['-1293181688'] = { Name = 'v_52_shell' }, - ['795391854'] = { Name = 'v_52_shirts' }, - ['1955171849'] = { Name = 'v_52_shoeboxes' }, - ['-607033815'] = { Name = 'v_52_shoeboxes2' }, - ['1106271416'] = { Name = 'v_52_trouserdisp' }, - ['673203112'] = { Name = 'v_52_varsity' }, - ['-167679890'] = { Name = 'v_52_vent_det01' }, - ['-1782577244'] = { Name = 'v_52_window01' }, - ['-1014373577'] = { Name = 'v_52_window02' }, - ['-1912178643'] = { Name = 'v_52_window03' }, - ['1606196122'] = { Name = 'v_52_window04' }, - ['-1433456314'] = { Name = 'v_52_window05' }, - ['2089178413'] = { Name = 'v_52_window06' }, - ['1234630782'] = { Name = 'v_53_cglassshalves' }, - ['428773553'] = { Name = 'v_53_changecurts' }, - ['1058088968'] = { Name = 'v_53_chromestuff' }, - ['-61865970'] = { Name = 'v_53_clothesbits' }, - ['-991699164'] = { Name = 'v_53_clotheshilights' }, - ['1762381766'] = { Name = 'v_53_counterdressing' }, - ['1091855058'] = { Name = 'v_53_dirt' }, - ['348545346'] = { Name = 'v_53_displaycases' }, - ['-938724910'] = { Name = 'v_53_displayitems' }, - ['-752656833'] = { Name = 'v_53_displayitems01' }, - ['1689333893'] = { Name = 'v_53_donotexport_01' }, - ['760358374'] = { Name = 'v_53_hishop_pipes' }, - ['1795136864'] = { Name = 'v_53_lightpanels' }, - ['613736590'] = { Name = 'v_53_maindisplay' }, - ['-1989843992'] = { Name = 'v_53_menmags' }, - ['-2058352756'] = { Name = 'v_53_menmags01' }, - ['-313469562'] = { Name = 'v_53_pantsshelf' }, - ['-1014126908'] = { Name = 'v_53_picture' }, - ['-797093184'] = { Name = 'v_53_screens' }, - ['-1280786523'] = { Name = 'v_53_set_table' }, - ['542384633'] = { Name = 'v_53_shadflorr_roof' }, - ['1203040103'] = { Name = 'v_53_shadwalls' }, - ['1205023129'] = { Name = 'v_53_shoes' }, - ['1715900321'] = { Name = 'v_53_shop_doorframe' }, - ['568988812'] = { Name = 'v_53_shop_glass' }, - ['-1846527381'] = { Name = 'v_53_shop_refl' }, - ['1612802001'] = { Name = 'v_53_shop_shell' }, - ['-1840542560'] = { Name = 'v_53_shop_till' }, - ['1324266705'] = { Name = 'v_53_shop_vents' }, - ['-918002092'] = { Name = 'v_53_shop_windowframes' }, - ['1942963397'] = { Name = 'v_53_store_trim' }, - ['175871830'] = { Name = 'v_53_stripchangemirror' }, - ['-541424662'] = { Name = 'v_53_till' }, - ['-793402124'] = { Name = 'v_53_window_access' }, - ['-1199017200'] = { Name = 'v_53_window_access1' }, - ['-1040632658'] = { Name = 'v_53_windowdisplays' }, - ['-619597835'] = { Name = 'v_53_windowplinth' }, - ['1393727645'] = { Name = 'v_54_bkr_mesh_delta_em' }, - ['-1010565372'] = { Name = 'v_54_bkr_mesh_delta' }, - ['547257518'] = { Name = 'v_54_bkr_mesh_emissive' }, - ['844983191'] = { Name = 'v_54_bkr_mesh_homebrew' }, - ['882198628'] = { Name = 'v_54_bkr_mesh_seat' }, - ['1655365292'] = { Name = 'v_54_bkr_mesh_toyplastic' }, - ['-783882036'] = { Name = 'v_54_bkr_over_decal' }, - ['1810516697'] = { Name = 'v_54_bkr_over_normal' }, - ['1526384847'] = { Name = 'v_54_bkr_over_shadow' }, - ['868217097'] = { Name = 'v_54_bkr_time_windows' }, - ['1544154729'] = { Name = 'v_54_exterior_mesh' }, - ['-1990590029'] = { Name = 'v_54_hall_cctv' }, - ['875997874'] = { Name = 'v_54_hall_mesh_berometer' }, - ['747266584'] = { Name = 'v_54_hall_mesh_cage' }, - ['113366963'] = { Name = 'v_54_hall_mesh_delta_em' }, - ['649878197'] = { Name = 'v_54_hall_mesh_delta' }, - ['482974471'] = { Name = 'v_54_hall_mesh_frames' }, - ['310848981'] = { Name = 'v_54_hall_mesh_pile_a' }, - ['451284019'] = { Name = 'v_54_hall_mesh_storage' }, - ['-516997872'] = { Name = 'v_54_hall_over_decal' }, - ['-1431458925'] = { Name = 'v_54_hall_over_normal' }, - ['938207746'] = { Name = 'v_54_hall_over_pile_a' }, - ['-1383360591'] = { Name = 'v_54_lng_boxes_a' }, - ['1441916477'] = { Name = 'v_54_lng_cctv' }, - ['-1073846645'] = { Name = 'v_54_lng_curtains' }, - ['-971142445'] = { Name = 'v_54_lng_delta2' }, - ['-1197906604'] = { Name = 'v_54_lng_mesh_bigscreen' }, - ['1658335751'] = { Name = 'v_54_lng_mesh_compmonitor' }, - ['1593119775'] = { Name = 'v_54_lng_mesh_light' }, - ['-1731917071'] = { Name = 'v_54_lng_mesh_maindesk' }, - ['-1091774632'] = { Name = 'v_54_lng_mesh_rugs' }, - ['-1097284880'] = { Name = 'v_54_lng_mesh_smalldeskobjects' }, - ['617533868'] = { Name = 'v_54_lng_mirror_emissives' }, - ['-871897574'] = { Name = 'v_54_lng_posters' }, - ['723823723'] = { Name = 'v_54_lng_projector' }, - ['355290615'] = { Name = 'v_54_lng_serverrack' }, - ['-957469236'] = { Name = 'v_54_lng_shelfa' }, - ['-270781819'] = { Name = 'v_54_lng_smalldesk' }, - ['-1942848427'] = { Name = 'v_54_lng_time_lights' }, - ['-824466368'] = { Name = 'v_54_lng_time_windows' }, - ['-299568820'] = { Name = 'v_54_mnr_over_decal' }, - ['-1958168300'] = { Name = 'v_54_mnr_over_normal' }, - ['-1669688922'] = { Name = 'v_54_mnr_over_shadow' }, - ['1370729474'] = { Name = 'v_54_pinboard' }, - ['-56595934'] = { Name = 'v_54_shell_doorframe' }, - ['1997308323'] = { Name = 'v_54_shell_main' }, - ['-937170007'] = { Name = 'v_55__exterior_' }, - ['467259943'] = { Name = 'v_55_rollerdoor' }, - ['199611853'] = { Name = 'v_55_shell' }, - ['-438552394'] = { Name = 'v_55_tor_mesh_airvents' }, - ['2080022438'] = { Name = 'v_55_tor_mesh_backoffice' }, - ['-2065388425'] = { Name = 'v_55_tor_mesh_forklift' }, - ['816010501'] = { Name = 'v_55_tor_mesh_groupa' }, - ['2013029274'] = { Name = 'v_55_tor_mesh_groupb' }, - ['1296371244'] = { Name = 'v_55_tor_mesh_groupc' }, - ['-1818551593'] = { Name = 'v_55_tor_mesh_groupd' }, - ['-1563051700'] = { Name = 'v_55_tor_mesh_groupe' }, - ['-1420264535'] = { Name = 'v_55_tor_mesh_highwindow' }, - ['1834851376'] = { Name = 'v_55_tor_mesh_lights' }, - ['-1516231238'] = { Name = 'v_55_tor_mesh_lowwall' }, - ['-1120250614'] = { Name = 'v_55_tor_mesh_pipes' }, - ['-674036594'] = { Name = 'v_55_tor_mesh_sidewindows' }, - ['-543597348'] = { Name = 'v_55_tor_mesh_sidewindowsd' }, - ['-1380332413'] = { Name = 'v_55_tor_mesh_stiars' }, - ['2019373034'] = { Name = 'v_55_tor_mesh_structurebottom' }, - ['-401760368'] = { Name = 'v_55_tor_mesh_structuretop' }, - ['1792141583'] = { Name = 'v_55_tor_mesh_worklight' }, - ['-765302674'] = { Name = 'v_55_tor_over_decal_dirt' }, - ['-1626568503'] = { Name = 'v_55_tor_over_decal_puddles' }, - ['-2033448783'] = { Name = 'v_55_tor_over_decal' }, - ['-101437541'] = { Name = 'v_56_ao_corridor_room' }, - ['-1814866825'] = { Name = 'v_56_ao_dining_room' }, - ['1722796206'] = { Name = 'v_56_ao_living_room' }, - ['-130533721'] = { Name = 'v_56_cor_deta' }, - ['921044480'] = { Name = 'v_56_cor_over' }, - ['-725622647'] = { Name = 'v_56_dining_deta' }, - ['511723134'] = { Name = 'v_56_dining_dyn' }, - ['-1991200076'] = { Name = 'v_56_dining_over' }, - ['1321266039'] = { Name = 'v_56_fighorse_scale' }, - ['1404935669'] = { Name = 'v_56_living_deta' }, - ['938452204'] = { Name = 'v_56_living_over' }, - ['-313356836'] = { Name = 'v_56_ranch_shell' }, - ['1786780726'] = { Name = 'v_57_auntframe' }, - ['-1716648575'] = { Name = 'v_57_auntlemon' }, - ['-1026666068'] = { Name = 'v_57_auntmirror' }, - ['-1128902437'] = { Name = 'v_57_auntshad001' }, - ['17059832'] = { Name = 'v_57_auntstuff' }, - ['768722703'] = { Name = 'v_57_auntstuff2' }, - ['-172106873'] = { Name = 'v_57_bathdirt' }, - ['234625768'] = { Name = 'v_57_bathemon' }, - ['2143564554'] = { Name = 'v_57_bathmirror' }, - ['1302461076'] = { Name = 'v_57_bathshad001' }, - ['1122713396'] = { Name = 'v_57_bathstuff' }, - ['1755250899'] = { Name = 'v_57_bedrmemon' }, - ['2053712194'] = { Name = 'v_57_coffeetable' }, - ['1335915655'] = { Name = 'v_57_dineshad' }, - ['1626082749'] = { Name = 'v_57_diningdecals' }, - ['-1349269588'] = { Name = 'v_57_diningframe' }, - ['278875485'] = { Name = 'v_57_diningplant' }, - ['824205059'] = { Name = 'v_57_diningstuff' }, - ['-1475877830'] = { Name = 'v_57_diningstuffon' }, - ['1997940750'] = { Name = 'v_57_dinnormal' }, - ['336922355'] = { Name = 'v_57_ducttape' }, - ['993991117'] = { Name = 'v_57_f_bandana' }, - ['1317732296'] = { Name = 'v_57_frankcable' }, - ['-521696977'] = { Name = 'v_57_frankcable2' }, - ['-1047999365'] = { Name = 'v_57_frankclothes' }, - ['-949580402'] = { Name = 'v_57_frankcurtain1' }, - ['1456493344'] = { Name = 'v_57_frankdirt' }, - ['-1262086425'] = { Name = 'v_57_frankleftstuff' }, - ['917787635'] = { Name = 'v_57_franklin_int' }, - ['1131923037'] = { Name = 'v_57_frankposters' }, - ['1050404882'] = { Name = 'v_57_frankshad' }, - ['15558695'] = { Name = 'v_57_frankstuff' }, - ['-755500851'] = { Name = 'v_57_frankstuff003' }, - ['2121384427'] = { Name = 'v_57_frankunits' }, - ['1729372483'] = { Name = 'v_57_frkbedframe' }, - ['631698887'] = { Name = 'v_57_frnthallemon' }, - ['511833782'] = { Name = 'v_57_frntshad' }, - ['-2133057089'] = { Name = 'v_57_hallcable' }, - ['-1252219291'] = { Name = 'v_57_hallemon' }, - ['-854015857'] = { Name = 'v_57_hallnormal' }, - ['-512432942'] = { Name = 'v_57_hallshas' }, - ['-1516616312'] = { Name = 'v_57_hallstuff' }, - ['-1109968007'] = { Name = 'v_57_kitchdirt' }, - ['-2081417855'] = { Name = 'v_57_kitchdirt2' }, - ['226079076'] = { Name = 'v_57_kitchframe' }, - ['-1226018182'] = { Name = 'v_57_kitchglass1' }, - ['-1835849272'] = { Name = 'v_57_kitchglass2' }, - ['-1154762088'] = { Name = 'v_57_kitchlighton' }, - ['-1948971639'] = { Name = 'v_57_kitchnormal' }, - ['1290774842'] = { Name = 'v_57_kitchshad001' }, - ['-244921195'] = { Name = 'v_57_kitchstuff' }, - ['-1274061000'] = { Name = 'v_57_lamp2outeron' }, - ['98229261'] = { Name = 'v_57_lampinneron' }, - ['-449524544'] = { Name = 'v_57_lampouteron' }, - ['-1351323615'] = { Name = 'v_57_livcables' }, - ['-981866147'] = { Name = 'v_57_livingframe' }, - ['1627895450'] = { Name = 'v_57_livnormal' }, - ['-483156427'] = { Name = 'v_57_livshad001' }, - ['1036901082'] = { Name = 'v_57_livstuff' }, - ['-531136083'] = { Name = 'v_57_livstuff003' }, - ['1358524949'] = { Name = 'v_57_livstuff2' }, - ['1505019131'] = { Name = 'v_57_mirrorfloor' }, - ['-1684666572'] = { Name = 'v_57_mirrorproxy' }, - ['208296774'] = { Name = 'v_57_mirrorproxy1' }, - ['574195428'] = { Name = 'v_57_mirrorproxy2' }, - ['1341743715'] = { Name = 'v_57_mirrorproxy3' }, - ['1069990398'] = { Name = 'v_57_mirrorproxy4' }, - ['-527835487'] = { Name = 'v_57_netcurt1' }, - ['-228486646'] = { Name = 'v_57_plant' }, - ['1160153780'] = { Name = 'v_57_porchnormal' }, - ['-1555343081'] = { Name = 'v_57_porchstuff' }, - ['-802202493'] = { Name = 'v_57_reflect' }, - ['91528563'] = { Name = 'v_57_sideshad' }, - ['2114993182'] = { Name = 'v_57_vestframe' }, - ['-1476548081'] = { Name = 'v_57_wallcreases' }, - ['-334330329'] = { Name = 'v_58_alienhead' }, - ['1935736836'] = { Name = 'v_58_ao' }, - ['162747879'] = { Name = 'v_58_corridor' }, - ['-1897666914'] = { Name = 'v_58_drinks' }, - ['2060799353'] = { Name = 'v_58_head' }, - ['-1832590572'] = { Name = 'v_58_headdress' }, - ['-1698452865'] = { Name = 'v_58_monstrmask1' }, - ['606606492'] = { Name = 'v_58_rugs' }, - ['-210002985'] = { Name = 'v_58_sarcophagus' }, - ['859648077'] = { Name = 'v_58_sol_boa' }, - ['-1801807238'] = { Name = 'v_58_soloff_emis' }, - ['-1317386185'] = { Name = 'v_58_soloff_furn' }, - ['-1892473334'] = { Name = 'v_58_soloff_gchair' }, - ['757888276'] = { Name = 'v_58_soloff_gchair2' }, - ['-391161235'] = { Name = 'v_58_soloff_geomns' }, - ['1589728160'] = { Name = 'v_58_soloff_offchair' }, - ['-184343296'] = { Name = 'v_58_soloff_shdblk' }, - ['-1677365426'] = { Name = 'v_58_soloff_shell' }, - ['2020363656'] = { Name = 'v_58_sols_reflect' }, - ['-1777267057'] = { Name = 'v_59_dirtfloor' }, - ['1420518451'] = { Name = 'v_59_dockcontshell' }, - ['-878933222'] = { Name = 'v_59_doorframes' }, - ['1807657625'] = { Name = 'v_59_filing' }, - ['1279897669'] = { Name = 'v_59_innerframes' }, - ['1157040670'] = { Name = 'v_59_machines' }, - ['314714432'] = { Name = 'v_59_pipes' }, - ['-604410777'] = { Name = 'v_59_pipes2' }, - ['-699562939'] = { Name = 'v_59_reflectproxy' }, - ['43994448'] = { Name = 'v_59_shadowmap' }, - ['-66099491'] = { Name = 'v_59_signoverlay2' }, - ['123647280'] = { Name = 'v_59_stains' }, - ['1418164877'] = { Name = 'v_59_supportbeams' }, - ['403426656'] = { Name = 'v_59_supportbeams2' }, - ['1870962410'] = { Name = 'v_59_tz' }, - ['1080704612'] = { Name = 'v_60_ap1_01_b_bloodsplat' }, - ['22929548'] = { Name = 'v_60_changepipe' }, - ['-238747509'] = { Name = 'v_60_corrpipes' }, - ['-748871949'] = { Name = 'v_60_crane' }, - ['1541097548'] = { Name = 'v_60_dirt1_change' }, - ['885772014'] = { Name = 'v_60_dirt1_store' }, - ['-1819929403'] = { Name = 'v_60_dirt3_hanger' }, - ['-530533053'] = { Name = 'v_60_ducttapegeo' }, - ['-138182218'] = { Name = 'v_60_electric_corr' }, - ['1973108594'] = { Name = 'v_60_glue1_change' }, - ['1394080893'] = { Name = 'v_60_glue1_corr' }, - ['926968246'] = { Name = 'v_60_glue1_hanger' }, - ['1083401690'] = { Name = 'v_60_glue1_store' }, - ['-1208661201'] = { Name = 'v_60_hangerint' }, - ['253291221'] = { Name = 'v_60_hngrovrnrmls' }, - ['-422750350'] = { Name = 'v_60_markings_d' }, - ['1696383932'] = { Name = 'v_60_markings' }, - ['11901895'] = { Name = 'v_60_markings2' }, - ['1899019663'] = { Name = 'v_60_newsigns' }, - ['-116438425'] = { Name = 'v_60_pipes' }, - ['-1225273881'] = { Name = 'v_60_pipesb' }, - ['-1604588562'] = { Name = 'v_60_rails' }, - ['346779164'] = { Name = 'v_60_relfection' }, - ['-623780476'] = { Name = 'v_60_relfectioncorr' }, - ['-1715890600'] = { Name = 'v_60_shadowmap' }, - ['489650067'] = { Name = 'v_60_shadowmap2' }, - ['929475585'] = { Name = 'v_60_shadowmap3' }, - ['1108984179'] = { Name = 'v_60_shadowmap4' }, - ['-1568777802'] = { Name = 'v_60_storepipe' }, - ['1990091017'] = { Name = 'v_60_supporta' }, - ['-155328186'] = { Name = 'v_60_supportb' }, - ['591084100'] = { Name = 'v_60_supportc' }, - ['302913514'] = { Name = 'v_60_supportd' }, - ['2137713363'] = { Name = 'v_61__exterior_' }, - ['1518818332'] = { Name = 'v_61_bath_over_dec' }, - ['1611662162'] = { Name = 'v_61_bd1_binbag' }, - ['-1166568140'] = { Name = 'v_61_bd1_mesh_curtains' }, - ['1844071059'] = { Name = 'v_61_bd1_mesh_delta' }, - ['1446483275'] = { Name = 'v_61_bd1_mesh_door' }, - ['757482499'] = { Name = 'v_61_bd1_mesh_doorswap' }, - ['-1945474350'] = { Name = 'v_61_bd1_mesh_makeup' }, - ['-785310295'] = { Name = 'v_61_bd1_mesh_mess' }, - ['-1189355780'] = { Name = 'v_61_bd1_mesh_pillows' }, - ['388525717'] = { Name = 'v_61_bd1_mesh_props' }, - ['480122796'] = { Name = 'v_61_bd1_mesh_rosevase' }, - ['1357463931'] = { Name = 'v_61_bd1_mesh_sheet' }, - ['2091093913'] = { Name = 'v_61_bd1_mesh_shoes' }, - ['1418207156'] = { Name = 'v_61_bd1_over_decal' }, - ['477986972'] = { Name = 'v_61_bd1_over_normal' }, - ['-1031117413'] = { Name = 'v_61_bd1_over_shadow_ore' }, - ['-884387580'] = { Name = 'v_61_bd2_mesh_bed' }, - ['280400238'] = { Name = 'v_61_bd2_mesh_cupboard' }, - ['142111978'] = { Name = 'v_61_bd2_mesh_curtains' }, - ['1084998743'] = { Name = 'v_61_bd2_mesh_darts' }, - ['1594467047'] = { Name = 'v_61_bd2_mesh_delta' }, - ['-2012977052'] = { Name = 'v_61_bd2_mesh_drawers_mess' }, - ['1613082326'] = { Name = 'v_61_bd2_mesh_drawers' }, - ['2113742765'] = { Name = 'v_61_bd2_mesh_roadsign' }, - ['-609171427'] = { Name = 'v_61_bd2_mesh_yogamat' }, - ['-775441932'] = { Name = 'v_61_bd2_over_shadow_clean' }, - ['-708580523'] = { Name = 'v_61_bd2_over_shadow' }, - ['543486909'] = { Name = 'v_61_bed_over_decal_scuz1' }, - ['311626964'] = { Name = 'v_61_bed1_mesh_bottles' }, - ['709687847'] = { Name = 'v_61_bed1_mesh_clothes' }, - ['-1876221326'] = { Name = 'v_61_bed1_mesh_clothesmess' }, - ['-673381106'] = { Name = 'v_61_bed1_mesh_drugstuff' }, - ['-1438519050'] = { Name = 'v_61_bed2_mesh_drugstuff001' }, - ['1953039805'] = { Name = 'v_61_bed2_mesh_lampshade' }, - ['1639198297'] = { Name = 'v_61_bed2_over_normal' }, - ['482561674'] = { Name = 'v_61_bed2_over_rips' }, - ['-523070522'] = { Name = 'v_61_bed2_over_shadows' }, - ['-1802169420'] = { Name = 'v_61_bth_mesh_bath' }, - ['-2037286465'] = { Name = 'v_61_bth_mesh_delta' }, - ['408918587'] = { Name = 'v_61_bth_mesh_mess_a' }, - ['505652675'] = { Name = 'v_61_bth_mesh_mess_b' }, - ['-1293473665'] = { Name = 'v_61_bth_mesh_mirror' }, - ['-196728696'] = { Name = 'v_61_bth_mesh_sexdoll' }, - ['-1285212360'] = { Name = 'v_61_bth_mesh_sink' }, - ['-1616004246'] = { Name = 'v_61_bth_mesh_toilet_clean' }, - ['392210681'] = { Name = 'v_61_bth_mesh_toilet_messy' }, - ['1647749396'] = { Name = 'v_61_bth_mesh_toilet' }, - ['79400054'] = { Name = 'v_61_bth_mesh_toiletroll' }, - ['-1807122051'] = { Name = 'v_61_bth_mesh_window' }, - ['929898051'] = { Name = 'v_61_bth_over_decal' }, - ['-1013907700'] = { Name = 'v_61_bth_over_shadow' }, - ['-1295567323'] = { Name = 'v_61_fdr_over_decal' }, - ['1131513391'] = { Name = 'v_61_fnt_mesh_delta' }, - ['-1731738398'] = { Name = 'v_61_fnt_mesh_hooks' }, - ['84893414'] = { Name = 'v_61_fnt_mesh_props' }, - ['-385929439'] = { Name = 'v_61_fnt_mesh_shitmarks' }, - ['822527010'] = { Name = 'v_61_fnt_over_normal' }, - ['94775874'] = { Name = 'v_61_hal_over_decal_shit' }, - ['1805804919'] = { Name = 'v_61_hall_mesh_frames' }, - ['-767474291'] = { Name = 'v_61_hall_mesh_sideboard' }, - ['-2036582846'] = { Name = 'v_61_hall_mesh_sidesmess' }, - ['-773484123'] = { Name = 'v_61_hall_mesh_sidestuff' }, - ['138914562'] = { Name = 'v_61_hall_mesh_starfish' }, - ['250391664'] = { Name = 'v_61_hall_over_decal_scuz' }, - ['648532195'] = { Name = 'v_61_hlw_mesh_cdoor' }, - ['-313230689'] = { Name = 'v_61_hlw_mesh_delta' }, - ['-632791604'] = { Name = 'v_61_hlw_mesh_doorbroken' }, - ['-1580814337'] = { Name = 'v_61_hlw_over_decal_mural' }, - ['538034586'] = { Name = 'v_61_hlw_over_decal_muraldirty' }, - ['-77613157'] = { Name = 'v_61_hlw_over_decal' }, - ['-2022419703'] = { Name = 'v_61_hlw_over_normals' }, - ['-1171601244'] = { Name = 'v_61_kit_over_dec_cruma' }, - ['-2003081850'] = { Name = 'v_61_kit_over_dec_crumb' }, - ['1449230611'] = { Name = 'v_61_kit_over_dec_crumc' }, - ['-1457944455'] = { Name = 'v_61_kit_over_decal_scuz' }, - ['1793827806'] = { Name = 'v_61_kitc_mesh_board_a' }, - ['-979021128'] = { Name = 'v_61_kitc_mesh_lights' }, - ['-667469076'] = { Name = 'v_61_kitch_pizza' }, - ['1761880785'] = { Name = 'v_61_kitn_mesh_plate' }, - ['17626776'] = { Name = 'v_61_ktcn_mesh_dildo' }, - ['1038671690'] = { Name = 'v_61_ktcn_mesh_mess_01' }, - ['1200485012'] = { Name = 'v_61_ktcn_mesh_mess_02' }, - ['427562609'] = { Name = 'v_61_ktcn_mesh_mess_03' }, - ['1669529259'] = { Name = 'v_61_ktm_mesh_delta' }, - ['1718739564'] = { Name = 'v_61_ktn_mesh_delta' }, - ['-1005744552'] = { Name = 'v_61_ktn_mesh_fridge' }, - ['47125216'] = { Name = 'v_61_ktn_mesh_lights' }, - ['-1546387271'] = { Name = 'v_61_ktn_mesh_windows' }, - ['-402152235'] = { Name = 'v_61_ktn_over_decal' }, - ['-1602246812'] = { Name = 'v_61_ktn_over_normal' }, - ['1928457055'] = { Name = 'v_61_lgn_mesh_wickerbasket' }, - ['-525918638'] = { Name = 'v_61_lng_cancrsh1' }, - ['565763468'] = { Name = 'v_61_lng_cigends' }, - ['741170851'] = { Name = 'v_61_lng_cigends2' }, - ['-694793497'] = { Name = 'v_61_lng_mesh_bottles' }, - ['-474405135'] = { Name = 'v_61_lng_mesh_case' }, - ['1608089824'] = { Name = 'v_61_lng_mesh_coffeetable' }, - ['-1359821566'] = { Name = 'v_61_lng_mesh_comptable' }, - ['-358619935'] = { Name = 'v_61_lng_mesh_curtains' }, - ['2022476080'] = { Name = 'v_61_lng_mesh_delta' }, - ['1436570020'] = { Name = 'v_61_lng_mesh_drugs' }, - ['845861283'] = { Name = 'v_61_lng_mesh_fireplace' }, - ['973967084'] = { Name = 'v_61_lng_mesh_mags' }, - ['-2035397478'] = { Name = 'v_61_lng_mesh_pics' }, - ['-415366012'] = { Name = 'v_61_lng_mesh_picsmess' }, - ['-1103260977'] = { Name = 'v_61_lng_mesh_pizza' }, - ['-1311752277'] = { Name = 'v_61_lng_mesh_props' }, - ['851896128'] = { Name = 'v_61_lng_mesh_shell_scuzz' }, - ['1993156416'] = { Name = 'v_61_lng_mesh_sidetable' }, - ['-562165268'] = { Name = 'v_61_lng_mesh_smalltable' }, - ['-563027917'] = { Name = 'v_61_lng_mesh_table_scuz' }, - ['443123335'] = { Name = 'v_61_lng_mesh_unita_swap' }, - ['1425243253'] = { Name = 'v_61_lng_mesh_unita' }, - ['-792234981'] = { Name = 'v_61_lng_mesh_unitb' }, - ['-691128751'] = { Name = 'v_61_lng_mesh_unitc_items' }, - ['-345724583'] = { Name = 'v_61_lng_mesh_unitc' }, - ['-174390940'] = { Name = 'v_61_lng_mesh_windows' }, - ['-1950819172'] = { Name = 'v_61_lng_mesh_windows2' }, - ['2024022522'] = { Name = 'v_61_lng_over_dec_crum' }, - ['-514649822'] = { Name = 'v_61_lng_over_dec_crum1' }, - ['-1949530359'] = { Name = 'v_61_lng_over_decal_scuz' }, - ['-447285510'] = { Name = 'v_61_lng_over_decal_shit' }, - ['41633680'] = { Name = 'v_61_lng_over_decal_wademess' }, - ['1491173446'] = { Name = 'v_61_lng_over_decal' }, - ['-1825560575'] = { Name = 'v_61_lng_over_normal' }, - ['230146376'] = { Name = 'v_61_lng_over_shadow' }, - ['-885413296'] = { Name = 'v_61_lng_pizza' }, - ['568906741'] = { Name = 'v_61_lng_poster1' }, - ['71571628'] = { Name = 'v_61_lng_poster2' }, - ['-1886482875'] = { Name = 'v_61_lng_rugdirt' }, - ['-392813023'] = { Name = 'v_61_pizzaedge' }, - ['-1156091599'] = { Name = 'v_61_shell_doorframes' }, - ['-415221242'] = { Name = 'v_61_shell_fdframe' }, - ['943580310'] = { Name = 'v_61_shell_walls' }, - ['442843202'] = { Name = 'v_61_shell_windowback' }, - ['1316615271'] = { Name = 'v_62_ao_stad_001' }, - ['296864375'] = { Name = 'v_62_aud_det01' }, - ['1273510187'] = { Name = 'v_62_aud_door004' }, - ['67745321'] = { Name = 'v_62_aud_ovly' }, - ['-2100164160'] = { Name = 'v_62_audit_dec01' }, - ['-214374299'] = { Name = 'v_62_bannersx' }, - ['-2006769879'] = { Name = 'v_62_barrier01' }, - ['-1859571531'] = { Name = 'v_62_barrier02' }, - ['1275340396'] = { Name = 'v_62_barrier03' }, - ['-1078176467'] = { Name = 'v_62_blinds' }, - ['375968979'] = { Name = 'v_62_board01' }, - ['-2028972481'] = { Name = 'v_62_boom_mic' }, - ['86389170'] = { Name = 'v_62_bs_kiosk002' }, - ['383309079'] = { Name = 'v_62_bs_kiosk003' }, - ['1636365449'] = { Name = 'v_62_cables' }, - ['-170778524'] = { Name = 'v_62_ceiling_rig' }, - ['412779247'] = { Name = 'v_62_corrscratches002' }, - ['-905516592'] = { Name = 'v_62_corrscratches01' }, - ['1573967657'] = { Name = 'v_62_corrspec002' }, - ['1096097330'] = { Name = 'v_62_corrspec004' }, - ['-1775527310'] = { Name = 'v_62_corrspec01' }, - ['610547425'] = { Name = 'v_62_corrspec03' }, - ['1074372275'] = { Name = 'v_62_curtains' }, - ['-1821887956'] = { Name = 'v_62_ecolacup002' }, - ['1083411584'] = { Name = 'v_62_ecolacup003' }, - ['-1717169126'] = { Name = 'v_62_ecolacup01' }, - ['-776297357'] = { Name = 'v_62_fos_props01' }, - ['1816484234'] = { Name = 'v_62_fos_props03' }, - ['337840709'] = { Name = 'v_62_frame_det01' }, - ['1483640526'] = { Name = 'v_62_lightdummy002' }, - ['-1696430965'] = { Name = 'v_62_lightdummy01' }, - ['-130828658'] = { Name = 'v_62_lob_det' }, - ['-1513771567'] = { Name = 'v_62_lob_det02' }, - ['-1668320611'] = { Name = 'v_62_lobby_ovly' }, - ['-1730040033'] = { Name = 'v_62_lobby_wall' }, - ['-1461960051'] = { Name = 'v_62_lobmat' }, - ['-70375665'] = { Name = 'v_62_maze_dec003' }, - ['-394362768'] = { Name = 'v_62_maze_dec004' }, - ['-853719333'] = { Name = 'v_62_maze_dec01' }, - ['-59431538'] = { Name = 'v_62_maze_dec02' }, - ['-830212929'] = { Name = 'v_62_scratch01' }, - ['-694204463'] = { Name = 'v_62_shutter002' }, - ['332504287'] = { Name = 'v_62_shutter01' }, - ['-482525154'] = { Name = 'v_62_signs01' }, - ['-636801606'] = { Name = 'v_62_signs02' }, - ['1008879036'] = { Name = 'v_62_sm_c02' }, - ['2144300491'] = { Name = 'v_62_spec_ov01' }, - ['-1903587729'] = { Name = 'v_62_spec_ov13' }, - ['-167756611'] = { Name = 'v_62_stadium_shell' }, - ['1700257755'] = { Name = 'v_62_stadium_shellprx' }, - ['141116573'] = { Name = 'v_62_stage_dec01' }, - ['424339040'] = { Name = 'v_62_stage_dec02' }, - ['-1093524855'] = { Name = 'v_62_stairs01' }, - ['-757314915'] = { Name = 'v_62_stairs02' }, - ['-178241029'] = { Name = 'v_62_studio_light01' }, - ['-1343670514'] = { Name = 'v_62_studio_light02' }, - ['-507771034'] = { Name = 'v_62_studio_lights' }, - ['-2051655046'] = { Name = 'v_62_table' }, - ['-687011446'] = { Name = 'v_62_tunnel_damage01' }, - ['-389501695'] = { Name = 'v_62_tunnel_damage02' }, - ['-609187467'] = { Name = 'v_62_tunnel_det01' }, - ['-371546679'] = { Name = 'v_62_tunnel_det02' }, - ['34362924'] = { Name = 'v_62_tunnel_det03' }, - ['-1129461643'] = { Name = 'v_62_tunnel_ovly01' }, - ['333543131'] = { Name = 'v_62_tunnel_ovly02' }, - ['1604186712'] = { Name = 'v_62_tunnel_paint01' }, - ['1955470396'] = { Name = 'v_62_tunnel_paint02' }, - ['-352817734'] = { Name = 'v_62_tv_ovl' }, - ['-32351998'] = { Name = 'v_63_bars009' }, - ['-925177116'] = { Name = 'v_63_bars014' }, - ['501421295'] = { Name = 'v_63_bars018' }, - ['-799443287'] = { Name = 'v_63_bars022' }, - ['-71578263'] = { Name = 'v_63_bars023' }, - ['-1379126897'] = { Name = 'v_63_bars024' }, - ['-656406606'] = { Name = 'v_63_bars025' }, - ['-420240423'] = { Name = 'v_63_bars028' }, - ['1374321097'] = { Name = 'v_63_bars029' }, - ['1336797184'] = { Name = 'v_63_bars030' }, - ['129816607'] = { Name = 'v_63_bars031' }, - ['-290937353'] = { Name = 'v_63_bars032' }, - ['579578279'] = { Name = 'v_63_bsmt_lights' }, - ['-1237445525'] = { Name = 'v_63_det_005' }, - ['615608656'] = { Name = 'v_63_det_006' }, - ['327700222'] = { Name = 'v_63_det_007' }, - ['19769929'] = { Name = 'v_63_det_008' }, - ['-1966209641'] = { Name = 'v_63_det_03' }, - ['800018263'] = { Name = 'v_63_det_04' }, - ['470132740'] = { Name = 'v_63_det_05' }, - ['1820676427'] = { Name = 'v_63_dets02' }, - ['-1936537841'] = { Name = 'v_63_dirt_dec_vault' }, - ['1475748566'] = { Name = 'v_63_dirt_dec_vault01' }, - ['947020711'] = { Name = 'v_63_dirt_dec_vault02' }, - ['901668415'] = { Name = 'v_63_dirt_dec_vault03' }, - ['1688353802'] = { Name = 'v_63_dirt_dec_vault04' }, - ['-1052006961'] = { Name = 'v_63_elev_buttons' }, - ['1280591239'] = { Name = 'v_63_elev_buttons001' }, - ['-206164994'] = { Name = 'v_63_elev_det' }, - ['-1860420486'] = { Name = 'v_63_elev_det02' }, - ['-1496094744'] = { Name = 'v_63_elev_det03' }, - ['-1768929438'] = { Name = 'v_63_elev_det04' }, - ['222649067'] = { Name = 'v_63_elevbutt01' }, - ['1165466614'] = { Name = 'v_63_elevint01' }, - ['-510986720'] = { Name = 'v_63_emissives' }, - ['1828673205'] = { Name = 'v_63_fire' }, - ['327215460'] = { Name = 'v_63_n_onl_dec_vault' }, - ['1409895293'] = { Name = 'v_63_notbrd003' }, - ['1098655323'] = { Name = 'v_63_notbrd004' }, - ['799113894'] = { Name = 'v_63_notbrd005' }, - ['-1298162326'] = { Name = 'v_63_ovlcp01' }, - ['1721369952'] = { Name = 'v_63_ovlcp02' }, - ['718722504'] = { Name = 'v_63_pipes' }, - ['55631883'] = { Name = 'v_63_pipes2' }, - ['-54682094'] = { Name = 'v_63_plas_boxgt201' }, - ['-401137081'] = { Name = 'v_63_v_finalebank_proxy_hole' }, - ['-1542325746'] = { Name = 'v_63_v_finalebank_proxy' }, - ['-1168311964'] = { Name = 'v_63_v_finalebank_shell' }, - ['-1546809441'] = { Name = 'v_63_vault_det01' }, - ['971312910'] = { Name = 'v_63_vault_overl' }, - ['2008737160'] = { Name = 'v_63_vaultdec03' }, - ['-1440730503'] = { Name = 'v_63_vents' }, - ['-905922171'] = { Name = 'v_63_vents2' }, - ['-844087068'] = { Name = 'v_63_vents4' }, - ['133926142'] = { Name = 'v_63_wall_light_em' }, - ['-179089390'] = { Name = 'v_63_wall_light_em001' }, - ['-1484180361'] = { Name = 'v_63_wall_light_em002' }, - ['317197115'] = { Name = 'v_63_wall_light_em003' }, - ['1158803342'] = { Name = 'v_63_wall_light_em004' }, - ['778617404'] = { Name = 'v_63_wall_light_em005' }, - ['-526473559'] = { Name = 'v_63_wall_light_em006' }, - ['1716728336'] = { Name = 'v_63_wall_light_em007' }, - ['1486460573'] = { Name = 'v_63_wall_light_em008' }, - ['-2013104786'] = { Name = 'v_63_wall_light_em009' }, - ['-1582291163'] = { Name = 'v_63_wall_light_em010' }, - ['1123379637'] = { Name = 'v_63_wall_light_em011' }, - ['-1040871051'] = { Name = 'v_64_back_deta' }, - ['362512880'] = { Name = 'v_64_back_flyer' }, - ['-897073688'] = { Name = 'v_64_back_l_deta' }, - ['396181365'] = { Name = 'v_64_back_l_flyer' }, - ['881593055'] = { Name = 'v_64_back_l_over' }, - ['-630136076'] = { Name = 'v_64_back_l_refl' }, - ['362620988'] = { Name = 'v_64_back_over' }, - ['-265786372'] = { Name = 'v_64_back_refl' }, - ['-1111819979'] = { Name = 'v_64_back_stairs' }, - ['-1995736244'] = { Name = 'v_64_base2_deta' }, - ['1965346367'] = { Name = 'v_64_base2_over' }, - ['1158231478'] = { Name = 'v_64_base2_refl' }, - ['2077775356'] = { Name = 'v_64_cloak_deta' }, - ['249654236'] = { Name = 'v_64_cloak_over' }, - ['1213205340'] = { Name = 'v_64_dance_bar' }, - ['265554496'] = { Name = 'v_64_dance_deta' }, - ['-1682380775'] = { Name = 'v_64_dance_drum' }, - ['2094147647'] = { Name = 'v_64_dance_flyer' }, - ['-1319134399'] = { Name = 'v_64_dance_over' }, - ['-1672696468'] = { Name = 'v_64_dance_ref' }, - ['1753268521'] = { Name = 'v_64_dance_rig' }, - ['-1459007240'] = { Name = 'v_64_dance_stairs' }, - ['1790340857'] = { Name = 'v_64_entry_deta' }, - ['356143279'] = { Name = 'v_64_entry_emis001' }, - ['-418630121'] = { Name = 'v_64_entry_over' }, - ['-1508178334'] = { Name = 'v_64_entrytr_deta' }, - ['-1457843431'] = { Name = 'v_64_entrytr_over' }, - ['989866288'] = { Name = 'v_64_entrytr_refl' }, - ['-1133260720'] = { Name = 'v_64_rear_deta' }, - ['-1719399901'] = { Name = 'v_64_rear_over' }, - ['-1005992669'] = { Name = 'v_64_reartr_deta' }, - ['-935540960'] = { Name = 'v_64_reartr_over' }, - ['-1553842646'] = { Name = 'v_64_reartr_stairs' }, - ['2029333079'] = { Name = 'v_64_shell' }, - ['-604512702'] = { Name = 'v_64_side_deta' }, - ['1858822750'] = { Name = 'v_64_side_detadr' }, - ['1620177711'] = { Name = 'v_64_side_flyer' }, - ['-1362876738'] = { Name = 'v_64_side_over' }, - ['1783784115'] = { Name = 'v_64_side_refl' }, - ['1959836458'] = { Name = 'v_64_side_stairs' }, - ['-949263939'] = { Name = 'v_64_side_u_deta' }, - ['1254732642'] = { Name = 'v_64_side_u_flyer' }, - ['-349687166'] = { Name = 'v_64_side_u_over' }, - ['1587890072'] = { Name = 'v_64_side_u_refl' }, - ['-1347831398'] = { Name = 'v_64_upper_bar' }, - ['-168315732'] = { Name = 'v_64_upper_deta' }, - ['-1547353029'] = { Name = 'v_64_upper_flyer' }, - ['61694115'] = { Name = 'v_64_upper_over' }, - ['-2081592958'] = { Name = 'v_64_upper_refl' }, - ['-1573343654'] = { Name = 'v_65_cablemesh1486013_tstd' }, - ['1447348511'] = { Name = 'v_65_main_build1' }, - ['1744661648'] = { Name = 'v_65_main_build2' }, - ['-1394411942'] = { Name = 'v_65_main_build3' }, - ['-2036028962'] = { Name = 'v_65_main_build4' }, - ['-1694018909'] = { Name = 'v_65_main_build6' }, - ['1206889573'] = { Name = 'v_65_main_build7' }, - ['291380295'] = { Name = 'v_65_main_deta' }, - ['-1741014901'] = { Name = 'v_65_main_ext1' }, - ['-1440949168'] = { Name = 'v_65_main_ext2' }, - ['-190746276'] = { Name = 'v_65_main_ext3' }, - ['-571010530'] = { Name = 'v_65_main_over' }, - ['97270453'] = { Name = 'v_65_main_refl' }, - ['-1046047214'] = { Name = 'v_65_p_artrugs' }, - ['-860220667'] = { Name = 'v_65_p_blinds_ns' }, - ['-2140538308'] = { Name = 'v_65_p_desk_bake' }, - ['1670131521'] = { Name = 'v_65_p_shelves_bake' }, - ['-1762390686'] = { Name = 'v_65_shell' }, - ['-1121859249'] = { Name = 'v_66_backrmskirt' }, - ['1286172969'] = { Name = 'v_66_backrmstuff' }, - ['-1705427376'] = { Name = 'v_66_counter' }, - ['158760308'] = { Name = 'v_66_duct' }, - ['-2013261546'] = { Name = 'v_66_fridge' }, - ['-1658891553'] = { Name = 'v_66_glass1' }, - ['-412850320'] = { Name = 'v_66_glass2' }, - ['-2120246304'] = { Name = 'v_66_glass3' }, - ['1506633185'] = { Name = 'v_66_lamps' }, - ['-1652393826'] = { Name = 'v_66_mirrofloor' }, - ['-1808352745'] = { Name = 'v_66_posters' }, - ['1569171817'] = { Name = 'v_66_posters2' }, - ['-1819431675'] = { Name = 'v_66_reflection' }, - ['-385641770'] = { Name = 'v_66_shadowmap' }, - ['716390133'] = { Name = 'v_66_shadowmap2' }, - ['-946738703'] = { Name = 'v_66_shelves' }, - ['-848486726'] = { Name = 'v_66_shop711' }, - ['-53547394'] = { Name = 'v_66_shopdirt' }, - ['1527689689'] = { Name = 'v_66_shopstains' }, - ['2119031845'] = { Name = 'v_66_storedirt' }, - ['696804822'] = { Name = 'v_68_backrmskirt' }, - ['-385799356'] = { Name = 'v_68_backrmstuff' }, - ['-504687826'] = { Name = 'v_68_broeknvend' }, - ['-1083926933'] = { Name = 'v_68_counter' }, - ['1400075259'] = { Name = 'v_68_donuts' }, - ['-2085977051'] = { Name = 'v_68_ducttape' }, - ['2010838017'] = { Name = 'v_68_fridgedrinks' }, - ['-1791897623'] = { Name = 'v_68_fridgefood' }, - ['1027723385'] = { Name = 'v_68_gassrefproxy' }, - ['-1365022591'] = { Name = 'v_68_gasstationshell' }, - ['-1689708552'] = { Name = 'v_68_glass1' }, - ['-1455246357'] = { Name = 'v_68_glass2' }, - ['-1097015649'] = { Name = 'v_68_glass3' }, - ['-1678900961'] = { Name = 'v_68_glasschillers' }, - ['799007674'] = { Name = 'v_68_glasschillers2' }, - ['1769278674'] = { Name = 'v_68_mags' }, - ['1902010896'] = { Name = 'v_68_posters' }, - ['-1068706101'] = { Name = 'v_68_shadowmap' }, - ['-1862717525'] = { Name = 'v_68_shadowmap2' }, - ['2130217894'] = { Name = 'v_68_shadowmap3' }, - ['-491485450'] = { Name = 'v_68_shopdirt' }, - ['1684699707'] = { Name = 'v_68_shopsigns' }, - ['1636817760'] = { Name = 'v_68_shopstains' }, - ['1450801857'] = { Name = 'v_68_storedirt' }, - ['-198986535'] = { Name = 'v_68_toiletdirt' }, - ['133200702'] = { Name = 'v_68_toiletstuff' }, - ['1171575240'] = { Name = 'v_7_beams' }, - ['2069008529'] = { Name = 'v_7_bulletdam01' }, - ['-1731675408'] = { Name = 'v_7_cable3' }, - ['1068402877'] = { Name = 'v_7_cable4' }, - ['-1318786008'] = { Name = 'v_7_cable5' }, - ['-35862351'] = { Name = 'v_7_cables1' }, - ['-1834412393'] = { Name = 'v_7_gc_reflectproxy' }, - ['-167539068'] = { Name = 'v_7_gc_shell' }, - ['1846059007'] = { Name = 'v_7_gcboard' }, - ['-869663036'] = { Name = 'v_7_gcpartwall' }, - ['1205850919'] = { Name = 'v_7_glass01' }, - ['1510373236'] = { Name = 'v_7_glass02' }, - ['844572694'] = { Name = 'v_7_glass03' }, - ['100421457'] = { Name = 'v_7_glass04' }, - ['-1232555929'] = { Name = 'v_7_glass05' }, - ['-2003381116'] = { Name = 'v_7_glass06' }, - ['1676118822'] = { Name = 'v_7_glass07' }, - ['1983983577'] = { Name = 'v_7_glass08' }, - ['1066058349'] = { Name = 'v_7_glass09' }, - ['920733431'] = { Name = 'v_7_glass10' }, - ['-74559406'] = { Name = 'v_7_glass11' }, - ['-615706672'] = { Name = 'v_7_glass12' }, - ['-1865614683'] = { Name = 'v_7_glass13' }, - ['2131679017'] = { Name = 'v_7_glass14' }, - ['649701032'] = { Name = 'v_7_glass15' }, - ['343409189'] = { Name = 'v_7_glass16' }, - ['1454048910'] = { Name = 'v_7_glass17' }, - ['-1182058141'] = { Name = 'v_7_glassdoor' }, - ['-1713405868'] = { Name = 'v_7_handguns' }, - ['-1526049538'] = { Name = 'v_7_lockers' }, - ['-104416514'] = { Name = 'v_7_merch01' }, - ['1714950253'] = { Name = 'v_7_merchandise' }, - ['1127140548'] = { Name = 'v_7_merchglass003' }, - ['129914336'] = { Name = 'v_7_merchglass004' }, - ['286091390'] = { Name = 'v_7_merchglass005' }, - ['1778850420'] = { Name = 'v_7_merchglass009' }, - ['-1453811774'] = { Name = 'v_7_merchglass010' }, - ['-1181370308'] = { Name = 'v_7_merchglass011' }, - ['884392695'] = { Name = 'v_7_merchglass1' }, - ['1179149850'] = { Name = 'v_7_merchglass2' }, - ['419498892'] = { Name = 'v_7_merchglass3' }, - ['717991713'] = { Name = 'v_7_merchglass4' }, - ['-1927744582'] = { Name = 'v_7_merchglass5' }, - ['507680271'] = { Name = 'v_7_merchglass6' }, - ['1887189633'] = { Name = 'v_7_merchglass7' }, - ['2146294116'] = { Name = 'v_7_merchglass8' }, - ['1540570471'] = { Name = 'v_7_officepost' }, - ['1357979372'] = { Name = 'v_7_officeshad' }, - ['596691194'] = { Name = 'v_7_officestuff' }, - ['-282474754'] = { Name = 'v_7_officestuff2' }, - ['688047337'] = { Name = 'v_7_overlay03' }, - ['-170681545'] = { Name = 'v_7_overlays' }, - ['-1109002635'] = { Name = 'v_7_overlays01' }, - ['-1529134718'] = { Name = 'v_7_rangecntr' }, - ['-1945028331'] = { Name = 'v_7_rangeedges' }, - ['1983494371'] = { Name = 'v_7_rangeglass' }, - ['837474767'] = { Name = 'v_7_rangemisc' }, - ['-579452485'] = { Name = 'v_7_rangeovrlys' }, - ['1009302317'] = { Name = 'v_7_rangeposters' }, - ['-391435111'] = { Name = 'v_7_recposters' }, - ['-511139199'] = { Name = 'v_7_rectables' }, - ['-1198271514'] = { Name = 'v_7_shadowclub' }, - ['469309921'] = { Name = 'v_7_shadowrange' }, - ['813500390'] = { Name = 'v_7_shadowshop' }, - ['-2146349092'] = { Name = 'v_7_shirts' }, - ['700263533'] = { Name = 'v_7_shopposters' }, - ['-73349500'] = { Name = 'v_7_shopshadow' }, - ['-1322514994'] = { Name = 'v_7_shopshelves' }, - ['196322455'] = { Name = 'v_7_shopskirt' }, - ['-1932986419'] = { Name = 'v_7_skirting' }, - ['-857493718'] = { Name = 'v_7_vents01' }, - ['400606559'] = { Name = 'v_7_vents02' }, - ['669214052'] = { Name = 'v_7_vents03' }, - ['-447236122'] = { Name = 'v_7_walledges' }, - ['1031636239'] = { Name = 'v_7_wallguns' }, - ['662464486'] = { Name = 'v_7_wallhooks' }, - ['-1314178390'] = { Name = 'v_71_beams01' }, - ['-521891431'] = { Name = 'v_71_carlift' }, - ['1560349784'] = { Name = 'v_71_carmd3spray' }, - ['-1589828150'] = { Name = 'v_71_decal_paint_n' }, - ['69187665'] = { Name = 'v_71_dirt_dec' }, - ['2135992073'] = { Name = 'v_71_guarddirtup' }, - ['92761237'] = { Name = 'v_71_guardstairs' }, - ['2123915948'] = { Name = 'v_71_guardstairstuff' }, - ['-700098701'] = { Name = 'v_71_guardstairsup' }, - ['1871721373'] = { Name = 'v_71_guardtower' }, - ['-1875509047'] = { Name = 'v_71_lock_comp' }, - ['-79707896'] = { Name = 'v_71_lockdirt01' }, - ['-1382898257'] = { Name = 'v_71_lockdirt02' }, - ['1127751220'] = { Name = 'v_71_lockfrtbeams' }, - ['-1573511568'] = { Name = 'v_71_lockgrills' }, - ['-1468571900'] = { Name = 'v_71_lockligh' }, - ['-443873633'] = { Name = 'v_71_locklockers' }, - ['1873693694'] = { Name = 'v_71_lockmndrns' }, - ['405206741'] = { Name = 'v_71_lockoffstuff' }, - ['-217647409'] = { Name = 'v_71_lockolldoor' }, - ['-1699073988'] = { Name = 'v_71_lockpipes' }, - ['1078645590'] = { Name = 'v_71_lockshell' }, - ['1494728072'] = { Name = 'v_71_lockshelves' }, - ['-917876829'] = { Name = 'v_71_lockstairs' }, - ['-1078431401'] = { Name = 'v_71_locktank' }, - ['-1862441111'] = { Name = 'v_71_lockvent' }, - ['-1402853171'] = { Name = 'v_71_tyreshelves' }, - ['-1773734955'] = { Name = 'v_71_veh_bar' }, - ['-1042438513'] = { Name = 'v_72_beams' }, - ['631756383'] = { Name = 'v_72_bike_mount002' }, - ['870413010'] = { Name = 'v_72_bike_mount003' }, - ['1617644513'] = { Name = 'v_72_bike_mount007' }, - ['1010434943'] = { Name = 'v_72_bike_mount009' }, - ['-1083795589'] = { Name = 'v_72_bike_mount01' }, - ['1179162876'] = { Name = 'v_72_bike_mount010' }, - ['2014215303'] = { Name = 'v_72_bike_mount011' }, - ['1652052315'] = { Name = 'v_72_bike_mount012' }, - ['1251357038'] = { Name = 'v_72_bulb_01' }, - ['-1979972938'] = { Name = 'v_72_carpet01' }, - ['-1605554344'] = { Name = 'v_72_carpet02' }, - ['393566972'] = { Name = 'v_72_ceilingdet' }, - ['1526327075'] = { Name = 'v_72_ceilinglights' }, - ['-1062684391'] = { Name = 'v_72_ceilinglights02' }, - ['-1389784549'] = { Name = 'v_72_ceilinglights03' }, - ['1614884226'] = { Name = 'v_72_elevator_panel' }, - ['-1927359385'] = { Name = 'v_72_elevator' }, - ['1731217220'] = { Name = 'v_72_emis_only_l' }, - ['-1166918348'] = { Name = 'v_72_emis_only_l001' }, - ['1296717382'] = { Name = 'v_72_emis_wall_l' }, - ['-1200487128'] = { Name = 'v_72_fakemissive_lo' }, - ['1877747249'] = { Name = 'v_72_gar_lo_sm' }, - ['-2002316500'] = { Name = 'v_72_garagel_shell_proxy' }, - ['-502148694'] = { Name = 'v_72_garagel_shell' }, - ['-126789604'] = { Name = 'v_72_garagem_decals' }, - ['-529641437'] = { Name = 'v_72_garagem_shell' }, - ['1019630128'] = { Name = 'v_72_garagem_sm' }, - ['649440480'] = { Name = 'v_72_garagem_sp_decals' }, - ['1610500342'] = { Name = 'v_72_garagem_sp_shell' }, - ['1600503033'] = { Name = 'v_72_garagem_sp_sm' }, - ['1989812853'] = { Name = 'v_72_garagepartition' }, - ['-1007835625'] = { Name = 'v_72_garages_decals' }, - ['838453451'] = { Name = 'v_72_garages_shell' }, - ['-1260551682'] = { Name = 'v_72_gardoor_sm' }, - ['677353233'] = { Name = 'v_72_gardoor_sm001' }, - ['-1370357915'] = { Name = 'v_72_garlcables01' }, - ['1161065173'] = { Name = 'v_72_led_floor' }, - ['-1510396146'] = { Name = 'v_72_led_floor001' }, - ['1964525307'] = { Name = 'v_72_med_det01' }, - ['-586705192'] = { Name = 'v_72_med_det02' }, - ['208918524'] = { Name = 'v_72_mirrorl' }, - ['-1978707147'] = { Name = 'v_72_mirrorm' }, - ['-1146899342'] = { Name = 'v_72_mpgjackframe' }, - ['-539021124'] = { Name = 'v_72_railsdoor' }, - ['-1023121315'] = { Name = 'v_72_railsdoor001' }, - ['-511329949'] = { Name = 'v_72_rollerdoor' }, - ['1815138967'] = { Name = 'v_72_shelves' }, - ['454642439'] = { Name = 'v_72_sp_med_det' }, - ['548352309'] = { Name = 'v_72_sp_reflection' }, - ['1834352910'] = { Name = 'v_72_sp_units' }, - ['-851350442'] = { Name = 'v_72_unitlarge' }, - ['-1890869168'] = { Name = 'v_72_units' }, - ['2107652258'] = { Name = 'v_72_units02' }, - ['-1845111656'] = { Name = 'v_72_wall_cabling003' }, - ['494860478'] = { Name = 'v_72_wall_cabling01' }, - ['706885131'] = { Name = 'v_72_wall_lights004' }, - ['2039075421'] = { Name = 'v_72_wall_lights02' }, - ['432879160'] = { Name = 'v_72_walldetail003' }, - ['1815473263'] = { Name = 'v_72_walldetaiprx' }, - ['-995805586'] = { Name = 'v_73_4_fib_reflect00' }, - ['-1295084863'] = { Name = 'v_73_4_fib_reflect01' }, - ['-1762206962'] = { Name = 'v_73_4_fib_reflect03' }, - ['1419925094'] = { Name = 'v_73_4_fib_reflect04' }, - ['968794271'] = { Name = 'v_73_4_fib_reflect09' }, - ['1787378147'] = { Name = 'v_73_5_bathroom_dcl' }, - ['1555418027'] = { Name = 'v_73_5_bathroom_dcl001' }, - ['-41632130'] = { Name = 'v_73_ao_5_a' }, - ['-340321565'] = { Name = 'v_73_ao_5_b' }, - ['-1565259554'] = { Name = 'v_73_ao_5_c' }, - ['-937733204'] = { Name = 'v_73_ao_5_d' }, - ['2134852085'] = { Name = 'v_73_ao_5_e' }, - ['-1267880879'] = { Name = 'v_73_ao_5_f' }, - ['128078505'] = { Name = 'v_73_ao_5_g' }, - ['1039974237'] = { Name = 'v_73_ao_5_h' }, - ['2004000418'] = { Name = 'v_73_ap_bano_dspwall_ab003' }, - ['2067870369'] = { Name = 'v_73_ap_bano_dspwall_ab99' }, - ['-788445315'] = { Name = 'v_73_cur_ao_test' }, - ['-378906067'] = { Name = 'v_73_cur_el2_deta' }, - ['390035211'] = { Name = 'v_73_cur_el2_over' }, - ['903673433'] = { Name = 'v_73_cur_ele_deta' }, - ['-293896050'] = { Name = 'v_73_cur_ele_elev' }, - ['-33503993'] = { Name = 'v_73_cur_ele_elev001' }, - ['1280373903'] = { Name = 'v_73_cur_ele_over' }, - ['-284246939'] = { Name = 'v_73_cur_of1_blin' }, - ['836742689'] = { Name = 'v_73_cur_of1_deta' }, - ['-616290578'] = { Name = 'v_73_cur_of2_blin' }, - ['1644469761'] = { Name = 'v_73_cur_of2_deta' }, - ['-1495020726'] = { Name = 'v_73_cur_of3_blin' }, - ['-948561344'] = { Name = 'v_73_cur_of3_deta' }, - ['426674675'] = { Name = 'v_73_cur_off2rm_ao' }, - ['-1245854209'] = { Name = 'v_73_cur_off2rm_de' }, - ['164246450'] = { Name = 'v_73_cur_over1' }, - ['470374448'] = { Name = 'v_73_cur_over2' }, - ['-468686785'] = { Name = 'v_73_cur_over3' }, - ['-1308981838'] = { Name = 'v_73_cur_reflect' }, - ['-215813027'] = { Name = 'v_73_cur_sec_desk' }, - ['-763119381'] = { Name = 'v_73_cur_sec_deta' }, - ['-1264500011'] = { Name = 'v_73_cur_sec_over' }, - ['-658180548'] = { Name = 'v_73_cur_sec_stat' }, - ['-1079398042'] = { Name = 'v_73_cur_shell' }, - ['-1816319918'] = { Name = 'v_73_elev_det' }, - ['-262653530'] = { Name = 'v_73_elev_plat' }, - ['150910092'] = { Name = 'v_73_elev_sec1' }, - ['943100735'] = { Name = 'v_73_elev_sec2' }, - ['1248868274'] = { Name = 'v_73_elev_sec3' }, - ['465623636'] = { Name = 'v_73_elev_sec4' }, - ['771981017'] = { Name = 'v_73_elev_sec5' }, - ['-338480199'] = { Name = 'v_73_elev_shell_refl' }, - ['594166609'] = { Name = 'v_73_fib_5_glow_019' }, - ['-1100122083'] = { Name = 'v_73_fib_5_glow_020' }, - ['-1865245464'] = { Name = 'v_73_fib_5_glow_021' }, - ['1410737008'] = { Name = 'v_73_fib_5_glow_022' }, - ['-1504098315'] = { Name = 'v_73_fib_5_glow_023' }, - ['1947427690'] = { Name = 'v_73_fib_5_glow_024' }, - ['1179486175'] = { Name = 'v_73_fib_5_glow_025' }, - ['392964637'] = { Name = 'v_73_fib_5_glow_026' }, - ['-456245978'] = { Name = 'v_73_fib_5_glow_098' }, - ['1411918413'] = { Name = 'v_73_glass_5_deta' }, - ['753274590'] = { Name = 'v_73_glass_5_deta004' }, - ['-1637092888'] = { Name = 'v_73_glass_5_deta005' }, - ['1045507968'] = { Name = 'v_73_glass_5_deta020' }, - ['1201357332'] = { Name = 'v_73_glass_5_deta021' }, - ['1508828859'] = { Name = 'v_73_glass_5_deta022' }, - ['-67393130'] = { Name = 'v_73_glass_5_deta1' }, - ['-305328839'] = { Name = 'v_73_glass_5_deta2' }, - ['-603035204'] = { Name = 'v_73_glass_5_deta3' }, - ['-1154510081'] = { Name = 'v_73_jan_cm1_deta' }, - ['-744883223'] = { Name = 'v_73_jan_cm1_leds' }, - ['819319148'] = { Name = 'v_73_jan_cm1_over' }, - ['-1687972932'] = { Name = 'v_73_jan_cm2_deta' }, - ['2019406852'] = { Name = 'v_73_jan_cm2_over' }, - ['-412585552'] = { Name = 'v_73_jan_cm3_deta' }, - ['-1219723325'] = { Name = 'v_73_jan_cm3_over' }, - ['1038996406'] = { Name = 'v_73_jan_dirt_test' }, - ['1284045783'] = { Name = 'v_73_jan_ele_deta' }, - ['2117464664'] = { Name = 'v_73_jan_ele_leds' }, - ['404119667'] = { Name = 'v_73_jan_ele_over' }, - ['545243013'] = { Name = 'v_73_jan_of1_deta' }, - ['1835858909'] = { Name = 'v_73_jan_of1_deta2' }, - ['95766186'] = { Name = 'v_73_jan_of2_ceil' }, - ['359884573'] = { Name = 'v_73_jan_of2_deta' }, - ['1266889792'] = { Name = 'v_73_jan_of2_over' }, - ['991435746'] = { Name = 'v_73_jan_of3_ceil' }, - ['-2033305107'] = { Name = 'v_73_jan_of3_deta' }, - ['146157144'] = { Name = 'v_73_jan_of3_over' }, - ['10231019'] = { Name = 'v_73_jan_over1' }, - ['1968454945'] = { Name = 'v_73_jan_sec_desk' }, - ['1879437527'] = { Name = 'v_73_jan_shell' }, - ['-176386948'] = { Name = 'v_73_jan_wcm_deta' }, - ['2097822927'] = { Name = 'v_73_jan_wcm_over' }, - ['608903112'] = { Name = 'v_73_off_st1_deta' }, - ['-574294045'] = { Name = 'v_73_off_st1_over' }, - ['-131256877'] = { Name = 'v_73_off_st1_ref' }, - ['1105887107'] = { Name = 'v_73_off_st1_step' }, - ['269196309'] = { Name = 'v_73_off_st2_deta' }, - ['1838084084'] = { Name = 'v_73_off_st2_over' }, - ['-1188039900'] = { Name = 'v_73_off_st2_ref' }, - ['281701921'] = { Name = 'v_73_off_st2_step' }, - ['-287820007'] = { Name = 'v_73_p_ap_banosink_aa001' }, - ['902603284'] = { Name = 'v_73_p_ap_banostall_az' }, - ['-224715101'] = { Name = 'v_73_p_ap_banourinal_aa003' }, - ['-2127684732'] = { Name = 'v_73_recp_seats001' }, - ['-1535657705'] = { Name = 'v_73_screen_a' }, - ['1383634298'] = { Name = 'v_73_servdesk001' }, - ['1646402317'] = { Name = 'v_73_servers001' }, - ['1047031888'] = { Name = 'v_73_servlights001' }, - ['-1060859629'] = { Name = 'v_73_sign_006' }, - ['-351635619'] = { Name = 'v_73_sign_5' }, - ['1467655535'] = { Name = 'v_73_stair_shell_refl' }, - ['-1994902426'] = { Name = 'v_73_stair_shell' }, - ['-1565466349'] = { Name = 'v_73_stair_shell001' }, - ['870447913'] = { Name = 'v_73_v_fib_flag_a' }, - ['-828978194'] = { Name = 'v_73_v_fib_flag_a001' }, - ['-255061924'] = { Name = 'v_73_v_fib_flag_a002' }, - ['-1442315567'] = { Name = 'v_73_v_fib_flag_a003' }, - ['103948234'] = { Name = 'v_73_v_fib_flag_b' }, - ['-646586352'] = { Name = 'v_73_vfx_curve_dummy' }, - ['1381190415'] = { Name = 'v_73_vfx_curve_dummy001' }, - ['-1525944185'] = { Name = 'v_73_vfx_curve_dummy002' }, - ['919901202'] = { Name = 'v_73_vfx_curve_dummy003' }, - ['1833271547'] = { Name = 'v_73_vfx_curve_dummy004' }, - ['2129863766'] = { Name = 'v_73_vfx_curve_dummy005' }, - ['1474834590'] = { Name = 'v_73_vfx_mesh_dummy_00' }, - ['2000842578'] = { Name = 'v_73_vfx_mesh_dummy_01' }, - ['-2078471929'] = { Name = 'v_73_vfx_mesh_dummy_02' }, - ['-1846139719'] = { Name = 'v_73_vfx_mesh_dummy_03' }, - ['874998041'] = { Name = 'v_73_vfx_mesh_dummy_04' }, - ['2092628631'] = { Name = 'v_73screen_b' }, - ['1502987458'] = { Name = 'v_74_3_emerg_008' }, - ['-2067326176'] = { Name = 'v_74_3_emerg_009' }, - ['1641533286'] = { Name = 'v_74_3_emerg_010' }, - ['-524590811'] = { Name = 'v_74_3_emerg_1' }, - ['-2146787379'] = { Name = 'v_74_3_emerg_2' }, - ['1774482233'] = { Name = 'v_74_3_emerg_3' }, - ['1534776998'] = { Name = 'v_74_3_emerg_4' }, - ['-987485697'] = { Name = 'v_74_3_emerg_6' }, - ['-1226994318'] = { Name = 'v_74_3_emerg_7' }, - ['1708749829'] = { Name = 'v_74_3_stairlights' }, - ['-837077522'] = { Name = 'v_74_4_emerg_10' }, - ['1492389816'] = { Name = 'v_74_4_emerg_2' }, - ['-1968213202'] = { Name = 'v_74_4_emerg_3' }, - ['881149651'] = { Name = 'v_74_4_emerg_4' }, - ['1713613335'] = { Name = 'v_74_4_emerg_5' }, - ['770750890'] = { Name = 'v_74_4_emerg_6' }, - ['83906129'] = { Name = 'v_74_4_emerg' }, - ['-28676123'] = { Name = 'v_74_ao_5_h001' }, - ['-4400490'] = { Name = 'v_74_atr_cor1_d_ns' }, - ['-970303265'] = { Name = 'v_74_atr_cor1_deta' }, - ['1433507804'] = { Name = 'v_74_atr_hall_d_ns' }, - ['-1387347065'] = { Name = 'v_74_atr_hall_d_ns001' }, - ['-1623447710'] = { Name = 'v_74_atr_hall_d_ns002' }, - ['-1963402901'] = { Name = 'v_74_atr_hall_deta' }, - ['-846776398'] = { Name = 'v_74_atr_hall_deta001' }, - ['375966068'] = { Name = 'v_74_atr_hall_deta002' }, - ['672296135'] = { Name = 'v_74_atr_hall_deta003' }, - ['-230686429'] = { Name = 'v_74_atr_hall_deta004' }, - ['72138416'] = { Name = 'v_74_atr_hall_lamp' }, - ['-952714359'] = { Name = 'v_74_atr_hall_lamp001' }, - ['-1315991493'] = { Name = 'v_74_atr_hall_lamp002' }, - ['1157183403'] = { Name = 'v_74_atr_hall_m_refl' }, - ['932094059'] = { Name = 'v_74_atr_off1_d_ns' }, - ['1935229804'] = { Name = 'v_74_atr_off1_deta' }, - ['203764315'] = { Name = 'v_74_atr_off2_d_ns' }, - ['799848112'] = { Name = 'v_74_atr_off2_deta' }, - ['-320162783'] = { Name = 'v_74_atr_off3_d_ns' }, - ['607941655'] = { Name = 'v_74_atr_off3_deta' }, - ['1926454755'] = { Name = 'v_74_atr_spn1detail' }, - ['1027173695'] = { Name = 'v_74_atr_spn2detail' }, - ['-2138307609'] = { Name = 'v_74_atr_spn3detail' }, - ['1923052747'] = { Name = 'v_74_atr_stai_d_ns' }, - ['-701670182'] = { Name = 'v_74_atr_stai_deta' }, - ['1713196070'] = { Name = 'v_74_atrium_shell' }, - ['-1220458629'] = { Name = 'v_74_ceilin2' }, - ['213269092'] = { Name = 'v_74_cfemlight_rsref002' }, - ['399265936'] = { Name = 'v_74_cfemlight_rsref003' }, - ['689042203'] = { Name = 'v_74_cfemlight_rsref004' }, - ['1144072537'] = { Name = 'v_74_cfemlight_rsref005' }, - ['1383351775'] = { Name = 'v_74_cfemlight_rsref006' }, - ['1622532706'] = { Name = 'v_74_cfemlight_rsref007' }, - ['2129796826'] = { Name = 'v_74_cfemlight_rsref008' }, - ['-193836163'] = { Name = 'v_74_cfemlight_rsref019' }, - ['1646864405'] = { Name = 'v_74_cfemlight_rsref020' }, - ['-876446906'] = { Name = 'v_74_cfemlight_rsref021' }, - ['1868448383'] = { Name = 'v_74_cfemlight_rsref023' }, - ['-1660510769'] = { Name = 'v_74_cfemlight_rsref024' }, - ['-11246999'] = { Name = 'v_74_cfemlight_rsref025' }, - ['753581469'] = { Name = 'v_74_cfemlight_rsref026' }, - ['-488986250'] = { Name = 'v_74_cfemlight_rsref027' }, - ['-795114248'] = { Name = 'v_74_cfemlight_rsref028' }, - ['911855739'] = { Name = 'v_74_cfemlight_rsref029' }, - ['-580428081'] = { Name = 'v_74_cfemlight_rsref030' }, - ['-200078290'] = { Name = 'v_74_cfemlight_rsref031' }, - ['1898558128'] = { Name = 'v_74_collapsedfl3' }, - ['-1315250049'] = { Name = 'v_74_fib_embb' }, - ['1954574771'] = { Name = 'v_74_fib_embb001' }, - ['857075423'] = { Name = 'v_74_fib_embb002' }, - ['550455890'] = { Name = 'v_74_fib_embb003' }, - ['-857628044'] = { Name = 'v_74_fib_embb004' }, - ['-1012690952'] = { Name = 'v_74_fib_embb005' }, - ['-100107071'] = { Name = 'v_74_fib_embb006' }, - ['-405415844'] = { Name = 'v_74_fib_embb007' }, - ['-358818322'] = { Name = 'v_74_fib_embb009' }, - ['-663114548'] = { Name = 'v_74_fib_embb010' }, - ['722096620'] = { Name = 'v_74_fib_embb011' }, - ['1035269953'] = { Name = 'v_74_fib_embb012' }, - ['242194615'] = { Name = 'v_74_fib_embb013' }, - ['1953981633'] = { Name = 'v_74_fib_embb014' }, - ['-1858232755'] = { Name = 'v_74_fib_embb019' }, - ['1537356871'] = { Name = 'v_74_fib_embb022' }, - ['1240174810'] = { Name = 'v_74_fib_embb023' }, - ['1534145513'] = { Name = 'v_74_fib_embb024' }, - ['2026008203'] = { Name = 'v_74_fib_embb025' }, - ['1743178964'] = { Name = 'v_74_fib_embb026' }, - ['-1784829887'] = { Name = 'v_74_fib_embb027' }, - ['-2110094981'] = { Name = 'v_74_fib_embb028' }, - ['-1075053347'] = { Name = 'v_74_fib_embb029' }, - ['-42175347'] = { Name = 'v_74_fib_embb030' }, - ['-348729342'] = { Name = 'v_74_fib_embb031' }, - ['-500122122'] = { Name = 'v_74_fib_embb032' }, - ['-803726907'] = { Name = 'v_74_fib_embb033' }, - ['624018423'] = { Name = 'v_74_fib_embb034' }, - ['-1308875538'] = { Name = 'v_74_fircub_glsshards007' }, - ['-1535964708'] = { Name = 'v_74_fircub_glsshards008' }, - ['-1774621335'] = { Name = 'v_74_fircub_glsshards009' }, - ['1614797137'] = { Name = 'v_74_glass_a_deta003' }, - ['-1498520019'] = { Name = 'v_74_glass_a_deta004' }, - ['886768264'] = { Name = 'v_74_glass_a_deta005' }, - ['654567130'] = { Name = 'v_74_glass_a_deta007' }, - ['1844507827'] = { Name = 'v_74_glass_a_deta008' }, - ['193408993'] = { Name = 'v_74_glass_a_deta009' }, - ['571495322'] = { Name = 'v_74_glass_a_deta010' }, - ['392773196'] = { Name = 'v_74_glass_a_deta011' }, - ['70687585'] = { Name = 'v_74_hobar_debris005' }, - ['-1100640184'] = { Name = 'v_74_hobar_debris006' }, - ['-1674687526'] = { Name = 'v_74_hobar_debris007' }, - ['-1380585751'] = { Name = 'v_74_hobar_debris008' }, - ['2013234045'] = { Name = 'v_74_hobar_debris009' }, - ['-2073356108'] = { Name = 'v_74_hobar_debris010' }, - ['1925969266'] = { Name = 'v_74_hobar_debris011' }, - ['876968042'] = { Name = 'v_74_hobar_debris012' }, - ['581457200'] = { Name = 'v_74_hobar_debris013' }, - ['1506165611'] = { Name = 'v_74_hobar_debris014' }, - ['1176378395'] = { Name = 'v_74_hobar_debris015' }, - ['-313529732'] = { Name = 'v_74_hobar_debris016' }, - ['-590263937'] = { Name = 'v_74_hobar_debris017' }, - ['295482137'] = { Name = 'v_74_hobar_debris018' }, - ['-10842475'] = { Name = 'v_74_hobar_debris019' }, - ['1874488371'] = { Name = 'v_74_hobar_debris020' }, - ['-469543741'] = { Name = 'v_74_hobar_debris023' }, - ['913242525'] = { Name = 'v_74_hobar_debris024' }, - ['-1102477100'] = { Name = 'v_74_hobar_debris026' }, - ['-738937814'] = { Name = 'v_74_hobar_debris027' }, - ['-509161586'] = { Name = 'v_74_hobar_debris028' }, - ['255789505'] = { Name = 'v_74_it1_ceil3' }, - ['558931040'] = { Name = 'v_74_it1_ceiling_smoke_02_skin' }, - ['1918241244'] = { Name = 'v_74_it1_ceiling_smoke_03_skin' }, - ['436653268'] = { Name = 'v_74_it1_ceiling_smoke_04_skin' }, - ['-1149064556'] = { Name = 'v_74_it1_ceiling_smoke_05_skin' }, - ['-2104923921'] = { Name = 'v_74_it1_ceiling_smoke_06_skin' }, - ['247004622'] = { Name = 'v_74_it1_ceiling_smoke_07_skin' }, - ['-1121371947'] = { Name = 'v_74_it1_ceiling_smoke_08_skin' }, - ['-1304690428'] = { Name = 'v_74_it1_ceiling_smoke_09_skin' }, - ['453384592'] = { Name = 'v_74_it1_ceiling_smoke_13_skin' }, - ['-807016241'] = { Name = 'v_74_it1_cor1_ceil' }, - ['1980787518'] = { Name = 'v_74_it1_cor1_deca' }, - ['-359270708'] = { Name = 'v_74_it1_cor1_deta' }, - ['894678636'] = { Name = 'v_74_it1_cor2_ceil' }, - ['-1888552578'] = { Name = 'v_74_it1_cor2_deca' }, - ['855415438'] = { Name = 'v_74_it1_cor2_deta' }, - ['-172462078'] = { Name = 'v_74_it1_elev_deca' }, - ['445927041'] = { Name = 'v_74_it1_elev_deta' }, - ['438094821'] = { Name = 'v_74_it1_off1_debr' }, - ['1137459700'] = { Name = 'v_74_it1_off1_deta' }, - ['-908389537'] = { Name = 'v_74_it1_off1_deta001' }, - ['979951701'] = { Name = 'v_74_it1_off2_debr' }, - ['-1848374314'] = { Name = 'v_74_it1_off2_deca' }, - ['1523282522'] = { Name = 'v_74_it1_off2_deta' }, - ['672163319'] = { Name = 'v_74_it1_off3_ceil' }, - ['614134920'] = { Name = 'v_74_it1_off3_debr' }, - ['436952141'] = { Name = 'v_74_it1_off3_deca' }, - ['-1640306306'] = { Name = 'v_74_it1_off3_deta' }, - ['636055956'] = { Name = 'v_74_it1_post_ceil' }, - ['-599387647'] = { Name = 'v_74_it1_post_deca' }, - ['-1941965478'] = { Name = 'v_74_it1_post_deta' }, - ['-1527646813'] = { Name = 'v_74_it1_shell' }, - ['-428506518'] = { Name = 'v_74_it1_stai_deca' }, - ['204038321'] = { Name = 'v_74_it1_stai_deta' }, - ['1952093334'] = { Name = 'v_74_it1_tiles2' }, - ['1391123545'] = { Name = 'v_74_it1_void_deca' }, - ['699343434'] = { Name = 'v_74_it1_void_deta' }, - ['2136178439'] = { Name = 'v_74_it2_ceiling_smoke_00_skin' }, - ['1363265337'] = { Name = 'v_74_it2_ceiling_smoke_01_skin' }, - ['-484697001'] = { Name = 'v_74_it2_ceiling_smoke_03_skin' }, - ['144675916'] = { Name = 'v_74_it2_ceiling_smoke_04_skin' }, - ['-1637440482'] = { Name = 'v_74_it2_ceiling_smoke_06_skin' }, - ['-459530925'] = { Name = 'v_74_it2_ceiling_smoke_07_skin' }, - ['-978852523'] = { Name = 'v_74_it2_ceiling_smoke_08_skin' }, - ['-1079402025'] = { Name = 'v_74_it2_ceiling_smoke_09_skin' }, - ['-1381138567'] = { Name = 'v_74_it2_ceiling_smoke_10_skin' }, - ['600717772'] = { Name = 'v_74_it2_ceiling_smoke_11_skin' }, - ['192663080'] = { Name = 'v_74_it2_ceiling_smoke_12_skin' }, - ['-118524833'] = { Name = 'v_74_it2_ceiling_smoke_14_skin' }, - ['1354683804'] = { Name = 'v_74_it2_ceiling_smoke_15_skin' }, - ['746431764'] = { Name = 'v_74_it2_ceiling_smoke_16_skin' }, - ['1253359691'] = { Name = 'v_74_it2_ceiling_smoke_17_skin' }, - ['-525699171'] = { Name = 'v_74_it2_cor1_deta' }, - ['1976551902'] = { Name = 'v_74_it2_cor1_dirt' }, - ['-1310503960'] = { Name = 'v_74_it2_cor2_ceil' }, - ['1864055513'] = { Name = 'v_74_it2_cor2_debr' }, - ['819185279'] = { Name = 'v_74_it2_cor2_deca' }, - ['-71443553'] = { Name = 'v_74_it2_cor2_deta' }, - ['1899419710'] = { Name = 'v_74_it2_cor3_ceil' }, - ['845243175'] = { Name = 'v_74_it2_cor3_deca' }, - ['1385075231'] = { Name = 'v_74_it2_cor3_deta' }, - ['1331747749'] = { Name = 'v_74_it2_elev_deta' }, - ['1354753730'] = { Name = 'v_74_it2_elev_dirt' }, - ['1620421988'] = { Name = 'v_74_it2_open_ceil' }, - ['-1086016681'] = { Name = 'v_74_it2_open_deta' }, - ['1258903189'] = { Name = 'v_74_it2_open_dirt' }, - ['271701384'] = { Name = 'v_74_it2_post_deca2' }, - ['-913384692'] = { Name = 'v_74_it2_post_deta' }, - ['1607428021'] = { Name = 'v_74_it2_ser1_ceil' }, - ['-620944365'] = { Name = 'v_74_it2_ser1_debr' }, - ['1303322837'] = { Name = 'v_74_it2_ser1_deca' }, - ['-513939424'] = { Name = 'v_74_it2_ser1_deta' }, - ['1735139406'] = { Name = 'v_74_it2_ser2_ceil' }, - ['-1432490315'] = { Name = 'v_74_it2_ser2_deca' }, - ['-1876285846'] = { Name = 'v_74_it2_ser2_deta' }, - ['-975112667'] = { Name = 'v_74_it2_shell' }, - ['-274030287'] = { Name = 'v_74_it2_stai_deca' }, - ['-1527341270'] = { Name = 'v_74_it2_stai_deta' }, - ['-2711174'] = { Name = 'v_74_it3_ceil2' }, - ['2078087577'] = { Name = 'v_74_it3_ceilc' }, - ['876153426'] = { Name = 'v_74_it3_ceild' }, - ['-1952654962'] = { Name = 'v_74_it3_ceiling_smoke_01_skin' }, - ['1010168760'] = { Name = 'v_74_it3_ceiling_smoke_03_skin' }, - ['442634172'] = { Name = 'v_74_it3_ceiling_smoke_04_skin' }, - ['-1404539635'] = { Name = 'v_74_it3_co1_deta' }, - ['-79076147'] = { Name = 'v_74_it3_cor1_mnds' }, - ['524344359'] = { Name = 'v_74_it3_cor2_deta' }, - ['-451210038'] = { Name = 'v_74_it3_cor3_debr' }, - ['-2108833056'] = { Name = 'v_74_it3_debf' }, - ['1340311373'] = { Name = 'v_74_it3_hall_mnds' }, - ['1048633232'] = { Name = 'v_74_it3_offi_deta' }, - ['-521505033'] = { Name = 'v_74_it3_offi_mnds' }, - ['1934002579'] = { Name = 'v_74_it3_ope_deta' }, - ['2106080626'] = { Name = 'v_74_it3_open_mnds' }, - ['-879785158'] = { Name = 'v_74_it3_ser2_debr' }, - ['-1656125546'] = { Name = 'v_74_it3_shell' }, - ['1239446966'] = { Name = 'v_74_it3_sta_deta' }, - ['-1946306294'] = { Name = 'v_74_jan_over002' }, - ['2042860694'] = { Name = 'v_74_jan_over003' }, - ['826655824'] = { Name = 'v_74_of_litter_d_h011' }, - ['1860353937'] = { Name = 'v_74_of_litter_d_h013' }, - ['2091146004'] = { Name = 'v_74_of_litter_d_h014' }, - ['-1933575349'] = { Name = 'v_74_of_litter_d_h015' }, - ['-1702226209'] = { Name = 'v_74_of_litter_d_h016' }, - ['-1473465820'] = { Name = 'v_74_of_litter_d_h017' }, - ['-1276393054'] = { Name = 'v_74_of_litter_d_h018' }, - ['1793275814'] = { Name = 'v_74_of_litter_d_h019' }, - ['1356726316'] = { Name = 'v_74_of_litter_d_h020' }, - ['1699096816'] = { Name = 'v_74_of_litter_d_h021' }, - ['1583435673'] = { Name = 'v_74_ofc_debrizz001' }, - ['-1921634882'] = { Name = 'v_74_ofc_debrizz002' }, - ['2046822098'] = { Name = 'v_74_ofc_debrizz003' }, - ['-2035703767'] = { Name = 'v_74_ofc_debrizz004' }, - ['-2055692857'] = { Name = 'v_74_ofc_debrizz005' }, - ['-1594665796'] = { Name = 'v_74_ofc_debrizz007' }, - ['-337089883'] = { Name = 'v_74_ofc_debrizz009' }, - ['-1801437846'] = { Name = 'v_74_ofc_debrizz010' }, - ['-670219193'] = { Name = 'v_74_ofc_debrizz012' }, - ['-357013091'] = { Name = 'v_74_ofc_debrizz013' }, - ['306042921'] = { Name = 'v_74_recp_seats002' }, - ['-15147771'] = { Name = 'v_74_servdesk002' }, - ['1639613915'] = { Name = 'v_74_servers002' }, - ['1932213632'] = { Name = 'v_74_servlights002' }, - ['145744045'] = { Name = 'v_74_stair4' }, - ['1200774769'] = { Name = 'v_74_stair5' }, - ['-450161828'] = { Name = 'v_74_str2_deta' }, - ['-856029940'] = { Name = 'v_74_v_14_hobar_debris021' }, - ['434523886'] = { Name = 'v_74_v_14_it3_cor1_mnds' }, - ['2096596365'] = { Name = 'v_74_v_fib_flag_a004' }, - ['-297768931'] = { Name = 'v_74_v_fib_flag_a007' }, - ['343208307'] = { Name = 'v_74_v_fib02_it1_004' }, - ['168549537'] = { Name = 'v_74_v_fib02_it1_005' }, - ['-286874025'] = { Name = 'v_74_v_fib02_it1_006' }, - ['-559479336'] = { Name = 'v_74_v_fib02_it1_007' }, - ['1641286752'] = { Name = 'v_74_v_fib02_it1_008' }, - ['-801216205'] = { Name = 'v_74_v_fib02_it1_009' }, - ['-319610500'] = { Name = 'v_74_v_fib02_it1_010' }, - ['42028184'] = { Name = 'v_74_v_fib02_it1_011' }, - ['-706238105'] = { Name = 'v_74_v_fib02_it1_03' }, - ['-785374613'] = { Name = 'v_74_v_fib02_it1_off1' }, - ['-1101071159'] = { Name = 'v_74_v_fib02_it1_off2' }, - ['1866419263'] = { Name = 'v_74_v_fib02_it2_cor004' }, - ['-1585794887'] = { Name = 'v_74_v_fib02_it2_cor005' }, - ['-1802037518'] = { Name = 'v_74_v_fib02_it2_cor006' }, - ['-959349914'] = { Name = 'v_74_v_fib02_it2_cor007' }, - ['-637951562'] = { Name = 'v_74_v_fib02_it2_cor008' }, - ['-901512629'] = { Name = 'v_74_v_fib02_it2_cor009' }, - ['-172646588'] = { Name = 'v_74_v_fib02_it2_cor01' }, - ['-426857340'] = { Name = 'v_74_v_fib02_it2_cor2' }, - ['-254492400'] = { Name = 'v_74_v_fib02_it2_cor3' }, - ['-1311229926'] = { Name = 'v_74_v_fib02_it2_elev' }, - ['862763930'] = { Name = 'v_74_v_fib02_it2_elev001' }, - ['-596449452'] = { Name = 'v_74_v_fib02_it2_ser004' }, - ['-892976133'] = { Name = 'v_74_v_fib02_it2_ser005' }, - ['283332656'] = { Name = 'v_74_v_fib02_it2_ser006' }, - ['-1652245186'] = { Name = 'v_74_v_fib02_it2_ser1' }, - ['1807341993'] = { Name = 'v_74_v_fib02_it2_ser2' }, - ['-71974434'] = { Name = 'v_74_v_fib03_it3_cor002' }, - ['-800776470'] = { Name = 'v_74_v_fib03_it3_cor1' }, - ['1628129934'] = { Name = 'v_74_v_fib03_it3_open' }, - ['1402570167'] = { Name = 'v_74_v_fib2_3b_cvr' }, - ['-1460456'] = { Name = 'v_74_vfx_3a_it3_01' }, - ['87009109'] = { Name = 'v_74_vfx_3b_it3_01' }, - ['-805904811'] = { Name = 'v_74_vfx_it3_002' }, - ['296182197'] = { Name = 'v_74_vfx_it3_003' }, - ['592250112'] = { Name = 'v_74_vfx_it3_004' }, - ['-182212434'] = { Name = 'v_74_vfx_it3_005' }, - ['115493931'] = { Name = 'v_74_vfx_it3_006' }, - ['1886166846'] = { Name = 'v_74_vfx_it3_007' }, - ['2133277875'] = { Name = 'v_74_vfx_it3_008' }, - ['871015995'] = { Name = 'v_74_vfx_it3_009' }, - ['-43338284'] = { Name = 'v_74_vfx_it3_010' }, - ['-735740138'] = { Name = 'v_74_vfx_it3_02' }, - ['493674486'] = { Name = 'v_74_vfx_it3_3a_003' }, - ['-236894077'] = { Name = 'v_74_vfx_it3_3b_004' }, - ['-1407676816'] = { Name = 'v_74_vfx_it3_3b_02' }, - ['-150029990'] = { Name = 'v_74_vfx_it3_cor' }, - ['-801721575'] = { Name = 'v_74_vfx_it3_cor001' }, - ['-811026538'] = { Name = 'v_74_vfx_it3_open_cav' }, - ['-643395920'] = { Name = 'v_74_vfx_mesh_fire_00' }, - ['-471489746'] = { Name = 'v_74_vfx_mesh_fire_01' }, - ['-1295400713'] = { Name = 'v_74_vfx_mesh_fire_03' }, - ['-804062327'] = { Name = 'v_74_vfx_mesh_fire_04' }, - ['-1579868402'] = { Name = 'v_74_vfx_mesh_fire_05' }, - ['-1416154478'] = { Name = 'v_74_vfx_mesh_fire_06' }, - ['1912848236'] = { Name = 'v_74_vfx_mesh_fire_07' }, - ['-1449766324'] = { Name = 'v_8_basedecaldirt' }, - ['112105254'] = { Name = 'v_8_baseoverla' }, - ['-308082399'] = { Name = 'v_8_baseoverlay' }, - ['-1765689724'] = { Name = 'v_8_baseoverlay2' }, - ['-1070171527'] = { Name = 'v_8_bath' }, - ['-1494090690'] = { Name = 'v_8_bath2' }, - ['-1351770600'] = { Name = 'v_8_bathrm3' }, - ['1858160751'] = { Name = 'v_8_bed1bulbon' }, - ['-1592353768'] = { Name = 'v_8_bed1decaldirt' }, - ['-1523831552'] = { Name = 'v_8_bed1ovrly' }, - ['1209533339'] = { Name = 'v_8_bed1stuff' }, - ['-481995801'] = { Name = 'v_8_bed2decaldirt' }, - ['2006935161'] = { Name = 'v_8_bed2ovlys' }, - ['1584344391'] = { Name = 'v_8_bed3decaldirt' }, - ['-73828711'] = { Name = 'v_8_bed3ovrly' }, - ['1781265675'] = { Name = 'v_8_bed3stuff' }, - ['-505037174'] = { Name = 'v_8_bed4bulbon' }, - ['-496938732'] = { Name = 'v_8_bedrm4stuff' }, - ['-195617289'] = { Name = 'v_8_diningdecdirt' }, - ['-1405347162'] = { Name = 'v_8_diningovlys' }, - ['626033468'] = { Name = 'v_8_diningtable' }, - ['-1153707826'] = { Name = 'v_8_ducttape' }, - ['1038902519'] = { Name = 'v_8_farmshad01' }, - ['730775612'] = { Name = 'v_8_farmshad02' }, - ['724942730'] = { Name = 'v_8_farmshad03' }, - ['418585349'] = { Name = 'v_8_farmshad04' }, - ['-503894774'] = { Name = 'v_8_farmshad05' }, - ['-810121079'] = { Name = 'v_8_farmshad06' }, - ['1042376029'] = { Name = 'v_8_farmshad07' }, - ['742637986'] = { Name = 'v_8_farmshad08' }, - ['-1399242165'] = { Name = 'v_8_farmshad09' }, - ['-2130450523'] = { Name = 'v_8_farmshad10' }, - ['305924631'] = { Name = 'v_8_farmshad11' }, - ['-875070133'] = { Name = 'v_8_farmshad13' }, - ['-1776217633'] = { Name = 'v_8_farmshad14' }, - ['1357776762'] = { Name = 'v_8_farmshad15' }, - ['-917047234'] = { Name = 'v_8_farmshad18' }, - ['-2074022317'] = { Name = 'v_8_farmshad19' }, - ['-1818751447'] = { Name = 'v_8_farmshad20' }, - ['1278738286'] = { Name = 'v_8_farmshad21' }, - ['977886097'] = { Name = 'v_8_farmshad22' }, - ['-623141705'] = { Name = 'v_8_farmshad24' }, - ['262211133'] = { Name = 'v_8_farmshad25' }, - ['-1596081609'] = { Name = 'v_8_footprints' }, - ['-1197937052'] = { Name = 'v_8_framebath' }, - ['903672708'] = { Name = 'v_8_framebd1' }, - ['-262444930'] = { Name = 'v_8_framebd2' }, - ['-2111173603'] = { Name = 'v_8_framebd3' }, - ['-882958714'] = { Name = 'v_8_framebd4' }, - ['775961249'] = { Name = 'v_8_framedin' }, - ['-966719233'] = { Name = 'v_8_framefrnt' }, - ['-1730620429'] = { Name = 'v_8_framehl2' }, - ['-1304131782'] = { Name = 'v_8_framehl4' }, - ['-1068489903'] = { Name = 'v_8_framehl5' }, - ['-687157050'] = { Name = 'v_8_framehl6' }, - ['428210684'] = { Name = 'v_8_framehll3' }, - ['1489050939'] = { Name = 'v_8_framektc' }, - ['-1363020239'] = { Name = 'v_8_framel1' }, - ['1619163072'] = { Name = 'v_8_frameliv' }, - ['854914327'] = { Name = 'v_8_framesp1' }, - ['1091801428'] = { Name = 'v_8_framesp2' }, - ['753035554'] = { Name = 'v_8_framesp3' }, - ['-1127016482'] = { Name = 'v_8_framestd' }, - ['1788102369'] = { Name = 'v_8_frameut001' }, - ['-913789873'] = { Name = 'v_8_frntoverlay' }, - ['-1030742145'] = { Name = 'v_8_frontdecdirt' }, - ['763398823'] = { Name = 'v_8_furnace' }, - ['224768101'] = { Name = 'v_8_hall1decdirt' }, - ['2119919721'] = { Name = 'v_8_hall1overlay' }, - ['-355074033'] = { Name = 'v_8_hall1stuff' }, - ['1971784041'] = { Name = 'v_8_hall2decdirt' }, - ['356356877'] = { Name = 'v_8_hall2overlay' }, - ['1143172152'] = { Name = 'v_8_hall3decdirt' }, - ['1198567255'] = { Name = 'v_8_hall3ovlys' }, - ['-859953965'] = { Name = 'v_8_hall4decdirt' }, - ['-1488758724'] = { Name = 'v_8_hall4ovrly' }, - ['1063446599'] = { Name = 'v_8_hall5overlay' }, - ['-1433367164'] = { Name = 'v_8_hall6decdirt' }, - ['1002656301'] = { Name = 'v_8_hall6ovlys' }, - ['-322669942'] = { Name = 'v_8_kitchdecdirt' }, - ['-1845989005'] = { Name = 'v_8_kitchen' }, - ['-261815629'] = { Name = 'v_8_kitcovlys' }, - ['-1001763002'] = { Name = 'v_8_laundecdirt' }, - ['1010093037'] = { Name = 'v_8_laundryovlys' }, - ['1126324564'] = { Name = 'v_8_livingdecdirt' }, - ['-605584005'] = { Name = 'v_8_livoverlays' }, - ['-63432508'] = { Name = 'v_8_livstuff' }, - ['-1748326900'] = { Name = 'v_8_reflection_proxy' }, - ['547077442'] = { Name = 'v_8_shell' }, - ['-1009182706'] = { Name = 'v_8_sp1decdirt' }, - ['1050397005'] = { Name = 'v_8_sp1ovrly' }, - ['902955625'] = { Name = 'v_8_sp2decdirt' }, - ['-219469537'] = { Name = 'v_8_spare1stuff' }, - ['-1839822371'] = { Name = 'v_8_stairs' }, - ['-654816497'] = { Name = 'v_8_stairs2' }, - ['47109626'] = { Name = 'v_8_stairspart2' }, - ['-239397785'] = { Name = 'v_8_studdecdirt' }, - ['-86257984'] = { Name = 'v_8_studovly' }, - ['-815783301'] = { Name = 'v_8_studybulbon' }, - ['1435949624'] = { Name = 'v_8_studyclothtop' }, - ['-435639469'] = { Name = 'v_8_studystuff' }, - ['1915163564'] = { Name = 'v_8_utilstuff' }, - ['1824281378'] = { Name = 'v_9_blinds002' }, - ['1347918425'] = { Name = 'v_9_blinds004' }, - ['905930153'] = { Name = 'v_9_blinds007' }, - ['1653109144'] = { Name = 'v_9_br_det' }, - ['1242710385'] = { Name = 'v_9_carpet_det' }, - ['951918727'] = { Name = 'v_9_couch003' }, - ['1653599270'] = { Name = 'v_9_couch02' }, - ['-914247533'] = { Name = 'v_9_dec_wb01' }, - ['-870767782'] = { Name = 'v_9_deskrings01' }, - ['-2096431678'] = { Name = 'v_9_det01' }, - ['1028941356'] = { Name = 'v_9_dirtdec01' }, - ['-417416770'] = { Name = 'v_9_dirtdec02' }, - ['-676324639'] = { Name = 'v_9_dirtdec03' }, - ['-913938443'] = { Name = 'v_9_ext_shell' }, - ['-301659328'] = { Name = 'v_9_extwinframes' }, - ['1109524138'] = { Name = 'v_9_f1_det002' }, - ['-418627741'] = { Name = 'v_9_f1_det01' }, - ['-178922506'] = { Name = 'v_9_f1_det02' }, - ['-1178464525'] = { Name = 'v_9_f1_light01' }, - ['-1469007904'] = { Name = 'v_9_fb_lights' }, - ['-1556044777'] = { Name = 'v_9_fb_ntic_brd' }, - ['1166625237'] = { Name = 'v_9_fb_ntic_brd001' }, - ['1319480832'] = { Name = 'v_9_fbsigns' }, - ['-1997908054'] = { Name = 'v_9_frame_det' }, - ['-104088172'] = { Name = 'v_9_g_det01' }, - ['-1008658871'] = { Name = 'v_9_glass_balcony001' }, - ['-2055520832'] = { Name = 'v_9_glasslamps' }, - ['182460801'] = { Name = 'v_9_hall_det01' }, - ['812477603'] = { Name = 'v_9_hall_det02' }, - ['-1446540736'] = { Name = 'v_9_hoop' }, - ['-1658998531'] = { Name = 'v_9_it_cabinet' }, - ['1082533673'] = { Name = 'v_9_it_cabinet001' }, - ['2003410943'] = { Name = 'v_9_kitchen_unit' }, - ['752145473'] = { Name = 'v_9_kitchen_unit2' }, - ['-821297121'] = { Name = 'v_9_li_tv_uv002' }, - ['-861570222'] = { Name = 'v_9_li_tv_uv004' }, - ['404853321'] = { Name = 'v_9_li_tv_uv006' }, - ['-246594399'] = { Name = 'v_9_li_tv_uv008' }, - ['-1769752812'] = { Name = 'v_9_li_tv_uv01' }, - ['-509843224'] = { Name = 'v_9_lobby_ceilinglight' }, - ['-1901479655'] = { Name = 'v_9_lobby_det01' }, - ['-1055825743'] = { Name = 'v_9_mainshadow' }, - ['-2002355258'] = { Name = 'v_9_normal_edge' }, - ['-843882009'] = { Name = 'v_9_office_det01' }, - ['1563947046'] = { Name = 'v_9_officedesk_fb01' }, - ['480666475'] = { Name = 'v_9_partitions02' }, - ['-1304457569'] = { Name = 'v_9_partitions03' }, - ['-1079105156'] = { Name = 'v_9_partitions04' }, - ['122828983'] = { Name = 'v_9_partitions05' }, - ['1624729934'] = { Name = 'v_9_projbracket' }, - ['1549132979'] = { Name = 'v_9_room011_refl' }, - ['-1605085282'] = { Name = 'v_9_server_leds' }, - ['-2131488672'] = { Name = 'v_9_signs002' }, - ['-1448883297'] = { Name = 'v_9_signs01' }, - ['-1425413137'] = { Name = 'v_9_steps' }, - ['-2032955781'] = { Name = 'v_9_v_faceoffice_shell' }, - ['1085594742'] = { Name = 'v_9_windecals' }, - ['1671194729'] = { Name = 'v_9_windows003' }, - ['-526665419'] = { Name = 'v_9_windows02' }, - ['535835408'] = { Name = 'v_club_barchair' }, - ['-1468103661'] = { Name = 'v_club_brablk' }, - ['1521641592'] = { Name = 'v_club_brablu' }, - ['2029058712'] = { Name = 'v_club_bragld' }, - ['-29915038'] = { Name = 'v_club_brapnk' }, - ['-1537172744'] = { Name = 'v_club_brush' }, - ['-257235018'] = { Name = 'v_club_ch_armchair' }, - ['1318669658'] = { Name = 'v_club_ch_briefchair' }, - ['1129845377'] = { Name = 'v_club_comb' }, - ['-387730627'] = { Name = 'v_club_dress1' }, - ['867556671'] = { Name = 'v_club_officechair' }, - ['-2053774724'] = { Name = 'v_club_officeset' }, - ['-1661146321'] = { Name = 'v_club_officesofa' }, - ['-1125563188'] = { Name = 'v_club_rack' }, - ['697460999'] = { Name = 'v_club_roc_cab1' }, - ['-1075407439'] = { Name = 'v_club_roc_cab2' }, - ['-854249458'] = { Name = 'v_club_roc_cab3' }, - ['501737806'] = { Name = 'v_club_roc_cabamp' }, - ['-858212500'] = { Name = 'v_club_roc_ctable' }, - ['1424367756'] = { Name = 'v_club_roc_eq1' }, - ['1205569143'] = { Name = 'v_club_roc_eq2' }, - ['134974407'] = { Name = 'v_club_roc_gstand' }, - ['-1989696578'] = { Name = 'v_club_roc_jacket1' }, - ['1593134810'] = { Name = 'v_club_roc_jacket2' }, - ['973300966'] = { Name = 'v_club_roc_lampoff' }, - ['2027232150'] = { Name = 'v_club_roc_mic' }, - ['395681893'] = { Name = 'v_club_roc_micstd' }, - ['1479009069'] = { Name = 'v_club_roc_mixer1' }, - ['727091595'] = { Name = 'v_club_roc_mixer2' }, - ['-1085925524'] = { Name = 'v_club_roc_monitor' }, - ['123050854'] = { Name = 'v_club_roc_mscreen' }, - ['662526436'] = { Name = 'v_club_roc_spot_b' }, - ['1120702594'] = { Name = 'v_club_roc_spot_g' }, - ['1124581492'] = { Name = 'v_club_roc_spot_off' }, - ['840068882'] = { Name = 'v_club_roc_spot_r' }, - ['1313056628'] = { Name = 'v_club_roc_spot_w' }, - ['-2100948868'] = { Name = 'v_club_roc_spot_y' }, - ['382878399'] = { Name = 'v_club_roc_zstand' }, - ['-1973732036'] = { Name = 'v_club_shoerack' }, - ['1720837684'] = { Name = 'v_club_silkrobe' }, - ['-471190329'] = { Name = 'v_club_skirtflare' }, - ['-713757097'] = { Name = 'v_club_skirtplt' }, - ['1081491135'] = { Name = 'v_club_slip' }, - ['603897027'] = { Name = 'v_club_stagechair' }, - ['-122889212'] = { Name = 'v_club_vu_bear' }, - ['-317333309'] = { Name = 'v_club_vu_boa' }, - ['276226460'] = { Name = 'v_club_vu_chngestool' }, - ['1035787954'] = { Name = 'v_club_vu_deckcase' }, - ['1609525816'] = { Name = 'v_club_vu_djbag' }, - ['1180584106'] = { Name = 'v_club_vu_djunit' }, - ['-477112371'] = { Name = 'v_club_vu_drawer' }, - ['545167695'] = { Name = 'v_club_vu_drawopen' }, - ['517505175'] = { Name = 'v_club_vu_table' }, - ['161705229'] = { Name = 'v_club_vuarmchair' }, - ['1154536488'] = { Name = 'v_club_vubrushpot' }, - ['1282454220'] = { Name = 'v_club_vuhairdryer' }, - ['-1512875508'] = { Name = 'v_club_vumakeupbrsh' }, - ['1312997887'] = { Name = 'v_club_vusnaketank' }, - ['-329576248'] = { Name = 'v_club_vutongs' }, - ['360211997'] = { Name = 'v_club_vuvanity' }, - ['-107363589'] = { Name = 'v_club_vuvanityboxop' }, - ['-1474093273'] = { Name = 'v_corp_banktrolley' }, - ['-1072695459'] = { Name = 'v_corp_bk_balustrade' }, - ['918182878'] = { Name = 'v_corp_bk_bust' }, - ['559624133'] = { Name = 'v_corp_bk_chair1' }, - ['-274707376'] = { Name = 'v_corp_bk_chair2' }, - ['589738836'] = { Name = 'v_corp_bk_chair3' }, - ['1705517141'] = { Name = 'v_corp_bk_filecab' }, - ['1218671664'] = { Name = 'v_corp_bk_filedraw' }, - ['-842122186'] = { Name = 'v_corp_bk_flag' }, - ['-1891087379'] = { Name = 'v_corp_bk_lamp1' }, - ['-1057214632'] = { Name = 'v_corp_bk_lamp2' }, - ['2093003735'] = { Name = 'v_corp_bk_lflts' }, - ['-1438074360'] = { Name = 'v_corp_bk_lfltstand' }, - ['-1003586646'] = { Name = 'v_corp_bk_pens' }, - ['-1508270899'] = { Name = 'v_corp_bk_rolladex' }, - ['-1633805850'] = { Name = 'v_corp_bk_secpanel' }, - ['-1660261403'] = { Name = 'v_corp_bombbin' }, - ['675346369'] = { Name = 'v_corp_bombhum' }, - ['1846870313'] = { Name = 'v_corp_bombplant' }, - ['-2043453131'] = { Name = 'v_corp_boxpapr1fd' }, - ['-1894048659'] = { Name = 'v_corp_boxpaprfd' }, - ['1151238667'] = { Name = 'v_corp_cabshelves01' }, - ['695193399'] = { Name = 'v_corp_cashpack' }, - ['-2018598162'] = { Name = 'v_corp_cashtrolley_2' }, - ['-1645229742'] = { Name = 'v_corp_cashtrolley' }, - ['-501934650'] = { Name = 'v_corp_cd_chair' }, - ['-1574910470'] = { Name = 'v_corp_cd_desklamp' }, - ['-2054772838'] = { Name = 'v_corp_cd_heater' }, - ['1387880424'] = { Name = 'v_corp_cd_intercom' }, - ['1648266874'] = { Name = 'v_corp_cd_pen' }, - ['1894883523'] = { Name = 'v_corp_cd_poncho' }, - ['1677810564'] = { Name = 'v_corp_cd_recseat' }, - ['1609962109'] = { Name = 'v_corp_cd_rectable' }, - ['164297906'] = { Name = 'v_corp_cd_wellies' }, - ['-816093398'] = { Name = 'v_corp_conftable' }, - ['52605645'] = { Name = 'v_corp_conftable2' }, - ['-24204895'] = { Name = 'v_corp_conftable3' }, - ['-797848220'] = { Name = 'v_corp_conftable4' }, - ['-1780742350'] = { Name = 'v_corp_cubiclefd' }, - ['1725389147'] = { Name = 'v_corp_deskdraw' }, - ['-625147711'] = { Name = 'v_corp_deskdrawdark01' }, - ['615241095'] = { Name = 'v_corp_deskdrawfd' }, - ['-921053992'] = { Name = 'v_corp_deskseta' }, - ['-441381366'] = { Name = 'v_corp_desksetb' }, - ['-299507209'] = { Name = 'v_corp_divide' }, - ['-896397685'] = { Name = 'v_corp_facebeanbag' }, - ['-1175296758'] = { Name = 'v_corp_facebeanbagb' }, - ['-1481654139'] = { Name = 'v_corp_facebeanbagc' }, - ['-1515799437'] = { Name = 'v_corp_facebeanbagd' }, - ['1995042965'] = { Name = 'v_corp_filecabdark01' }, - ['-452932411'] = { Name = 'v_corp_filecabdark02' }, - ['342797216'] = { Name = 'v_corp_filecabdark03' }, - ['-1043920195'] = { Name = 'v_corp_filecablow' }, - ['-1576753431'] = { Name = 'v_corp_filecabtall_01' }, - ['-10023923'] = { Name = 'v_corp_filecabtall' }, - ['-287662406'] = { Name = 'v_corp_hicksdoor' }, - ['-2100188619'] = { Name = 'v_corp_humidifier' }, - ['444105316'] = { Name = 'v_corp_lazychair' }, - ['2140222155'] = { Name = 'v_corp_lazychairfd' }, - ['-418015275'] = { Name = 'v_corp_lidesk01' }, - ['2033813396'] = { Name = 'v_corp_lngestool' }, - ['-407563484'] = { Name = 'v_corp_lngestoolfd' }, - ['727437176'] = { Name = 'v_corp_lowcabdark01' }, - ['-414969862'] = { Name = 'v_corp_maindesk' }, - ['2047138003'] = { Name = 'v_corp_maindeskfd' }, - ['-109356459'] = { Name = 'v_corp_offchair' }, - ['1701829586'] = { Name = 'v_corp_offchairfd' }, - ['-1176082628'] = { Name = 'v_corp_officedesk_5' }, - ['1661599225'] = { Name = 'v_corp_officedesk' }, - ['-1862159210'] = { Name = 'v_corp_officedesk003' }, - ['970622537'] = { Name = 'v_corp_officedesk004' }, - ['-1864410231'] = { Name = 'v_corp_officedesk1' }, - ['-2098479198'] = { Name = 'v_corp_officedesk2' }, - ['-231178430'] = { Name = 'v_corp_offshelf' }, - ['122818624'] = { Name = 'v_corp_offshelfclo' }, - ['-544247459'] = { Name = 'v_corp_offshelfdark' }, - ['966106463'] = { Name = 'v_corp_partitionfd' }, - ['-1248717809'] = { Name = 'v_corp_plants' }, - ['-984397960'] = { Name = 'v_corp_post_open' }, - ['665940918'] = { Name = 'v_corp_postbox' }, - ['1109776775'] = { Name = 'v_corp_postboxa' }, - ['-101592915'] = { Name = 'v_corp_potplant1' }, - ['-645754929'] = { Name = 'v_corp_potplant2' }, - ['1190106820'] = { Name = 'v_corp_servercln' }, - ['332534418'] = { Name = 'v_corp_servercln2' }, - ['1024779176'] = { Name = 'v_corp_servers1' }, - ['786122549'] = { Name = 'v_corp_servers2' }, - ['1553455189'] = { Name = 'v_corp_servrlowfd' }, - ['973693654'] = { Name = 'v_corp_servrtwrfd' }, - ['1264966695'] = { Name = 'v_corp_sidechair' }, - ['-2086985229'] = { Name = 'v_corp_sidechairfd' }, - ['-2129865943'] = { Name = 'v_corp_sidetable' }, - ['-1667927856'] = { Name = 'v_corp_sidetblefd' }, - ['197536407'] = { Name = 'v_corp_srvrrackfd' }, - ['-1173060514'] = { Name = 'v_corp_srvrtwrsfd' }, - ['-1265231433'] = { Name = 'v_corp_tallcabdark01' }, - ['-711288318'] = { Name = 'v_corp_trolley_fd' }, - ['1463259268'] = { Name = 'v_hair_d_bcream' }, - ['1947776397'] = { Name = 'v_hair_d_gel' }, - ['299625631'] = { Name = 'v_hair_d_shave' }, - ['-2102534045'] = { Name = 'v_haird_mousse' }, - ['-397082484'] = { Name = 'v_ilev_247_offdorr' }, - ['997554217'] = { Name = 'v_ilev_247door_r' }, - ['1196685123'] = { Name = 'v_ilev_247door' }, - ['-2075659719'] = { Name = 'v_ilev_a_tissue' }, - ['1755793225'] = { Name = 'v_ilev_abbmaindoor' }, - ['239858268'] = { Name = 'v_ilev_abbmaindoor2' }, - ['575179269'] = { Name = 'v_ilev_abmincer' }, - ['679478775'] = { Name = 'v_ilev_acet_projector' }, - ['749848321'] = { Name = 'v_ilev_arm_secdoor' }, - ['-1666470363'] = { Name = 'v_ilev_bank4door01' }, - ['-353187150'] = { Name = 'v_ilev_bank4door02' }, - ['560831900'] = { Name = 'v_ilev_bank4doorcls01' }, - ['612934610'] = { Name = 'v_ilev_bank4doorcls02' }, - ['2009021085'] = { Name = 'v_ilev_bk_closedsign' }, - ['1956494919'] = { Name = 'v_ilev_bk_door' }, - ['964838196'] = { Name = 'v_ilev_bk_door2' }, - ['-1246222793'] = { Name = 'v_ilev_bk_gate' }, - ['1289409051'] = { Name = 'v_ilev_bk_gate2' }, - ['845734064'] = { Name = 'v_ilev_bk_gatedam' }, - ['1655182495'] = { Name = 'v_ilev_bk_safegate' }, - ['961976194'] = { Name = 'v_ilev_bk_vaultdoor' }, - ['-421709054'] = { Name = 'v_ilev_bl_door_l' }, - ['1282049587'] = { Name = 'v_ilev_bl_door_r' }, - ['1878909644'] = { Name = 'v_ilev_bl_doorel_l' }, - ['1709395619'] = { Name = 'v_ilev_bl_doorel_r' }, - ['19193616'] = { Name = 'v_ilev_bl_doorpool' }, - ['-1572101598'] = { Name = 'v_ilev_bl_doorsl_l' }, - ['161378502'] = { Name = 'v_ilev_bl_doorsl_r' }, - ['1094128201'] = { Name = 'v_ilev_bl_elevdis1' }, - ['1381807252'] = { Name = 'v_ilev_bl_elevdis2' }, - ['1688983858'] = { Name = 'v_ilev_bl_elevdis3' }, - ['1737076325'] = { Name = 'v_ilev_bl_shutter1' }, - ['-1081024910'] = { Name = 'v_ilev_bl_shutter2' }, - ['555704593'] = { Name = 'v_ilev_blnds_clsd' }, - ['859494299'] = { Name = 'v_ilev_blnds_opn' }, - ['-1268580434'] = { Name = 'v_ilev_body_parts' }, - ['-1844444717'] = { Name = 'v_ilev_bs_door' }, - ['-822900180'] = { Name = 'v_ilev_carmod3door' }, - ['-1236638811'] = { Name = 'v_ilev_carmod3lamp' }, - ['1372198431'] = { Name = 'v_ilev_carmodlamps' }, - ['-1184592117'] = { Name = 'v_ilev_cbankcountdoor01' }, - ['-1185205679'] = { Name = 'v_ilev_cbankvauldoor01' }, - ['1622278560'] = { Name = 'v_ilev_cbankvaulgate01' }, - ['1309269072'] = { Name = 'v_ilev_cbankvaulgate02' }, - ['1438783233'] = { Name = 'v_ilev_cd_door' }, - ['-551608542'] = { Name = 'v_ilev_cd_door2' }, - ['-311575617'] = { Name = 'v_ilev_cd_door3' }, - ['1853921277'] = { Name = 'v_ilev_cd_dust' }, - ['-519068795'] = { Name = 'v_ilev_cd_entrydoor' }, - ['-243154771'] = { Name = 'v_ilev_cd_lampal_off' }, - ['227078272'] = { Name = 'v_ilev_cd_lampal' }, - ['-1789571019'] = { Name = 'v_ilev_cd_secdoor' }, - ['-1716946115'] = { Name = 'v_ilev_cd_secdoor2' }, - ['1572003612'] = { Name = 'v_ilev_cd_sprklr_on' }, - ['-1803024667'] = { Name = 'v_ilev_cd_sprklr_on2' }, - ['-1861912328'] = { Name = 'v_ilev_cd_sprklr' }, - ['-952356348'] = { Name = 'v_ilev_cf_officedoor' }, - ['-1922281023'] = { Name = 'v_ilev_ch_glassdoor' }, - ['-784954167'] = { Name = 'v_ilev_chair02_ped' }, - ['-991376275'] = { Name = 'v_ilev_chopshopswitch' }, - ['741798665'] = { Name = 'v_ilev_ciawin_solid' }, - ['1358323305'] = { Name = 'v_ilev_cin_screen' }, - ['399820605'] = { Name = 'v_ilev_clothhiendlights' }, - ['-1849026432'] = { Name = 'v_ilev_clothhiendlightsb' }, - ['1780022985'] = { Name = 'v_ilev_clothmiddoor' }, - ['-710818483'] = { Name = 'v_ilev_cm_door1' }, - ['374758529'] = { Name = 'v_ilev_cor_darkdoor' }, - ['1415151278'] = { Name = 'v_ilev_cor_doorglassa' }, - ['580361003'] = { Name = 'v_ilev_cor_doorglassb' }, - ['14722111'] = { Name = 'v_ilev_cor_doorlift01' }, - ['-283574096'] = { Name = 'v_ilev_cor_doorlift02' }, - ['-770740285'] = { Name = 'v_ilev_cor_firedoor' }, - ['1653893025'] = { Name = 'v_ilev_cor_firedoorwide' }, - ['1859711902'] = { Name = 'v_ilev_cor_offdoora' }, - ['-640990823'] = { Name = 'v_ilev_cor_windowsmash' }, - ['927372848'] = { Name = 'v_ilev_cor_windowsolid' }, - ['-664582244'] = { Name = 'v_ilev_cs_door' }, - ['-1148826190'] = { Name = 'v_ilev_cs_door01_r' }, - ['868499217'] = { Name = 'v_ilev_cs_door01' }, - ['2059227086'] = { Name = 'v_ilev_csr_door_l' }, - ['1417577297'] = { Name = 'v_ilev_csr_door_r' }, - ['1693207013'] = { Name = 'v_ilev_csr_garagedoor' }, - ['1173751299'] = { Name = 'v_ilev_csr_lod_boarded' }, - ['1494855021'] = { Name = 'v_ilev_csr_lod_broken' }, - ['69012397'] = { Name = 'v_ilev_csr_lod_normal' }, - ['-1207991715'] = { Name = 'v_ilev_ct_door01' }, - ['-2083448347'] = { Name = 'v_ilev_ct_door02' }, - ['-1726331785'] = { Name = 'v_ilev_ct_door03' }, - ['1248599813'] = { Name = 'v_ilev_ct_doorl' }, - ['-1421582160'] = { Name = 'v_ilev_ct_doorr' }, - ['-1037226769'] = { Name = 'v_ilev_depboxdoor01' }, - ['-1270804459'] = { Name = 'v_ilev_depo_box01_lid' }, - ['-2037039530'] = { Name = 'v_ilev_depo_box01' }, - ['-543490328'] = { Name = 'v_ilev_dev_door' }, - ['-1474383439'] = { Name = 'v_ilev_dev_windowdoor' }, - ['-2069558801'] = { Name = 'v_ilev_deviantfrontdoor' }, - ['-1881825907'] = { Name = 'v_ilev_door_orange' }, - ['-495720969'] = { Name = 'v_ilev_door_orangesolid' }, - ['-1230442770'] = { Name = 'v_ilev_epsstoredoor' }, - ['1441141378'] = { Name = 'v_ilev_exball_blue' }, - ['-1984407546'] = { Name = 'v_ilev_exball_grey' }, - ['-1091549377'] = { Name = 'v_ilev_fa_backdoor' }, - ['1770281453'] = { Name = 'v_ilev_fa_dinedoor' }, - ['520341586'] = { Name = 'v_ilev_fa_frontdoor' }, - ['-610054759'] = { Name = 'v_ilev_fa_roomdoor' }, - ['2000998394'] = { Name = 'v_ilev_fa_slidedoor' }, - ['-431157263'] = { Name = 'v_ilev_fa_warddoorl' }, - ['56642071'] = { Name = 'v_ilev_fa_warddoorr' }, - ['-1679881977'] = { Name = 'v_ilev_fb_door01' }, - ['-1045015371'] = { Name = 'v_ilev_fb_door02' }, - ['1104171198'] = { Name = 'v_ilev_fb_doorshortl' }, - ['-1425071302'] = { Name = 'v_ilev_fb_doorshortr' }, - ['969847031'] = { Name = 'v_ilev_fb_sl_door01' }, - ['-458248282'] = { Name = 'v_ilev_fbisecgate' }, - ['1980513646'] = { Name = 'v_ilev_fh_bedrmdoor' }, - ['-1289815393'] = { Name = 'v_ilev_fh_dineeamesa' }, - ['-359451089'] = { Name = 'v_ilev_fh_door01' }, - ['-64988855'] = { Name = 'v_ilev_fh_door02' }, - ['1194028902'] = { Name = 'v_ilev_fh_door03' }, - ['479144380'] = { Name = 'v_ilev_fh_door4' }, - ['781635019'] = { Name = 'v_ilev_fh_door5' }, - ['1413743677'] = { Name = 'v_ilev_fh_frntdoor' }, - ['308207762'] = { Name = 'v_ilev_fh_frontdoor' }, - ['-1190156817'] = { Name = 'v_ilev_fh_kitchenstool' }, - ['-717890986'] = { Name = 'v_ilev_fh_lampa_on' }, - ['-1154592059'] = { Name = 'v_ilev_fh_slidingdoor' }, - ['-1068825540'] = { Name = 'v_ilev_fib_atrcol' }, - ['1254084949'] = { Name = 'v_ilev_fib_atrgl1' }, - ['1538387665'] = { Name = 'v_ilev_fib_atrgl1s' }, - ['1656258886'] = { Name = 'v_ilev_fib_atrgl2' }, - ['-1656457639'] = { Name = 'v_ilev_fib_atrgl2s' }, - ['1961371045'] = { Name = 'v_ilev_fib_atrgl3' }, - ['1635515553'] = { Name = 'v_ilev_fib_atrgl3s' }, - ['-1590795772'] = { Name = 'v_ilev_fib_atrglswap' }, - ['1511828512'] = { Name = 'v_ilev_fib_btrmdr' }, - ['2037845975'] = { Name = 'v_ilev_fib_debris' }, - ['995767216'] = { Name = 'v_ilev_fib_door_ld' }, - ['-853859998'] = { Name = 'v_ilev_fib_door_maint' }, - ['1709345781'] = { Name = 'v_ilev_fib_door1_s' }, - ['-2051651622'] = { Name = 'v_ilev_fib_door1' }, - ['-1821777087'] = { Name = 'v_ilev_fib_door2' }, - ['-538477509'] = { Name = 'v_ilev_fib_door3' }, - ['-1083130717'] = { Name = 'v_ilev_fib_doorbrn' }, - ['-1225363909'] = { Name = 'v_ilev_fib_doore_l' }, - ['1219957182'] = { Name = 'v_ilev_fib_doore_r' }, - ['-1094413626'] = { Name = 'v_ilev_fib_frame' }, - ['-1198372198'] = { Name = 'v_ilev_fib_frame02' }, - ['-1422151699'] = { Name = 'v_ilev_fib_frame03' }, - ['-662750590'] = { Name = 'v_ilev_fib_postbox_door' }, - ['171927851'] = { Name = 'v_ilev_fib_sprklr_off' }, - ['-307685876'] = { Name = 'v_ilev_fib_sprklr_on' }, - ['1441541494'] = { Name = 'v_ilev_fib_sprklr' }, - ['-90456267'] = { Name = 'v_ilev_fibl_door01' }, - ['-1517873911'] = { Name = 'v_ilev_fibl_door02' }, - ['-1932297301'] = { Name = 'v_ilev_fin_vaultdoor' }, - ['783120868'] = { Name = 'v_ilev_finale_shut01' }, - ['-726591477'] = { Name = 'v_ilev_finelevdoor01' }, - ['-1011692606'] = { Name = 'v_ilev_fingate' }, - ['-721126326'] = { Name = 'v_ilev_fos_desk' }, - ['1524959858'] = { Name = 'v_ilev_fos_mic' }, - ['1298168968'] = { Name = 'v_ilev_fos_tvstage' }, - ['1787909913'] = { Name = 'v_ilev_found_crane_pulley' }, - ['-1639085878'] = { Name = 'v_ilev_found_cranebucket' }, - ['-1966155284'] = { Name = 'v_ilev_found_gird_crane' }, - ['-1795554008'] = { Name = 'v_ilev_frnkwarddr1' }, - ['-953390708'] = { Name = 'v_ilev_frnkwarddr2' }, - ['1936747465'] = { Name = 'v_ilev_gangsafe' }, - ['-1972117760'] = { Name = 'v_ilev_gangsafedial' }, - ['-1375589668'] = { Name = 'v_ilev_gangsafedoor' }, - ['-1240156945'] = { Name = 'v_ilev_garageliftdoor' }, - ['2065277225'] = { Name = 'v_ilev_gasdoor_r' }, - ['-868672903'] = { Name = 'v_ilev_gasdoor' }, - ['-131754413'] = { Name = 'v_ilev_gb_teldr' }, - ['-1591004109'] = { Name = 'v_ilev_gb_vaubar' }, - ['2121050683'] = { Name = 'v_ilev_gb_vauldr' }, - ['452874391'] = { Name = 'v_ilev_gc_door01' }, - ['825720073'] = { Name = 'v_ilev_gc_door02' }, - ['-8873588'] = { Name = 'v_ilev_gc_door03' }, - ['97297972'] = { Name = 'v_ilev_gc_door04' }, - ['2043652349'] = { Name = 'v_ilev_gc_grenades' }, - ['448769273'] = { Name = 'v_ilev_gc_handguns' }, - ['424713737'] = { Name = 'v_ilev_gc_weapons' }, - ['1669201391'] = { Name = 'v_ilev_gcshape_assmg_25' }, - ['-1916693643'] = { Name = 'v_ilev_gcshape_assmg_50' }, - ['426526770'] = { Name = 'v_ilev_gcshape_asssmg_25' }, - ['-2090592684'] = { Name = 'v_ilev_gcshape_asssmg_50' }, - ['-219416200'] = { Name = 'v_ilev_gcshape_asssnip_25' }, - ['210647776'] = { Name = 'v_ilev_gcshape_asssnip_50' }, - ['-1206288668'] = { Name = 'v_ilev_gcshape_bull_25' }, - ['-1722377621'] = { Name = 'v_ilev_gcshape_bull_50' }, - ['-550608984'] = { Name = 'v_ilev_gcshape_hvyrif_25' }, - ['994808393'] = { Name = 'v_ilev_gcshape_hvyrif_50' }, - ['1462802950'] = { Name = 'v_ilev_gcshape_pistol50_25' }, - ['1103063944'] = { Name = 'v_ilev_gcshape_pistol50_50' }, - ['1796822553'] = { Name = 'v_ilev_gcshape_progar_25' }, - ['-1559411953'] = { Name = 'v_ilev_gcshape_progar_50' }, - ['-1152174184'] = { Name = 'v_ilev_genbankdoor1' }, - ['73386408'] = { Name = 'v_ilev_genbankdoor2' }, - ['-129553421'] = { Name = 'v_ilev_gendoor01' }, - ['1242124150'] = { Name = 'v_ilev_gendoor02' }, - ['-1984061587'] = { Name = 'v_ilev_go_window' }, - ['-1231329491'] = { Name = 'v_ilev_gold' }, - ['-1033001619'] = { Name = 'v_ilev_gtdoor' }, - ['-340230128'] = { Name = 'v_ilev_gtdoor02' }, - ['1373634352'] = { Name = 'v_ilev_gunhook' }, - ['-1422136292'] = { Name = 'v_ilev_gunsign_assmg' }, - ['-612732598'] = { Name = 'v_ilev_gunsign_asssmg' }, - ['-1806594651'] = { Name = 'v_ilev_gunsign_asssniper' }, - ['-75356570'] = { Name = 'v_ilev_gunsign_bull' }, - ['72096805'] = { Name = 'v_ilev_gunsign_hvyrif' }, - ['-1891639499'] = { Name = 'v_ilev_gunsign_pistol50' }, - ['1783415536'] = { Name = 'v_ilev_gunsign_progar' }, - ['-1291993936'] = { Name = 'v_ilev_hd_chair' }, - ['-1663512092'] = { Name = 'v_ilev_hd_door_l' }, - ['145369505'] = { Name = 'v_ilev_hd_door_r' }, - ['1436076651'] = { Name = 'v_ilev_housedoor1' }, - ['1335309163'] = { Name = 'v_ilev_j2_door' }, - ['486670049'] = { Name = 'v_ilev_janitor_frontdoor' }, - ['-377849416'] = { Name = 'v_ilev_leath_chr' }, - ['-1844609989'] = { Name = 'v_ilev_lest_bigscreen' }, - ['1145337974'] = { Name = 'v_ilev_lester_doorfront' }, - ['-1647153464'] = { Name = 'v_ilev_lester_doorveranda' }, - ['-182643788'] = { Name = 'v_ilev_liconftable_sml' }, - ['836744388'] = { Name = 'v_ilev_light_wardrobe_face' }, - ['190770132'] = { Name = 'v_ilev_lostdoor' }, - ['747286790'] = { Name = 'v_ilev_losttoiletdoor' }, - ['451260528'] = { Name = 'v_ilev_m_dinechair' }, - ['-1326319394'] = { Name = 'v_ilev_m_pitcher' }, - ['-1877459292'] = { Name = 'v_ilev_m_sofa' }, - ['2146145503'] = { Name = 'v_ilev_m_sofacushion' }, - ['-353164031'] = { Name = 'v_ilev_mchalkbrd_1' }, - ['-590870357'] = { Name = 'v_ilev_mchalkbrd_2' }, - ['-290739082'] = { Name = 'v_ilev_mchalkbrd_3' }, - ['-739019002'] = { Name = 'v_ilev_mchalkbrd_4' }, - ['-976397638'] = { Name = 'v_ilev_mchalkbrd_5' }, - ['509373999'] = { Name = 'v_ilev_melt_set01' }, - ['-352193203'] = { Name = 'v_ilev_methdoorbust' }, - ['-995467546'] = { Name = 'v_ilev_methdoorscuff' }, - ['-1815392278'] = { Name = 'v_ilev_methtraildoor' }, - ['-1212951353'] = { Name = 'v_ilev_ml_door1' }, - ['2088680867'] = { Name = 'v_ilev_mldoor02' }, - ['-1563640173'] = { Name = 'v_ilev_mm_door' }, - ['1204471037'] = { Name = 'v_ilev_mm_doordaughter' }, - ['159994461'] = { Name = 'v_ilev_mm_doorm_l' }, - ['-1686014385'] = { Name = 'v_ilev_mm_doorm_r' }, - ['-794543736'] = { Name = 'v_ilev_mm_doorson' }, - ['-384976104'] = { Name = 'v_ilev_mm_doorw' }, - ['-1932159029'] = { Name = 'v_ilev_mm_faucet' }, - ['-1444496707'] = { Name = 'v_ilev_mm_fridge_l' }, - ['-659810237'] = { Name = 'v_ilev_mm_fridge_r' }, - ['-310148339'] = { Name = 'v_ilev_mm_fridgeint' }, - ['1923965997'] = { Name = 'v_ilev_mm_scre_off' }, - ['-1624781226'] = { Name = 'v_ilev_mm_screen' }, - ['-1645730886'] = { Name = 'v_ilev_mm_screen2_vl' }, - ['305134324'] = { Name = 'v_ilev_mm_screen2' }, - ['1019527301'] = { Name = 'v_ilev_mm_windowwc' }, - ['-1663022887'] = { Name = 'v_ilev_moteldoorcso' }, - ['1175177969'] = { Name = 'v_ilev_mp_bedsidebook' }, - ['574422567'] = { Name = 'v_ilev_mp_high_frontdoor' }, - ['1558432213'] = { Name = 'v_ilev_mp_low_frontdoor' }, - ['-320948292'] = { Name = 'v_ilev_mp_mid_frontdoor' }, - ['-1354005816'] = { Name = 'v_ilev_mr_rasberryclean' }, - ['1334355753'] = { Name = 'v_ilev_out_serv_sign' }, - ['98421364'] = { Name = 'v_ilev_p_easychair' }, - ['-1461986002'] = { Name = 'v_ilev_ph_bench' }, - ['631614199'] = { Name = 'v_ilev_ph_cellgate' }, - ['871712474'] = { Name = 'v_ilev_ph_cellgate02' }, - ['320433149'] = { Name = 'v_ilev_ph_door002' }, - ['-1215222675'] = { Name = 'v_ilev_ph_door01' }, - ['1804615079'] = { Name = 'v_ilev_ph_doorframe' }, - ['-522504255'] = { Name = 'v_ilev_ph_gendoor' }, - ['-1320876379'] = { Name = 'v_ilev_ph_gendoor002' }, - ['-543497392'] = { Name = 'v_ilev_ph_gendoor003' }, - ['1557126584'] = { Name = 'v_ilev_ph_gendoor004' }, - ['185711165'] = { Name = 'v_ilev_ph_gendoor005' }, - ['-131296141'] = { Name = 'v_ilev_ph_gendoor006' }, - ['458025182'] = { Name = 'v_ilev_phroofdoor' }, - ['1378348636'] = { Name = 'v_ilev_po_door' }, - ['-696000204'] = { Name = 'v_ilev_prop_74_emr_3b_02' }, - ['-771420653'] = { Name = 'v_ilev_prop_74_emr_3b' }, - ['1175183140'] = { Name = 'v_ilev_prop_fib_glass' }, - ['-1032171637'] = { Name = 'v_ilev_ra_door1_l' }, - ['-52575179'] = { Name = 'v_ilev_ra_door1_r' }, - ['736699661'] = { Name = 'v_ilev_ra_door2' }, - ['-228773386'] = { Name = 'v_ilev_ra_door3' }, - ['1504256620'] = { Name = 'v_ilev_ra_door4l' }, - ['262671971'] = { Name = 'v_ilev_ra_door4r' }, - ['174080689'] = { Name = 'v_ilev_ra_doorsafe' }, - ['812467272'] = { Name = 'v_ilev_rc_door1_st' }, - ['362975687'] = { Name = 'v_ilev_rc_door1' }, - ['-2023754432'] = { Name = 'v_ilev_rc_door2' }, - ['1099436502'] = { Name = 'v_ilev_rc_door3_l' }, - ['-1627599682'] = { Name = 'v_ilev_rc_door3_r' }, - ['-1586611409'] = { Name = 'v_ilev_rc_doorel_l' }, - ['-199073634'] = { Name = 'v_ilev_rc_doorel_r' }, - ['-604127842'] = { Name = 'v_ilev_rc_win_col' }, - ['202981272'] = { Name = 'v_ilev_roc_door1_l' }, - ['1117236368'] = { Name = 'v_ilev_roc_door1_r' }, - ['-626684119'] = { Name = 'v_ilev_roc_door2' }, - ['1289778077'] = { Name = 'v_ilev_roc_door3' }, - ['993120320'] = { Name = 'v_ilev_roc_door4' }, - ['757543979'] = { Name = 'v_ilev_roc_door5' }, - ['1083279016'] = { Name = 'v_ilev_serv_door01' }, - ['-1501157055'] = { Name = 'v_ilev_shrf2door' }, - ['-1765048490'] = { Name = 'v_ilev_shrfdoor' }, - ['-2030220382'] = { Name = 'v_ilev_sol_off_door01' }, - ['-1872657177'] = { Name = 'v_ilev_sol_windl' }, - ['-966365012'] = { Name = 'v_ilev_sol_windr' }, - ['1544229216'] = { Name = 'v_ilev_spraydoor' }, - ['1388116908'] = { Name = 'v_ilev_ss_door01' }, - ['551491569'] = { Name = 'v_ilev_ss_door02' }, - ['933053701'] = { Name = 'v_ilev_ss_door03' }, - ['1173348778'] = { Name = 'v_ilev_ss_door04' }, - ['-658747851'] = { Name = 'v_ilev_ss_door5_l' }, - ['1335311341'] = { Name = 'v_ilev_ss_door5_r' }, - ['-681066206'] = { Name = 'v_ilev_ss_door7' }, - ['245182344'] = { Name = 'v_ilev_ss_door8' }, - ['1804626822'] = { Name = 'v_ilev_ss_doorext' }, - ['865041037'] = { Name = 'v_ilev_stad_fdoor' }, - ['-1775213343'] = { Name = 'v_ilev_staffdoor' }, - ['426403179'] = { Name = 'v_ilev_store_door' }, - ['543652229'] = { Name = 'v_ilev_ta_door' }, - ['1243635233'] = { Name = 'v_ilev_ta_door2' }, - ['1334823285'] = { Name = 'v_ilev_ta_tatgun' }, - ['464151082'] = { Name = 'v_ilev_tort_door' }, - ['-1062023761'] = { Name = 'v_ilev_tort_stool' }, - ['-1977105237'] = { Name = 'v_ilev_tow_doorlifta' }, - ['-522980862'] = { Name = 'v_ilev_tow_doorliftb' }, - ['-1128607325'] = { Name = 'v_ilev_trev_door' }, - ['1575804630'] = { Name = 'v_ilev_trev_doorbath' }, - ['-607040053'] = { Name = 'v_ilev_trev_doorfront' }, - ['-1920325949'] = { Name = 'v_ilev_trev_patiodoor' }, - ['581339868'] = { Name = 'v_ilev_trev_pictureframe' }, - ['-116675177'] = { Name = 'v_ilev_trev_pictureframebroken' }, - ['-1849799179'] = { Name = 'v_ilev_trev_planningboard' }, - ['132154435'] = { Name = 'v_ilev_trevtraildr' }, - ['2094167240'] = { Name = 'v_ilev_tt_plate01' }, - ['-208371500'] = { Name = 'v_ilev_uvcheetah' }, - ['815982790'] = { Name = 'v_ilev_uventity' }, - ['-2144749081'] = { Name = 'v_ilev_uvjb700' }, - ['-721082096'] = { Name = 'v_ilev_uvline' }, - ['-525982534'] = { Name = 'v_ilev_uvmonroe' }, - ['-398664307'] = { Name = 'v_ilev_uvsquiggle' }, - ['1465930007'] = { Name = 'v_ilev_uvtext' }, - ['-1913152057'] = { Name = 'v_ilev_uvztype' }, - ['-267021114'] = { Name = 'v_ilev_vag_door' }, - ['-122922994'] = { Name = 'v_ilev_vagostoiletdoor' }, - ['-1915240321'] = { Name = 'v_ilev_winblnd_clsd' }, - ['-1182144056'] = { Name = 'v_ilev_winblnd_opn' }, - ['2051806701'] = { Name = 'v_ind_bin_01' }, - ['-980590507'] = { Name = 'v_ind_cf_bollard' }, - ['503355010'] = { Name = 'v_ind_cf_boxes' }, - ['514967915'] = { Name = 'v_ind_cf_broom' }, - ['-922074785'] = { Name = 'v_ind_cf_bugzap' }, - ['1959542339'] = { Name = 'v_ind_cf_chckbox1' }, - ['1811655854'] = { Name = 'v_ind_cf_chckbox2' }, - ['-1244905398'] = { Name = 'v_ind_cf_chckbox3' }, - ['-832246005'] = { Name = 'v_ind_cf_crate' }, - ['-1243861868'] = { Name = 'v_ind_cf_crate1' }, - ['-304079717'] = { Name = 'v_ind_cf_crate2' }, - ['1350712180'] = { Name = 'v_ind_cf_paltruck' }, - ['328474980'] = { Name = 'v_ind_cf_shelf' }, - ['-2076979604'] = { Name = 'v_ind_cf_shelf2' }, - ['1864918670'] = { Name = 'v_ind_cf_wheat' }, - ['-716849897'] = { Name = 'v_ind_cf_wheat2' }, - ['1951313592'] = { Name = 'v_ind_cfbin' }, - ['-1321159957'] = { Name = 'v_ind_cfbox' }, - ['456071379'] = { Name = 'v_ind_cfbox2' }, - ['-700527926'] = { Name = 'v_ind_cfbucket' }, - ['261213595'] = { Name = 'v_ind_cfcovercrate' }, - ['-1809990107'] = { Name = 'v_ind_cfcrate3' }, - ['2070448269'] = { Name = 'v_ind_cfcup' }, - ['907513479'] = { Name = 'v_ind_cfemlight' }, - ['1715270075'] = { Name = 'v_ind_cfkeyboard' }, - ['-2113917266'] = { Name = 'v_ind_cfknife' }, - ['723528502'] = { Name = 'v_ind_cflight' }, - ['234058572'] = { Name = 'v_ind_cflight02' }, - ['1720887188'] = { Name = 'v_ind_cfmouse' }, - ['-792596291'] = { Name = 'v_ind_cfpaste' }, - ['1999508550'] = { Name = 'v_ind_cfscoop' }, - ['1448872192'] = { Name = 'v_ind_cftable' }, - ['903690172'] = { Name = 'v_ind_cftray' }, - ['92879096'] = { Name = 'v_ind_cftub' }, - ['-517775183'] = { Name = 'v_ind_cfwaste' }, - ['-1950371385'] = { Name = 'v_ind_chickensx3' }, - ['1288862485'] = { Name = 'v_ind_cm_aircomp' }, - ['-142948810'] = { Name = 'v_ind_cm_crowbar' }, - ['1241686973'] = { Name = 'v_ind_cm_electricbox' }, - ['-871511300'] = { Name = 'v_ind_cm_fan' }, - ['1171045694'] = { Name = 'v_ind_cm_grinder' }, - ['-724745797'] = { Name = 'v_ind_cm_heatlamp' }, - ['545744994'] = { Name = 'v_ind_cm_hosereel' }, - ['774227908'] = { Name = 'v_ind_cm_ladder' }, - ['1190015357'] = { Name = 'v_ind_cm_light_off' }, - ['-1417176582'] = { Name = 'v_ind_cm_light_on' }, - ['1971972932'] = { Name = 'v_ind_cm_paintbckt01' }, - ['1005516815'] = { Name = 'v_ind_cm_paintbckt02' }, - ['1312005272'] = { Name = 'v_ind_cm_paintbckt03' }, - ['459355892'] = { Name = 'v_ind_cm_paintbckt04' }, - ['-117444046'] = { Name = 'v_ind_cm_paintbckt06' }, - ['1412351218'] = { Name = 'v_ind_cm_panelstd' }, - ['-1787453881'] = { Name = 'v_ind_cm_sprgun' }, - ['1274229080'] = { Name = 'v_ind_cm_tyre01' }, - ['1640324348'] = { Name = 'v_ind_cm_tyre02' }, - ['1271673102'] = { Name = 'v_ind_cm_tyre03' }, - ['1637506218'] = { Name = 'v_ind_cm_tyre04' }, - ['1868560437'] = { Name = 'v_ind_cm_tyre05' }, - ['-147453981'] = { Name = 'v_ind_cm_tyre06' }, - ['118105995'] = { Name = 'v_ind_cm_tyre07' }, - ['325304382'] = { Name = 'v_ind_cm_tyre08' }, - ['121493747'] = { Name = 'v_ind_cs_axe' }, - ['-1585712516'] = { Name = 'v_ind_cs_blowtorch' }, - ['-1371480476'] = { Name = 'v_ind_cs_box01' }, - ['-1134789989'] = { Name = 'v_ind_cs_box02' }, - ['11680152'] = { Name = 'v_ind_cs_bucket' }, - ['1721142557'] = { Name = 'v_ind_cs_chemcan' }, - ['1309720974'] = { Name = 'v_ind_cs_drill' }, - ['-2088599787'] = { Name = 'v_ind_cs_gascanister' }, - ['173895646'] = { Name = 'v_ind_cs_hammer' }, - ['820267179'] = { Name = 'v_ind_cs_hifi' }, - ['-137816056'] = { Name = 'v_ind_cs_hubcap' }, - ['-288941741'] = { Name = 'v_ind_cs_jerrycan01' }, - ['-1075580285'] = { Name = 'v_ind_cs_mallet' }, - ['-95119868'] = { Name = 'v_ind_cs_oiltin' }, - ['-1985227443'] = { Name = 'v_ind_cs_pliers' }, - ['-617072343'] = { Name = 'v_ind_cs_powersaw' }, - ['1379428518'] = { Name = 'v_ind_cs_screwdrivr1' }, - ['618499569'] = { Name = 'v_ind_cs_screwdrivr2' }, - ['916763007'] = { Name = 'v_ind_cs_screwdrivr3' }, - ['-2001282532'] = { Name = 'v_ind_cs_spanner01' }, - ['-1738376845'] = { Name = 'v_ind_cs_spanner02' }, - ['1380609336'] = { Name = 'v_ind_cs_spanner03' }, - ['-603684694'] = { Name = 'v_ind_cs_spanner04' }, - ['672287294'] = { Name = 'v_ind_cs_striplight' }, - ['1871266393'] = { Name = 'v_ind_cs_toolbox2' }, - ['-2124552702'] = { Name = 'v_ind_cs_toolbox3' }, - ['-738161850'] = { Name = 'v_ind_cs_toolbox4' }, - ['662269471'] = { Name = 'v_ind_cs_tray04' }, - ['1596752624'] = { Name = 'v_ind_cs_wrench' }, - ['-149613816'] = { Name = 'v_ind_dc_desk03' }, - ['1045800235'] = { Name = 'v_ind_dc_filecab01' }, - ['-1887723793'] = { Name = 'v_ind_dc_table' }, - ['-1425928564'] = { Name = 'v_ind_fatbox' }, - ['1639970925'] = { Name = 'v_ind_meat_comm' }, - ['389157600'] = { Name = 'v_ind_meatbench' }, - ['225569900'] = { Name = 'v_ind_meatbox' }, - ['2142821084'] = { Name = 'v_ind_meatboxsml_02' }, - ['-1588475636'] = { Name = 'v_ind_meatboxsml' }, - ['842487169'] = { Name = 'v_ind_meatbutton' }, - ['-1890319650'] = { Name = 'v_ind_meatclner' }, - ['1124240679'] = { Name = 'v_ind_meatcoatblu' }, - ['-892259203'] = { Name = 'v_ind_meatcoatwhte' }, - ['2079652499'] = { Name = 'v_ind_meatcpboard' }, - ['-346996726'] = { Name = 'v_ind_meatdesk' }, - ['-1058869339'] = { Name = 'v_ind_meatdogpack' }, - ['-1612153297'] = { Name = 'v_ind_meatexit' }, - ['-2097289821'] = { Name = 'v_ind_meathatblu' }, - ['324572995'] = { Name = 'v_ind_meathatwht' }, - ['-452842237'] = { Name = 'v_ind_meatpacks_03' }, - ['379464063'] = { Name = 'v_ind_meatpacks' }, - ['-2091843498'] = { Name = 'v_ind_meattherm' }, - ['-1999230727'] = { Name = 'v_ind_meatwash' }, - ['646223233'] = { Name = 'v_ind_meatwellie' }, - ['350580121'] = { Name = 'v_ind_plazbags' }, - ['1229810073'] = { Name = 'v_ind_rc_balec1' }, - ['918176883'] = { Name = 'v_ind_rc_balec2' }, - ['635675334'] = { Name = 'v_ind_rc_balec3' }, - ['-1293123399'] = { Name = 'v_ind_rc_balep1' }, - ['682060845'] = { Name = 'v_ind_rc_balep2' }, - ['390842742'] = { Name = 'v_ind_rc_balep3' }, - ['-1161562200'] = { Name = 'v_ind_rc_bench' }, - ['-827869555'] = { Name = 'v_ind_rc_brush' }, - ['60431986'] = { Name = 'v_ind_rc_cage' }, - ['1149958256'] = { Name = 'v_ind_rc_dustmask' }, - ['-1231743205'] = { Name = 'v_ind_rc_fans' }, - ['1488902800'] = { Name = 'v_ind_rc_hanger' }, - ['-447995148'] = { Name = 'v_ind_rc_locker' }, - ['-1674688407'] = { Name = 'v_ind_rc_lockeropn' }, - ['-30995600'] = { Name = 'v_ind_rc_lowtable' }, - ['75747589'] = { Name = 'v_ind_rc_overalldrp' }, - ['-791425184'] = { Name = 'v_ind_rc_overallfld' }, - ['-615829401'] = { Name = 'v_ind_rc_plaztray' }, - ['-1112949593'] = { Name = 'v_ind_rc_rubbish' }, - ['-2070991045'] = { Name = 'v_ind_rc_rubbish2' }, - ['898538019'] = { Name = 'v_ind_rc_rubbishppr' }, - ['1462472410'] = { Name = 'v_ind_rc_shovel' }, - ['1753713494'] = { Name = 'v_ind_rc_towel' }, - ['1695407879'] = { Name = 'v_ind_rc_workbag' }, - ['590855381'] = { Name = 'v_ind_sinkequip' }, - ['-1674556377'] = { Name = 'v_ind_sinkhand' }, - ['-1719363059'] = { Name = 'v_ind_ss_box01' }, - ['146536570'] = { Name = 'v_ind_ss_box02' }, - ['-84779801'] = { Name = 'v_ind_ss_box03' }, - ['9168982'] = { Name = 'v_ind_ss_box04' }, - ['215586331'] = { Name = 'v_ind_ss_chair01' }, - ['-416920619'] = { Name = 'v_ind_ss_chair2' }, - ['-1318225618'] = { Name = 'v_ind_ss_chair3_cso' }, - ['-1101218487'] = { Name = 'v_ind_ss_clothrack' }, - ['1871921918'] = { Name = 'v_ind_ss_deskfan' }, - ['-662693816'] = { Name = 'v_ind_ss_deskfan2' }, - ['-679606598'] = { Name = 'v_ind_ss_laptop' }, - ['-260999819'] = { Name = 'v_ind_tor_bulkheadlight' }, - ['502084445'] = { Name = 'v_ind_tor_clockincard' }, - ['2136062268'] = { Name = 'v_ind_tor_smallhoist01' }, - ['-576960708'] = { Name = 'v_ind_v_recycle_lamp1' }, - ['-389409078'] = { Name = 'v_int_32_bugzap' }, - ['1400906837'] = { Name = 'v_int_m3_decal' }, - ['-874755633'] = { Name = 'v_int_m3_decal001' }, - ['-652319661'] = { Name = 'v_int_m3_decal002' }, - ['-281014134'] = { Name = 'v_int_m3_decal003' }, - ['-24301788'] = { Name = 'v_int_m3_decal004' }, - ['-198075783'] = { Name = 'v_int_m3_decal005' }, - ['46118805'] = { Name = 'v_int_m3_decal006' }, - ['45186737'] = { Name = 'v_int_m6_decal' }, - ['484466561'] = { Name = 'v_int_m6_decal001' }, - ['103952933'] = { Name = 'v_int_m6_decal002' }, - ['-127101286'] = { Name = 'v_int_m6_decal003' }, - ['-23846155'] = { Name = 'v_int_m6_decal004' }, - ['-261847402'] = { Name = 'v_int_m6_decal005' }, - ['972822972'] = { Name = 'v_int_m6_decal006' }, - ['-475325641'] = { Name = 'v_int_metro_mir' }, - ['-1195344211'] = { Name = 'v_lirg_frankaunt_ward_face' }, - ['1791760567'] = { Name = 'v_lirg_frankaunt_ward_main' }, - ['-985309905'] = { Name = 'v_lirg_frankhill_ward_face' }, - ['-958557065'] = { Name = 'v_lirg_frankhill_ward_main' }, - ['-410192220'] = { Name = 'v_lirg_gunlight' }, - ['1458246144'] = { Name = 'v_lirg_michael_ward_default' }, - ['-693502639'] = { Name = 'v_lirg_michael_ward_face' }, - ['-80426688'] = { Name = 'v_lirg_michael_ward_main' }, - ['1109580392'] = { Name = 'v_lirg_mphigh_ward_face' }, - ['-1931328178'] = { Name = 'v_lirg_mphigh_ward_main' }, - ['1428755495'] = { Name = 'v_lirg_shop_high' }, - ['1017145447'] = { Name = 'v_lirg_shop_low' }, - ['1431484746'] = { Name = 'v_lirg_shop_mid' }, - ['712238579'] = { Name = 'v_lirg_trevapt_ward_face' }, - ['-2097065849'] = { Name = 'v_lirg_trevapt_ward_main' }, - ['-917545000'] = { Name = 'v_lirg_trevstrip_ward_face' }, - ['402487526'] = { Name = 'v_lirg_trevstrip_ward_main' }, - ['-808157183'] = { Name = 'v_lirg_trevtrail_ward_face' }, - ['229550667'] = { Name = 'v_lirg_trevtrail_ward_main' }, - ['-624092254'] = { Name = 'v_med_apecrate' }, - ['-1166401535'] = { Name = 'v_med_apecratelrg' }, - ['-1397853612'] = { Name = 'v_med_barrel' }, - ['-644915300'] = { Name = 'v_med_beaker' }, - ['1631638868'] = { Name = 'v_med_bed1' }, - ['2117668672'] = { Name = 'v_med_bed2' }, - ['-1405657799'] = { Name = 'v_med_bedtable' }, - ['2017762556'] = { Name = 'v_med_bench1' }, - ['-1087788335'] = { Name = 'v_med_bench2' }, - ['756754339'] = { Name = 'v_med_benchcentr' }, - ['-1278278442'] = { Name = 'v_med_benchset1' }, - ['1728397219'] = { Name = 'v_med_bigtable' }, - ['1291456491'] = { Name = 'v_med_bin' }, - ['1366557924'] = { Name = 'v_med_bl_fan_base' }, - ['333086378'] = { Name = 'v_med_bottles1' }, - ['-576515524'] = { Name = 'v_med_bottles2' }, - ['-246597232'] = { Name = 'v_med_bottles3' }, - ['-136021091'] = { Name = 'v_med_centrifuge1' }, - ['-912154856'] = { Name = 'v_med_centrifuge2' }, - ['282049592'] = { Name = 'v_med_cooler' }, - ['-980405469'] = { Name = 'v_med_cor_alarmlight' }, - ['1615299850'] = { Name = 'v_med_cor_autopsytbl' }, - ['389765485'] = { Name = 'v_med_cor_ceilingmonitor' }, - ['-926951449'] = { Name = 'v_med_cor_cembin' }, - ['-1963803813'] = { Name = 'v_med_cor_cemtrolly' }, - ['-1601873219'] = { Name = 'v_med_cor_cemtrolly2' }, - ['1541924614'] = { Name = 'v_med_cor_chemical' }, - ['-1283117809'] = { Name = 'v_med_cor_divider' }, - ['1280262670'] = { Name = 'v_med_cor_dividerframe' }, - ['2111759378'] = { Name = 'v_med_cor_downlight' }, - ['-1182962909'] = { Name = 'v_med_cor_emblmtable' }, - ['-972854506'] = { Name = 'v_med_cor_fileboxa' }, - ['591282751'] = { Name = 'v_med_cor_filingcab' }, - ['1716227680'] = { Name = 'v_med_cor_flatscreentv' }, - ['811434201'] = { Name = 'v_med_cor_hose' }, - ['943356154'] = { Name = 'v_med_cor_largecupboard' }, - ['1910757705'] = { Name = 'v_med_cor_lightbox' }, - ['-1398008772'] = { Name = 'v_med_cor_mask' }, - ['-791486929'] = { Name = 'v_med_cor_masks' }, - ['2143838161'] = { Name = 'v_med_cor_medhose' }, - ['-992710074'] = { Name = 'v_med_cor_medstool' }, - ['795095898'] = { Name = 'v_med_cor_minifridge' }, - ['226389500'] = { Name = 'v_med_cor_neckrest' }, - ['-1432298883'] = { Name = 'v_med_cor_offglass' }, - ['-1183731840'] = { Name = 'v_med_cor_offglasssm' }, - ['-253978396'] = { Name = 'v_med_cor_offglasstopw' }, - ['-980357554'] = { Name = 'v_med_cor_papertowels' }, - ['-74423442'] = { Name = 'v_med_cor_photocopy' }, - ['-1581981380'] = { Name = 'v_med_cor_pinboard' }, - ['993510245'] = { Name = 'v_med_cor_reception_glass' }, - ['2127663343'] = { Name = 'v_med_cor_shelfrack' }, - ['-1792422095'] = { Name = 'v_med_cor_stepladder' }, - ['-1481915741'] = { Name = 'v_med_cor_tvstand' }, - ['-843908794'] = { Name = 'v_med_cor_unita' }, - ['1536155685'] = { Name = 'v_med_cor_walllight' }, - ['1363784497'] = { Name = 'v_med_cor_wallunita' }, - ['1618170244'] = { Name = 'v_med_cor_wallunitb' }, - ['2030380378'] = { Name = 'v_med_cor_wheelbench' }, - ['753248111'] = { Name = 'v_med_cor_whiteboard' }, - ['1579586191'] = { Name = 'v_med_cor_winftop' }, - ['984424205'] = { Name = 'v_med_cor_winfwide' }, - ['378644224'] = { Name = 'v_med_corlowfilecab' }, - ['-1035084591'] = { Name = 'v_med_crutch01' }, - ['149873283'] = { Name = 'v_med_curtains' }, - ['1067386341'] = { Name = 'v_med_curtains1' }, - ['-1335531664'] = { Name = 'v_med_curtains2' }, - ['-1446946264'] = { Name = 'v_med_curtains3' }, - ['1915724430'] = { Name = 'v_med_curtainsnewcloth1' }, - ['1677854259'] = { Name = 'v_med_curtainsnewcloth2' }, - ['-1091386327'] = { Name = 'v_med_emptybed' }, - ['-841445009'] = { Name = 'v_med_examlight_static' }, - ['-197371371'] = { Name = 'v_med_examlight' }, - ['-936477296'] = { Name = 'v_med_fabricchair1' }, - ['851362411'] = { Name = 'v_med_flask' }, - ['346710503'] = { Name = 'v_med_fumesink' }, - ['-715395941'] = { Name = 'v_med_gastank' }, - ['828604385'] = { Name = 'v_med_hazmatscan' }, - ['-1594158571'] = { Name = 'v_med_hospheadwall1' }, - ['-128924068'] = { Name = 'v_med_hospseating1' }, - ['-1475893813'] = { Name = 'v_med_hospseating2' }, - ['-306007744'] = { Name = 'v_med_hospseating3' }, - ['-475292398'] = { Name = 'v_med_hospseating4' }, - ['-609817558'] = { Name = 'v_med_hosptable' }, - ['-1505864138'] = { Name = 'v_med_hosptableglass' }, - ['-1177455368'] = { Name = 'v_med_lab_elecbox1' }, - ['-947646371'] = { Name = 'v_med_lab_elecbox2' }, - ['-1918067545'] = { Name = 'v_med_lab_elecbox3' }, - ['-1794475037'] = { Name = 'v_med_lab_filtera' }, - ['-2041061762'] = { Name = 'v_med_lab_filterb' }, - ['1020863041'] = { Name = 'v_med_lab_fridge' }, - ['1265651373'] = { Name = 'v_med_lab_optable' }, - ['-25633340'] = { Name = 'v_med_lab_wallcab' }, - ['-454893864'] = { Name = 'v_med_lab_whboard1' }, - ['-420289800'] = { Name = 'v_med_lab_whboard2' }, - ['1643325771'] = { Name = 'v_med_latexgloveboxblue' }, - ['-1958247401'] = { Name = 'v_med_latexgloveboxgreen' }, - ['-1497857609'] = { Name = 'v_med_latexgloveboxred' }, - ['-1222449348'] = { Name = 'v_med_lrgisolator' }, - ['-963487759'] = { Name = 'v_med_mattress' }, - ['-1978149371'] = { Name = 'v_med_medwastebin' }, - ['-1317361805'] = { Name = 'v_med_metalfume' }, - ['813074696'] = { Name = 'v_med_microscope' }, - ['92887898'] = { Name = 'v_med_oscillator1' }, - ['465602504'] = { Name = 'v_med_oscillator2' }, - ['705176663'] = { Name = 'v_med_oscillator3' }, - ['944095442'] = { Name = 'v_med_oscillator4' }, - ['986810493'] = { Name = 'v_med_p_coffeetable' }, - ['-1728099828'] = { Name = 'v_med_p_desk' }, - ['-1254619912'] = { Name = 'v_med_p_deskchair' }, - ['-802034762'] = { Name = 'v_med_p_easychair' }, - ['917451449'] = { Name = 'v_med_p_ext_plant' }, - ['768819051'] = { Name = 'v_med_p_fanlight' }, - ['-1350228215'] = { Name = 'v_med_p_figfish' }, - ['-1860662917'] = { Name = 'v_med_p_floorlamp' }, - ['1207079890'] = { Name = 'v_med_p_lamp_on' }, - ['1062276366'] = { Name = 'v_med_p_notebook' }, - ['-1359959481'] = { Name = 'v_med_p_phrenhead' }, - ['743808545'] = { Name = 'v_med_p_planter' }, - ['290907630'] = { Name = 'v_med_p_sideboard' }, - ['-345387217'] = { Name = 'v_med_p_sidetable' }, - ['-1788378994'] = { Name = 'v_med_p_sofa' }, - ['456839722'] = { Name = 'v_med_p_tidybox' }, - ['2139601616'] = { Name = 'v_med_p_vaseround' }, - ['-1762358844'] = { Name = 'v_med_p_vasetall' }, - ['-587414879'] = { Name = 'v_med_p_wallhead' }, - ['259988008'] = { Name = 'v_med_pillow' }, - ['-172171507'] = { Name = 'v_med_smokealarm' }, - ['-1029667826'] = { Name = 'v_med_soapdisp' }, - ['166629214'] = { Name = 'v_med_soapdispencer' }, - ['-1700923416'] = { Name = 'v_med_storage' }, - ['388753871'] = { Name = 'v_med_testtubes' }, - ['79058805'] = { Name = 'v_med_testuberack' }, - ['-1218668262'] = { Name = 'v_med_trolley' }, - ['1439968368'] = { Name = 'v_med_trolley2' }, - ['-1911932785'] = { Name = 'v_med_vats' }, - ['-984671127'] = { Name = 'v_med_vcor_winfnarrow' }, - ['-1573870288'] = { Name = 'v_med_wallpicture1' }, - ['-1805219428'] = { Name = 'v_med_wallpicture2' }, - ['-1432029772'] = { Name = 'v_med_whickchair2' }, - ['-1657573824'] = { Name = 'v_med_whickchair2bit' }, - ['-1786424499'] = { Name = 'v_med_whickerchair1' }, - ['1869654794'] = { Name = 'v_med_xray' }, - ['1802131904'] = { Name = 'v_metro_steps005seoul' }, - ['380414644'] = { Name = 'v_metro_steps006seoul' }, - ['1044906875'] = { Name = 'v_metro_steps007seoul' }, - ['-93961724'] = { Name = 'v_metro_steps3seoul' }, - ['-1134964555'] = { Name = 'v_metro2_ao' }, - ['-1851638121'] = { Name = 'v_metro3_ao' }, - ['-856051509'] = { Name = 'v_metro4_ao' }, - ['625585855'] = { Name = 'v_metro6_ao' }, - ['-1186975865'] = { Name = 'v_proc2_temp' }, - ['540021153'] = { Name = 'v_prop_floatcandle' }, - ['-1095443412'] = { Name = 'v_res_binder' }, - ['900650591'] = { Name = 'v_res_bowl_dec' }, - ['-1221122355'] = { Name = 'v_res_cabinet' }, - ['-654508181'] = { Name = 'v_res_cakedome' }, - ['641508'] = { Name = 'v_res_cctv' }, - ['-941766439'] = { Name = 'v_res_cd' }, - ['-1681354036'] = { Name = 'v_res_cdstorage' }, - ['-730024798'] = { Name = 'v_res_cherubvase' }, - ['-552231252'] = { Name = 'v_res_d_armchair' }, - ['-1459966494'] = { Name = 'v_res_d_bed' }, - ['1544669620'] = { Name = 'v_res_d_closetdoorl' }, - ['-1177942745'] = { Name = 'v_res_d_closetdoorr' }, - ['-1310947507'] = { Name = 'v_res_d_coffeetable' }, - ['-463441113'] = { Name = 'v_res_d_dildo_a' }, - ['-731262150'] = { Name = 'v_res_d_dildo_b' }, - ['-1980613044'] = { Name = 'v_res_d_dildo_c' }, - ['2009373169'] = { Name = 'v_res_d_dildo_d' }, - ['-1921596075'] = { Name = 'v_res_d_dildo_e' }, - ['1333481871'] = { Name = 'v_res_d_dildo_f' }, - ['-144591170'] = { Name = 'v_res_d_dressdummy' }, - ['722857897'] = { Name = 'v_res_d_dressingtable' }, - ['-1987538561'] = { Name = 'v_res_d_highchair' }, - ['-1692648419'] = { Name = 'v_res_d_lampa' }, - ['1553232197'] = { Name = 'v_res_d_lube' }, - ['465332832'] = { Name = 'v_res_d_paddedwall' }, - ['-1023402492'] = { Name = 'v_res_d_ramskull' }, - ['-1871589878'] = { Name = 'v_res_d_roundtable' }, - ['-1905971121'] = { Name = 'v_res_d_sideunit' }, - ['-660421502'] = { Name = 'v_res_d_smallsidetable' }, - ['-598219252'] = { Name = 'v_res_d_sofa' }, - ['862082396'] = { Name = 'v_res_d_whips' }, - ['1285646130'] = { Name = 'v_res_d_zimmerframe' }, - ['-128014284'] = { Name = 'v_res_desklamp' }, - ['-1981136783'] = { Name = 'v_res_desktidy' }, - ['-713205494'] = { Name = 'v_res_exoticvase' }, - ['-1290286289'] = { Name = 'v_res_fa_basket' }, - ['1233387166'] = { Name = 'v_res_fa_book02' }, - ['865260220'] = { Name = 'v_res_fa_book03' }, - ['-439830743'] = { Name = 'v_res_fa_book04' }, - ['2065988552'] = { Name = 'v_res_fa_boot01l' }, - ['-1309218480'] = { Name = 'v_res_fa_boot01r' }, - ['-325297300'] = { Name = 'v_res_fa_bread03' }, - ['434827368'] = { Name = 'v_res_fa_butknife' }, - ['1160787715'] = { Name = 'v_res_fa_candle02' }, - ['-1264675346'] = { Name = 'v_res_fa_candle03' }, - ['-1915729838'] = { Name = 'v_res_fa_candle04' }, - ['210172640'] = { Name = 'v_res_fa_cap01' }, - ['-717511315'] = { Name = 'v_res_fa_cereal01' }, - ['-763944988'] = { Name = 'v_res_fa_cereal02' }, - ['438342263'] = { Name = 'v_res_fa_chair01' }, - ['685944827'] = { Name = 'v_res_fa_chair02' }, - ['782213229'] = { Name = 'v_res_fa_chopbrd' }, - ['642527033'] = { Name = 'v_res_fa_crystal01' }, - ['-2051379688'] = { Name = 'v_res_fa_crystal02' }, - ['1410173631'] = { Name = 'v_res_fa_crystal03' }, - ['684271492'] = { Name = 'v_res_fa_fan' }, - ['-1968674263'] = { Name = 'v_res_fa_grater' }, - ['-1150219047'] = { Name = 'v_res_fa_idol02' }, - ['272198484'] = { Name = 'v_res_fa_lamp1on' }, - ['2002578023'] = { Name = 'v_res_fa_lamp2off' }, - ['688475446'] = { Name = 'v_res_fa_mag_motor' }, - ['1404473282'] = { Name = 'v_res_fa_mag_rumor' }, - ['-1884999004'] = { Name = 'v_res_fa_magtidy' }, - ['-202575753'] = { Name = 'v_res_fa_phone' }, - ['-755359081'] = { Name = 'v_res_fa_plant01' }, - ['-815336865'] = { Name = 'v_res_fa_potcof' }, - ['-1359533616'] = { Name = 'v_res_fa_potnoodle' }, - ['-2068112130'] = { Name = 'v_res_fa_potsug' }, - ['-1411221263'] = { Name = 'v_res_fa_pottea' }, - ['1695345049'] = { Name = 'v_res_fa_pyramid' }, - ['1257238301'] = { Name = 'v_res_fa_radioalrm' }, - ['-1073715810'] = { Name = 'v_res_fa_shoebox1' }, - ['-1448658708'] = { Name = 'v_res_fa_shoebox2' }, - ['-72000249'] = { Name = 'v_res_fa_shoebox3' }, - ['101151147'] = { Name = 'v_res_fa_shoebox4' }, - ['1726659245'] = { Name = 'v_res_fa_smokealarm' }, - ['-915298033'] = { Name = 'v_res_fa_sponge01' }, - ['-2137717159'] = { Name = 'v_res_fa_stones01' }, - ['491441454'] = { Name = 'v_res_fa_tintomsoup' }, - ['1033236166'] = { Name = 'v_res_fa_trainer01l' }, - ['-1394619048'] = { Name = 'v_res_fa_trainer01r' }, - ['-923531556'] = { Name = 'v_res_fa_trainer02l' }, - ['1673510001'] = { Name = 'v_res_fa_trainer02r' }, - ['-1062243669'] = { Name = 'v_res_fa_trainer03l' }, - ['1443994993'] = { Name = 'v_res_fa_trainer03r' }, - ['10548213'] = { Name = 'v_res_fa_trainer04l' }, - ['1914623727'] = { Name = 'v_res_fa_trainer04r' }, - ['-1572239056'] = { Name = 'v_res_fa_umbrella' }, - ['-1911936130'] = { Name = 'v_res_fa_washlq' }, - ['1938168396'] = { Name = 'v_res_fa_yogamat002' }, - ['-1077568635'] = { Name = 'v_res_fa_yogamat1' }, - ['-2042781782'] = { Name = 'v_res_fashmag1' }, - ['2003032008'] = { Name = 'v_res_fashmagopen' }, - ['1117944066'] = { Name = 'v_res_fh_aftershavebox' }, - ['-1061363766'] = { Name = 'v_res_fh_barcchair' }, - ['-1989035681'] = { Name = 'v_res_fh_bedsideclock' }, - ['1427480666'] = { Name = 'v_res_fh_benchlong' }, - ['-2009287960'] = { Name = 'v_res_fh_benchshort' }, - ['567797420'] = { Name = 'v_res_fh_coftablea' }, - ['1453641789'] = { Name = 'v_res_fh_coftableb' }, - ['-563800903'] = { Name = 'v_res_fh_coftbldisp' }, - ['1519332782'] = { Name = 'v_res_fh_crateclosed' }, - ['-238480731'] = { Name = 'v_res_fh_crateopen' }, - ['-603563862'] = { Name = 'v_res_fh_dineeamesa' }, - ['174634350'] = { Name = 'v_res_fh_dineeamesb' }, - ['-125562459'] = { Name = 'v_res_fh_dineeamesc' }, - ['1821191822'] = { Name = 'v_res_fh_diningtable' }, - ['-1394425261'] = { Name = 'v_res_fh_easychair' }, - ['1376856765'] = { Name = 'v_res_fh_floorlamp' }, - ['-1632952975'] = { Name = 'v_res_fh_flowersa' }, - ['-298634306'] = { Name = 'v_res_fh_fruitbowl' }, - ['-1753930779'] = { Name = 'v_res_fh_guitaramp' }, - ['-1972746906'] = { Name = 'v_res_fh_kitnstool' }, - ['139155200'] = { Name = 'v_res_fh_lampa_on' }, - ['698127650'] = { Name = 'v_res_fh_laundrybasket' }, - ['771696538'] = { Name = 'v_res_fh_pouf' }, - ['-391156104'] = { Name = 'v_res_fh_sculptmod' }, - ['2011957697'] = { Name = 'v_res_fh_sidebrddine' }, - ['-781151385'] = { Name = 'v_res_fh_sidebrdlng' }, - ['-1826629702'] = { Name = 'v_res_fh_sidebrdlngb' }, - ['-108069875'] = { Name = 'v_res_fh_singleseat' }, - ['1506827733'] = { Name = 'v_res_fh_sofa' }, - ['-1468666842'] = { Name = 'v_res_fh_speaker' }, - ['-364924791'] = { Name = 'v_res_fh_speakerdock' }, - ['683474771'] = { Name = 'v_res_fh_tableplace' }, - ['-1982055048'] = { Name = 'v_res_fh_towelstack' }, - ['1545607805'] = { Name = 'v_res_fh_towerfan' }, - ['1209872975'] = { Name = 'v_res_filebox01' }, - ['1521413924'] = { Name = 'v_res_foodjara' }, - ['1290916778'] = { Name = 'v_res_foodjarb' }, - ['-149575693'] = { Name = 'v_res_foodjarc' }, - ['-35465629'] = { Name = 'v_res_fridgemoda' }, - ['1821439213'] = { Name = 'v_res_fridgemodsml' }, - ['1204431867'] = { Name = 'v_res_glasspot' }, - ['-2092020213'] = { Name = 'v_res_harddrive' }, - ['-928152827'] = { Name = 'v_res_int_oven' }, - ['1172780765'] = { Name = 'v_res_investbook01' }, - ['622622020'] = { Name = 'v_res_investbook08' }, - ['920122288'] = { Name = 'v_res_ipoddock' }, - ['588223318'] = { Name = 'v_res_ivy' }, - ['2014682882'] = { Name = 'v_res_j_coffeetable' }, - ['1411387896'] = { Name = 'v_res_j_dinechair' }, - ['-1950956966'] = { Name = 'v_res_j_lowtable' }, - ['-259631153'] = { Name = 'v_res_j_magrack' }, - ['97410561'] = { Name = 'v_res_j_phone' }, - ['-999197614'] = { Name = 'v_res_j_radio' }, - ['-1241891484'] = { Name = 'v_res_j_sofa' }, - ['-5124212'] = { Name = 'v_res_j_stool' }, - ['776023625'] = { Name = 'v_res_j_tablelamp1' }, - ['554636261'] = { Name = 'v_res_j_tablelamp2' }, - ['-1280437652'] = { Name = 'v_res_j_tvstand' }, - ['38932324'] = { Name = 'v_res_jarmchair' }, - ['-1283319196'] = { Name = 'v_res_jcushiona' }, - ['-160587718'] = { Name = 'v_res_jcushionb' }, - ['-941046991'] = { Name = 'v_res_jcushionc' }, - ['457140701'] = { Name = 'v_res_jcushiond' }, - ['-664481362'] = { Name = 'v_res_jewelbox' }, - ['-230630025'] = { Name = 'v_res_keyboard' }, - ['-471547794'] = { Name = 'v_res_lest_bigscreen' }, - ['-935087560'] = { Name = 'v_res_lest_monitor' }, - ['-1635359653'] = { Name = 'v_res_lestersbed' }, - ['-1251662965'] = { Name = 'v_res_m_armchair' }, - ['1725227610'] = { Name = 'v_res_m_armoire' }, - ['200192944'] = { Name = 'v_res_m_armoirmove' }, - ['-503867265'] = { Name = 'v_res_m_bananaplant' }, - ['199039671'] = { Name = 'v_res_m_candle' }, - ['-1694321525'] = { Name = 'v_res_m_candlelrg' }, - ['-774078432'] = { Name = 'v_res_m_console' }, - ['-474978775'] = { Name = 'v_res_m_dinechair' }, - ['1139201896'] = { Name = 'v_res_m_dinetble_replace' }, - ['289502488'] = { Name = 'v_res_m_dinetble' }, - ['1642602358'] = { Name = 'v_res_m_fame_flyer' }, - ['1370916260'] = { Name = 'v_res_m_fameshame' }, - ['1924767361'] = { Name = 'v_res_m_h_console' }, - ['-569719089'] = { Name = 'v_res_m_h_sofa_sml' }, - ['1181479993'] = { Name = 'v_res_m_h_sofa' }, - ['-1244325767'] = { Name = 'v_res_m_horsefig' }, - ['-894529758'] = { Name = 'v_res_m_kscales' }, - ['-2004817750'] = { Name = 'v_res_m_lampstand' }, - ['465376360'] = { Name = 'v_res_m_lampstand2' }, - ['1739427303'] = { Name = 'v_res_m_lamptbl_off' }, - ['-565701580'] = { Name = 'v_res_m_lamptbl' }, - ['969852049'] = { Name = 'v_res_m_palmplant1' }, - ['-1578969039'] = { Name = 'v_res_m_palmstairs' }, - ['-107327626'] = { Name = 'v_res_m_pot1' }, - ['-1464134536'] = { Name = 'v_res_m_sidetable' }, - ['-1570167268'] = { Name = 'v_res_m_sinkunit' }, - ['2071456372'] = { Name = 'v_res_m_spanishbox' }, - ['1066412934'] = { Name = 'v_res_m_stool_replaced' }, - ['956042042'] = { Name = 'v_res_m_stool' }, - ['1256172027'] = { Name = 'v_res_m_urn' }, - ['-249576072'] = { Name = 'v_res_m_vasedead' }, - ['-1374484340'] = { Name = 'v_res_m_vasefresh' }, - ['124842687'] = { Name = 'v_res_m_wbowl_move' }, - ['149803107'] = { Name = 'v_res_m_wctoiletroll' }, - ['275099168'] = { Name = 'v_res_m_woodbowl' }, - ['-580498226'] = { Name = 'v_res_mbaccessory' }, - ['1928959797'] = { Name = 'v_res_mbath' }, - ['-1357209146'] = { Name = 'v_res_mbathpot' }, - ['-1858630061'] = { Name = 'v_res_mbbed_mess' }, - ['-1896966819'] = { Name = 'v_res_mbbed' }, - ['-1482550767'] = { Name = 'v_res_mbbedtable' }, - ['970451370'] = { Name = 'v_res_mbbin' }, - ['-1590845185'] = { Name = 'v_res_mbbrshholder' }, - ['1918586980'] = { Name = 'v_res_mbchair' }, - ['1526034278'] = { Name = 'v_res_mbdresser' }, - ['1941462136'] = { Name = 'v_res_mbidet' }, - ['426327676'] = { Name = 'v_res_mbottoman' }, - ['438382675'] = { Name = 'v_res_mbowl' }, - ['-178641885'] = { Name = 'v_res_mbowlornate' }, - ['-924139659'] = { Name = 'v_res_mbronzvase' }, - ['-1518061350'] = { Name = 'v_res_mbshower' }, - ['1926087217'] = { Name = 'v_res_mbsink' }, - ['-1019149089'] = { Name = 'v_res_mbtaps' }, - ['-270634238'] = { Name = 'v_res_mbtowel' }, - ['724700469'] = { Name = 'v_res_mbtowelfld' }, - ['803991844'] = { Name = 'v_res_mchalkbrd' }, - ['477649989'] = { Name = 'v_res_mchopboard' }, - ['-988058582'] = { Name = 'v_res_mcofcup' }, - ['-905474743'] = { Name = 'v_res_mcofcupdirt' }, - ['-335877674'] = { Name = 'v_res_mconsolemod' }, - ['-1388515078'] = { Name = 'v_res_mconsolemove' }, - ['301913331'] = { Name = 'v_res_mconsoletrad' }, - ['-1003293747'] = { Name = 'v_res_mcupboard' }, - ['902446603'] = { Name = 'v_res_mdbed' }, - ['-363371364'] = { Name = 'v_res_mdbedlamp_off' }, - ['-1669114072'] = { Name = 'v_res_mdbedlamp' }, - ['-673335576'] = { Name = 'v_res_mdbedtable' }, - ['1838109023'] = { Name = 'v_res_mdchest_moved' }, - ['-599924401'] = { Name = 'v_res_mdchest' }, - ['-2067386219'] = { Name = 'v_res_mddesk' }, - ['2104268547'] = { Name = 'v_res_mddresser_off' }, - ['-276852211'] = { Name = 'v_res_mddresser' }, - ['827254092'] = { Name = 'v_res_mexball' }, - ['355465634'] = { Name = 'v_res_mflowers' }, - ['1763868376'] = { Name = 'v_res_mknifeblock' }, - ['1710689847'] = { Name = 'v_res_mkniferack' }, - ['-1627103037'] = { Name = 'v_res_mlaundry' }, - ['2079380440'] = { Name = 'v_res_mm_audio' }, - ['-79268159'] = { Name = 'v_res_mmug' }, - ['197124182'] = { Name = 'v_res_monitor' }, - ['829413118'] = { Name = 'v_res_monitorsquare' }, - ['-1634294596'] = { Name = 'v_res_monitorstand' }, - ['1989658880'] = { Name = 'v_res_monitorwidelarge' }, - ['405594841'] = { Name = 'v_res_mountedprojector' }, - ['-286280212'] = { Name = 'v_res_mousemat' }, - ['-2066605738'] = { Name = 'v_res_mp_ashtraya' }, - ['-1685436730'] = { Name = 'v_res_mp_ashtrayb' }, - ['-568894163'] = { Name = 'v_res_mp_sofa' }, - ['184722020'] = { Name = 'v_res_mp_stripchair' }, - ['-1760059760'] = { Name = 'v_res_mplanttongue' }, - ['-1675493326'] = { Name = 'v_res_mplatelrg' }, - ['1205594576'] = { Name = 'v_res_mplatesml' }, - ['47092382'] = { Name = 'v_res_mplinth' }, - ['-807401144'] = { Name = 'v_res_mpotpouri' }, - ['1147540973'] = { Name = 'v_res_msidetblemod' }, - ['-980185685'] = { Name = 'v_res_msonbed_s' }, - ['-493628998'] = { Name = 'v_res_msonbed' }, - ['863314394'] = { Name = 'v_res_msoncabinet' }, - ['-1233105549'] = { Name = 'v_res_mtblelampmod' }, - ['-1985926838'] = { Name = 'v_res_mtoilet' }, - ['1236657579'] = { Name = 'v_res_mutensils' }, - ['1855795498'] = { Name = 'v_res_mvasechinese' }, - ['291642981'] = { Name = 'v_res_officeboxfile01' }, - ['49373240'] = { Name = 'v_res_ovenhobmod' }, - ['-1883980157'] = { Name = 'v_res_paperfolders' }, - ['-1627996171'] = { Name = 'v_res_pcheadset' }, - ['1989916391'] = { Name = 'v_res_pcspeaker' }, - ['590001451'] = { Name = 'v_res_pctower' }, - ['-963015449'] = { Name = 'v_res_pcwoofer' }, - ['1515457234'] = { Name = 'v_res_pestle' }, - ['-697269431'] = { Name = 'v_res_picture_frame' }, - ['-597517382'] = { Name = 'v_res_plate_dec' }, - ['1810328078'] = { Name = 'v_res_printer' }, - ['471448225'] = { Name = 'v_res_r_bathjar' }, - ['452707940'] = { Name = 'v_res_r_bathpot' }, - ['-2011944650'] = { Name = 'v_res_r_bublbath' }, - ['199425447'] = { Name = 'v_res_r_coffpot' }, - ['2120480918'] = { Name = 'v_res_r_cottonbuds' }, - ['-2138009162'] = { Name = 'v_res_r_figauth1' }, - ['1991671298'] = { Name = 'v_res_r_figauth2' }, - ['363356512'] = { Name = 'v_res_r_figcat' }, - ['-1364498188'] = { Name = 'v_res_r_figclown' }, - ['158467772'] = { Name = 'v_res_r_figdancer' }, - ['34093998'] = { Name = 'v_res_r_figfemale' }, - ['1761605047'] = { Name = 'v_res_r_figflamenco' }, - ['219619900'] = { Name = 'v_res_r_figgirl' }, - ['-760975398'] = { Name = 'v_res_r_figgirlclown' }, - ['1729671130'] = { Name = 'v_res_r_fighorse' }, - ['-879871564'] = { Name = 'v_res_r_fighorsestnd' }, - ['-1169324212'] = { Name = 'v_res_r_figoblisk' }, - ['-73027135'] = { Name = 'v_res_r_figpillar' }, - ['-581141528'] = { Name = 'v_res_r_lotion' }, - ['1554640836'] = { Name = 'v_res_r_milkjug' }, - ['1491977948'] = { Name = 'v_res_r_pepppot' }, - ['1957983047'] = { Name = 'v_res_r_perfume' }, - ['916514878'] = { Name = 'v_res_r_silvrtray' }, - ['-1020142872'] = { Name = 'v_res_r_sofa' }, - ['169396189'] = { Name = 'v_res_r_sugarbowl' }, - ['-1394451687'] = { Name = 'v_res_r_teapot' }, - ['341562675'] = { Name = 'v_res_rosevase' }, - ['-53332211'] = { Name = 'v_res_rosevasedead' }, - ['-1246711311'] = { Name = 'v_res_rubberplant' }, - ['1540891715'] = { Name = 'v_res_sculpt_dec' }, - ['597596136'] = { Name = 'v_res_sculpt_decb' }, - ['102620391'] = { Name = 'v_res_sculpt_decd' }, - ['-195413664'] = { Name = 'v_res_sculpt_dece' }, - ['-461858403'] = { Name = 'v_res_sculpt_decf' }, - ['1801244118'] = { Name = 'v_res_skateboard' }, - ['-1540767983'] = { Name = 'v_res_sketchpad' }, - ['-1803429498'] = { Name = 'v_res_smallplasticbox' }, - ['-422412851'] = { Name = 'v_res_son_desk' }, - ['-847239755'] = { Name = 'v_res_son_unitgone' }, - ['803221323'] = { Name = 'v_res_study_chair' }, - ['1375359648'] = { Name = 'v_res_tabloidsa' }, - ['270388964'] = { Name = 'v_res_tabloidsb' }, - ['498625049'] = { Name = 'v_res_tabloidsc' }, - ['99079546'] = { Name = 'v_res_tissues' }, - ['-926117806'] = { Name = 'v_res_tre_alarmbox' }, - ['532565818'] = { Name = 'v_res_tre_banana' }, - ['-494592546'] = { Name = 'v_res_tre_basketmess' }, - ['-582379536'] = { Name = 'v_res_tre_bed1_messy' }, - ['-408601900'] = { Name = 'v_res_tre_bed1' }, - ['-1889727927'] = { Name = 'v_res_tre_bed2' }, - ['1555579420'] = { Name = 'v_res_tre_bedsidetable' }, - ['1107796358'] = { Name = 'v_res_tre_bedsidetableb' }, - ['-1627863502'] = { Name = 'v_res_tre_bin' }, - ['1789936288'] = { Name = 'v_res_tre_chair' }, - ['1088184978'] = { Name = 'v_res_tre_cuprack' }, - ['-1617971041'] = { Name = 'v_res_tre_cushiona' }, - ['-1849549564'] = { Name = 'v_res_tre_cushionb' }, - ['-1259248798'] = { Name = 'v_res_tre_cushionc' }, - ['-1490106403'] = { Name = 'v_res_tre_cushiond' }, - ['122067173'] = { Name = 'v_res_tre_cushnscuzb' }, - ['-875322884'] = { Name = 'v_res_tre_cushnscuzd' }, - ['-1630442476'] = { Name = 'v_res_tre_dvdplayer' }, - ['99427111'] = { Name = 'v_res_tre_flatbasket' }, - ['1475873532'] = { Name = 'v_res_tre_fridge' }, - ['430942112'] = { Name = 'v_res_tre_fruitbowl' }, - ['-1003273441'] = { Name = 'v_res_tre_laundrybasket' }, - ['866683635'] = { Name = 'v_res_tre_lightfan' }, - ['818840219'] = { Name = 'v_res_tre_mixer' }, - ['810899590'] = { Name = 'v_res_tre_officechair' }, - ['-829287376'] = { Name = 'v_res_tre_pineapple' }, - ['-1078596843'] = { Name = 'v_res_tre_plant' }, - ['-1052198219'] = { Name = 'v_res_tre_plugsocket' }, - ['-2036081975'] = { Name = 'v_res_tre_remote' }, - ['-1914871455'] = { Name = 'v_res_tre_sideboard' }, - ['222361162'] = { Name = 'v_res_tre_smallbookshelf' }, - ['-257045961'] = { Name = 'v_res_tre_sofa_mess_a' }, - ['-9508935'] = { Name = 'v_res_tre_sofa_mess_b' }, - ['-1927183588'] = { Name = 'v_res_tre_sofa_mess_c' }, - ['2109741755'] = { Name = 'v_res_tre_sofa_s' }, - ['-941390908'] = { Name = 'v_res_tre_sofa' }, - ['1560277278'] = { Name = 'v_res_tre_stool_leather' }, - ['891849380'] = { Name = 'v_res_tre_stool_scuz' }, - ['937222680'] = { Name = 'v_res_tre_stool' }, - ['-1705306415'] = { Name = 'v_res_tre_storagebox' }, - ['-2047530477'] = { Name = 'v_res_tre_storageunit' }, - ['1207428357'] = { Name = 'v_res_tre_table001' }, - ['-2019599437'] = { Name = 'v_res_tre_table2' }, - ['-1424253055'] = { Name = 'v_res_tre_talllamp' }, - ['-1176250575'] = { Name = 'v_res_tre_tree' }, - ['-535055114'] = { Name = 'v_res_tre_tvstand_tall' }, - ['1417093281'] = { Name = 'v_res_tre_tvstand' }, - ['914205402'] = { Name = 'v_res_tre_wardrobe' }, - ['64076466'] = { Name = 'v_res_tre_washbasket' }, - ['580175976'] = { Name = 'v_res_tre_wdunitscuz' }, - ['340510501'] = { Name = 'v_res_tre_weight' }, - ['1133154116'] = { Name = 'v_res_tre_woodunit' }, - ['-1200941518'] = { Name = 'v_res_trev_framechair' }, - ['-431168006'] = { Name = 'v_res_tt_basket' }, - ['-1557777900'] = { Name = 'v_res_tt_bed' }, - ['-1015731625'] = { Name = 'v_res_tt_bedpillow' }, - ['1771687453'] = { Name = 'v_res_tt_bowl' }, - ['1231872793'] = { Name = 'v_res_tt_bowlpile01' }, - ['928300777'] = { Name = 'v_res_tt_bowlpile02' }, - ['1892179553'] = { Name = 'v_res_tt_can02' }, - ['-1826381033'] = { Name = 'v_res_tt_can03' }, - ['-1595864669'] = { Name = 'v_res_tt_cancrsh01' }, - ['-1296847544'] = { Name = 'v_res_tt_cancrsh02' }, - ['-260968027'] = { Name = 'v_res_tt_cbbox' }, - ['2141353157'] = { Name = 'v_res_tt_cereal02' }, - ['714696561'] = { Name = 'v_res_tt_cigs01' }, - ['-85890288'] = { Name = 'v_res_tt_doughnuts' }, - ['-535483992'] = { Name = 'v_res_tt_flusher' }, - ['1610244484'] = { Name = 'v_res_tt_fridge' }, - ['1684327795'] = { Name = 'v_res_tt_fridgedoor' }, - ['-1158929576'] = { Name = 'v_res_tt_lighter' }, - ['-261501551'] = { Name = 'v_res_tt_litter1' }, - ['-104865731'] = { Name = 'v_res_tt_litter2' }, - ['-690644375'] = { Name = 'v_res_tt_litter3' }, - ['546339338'] = { Name = 'v_res_tt_looroll' }, - ['-2025086469'] = { Name = 'v_res_tt_mug01' }, - ['-2037843699'] = { Name = 'v_res_tt_mug2' }, - ['1787587532'] = { Name = 'v_res_tt_pharm1' }, - ['1547095841'] = { Name = 'v_res_tt_pharm2' }, - ['1174512311'] = { Name = 'v_res_tt_pharm3' }, - ['1120955680'] = { Name = 'v_res_tt_pizzaplate' }, - ['1675275778'] = { Name = 'v_res_tt_plate01' }, - ['470212711'] = { Name = 'v_res_tt_platepile' }, - ['1988741053'] = { Name = 'v_res_tt_plunger' }, - ['419020243'] = { Name = 'v_res_tt_porndvd01' }, - ['1319414056'] = { Name = 'v_res_tt_porndvd02' }, - ['1013548210'] = { Name = 'v_res_tt_porndvd03' }, - ['1860168086'] = { Name = 'v_res_tt_porndvd04' }, - ['1258923146'] = { Name = 'v_res_tt_pornmag01' }, - ['492521774'] = { Name = 'v_res_tt_pornmag02' }, - ['797240705'] = { Name = 'v_res_tt_pornmag03' }, - ['32477783'] = { Name = 'v_res_tt_pornmag04' }, - ['-1825282106'] = { Name = 'v_res_tt_pot01' }, - ['-1952098136'] = { Name = 'v_res_tt_pot02' }, - ['2127609599'] = { Name = 'v_res_tt_pot03' }, - ['1442760350'] = { Name = 'v_res_tt_sofa' }, - ['-1143663273'] = { Name = 'v_res_tt_tissues' }, - ['-251880369'] = { Name = 'v_res_tt_tvremote' }, - ['1740269944'] = { Name = 'v_res_vacuum' }, - ['-1787736766'] = { Name = 'v_res_vhsplayer' }, - ['-2021787175'] = { Name = 'v_res_videotape' }, - ['483687262'] = { Name = 'v_res_wall_cornertop' }, - ['1485704474'] = { Name = 'v_ret_247_bread1' }, - ['1248070522'] = { Name = 'v_ret_247_cereal1' }, - ['-756341118'] = { Name = 'v_ret_247_choptom' }, - ['-1406045366'] = { Name = 'v_ret_247_cigs' }, - ['1421582485'] = { Name = 'v_ret_247_donuts' }, - ['-1543048205'] = { Name = 'v_ret_247_eggs' }, - ['-102104160'] = { Name = 'v_ret_247_flour' }, - ['-802238381'] = { Name = 'v_ret_247_fruit' }, - ['1074210201'] = { Name = 'v_ret_247_ketchup1' }, - ['1367230591'] = { Name = 'v_ret_247_ketchup2' }, - ['-1816283392'] = { Name = 'v_ret_247_lottery' }, - ['-38797076'] = { Name = 'v_ret_247_lotterysign' }, - ['1166604921'] = { Name = 'v_ret_247_mustard' }, - ['-960314813'] = { Name = 'v_ret_247_noodle1' }, - ['1912608951'] = { Name = 'v_ret_247_noodle2' }, - ['-2075542198'] = { Name = 'v_ret_247_noodle3' }, - ['-3198220'] = { Name = 'v_ret_247_pharmbetta' }, - ['93702692'] = { Name = 'v_ret_247_pharmbox' }, - ['1972721385'] = { Name = 'v_ret_247_pharmdeo' }, - ['-689452453'] = { Name = 'v_ret_247_pharmstuff' }, - ['1541274880'] = { Name = 'v_ret_247_popbot4' }, - ['-1982036471'] = { Name = 'v_ret_247_popcan2' }, - ['2045891592'] = { Name = 'v_ret_247_soappowder2' }, - ['663958207'] = { Name = 'v_ret_247_sweetcount' }, - ['-934709748'] = { Name = 'v_ret_247_swtcorn2' }, - ['-735029261'] = { Name = 'v_ret_247_tomsoup1' }, - ['-472680173'] = { Name = 'v_ret_247_tuna' }, - ['1264979146'] = { Name = 'v_ret_247_vegsoup1' }, - ['-679139144'] = { Name = 'v_ret_247_win1' }, - ['-844425980'] = { Name = 'v_ret_247_win2' }, - ['-519357464'] = { Name = 'v_ret_247_win3' }, - ['-54719154'] = { Name = 'v_ret_247shelves01' }, - ['-220235377'] = { Name = 'v_ret_247shelves02' }, - ['-532065181'] = { Name = 'v_ret_247shelves03' }, - ['643522702'] = { Name = 'v_ret_247shelves04' }, - ['1437777724'] = { Name = 'v_ret_247shelves05' }, - ['163066920'] = { Name = 'v_ret_baglrg' }, - ['-1516329901'] = { Name = 'v_ret_bagsml' }, - ['1546309912'] = { Name = 'v_ret_box' }, - ['1630899471'] = { Name = 'v_ret_chair_white' }, - ['-523951410'] = { Name = 'v_ret_chair' }, - ['1081399034'] = { Name = 'v_ret_csr_bin' }, - ['-690015628'] = { Name = 'v_ret_csr_signa' }, - ['315927134'] = { Name = 'v_ret_csr_signb' }, - ['943912250'] = { Name = 'v_ret_csr_signc' }, - ['-458616549'] = { Name = 'v_ret_csr_signceiling' }, - ['1846468817'] = { Name = 'v_ret_csr_signd' }, - ['-1800416249'] = { Name = 'v_ret_csr_signtri' }, - ['-941548444'] = { Name = 'v_ret_csr_signtrismall' }, - ['-1498039054'] = { Name = 'v_ret_csr_table' }, - ['-472365306'] = { Name = 'v_ret_csr_tyresale' }, - ['1124868331'] = { Name = 'v_ret_fh_ashtray' }, - ['1562910207'] = { Name = 'v_ret_fh_bsbag' }, - ['-1539862408'] = { Name = 'v_ret_fh_bscup' }, - ['607684038'] = { Name = 'v_ret_fh_chair01' }, - ['467290531'] = { Name = 'v_ret_fh_coolbox' }, - ['-540782362'] = { Name = 'v_ret_fh_dinetable' }, - ['1842258647'] = { Name = 'v_ret_fh_displayc' }, - ['-251167274'] = { Name = 'v_ret_fh_doorframe' }, - ['582134182'] = { Name = 'v_ret_fh_doorfrmwide' }, - ['-49220232'] = { Name = 'v_ret_fh_dryer' }, - ['971278178'] = { Name = 'v_ret_fh_emptybot1' }, - ['1208099741'] = { Name = 'v_ret_fh_emptybot2' }, - ['979029460'] = { Name = 'v_ret_fh_fanltoff' }, - ['2049937797'] = { Name = 'v_ret_fh_fanltonbas' }, - ['1824325367'] = { Name = 'v_ret_fh_fry02' }, - ['1757489840'] = { Name = 'v_ret_fh_ironbrd' }, - ['635240170'] = { Name = 'v_ret_fh_kitchtable' }, - ['265277000'] = { Name = 'v_ret_fh_noodle' }, - ['-451608514'] = { Name = 'v_ret_fh_pizza01' }, - ['323771564'] = { Name = 'v_ret_fh_pizza02' }, - ['-1016583293'] = { Name = 'v_ret_fh_plate1' }, - ['-248609009'] = { Name = 'v_ret_fh_plate2' }, - ['501964936'] = { Name = 'v_ret_fh_plate3' }, - ['1960709756'] = { Name = 'v_ret_fh_plate4' }, - ['1264228222'] = { Name = 'v_ret_fh_pot01' }, - ['-328869490'] = { Name = 'v_ret_fh_pot02' }, - ['-1261376923'] = { Name = 'v_ret_fh_pot05' }, - ['-869419016'] = { Name = 'v_ret_fh_radiator' }, - ['-1300099069'] = { Name = 'v_ret_fh_shelf_01' }, - ['-763801615'] = { Name = 'v_ret_fh_shelf_02' }, - ['-1181704684'] = { Name = 'v_ret_fh_shelf_03' }, - ['-406357375'] = { Name = 'v_ret_fh_shelf_04' }, - ['93827692'] = { Name = 'v_ret_fh_walllightoff' }, - ['2109783333'] = { Name = 'v_ret_fh_walllighton' }, - ['-704001348'] = { Name = 'v_ret_fh_washmach' }, - ['1437373576'] = { Name = 'v_ret_fh_wickbskt' }, - ['-247908770'] = { Name = 'v_ret_fhglassairfrm' }, - ['965837842'] = { Name = 'v_ret_fhglassfrm' }, - ['247384786'] = { Name = 'v_ret_fhglassfrmsml' }, - ['-739392318'] = { Name = 'v_ret_flowers' }, - ['2067313593'] = { Name = 'v_ret_gassweetcount' }, - ['756199591'] = { Name = 'v_ret_gassweets' }, - ['-1401697187'] = { Name = 'v_ret_gc_ammo1' }, - ['-278834633'] = { Name = 'v_ret_gc_ammo2' }, - ['27391672'] = { Name = 'v_ret_gc_ammo3' }, - ['-1706907653'] = { Name = 'v_ret_gc_ammo4' }, - ['1936480843'] = { Name = 'v_ret_gc_ammo5' }, - ['1442357096'] = { Name = 'v_ret_gc_ammo8' }, - ['352721947'] = { Name = 'v_ret_gc_ammostack' }, - ['1746762665'] = { Name = 'v_ret_gc_bag01' }, - ['-324631375'] = { Name = 'v_ret_gc_bag02' }, - ['-44941044'] = { Name = 'v_ret_gc_bin' }, - ['-1233342136'] = { Name = 'v_ret_gc_boot04' }, - ['-120328656'] = { Name = 'v_ret_gc_bootdisp' }, - ['684330213'] = { Name = 'v_ret_gc_box1' }, - ['866394777'] = { Name = 'v_ret_gc_box2' }, - ['-284652484'] = { Name = 'v_ret_gc_bullet' }, - ['1948561556'] = { Name = 'v_ret_gc_calc' }, - ['-297318917'] = { Name = 'v_ret_gc_cashreg' }, - ['-1971298567'] = { Name = 'v_ret_gc_chair01' }, - ['2040839490'] = { Name = 'v_ret_gc_chair02' }, - ['-881696544'] = { Name = 'v_ret_gc_chair03' }, - ['-1809234775'] = { Name = 'v_ret_gc_clock' }, - ['-1399490990'] = { Name = 'v_ret_gc_cup' }, - ['879885426'] = { Name = 'v_ret_gc_ear01' }, - ['-1298564933'] = { Name = 'v_ret_gc_ear02' }, - ['-2000607989'] = { Name = 'v_ret_gc_ear03' }, - ['491620376'] = { Name = 'v_ret_gc_fan' }, - ['-286479541'] = { Name = 'v_ret_gc_fax' }, - ['1617449286'] = { Name = 'v_ret_gc_folder1' }, - ['801042424'] = { Name = 'v_ret_gc_folder2' }, - ['-868490170'] = { Name = 'v_ret_gc_gasmask' }, - ['1179681321'] = { Name = 'v_ret_gc_knifehold1' }, - ['2084498973'] = { Name = 'v_ret_gc_knifehold2' }, - ['-1380074092'] = { Name = 'v_ret_gc_lamp' }, - ['1165564444'] = { Name = 'v_ret_gc_mags' }, - ['954470407'] = { Name = 'v_ret_gc_mug01' }, - ['723612802'] = { Name = 'v_ret_gc_mug02' }, - ['459560200'] = { Name = 'v_ret_gc_mug03' }, - ['-1409359059'] = { Name = 'v_ret_gc_mugdisplay' }, - ['1822183470'] = { Name = 'v_ret_gc_pen1' }, - ['589479224'] = { Name = 'v_ret_gc_pen2' }, - ['1146022803'] = { Name = 'v_ret_gc_phone' }, - ['-1144115258'] = { Name = 'v_ret_gc_plant1' }, - ['-345370326'] = { Name = 'v_ret_gc_print' }, - ['-141540058'] = { Name = 'v_ret_gc_scissors' }, - ['-1543210774'] = { Name = 'v_ret_gc_shred' }, - ['2057065924'] = { Name = 'v_ret_gc_sprinkler' }, - ['-1434375213'] = { Name = 'v_ret_gc_staple' }, - ['-1130190827'] = { Name = 'v_ret_gc_trays' }, - ['1714070505'] = { Name = 'v_ret_gc_tshirt1' }, - ['143386837'] = { Name = 'v_ret_gc_tshirt5' }, - ['-1486270996'] = { Name = 'v_ret_gc_tv' }, - ['-89356134'] = { Name = 'v_ret_gc_vent' }, - ['1987036371'] = { Name = 'v_ret_gs_glass01' }, - ['1687757094'] = { Name = 'v_ret_gs_glass02' }, - ['-72283947'] = { Name = 'v_ret_hd_hooks_' }, - ['1393739570'] = { Name = 'v_ret_hd_prod1_' }, - ['473126416'] = { Name = 'v_ret_hd_prod2_' }, - ['953926948'] = { Name = 'v_ret_hd_prod3_' }, - ['177399675'] = { Name = 'v_ret_hd_prod4_' }, - ['2013184257'] = { Name = 'v_ret_hd_prod5_' }, - ['524258940'] = { Name = 'v_ret_hd_prod6_' }, - ['263499151'] = { Name = 'v_ret_hd_unit1_' }, - ['2011035956'] = { Name = 'v_ret_hd_unit2_' }, - ['1866313229'] = { Name = 'v_ret_j_flowerdisp_white' }, - ['681277650'] = { Name = 'v_ret_j_flowerdisp' }, - ['-388378644'] = { Name = 'v_ret_mirror' }, - ['2085590335'] = { Name = 'v_ret_ml_6bottles' }, - ['-53650680'] = { Name = 'v_ret_ml_beeram' }, - ['-942878619'] = { Name = 'v_ret_ml_beerbar' }, - ['-1699929937'] = { Name = 'v_ret_ml_beerben1' }, - ['-329235432'] = { Name = 'v_ret_ml_beerben2' }, - ['-259124142'] = { Name = 'v_ret_ml_beerbla1' }, - ['583563462'] = { Name = 'v_ret_ml_beerbla2' }, - ['1793329478'] = { Name = 'v_ret_ml_beerdus' }, - ['898161667'] = { Name = 'v_ret_ml_beerjak1' }, - ['1186365022'] = { Name = 'v_ret_ml_beerjak2' }, - ['-1902841705'] = { Name = 'v_ret_ml_beerlog1' }, - ['1623856386'] = { Name = 'v_ret_ml_beerlog2' }, - ['1550641188'] = { Name = 'v_ret_ml_beerpat1' }, - ['1862110545'] = { Name = 'v_ret_ml_beerpat2' }, - ['1661171057'] = { Name = 'v_ret_ml_beerpis1' }, - ['2085005315'] = { Name = 'v_ret_ml_beerpis2' }, - ['-1914723336'] = { Name = 'v_ret_ml_beerpride' }, - ['-807039024'] = { Name = 'v_ret_ml_chips1' }, - ['-1730534982'] = { Name = 'v_ret_ml_chips2' }, - ['-1418934561'] = { Name = 'v_ret_ml_chips3' }, - ['-1839065906'] = { Name = 'v_ret_ml_chips4' }, - ['990852227'] = { Name = 'v_ret_ml_cigs' }, - ['-1240914379'] = { Name = 'v_ret_ml_cigs2' }, - ['-1479865927'] = { Name = 'v_ret_ml_cigs3' }, - ['-271115824'] = { Name = 'v_ret_ml_cigs4' }, - ['563739989'] = { Name = 'v_ret_ml_cigs5' }, - ['1263489215'] = { Name = 'v_ret_ml_cigs6' }, - ['1262567554'] = { Name = 'v_ret_ml_fridge' }, - ['-347947133'] = { Name = 'v_ret_ml_fridge02_dr' }, - ['-1538231930'] = { Name = 'v_ret_ml_fridge02' }, - ['-1105610407'] = { Name = 'v_ret_ml_liqshelfa' }, - ['1761775400'] = { Name = 'v_ret_ml_liqshelfb' }, - ['1238061242'] = { Name = 'v_ret_ml_liqshelfc' }, - ['-2065152269'] = { Name = 'v_ret_ml_liqshelfd' }, - ['-1766954369'] = { Name = 'v_ret_ml_liqshelfe' }, - ['-1197050094'] = { Name = 'v_ret_ml_meth' }, - ['1437558005'] = { Name = 'v_ret_ml_methcigs' }, - ['-1317590321'] = { Name = 'v_ret_ml_methsweets' }, - ['1244929250'] = { Name = 'v_ret_ml_papers' }, - ['-2055836816'] = { Name = 'v_ret_ml_partframe1' }, - ['-1294088642'] = { Name = 'v_ret_ml_partframe2' }, - ['-1591991621'] = { Name = 'v_ret_ml_partframe3' }, - ['-1431957069'] = { Name = 'v_ret_ml_scale' }, - ['1158946078'] = { Name = 'v_ret_ml_shelfrk' }, - ['1228376703'] = { Name = 'v_ret_ml_sweet1' }, - ['-1875208060'] = { Name = 'v_ret_ml_sweet2' }, - ['-1575601093'] = { Name = 'v_ret_ml_sweet3' }, - ['-319761937'] = { Name = 'v_ret_ml_sweet4' }, - ['-21793420'] = { Name = 'v_ret_ml_sweet5' }, - ['-920516014'] = { Name = 'v_ret_ml_sweet6' }, - ['-619729363'] = { Name = 'v_ret_ml_sweet7' }, - ['633750425'] = { Name = 'v_ret_ml_sweet8' }, - ['927393434'] = { Name = 'v_ret_ml_sweet9' }, - ['-2081577774'] = { Name = 'v_ret_ml_sweetego' }, - ['-724492621'] = { Name = 'v_ret_ml_tablea' }, - ['-999719436'] = { Name = 'v_ret_ml_tableb' }, - ['-2002254222'] = { Name = 'v_ret_ml_tablec' }, - ['1349488192'] = { Name = 'v_ret_ml_win2' }, - ['-1271966270'] = { Name = 'v_ret_ml_win3' }, - ['-1041960659'] = { Name = 'v_ret_ml_win4' }, - ['-1750426439'] = { Name = 'v_ret_ml_win5' }, - ['14751329'] = { Name = 'v_ret_neon_baracho' }, - ['514028339'] = { Name = 'v_ret_neon_blarneys' }, - ['-1925068611'] = { Name = 'v_ret_neon_logger' }, - ['212422933'] = { Name = 'v_ret_ps_bag_01' }, - ['-88789715'] = { Name = 'v_ret_ps_bag_02' }, - ['924866179'] = { Name = 'v_ret_ps_box_01' }, - ['-1819668623'] = { Name = 'v_ret_ps_box_02' }, - ['-65937277'] = { Name = 'v_ret_ps_box_03' }, - ['961655955'] = { Name = 'v_ret_ps_carrier01' }, - ['1661995023'] = { Name = 'v_ret_ps_carrier02' }, - ['1546354612'] = { Name = 'v_ret_ps_chair' }, - ['2046793812'] = { Name = 'v_ret_ps_cologne_01' }, - ['-199083070'] = { Name = 'v_ret_ps_cologne' }, - ['797424111'] = { Name = 'v_ret_ps_flowers_01' }, - ['-830867507'] = { Name = 'v_ret_ps_flowers_02' }, - ['463961750'] = { Name = 'v_ret_ps_pot' }, - ['2065593157'] = { Name = 'v_ret_ps_shades01' }, - ['1298569174'] = { Name = 'v_ret_ps_shades02' }, - ['-453266295'] = { Name = 'v_ret_ps_shoe_01' }, - ['-721387032'] = { Name = 'v_ret_ps_ties_01' }, - ['139323522'] = { Name = 'v_ret_ps_ties_02' }, - ['-154417794'] = { Name = 'v_ret_ps_ties_03' }, - ['-1345210485'] = { Name = 'v_ret_ps_ties_04' }, - ['-704932256'] = { Name = 'v_ret_ps_tissue' }, - ['1267833770'] = { Name = 'v_ret_ps_toiletbag' }, - ['1356866689'] = { Name = 'v_ret_ps_toiletry_01' }, - ['1050705922'] = { Name = 'v_ret_ps_toiletry_02' }, - ['657097993'] = { Name = 'v_ret_ta_book1' }, - ['-1585219143'] = { Name = 'v_ret_ta_book2' }, - ['553121952'] = { Name = 'v_ret_ta_book3' }, - ['321871119'] = { Name = 'v_ret_ta_book4' }, - ['15349949'] = { Name = 'v_ret_ta_box' }, - ['2144745138'] = { Name = 'v_ret_ta_camera' }, - ['-2140074399'] = { Name = 'v_ret_ta_firstaid' }, - ['1077574385'] = { Name = 'v_ret_ta_gloves' }, - ['-1486084727'] = { Name = 'v_ret_ta_hero' }, - ['-742386476'] = { Name = 'v_ret_ta_ink03' }, - ['-511987637'] = { Name = 'v_ret_ta_ink04' }, - ['-1188601953'] = { Name = 'v_ret_ta_ink05' }, - ['-502099890'] = { Name = 'v_ret_ta_jelly' }, - ['427392416'] = { Name = 'v_ret_ta_mag1' }, - ['48189548'] = { Name = 'v_ret_ta_mag2' }, - ['281867950'] = { Name = 'v_ret_ta_mug' }, - ['-667536719'] = { Name = 'v_ret_ta_paproll' }, - ['1971657777'] = { Name = 'v_ret_ta_paproll2' }, - ['-1196859886'] = { Name = 'v_ret_ta_pot1' }, - ['-417580297'] = { Name = 'v_ret_ta_pot2' }, - ['-1399339549'] = { Name = 'v_ret_ta_pot3' }, - ['-1862016482'] = { Name = 'v_ret_ta_power' }, - ['-968466081'] = { Name = 'v_ret_ta_skull' }, - ['-1920429619'] = { Name = 'v_ret_ta_spray' }, - ['1798189768'] = { Name = 'v_ret_ta_stool' }, - ['-1425009325'] = { Name = 'v_ret_tablesml' }, - ['367798813'] = { Name = 'v_ret_tat2stuff_01' }, - ['674352808'] = { Name = 'v_ret_tat2stuff_02' }, - ['848225122'] = { Name = 'v_ret_tat2stuff_03' }, - ['1151436679'] = { Name = 'v_ret_tat2stuff_04' }, - ['1331928335'] = { Name = 'v_ret_tat2stuff_05' }, - ['1494593651'] = { Name = 'v_ret_tat2stuff_06' }, - ['1806194072'] = { Name = 'v_ret_tat2stuff_07' }, - ['-1805606583'] = { Name = 'v_ret_tatstuff01' }, - ['-1977709371'] = { Name = 'v_ret_tatstuff02' }, - ['-1020100884'] = { Name = 'v_ret_tatstuff03' }, - ['-1326130575'] = { Name = 'v_ret_tatstuff04' }, - ['1309582442'] = { Name = 'v_ret_tissue' }, - ['1139436570'] = { Name = 'v_ret_washpow1' }, - ['799622040'] = { Name = 'v_ret_washpow2' }, - ['136597148'] = { Name = 'v_ret_wind2' }, - ['365314198'] = { Name = 'v_ret_window' }, - ['-1499125472'] = { Name = 'v_ret_windowair' }, - ['1335382252'] = { Name = 'v_ret_windowsmall' }, - ['-1468326899'] = { Name = 'v_ret_windowutil' }, - ['-589046858'] = { Name = 'v_serv_1socket' }, - ['-132789682'] = { Name = 'v_serv_2socket' }, - ['1644278705'] = { Name = 'v_serv_abox_02' }, - ['-2031321722'] = { Name = 'v_serv_abox_04' }, - ['-721895765'] = { Name = 'v_serv_abox_1' }, - ['-124033353'] = { Name = 'v_serv_abox_g1' }, - ['-790849738'] = { Name = 'v_serv_abox_g3' }, - ['492575597'] = { Name = 'v_serv_aboxes_02' }, - ['-387521298'] = { Name = 'v_serv_bktmop_h' }, - ['1543408104'] = { Name = 'v_serv_bs_barbchair' }, - ['-465246693'] = { Name = 'v_serv_bs_barbchair2' }, - ['434950506'] = { Name = 'v_serv_bs_barbchair3' }, - ['-177141645'] = { Name = 'v_serv_bs_barbchair5' }, - ['1720432065'] = { Name = 'v_serv_bs_cliipbit1' }, - ['1994282598'] = { Name = 'v_serv_bs_cliipbit2' }, - ['-920585494'] = { Name = 'v_serv_bs_cliipbit3' }, - ['-372354415'] = { Name = 'v_serv_bs_clippers' }, - ['1165195353'] = { Name = 'v_serv_bs_clutter' }, - ['1507202536'] = { Name = 'v_serv_bs_comb' }, - ['-1133354853'] = { Name = 'v_serv_bs_cond' }, - ['202070568'] = { Name = 'v_serv_bs_foam1' }, - ['-1515174995'] = { Name = 'v_serv_bs_foamx3' }, - ['12751331'] = { Name = 'v_serv_bs_gel' }, - ['-1023683840'] = { Name = 'v_serv_bs_gelx3' }, - ['-1656576146'] = { Name = 'v_serv_bs_hairdryer' }, - ['580223600'] = { Name = 'v_serv_bs_looroll' }, - ['-799414023'] = { Name = 'v_serv_bs_mug' }, - ['2005313754'] = { Name = 'v_serv_bs_razor' }, - ['1900909486'] = { Name = 'v_serv_bs_scissors' }, - ['795984016'] = { Name = 'v_serv_bs_shampoo' }, - ['286298615'] = { Name = 'v_serv_bs_shvbrush' }, - ['-688012791'] = { Name = 'v_serv_bs_spray' }, - ['2018317371'] = { Name = 'v_serv_cln_prod_04' }, - ['1561943508'] = { Name = 'v_serv_cln_prod_06' }, - ['1903701366'] = { Name = 'v_serv_crdbox_2' }, - ['-736560690'] = { Name = 'v_serv_ct_binoculars' }, - ['508864775'] = { Name = 'v_serv_ct_chair01' }, - ['-171943901'] = { Name = 'v_serv_ct_chair02' }, - ['-294576776'] = { Name = 'v_serv_ct_lamp' }, - ['-1763055830'] = { Name = 'v_serv_ct_light' }, - ['-1742955463'] = { Name = 'v_serv_ct_monitor01' }, - ['1659646421'] = { Name = 'v_serv_ct_monitor02' }, - ['-1266592510'] = { Name = 'v_serv_ct_monitor03' }, - ['-781152544'] = { Name = 'v_serv_ct_monitor04' }, - ['-500649904'] = { Name = 'v_serv_ct_monitor05' }, - ['-310622473'] = { Name = 'v_serv_ct_monitor06' }, - ['-8033527'] = { Name = 'v_serv_ct_monitor07' }, - ['-271744229'] = { Name = 'v_serv_ct_striplight' }, - ['-1798470109'] = { Name = 'v_serv_cupboard_01' }, - ['-1731941480'] = { Name = 'v_serv_emrglgt_off' }, - ['-79978204'] = { Name = 'v_serv_firbel' }, - ['1964400974'] = { Name = 'v_serv_firealarm' }, - ['-1530258765'] = { Name = 'v_serv_flurlgt_01' }, - ['1193759130'] = { Name = 'v_serv_gt_glass1' }, - ['2087304222'] = { Name = 'v_serv_gt_glass2' }, - ['-600415835'] = { Name = 'v_serv_hndtrk_n2_aa_h' }, - ['-1293487551'] = { Name = 'v_serv_lgtemg' }, - ['103179737'] = { Name = 'v_serv_metro_advertmid' }, - ['581889677'] = { Name = 'v_serv_metro_advertstand1' }, - ['275794448'] = { Name = 'v_serv_metro_advertstand2' }, - ['-10278922'] = { Name = 'v_serv_metro_advertstand3' }, - ['1385526236'] = { Name = 'v_serv_metro_ceilingspeaker' }, - ['-2139330164'] = { Name = 'v_serv_metro_ceilingvent' }, - ['1430895338'] = { Name = 'v_serv_metro_elecpole_singlel' }, - ['675274951'] = { Name = 'v_serv_metro_elecpole_singler' }, - ['-2009950230'] = { Name = 'v_serv_metro_floorbin' }, - ['-106487292'] = { Name = 'v_serv_metro_infoscreen1' }, - ['-448693971'] = { Name = 'v_serv_metro_infoscreen3' }, - ['1131390643'] = { Name = 'v_serv_metro_metaljunk1' }, - ['797015791'] = { Name = 'v_serv_metro_metaljunk2' }, - ['1745383396'] = { Name = 'v_serv_metro_metaljunk3' }, - ['925058130'] = { Name = 'v_serv_metro_paybooth' }, - ['1368830751'] = { Name = 'v_serv_metro_signals1' }, - ['440714328'] = { Name = 'v_serv_metro_signals2' }, - ['-867376114'] = { Name = 'v_serv_metro_signconnect' }, - ['2120265392'] = { Name = 'v_serv_metro_signlossantos' }, - ['622888377'] = { Name = 'v_serv_metro_signmap' }, - ['417944961'] = { Name = 'v_serv_metro_signroutes' }, - ['-871236969'] = { Name = 'v_serv_metro_signtravel' }, - ['285787722'] = { Name = 'v_serv_metro_stationfence' }, - ['2069444788'] = { Name = 'v_serv_metro_stationfence2' }, - ['-601985968'] = { Name = 'v_serv_metro_stationgate' }, - ['-535349246'] = { Name = 'v_serv_metro_statseat1' }, - ['-807594098'] = { Name = 'v_serv_metro_statseat2' }, - ['1945191539'] = { Name = 'v_serv_metro_tubelight' }, - ['495380854'] = { Name = 'v_serv_metro_tubelight2' }, - ['-942910394'] = { Name = 'v_serv_metro_tunnellight1' }, - ['-1551758414'] = { Name = 'v_serv_metro_tunnellight2' }, - ['682422711'] = { Name = 'v_serv_metro_wallbin' }, - ['-1556823922'] = { Name = 'v_serv_metro_walllightcage' }, - ['213350007'] = { Name = 'v_serv_metroelecpolecurve' }, - ['1653623132'] = { Name = 'v_serv_metroelecpolenarrow' }, - ['-269112841'] = { Name = 'v_serv_metroelecpolestation' }, - ['-368490772'] = { Name = 'v_serv_plas_boxg4' }, - ['-851111464'] = { Name = 'v_serv_plas_boxgt2' }, - ['713133406'] = { Name = 'v_serv_plastic_box_lid' }, - ['-421145003'] = { Name = 'v_serv_plastic_box' }, - ['-528401166'] = { Name = 'v_serv_radio' }, - ['-937756226'] = { Name = 'v_serv_securitycam_03' }, - ['-765880741'] = { Name = 'v_serv_securitycam_1a' }, - ['-177480482'] = { Name = 'v_serv_switch_2' }, - ['-455361602'] = { Name = 'v_serv_switch_3' }, - ['751349707'] = { Name = 'v_serv_tc_bin1_' }, - ['274859350'] = { Name = 'v_serv_tc_bin2_' }, - ['-1149940374'] = { Name = 'v_serv_tc_bin3_' }, - ['2067417152'] = { Name = 'v_serv_tu_iron_' }, - ['1359592635'] = { Name = 'v_serv_tu_iron2_' }, - ['259322409'] = { Name = 'v_serv_tu_light1_' }, - ['-1210399798'] = { Name = 'v_serv_tu_light2_' }, - ['-590146742'] = { Name = 'v_serv_tu_light3_' }, - ['1889796391'] = { Name = 'v_serv_tu_statio1_' }, - ['483613343'] = { Name = 'v_serv_tu_statio2_' }, - ['-1814837934'] = { Name = 'v_serv_tu_statio3_' }, - ['232962702'] = { Name = 'v_serv_tu_statio4_' }, - ['1802557189'] = { Name = 'v_serv_tu_statio5_' }, - ['838183020'] = { Name = 'v_serv_tu_stay_' }, - ['-332131798'] = { Name = 'v_serv_tu_stay2_' }, - ['368482553'] = { Name = 'v_serv_tu_trak1_' }, - ['1206778303'] = { Name = 'v_serv_tu_trak2_' }, - ['-1173362295'] = { Name = 'v_serv_tvrack' }, - ['-1188733122'] = { Name = 'v_serv_waste_bin1' }, - ['741933698'] = { Name = 'v_serv_wetfloorsn' }, - ['465467525'] = { Name = 'v_tre_sofa_mess_a_s' }, - ['-1726933877'] = { Name = 'v_tre_sofa_mess_b_s' }, - ['417935208'] = { Name = 'v_tre_sofa_mess_c_s' }, - ['338562499'] = { Name = 'vacca' }, - ['-140902153'] = { Name = 'vader' }, - ['-1600252419'] = { Name = 'valkyrie' }, - ['1543134283'] = { Name = 'valkyrie2' }, - ['827690619'] = { Name = 'vb_01_bld_fr1' }, - ['1779972143'] = { Name = 'vb_01_bld' }, - ['1245927740'] = { Name = 'vb_01_fence_fizz_01' }, - ['-286678390'] = { Name = 'vb_01_fence_fizz_02' }, - ['-442593292'] = { Name = 'vb_01_fence_fizz_03' }, - ['468914354'] = { Name = 'vb_01_grnd_dtl' }, - ['-1290616747'] = { Name = 'vb_01_grnd_dtl2' }, - ['1697883280'] = { Name = 'vb_01_grnd_dtl3' }, - ['662168984'] = { Name = 'vb_01_grnd_fr00' }, - ['-1251376771'] = { Name = 'vb_01_grnd_fr01' }, - ['-886788877'] = { Name = 'vb_01_grnd_fr02' }, - ['-1338960124'] = { Name = 'vb_01_grnd' }, - ['-545203247'] = { Name = 'vb_01_pool2' }, - ['-1879517034'] = { Name = 'vb_01_shadow_casting' }, - ['-714773355'] = { Name = 'vb_02_b1_fr1' }, - ['-5062353'] = { Name = 'vb_02_b1_fr2' }, - ['-1088700446'] = { Name = 'vb_02_b1_fr4' }, - ['1222089812'] = { Name = 'vb_02_b2_fr3' }, - ['585490198'] = { Name = 'vb_02_bld1' }, - ['-1025048823'] = { Name = 'vb_02_bld2_d3' }, - ['-2060443320'] = { Name = 'vb_02_bld2_dtl' }, - ['880182535'] = { Name = 'vb_02_bld2_dtl001' }, - ['-1531098482'] = { Name = 'vb_02_bld2_rail' }, - ['1849425772'] = { Name = 'vb_02_bld2_rail1' }, - ['211530370'] = { Name = 'vb_02_bld2' }, - ['653166672'] = { Name = 'vb_02_grnd_dtl' }, - ['2142301960'] = { Name = 'vb_02_grnd_dtl004' }, - ['384517307'] = { Name = 'vb_02_grnd_dtl2' }, - ['707357495'] = { Name = 'vb_02_grnd_dtl3' }, - ['-477994733'] = { Name = 'vb_02_grnd' }, - ['2061852045'] = { Name = 'vb_02_hedges_dcl' }, - ['-1437137033'] = { Name = 'vb_02_pool_water' }, - ['-248286905'] = { Name = 'vb_02_props_p_lod' }, - ['1504880644'] = { Name = 'vb_03_b1_ra01_02' }, - ['-1950644989'] = { Name = 'vb_03_b1_ra01' }, - ['1982453091'] = { Name = 'vb_03_b1_ra02_01' }, - ['1685271030'] = { Name = 'vb_03_b1_ra02_02' }, - ['-1062606238'] = { Name = 'vb_03_b1_ra02_03' }, - ['-1360541986'] = { Name = 'vb_03_b1_ra02_04' }, - ['-1658510503'] = { Name = 'vb_03_b1_ra02_05' }, - ['-1174576762'] = { Name = 'vb_03_b1_ra02' }, - ['154346263'] = { Name = 'vb_03_b1_ra03_02' }, - ['974774717'] = { Name = 'vb_03_b1_ra03' }, - ['-328567085'] = { Name = 'vb_03_bld1_cblel' }, - ['-321206068'] = { Name = 'vb_03_bld1' }, - ['1380691615'] = { Name = 'vb_03_bld2_det' }, - ['1015856421'] = { Name = 'vb_03_bld2_e_slod' }, - ['662793062'] = { Name = 'vb_03_bld2_e' }, - ['-1228920779'] = { Name = 'vb_03_bld2_rail' }, - ['1472338846'] = { Name = 'vb_03_bld2_railb' }, - ['-1630262847'] = { Name = 'vb_03_bld2_railc' }, - ['1933955749'] = { Name = 'vb_03_bld2_raild' }, - ['1520804952'] = { Name = 'vb_03_bld2' }, - ['980787464'] = { Name = 'vb_03_cablemesh10745_hvstd' }, - ['-1448905384'] = { Name = 'vb_03_cablemesh10746_hvstd' }, - ['977417908'] = { Name = 'vb_03_cablemesh10747_hvstd' }, - ['1257373829'] = { Name = 'vb_03_cablemesh10748_hvstd' }, - ['-369140251'] = { Name = 'vb_03_cablemesh10749_hvstd' }, - ['354556983'] = { Name = 'vb_03_cablemesh10750_hvstd' }, - ['-999941695'] = { Name = 'vb_03_cablemesh10751_hvstd' }, - ['1752922836'] = { Name = 'vb_03_cablemesh10752_hvstd' }, - ['-658042084'] = { Name = 'vb_03_cablemesh10753_hvstd' }, - ['572854564'] = { Name = 'vb_03_cablemesh10754_hvstd' }, - ['1015227332'] = { Name = 'vb_03_detail' }, - ['-496107355'] = { Name = 'vb_03_dtl_01' }, - ['1228492330'] = { Name = 'vb_03_dtl_03' }, - ['1449126007'] = { Name = 'vb_03_dtl_04' }, - ['748524787'] = { Name = 'vb_03_dtl_05' }, - ['1036728142'] = { Name = 'vb_03_dtl_06' }, - ['-1874404284'] = { Name = 'vb_03_dtl_07' }, - ['-1586921847'] = { Name = 'vb_03_dtl_08' }, - ['1875090238'] = { Name = 'vb_03_dtl_09' }, - ['-1741377952'] = { Name = 'vb_03_dtl_10' }, - ['1845365405'] = { Name = 'vb_03_grnd' }, - ['1793883621'] = { Name = 'vb_04__ladder_002' }, - ['1464293019'] = { Name = 'vb_04__ladder_003' }, - ['218710560'] = { Name = 'vb_04__ladder_004' }, - ['1953962305'] = { Name = 'vb_04__ladder_01_lod003' }, - ['419801285'] = { Name = 'vb_04__ladder_01' }, - ['-978764754'] = { Name = 'vb_04_bld1' }, - ['436962975'] = { Name = 'vb_04_fence_01' }, - ['-1730542538'] = { Name = 'vb_04_fence_02' }, - ['-1367134328'] = { Name = 'vb_04_fence_03' }, - ['2107329981'] = { Name = 'vb_04_fence_04' }, - ['-1955862178'] = { Name = 'vb_04_fence_05' }, - ['-976888303'] = { Name = 'vb_04_fence_06' }, - ['-746817154'] = { Name = 'vb_04_fence_07' }, - ['-1705965784'] = { Name = 'vb_04_fence_08' }, - ['-1476484477'] = { Name = 'vb_04_fence_09' }, - ['412747108'] = { Name = 'vb_04_fence_10' }, - ['759967432'] = { Name = 'vb_04_fence_11' }, - ['2080263211'] = { Name = 'vb_04_fence_12' }, - ['-1901366907'] = { Name = 'vb_04_fence_13' }, - ['329874303'] = { Name = 'vb_04_fence_14' }, - ['-470377446'] = { Name = 'vb_04_fence_15' }, - ['476273964'] = { Name = 'vb_04_grnd_dtl_01' }, - ['707131569'] = { Name = 'vb_04_grnd_dtl_02' }, - ['1895204437'] = { Name = 'vb_04_grnd_dtl_03' }, - ['-1789964387'] = { Name = 'vb_04_grnd' }, - ['-1591590134'] = { Name = 'vb_04_grnd001' }, - ['-1303834894'] = { Name = 'vb_04_grndmore' }, - ['-1867086951'] = { Name = 'vb_04_hedge_decal' }, - ['-1973606837'] = { Name = 'vb_04_prop_fnclink_03c' }, - ['866877360'] = { Name = 'vb_04_stairs' }, - ['1922672533'] = { Name = 'vb_05_a_fr00' }, - ['1547270869'] = { Name = 'vb_05_a_fr01' }, - ['-504920541'] = { Name = 'vb_05_a_fr02' }, - ['-870753657'] = { Name = 'vb_05_a_fr03' }, - ['-8076963'] = { Name = 'vb_05_a_fr04' }, - ['202343424'] = { Name = 'vb_05_b1' }, - ['1444627003'] = { Name = 'vb_05_b1b1_fr' }, - ['57726970'] = { Name = 'vb_05_b1b1' }, - ['1894009534'] = { Name = 'vb_05_b1b2_fr' }, - ['1510310921'] = { Name = 'vb_05_b1b2_fr1det' }, - ['-248827025'] = { Name = 'vb_05_b1b2' }, - ['-1636230026'] = { Name = 'vb_05_b1rail' }, - ['978477189'] = { Name = 'vb_05_b2' }, - ['1121414737'] = { Name = 'vb_05_b2b1_fr1' }, - ['-845642795'] = { Name = 'vb_05_b2b1_fr2' }, - ['-1872086104'] = { Name = 'vb_05_b2b1' }, - ['24792681'] = { Name = 'vb_05_b2b3_fr' }, - ['-1410207049'] = { Name = 'vb_05_b2b3' }, - ['1904463595'] = { Name = 'vb_05_b3' }, - ['1890015736'] = { Name = 'vb_05_b3b1_b' }, - ['-466862473'] = { Name = 'vb_05_b3b1_fr' }, - ['-1190034417'] = { Name = 'vb_05_b3b1' }, - ['-1248347386'] = { Name = 'vb_05_b3b2_fr' }, - ['-1412011627'] = { Name = 'vb_05_b3b2' }, - ['-360769074'] = { Name = 'vb_05_b3rail_lod' }, - ['1890907335'] = { Name = 'vb_05_b3rail' }, - ['515811678'] = { Name = 'vb_05_b4' }, - ['1427969566'] = { Name = 'vb_05_b5' }, - ['970204957'] = { Name = 'vb_05_bandaid_1' }, - ['-405939508'] = { Name = 'vb_05_cablem7_thvy' }, - ['-1156857093'] = { Name = 'vb_05_cornerfence' }, - ['822165070'] = { Name = 'vb_05_db_apart_10' }, - ['565719972'] = { Name = 'vb_05_detail1' }, - ['-1015362999'] = { Name = 'vb_05_detail10' }, - ['1334882479'] = { Name = 'vb_05_detail10a' }, - ['-413376404'] = { Name = 'vb_05_detail10b' }, - ['-551464970'] = { Name = 'vb_05_detail10c' }, - ['-122243900'] = { Name = 'vb_05_detail12' }, - ['366393052'] = { Name = 'vb_05_detail12a' }, - ['-1931369324'] = { Name = 'vb_05_detail12b' }, - ['-1970561048'] = { Name = 'vb_05_detail12c' }, - ['1400793686'] = { Name = 'vb_05_detail1a' }, - ['264769476'] = { Name = 'vb_05_detail2' }, - ['-621344755'] = { Name = 'vb_05_detail2a' }, - ['224390366'] = { Name = 'vb_05_detail2b' }, - ['133292534'] = { Name = 'vb_05_detail2c' }, - ['-96778615'] = { Name = 'vb_05_detail2d' }, - ['721397789'] = { Name = 'vb_05_detail2e' }, - ['1105687554'] = { Name = 'vb_05_detail3' }, - ['1625687909'] = { Name = 'vb_05_detail3a' }, - ['-878191305'] = { Name = 'vb_05_detail3b' }, - ['-591364248'] = { Name = 'vb_05_detail3c' }, - ['-1491987444'] = { Name = 'vb_05_detail3d' }, - ['811913469'] = { Name = 'vb_05_detail4' }, - ['-1242485198'] = { Name = 'vb_05_detail4a' }, - ['-1541502323'] = { Name = 'vb_05_detail4b' }, - ['-669126005'] = { Name = 'vb_05_detail4c' }, - ['-949989104'] = { Name = 'vb_05_detail4d' }, - ['1256162798'] = { Name = 'vb_05_detail5' }, - ['488099282'] = { Name = 'vb_05_detail5a' }, - ['718170431'] = { Name = 'vb_05_detail5b' }, - ['26613455'] = { Name = 'vb_05_detail5c' }, - ['255832610'] = { Name = 'vb_05_detail5d' }, - ['949936493'] = { Name = 'vb_05_detail6' }, - ['-2036903887'] = { Name = 'vb_05_detail6a_gut' }, - ['-2063886360'] = { Name = 'vb_05_detail6a' }, - ['-1924552968'] = { Name = 'vb_05_detail6b_gut' }, - ['-1227818094'] = { Name = 'vb_05_detail6b' }, - ['1870745393'] = { Name = 'vb_05_detail7' }, - ['-316183710'] = { Name = 'vb_05_detail7a' }, - ['-75888633'] = { Name = 'vb_05_detail7b' }, - ['-928865703'] = { Name = 'vb_05_detail7c' }, - ['1183695780'] = { Name = 'vb_05_f' }, - ['-414725179'] = { Name = 'vb_05_fl' }, - ['778000883'] = { Name = 'vb_05_fp' }, - ['-1401630550'] = { Name = 'vb_05_glue' }, - ['294382305'] = { Name = 'vb_05_grnd1' }, - ['-1019424579'] = { Name = 'vb_05_grnd11' }, - ['-1980531'] = { Name = 'vb_05_grnd2' }, - ['2000435093'] = { Name = 'vb_05_grnd22' }, - ['-331866054'] = { Name = 'vb_05_grnd3' }, - ['-1323033496'] = { Name = 'vb_05_grnd33' }, - ['1788091636'] = { Name = 'vb_05_grnd4' }, - ['-659130057'] = { Name = 'vb_05_grnd5' }, - ['-957852261'] = { Name = 'vb_05_grnd6' }, - ['2102959976'] = { Name = 'vb_05_h559_fr1' }, - ['-1415349251'] = { Name = 'vb_05_h559_fr2' }, - ['-1125166459'] = { Name = 'vb_05_house555' }, - ['1940504619'] = { Name = 'vb_05_house559' }, - ['-366224094'] = { Name = 'vb_05_hr01a_fr' }, - ['47586211'] = { Name = 'vb_05_hr01a' }, - ['178311261'] = { Name = 'vb_05_hr01b_fr' }, - ['857013280'] = { Name = 'vb_05_hr01b' }, - ['2018604876'] = { Name = 'vb_05_ivy_core' }, - ['-37732158'] = { Name = 'vb_05_ivy_corelod' }, - ['922338040'] = { Name = 'vb_05_props_p_lod' }, - ['-1773334580'] = { Name = 'vb_05_s_ma_fr' }, - ['-1034565809'] = { Name = 'vb_05_shared_moderna' }, - ['-1615151057'] = { Name = 'vb_05_va02_fr' }, - ['-925911876'] = { Name = 'vb_05_va02_fr1' }, - ['1642096351'] = { Name = 'vb_05_va02_fr2' }, - ['1027087759'] = { Name = 'vb_05_va02_fr3' }, - ['-294202148'] = { Name = 'vb_05_va1_fr1' }, - ['8911102'] = { Name = 'vb_05_va1_fr2' }, - ['-1842504629'] = { Name = 'vb_05_va1_fr3' }, - ['-1526349317'] = { Name = 'vb_05_va1_fr4' }, - ['719375795'] = { Name = 'vb_05_va1_fr5' }, - ['-1685146932'] = { Name = 'vb_05_va3_fr' }, - ['-865681191'] = { Name = 'vb_05_va3_fr001' }, - ['1107317333'] = { Name = 'vb_05_va3_fr001b' }, - ['-223867557'] = { Name = 'vb_05_va3_fr002' }, - ['1626106382'] = { Name = 'vb_05_va3_fr003' }, - ['-63237490'] = { Name = 'vb_05_va6_fr1' }, - ['729411851'] = { Name = 'vb_05_va6_fr2' }, - ['-1164606698'] = { Name = 'vb_05_va7_fr1' }, - ['-320641103'] = { Name = 'vb_05_va7_fr2' }, - ['-1655120133'] = { Name = 'vb_05_vb_16build02' }, - ['1923848854'] = { Name = 'vb_05_villa01_intref' }, - ['963610040'] = { Name = 'vb_05_villa02_intref' }, - ['-1219608972'] = { Name = 'vb_05_villa03_intref' }, - ['1225984714'] = { Name = 'vb_05_villa04_intref' }, - ['-854916158'] = { Name = 'vb_05_villa06' }, - ['-562649447'] = { Name = 'vb_05_villa07' }, - ['-385575574'] = { Name = 'vb_05_villa08_fr' }, - ['809585197'] = { Name = 'vb_05_villa08' }, - ['-798377127'] = { Name = 'vb_07_alley_proxy_dnd' }, - ['-574661906'] = { Name = 'vb_07_alley003' }, - ['-1017922180'] = { Name = 'vb_07_fence_01' }, - ['290035413'] = { Name = 'vb_07_grd_fr1' }, - ['-2088666301'] = { Name = 'vb_07_grd_fr2' }, - ['-2020258588'] = { Name = 'vb_07_grd_proxy_do_not_delete' }, - ['-1210640054'] = { Name = 'vb_07_grd' }, - ['761264897'] = { Name = 'vb_07_ivy' }, - ['-1113201221'] = { Name = 'vb_07_s1_lad' }, - ['396930892'] = { Name = 'vb_07_st1_fr' }, - ['816295479'] = { Name = 'vb_07_st2_fr' }, - ['-867874239'] = { Name = 'vb_07_stores_detail_01' }, - ['-560206098'] = { Name = 'vb_07_stores_detail_02' }, - ['-393215286'] = { Name = 'vb_07_stores_detail_03' }, - ['-94656927'] = { Name = 'vb_07_stores_detail_04' }, - ['-1748868816'] = { Name = 'vb_07_stores_detail_05' }, - ['-1437727161'] = { Name = 'vb_07_stores_detail_06' }, - ['-751478763'] = { Name = 'vb_07_stores_detail_07' }, - ['-433717770'] = { Name = 'vb_07_stores_detail_08' }, - ['1600843902'] = { Name = 'vb_07_stores_detail_09' }, - ['-1243372206'] = { Name = 'vb_07_stores_detail_10' }, - ['195760735'] = { Name = 'vb_07_stores_detail_10b' }, - ['1239534936'] = { Name = 'vb_07_stores_detail_11' }, - ['-1087797515'] = { Name = 'vb_07_stores_proxy_dnd' }, - ['-147349584'] = { Name = 'vb_07_stores1_detail' }, - ['92991865'] = { Name = 'vb_07_stores1' }, - ['694344568'] = { Name = 'vb_07_structures01_proxy_dnd' }, - ['-1822570991'] = { Name = 'vb_07_structures01' }, - ['592560246'] = { Name = 'vb_07_structures02_proxy_dnd' }, - ['-1480790317'] = { Name = 'vb_07_structures02' }, - ['1140407207'] = { Name = 'vb_08_b2_fr1' }, - ['892444184'] = { Name = 'vb_08_b2_fr2' }, - ['-1044241548'] = { Name = 'vb_08_bld1_dtl' }, - ['-770269811'] = { Name = 'vb_08_bld1' }, - ['621478513'] = { Name = 'vb_08_bld2_dtl' }, - ['1011249643'] = { Name = 'vb_08_bld2' }, - ['653813816'] = { Name = 'vb_08_detail_fade1' }, - ['-1548931225'] = { Name = 'vb_08_fence_01' }, - ['1442681865'] = { Name = 'vb_08_fence_02' }, - ['-1000804162'] = { Name = 'vb_08_fence_03' }, - ['-331300719'] = { Name = 'vb_08_fence_04' }, - ['-627139251'] = { Name = 'vb_08_fence_05' }, - ['-1863022090'] = { Name = 'vb_08_fence_06' }, - ['-11508048'] = { Name = 'vb_08_fence_07' }, - ['-539219920'] = { Name = 'vb_08_fence_08' }, - ['-843512854'] = { Name = 'vb_08_fence_09' }, - ['160595660'] = { Name = 'vb_08_fence_10' }, - ['-655843975'] = { Name = 'vb_08_fence_11' }, - ['-1043241360'] = { Name = 'vb_08_g_fr01' }, - ['691984440'] = { Name = 'vb_08_grand_dtl4' }, - ['-1771289466'] = { Name = 'vb_08_grnd_dtl1' }, - ['-784025022'] = { Name = 'vb_08_grnd_dtl2' }, - ['-1013244177'] = { Name = 'vb_08_grnd_dtl3' }, - ['-1989468939'] = { Name = 'vb_08_grnd' }, - ['-1937430268'] = { Name = 'vb_08_trailer3_detailfade' }, - ['-229599834'] = { Name = 'vb_08_trellis_01' }, - ['-1464480946'] = { Name = 'vb_08_vb08_rf_fr1' }, - ['673908596'] = { Name = 'vb_08_water' }, - ['2079441447'] = { Name = 'vb_09__ladder_002' }, - ['849424259'] = { Name = 'vb_09__ladder_003' }, - ['1154348881'] = { Name = 'vb_09__ladder_01' }, - ['-643288414'] = { Name = 'vb_09_bld01_dtl' }, - ['594894925'] = { Name = 'vb_09_bld02_dtl' }, - ['-778183467'] = { Name = 'vb_09_build_em_lod' }, - ['1704134999'] = { Name = 'vb_09_build_em' }, - ['-1862019966'] = { Name = 'vb_09_build01' }, - ['-1094471675'] = { Name = 'vb_09_build02' }, - ['1235864975'] = { Name = 'vb_09_fence' }, - ['-264400355'] = { Name = 'vb_09_fr' }, - ['-1932385565'] = { Name = 'vb_09_ground' }, - ['-2102241192'] = { Name = 'vb_09_hedges_dcl' }, - ['-1371668286'] = { Name = 'vb_10_build1' }, - ['-612541632'] = { Name = 'vb_10_build2' }, - ['1995586312'] = { Name = 'vb_10_detail1' }, - ['-1142438658'] = { Name = 'vb_10_detail2' }, - ['-1286622258'] = { Name = 'vb_10_detail4' }, - ['-2062231719'] = { Name = 'vb_10_detail5' }, - ['216477516'] = { Name = 'vb_10_fr00' }, - ['-158727534'] = { Name = 'vb_10_fr01' }, - ['731941643'] = { Name = 'vb_10_ground' }, - ['-1881905268'] = { Name = 'vb_10_hedge_dcl' }, - ['-1807389329'] = { Name = 'vb_10_props_combo_dslod' }, - ['-1700306637'] = { Name = 'vb_17__ladder_01' }, - ['405329189'] = { Name = 'vb_17_b1' }, - ['-1981630301'] = { Name = 'vb_17_b2' }, - ['828991333'] = { Name = 'vb_17_dc01' }, - ['184556179'] = { Name = 'vb_17_dc02' }, - ['435468412'] = { Name = 'vb_17_dc03' }, - ['1738757080'] = { Name = 'vb_17_dc04' }, - ['-390736385'] = { Name = 'vb_17_dc05' }, - ['-1024161155'] = { Name = 'vb_17_dc06' }, - ['-737727326'] = { Name = 'vb_17_dc07' }, - ['508674358'] = { Name = 'vb_17_dc08' }, - ['-1414865942'] = { Name = 'vb_17_dc09' }, - ['26839342'] = { Name = 'vb_17_dc10' }, - ['280733554'] = { Name = 'vb_17_dc11' }, - ['-55494766'] = { Name = 'vb_17_fizz_fence_01' }, - ['630688094'] = { Name = 'vb_17_fizz_fence_02' }, - ['375253739'] = { Name = 'vb_17_fizz_fence_03' }, - ['-467846430'] = { Name = 'vb_17_grnd' }, - ['1773722434'] = { Name = 'vb_17_rail_01' }, - ['1475590072'] = { Name = 'vb_17_rail_02' }, - ['214475107'] = { Name = 'vb_17_rail_03' }, - ['2071559875'] = { Name = 'vb_17_rail_04' }, - ['-54820523'] = { Name = 'vb_17_rail_05' }, - ['1796890129'] = { Name = 'vb_17_rail_06' }, - ['252642249'] = { Name = 'vb_17_rail_07_l1' }, - ['540428362'] = { Name = 'vb_17_rail_07' }, - ['246359356'] = { Name = 'vb_17_rail_08' }, - ['-1214122209'] = { Name = 'vb_17_rail_09' }, - ['65015986'] = { Name = 'vb_17_rail_11' }, - ['590303056'] = { Name = 'vb_17_rail_12' }, - ['1769233369'] = { Name = 'vb_17_rail_13' }, - ['1992455797'] = { Name = 'vb_17_rail_14' }, - ['-1643335346'] = { Name = 'vb_17_stores_wdetail_01' }, - ['-1145115470'] = { Name = 'vb_17_stores_wdetail_02' }, - ['-1070282282'] = { Name = 'vb_17_stores' }, - ['1310161941'] = { Name = 'vb_18_bld1' }, - ['225393115'] = { Name = 'vb_18_bld6_detail01' }, - ['-1274503153'] = { Name = 'vb_18_bld6_fnc' }, - ['-146583954'] = { Name = 'vb_18_bld6' }, - ['-397858998'] = { Name = 'vb_18_detail' }, - ['-1238737815'] = { Name = 'vb_18_detail2' }, - ['-908491829'] = { Name = 'vb_18_detail3' }, - ['-1620207921'] = { Name = 'vb_18_fr1' }, - ['-435051498'] = { Name = 'vb_18_fr2' }, - ['-120075870'] = { Name = 'vb_18_fr3' }, - ['-1160092042'] = { Name = 'vb_18_ground' }, - ['-2044786472'] = { Name = 'vb_18_props_combo_dslod' }, - ['-1813684830'] = { Name = 'vb_19_bld1' }, - ['675317334'] = { Name = 'vb_19_bld2' }, - ['-651752947'] = { Name = 'vb_19_fr1' }, - ['1158078919'] = { Name = 'vb_19_fr2' }, - ['1698770001'] = { Name = 'vb_19_fr3_008' }, - ['976141565'] = { Name = 'vb_19_fr3_010' }, - ['522747658'] = { Name = 'vb_19_fr3_1' }, - ['-415438218'] = { Name = 'vb_19_fr3_10' }, - ['-712521972'] = { Name = 'vb_19_fr3_11' }, - ['-2083675239'] = { Name = 'vb_19_fr3_12' }, - ['225696673'] = { Name = 'vb_19_fr3_2' }, - ['-2140552837'] = { Name = 'vb_19_fr3_3' }, - ['1998237405'] = { Name = 'vb_19_fr3_4' }, - ['1676413056'] = { Name = 'vb_19_fr3_5' }, - ['1236390940'] = { Name = 'vb_19_fr3_6' }, - ['-919121131'] = { Name = 'vb_19_fr3_7' }, - ['-1143064477'] = { Name = 'vb_19_fr3_8' }, - ['-1397515762'] = { Name = 'vb_19_fr3_9' }, - ['-183654188'] = { Name = 'vb_19_ground_dtl' }, - ['1893865261'] = { Name = 'vb_19_ground_dtl2' }, - ['2134160338'] = { Name = 'vb_19_ground_dtl3' }, - ['697148193'] = { Name = 'vb_19_ground' }, - ['1423351787'] = { Name = 'vb_19_ladders_02' }, - ['1644968534'] = { Name = 'vb_19_ladders_03' }, - ['-1748851262'] = { Name = 'vb_19_ladders_04' }, - ['-784728900'] = { Name = 'vb_19_ladders' }, - ['-2003673842'] = { Name = 'vb_19_ladders01' }, - ['-2108073141'] = { Name = 'vb_19_maskshopint' }, - ['730043649'] = { Name = 'vb_19_masksshop' }, - ['955028591'] = { Name = 'vb_19_nw_masks' }, - ['-454850497'] = { Name = 'vb_19_nw_masks003' }, - ['-895053803'] = { Name = 'vb_19_nw_masks01' }, - ['-13045791'] = { Name = 'vb_19_ter' }, - ['361071602'] = { Name = 'vb_20_bld1' }, - ['-2027886809'] = { Name = 'vb_20_bld2' }, - ['-1946780369'] = { Name = 'vb_20_bld3_dtl' }, - ['1069045847'] = { Name = 'vb_20_bld3' }, - ['421640171'] = { Name = 'vb_20_details' }, - ['-854624641'] = { Name = 'vb_20_details2' }, - ['2140265349'] = { Name = 'vb_20_details3' }, - ['-1320173824'] = { Name = 'vb_20_details4' }, - ['1876314111'] = { Name = 'vb_20_fizza_01' }, - ['1982822636'] = { Name = 'vb_20_fizza_02_lod' }, - ['-1660835267'] = { Name = 'vb_20_fizza_10' }, - ['1998759973'] = { Name = 'vb_20_fr01' }, - ['1703761524'] = { Name = 'vb_20_ground' }, - ['793667605'] = { Name = 'vb_20_hdg' }, - ['950818955'] = { Name = 'vb_20_vb_20_lod' }, - ['1573289357'] = { Name = 'vb_20_vb_20a_lod' }, - ['-630472294'] = { Name = 'vb_20_vb_20b_lod' }, - ['1441529528'] = { Name = 'vb_21_build1_cloth2_lod' }, - ['1497909187'] = { Name = 'vb_21_build1' }, - ['2078670404'] = { Name = 'vb_21_build2_cloth1_lod' }, - ['-1727109690'] = { Name = 'vb_21_build2_cloth3_lod' }, - ['131212504'] = { Name = 'vb_21_build2' }, - ['1648888174'] = { Name = 'vb_21_detail_002' }, - ['-1827738885'] = { Name = 'vb_21_detail_003' }, - ['-1422833778'] = { Name = 'vb_21_detail' }, - ['-2037496430'] = { Name = 'vb_21_fr1' }, - ['1415672833'] = { Name = 'vb_21_hedge_dcl' }, - ['1103990866'] = { Name = 'vb_21_nw_dcls' }, - ['-1005186882'] = { Name = 'vb_22__ladder_002' }, - ['-845076539'] = { Name = 'vb_22__ladder_01' }, - ['457326070'] = { Name = 'vb_22_b1_fr1' }, - ['-433008819'] = { Name = 'vb_22_b1' }, - ['-1842764428'] = { Name = 'vb_22_b2_fr1' }, - ['-2131950853'] = { Name = 'vb_22_b2_fr2' }, - ['-1403266140'] = { Name = 'vb_22_b2' }, - ['-691916688'] = { Name = 'vb_22_b3' }, - ['-1770644778'] = { Name = 'vb_22_dc01' }, - ['-1448066742'] = { Name = 'vb_22_dc02' }, - ['-604822065'] = { Name = 'vb_22_dc03' }, - ['-852752319'] = { Name = 'vb_22_dc04' }, - ['-66689547'] = { Name = 'vb_22_dc05' }, - ['-313833345'] = { Name = 'vb_22_dc06' }, - ['527903962'] = { Name = 'vb_22_dc07' }, - ['313856854'] = { Name = 'vb_22_dc08' }, - ['1155266467'] = { Name = 'vb_22_dc09' }, - ['-585123398'] = { Name = 'vb_22_terrain' }, - ['1083342028'] = { Name = 'vb_23_bld1' }, - ['247568683'] = { Name = 'vb_23_bld2' }, - ['274228054'] = { Name = 'vb_23_decal_01' }, - ['-485619518'] = { Name = 'vb_23_decal_02' }, - ['820749436'] = { Name = 'vb_23_decal_03' }, - ['-597226087'] = { Name = 'vb_23_detail_01' }, - ['586299284'] = { Name = 'vb_23_detail_01pip' }, - ['-1575282430'] = { Name = 'vb_23_detail_02' }, - ['-853581034'] = { Name = 'vb_23_detail_02pip' }, - ['-1148169052'] = { Name = 'vb_23_grnd' }, - ['-1687312623'] = { Name = 'vb_23_hedge_decal' }, - ['1590604376'] = { Name = 'vb_24_ao_fadeout_bugfix' }, - ['1220709834'] = { Name = 'vb_24_bld1' }, - ['1853794624'] = { Name = 'vb_24_bld2_bb' }, - ['1907653369'] = { Name = 'vb_24_bld2_detail' }, - ['855099259'] = { Name = 'vb_24_bld2_emit' }, - ['-1706371020'] = { Name = 'vb_24_bld2_fenc_01' }, - ['-970124654'] = { Name = 'vb_24_bld2_fenc_02_lod' }, - ['1908705064'] = { Name = 'vb_24_bld2_fenc_02' }, - ['-813698125'] = { Name = 'vb_24_bld2_text' }, - ['1916068014'] = { Name = 'vb_24_bld2' }, - ['-1672754341'] = { Name = 'vb_24_detail' }, - ['-1422587634'] = { Name = 'vb_24_detail1' }, - ['-1845045586'] = { Name = 'vb_24_detail2' }, - ['-1614712285'] = { Name = 'vb_24_detail3' }, - ['-1988533070'] = { Name = 'vb_24_grille' }, - ['914242378'] = { Name = 'vb_24_ground' }, - ['-1709773087'] = { Name = 'vb_24_l_pls' }, - ['2135605708'] = { Name = 'vb_24_ld_lod' }, - ['-831821402'] = { Name = 'vb_24_ld' }, - ['-1393512573'] = { Name = 'vb_24_lddrs' }, - ['954754411'] = { Name = 'vb_24_pst' }, - ['-1691530067'] = { Name = 'vb_24_rls' }, - ['-2022991477'] = { Name = 'vb_25_dc1' }, - ['-1188397816'] = { Name = 'vb_25_dc2' }, - ['1173788318'] = { Name = 'vb_25_dc5' }, - ['1604897282'] = { Name = 'vb_25_dc6' }, - ['260221367'] = { Name = 'vb_25_dc7' }, - ['-396730925'] = { Name = 'vb_25_det' }, - ['1291545698'] = { Name = 'vb_25_f_detail' }, - ['-1566524593'] = { Name = 'vb_25_f' }, - ['-1631703672'] = { Name = 'vb_25_hdg' }, - ['-942522836'] = { Name = 'vb_25_mall' }, - ['1178477429'] = { Name = 'vb_25_mallfnce1' }, - ['-1632623456'] = { Name = 'vb_25_mallground' }, - ['1863689878'] = { Name = 'vb_25_rails_hd' }, - ['-728277721'] = { Name = 'vb_25_rails_hd01' }, - ['97730466'] = { Name = 'vb_25_rails_hd02' }, - ['-266857428'] = { Name = 'vb_25_rails_hd03' }, - ['557774457'] = { Name = 'vb_25_rails_hd04' }, - ['262624074'] = { Name = 'vb_25_rails_hd05' }, - ['-1688279229'] = { Name = 'vb_25_rails_hd06' }, - ['-1914975171'] = { Name = 'vb_25_rails_hd07' }, - ['2129210968'] = { Name = 'vb_25_rails_hd08' }, - ['1830718147'] = { Name = 'vb_25_rails_hd09' }, - ['2038791551'] = { Name = 'vb_25_rails2_hd' }, - ['1329856758'] = { Name = 'vb_25_rails2_hd01' }, - ['1337185835'] = { Name = 'vb_25_rest_details' }, - ['547278822'] = { Name = 'vb_25_rest' }, - ['-1819861621'] = { Name = 'vb_25_restground' }, - ['-926316654'] = { Name = 'vb_25_shd_box' }, - ['-175546077'] = { Name = 'vb_25_w' }, - ['483570312'] = { Name = 'vb_26_build3_d_fizz' }, - ['1227524948'] = { Name = 'vb_26_build3' }, - ['507539729'] = { Name = 'vb_26_detail' }, - ['-1190685700'] = { Name = 'vb_26_detail1' }, - ['-984961918'] = { Name = 'vb_26_detail2' }, - ['-730182943'] = { Name = 'vb_26_detail3' }, - ['915977709'] = { Name = 'vb_26_lll' }, - ['1278859458'] = { Name = 'vb_26_r_hd' }, - ['209438882'] = { Name = 'vb_27__ladder_002' }, - ['1897642643'] = { Name = 'vb_27__ladder_01' }, - ['316948397'] = { Name = 'vb_27_buildings' }, - ['-998922014'] = { Name = 'vb_27_buildingsa' }, - ['927460'] = { Name = 'vb_27_detail' }, - ['-55619850'] = { Name = 'vb_27_detaildente' }, - ['-378635960'] = { Name = 'vb_27_ground' }, - ['6480179'] = { Name = 'vb_27_rails' }, - ['-450385700'] = { Name = 'vb_27_rails01' }, - ['-2030134476'] = { Name = 'vb_28__decal004' }, - ['726518452'] = { Name = 'vb_28_build1' }, - ['-662952686'] = { Name = 'vb_28_build2' }, - ['367903966'] = { Name = 'vb_28_detail_02' }, - ['368996790'] = { Name = 'vb_28_detail' }, - ['1937581456'] = { Name = 'vb_28_detail3' }, - ['-182277923'] = { Name = 'vb_28_detail4' }, - ['477362047'] = { Name = 'vb_28_detail5' }, - ['716215288'] = { Name = 'vb_28_detail6' }, - ['1388867617'] = { Name = 'vb_28_graflodnew' }, - ['-2054860616'] = { Name = 'vb_28_ladder01' }, - ['1961308028'] = { Name = 'vb_28_ladder02' }, - ['901242548'] = { Name = 'vb_28_railsb_01' }, - ['2095705371'] = { Name = 'vb_28_railsb_02' }, - ['1183350873'] = { Name = 'vb_28_railsb_03' }, - ['-975536385'] = { Name = 'vb_28_railsb_04' }, - ['-1885924743'] = { Name = 'vb_28_railsb_05' }, - ['-460918731'] = { Name = 'vb_28_railsb' }, - ['-739483493'] = { Name = 'vb_29_grille_b' }, - ['-130280507'] = { Name = 'vb_29_grille_b01' }, - ['123253246'] = { Name = 'vb_29_grille_b02' }, - ['-653339285'] = { Name = 'vb_29_grille_b03' }, - ['1153316390'] = { Name = 'vb_29_grille' }, - ['-159659315'] = { Name = 'vb_29_grille01' }, - ['80602993'] = { Name = 'vb_29_grille02' }, - ['-753925130'] = { Name = 'vb_29_grille03' }, - ['1395753999'] = { Name = 'vb_29_grille04' }, - ['1942200391'] = { Name = 'vb_29_ground_dcl' }, - ['226508873'] = { Name = 'vb_29_ground_dcl2' }, - ['-319815895'] = { Name = 'vb_29_ground_dcl3' }, - ['-1155458164'] = { Name = 'vb_29_ground_dcl4' }, - ['-2008304158'] = { Name = 'vb_29_ground_dcl5' }, - ['-343843751'] = { Name = 'vb_29_ground' }, - ['-1799881709'] = { Name = 'vb_29_market_det' }, - ['-1394849469'] = { Name = 'vb_29_market_det001' }, - ['-2006417316'] = { Name = 'vb_29_market_det003' }, - ['371366902'] = { Name = 'vb_29_market_det004' }, - ['105905233'] = { Name = 'vb_29_market_det005' }, - ['-481905089'] = { Name = 'vb_29_market_det007' }, - ['-855143999'] = { Name = 'vb_29_market_det008' }, - ['1191200539'] = { Name = 'vb_29_market_shuttersa_lod' }, - ['686908348'] = { Name = 'vb_29_market_shuttersa' }, - ['-1917718486'] = { Name = 'vb_29_market_shuttersb_lod' }, - ['446416657'] = { Name = 'vb_29_market_shuttersb' }, - ['1220837556'] = { Name = 'vb_29_marketwalls' }, - ['1429854673'] = { Name = 'vb_29_marketwalls2' }, - ['963998493'] = { Name = 'vb_29_masts' }, - ['-1137836482'] = { Name = 'vb_29_shuttersopena_lod' }, - ['-1343156802'] = { Name = 'vb_29_shuttersopena' }, - ['1765984474'] = { Name = 'vb_29_shuttersopenb_lod' }, - ['-510234360'] = { Name = 'vb_29_shuttersopenb' }, - ['-605615401'] = { Name = 'vb_29_stall_01' }, - ['-1393258810'] = { Name = 'vb_29_stall_01b' }, - ['223145378'] = { Name = 'vb_29_stall_02' }, - ['-1035519285'] = { Name = 'vb_29_stall_02a' }, - ['-823732897'] = { Name = 'vb_29_w_brr_det' }, - ['-16594229'] = { Name = 'vb_29_w_brr' }, - ['698160363'] = { Name = 'vb_30__ladder_002' }, - ['445085376'] = { Name = 'vb_30__ladder_003' }, - ['1568464718'] = { Name = 'vb_30_bld1_woodstruc_lod' }, - ['-166029102'] = { Name = 'vb_30_bld1_woodstruc' }, - ['1176586107'] = { Name = 'vb_30_bld1' }, - ['-2117451445'] = { Name = 'vb_30_bld1a' }, - ['-224943092'] = { Name = 'vb_30_bld2c' }, - ['-2022516370'] = { Name = 'vb_30_bld2test' }, - ['498095064'] = { Name = 'vb_30_decal1' }, - ['203534523'] = { Name = 'vb_30_decal2' }, - ['-980442224'] = { Name = 'vb_30_decal3' }, - ['-1217984705'] = { Name = 'vb_30_decal4' }, - ['-384996725'] = { Name = 'vb_30_decal5' }, - ['371075145'] = { Name = 'vb_30_detail1' }, - ['76809525'] = { Name = 'vb_30_detail2' }, - ['1538195681'] = { Name = 'vb_30_detail3_stairs' }, - ['-70814820'] = { Name = 'vb_30_detail3' }, - ['-402502638'] = { Name = 'vb_30_detail4' }, - ['-1492817272'] = { Name = 'vb_30_floyd_emissive' }, - ['-644321229'] = { Name = 'vb_30_floyd_emissive2' }, - ['1285182522'] = { Name = 'vb_30_floyd_emissivemurder_01' }, - ['421763414'] = { Name = 'vb_30_ground' }, - ['1415974920'] = { Name = 'vb_30_hedges_dcl' }, - ['725741943'] = { Name = 'vb_30_ladder_05' }, - ['1832690753'] = { Name = 'vb_30_ladder' }, - ['-1859494018'] = { Name = 'vb_30_mission_afterdeath_ipl' }, - ['1156857486'] = { Name = 'vb_30_mission_afterdeath_ipl2' }, - ['-1860937765'] = { Name = 'vb_30_raildetail' }, - ['1230296866'] = { Name = 'vb_30_rails' }, - ['-1381449219'] = { Name = 'vb_30_shd' }, - ['-623442521'] = { Name = 'vb_30_shutters_slod' }, - ['500487298'] = { Name = 'vb_30_shutters' }, - ['806473936'] = { Name = 'vb_30_windows' }, - ['-1015811998'] = { Name = 'vb_31_build1' }, - ['-1246669603'] = { Name = 'vb_31_build2' }, - ['693999615'] = { Name = 'vb_31_dcl' }, - ['108205748'] = { Name = 'vb_31_dcl2' }, - ['297151802'] = { Name = 'vb_31_dcl3' }, - ['2069211346'] = { Name = 'vb_31_dtl' }, - ['619380024'] = { Name = 'vb_31_ground' }, - ['986790280'] = { Name = 'vb_31_hedge_rnd_b_mm003' }, - ['691410514'] = { Name = 'vb_31_hedge_rnd_b_mm004' }, - ['157158237'] = { Name = 'vb_31_rails' }, - ['-514543928'] = { Name = 'vb_31_railsb_lod' }, - ['-1959459549'] = { Name = 'vb_31_railsb' }, - ['-984099672'] = { Name = 'vb_31_railsb02' }, - ['1916939902'] = { Name = 'vb_31_railsb03' }, - ['-1189667444'] = { Name = 'vb_31_railsb04_lod' }, - ['1634831581'] = { Name = 'vb_31_railsb04' }, - ['-2050426297'] = { Name = 'vb_31_railse' }, - ['-408629410'] = { Name = 'vb_31_railse01' }, - ['482720159'] = { Name = 'vb_31_railse02' }, - ['167744531'] = { Name = 'vb_31_railse03' }, - ['1126401626'] = { Name = 'vb_31_railse04' }, - ['828236495'] = { Name = 'vb_31_railse05' }, - ['1776288018'] = { Name = 'vb_32_build1' }, - ['877794811'] = { Name = 'vb_32_build2' }, - ['1300318297'] = { Name = 'vb_32_build3' }, - ['699576008'] = { Name = 'vb_32_decal1' }, - ['1290073388'] = { Name = 'vb_32_decal2' }, - ['-209730973'] = { Name = 'vb_32_decal3' }, - ['731384362'] = { Name = 'vb_32_detail1' }, - ['1514104696'] = { Name = 'vb_32_detail2' }, - ['1238222485'] = { Name = 'vb_32_detail3' }, - ['-787430555'] = { Name = 'vb_32_ground' }, - ['-907987458'] = { Name = 'vb_32_hedge_ov' }, - ['-766576041'] = { Name = 'vb_32_rails01' }, - ['-14268105'] = { Name = 'vb_32_rails01a' }, - ['290909592'] = { Name = 'vb_32_rails01b' }, - ['-194006070'] = { Name = 'vb_32_rails01c' }, - ['-1539760596'] = { Name = 'vb_32_rails02' }, - ['1330148440'] = { Name = 'vb_32_rails03' }, - ['-1259086908'] = { Name = 'vb_32_railsb' }, - ['1720207380'] = { Name = 'vb_32_railsb01' }, - ['-1026230394'] = { Name = 'vb_32_railsc' }, - ['1373537296'] = { Name = 'vb_32_railsc01' }, - ['1020549628'] = { Name = 'vb_32_railsc02' }, - ['2043143533'] = { Name = 'vb_32_railsd' }, - ['-753353059'] = { Name = 'vb_32_railsd01' }, - ['-617046319'] = { Name = 'vb_33_bld1_balcony2' }, - ['-1207233238'] = { Name = 'vb_33_bld1' }, - ['-466073153'] = { Name = 'vb_33_bld2_balcony_2' }, - ['1047137685'] = { Name = 'vb_33_bld2_balcony' }, - ['480873070'] = { Name = 'vb_33_bld2_balcony6' }, - ['-1872110520'] = { Name = 'vb_33_bld2_fence' }, - ['417818214'] = { Name = 'vb_33_bld2_fizz_detail' }, - ['-67372130'] = { Name = 'vb_33_bld2_railing_4' }, - ['-849264682'] = { Name = 'vb_33_bld2' }, - ['-512946892'] = { Name = 'vb_33_detail_fence_01' }, - ['1010657627'] = { Name = 'vb_33_detail007' }, - ['-1983180453'] = { Name = 'vb_33_detail1' }, - ['-527778087'] = { Name = 'vb_33_detail2' }, - ['-1373382132'] = { Name = 'vb_33_detail3' }, - ['-512737116'] = { Name = 'vb_33_detail4' }, - ['-805233210'] = { Name = 'vb_33_detail5' }, - ['83068842'] = { Name = 'vb_33_detail6' }, - ['-985962163'] = { Name = 'vb_33_fakeshops' }, - ['-543880134'] = { Name = 'vb_33_fakeshops2' }, - ['-347058985'] = { Name = 'vb_33_garage_stuff' }, - ['-782958903'] = { Name = 'vb_33_garageint' }, - ['418703304'] = { Name = 'vb_33_grnd' }, - ['-524556645'] = { Name = 'vb_33_pagoda_1' }, - ['-1299871185'] = { Name = 'vb_33_pagoda_2' }, - ['676885979'] = { Name = 'vb_33_pagoda_3' }, - ['-455333049'] = { Name = 'vb_33_props_dsscfed' }, - ['-1693269610'] = { Name = 'vb_33_props_dsscfst' }, - ['1628737836'] = { Name = 'vb_33_props_fprop_lod' }, - ['1504925282'] = { Name = 'vb_33_shutters_slod' }, - ['1765930131'] = { Name = 'vb_33_shutters' }, - ['1179287369'] = { Name = 'vb_33_wrails' }, - ['230799171'] = { Name = 'vb_33detailint' }, - ['1675780056'] = { Name = 'vb_34_bayb_emis' }, - ['-771245810'] = { Name = 'vb_34_baybuild_antenna' }, - ['-1077658260'] = { Name = 'vb_34_baybuild' }, - ['-494077656'] = { Name = 'vb_34_beach_blend' }, - ['134613817'] = { Name = 'vb_34_beach_blend2' }, - ['1807129895'] = { Name = 'vb_34_beachn_01_wet' }, - ['1440389790'] = { Name = 'vb_34_beachn_01' }, - ['1634606817'] = { Name = 'vb_34_beachn_02_shark_lod' }, - ['1125056677'] = { Name = 'vb_34_beachn_02_shark' }, - ['1039960437'] = { Name = 'vb_34_beachn_02_wet' }, - ['-1010633103'] = { Name = 'vb_34_beachn_03' }, - ['1017661174'] = { Name = 'vb_34_beachn_7' }, - ['-2037354014'] = { Name = 'vb_34_beachs_01_wet' }, - ['117628996'] = { Name = 'vb_34_beachs_01' }, - ['-1191893634'] = { Name = 'vb_34_beachs_02_wet' }, - ['-184894412'] = { Name = 'vb_34_beachs_02' }, - ['-56706985'] = { Name = 'vb_34_beachs_05_det' }, - ['575300362'] = { Name = 'vb_34_beachs_05a' }, - ['387468454'] = { Name = 'vb_34_beachs_05b' }, - ['-1753787452'] = { Name = 'vb_34_bike' }, - ['-931004185'] = { Name = 'vb_34_bluegymfence_01' }, - ['-941686863'] = { Name = 'vb_34_bluegymfence_02' }, - ['-1249027314'] = { Name = 'vb_34_bluegymfence_03' }, - ['-1553254710'] = { Name = 'vb_34_bluegymfence_04' }, - ['-1859218863'] = { Name = 'vb_34_bluegymfence_05' }, - ['218532347'] = { Name = 'vb_34_bluegymfence_06' }, - ['-87726723'] = { Name = 'vb_34_bluegymfence_07' }, - ['-562963152'] = { Name = 'vb_34_cablemesh51277_tstd' }, - ['-2064810363'] = { Name = 'vb_34_cablemesh51278_tstd' }, - ['454883103'] = { Name = 'vb_34_cablemesh51279_tstd' }, - ['1973069482'] = { Name = 'vb_34_detail_00' }, - ['1073713430'] = { Name = 'vb_34_detail_00b' }, - ['1321752834'] = { Name = 'vb_34_detail_03' }, - ['711168057'] = { Name = 'vb_34_detail_05' }, - ['131123988'] = { Name = 'vb_34_detail_07' }, - ['1408218042'] = { Name = 'vb_34_detail_07b' }, - ['-478281105'] = { Name = 'vb_34_detail_09' }, - ['74892608'] = { Name = 'vb_34_detail_16' }, - ['314466767'] = { Name = 'vb_34_detail_17' }, - ['-727489114'] = { Name = 'vb_34_detail_18' }, - ['-1177834293'] = { Name = 'vb_34_detail_21' }, - ['356480566'] = { Name = 'vb_34_graff_boat_l1' }, - ['-1243007113'] = { Name = 'vb_34_graff_boat_l2' }, - ['985678499'] = { Name = 'vb_34_graff_boat' }, - ['1942495553'] = { Name = 'vb_34_graff_wall' }, - ['-421484305'] = { Name = 'vb_34_handgraf_01' }, - ['-1262838282'] = { Name = 'vb_34_hut_01' }, - ['-495814299'] = { Name = 'vb_34_hut_02' }, - ['-921352533'] = { Name = 'vb_34_hut_03' }, - ['1994728012'] = { Name = 'vb_34_hut_04' }, - ['-1739720892'] = { Name = 'vb_34_lg_hut01_closed' }, - ['1329356640'] = { Name = 'vb_34_lg_hut01_open' }, - ['-1594474697'] = { Name = 'vb_34_lg_hut02_closed' }, - ['1896665674'] = { Name = 'vb_34_lg_hut02_open' }, - ['1586227284'] = { Name = 'vb_34_lg_hut03_closed' }, - ['1092547932'] = { Name = 'vb_34_lg_hut03_open' }, - ['-577769493'] = { Name = 'vb_34_lg_hut04_closed' }, - ['1749932667'] = { Name = 'vb_34_lg_hut04_open' }, - ['1281192411'] = { Name = 'vb_34_lghut_closed' }, - ['1335722716'] = { Name = 'vb_34_lghut_closed001' }, - ['1708699474'] = { Name = 'vb_34_lghut_closed002' }, - ['-446550421'] = { Name = 'vb_34_lghut_closed003' }, - ['51319887'] = { Name = 'vb_34_musclebeach' }, - ['346962445'] = { Name = 'vb_34_new_rails' }, - ['-1706090523'] = { Name = 'vb_34_new_rails01' }, - ['-1553845749'] = { Name = 'vb_34_new_rails02' }, - ['-170502418'] = { Name = 'vb_34_new_rails03' }, - ['2143283911'] = { Name = 'vb_34_new_rails04' }, - ['-1315147254'] = { Name = 'vb_34_park' }, - ['48343216'] = { Name = 'vb_34_parkn' }, - ['-83021047'] = { Name = 'vb_34_policestation' }, - ['1962187757'] = { Name = 'vb_34_props_combo01_01_lod' }, - ['253803366'] = { Name = 'vb_34_props_combo01_02_lod' }, - ['491266392'] = { Name = 'vb_34_props_combo01_03_lod' }, - ['-1147009310'] = { Name = 'vb_34_props_combo01_04_lod' }, - ['1139442670'] = { Name = 'vb_34_props_towels1' }, - ['1847711836'] = { Name = 'vb_34_props_towels2' }, - ['-1674890130'] = { Name = 'vb_34_props_towels3' }, - ['-1834704459'] = { Name = 'vb_34_props_towels4' }, - ['1743473731'] = { Name = 'vb_34_props_towels5' }, - ['-1584702371'] = { Name = 'vb_34_railing_01_lod' }, - ['1625930192'] = { Name = 'vb_34_railing_01' }, - ['634381831'] = { Name = 'vb_34_railing_0122' }, - ['1924488551'] = { Name = 'vb_34_railing_02' }, - ['-1894256295'] = { Name = 'vb_34_railing_022' }, - ['-2095645142'] = { Name = 'vb_34_railing_03' }, - ['-1251722603'] = { Name = 'vb_34_railing_032' }, - ['313892201'] = { Name = 'vb_34_railing_04' }, - ['-1992957039'] = { Name = 'vb_34_railing_042' }, - ['664192811'] = { Name = 'vb_34_railing_05' }, - ['-1618637692'] = { Name = 'vb_34_railing_052' }, - ['959179349'] = { Name = 'vb_34_railing_06' }, - ['-1920112144'] = { Name = 'vb_34_railing_062' }, - ['-902656928'] = { Name = 'vb_34_railing_07' }, - ['-592268960'] = { Name = 'vb_34_railing_08' }, - ['-274901195'] = { Name = 'vb_34_railing_09' }, - ['378054127'] = { Name = 'vb_34_railing_10' }, - ['87753556'] = { Name = 'vb_34_railing_11' }, - ['-1094355354'] = { Name = 'vb_34_railing_15' }, - ['-1333831206'] = { Name = 'vb_34_railing_16' }, - ['2118333617'] = { Name = 'vb_34_reccentre2' }, - ['-2023115498'] = { Name = 'vb_34_sculpture' }, - ['-1903172253'] = { Name = 'vb_34_seawall_nw_det' }, - ['-1465244627'] = { Name = 'vb_34_seawall_nw_det01' }, - ['-1763475296'] = { Name = 'vb_34_seawall_nw_det02' }, - ['-1945736474'] = { Name = 'vb_34_seawall_nw_det03' }, - ['2068367723'] = { Name = 'vb_34_seawall_nw_det04' }, - ['1605145119'] = { Name = 'vb_34_seawall_nw_det05' }, - ['2120994717'] = { Name = 'vb_34_seawall_nw_det06' }, - ['1122818228'] = { Name = 'vb_34_seawall_nw_det07' }, - ['1912420032'] = { Name = 'vb_34_seawall_nw_det08' }, - ['393413057'] = { Name = 'vb_34_seawall_nw_det09' }, - ['-197346147'] = { Name = 'vb_34_seawall_nw_det10' }, - ['12768681'] = { Name = 'vb_34_seawall_nw_det11' }, - ['304871547'] = { Name = 'vb_34_seawall_nw_det12' }, - ['-1694135764'] = { Name = 'vb_34_seawall_nw_det13' }, - ['-1365790384'] = { Name = 'vb_34_seawall_nw_det14' }, - ['-1716975745'] = { Name = 'vb_34_seawall_nw_det15' }, - ['-1422120283'] = { Name = 'vb_34_seawall_nw_det16' }, - ['1945648158'] = { Name = 'vb_34_seawall_nw_det17' }, - ['-943135810'] = { Name = 'vb_34_seawall_nw_det18' }, - ['-1842644860'] = { Name = 'vb_34_seawall_nw_det19' }, - ['-3222343'] = { Name = 'vb_34_seawall_nw_det20' }, - ['-1145811839'] = { Name = 'vb_34_seawall_nw_det21' }, - ['-1627581677'] = { Name = 'vb_34_seawall_nw_det22' }, - ['1485702710'] = { Name = 'vb_34_seawall_nw_det23' }, - ['1792027322'] = { Name = 'vb_34_seawall_nw_det24' }, - ['1462698852'] = { Name = 'vb_34_seawall_nw_det25' }, - ['1710334185'] = { Name = 'vb_34_seawall_nw_det26' }, - ['2139706392'] = { Name = 'vb_34_seawall_nw_det27' }, - ['-1840809580'] = { Name = 'vb_34_seawall_nw_det28' }, - ['497782898'] = { Name = 'vb_34_seawall_nw_det29' }, - ['-63060517'] = { Name = 'vb_34_seawall_nw_det30' }, - ['1413150164'] = { Name = 'vb_34_seawall_nw_det31' }, - ['571085171'] = { Name = 'vb_34_seawall_nw_det32' }, - ['1590921977'] = { Name = 'vb_34_seawall_nw_det33' }, - ['1627164503'] = { Name = 'vb_34_seawall_nw_det35' }, - ['1835345960'] = { Name = 'vb_34_seawall_nw_det36' }, - ['2082948524'] = { Name = 'vb_34_seawall_nw_det37' }, - ['-1470564660'] = { Name = 'vb_34_seawall1' }, - ['-1412880917'] = { Name = 'vb_34_seawall2_tintz' }, - ['-824522565'] = { Name = 'vb_34_seawall3_tintz' }, - ['-571219455'] = { Name = 'vb_34_seawall4' }, - ['-782055201'] = { Name = 'vb_34_seawall5' }, - ['1179240502'] = { Name = 'vb_34_skate' }, - ['-1876015950'] = { Name = 'vb_34_swl' }, - ['1810134478'] = { Name = 'vb_34_tennis_grnd' }, - ['1493689358'] = { Name = 'vb_34_tenniscourt_a' }, - ['852826025'] = { Name = 'vb_34_tenniscourt_b' }, - ['1090106354'] = { Name = 'vb_34_tenniscourt_c' }, - ['-1199072819'] = { Name = 'vb_34_tenniscourt' }, - ['-1818719589'] = { Name = 'vb_34_tennisfencehd_' }, - ['497243824'] = { Name = 'vb_34_tennisfencehd_01' }, - ['-885181979'] = { Name = 'vb_34_tennisfencehd_02' }, - ['605905824'] = { Name = 'vb_34_tennisfencehd_03' }, - ['435375948'] = { Name = 'vb_34_tennisfencehd_04' }, - ['278510745'] = { Name = 'vb_34_tennisfencehd_05' }, - ['-26798028'] = { Name = 'vb_34_tennisfencehd_06' }, - ['1799156190'] = { Name = 'vb_34_tennisfencehd_07' }, - ['1634655810'] = { Name = 'vb_34_tennisfencehd_08' }, - ['-1772632037'] = { Name = 'vb_34_tennisfencehd_09' }, - ['190103807'] = { Name = 'vb_34_tennisfencehd_10' }, - ['1419236228'] = { Name = 'vb_34_tennisfencehd_11' }, - ['175390526'] = { Name = 'vb_34_tennisfencehd_12' }, - ['810420977'] = { Name = 'vb_34_tennisfencehd_13' }, - ['1711306325'] = { Name = 'vb_34_tennisfencehd_14' }, - ['-1950268966'] = { Name = 'vb_34_tennisfencehd_15' }, - ['1100590472'] = { Name = 'vb_34_tennisfencehd_16' }, - ['-1542753750'] = { Name = 'vb_34_tennisfencehd_17' }, - ['1927090126'] = { Name = 'vb_34_tennisfencehd_18' }, - ['1199061249'] = { Name = 'vb_34_tennisfencehd_19' }, - ['334746461'] = { Name = 'vb_34_tennisfencehd_20' }, - ['90420797'] = { Name = 'vb_34_tennisfencehd_21' }, - ['-207285568'] = { Name = 'vb_34_tennisfencehd_22' }, - ['720503129'] = { Name = 'vb_34_tennisfencehd_23' }, - ['1630301645'] = { Name = 'vb_34_tennisfencehd_24' }, - ['-1768007500'] = { Name = 'vb_34_tennisfencehd_25' }, - ['1038001970'] = { Name = 'vb_34_tennisfencehd_26' }, - ['-542184752'] = { Name = 'vb_34_tennisfencehd_27' }, - ['-1482528526'] = { Name = 'vb_34_toiletblock01' }, - ['990056373'] = { Name = 'vb_34_toiletblock02' }, - ['-631423056'] = { Name = 'vb_34_volleyballnet_01' }, - ['1939108384'] = { Name = 'vb_34_volleyballnet_02' }, - ['1171625635'] = { Name = 'vb_34_volleyballnet_03' }, - ['512529719'] = { Name = 'vb_34_wall_ovl01' }, - ['1772497769'] = { Name = 'vb_34_wall_ovl02' }, - ['-1799769996'] = { Name = 'vb_34_weeds_new006' }, - ['-1157559396'] = { Name = 'vb_34_wires' }, - ['411342724'] = { Name = 'vb_35_beacha' }, - ['-527456357'] = { Name = 'vb_35_beachb' }, - ['171440875'] = { Name = 'vb_35_beachc' }, - ['1132129648'] = { Name = 'vb_35_beachd' }, - ['-843382286'] = { Name = 'vb_35_beache' }, - ['-722792382'] = { Name = 'vb_35_beachg' }, - ['1168533171'] = { Name = 'vb_35_dcl_01' }, - ['1897971111'] = { Name = 'vb_35_dcl_02' }, - ['1592400186'] = { Name = 'vb_35_dcl_03' }, - ['-1885603171'] = { Name = 'vb_35_dcl_04' }, - ['-797645710'] = { Name = 'vb_35_foam1' }, - ['-1575745615'] = { Name = 'vb_35_foam2' }, - ['518611179'] = { Name = 'vb_35_hut05' }, - ['304531302'] = { Name = 'vb_35_hut06' }, - ['1557428299'] = { Name = 'vb_35_jetski' }, - ['933726718'] = { Name = 'vb_35_lg_hut05_closed' }, - ['218336653'] = { Name = 'vb_35_lg_hut05_open' }, - ['-1158849747'] = { Name = 'vb_35_lg_hut06_closed' }, - ['2023420286'] = { Name = 'vb_35_lg_hut06_open' }, - ['-2188084'] = { Name = 'vb_35_lg_sign' }, - ['299554667'] = { Name = 'vb_35_lg_vlly_00_lod' }, - ['-1691387505'] = { Name = 'vb_35_lg_vlly_00' }, - ['-1951540596'] = { Name = 'vb_35_lg_vlly_01' }, - ['-1110655271'] = { Name = 'vb_35_lg_vlly_02' }, - ['-334540075'] = { Name = 'vb_35_lghut05_closed' }, - ['383261832'] = { Name = 'vb_35_lghut06_closed' }, - ['335636133'] = { Name = 'vb_35_lguard' }, - ['137542048'] = { Name = 'vb_35_lifegaurddoor2' }, - ['-551457139'] = { Name = 'vb_35_lifeguard_antena' }, - ['-905969728'] = { Name = 'vb_35_lifeguard_railing01' }, - ['-624258128'] = { Name = 'vb_35_lifeguard' }, - ['-803120864'] = { Name = 'vb_35_mtl_br' }, - ['411397412'] = { Name = 'vb_35_props_combo04_05_lod' }, - ['2030632545'] = { Name = 'vb_35_props_combo04_34_lod' }, - ['-1747163815'] = { Name = 'vb_35_props_combo04_36_lod' }, - ['-543482228'] = { Name = 'vb_35_props_combo04_dslod' }, - ['1544898114'] = { Name = 'vb_35_props_combo05_19_lod' }, - ['-1659329529'] = { Name = 'vb_35_props_combo05_dslod' }, - ['-2122117578'] = { Name = 'vb_35_props_combo06_20_lod' }, - ['-1971340415'] = { Name = 'vb_35_props_combo06_dslod' }, - ['170444242'] = { Name = 'vb_35_props_combo09_30_lod' }, - ['-1270999760'] = { Name = 'vb_35_props_combo09_31_lod' }, - ['-1047033047'] = { Name = 'vb_35_props_combo09_35_lod' }, - ['-582446187'] = { Name = 'vb_35_props_combo09_36_lod' }, - ['238100768'] = { Name = 'vb_35_props_combo09_dslod' }, - ['-533669413'] = { Name = 'vb_35_props_combo12_dslod' }, - ['-1241540736'] = { Name = 'vb_35_props_combo13_dslod' }, - ['-1015804641'] = { Name = 'vb_35_props_l_007' }, - ['399911702'] = { Name = 'vb_35_props_slod_5' }, - ['387819475'] = { Name = 'vb_35_props_towels1' }, - ['1122369375'] = { Name = 'vb_35_props_towels2' }, - ['824138706'] = { Name = 'vb_35_props_towels3' }, - ['-962251365'] = { Name = 'vb_35_river_lod' }, - ['1042437076'] = { Name = 'vb_35_river' }, - ['-1326873946'] = { Name = 'vb_35_river001_lod' }, - ['-1499325076'] = { Name = 'vb_35_rocks' }, - ['-446260595'] = { Name = 'vb_35_struct1' }, - ['-1278920889'] = { Name = 'vb_35_struct2' }, - ['-1040002110'] = { Name = 'vb_35_struct3' }, - ['399247919'] = { Name = 'vb_35b_coral_fan_flat_004' }, - ['1242794663'] = { Name = 'vb_35b_coral_fan_flat_1' }, - ['1433182553'] = { Name = 'vb_35b_coral_fan_flat_2' }, - ['1892575110'] = { Name = 'vb_35b_coral_fan_p_l' }, - ['-1573017714'] = { Name = 'vb_35b_coral_fan_p_l003' }, - ['605074982'] = { Name = 'vb_35b_coral_fan_p_l2' }, - ['1431522707'] = { Name = 'vb_35b_coraltb001' }, - ['1756136581'] = { Name = 'vb_35b_coralvs2' }, - ['1411076322'] = { Name = 'vb_35b_deb_1' }, - ['-1646173075'] = { Name = 'vb_35b_deb_2' }, - ['967220217'] = { Name = 'vb_35b_deb_3' }, - ['-693381655'] = { Name = 'vb_35b_deb_4' }, - ['-422808022'] = { Name = 'vb_35b_deb_5' }, - ['1426064700'] = { Name = 'vb_35b_seabed_d_00' }, - ['-1965514630'] = { Name = 'vb_35b_seaweed_long_l' }, - ['-1045098954'] = { Name = 'vb_35b_seaweed_long_m' }, - ['323056791'] = { Name = 'vb_35b_seaweed_long_m001' }, - ['1396669792'] = { Name = 'vb_35b_uw_01' }, - ['-947506898'] = { Name = 'vb_35b_uw_018_lod' }, - ['752265985'] = { Name = 'vb_35b_uw_01b' }, - ['-704675098'] = { Name = 'vb_35b_uw_02' }, - ['-404805979'] = { Name = 'vb_35b_uw_03' }, - ['1413021495'] = { Name = 'vb_35b_uw_04' }, - ['1115773896'] = { Name = 'vb_35b_uw_05' }, - ['-397301858'] = { Name = 'vb_35b_uw_06' }, - ['-702217403'] = { Name = 'vb_35b_uw_07' }, - ['2067811653'] = { Name = 'vb_35b_uw_08' }, - ['1771481586'] = { Name = 'vb_35b_uw_09' }, - ['1980248670'] = { Name = 'vb_35b_uw_09b' }, - ['-2019794287'] = { Name = 'vb_35b_uw_10' }, - ['1498777092'] = { Name = 'vb_35b_uw_11' }, - ['-477685143'] = { Name = 'vb_35b_uw_12' }, - ['-171655452'] = { Name = 'vb_35b_uw_13' }, - ['-1073523870'] = { Name = 'vb_35b_uw_14' }, - ['-766904337'] = { Name = 'vb_35b_uw_15' }, - ['554407357'] = { Name = 'vb_35b_uw_16' }, - ['784675120'] = { Name = 'vb_35b_uw_17' }, - ['-1664490879'] = { Name = 'vb_35b_uw_d_00' }, - ['1828343272'] = { Name = 'vb_35b_uw_d_00b' }, - ['-1903213044'] = { Name = 'vb_35b_uw_d_01' }, - ['1172518057'] = { Name = 'vb_35b_uw_d_02' }, - ['941693221'] = { Name = 'vb_35b_uw_d_03' }, - ['-2118046620'] = { Name = 'vb_35b_uw_d_04' }, - ['-445451322'] = { Name = 'vb_35b_uw_d_05' }, - ['-1628510529'] = { Name = 'vb_35b_uw_d_06' }, - ['-1868510685'] = { Name = 'vb_35b_uw_d_07' }, - ['-1202021994'] = { Name = 'vb_35b_uw_d_08' }, - ['708312403'] = { Name = 'vb_35b_uw_d_09' }, - ['1780022576'] = { Name = 'vb_35b_uw_d_0e' }, - ['116242139'] = { Name = 'vb_35b_uw_d_0g' }, - ['2113414098'] = { Name = 'vb_35b_uw_d_10' }, - ['-1589253523'] = { Name = 'vb_35b_uw_d_12' }, - ['821791194'] = { Name = 'vb_35b_uw_d_13' }, - ['-771779149'] = { Name = 'vb_35b_uwn_1' }, - ['254559407'] = { Name = 'vb_35b_uwn_10' }, - ['-722513866'] = { Name = 'vb_35b_uwn_11' }, - ['-898286782'] = { Name = 'vb_35b_uwn_12' }, - ['-1080430364'] = { Name = 'vb_35b_uwn_2' }, - ['2086431342'] = { Name = 'vb_35b_uwn_3' }, - ['-1735777591'] = { Name = 'vb_35b_uwn_5' }, - ['-1897853065'] = { Name = 'vb_35b_uwn_6' }, - ['716326679'] = { Name = 'vb_35b_uwn_7' }, - ['417899396'] = { Name = 'vb_35b_uwn_8' }, - ['1600434303'] = { Name = 'vb_35b_uwn_9' }, - ['-1689260142'] = { Name = 'vb_36_beach1' }, - ['-550706942'] = { Name = 'vb_36_beach370' }, - ['-1275229532'] = { Name = 'vb_36_beach371' }, - ['1680675137'] = { Name = 'vb_36_beach66' }, - ['-1538686587'] = { Name = 'vb_36_beach7' }, - ['-507635076'] = { Name = 'vb_36_beachtnt_' }, - ['1317949218'] = { Name = 'vb_36_beachtnt_01' }, - ['2135928996'] = { Name = 'vb_36_beachtnt_02' }, - ['984519424'] = { Name = 'vb_36_cablemesh1919_hvlit' }, - ['967892453'] = { Name = 'vb_36_cablemesh1920_hvlit' }, - ['-1294903545'] = { Name = 'vb_36_cablemesh1921_hvlit' }, - ['-1168130073'] = { Name = 'vb_36_cablemesh1922_hvlit' }, - ['-223828673'] = { Name = 'vb_36_cablemesh1923_hvlit' }, - ['873743667'] = { Name = 'vb_36_cablemesh1924_hvlit' }, - ['-616407177'] = { Name = 'vb_36_cablemesh1925_hvlit' }, - ['-1368873548'] = { Name = 'vb_36_cablemesh1926_hvlit' }, - ['-599975178'] = { Name = 'vb_36_cablemesh1927_hvlit' }, - ['-411090962'] = { Name = 'vb_36_cablemesh1928_hvlit' }, - ['1438976692'] = { Name = 'vb_36_cablemesh1929_hvlit' }, - ['-481041458'] = { Name = 'vb_36_cablemesh1930_hvlit' }, - ['-1976628811'] = { Name = 'vb_36_cablemesh1931_hvlit' }, - ['-1938730330'] = { Name = 'vb_36_cablemesh1932_hvlit' }, - ['-221898475'] = { Name = 'vb_36_foam1' }, - ['-932264857'] = { Name = 'vb_36_foam2' }, - ['-584454691'] = { Name = 'vb_36_foam3' }, - ['-1428747976'] = { Name = 'vb_36_foam4' }, - ['831991386'] = { Name = 'vb_36_hut07' }, - ['1588348930'] = { Name = 'vb_36_hut08_wood' }, - ['2097792318'] = { Name = 'vb_36_hut08' }, - ['544133172'] = { Name = 'vb_36_hut09_wood' }, - ['-1942658155'] = { Name = 'vb_36_hut09' }, - ['1292407173'] = { Name = 'vb_36_hut22_wood' }, - ['-437040787'] = { Name = 'vb_36_lg_hut07_closed' }, - ['-1267393844'] = { Name = 'vb_36_lg_hut07_open' }, - ['-1202234959'] = { Name = 'vb_36_lg_hut08_closed' }, - ['1408664349'] = { Name = 'vb_36_lg_hut08_open' }, - ['-1482631983'] = { Name = 'vb_36_lg_hut09_closed' }, - ['-1742042320'] = { Name = 'vb_36_lg_hut09_open' }, - ['1053234744'] = { Name = 'vb_36_lghut07_closed' }, - ['-778582946'] = { Name = 'vb_36_lghut08_closed' }, - ['-1434493297'] = { Name = 'vb_36_lghut08_closed001' }, - ['219051282'] = { Name = 'vb_36_props_combo_slod' }, - ['-1818391751'] = { Name = 'vb_36_props_towels1' }, - ['-1508528087'] = { Name = 'vb_36_props_towels2' }, - ['-1355267474'] = { Name = 'vb_36_props_towels3' }, - ['-1047927023'] = { Name = 'vb_36_props_towels4' }, - ['1823620451'] = { Name = 'vb_36_props_towels5' }, - ['1973677719'] = { Name = 'vb_36_sculpture' }, - ['-1658628900'] = { Name = 'vb_36_seawall002' }, - ['424563517'] = { Name = 'vb_36_shadow01' }, - ['704640160'] = { Name = 'vb_36_shadow02' }, - ['1137977424'] = { Name = 'vb_36_shadow03' }, - ['2125392605'] = { Name = 'vb_38_build_04_pole_01' }, - ['-856420055'] = { Name = 'vb_38_build01_ov01' }, - ['-1949331743'] = { Name = 'vb_38_build01_ov02' }, - ['-107353484'] = { Name = 'vb_38_build01_ov03' }, - ['-1471264802'] = { Name = 'vb_38_build01_ov04' }, - ['-1777556645'] = { Name = 'vb_38_build01_ov05' }, - ['-617183227'] = { Name = 'vb_38_build01_rails' }, - ['-1328616636'] = { Name = 'vb_38_build01_trelis_01' }, - ['1125421009'] = { Name = 'vb_38_build01_trelis_02' }, - ['-1822740387'] = { Name = 'vb_38_build01_trelis_03' }, - ['-1516710696'] = { Name = 'vb_38_build01_trelis_04' }, - ['-95125934'] = { Name = 'vb_38_build01_trelis_05' }, - ['440824601'] = { Name = 'vb_38_build01' }, - ['-1577603060'] = { Name = 'vb_38_build02_ov' }, - ['806067875'] = { Name = 'vb_38_build02' }, - ['1044986654'] = { Name = 'vb_38_build03' }, - ['-435472582'] = { Name = 'vb_38_build04_pole02' }, - ['1259733354'] = { Name = 'vb_38_build04_pole04' }, - ['535407350'] = { Name = 'vb_38_build04_pole05' }, - ['1133987258'] = { Name = 'vb_38_build04' }, - ['1372447271'] = { Name = 'vb_38_build05' }, - ['-635955440'] = { Name = 'vb_38_builddepot06' }, - ['-2110297101'] = { Name = 'vb_38_buildingfence_01' }, - ['1938607774'] = { Name = 'vb_38_buildingfence_02' }, - ['-1703175037'] = { Name = 'vb_38_buildingfence_03' }, - ['71200775'] = { Name = 'vb_38_buildingfence_04' }, - ['-1089903202'] = { Name = 'vb_38_buildingfence_05' }, - ['-1462748884'] = { Name = 'vb_38_buildingfence_06' }, - ['-791344843'] = { Name = 'vb_38_buildingfence_07' }, - ['1032053393'] = { Name = 'vb_38_buildingfence_08' }, - ['-145697236'] = { Name = 'vb_38_buildingfence_09' }, - ['815286230'] = { Name = 'vb_38_buildingfence_10' }, - ['266077718'] = { Name = 'vb_38_buildingfence_11' }, - ['2106220913'] = { Name = 'vb_38_buildingfence_12' }, - ['1281818411'] = { Name = 'vb_38_buildingfence_13' }, - ['966089096'] = { Name = 'vb_38_buildingfence_14' }, - ['26611900'] = { Name = 'vb_38_cablemesh15862_hvlit' }, - ['-606707019'] = { Name = 'vb_38_cablemesh15863_hvlit' }, - ['562363704'] = { Name = 'vb_38_cablemesh15864_hvlit' }, - ['1703986118'] = { Name = 'vb_38_cablemesh15865_hvlit' }, - ['2077693916'] = { Name = 'vb_38_cablemesh15866_hvlit' }, - ['1658175980'] = { Name = 'vb_38_cablemesh15867_hvlit' }, - ['-1103894505'] = { Name = 'vb_38_cablemesh15868_hvlit' }, - ['1763946764'] = { Name = 'vb_38_cablemesh15869_hvlit' }, - ['-1536508591'] = { Name = 'vb_38_cablemesh15870_hvlit' }, - ['-1685285458'] = { Name = 'vb_38_cablemesh15871_hvlit' }, - ['-1909163740'] = { Name = 'vb_38_cablemesh15872_hvlit' }, - ['-2041196498'] = { Name = 'vb_38_cablemesh15873_hvlit' }, - ['-756990232'] = { Name = 'vb_38_cablemesh15874_hvlit' }, - ['-904300209'] = { Name = 'vb_38_cablemesh15875_hvlit' }, - ['-1081110950'] = { Name = 'vb_38_cablemesh15876_hvlit' }, - ['-601550592'] = { Name = 'vb_38_cablemesh15877_hvlit' }, - ['-1912368431'] = { Name = 'vb_38_cablemesh15878_hvlit' }, - ['-2105879785'] = { Name = 'vb_38_cablemesh15879_hvlit' }, - ['-662630438'] = { Name = 'vb_38_cablemesh15880_hvlit' }, - ['1705367745'] = { Name = 'vb_38_cablemesh15881_hvlit' }, - ['291617781'] = { Name = 'vb_38_cablemesh15882_hvlit' }, - ['-1900057834'] = { Name = 'vb_38_cablemesh15883_hvlit' }, - ['-89490024'] = { Name = 'vb_38_cablemesh15884_hvlit' }, - ['-540318623'] = { Name = 'vb_38_cablemesh15885_hvlit' }, - ['1725181522'] = { Name = 'vb_38_cablemesh15886_hvlit' }, - ['-528141758'] = { Name = 'vb_38_cablemesh15887_hvlit' }, - ['-1515288948'] = { Name = 'vb_38_cablemesh15888_hvlit' }, - ['-330790718'] = { Name = 'vb_38_cablemesh15889_hvlit' }, - ['999458370'] = { Name = 'vb_38_cablemesh15890_hvlit' }, - ['-1555723380'] = { Name = 'vb_38_cablemesh15891_hvlit' }, - ['1060093438'] = { Name = 'vb_38_cablemesh15892_hvlit' }, - ['-1371868569'] = { Name = 'vb_38_cablemesh15893_hvlit' }, - ['-1396139068'] = { Name = 'vb_38_cablemesh15894_hvlit' }, - ['1664587376'] = { Name = 'vb_38_cablemesh15895_hvlit' }, - ['1713217483'] = { Name = 'vb_38_cablemesh15896_hvlit' }, - ['-325374596'] = { Name = 'vb_38_cablemesh15897_hvlit' }, - ['1708357010'] = { Name = 'vb_38_fence_01' }, - ['-929678590'] = { Name = 'vb_38_fence_02' }, - ['-1158963283'] = { Name = 'vb_38_fence_03' }, - ['187514927'] = { Name = 'vb_38_fence_04' }, - ['-42228532'] = { Name = 'vb_38_fence_05' }, - ['-2141934956'] = { Name = 'vb_38_fence_06' }, - ['1946587640'] = { Name = 'vb_38_fence_07' }, - ['-429656419'] = { Name = 'vb_38_fence_08' }, - ['-663954769'] = { Name = 'vb_38_fence_09' }, - ['-265222981'] = { Name = 'vb_38_fence_10' }, - ['460348217'] = { Name = 'vb_38_fence_11' }, - ['-862831234'] = { Name = 'vb_38_fence_12' }, - ['-1228140046'] = { Name = 'vb_38_fence_13' }, - ['860031718'] = { Name = 'vb_38_fence_14' }, - ['1653205363'] = { Name = 'vb_38_fence_15' }, - ['1332659005'] = { Name = 'vb_38_fence_16' }, - ['15705656'] = { Name = 'vb_38_fence_17' }, - ['208911668'] = { Name = 'vb_38_fence_18' }, - ['1518786897'] = { Name = 'vb_38_fence_19' }, - ['1844182787'] = { Name = 'vb_38_fence_20' }, - ['1336525439'] = { Name = 'vb_38_fence_21' }, - ['-1203170372'] = { Name = 'vb_38_fence_22' }, - ['1905822092'] = { Name = 'vb_38_fence_30' }, - ['-420449222'] = { Name = 'vb_38_fence_31' }, - ['-1924382477'] = { Name = 'vb_38_fence_32' }, - ['-2071056521'] = { Name = 'vb_38_fence_33' }, - ['1284587390'] = { Name = 'vb_38_fence_34' }, - ['986422259'] = { Name = 'vb_38_fence_35' }, - ['2040794951'] = { Name = 'vb_38_fence_40' }, - ['-1758098801'] = { Name = 'vb_38_fence' }, - ['-857168071'] = { Name = 'vb_38_fenceb_01' }, - ['-1617671027'] = { Name = 'vb_38_fenceb_02' }, - ['-140739424'] = { Name = 'vb_38_fenceb_03' }, - ['-983656411'] = { Name = 'vb_38_fenceb_04' }, - ['355186622'] = { Name = 'vb_38_fenceb_05' }, - ['-496381381'] = { Name = 'vb_38_fenceb_06' }, - ['1395078076'] = { Name = 'vb_38_fenceb_07' }, - ['682024632'] = { Name = 'vb_38_fenceb_08' }, - ['1587268261'] = { Name = 'vb_38_fenceb_09' }, - ['-1950102807'] = { Name = 'vb_38_glue_01' }, - ['1658281580'] = { Name = 'vb_38_grnd_dtl1' }, - ['1836348326'] = { Name = 'vb_38_grnd_dtl2' }, - ['926517041'] = { Name = 'vb_38_grnd_dtl3' }, - ['1342159037'] = { Name = 'vb_38_grnd_dtl4' }, - ['-1716597734'] = { Name = 'vb_38_grnd_dtl5' }, - ['-1465102511'] = { Name = 'vb_38_ground_01' }, - ['405372060'] = { Name = 'vb_38_ground_01a_ov' }, - ['-938316374'] = { Name = 'vb_38_ground_01b_ov' }, - ['867999480'] = { Name = 'vb_38_ground_02_proxy' }, - ['-1286249309'] = { Name = 'vb_38_ground_02' }, - ['-148282432'] = { Name = 'vb_38_ground_02a_ov' }, - ['-318140587'] = { Name = 'vb_38_ground_02b_ov' }, - ['-2072082698'] = { Name = 'vb_38_ground_03' }, - ['-1831853159'] = { Name = 'vb_38_ground_04' }, - ['2109798779'] = { Name = 'vb_38_ground_05' }, - ['1468444392'] = { Name = 'vb_38_hedge_detail' }, - ['-2029457557'] = { Name = 'vb_38_hedge_detail00' }, - ['-943427359'] = { Name = 'vb_38_hedge_detail01' }, - ['-1183132594'] = { Name = 'vb_38_hedge_detail02' }, - ['1010817494'] = { Name = 'vb_38_hedge_detail03' }, - ['-975527171'] = { Name = 'vb_38_marinearch' }, - ['922675461'] = { Name = 'vb_38_redfence_00' }, - ['95782515'] = { Name = 'vb_38_redfence_01' }, - ['1519562796'] = { Name = 'vb_38_redfence_02' }, - ['-1189253824'] = { Name = 'vb_38_redfence_03' }, - ['2114057994'] = { Name = 'vb_38_redfence_04' }, - ['1279464333'] = { Name = 'vb_38_redfence_05' }, - ['-2031318809'] = { Name = 'vb_38_redfence_06' }, - ['-1198822364'] = { Name = 'vb_38_redfence_07' }, - ['-1438265447'] = { Name = 'vb_38_redfence_08' }, - ['1275925289'] = { Name = 'vb_38_redfence_09' }, - ['159091403'] = { Name = 'vb_38_redfence_10' }, - ['457780838'] = { Name = 'vb_38_redfence_11' }, - ['1711064012'] = { Name = 'vb_38_redfence_12' }, - ['2009032529'] = { Name = 'vb_38_redfence_13' }, - ['-914158889'] = { Name = 'vb_38_redfence_14' }, - ['-709012461'] = { Name = 'vb_38_stairs_01' }, - ['-65789756'] = { Name = 'vb_38_stairs_02' }, - ['-226423394'] = { Name = 'vb_38_stairs_03' }, - ['718208569'] = { Name = 'vb_38_stairs_04' }, - ['633296752'] = { Name = 'vb_38_vb_pagoda_01' }, - ['390737070'] = { Name = 'vb_39_grndeast_d' }, - ['468021411'] = { Name = 'vb_39_grndeast_d1' }, - ['-914994234'] = { Name = 'vb_39_grndeast_d3' }, - ['-488641412'] = { Name = 'vb_39_grndwest_d' }, - ['52676351'] = { Name = 'vb_39_grndwest_d1' }, - ['-254205334'] = { Name = 'vb_39_grndwest_d2' }, - ['458326900'] = { Name = 'vb_39_grndwest' }, - ['793088101'] = { Name = 'vb_39_groundrailing_01' }, - ['601258355'] = { Name = 'vb_39_groundrailing_02' }, - ['345234158'] = { Name = 'vb_39_groundrailing_03' }, - ['-964063399'] = { Name = 'vb_39_hedge_detail' }, - ['-577099598'] = { Name = 'vb_39_hedge_detail02' }, - ['-783441118'] = { Name = 'vb_39_rail' }, - ['1282521861'] = { Name = 'vb_39_towera_d_2' }, - ['-1532896088'] = { Name = 'vb_39_towera_d' }, - ['-227292631'] = { Name = 'vb_39_towera_stairs' }, - ['555658096'] = { Name = 'vb_39_towera_stairs001' }, - ['-1992398823'] = { Name = 'vb_39_towera' }, - ['-419758698'] = { Name = 'vb_39_towerb_d_2' }, - ['819046032'] = { Name = 'vb_39_towerb_d' }, - ['1459684255'] = { Name = 'vb_39_towerb' }, - ['1519274027'] = { Name = 'vb_39_vb1_39_tower_extras' }, - ['-846760272'] = { Name = 'vb_43_apt_fizstep' }, - ['-147938059'] = { Name = 'vb_43_apt_ground' }, - ['-1491766424'] = { Name = 'vb_43_apt02dec' }, - ['-1569107741'] = { Name = 'vb_43_apt2_build' }, - ['-482750024'] = { Name = 'vb_43_build05' }, - ['-1090436693'] = { Name = 'vb_43_decal_01' }, - ['-764647295'] = { Name = 'vb_43_decal_02' }, - ['-1464396521'] = { Name = 'vb_43_decal_03' }, - ['-1209552008'] = { Name = 'vb_43_decal_04' }, - ['-1942397924'] = { Name = 'vb_43_decal_05' }, - ['-406226215'] = { Name = 'vb_43_dockdetails01' }, - ['1848870879'] = { Name = 'vb_43_dockdetails02' }, - ['-2022852013'] = { Name = 'vb_43_dockdetails03' }, - ['-1965637339'] = { Name = 'vb_43_dockdetails04' }, - ['-106323690'] = { Name = 'vb_43_door_l_mp' }, - ['-2042007659'] = { Name = 'vb_43_door_r_mp' }, - ['632070069'] = { Name = 'vb_43_glue_kerb' }, - ['1191449150'] = { Name = 'vb_43_ground' }, - ['-852590940'] = { Name = 'vb_43_ground1' }, - ['1190359596'] = { Name = 'vb_43_ground2' }, - ['-270205105'] = { Name = 'vb_43_groundwall' }, - ['1579249850'] = { Name = 'vb_43_railing_01' }, - ['875830496'] = { Name = 'vb_43_railing_02' }, - ['-90363473'] = { Name = 'vb_43_railing_03' }, - ['1356977723'] = { Name = 'vb_43_railing_04' }, - ['386917012'] = { Name = 'vb_43_railing_05' }, - ['-312438986'] = { Name = 'vb_43_railing_06' }, - ['-1282172003'] = { Name = 'vb_43_railing_07' }, - ['-1040304014'] = { Name = 'vb_43_railing_08' }, - ['-801614618'] = { Name = 'vb_43_railing_09' }, - ['1649178032'] = { Name = 'vb_43_railing_10' }, - ['454059829'] = { Name = 'vb_43_railing_11' }, - ['750553745'] = { Name = 'vb_43_railing_12' }, - ['95140972'] = { Name = 'vb_43_railing_13' }, - ['155370394'] = { Name = 'vb_43_railing_14' }, - ['-503909117'] = { Name = 'vb_43_railing_15' }, - ['-205973369'] = { Name = 'vb_43_railing_16' }, - ['-1398535586'] = { Name = 'vb_43_railing_17' }, - ['-798273044'] = { Name = 'vb_43_railing_18' }, - ['651295648'] = { Name = 'vb_43_railing_19_lod' }, - ['-2002042263'] = { Name = 'vb_43_railing_19' }, - ['1900877009'] = { Name = 'vb_43_railing_20' }, - ['1555557287'] = { Name = 'vb_43_railing_21' }, - ['1259358296'] = { Name = 'vb_43_railing_22' }, - ['943858364'] = { Name = 'vb_43_railing_23' }, - ['710641391'] = { Name = 'vb_43_railing_24' }, - ['-237529628'] = { Name = 'vb_43_railing_25' }, - ['604437058'] = { Name = 'vb_43_railing_26' }, - ['-852767603'] = { Name = 'vb_43_railing_27' }, - ['-8113859'] = { Name = 'vb_43_railing_28' }, - ['-1429338158'] = { Name = 'vb_43_railing_29' }, - ['462479499'] = { Name = 'vb_44_apt' }, - ['-851472461'] = { Name = 'vb_44_buildingdecal' }, - ['-1915688958'] = { Name = 'vb_44_center_stairs' }, - ['789243287'] = { Name = 'vb_44_center' }, - ['-1758103691'] = { Name = 'vb_44_detail1a' }, - ['-927098428'] = { Name = 'vb_44_detail1a1' }, - ['695376881'] = { Name = 'vb_44_detail1b' }, - ['661316453'] = { Name = 'vb_44_detail1b1' }, - ['-158334544'] = { Name = 'vb_44_detail1b2' }, - ['-456005667'] = { Name = 'vb_44_detail2_01' }, - ['256064703'] = { Name = 'vb_44_detail2_02' }, - ['427839801'] = { Name = 'vb_44_detail2_03' }, - ['674721447'] = { Name = 'vb_44_detail2_04' }, - ['904530452'] = { Name = 'vb_44_detail2_05' }, - ['-65046773'] = { Name = 'vb_44_detailfizz_01' }, - ['-362556524'] = { Name = 'vb_44_detailfizz_02' }, - ['2088608129'] = { Name = 'vb_44_grnd' }, - ['-314781992'] = { Name = 'vb_44_hedge_detail01' }, - ['-1752292484'] = { Name = 'vb_44_hedge_detail02' }, - ['-794749535'] = { Name = 'vb_44_hedge_detail03' }, - ['-162558721'] = { Name = 'vb_44_lot' }, - ['320886480'] = { Name = 'vb_44_lothedgeshadprox' }, - ['1699700913'] = { Name = 'vb_44_lotshadowproxy' }, - ['-362521847'] = { Name = 'vb_44_pagoda' }, - ['1073991978'] = { Name = 'vb_44_railingbuilding_00' }, - ['-112278591'] = { Name = 'vb_44_railingbuilding_01' }, - ['2077333820'] = { Name = 'vb_44_railingbuilding_010' }, - ['964891812'] = { Name = 'vb_44_railingbuilding_011' }, - ['660762723'] = { Name = 'vb_44_railingbuilding_012' }, - ['1358906268'] = { Name = 'vb_44_railingbuilding_013' }, - ['1186737942'] = { Name = 'vb_44_railingbuilding_014' }, - ['-68347527'] = { Name = 'vb_44_railingbuilding_015' }, - ['-760953111'] = { Name = 'vb_44_railingbuilding_016' }, - ['389140482'] = { Name = 'vb_44_railingbuilding_017' }, - ['233880960'] = { Name = 'vb_44_railingbuilding_018' }, - ['-960778485'] = { Name = 'vb_44_railingbuilding_019' }, - ['182413026'] = { Name = 'vb_44_railingbuilding_02' }, - ['1976122560'] = { Name = 'vb_44_railingbuilding_03' }, - ['2013479220'] = { Name = 'vb_44_railingbuilding_04' }, - ['1391752971'] = { Name = 'vb_44_railingbuilding_05' }, - ['1669175337'] = { Name = 'vb_44_railingbuilding_06' }, - ['-1360744714'] = { Name = 'vb_44_railingbuilding_07' }, - ['-787680442'] = { Name = 'vb_44_railingbuilding_08' }, - ['-1946719972'] = { Name = 'vb_44_railingbuilding_09' }, - ['1796044429'] = { Name = 'vb_44_rest_alpha' }, - ['-596596159'] = { Name = 'vb_44_rest' }, - ['1250725043'] = { Name = 'vb_44_thedgeshadprox_lod' }, - ['-1816716493'] = { Name = 'vb_44_water' }, - ['784929245'] = { Name = 'vb_44a_lot' }, - ['-1618612972'] = { Name = 'vb_44a_lothedgeshadprox1' }, - ['-1811651925'] = { Name = 'vb_44a_thedgeshadprox1_lod' }, - ['-678614652'] = { Name = 'vb_ca_bridg011_lod_m' }, - ['-259639828'] = { Name = 'vb_ca_bridg021_lod_m' }, - ['1942933419'] = { Name = 'vb_ca_bridge1_rail' }, - ['-1519500588'] = { Name = 'vb_ca_bridge1' }, - ['-599462944'] = { Name = 'vb_ca_bridge2_rail' }, - ['-1220942229'] = { Name = 'vb_ca_bridge2' }, - ['-528601731'] = { Name = 'vb_ca_bridge3_rails' }, - ['-19073616'] = { Name = 'vb_ca_bridge3' }, - ['1949390678'] = { Name = 'vb_ca_cablemesh92545_hvstd' }, - ['290846337'] = { Name = 'vb_ca_cablemesh92546_hvstd' }, - ['-1119771078'] = { Name = 'vb_ca_cablemesh92708_hvstd' }, - ['1532997583'] = { Name = 'vb_ca_dec22' }, - ['-1301472316'] = { Name = 'vb_ca_dec224' }, - ['-1002782881'] = { Name = 'vb_ca_dec225' }, - ['-1337446756'] = { Name = 'vb_ca_dec3' }, - ['-1146141334'] = { Name = 'vb_ca_dec4' }, - ['-1817807531'] = { Name = 'vb_ca_dec5' }, - ['-459800347'] = { Name = 'vb_ca_jetty_l_prox18' }, - ['-1133678513'] = { Name = 'vb_ca_jetty1' }, - ['1320228056'] = { Name = 'vb_ca_jetty2' }, - ['1761233258'] = { Name = 'vb_ca_jetty3' }, - ['-388544218'] = { Name = 'vb_ca_jetty4' }, - ['-89527093'] = { Name = 'vb_ca_jetty5' }, - ['-556347543'] = { Name = 'vb_ca_p1' }, - ['943915564'] = { Name = 'vb_ca_p5' }, - ['660234335'] = { Name = 'vb_ca_p6' }, - ['488393699'] = { Name = 'vb_ca_p7' }, - ['196913444'] = { Name = 'vb_ca_p8' }, - ['654357556'] = { Name = 'vb_ca_pipe011' }, - ['854117380'] = { Name = 'vb_ca_pipe012' }, - ['1093363849'] = { Name = 'vb_ca_pipe013' }, - ['-812808881'] = { Name = 'vb_ca_pipe014' }, - ['-574152254'] = { Name = 'vb_ca_pipe015' }, - ['1131244477'] = { Name = 'vb_ca_pipe020' }, - ['2081680201'] = { Name = 'vb_ca_pipeend' }, - ['-892972145'] = { Name = 'vb_ca_pipeend001' }, - ['-687838205'] = { Name = 'vb_ca_pipeend002' }, - ['2003381474'] = { Name = 'vb_ca_pipeend003' }, - ['-2060924831'] = { Name = 'vb_ca_pipeend004' }, - ['-1812535811'] = { Name = 'vb_ca_pipeend005' }, - ['-1582464662'] = { Name = 'vb_ca_pipeend006' }, - ['1287974019'] = { Name = 'vb_ca_pipemiddle' }, - ['-2133446282'] = { Name = 'vb_ca_pipemiddle001' }, - ['-1827416591'] = { Name = 'vb_ca_pipemiddle002' }, - ['-803778565'] = { Name = 'vb_ca_pipemiddle003' }, - ['-514624909'] = { Name = 'vb_ca_pipemiddle004' }, - ['-1407449083'] = { Name = 'vb_ca_pipemiddle005' }, - ['-1101091702'] = { Name = 'vb_ca_pipemiddle006' }, - ['386850285'] = { Name = 'vb_ca_pipemiddle007' }, - ['-1590661370'] = { Name = 'vb_ca_pipemiddle011' }, - ['-1887777893'] = { Name = 'vb_ca_pipemiddle012' }, - ['-2035533314'] = { Name = 'vb_ca_pipemiddle013' }, - ['1793917568'] = { Name = 'vb_ca_pipemiddle014' }, - ['-769371923'] = { Name = 'vb_ca_pipemiddle015' }, - ['140033369'] = { Name = 'vb_ca_pipemiddle016' }, - ['2113464185'] = { Name = 'vb_ca_pipeprocessbuild' }, - ['-1600053422'] = { Name = 'vb_ca_pipestart' }, - ['-1669978571'] = { Name = 'vb_ca_pipestart001' }, - ['1796883326'] = { Name = 'vb_ca_pipestart002' }, - ['-940835552'] = { Name = 'vb_ca_pipestart003' }, - ['-479218645'] = { Name = 'vb_ca_pipestart005' }, - ['-1308634808'] = { Name = 'vb_ca_pipestart006' }, - ['-135111376'] = { Name = 'vb_ca_pipestart007' }, - ['102889871'] = { Name = 'vb_ca_pipestart008' }, - ['327685211'] = { Name = 'vb_ca_pipestart009' }, - ['-756994814'] = { Name = 'vb_ca_sml_opt_hdge1' }, - ['-1014460847'] = { Name = 'vb_ca_sml_opt_hdge2' }, - ['-297081899'] = { Name = 'vb_ca_sml_opt_hdge3' }, - ['-537573590'] = { Name = 'vb_ca_sml_opt_hdge4' }, - ['201105208'] = { Name = 'vb_ca_sml_opt_hdge5' }, - ['-1854648446'] = { Name = 'vb_ca_spiralstairs' }, - ['423875847'] = { Name = 'vb_ca_tunnel_01_detail' }, - ['-1938614564'] = { Name = 'vb_ca_tunnel_01_lightdummy' }, - ['-187752110'] = { Name = 'vb_ca_tunnel_01' }, - ['1451199368'] = { Name = 'vb_ca_tunnel_01blocker' }, - ['-1723138247'] = { Name = 'vb_ca_tunnel_01blocker001' }, - ['-1013944988'] = { Name = 'vb_ca_tunnel_01ol' }, - ['-1443207909'] = { Name = 'vb_ca_tunnel_02_lightdummy' }, - ['-418544177'] = { Name = 'vb_ca_tunnel_02' }, - ['500495752'] = { Name = 'vb_ca_tunnel_02blocker' }, - ['-1710750533'] = { Name = 'vb_ca_tunnel_02ol' }, - ['1763552164'] = { Name = 'vb_ca_tunnel_03_lightdummy' }, - ['1359239611'] = { Name = 'vb_ca_tunnel_03' }, - ['352642066'] = { Name = 'vb_ca_tunnel_03blocker' }, - ['-1310053038'] = { Name = 'vb_ca_tunnel_03ol' }, - ['-1826201264'] = { Name = 'vb_ca_tunnel_04_lightdummy' }, - ['1646525446'] = { Name = 'vb_ca_tunnel_04' }, - ['-2002376653'] = { Name = 'vb_ca_tunnel_04blocker' }, - ['-106024700'] = { Name = 'vb_ca_tunnel_04ol' }, - ['541609354'] = { Name = 'vb_ca_tunnel_05_b_dummy' }, - ['1964705187'] = { Name = 'vb_ca_tunnel_05_lightdummy' }, - ['1408589737'] = { Name = 'vb_ca_tunnel_05' }, - ['-466933998'] = { Name = 'vb_ca_tunnel_05blocker' }, - ['-354354184'] = { Name = 'vb_ca_tunnel_05ol' }, - ['1035940669'] = { Name = 'vb_ca_tunnel_06' }, - ['-2138730419'] = { Name = 'vb_ca_tunnel_dtl1' }, - ['1302965010'] = { Name = 'vb_ca_tunnel_dtl2' }, - ['1669453506'] = { Name = 'vb_ca_tunnel_dtl3' }, - ['1055788443'] = { Name = 'vb_ca_tunnel_dtl5' }, - ['76552416'] = { Name = 'vb_ca_tunnel_dtl6' }, - ['448152876'] = { Name = 'vb_ca_tunnel_dtl7' }, - ['-774330346'] = { Name = 'vb_ca_tunnel_end' }, - ['-1424226342'] = { Name = 'vb_ca_tunnel_slod' }, - ['-738164532'] = { Name = 'vb_ca_tunnel2_dtl' }, - ['246457011'] = { Name = 'vb_ca_tunnel2_dtl00' }, - ['737336631'] = { Name = 'vb_ca_tunnel2_dtl01' }, - ['975993258'] = { Name = 'vb_ca_tunnel2_dtl02' }, - ['360001604'] = { Name = 'vb_ca_tunnel2_dtl03' }, - ['1806425264'] = { Name = 'vb_ca_tunnel2_dtl04' }, - ['621793145'] = { Name = 'vb_ca_tunnel2_dtl05' }, - ['859663316'] = { Name = 'vb_ca_tunnel2_dtl06' }, - ['1322033906'] = { Name = 'vb_ca_tunnel2_dtl07' }, - ['1205388816'] = { Name = 'vb_ca_tunwater1' }, - ['-207020622'] = { Name = 'vb_ca_tunwater2' }, - ['1285836707'] = { Name = 'vb_ca_tunwater3' }, - ['-1720839974'] = { Name = 'vb_ca_tunwater3b' }, - ['1450337087'] = { Name = 'vb_ca_tunwater4' }, - ['791778494'] = { Name = 'vb_ca_tunwater5' }, - ['-1474874227'] = { Name = 'vb_ca_vb_hedgeshortlng_iref015' }, - ['-109684918'] = { Name = 'vb_ca_vb_hedgeshortlng_iref016' }, - ['371921351'] = { Name = 'vb_ca_vb_hedgeshortlng_iref026' }, - ['726416393'] = { Name = 'vb_ca_vb_hedgeshortlng_iref027' }, - ['1441178847'] = { Name = 'vb_ca_vb_hedgeshortlng' }, - ['777684607'] = { Name = 'vb_ca_vb_hedgeshortlng009' }, - ['1982176836'] = { Name = 'vb_ca_vb_hedgeshortlng010' }, - ['-787157859'] = { Name = 'vb_ca_vb_hedgeshortsht' }, - ['-65057561'] = { Name = 'vb_ca_vb_hedgeshortsht001' }, - ['-218383712'] = { Name = 'vb_ca_vb_hedgeshortsht002' }, - ['-644249636'] = { Name = 'vb_ca_vb_hedgeshortsht003' }, - ['-999137906'] = { Name = 'vb_ca_vb_hedgeshortsht004' }, - ['1962622629'] = { Name = 'vb_ca_vb_hedgeshortsht005' }, - ['-1610640215'] = { Name = 'vb_ca_vb_hedgeshortsht006' }, - ['1828647717'] = { Name = 'vb_ca_vb_hedgetalllng' }, - ['-1894315091'] = { Name = 'vb_ca_vb_hedgetallmed' }, - ['-1405365794'] = { Name = 'vb_ca_vb_hedgetallsml' }, - ['-1513494044'] = { Name = 'vb_ca_vb_hedgetallsml001' }, - ['-1194881049'] = { Name = 'vb_ca_vb_hedgetallsml002' }, - ['-1208327270'] = { Name = 'vb_ca_water1_lod' }, - ['-741177925'] = { Name = 'vb_ca_water1' }, - ['-1938252802'] = { Name = 'vb_ca_water3_lod' }, - ['-1222849456'] = { Name = 'vb_ca_water3' }, - ['-1331577780'] = { Name = 'vb_ca_water5_lod' }, - ['-1961036763'] = { Name = 'vb_ca_water6' }, - ['837959581'] = { Name = 'vb_emissive_build01_em' }, - ['-661945058'] = { Name = 'vb_emissive_build02_em' }, - ['-818851182'] = { Name = 'vb_emissive_build03_em' }, - ['-2037208317'] = { Name = 'vb_emissive_build04_em' }, - ['-1455581833'] = { Name = 'vb_emissive_emis_01' }, - ['-1044016373'] = { Name = 'vb_emissive_nw' }, - ['-709417857'] = { Name = 'vb_emissive_nwem' }, - ['-1562585241'] = { Name = 'vb_emissive_vb_01' }, - ['-1416173349'] = { Name = 'vb_emissive_vb_02' }, - ['756428713'] = { Name = 'vb_emissive_vb_03_01' }, - ['380830435'] = { Name = 'vb_emissive_vb_03_02' }, - ['1779107469'] = { Name = 'vb_emissive_vb_04_01' }, - ['-1188322079'] = { Name = 'vb_emissive_vb_04_02' }, - ['-1524600570'] = { Name = 'vb_emissive_vb_05_ema' }, - ['929437075'] = { Name = 'vb_emissive_vb_05_emb' }, - ['-1992700693'] = { Name = 'vb_emissive_vb_05_emb02' }, - ['1950130925'] = { Name = 'vb_emissive_vb_05_emb03' }, - ['-701508832'] = { Name = 'vb_emissive_vb_05_emc' }, - ['-529781365'] = { Name = 'vb_emissive_vb_05_emc2_' }, - ['1257266645'] = { Name = 'vb_emissive_vb_05_emc2_1' }, - ['-389679028'] = { Name = 'vb_emissive_vb_05_emd' }, - ['341605225'] = { Name = 'vb_emissive_vb_05_eme_01' }, - ['-645528131'] = { Name = 'vb_emissive_vb_05_eme_02' }, - ['-418406192'] = { Name = 'vb_emissive_vb_05_eme_03' }, - ['-1121170166'] = { Name = 'vb_emissive_vb_05_eme_04' }, - ['-881661545'] = { Name = 'vb_emissive_vb_05_eme_05' }, - ['-1332562985'] = { Name = 'vb_emissive_vb_05_eme_06' }, - ['-2052170221'] = { Name = 'vb_emissive_vb_05_eme_07' }, - ['-1999477669'] = { Name = 'vb_emissive_vb_05_eme_08' }, - ['1173523733'] = { Name = 'vb_emissive_vb_07_01' }, - ['279781995'] = { Name = 'vb_emissive_vb_07_02' }, - ['333592948'] = { Name = 'vb_emissive_vb_07' }, - ['625204279'] = { Name = 'vb_emissive_vb_08' }, - ['123633258'] = { Name = 'vb_emissive_vb_09_01' }, - ['-251571792'] = { Name = 'vb_emissive_vb_09_02' }, - ['1990975747'] = { Name = 'vb_emissive_vb_10_a' }, - ['-101095524'] = { Name = 'vb_emissive_vb_10_b' }, - ['-1126549149'] = { Name = 'vb_emissive_vb_17_b1' }, - ['-146985432'] = { Name = 'vb_emissive_vb_17_b2' }, - ['1116772264'] = { Name = 'vb_emissive_vb_17' }, - ['1893430333'] = { Name = 'vb_emissive_vb_18' }, - ['2059675846'] = { Name = 'vb_emissive_vb_21' }, - ['488534831'] = { Name = 'vb_emissive_vb_22_b1' }, - ['239064434'] = { Name = 'vb_emissive_vb_22_b2' }, - ['-1001260'] = { Name = 'vb_emissive_vb_22_b3' }, - ['1754829694'] = { Name = 'vb_emissive_vb_23_ema' }, - ['-1653146310'] = { Name = 'vb_emissive_vb_23_emb' }, - ['1041903475'] = { Name = 'vb_emissive_vb_24' }, - ['1592881441'] = { Name = 'vb_emissive_vb_25' }, - ['1368774250'] = { Name = 'vb_emissive_vb_26' }, - ['-725951310'] = { Name = 'vb_emissive_vb_27' }, - ['-152887034'] = { Name = 'vb_emissive_vb_28' }, - ['267219560'] = { Name = 'vb_emissive_vb_30_a' }, - ['-1019684620'] = { Name = 'vb_emissive_vb_30_b' }, - ['-181879585'] = { Name = 'vb_emissive_vb_30_c' }, - ['1313337116'] = { Name = 'vb_emissive_vb_30_d' }, - ['1653560506'] = { Name = 'vb_emissive_vb_31_a' }, - ['1304374042'] = { Name = 'vb_emissive_vb_31_b' }, - ['-1633160851'] = { Name = 'vb_emissive_vb_32' }, - ['-324786261'] = { Name = 'vb_emissive_vb_33_a' }, - ['-542962263'] = { Name = 'vb_emissive_vb_33_b' }, - ['1366710027'] = { Name = 'vb_emissive_vb_34' }, - ['147768765'] = { Name = 'vb_emissive_vb_38' }, - ['-587813801'] = { Name = 'vb_emissive_vb19_hd' }, - ['1186977191'] = { Name = 'vb_emissive_vb39emb001' }, - ['1891289425'] = { Name = 'vb_emissive_vbemissivea001' }, - ['1909145084'] = { Name = 'vb_lod_01_02_07_proxy' }, - ['2084992038'] = { Name = 'vb_lod_17_022_proxy' }, - ['-1022871334'] = { Name = 'vb_lod_emissive_5_proxy' }, - ['274849181'] = { Name = 'vb_lod_emissive_6_20_proxy' }, - ['1310156197'] = { Name = 'vb_lod_emissive_6_proxy' }, - ['525356059'] = { Name = 'vb_lod_emissive' }, - ['-105476612'] = { Name = 'vb_lod_rv_slod4' }, - ['1972856407'] = { Name = 'vb_lod_slod4' }, - ['-286943698'] = { Name = 'vb_rd_bdg_st01_d001' }, - ['-48224673'] = { Name = 'vb_rd_brdge_jl01' }, - ['878588585'] = { Name = 'vb_rd_brdge2_slod1' }, - ['985323559'] = { Name = 'vb_rd_bridge_01' }, - ['1881162477'] = { Name = 'vb_rd_bridge_02' }, - ['-1568462918'] = { Name = 'vb_rd_bridge_03' }, - ['680742604'] = { Name = 'vb_rd_bridgeshadowproxy_lod' }, - ['-1488177337'] = { Name = 'vb_rd_bridgeshadowproxy' }, - ['-914615701'] = { Name = 'vb_rd_cablemesh12647_thvy' }, - ['-603107488'] = { Name = 'vb_rd_cables_000' }, - ['-976018684'] = { Name = 'vb_rd_cables_001' }, - ['-1142681818'] = { Name = 'vb_rd_cables_002' }, - ['-679492003'] = { Name = 'vb_rd_cables_004' }, - ['-1876183142'] = { Name = 'vb_rd_cables_005' }, - ['-2099864336'] = { Name = 'vb_rd_cables_006' }, - ['949717115'] = { Name = 'vb_rd_cables_007' }, - ['-1622911541'] = { Name = 'vb_rd_cables_008' }, - ['1538182817'] = { Name = 'vb_rd_cables_009' }, - ['394448450'] = { Name = 'vb_rd_cables_010' }, - ['578249771'] = { Name = 'vb_rd_cables_011' }, - ['816119918'] = { Name = 'vb_rd_cables_012' }, - ['1323252962'] = { Name = 'vb_rd_cables_013' }, - ['1579801463'] = { Name = 'vb_rd_cables_014' }, - ['1819080701'] = { Name = 'vb_rd_cables_015' }, - ['2042270360'] = { Name = 'vb_rd_cables_016' }, - ['-1716530558'] = { Name = 'vb_rd_cables_018' }, - ['-1253176898'] = { Name = 'vb_rd_cables_019' }, - ['588801077'] = { Name = 'vb_rd_cables_020' }, - ['-184940527'] = { Name = 'vb_rd_cables_021' }, - ['63514031'] = { Name = 'vb_rd_cables_022' }, - ['292995338'] = { Name = 'vb_rd_cables_023' }, - ['1063853270'] = { Name = 'vb_rd_cables_024' }, - ['1279473290'] = { Name = 'vb_rd_cables_025' }, - ['1525994477'] = { Name = 'vb_rd_cables_026' }, - ['1741155731'] = { Name = 'vb_rd_cables_027' }, - ['1986956000'] = { Name = 'vb_rd_cables_028' }, - ['-2015547971'] = { Name = 'vb_rd_cables_029' }, - ['-749880695'] = { Name = 'vb_rd_cables_030' }, - ['-1952535792'] = { Name = 'vb_rd_cables_031' }, - ['2036106892'] = { Name = 'vb_rd_cables_032' }, - ['-574468238'] = { Name = 'vb_rd_cables_033' }, - ['192752359'] = { Name = 'vb_rd_cables_034' }, - ['-1067543381'] = { Name = 'vb_rd_cables_035' }, - ['-299864018'] = { Name = 'vb_rd_cables_036' }, - ['-1843447831'] = { Name = 'vb_rd_cables_037' }, - ['1609061244'] = { Name = 'vb_rd_cables_038' }, - ['-1400705872'] = { Name = 'vb_rd_cables_039' }, - ['2110381320'] = { Name = 'vb_rd_decal' }, - ['-201572780'] = { Name = 'vb_rd_details01' }, - ['-499737911'] = { Name = 'vb_rd_details02' }, - ['1492355237'] = { Name = 'vb_rd_details03' }, - ['-1095807592'] = { Name = 'vb_rd_dl' }, - ['693281942'] = { Name = 'vb_rd_hedge_01' }, - ['1974484268'] = { Name = 'vb_rd_hedge_02' }, - ['-2091263873'] = { Name = 'vb_rd_hedge_03' }, - ['989743045'] = { Name = 'vb_rd_hedge_04' }, - ['46857864'] = { Name = 'vb_rd_nbdg_02' }, - ['1232060002'] = { Name = 'vb_rd_nbg_det1' }, - ['851611912'] = { Name = 'vb_rd_nbg_det2' }, - ['518613454'] = { Name = 'vb_rd_nbg_det3' }, - ['-1921576115'] = { Name = 'vb_rd_nbg' }, - ['-661053542'] = { Name = 'vb_rd_road_r1a_o' }, - ['1340520156'] = { Name = 'vb_rd_road_r1a' }, - ['-521641962'] = { Name = 'vb_rd_road_r1b_o' }, - ['-495854616'] = { Name = 'vb_rd_road_r1b' }, - ['973621969'] = { Name = 'vb_rd_road_r1c_o' }, - ['-742048113'] = { Name = 'vb_rd_road_r1c' }, - ['-445805730'] = { Name = 'vb_rd_road_r1d_o' }, - ['2106495523'] = { Name = 'vb_rd_road_r1d' }, - ['-54429926'] = { Name = 'vb_rd_road_r1e_o' }, - ['-280627824'] = { Name = 'vb_rd_road_r1e' }, - ['1981351165'] = { Name = 'vb_rd_road_r1f_o' }, - ['421218622'] = { Name = 'vb_rd_road_r1f' }, - ['-1783423929'] = { Name = 'vb_rd_road_r2a_o' }, - ['1189259920'] = { Name = 'vb_rd_road_r2a' }, - ['1520331576'] = { Name = 'vb_rd_road_r2b_o' }, - ['-237305726'] = { Name = 'vb_rd_road_r2b' }, - ['1559014003'] = { Name = 'vb_rd_road_r2c_o' }, - ['598074391'] = { Name = 'vb_rd_road_r2c' }, - ['716859847'] = { Name = 'vb_rd_road_r2d_o' }, - ['-589113718'] = { Name = 'vb_rd_road_r2d' }, - ['1733980315'] = { Name = 'vb_rd_road_r2e_o' }, - ['253836046'] = { Name = 'vb_rd_road_r2e' }, - ['1598151614'] = { Name = 'vb_rd_road_r2f' }, - ['-555351450'] = { Name = 'vb_rd_road_r2g_o' }, - ['-1930414310'] = { Name = 'vb_rd_road_r2g' }, - ['665885327'] = { Name = 'vb_rd_road_r2h_o' }, - ['866518151'] = { Name = 'vb_rd_road_r2h' }, - ['1453811527'] = { Name = 'vb_rd_road_r2i_o' }, - ['1635508274'] = { Name = 'vb_rd_road_r2i' }, - ['695192530'] = { Name = 'vb_rd_road_r2j_o' }, - ['369248576'] = { Name = 'vb_rd_road_r2j' }, - ['1138533620'] = { Name = 'vb_rd_road_r2k' }, - ['-1381127315'] = { Name = 'vb_rd_road_r3a_o' }, - ['1333378334'] = { Name = 'vb_rd_road_r3a' }, - ['-1582601118'] = { Name = 'vb_rd_road_r3b_o' }, - ['71050916'] = { Name = 'vb_rd_road_r3b' }, - ['-629595299'] = { Name = 'vb_rd_road_r3c_o' }, - ['806345635'] = { Name = 'vb_rd_road_r3d_o' }, - ['-388010013'] = { Name = 'vb_rd_road_r3d' }, - ['530457829'] = { Name = 'vb_rd_road_r4a_o' }, - ['-528391037'] = { Name = 'vb_rd_road_r4a' }, - ['-1758381041'] = { Name = 'vb_rd_road_r4b_o' }, - ['1228387826'] = { Name = 'vb_rd_road_r4b' }, - ['330451030'] = { Name = 'vb_rd_road_r4c_o' }, - ['384946535'] = { Name = 'vb_rd_road_r4c' }, - ['1649879789'] = { Name = 'vb_rd_road_r4d_o' }, - ['763657868'] = { Name = 'vb_rd_road_r4d' }, - ['-1855528934'] = { Name = 'vb_rd_road_r4e_o' }, - ['-63267847'] = { Name = 'vb_rd_road_r4e' }, - ['858096760'] = { Name = 'vb_rd_road_r4f_o' }, - ['2083003346'] = { Name = 'vb_rd_road_r4f' }, - ['658266741'] = { Name = 'vb_rd_road_r4g_o' }, - ['1316405360'] = { Name = 'vb_rd_road_r4g' }, - ['-1942042396'] = { Name = 'vb_rd_road_r5a_o' }, - ['220282670'] = { Name = 'vb_rd_road_r5a' }, - ['-2007209143'] = { Name = 'vb_rd_road_r5b_o' }, - ['1066837028'] = { Name = 'vb_rd_road_r5b' }, - ['1496611624'] = { Name = 'vb_rd_road_r5c_o' }, - ['-1908489869'] = { Name = 'vb_rd_road_r5c' }, - ['-1688180053'] = { Name = 'vb_rd_road_r5d_o' }, - ['1461769016'] = { Name = 'vb_rd_road_r5d' }, - ['-2085225675'] = { Name = 'vb_rd_road_r5e_o' }, - ['838240484'] = { Name = 'vb_rd_road_r5e' }, - ['-889530652'] = { Name = 'vb_rd_road_r5f_o' }, - ['-1987954694'] = { Name = 'vb_rd_road_r5f' }, - ['453586390'] = { Name = 'vb_rd_road_r5g_o' }, - ['-684436643'] = { Name = 'vb_rd_road_r5g' }, - ['-794604666'] = { Name = 'vb_rd_road_r5h_o' }, - ['-1393164575'] = { Name = 'vb_rd_road_r5h' }, - ['2061376178'] = { Name = 'vb_rd_road_r5i' }, - ['1061565765'] = { Name = 'vb_rd_road_r6a_o' }, - ['-1869413312'] = { Name = 'vb_rd_road_r6a' }, - ['1513806846'] = { Name = 'vb_rd_road_r6b_o' }, - ['503717676'] = { Name = 'vb_rd_road_r6b' }, - ['-692785448'] = { Name = 'vb_rd_stp_01_d' }, - ['1091678328'] = { Name = 'vb_rd_stp_d' }, - ['1203483876'] = { Name = 'vb_rd_stp2_d' }, - ['-48830244'] = { Name = 'vb_rv__decal001' }, - ['574763822'] = { Name = 'vb_rv__decal002' }, - ['-647224953'] = { Name = 'vb_rv__decal003' }, - ['-290829309'] = { Name = 'vb_rv__decal004' }, - ['695464094'] = { Name = 'vb_rv_013' }, - ['-1923314847'] = { Name = 'vb_rv_013b' }, - ['1925666355'] = { Name = 'vb_rv_013c' }, - ['168767965'] = { Name = 'vb_rv_014' }, - ['-987124960'] = { Name = 'vb_rv_1_007' }, - ['-1148535178'] = { Name = 'vb_rv_1_1' }, - ['-977218846'] = { Name = 'vb_rv_1_2' }, - ['1181570121'] = { Name = 'vb_rv_1_3' }, - ['-499282965'] = { Name = 'vb_rv_1_4' }, - ['-214159896'] = { Name = 'vb_rv_1_5' }, - ['-50445972'] = { Name = 'vb_rv_1_6' }, - ['-1570516282'] = { Name = 'vb_rv_1_6b00' }, - ['-1960172461'] = { Name = 'vb_rv_1_6b01' }, - ['1796668273'] = { Name = 'vb_rv_airportrocks3' }, - ['-1371335627'] = { Name = 'vb_rv_b00' }, - ['463924975'] = { Name = 'vb_rv_b03' }, - ['-408123653'] = { Name = 'vb_rv_b04' }, - ['-184999532'] = { Name = 'vb_rv_b05' }, - ['1120845118'] = { Name = 'vb_rv_b06' }, - ['1350457501'] = { Name = 'vb_rv_b07' }, - ['-1677234254'] = { Name = 'vb_rv_b08' }, - ['700582693'] = { Name = 'vb_rv_b09' }, - ['-897097251'] = { Name = 'vb_rv_b10' }, - ['-1094628783'] = { Name = 'vb_rv_b11' }, - ['-1380210618'] = { Name = 'vb_rv_b12' }, - ['-1869862975'] = { Name = 'vb_rv_b12b' }, - ['-1630485430'] = { Name = 'vb_rv_b12c' }, - ['-1610740533'] = { Name = 'vb_rv_b13' }, - ['-1981751151'] = { Name = 'vb_rv_b14' }, - ['1955378665'] = { Name = 'vb_rv_b16' }, - ['834516690'] = { Name = 'vb_rv_bt1' }, - ['-1725323228'] = { Name = 'vb_rv_clutter_00' }, - ['1316768783'] = { Name = 'vb_rv_clutter_020' }, - ['1605299828'] = { Name = 'vb_rv_clutter_021' }, - ['1841793697'] = { Name = 'vb_rv_clutter_022' }, - ['-817967730'] = { Name = 'vb_rv_clutter_027' }, - ['-594450381'] = { Name = 'vb_rv_clutter_028' }, - ['-1820352976'] = { Name = 'vb_rv_clutter_12' }, - ['327556671'] = { Name = 'vb_rv_clutter_19' }, - ['1919459016'] = { Name = 'vb_rv_dc_00' }, - ['-2145371593'] = { Name = 'vb_rv_dc_01' }, - ['-765600059'] = { Name = 'vb_rv_dc_02' }, - ['1691026337'] = { Name = 'vb_rv_dc_03' }, - ['-1358391269'] = { Name = 'vb_rv_dc_04' }, - ['-514753364'] = { Name = 'vb_rv_dc_05' }, - ['156585139'] = { Name = 'vb_rv_dc_06' }, - ['-1123273694'] = { Name = 'vb_rv_dc_07' }, - ['-422443091'] = { Name = 'vb_rv_dc_08' }, - ['412183339'] = { Name = 'vb_rv_dc_09' }, - ['-844900247'] = { Name = 'vb_rv_dc_10' }, - ['442860035'] = { Name = 'vb_rv_end00' }, - ['1482030563'] = { Name = 'vb_rv_end01' }, - ['1176721790'] = { Name = 'vb_rv_end02' }, - ['274558435'] = { Name = 'vb_rv_end03' }, - ['-38090594'] = { Name = 'vb_rv_end04' }, - ['737420564'] = { Name = 'vb_rv_end05' }, - ['439779737'] = { Name = 'vb_rv_end06' }, - ['-1703149022'] = { Name = 'vb_rv_end07' }, - ['-658669916'] = { Name = 'vb_rv_end08' }, - ['-975513377'] = { Name = 'vb_rv_end09' }, - ['2012560953'] = { Name = 'vb_rv_end10' }, - ['-2101390387'] = { Name = 'vb_rv_end11' }, - ['-1803946174'] = { Name = 'vb_rv_end12' }, - ['710845185'] = { Name = 'vb_rv_end13' }, - ['956252226'] = { Name = 'vb_rv_end14' }, - ['1264444671'] = { Name = 'vb_rv_end15' }, - ['1972779375'] = { Name = 'vb_rv_end16' }, - ['-137708074'] = { Name = 'vb_rv_end17' }, - ['27644300'] = { Name = 'vb_rv_end18' }, - ['340817633'] = { Name = 'vb_rv_end19' }, - ['1064816231'] = { Name = 'vb_rv_end20' }, - ['1245242345'] = { Name = 'vb_rv_end21' }, - ['1543145324'] = { Name = 'vb_rv_end22' }, - ['-112115189'] = { Name = 'vb_rv_end23' }, - ['195487414'] = { Name = 'vb_rv_end24' }, - ['650845442'] = { Name = 'vb_rv_end25' }, - ['823734686'] = { Name = 'vb_rv_end26' }, - ['-1297632071'] = { Name = 'vb_rv_end27' }, - ['-839324837'] = { Name = 'vb_rv_end28' }, - ['-533098532'] = { Name = 'vb_rv_end29' }, - ['2113562619'] = { Name = 'vb_rv_end30' }, - ['1797243462'] = { Name = 'vb_rv_end31' }, - ['-1727259110'] = { Name = 'vb_rv_end32' }, - ['-1424965097'] = { Name = 'vb_rv_end33' }, - ['1489902999'] = { Name = 'vb_rv_end34' }, - ['-1885664468'] = { Name = 'vb_rv_end35' }, - ['-1119590786'] = { Name = 'vb_rv_end36' }, - ['611366109'] = { Name = 'vb_rv_end37' }, - ['305336418'] = { Name = 'vb_rv_end38' }, - ['-1998717514'] = { Name = 'vb_rv_end39' }, - ['-1966013764'] = { Name = 'vb_rv_end40' }, - ['-429278740'] = { Name = 'vb_rv_end41' }, - ['-1233135079'] = { Name = 'vb_rv_end42' }, - ['1940673651'] = { Name = 'vb_rv_end43' }, - ['-2048755489'] = { Name = 'vb_rv_end44' }, - ['-1063358894'] = { Name = 'vb_rv_end45' }, - ['-1553124368'] = { Name = 'vb_rv_end46' }, - ['714392133'] = { Name = 'vb_rv_end47' }, - ['1019635368'] = { Name = 'vb_rv_end48' }, - ['1483382256'] = { Name = 'vb_rv_end49' }, - ['-84044173'] = { Name = 'vb_rv_end50' }, - ['-665829264'] = { Name = 'vb_rv_move_00' }, - ['-359209731'] = { Name = 'vb_rv_move_01' }, - ['2122421373'] = { Name = 'vb_rv_move_019' }, - ['24486467'] = { Name = 'vb_rv_move_029' }, - ['993925479'] = { Name = 'vb_rv_move_030' }, - ['1757508717'] = { Name = 'vb_rv_move_031' }, - ['300631746'] = { Name = 'vb_rv_move_032' }, - ['1295367510'] = { Name = 'vb_rv_move_033' }, - ['-405081434'] = { Name = 'vb_rv_move_034' }, - ['-1183640105'] = { Name = 'vb_rv_move_037' }, - ['-1916130463'] = { Name = 'vb_rv_move_04' }, - ['1297464382'] = { Name = 'vb_rv_move_040' }, - ['999299251'] = { Name = 'vb_rv_move_041' }, - ['-427135311'] = { Name = 'vb_rv_move_045' }, - ['-305922792'] = { Name = 'vb_rv_move_046' }, - ['-1609314316'] = { Name = 'vb_rv_move_05' }, - ['-463448720'] = { Name = 'vb_rv_nw2_00' }, - ['-511979617'] = { Name = 'vb_rv_nw2_04' }, - ['283160168'] = { Name = 'vb_rv_nw2_05' }, - ['-15267115'] = { Name = 'vb_rv_nw2_06' }, - ['608523569'] = { Name = 'vb_rv_nw2_07' }, - ['1533199753'] = { Name = 'vb_rv_pipe_040' }, - ['-1481187768'] = { Name = 'vb_rv_pipe_042' }, - ['-1967635101'] = { Name = 'vb_rv_pipe_06' }, - ['-681353832'] = { Name = 'vb_rv_pipe_15' }, - ['423189419'] = { Name = 'vb_rv_pipe_23' }, - ['-581211188'] = { Name = 'vb_rv_pipe_38' }, - ['1992045517'] = { Name = 'vb_rv_port_d_00' }, - ['1820729185'] = { Name = 'vb_rv_port_d_01' }, - ['-1823478540'] = { Name = 'vb_rv_port_d_02' }, - ['-2132654055'] = { Name = 'vb_rv_port_d_03' }, - ['1592853551'] = { Name = 'vb_rv_port_d_04' }, - ['-831036614'] = { Name = 'vb_rv_port_d_05' }, - ['-1664942126'] = { Name = 'vb_rv_port_d_06' }, - ['-1978049921'] = { Name = 'vb_rv_port_d_07' }, - ['-1475176847'] = { Name = 'vb_rv_port_d_08' }, - ['374665972'] = { Name = 'vb_rv_port_d_09' }, - ['-649594961'] = { Name = 'vb_rv_port_d_10' }, - ['-955100348'] = { Name = 'vb_rv_port_d_11' }, - ['-903434833'] = { Name = 'vb_rv_port_d_11b' }, - ['1692176166'] = { Name = 'vb_rv_port_d_12' }, - ['-828331682'] = { Name = 'vb_rv_port_d_12b' }, - ['-1596535349'] = { Name = 'vb_rv_port_d_12c' }, - ['-1253247305'] = { Name = 'vb_rv_port_d_12d' }, - ['-2140649923'] = { Name = 'vb_rv_port_d_14' }, - ['-763399856'] = { Name = 'vb_rv_portb_00' }, - ['-992684549'] = { Name = 'vb_rv_portb_01' }, - ['1578043481'] = { Name = 'vb_rv_portb_02' }, - ['1943876597'] = { Name = 'vb_rv_portb_03' }, - ['1164597008'] = { Name = 'vb_rv_portb_04' }, - ['1432319738'] = { Name = 'vb_rv_portb_05' }, - ['694230782'] = { Name = 'vb_rv_portb_06' }, - ['-73219202'] = { Name = 'vb_rv_portb_07' }, - ['232613875'] = { Name = 'vb_rv_portb_08' }, - ['-600603488'] = { Name = 'vb_rv_portb_09' }, - ['310898164'] = { Name = 'vb_rv_portb_10' }, - ['-1606579871'] = { Name = 'vb_rv_portb_11' }, - ['-905323271'] = { Name = 'vb_rv_portb_13' }, - ['-672499526'] = { Name = 'vb_rv_portb_14' }, - ['1735235518'] = { Name = 'vb_rv_portb_15' }, - ['-2089955394'] = { Name = 'vb_rv_portb_16' }, - ['-1860146397'] = { Name = 'vb_rv_portb_17' }, - ['520521457'] = { Name = 'vb_rv_portb_18' }, - ['750002764'] = { Name = 'vb_rv_portb_19' }, - ['-204589999'] = { Name = 'vb_rv_portb_20' }, - ['408616298'] = { Name = 'vb_rv_portb_22' }, - ['-1876631038'] = { Name = 'vb_rv_post_002' }, - ['337880992'] = { Name = 'vb_rv_post_1' }, - ['451823973'] = { Name = 'vb_rv_props_combo01_slod' }, - ['-733528416'] = { Name = 'vb_rv_props_combo0101_slod' }, - ['-1165968193'] = { Name = 'vb_rv_props_combo02_slod' }, - ['1958640602'] = { Name = 'vb_rv_props_combo03_slod' }, - ['-870802367'] = { Name = 'vb_rv_seabed_69_beach' }, - ['1269934236'] = { Name = 'vb_rv_seabed_70a_beach' }, - ['593831503'] = { Name = 'vb_rv_seabed_70b_beach' }, - ['-1858516849'] = { Name = 'vb_rv_seabed_71a_beach' }, - ['813031911'] = { Name = 'vb_rv_seabed_71b_beach' }, - ['-1527921954'] = { Name = 'vb_rv_seabed_b_01' }, - ['257890243'] = { Name = 'vb_rv_seabed_b_02' }, - ['1592439530'] = { Name = 'vb_rv_seabed_d1' }, - ['1921491362'] = { Name = 'vb_rv_seabed_d10' }, - ['1146144053'] = { Name = 'vb_rv_seabed_d11' }, - ['-1777112903'] = { Name = 'vb_rv_seabed_d12' }, - ['1741917242'] = { Name = 'vb_rv_seabed_d13' }, - ['998257556'] = { Name = 'vb_rv_seabed_d14' }, - ['224876387'] = { Name = 'vb_rv_seabed_d15' }, - ['1593703055'] = { Name = 'vb_rv_seabed_d16' }, - ['817896980'] = { Name = 'vb_rv_seabed_d17' }, - ['-956249449'] = { Name = 'vb_rv_seabed_d18' }, - ['-655790488'] = { Name = 'vb_rv_seabed_d19' }, - ['-1792598170'] = { Name = 'vb_rv_seabed_d2' }, - ['-1584562523'] = { Name = 'vb_rv_seabed_d20' }, - ['-1960357415'] = { Name = 'vb_rv_seabed_d21' }, - ['-972339296'] = { Name = 'vb_rv_seabed_d22' }, - ['1874565890'] = { Name = 'vb_rv_seabed_d23' }, - ['-1601766272'] = { Name = 'vb_rv_seabed_d24' }, - ['-1897572035'] = { Name = 'vb_rv_seabed_d25' }, - ['2084844539'] = { Name = 'vb_rv_seabed_d26' }, - ['1786351718'] = { Name = 'vb_rv_seabed_d27' }, - ['1510305662'] = { Name = 'vb_rv_seabed_d28' }, - ['1208994707'] = { Name = 'vb_rv_seabed_d29' }, - ['-1017447475'] = { Name = 'vb_rv_seabed_d3' }, - ['1581676272'] = { Name = 'vb_rv_seabed_d30' }, - ['1272435219'] = { Name = 'vb_rv_seabed_d31' }, - ['854597700'] = { Name = 'vb_rv_seabed_d32' }, - ['694357290'] = { Name = 'vb_rv_seabed_d33' }, - ['-1686310580'] = { Name = 'vb_rv_seabed_d34' }, - ['-1857430298'] = { Name = 'vb_rv_seabed_d35' }, - ['2045718065'] = { Name = 'vb_rv_seabed_d36' }, - ['1839535517'] = { Name = 'vb_rv_seabed_d37' }, - ['1182091070'] = { Name = 'vb_rv_seabed_d38' }, - ['-194501851'] = { Name = 'vb_rv_seabed_d39' }, - ['-669355390'] = { Name = 'vb_rv_seabed_d40' }, - ['-1442015641'] = { Name = 'vb_rv_seabed_d41' }, - ['-1264276585'] = { Name = 'vb_rv_seabed_d42' }, - ['-2047750606'] = { Name = 'vb_rv_seabed_d43' }, - ['-1764875596'] = { Name = 'vb_rv_seabed_d5' }, - ['-1128285523'] = { Name = 'vb_rv_seabed_d51' }, - ['-1424386207'] = { Name = 'vb_rv_seabed_d52' }, - ['-1749159766'] = { Name = 'vb_rv_seabed_d53' }, - ['94620788'] = { Name = 'vb_rv_seabed_d54' }, - ['-194827789'] = { Name = 'vb_rv_seabed_d55' }, - ['-501152401'] = { Name = 'vb_rv_seabed_d56' }, - ['-756586756'] = { Name = 'vb_rv_seabed_d57' }, - ['1529608039'] = { Name = 'vb_rv_seabed_d58' }, - ['-981893960'] = { Name = 'vb_rv_seabed_d63b' }, - ['-1744231976'] = { Name = 'vb_rv_seabed_d63c' }, - ['1857244993'] = { Name = 'vb_rv_seabed_d63x' }, - ['2094787474'] = { Name = 'vb_rv_seabed_d63y' }, - ['-519457808'] = { Name = 'vb_rv_seabed_d63z' }, - ['-989591546'] = { Name = 'vb_rv_seabed_d63zy' }, - ['-1337384800'] = { Name = 'vb_rv_seabed_d66' }, - ['-1645610014'] = { Name = 'vb_rv_seabed_d67' }, - ['502299629'] = { Name = 'vb_rv_seabed_d68' }, - ['-1129400257'] = { Name = 'vb_rv_seabed_d70' }, - ['-800759956'] = { Name = 'vb_rv_seabed_d71' }, - ['-763337758'] = { Name = 'vb_rv_seabed_d72' }, - ['-474872251'] = { Name = 'vb_rv_seabed_d73' }, - ['2034479466'] = { Name = 'vb_rv_seabed_d74' }, - ['-1982377327'] = { Name = 'vb_rv_seabed_d75' }, - ['-1666877395'] = { Name = 'vb_rv_seabed_d76' }, - ['-1352917606'] = { Name = 'vb_rv_seabed_d77' }, - ['809475939'] = { Name = 'vb_rv_seabed_d78' }, - ['1056043777'] = { Name = 'vb_rv_seabed_d8' }, - ['292296694'] = { Name = 'vb_rv_seabed_d9' }, - ['-1203021894'] = { Name = 'vb_rv_seabed_new21' }, - ['-242660811'] = { Name = 'vb_rv_seabed_new25' }, - ['-42444037'] = { Name = 'vb_rv_seabed_new27_' }, - ['-1911749826'] = { Name = 'vb_rv_seabed_new27' }, - ['1443137438'] = { Name = 'vb_rv_seabed_new49' }, - ['983460506'] = { Name = 'vb_rv_seabed_new56' }, - ['167283023'] = { Name = 'vb_rv_seabed_new57' }, - ['1886344763'] = { Name = 'vb_rv_seabed_new58' }, - ['2103581983'] = { Name = 'vb_rv_seabed_new6' }, - ['-1126076862'] = { Name = 'vb_rv_seabed_new69' }, - ['-475746561'] = { Name = 'vb_rv_seabed_new70a_dcl' }, - ['1972209559'] = { Name = 'vb_rv_seabed_new70a' }, - ['-1647454185'] = { Name = 'vb_rv_seabed_new70b' }, - ['1579815687'] = { Name = 'vb_rv_seabed_new71a_dcl' }, - ['-1451202140'] = { Name = 'vb_rv_seabed_new71a' }, - ['1615021083'] = { Name = 'vb_rv_seabed_new71b_dcl' }, - ['1340257894'] = { Name = 'vb_rv_seabed_new71b' }, - ['-782287322'] = { Name = 'vb_rv_seabed_new72a_dcl' }, - ['-1476629756'] = { Name = 'vb_rv_seabed_new72a' }, - ['-1722364487'] = { Name = 'vb_rv_seabed_new72b' }, - ['-636498414'] = { Name = 'vb_rv_seabed_new73a' }, - ['-389059695'] = { Name = 'vb_rv_seabed_new73b' }, - ['1980794389'] = { Name = 'vb_rv_seabed_new73c' }, - ['1281657124'] = { Name = 'vb_rv_seaweed_01' }, - ['1646769322'] = { Name = 'vb_rv_seaweed_02' }, - ['-1813278486'] = { Name = 'vb_rv_uw_dec_00' }, - ['-1527041271'] = { Name = 'vb_rv_uw_dec_01' }, - ['-1229662596'] = { Name = 'vb_rv_uw_dec_02' }, - ['-913310670'] = { Name = 'vb_rv_uw_dec_03' }, - ['1532075959'] = { Name = 'vb_rv_uw_dec_04' }, - ['1616193982'] = { Name = 'vb_rv_uw_dec_05' }, - ['1912327435'] = { Name = 'vb_rv_uw_dec_06' }, - ['351605499'] = { Name = 'vb_rv_uw_dec_07' }, - ['925783917'] = { Name = 'vb_rv_uw_dec_09' }, - ['938727916'] = { Name = 'vb_rv_uw_dec_10' }, - ['-412501799'] = { Name = 'vb_rv_uw_dec_11' }, - ['-625336454'] = { Name = 'vb_rv_uw_dec_12' }, - ['-319732760'] = { Name = 'vb_rv_uw_dec_13' }, - ['-1638259009'] = { Name = 'vb_rv_uw_dec_14' }, - ['-1814392384'] = { Name = 'vb_rv_uw_dec_15' }, - ['-980650717'] = { Name = 'vb_rv_uw_dec_16' }, - ['-1218815809'] = { Name = 'vb_rv_uw_dec_17' }, - ['1763589192'] = { Name = 'vb_rv_uw_dec_18' }, - ['1496620149'] = { Name = 'vb_rv_uw_dec_19' }, - ['-1629117302'] = { Name = 'vb_rv_uw_dec_20' }, - ['-189214673'] = { Name = 'vb_rv_uw_dec_21' }, - ['617013633'] = { Name = 'vb_rv_uw1_03' }, - ['-1231452892'] = { Name = 'vb_rv_uw1_04' }, - ['21109368'] = { Name = 'vb_rv_uw1_05' }, - ['334020549'] = { Name = 'vb_rv_uw1_06' }, - ['-309103849'] = { Name = 'vb_rv_uw1_07' }, - ['2085621906'] = { Name = 'vb_rv_uw1_08' }, - ['-705444904'] = { Name = 'vb_rv_uw1_09' }, - ['-929389182'] = { Name = 'vb_rv_uw1_10' }, - ['-1786429608'] = { Name = 'vb_rv_uw1_11' }, - ['-465871677'] = { Name = 'vb_rv_uw1_12' }, - ['-1323239793'] = { Name = 'vb_rv_uw1_13' }, - ['2128417288'] = { Name = 'vb_rv_uw1_14' }, - ['1274653766'] = { Name = 'vb_rv_uw1_15' }, - ['-1703687883'] = { Name = 'vb_rv_uw1_16' }, - ['1751344409'] = { Name = 'vb_rv_uw1_17' }, - ['916816286'] = { Name = 'vb_rv_uw1_18' }, - ['-1588865379'] = { Name = 'vb_rv_uw1_19' }, - ['-226592079'] = { Name = 'vb_rv_uw1_20' }, - ['-1415484168'] = { Name = 'vb_rv_uw1_21' }, - ['1978859932'] = { Name = 'vb_rv_uw1_22' }, - ['1357461389'] = { Name = 'vb_rv_uw1_23' }, - ['-1691694069'] = { Name = 'vb_rv_uw1_24' }, - ['1953365654'] = { Name = 'vb_rv_uw1_25' }, - ['1050907394'] = { Name = 'vb_rv_uw1_26' }, - ['306068024'] = { Name = 'vb_rv_uw1_27' }, - ['1685151389'] = { Name = 'vb_rv_uw1_28' }, - ['107227559'] = { Name = 'vb_rv_vbrv_barge' }, - ['1809962610'] = { Name = 'vb_rv_wrk1' }, - ['-1673356438'] = { Name = 'velum' }, - ['1077420264'] = { Name = 'velum2' }, - ['1102544804'] = { Name = 'verlierer2' }, - ['1341619767'] = { Name = 'vestra' }, - ['1284556934'] = { Name = 'vfx_it1_00' }, - ['1425627487'] = { Name = 'vfx_it1_01' }, - ['1730346418'] = { Name = 'vfx_it1_02' }, - ['694846018'] = { Name = 'vfx_it1_03' }, - ['1000416943'] = { Name = 'vfx_it1_04' }, - ['71055334'] = { Name = 'vfx_it1_05' }, - ['493578820'] = { Name = 'vfx_it1_06' }, - ['-531173360'] = { Name = 'vfx_it1_07' }, - ['-235695275'] = { Name = 'vfx_it1_08' }, - ['-1164794744'] = { Name = 'vfx_it1_09' }, - ['-1246716952'] = { Name = 'vfx_it1_10' }, - ['-489490900'] = { Name = 'vfx_it1_11' }, - ['-786935113'] = { Name = 'vfx_it1_12' }, - ['153699084'] = { Name = 'vfx_it1_13' }, - ['-18862470'] = { Name = 'vfx_it1_14' }, - ['867571749'] = { Name = 'vfx_it1_15' }, - ['461498301'] = { Name = 'vfx_it1_16' }, - ['1348260210'] = { Name = 'vfx_it1_17' }, - ['1176354036'] = { Name = 'vfx_it1_18' }, - ['2130816703'] = { Name = 'vfx_it1_19' }, - ['264685611'] = { Name = 'vfx_it1_20' }, - ['-1278754784'] = { Name = 'vfx_it2_00' }, - ['-1417564268'] = { Name = 'vfx_it2_01' }, - ['-1744107353'] = { Name = 'vfx_it2_02' }, - ['-27339435'] = { Name = 'vfx_it2_03' }, - ['-2108760785'] = { Name = 'vfx_it2_04' }, - ['1888237994'] = { Name = 'vfx_it2_05' }, - ['1629461201'] = { Name = 'vfx_it2_06' }, - ['-950311097'] = { Name = 'vfx_it2_07' }, - ['1265987453'] = { Name = 'vfx_it2_08' }, - ['967756784'] = { Name = 'vfx_it2_09' }, - ['192671283'] = { Name = 'vfx_it2_10' }, - ['-303451377'] = { Name = 'vfx_it2_11' }, - ['-830671842'] = { Name = 'vfx_it2_12' }, - ['-1055008416'] = { Name = 'vfx_it2_13' }, - ['-1276100859'] = { Name = 'vfx_it2_14' }, - ['-1799618403'] = { Name = 'vfx_it2_15' }, - ['361529940'] = { Name = 'vfx_it2_16' }, - ['-2013862125'] = { Name = 'vfx_it2_17' }, - ['2043464383'] = { Name = 'vfx_it2_18' }, - ['1807691428'] = { Name = 'vfx_it2_19' }, - ['1849656877'] = { Name = 'vfx_it2_20' }, - ['-596254056'] = { Name = 'vfx_it2_21' }, - ['-758329530'] = { Name = 'vfx_it2_22' }, - ['-1057281117'] = { Name = 'vfx_it2_23' }, - ['1068280060'] = { Name = 'vfx_it2_24' }, - ['922195858'] = { Name = 'vfx_it2_25' }, - ['-1547439819'] = { Name = 'vfx_it2_26' }, - ['-1711940199'] = { Name = 'vfx_it2_27' }, - ['829066340'] = { Name = 'vfx_it2_28' }, - ['1001693432'] = { Name = 'vfx_it2_29' }, - ['-40164382'] = { Name = 'vfx_it2_30' }, - ['257214293'] = { Name = 'vfx_it2_31' }, - ['1917160757'] = { Name = 'vfx_it2_32' }, - ['-2099106194'] = { Name = 'vfx_it2_33' }, - ['-976899020'] = { Name = 'vfx_it2_34' }, - ['-531764924'] = { Name = 'vfx_it2_35' }, - ['769164384'] = { Name = 'vfx_it2_36' }, - ['1204336704'] = { Name = 'vfx_it2_37' }, - ['-1821454457'] = { Name = 'vfx_it2_38' }, - ['-1656757463'] = { Name = 'vfx_it2_39' }, - ['-1457198910'] = { Name = 'vfx_it3_00' }, - ['1000246711'] = { Name = 'vfx_it3_01' }, - ['522605771'] = { Name = 'vfx_it3_02' }, - ['714828725'] = { Name = 'vfx_it3_03' }, - ['63479312'] = { Name = 'vfx_it3_04' }, - ['235319948'] = { Name = 'vfx_it3_05' }, - ['777679659'] = { Name = 'vfx_it3_06' }, - ['-1073015154'] = { Name = 'vfx_it3_07' }, - ['301775472'] = { Name = 'vfx_it3_08' }, - ['565664229'] = { Name = 'vfx_it3_09' }, - ['-842648184'] = { Name = 'vfx_it3_11' }, - ['-2014664350'] = { Name = 'vfx_it3_12' }, - ['2108724462'] = { Name = 'vfx_it3_13' }, - ['-1553571751'] = { Name = 'vfx_it3_14' }, - ['-1694281837'] = { Name = 'vfx_it3_15' }, - ['-811583244'] = { Name = 'vfx_it3_16' }, - ['634971492'] = { Name = 'vfx_it3_17' }, - ['-231899634'] = { Name = 'vfx_it3_18' }, - ['-527639859'] = { Name = 'vfx_it3_19' }, - ['-1093593518'] = { Name = 'vfx_it3_20' }, - ['748450279'] = { Name = 'vfx_it3_21' }, - ['1515113803'] = { Name = 'vfx_it3_22' }, - ['1207969966'] = { Name = 'vfx_it3_23' }, - ['-174685220'] = { Name = 'vfx_it3_24' }, - ['1677058201'] = { Name = 'vfx_it3_25' }, - ['1147806074'] = { Name = 'vfx_it3_26' }, - ['991956710'] = { Name = 'vfx_it3_27' }, - ['1873868807'] = { Name = 'vfx_it3_28' }, - ['1451869625'] = { Name = 'vfx_it3_29' }, - ['-1021931916'] = { Name = 'vfx_it3_30' }, - ['852815347'] = { Name = 'vfx_it3_31' }, - ['923137625'] = { Name = 'vfx_it3_32' }, - ['-983330030'] = { Name = 'vfx_it3_33' }, - ['-662587058'] = { Name = 'vfx_it3_34' }, - ['-381723959'] = { Name = 'vfx_it3_35' }, - ['2081390699'] = { Name = 'vfx_it3_36' }, - ['-1832210975'] = { Name = 'vfx_it3_37' }, - ['-1586214092'] = { Name = 'vfx_it3_38' }, - ['-1237945160'] = { Name = 'vfx_it3_39' }, - ['-1773620899'] = { Name = 'vfx_it3_40' }, - ['-418983208'] = { Name = 'vfx_it3_41' }, - ['-915388655'] = { Name = 'vfx_rnd_wave_01' }, - ['2007245690'] = { Name = 'vfx_rnd_wave_02' }, - ['-1387098410'] = { Name = 'vfx_rnd_wave_03' }, - ['-1489275558'] = { Name = 'vfx_wall_wave_01' }, - ['949524510'] = { Name = 'vfx_wall_wave_02' }, - ['1917946759'] = { Name = 'vfx_wall_wave_03' }, - ['-825837129'] = { Name = 'vigero' }, - ['-1353081087'] = { Name = 'vindicator' }, - ['-498054846'] = { Name = 'virgo' }, - ['-899509638'] = { Name = 'virgo2' }, - ['16646064'] = { Name = 'virgo3' }, - ['-1720513558'] = { Name = 'vodkarow' }, - ['-1845487887'] = { Name = 'volatus' }, - ['-1622444098'] = { Name = 'voltic' }, - ['989294410'] = { Name = 'voltic2' }, - ['2006667053'] = { Name = 'voodoo' }, - ['523724515'] = { Name = 'voodoo2' }, - ['-609625092'] = { Name = 'vortex' }, - ['-259706355'] = { Name = 'w_am_baseball_hi' }, - ['-383950123'] = { Name = 'w_am_baseball' }, - ['1807506906'] = { Name = 'w_am_brfcase' }, - ['-1400434704'] = { Name = 'w_am_case' }, - ['-1073612701'] = { Name = 'w_am_digiscanner_hi' }, - ['520317490'] = { Name = 'w_am_digiscanner' }, - ['-171327159'] = { Name = 'w_am_fire_exting' }, - ['-1539617090'] = { Name = 'w_am_flare_hi' }, - ['-1564193152'] = { Name = 'w_am_flare' }, - ['242383520'] = { Name = 'w_am_jerrycan' }, - ['-833920933'] = { Name = 'w_ar_advancedrifle_hi' }, - ['-1573551058'] = { Name = 'w_ar_advancedrifle_mag1' }, - ['-1865686693'] = { Name = 'w_ar_advancedrifle_mag2' }, - ['-1707584974'] = { Name = 'w_ar_advancedrifle' }, - ['1678804838'] = { Name = 'w_ar_assaultrifle_hi' }, - ['1044133150'] = { Name = 'w_ar_assaultrifle_mag1' }, - ['-1072154412'] = { Name = 'w_ar_assaultrifle_mag2' }, - ['273925117'] = { Name = 'w_ar_assaultrifle' }, - ['-1565195963'] = { Name = 'w_ar_bullpuprifle_mag1' }, - ['-1258838582'] = { Name = 'w_ar_bullpuprifle_mag2' }, - ['-1288559573'] = { Name = 'w_ar_bullpuprifle' }, - ['104716717'] = { Name = 'w_ar_carbinerifle_hi' }, - ['-1142562815'] = { Name = 'w_ar_carbinerifle_mag1' }, - ['1370360727'] = { Name = 'w_ar_carbinerifle_mag2' }, - ['1026431720'] = { Name = 'w_ar_carbinerifle' }, - ['1652015642'] = { Name = 'w_ar_musket' }, - ['-1439230643'] = { Name = 'w_ar_railgun_mag1' }, - ['-1876506235'] = { Name = 'w_ar_railgun' }, - ['-177292685'] = { Name = 'w_ar_specialcarbine_mag1' }, - ['-408150290'] = { Name = 'w_ar_specialcarbine_mag2' }, - ['-1745643757'] = { Name = 'w_ar_specialcarbine' }, - ['-213027648'] = { Name = 'w_at_ar_afgrip_hi' }, - ['-549787707'] = { Name = 'w_at_ar_afgrip' }, - ['2035575766'] = { Name = 'w_at_ar_flsh_hi' }, - ['-1572366268'] = { Name = 'w_at_ar_flsh' }, - ['-1166471211'] = { Name = 'w_at_ar_supp_02_hi' }, - ['-433207992'] = { Name = 'w_at_ar_supp_02' }, - ['-2012934461'] = { Name = 'w_at_ar_supp_hi' }, - ['2127522061'] = { Name = 'w_at_ar_supp' }, - ['-1092366761'] = { Name = 'w_at_pi_flsh_hi' }, - ['1130912089'] = { Name = 'w_at_pi_flsh' }, - ['-1333942516'] = { Name = 'w_at_pi_supp_2' }, - ['224713395'] = { Name = 'w_at_pi_supp_hi' }, - ['-1025213666'] = { Name = 'w_at_pi_supp' }, - ['412900178'] = { Name = 'w_at_railcover_01_hi' }, - ['1508551686'] = { Name = 'w_at_railcover_01' }, - ['-386727222'] = { Name = 'w_at_scope_large_hi' }, - ['902783233'] = { Name = 'w_at_scope_large' }, - ['1234627046'] = { Name = 'w_at_scope_macro_2' }, - ['1324672924'] = { Name = 'w_at_scope_macro_hi' }, - ['-1148808407'] = { Name = 'w_at_scope_macro' }, - ['-725521582'] = { Name = 'w_at_scope_max_hi' }, - ['514930793'] = { Name = 'w_at_scope_max' }, - ['-1974675239'] = { Name = 'w_at_scope_medium_hi' }, - ['-98833'] = { Name = 'w_at_scope_medium' }, - ['1517447672'] = { Name = 'w_at_scope_small_2' }, - ['-132507543'] = { Name = 'w_at_scope_small_hi' }, - ['-1089070097'] = { Name = 'w_at_scope_small' }, - ['-1376365801'] = { Name = 'w_at_sr_supp_2' }, - ['-1982547489'] = { Name = 'w_at_sr_supp_hi' }, - ['985886684'] = { Name = 'w_at_sr_supp' }, - ['1876445962'] = { Name = 'w_ex_apmine' }, - ['1090792329'] = { Name = 'w_ex_birdshat' }, - ['-1809859709'] = { Name = 'w_ex_grenadefrag_hi' }, - ['290600267'] = { Name = 'w_ex_grenadefrag' }, - ['1591549914'] = { Name = 'w_ex_grenadesmoke' }, - ['-1623789737'] = { Name = 'w_ex_molotov_hi' }, - ['-880609331'] = { Name = 'w_ex_molotov' }, - ['-329092498'] = { Name = 'w_ex_pe_hi' }, - ['-1110203649'] = { Name = 'w_ex_pe' }, - ['1297482736'] = { Name = 'w_ex_snowball' }, - ['1559922313'] = { Name = 'w_lr_40mm_pu' }, - ['1948242884'] = { Name = 'w_lr_40mm' }, - ['439782367'] = { Name = 'w_lr_firework_rocket' }, - ['491091384'] = { Name = 'w_lr_firework' }, - ['-600317048'] = { Name = 'w_lr_grenadelauncher_hi' }, - ['-606683246'] = { Name = 'w_lr_grenadelauncher' }, - ['-1146260322'] = { Name = 'w_lr_homing_rocket' }, - ['1901887007'] = { Name = 'w_lr_homing' }, - ['-58701374'] = { Name = 'w_lr_rpg_hi' }, - ['-547018963'] = { Name = 'w_lr_rpg_rocket_pu' }, - ['-1707997257'] = { Name = 'w_lr_rpg_rocket' }, - ['-218858073'] = { Name = 'w_lr_rpg' }, - ['32653987'] = { Name = 'w_me_bat' }, - ['1150762982'] = { Name = 'w_me_bottle' }, - ['1862268168'] = { Name = 'w_me_crowbar' }, - ['601713565'] = { Name = 'w_me_dagger' }, - ['-580196246'] = { Name = 'w_me_gclub' }, - ['64104227'] = { Name = 'w_me_hammer' }, - ['1653948529'] = { Name = 'w_me_hatchet' }, - ['-1982443329'] = { Name = 'w_me_knife_01' }, - ['-1634978236'] = { Name = 'w_me_nightstick' }, - ['-703091127'] = { Name = 'w_mg_combatmg_hi' }, - ['-548430598'] = { Name = 'w_mg_combatmg_mag1' }, - ['-377179804'] = { Name = 'w_mg_combatmg_mag2' }, - ['-739394447'] = { Name = 'w_mg_combatmg' }, - ['-261565305'] = { Name = 'w_mg_mg_hi' }, - ['342630364'] = { Name = 'w_mg_mg_mag1' }, - ['1494231331'] = { Name = 'w_mg_mg_mag2' }, - ['-2056364402'] = { Name = 'w_mg_mg' }, - ['309921664'] = { Name = 'w_mg_minigun_hi' }, - ['422658457'] = { Name = 'w_mg_minigun' }, - ['-1106867781'] = { Name = 'w_pi_appistol_hi' }, - ['1789204922'] = { Name = 'w_pi_appistol_mag1' }, - ['-1670447795'] = { Name = 'w_pi_appistol_mag2' }, - ['905830540'] = { Name = 'w_pi_appistol' }, - ['554601322'] = { Name = 'w_pi_combatpistol_hi' }, - ['1099734388'] = { Name = 'w_pi_combatpistol_mag1' }, - ['1256108056'] = { Name = 'w_pi_combatpistol_mag2' }, - ['403140669'] = { Name = 'w_pi_combatpistol' }, - ['576500243'] = { Name = 'w_pi_flaregun_mag1' }, - ['665801196'] = { Name = 'w_pi_flaregun_shell' }, - ['1349014803'] = { Name = 'w_pi_flaregun' }, - ['-642859694'] = { Name = 'w_pi_heavypistol_mag1' }, - ['-404137529'] = { Name = 'w_pi_heavypistol_mag2' }, - ['1927398017'] = { Name = 'w_pi_heavypistol' }, - ['1182503934'] = { Name = 'w_pi_pistol_hi' }, - ['-1899196150'] = { Name = 'w_pi_pistol_mag1' }, - ['-1592052313'] = { Name = 'w_pi_pistol_mag2' }, - ['1467525553'] = { Name = 'w_pi_pistol' }, - ['-72482195'] = { Name = 'w_pi_pistol50_hi' }, - ['874805497'] = { Name = 'w_pi_pistol50_mag1' }, - ['460539799'] = { Name = 'w_pi_pistol50_mag2' }, - ['-178484015'] = { Name = 'w_pi_pistol50' }, - ['-902398285'] = { Name = 'w_pi_sns_pistol_mag1' }, - ['-1202660632'] = { Name = 'w_pi_sns_pistol_mag2' }, - ['339962010'] = { Name = 'w_pi_sns_pistol' }, - ['-1207333876'] = { Name = 'w_pi_stungun_hi' }, - ['1609356763'] = { Name = 'w_pi_stungun' }, - ['2068113221'] = { Name = 'w_pi_vintage_pistol_mag1' }, - ['-1786569791'] = { Name = 'w_pi_vintage_pistol_mag2' }, - ['-1124046276'] = { Name = 'w_pi_vintage_pistol' }, - ['-2076813088'] = { Name = 'w_sb_assaultsmg_hi' }, - ['-312532388'] = { Name = 'w_sb_assaultsmg_mag1' }, - ['-546011513'] = { Name = 'w_sb_assaultsmg_mag2' }, - ['-473574177'] = { Name = 'w_sb_assaultsmg' }, - ['-710679252'] = { Name = 'w_sb_gusenberg_mag1' }, - ['1691386759'] = { Name = 'w_sb_gusenberg_mag2' }, - ['574348740'] = { Name = 'w_sb_gusenberg' }, - ['-1801400717'] = { Name = 'w_sb_microsmg_hi' }, - ['-31119053'] = { Name = 'w_sb_microsmg_mag1' }, - ['-272135048'] = { Name = 'w_sb_microsmg_mag2' }, - ['-1056713654'] = { Name = 'w_sb_microsmg' }, - ['461438061'] = { Name = 'w_sb_smg_hi' }, - ['-827974527'] = { Name = 'w_sb_smg_mag1' }, - ['666848946'] = { Name = 'w_sb_smg_mag2' }, - ['-500057996'] = { Name = 'w_sb_smg' }, - ['-460448652'] = { Name = 'w_sg_assaultshotgun_hi' }, - ['-1793660294'] = { Name = 'w_sg_assaultshotgun_mag1' }, - ['-1411835906'] = { Name = 'w_sg_assaultshotgun_mag2' }, - ['1255410010'] = { Name = 'w_sg_assaultshotgun' }, - ['1265592260'] = { Name = 'w_sg_bullpupshotgun_hi' }, - ['-1598212834'] = { Name = 'w_sg_bullpupshotgun' }, - ['-1253076872'] = { Name = 'w_sg_heavyshotgun_mag1' }, - ['-992039018'] = { Name = 'w_sg_heavyshotgun_mag2' }, - ['-1209868881'] = { Name = 'w_sg_heavyshotgun' }, - ['607897242'] = { Name = 'w_sg_pumpshotgun_hi' }, - ['689760839'] = { Name = 'w_sg_pumpshotgun' }, - ['2075991356'] = { Name = 'w_sg_sawnoff_hi' }, - ['-675841386'] = { Name = 'w_sg_sawnoff' }, - ['-250831757'] = { Name = 'w_sr_heavysniper_hi' }, - ['-850235586'] = { Name = 'w_sr_heavysniper_mag1' }, - ['-746966080'] = { Name = 'w_sr_heavysniper' }, - ['-879932022'] = { Name = 'w_sr_marksmanrifle_mag1' }, - ['-707567082'] = { Name = 'w_sr_marksmanrifle_mag2' }, - ['-1711248638'] = { Name = 'w_sr_marksmanrifle' }, - ['-807686903'] = { Name = 'w_sr_sniperrifle_hi' }, - ['2095405400'] = { Name = 'w_sr_sniperrifle_mag1' }, - ['346403307'] = { Name = 'w_sr_sniperrifle' }, - ['1373123368'] = { Name = 'warrener' }, - ['1777363799'] = { Name = 'washington' }, - ['-1912017790'] = { Name = 'wastelander' }, - ['519074619'] = { Name = 'watercooler_bottle001' }, - ['2010064375'] = { Name = 'wheel_bkf_01' }, - ['-1401718549'] = { Name = 'wheel_bkf_01w' }, - ['1702855000'] = { Name = 'wheel_bkf_02' }, - ['-1487539624'] = { Name = 'wheel_bkf_02w' }, - ['-601854308'] = { Name = 'wheel_bkf_03' }, - ['-669986027'] = { Name = 'wheel_bkf_03w' }, - ['-315191116'] = { Name = 'wheel_bkf_04' }, - ['2010843439'] = { Name = 'wheel_bkf_04w' }, - ['1681096384'] = { Name = 'wheel_bkf_05' }, - ['-57109064'] = { Name = 'wheel_bkf_05w' }, - ['1373821471'] = { Name = 'wheel_bkf_06' }, - ['-33155141'] = { Name = 'wheel_bkf_06w' }, - ['681674653'] = { Name = 'wheel_bkf_07' }, - ['-20964245'] = { Name = 'wheel_bkf_07w' }, - ['-1409446333'] = { Name = 'wheel_bkf_08' }, - ['339098863'] = { Name = 'wheel_bkf_08w' }, - ['440920790'] = { Name = 'wheel_bkf_09' }, - ['-665204513'] = { Name = 'wheel_bkf_09w' }, - ['662111904'] = { Name = 'wheel_bkf_10' }, - ['-215018164'] = { Name = 'wheel_bkf_10w' }, - ['-1858086352'] = { Name = 'wheel_bkf_11' }, - ['-2071513454'] = { Name = 'wheel_bkf_11w' }, - ['-2108015515'] = { Name = 'wheel_bkf_12' }, - ['1983389068'] = { Name = 'wheel_bkf_12w' }, - ['1845695415'] = { Name = 'wheel_bkf_13' }, - ['-1884467378'] = { Name = 'wheel_bkf_13w' }, - ['-967233645'] = { Name = 'wheel_bkr_01' }, - ['-1995101519'] = { Name = 'wheel_bkr_01w' }, - ['-1272607956'] = { Name = 'wheel_bkr_02' }, - ['-1143762615'] = { Name = 'wheel_bkr_02w' }, - ['1996099798'] = { Name = 'wheel_bkr_03' }, - ['304102017'] = { Name = 'wheel_bkr_03w' }, - ['-1773121662'] = { Name = 'wheel_bkr_04' }, - ['-146668055'] = { Name = 'wheel_bkr_04w' }, - ['1528518937'] = { Name = 'wheel_bkr_05' }, - ['940573736'] = { Name = 'wheel_bkr_05w' }, - ['-1992379041'] = { Name = 'wheel_bkr_06' }, - ['635003091'] = { Name = 'wheel_bkr_06w' }, - ['425022874'] = { Name = 'wheel_bkr_07' }, - ['-1155865412'] = { Name = 'wheel_bkr_07w' }, - ['1189687489'] = { Name = 'wheel_bkr_08' }, - ['1916162560'] = { Name = 'wheel_bkr_08w' }, - ['-270597458'] = { Name = 'wheel_bkr_09' }, - ['1232994128'] = { Name = 'wheel_bkr_09w' }, - ['-1692805759'] = { Name = 'wheel_bkr_10' }, - ['272821082'] = { Name = 'wheel_bkr_10w' }, - ['1353531669'] = { Name = 'wheel_bkr_11' }, - ['617628616'] = { Name = 'wheel_bkr_11w' }, - ['1718054025'] = { Name = 'wheel_bkr_12' }, - ['-567855777'] = { Name = 'wheel_bkr_12w' }, - ['765098736'] = { Name = 'wheel_bkr_13' }, - ['104270038'] = { Name = 'wheel_bkr_13w' }, - ['-668546108'] = { Name = 'wheel_drft_01' }, - ['633235711'] = { Name = 'wheel_drft_01w' }, - ['2098664870'] = { Name = 'wheel_drft_02' }, - ['841713021'] = { Name = 'wheel_drft_02w' }, - ['-1435307939'] = { Name = 'wheel_drft_03' }, - ['-1085301121'] = { Name = 'wheel_drft_03w' }, - ['-1628645039'] = { Name = 'wheel_drft_04' }, - ['885523522'] = { Name = 'wheel_drft_04w' }, - ['1131553365'] = { Name = 'wheel_drft_05' }, - ['-22178126'] = { Name = 'wheel_drft_05w' }, - ['976490457'] = { Name = 'wheel_drft_06' }, - ['1170319481'] = { Name = 'wheel_drft_06w' }, - ['1743579978'] = { Name = 'wheel_drft_07' }, - ['1104486204'] = { Name = 'wheel_drft_07w' }, - ['1475038023'] = { Name = 'wheel_drft_08' }, - ['1715069549'] = { Name = 'wheel_drft_08w' }, - ['-54881049'] = { Name = 'wheel_drft_09' }, - ['889814705'] = { Name = 'wheel_drft_09w' }, - ['1317221055'] = { Name = 'wheel_drft_10' }, - ['-1984806617'] = { Name = 'wheel_drft_10w' }, - ['1152720675'] = { Name = 'wheel_drft_11' }, - ['-1497138071'] = { Name = 'wheel_drft_11w' }, - ['-1427281002'] = { Name = 'wheel_drft_12' }, - ['170868663'] = { Name = 'wheel_drft_12w' }, - ['-1617537816'] = { Name = 'wheel_drft_13' }, - ['192791412'] = { Name = 'wheel_drft_13w' }, - ['-1930973301'] = { Name = 'wheel_drft_14' }, - ['-853457980'] = { Name = 'wheel_drft_14w' }, - ['2058685222'] = { Name = 'wheel_drft_15' }, - ['-1145986555'] = { Name = 'wheel_drft_15w' }, - ['-395123040'] = { Name = 'wheel_drft_16' }, - ['1313850359'] = { Name = 'wheel_drft_16w' }, - ['-699841971'] = { Name = 'wheel_drft_17' }, - ['-590061030'] = { Name = 'wheel_drft_17w' }, - ['539317760'] = { Name = 'wheel_drft_18' }, - ['-922962237'] = { Name = 'wheel_drft_18w' }, - ['-739459692'] = { Name = 'wheel_drft_19' }, - ['-541891248'] = { Name = 'wheel_drft_19w' }, - ['-496838304'] = { Name = 'wheel_drft_20' }, - ['187126008'] = { Name = 'wheel_drft_20w' }, - ['-2013911928'] = { Name = 'wheel_drft_21' }, - ['835395423'] = { Name = 'wheel_drft_21w' }, - ['-983720106'] = { Name = 'wheel_drft_22' }, - ['-824158629'] = { Name = 'wheel_drft_22w' }, - ['-209486943'] = { Name = 'wheel_drft_23' }, - ['1725237094'] = { Name = 'wheel_drft_23w' }, - ['763522970'] = { Name = 'wheel_drft_24' }, - ['-34491659'] = { Name = 'wheel_drft_24w' }, - ['1028912594'] = { Name = 'wheel_hiend_01' }, - ['-803606181'] = { Name = 'wheel_hiend_01w' }, - ['752276696'] = { Name = 'wheel_hiend_02' }, - ['-1541662176'] = { Name = 'wheel_hiend_02w' }, - ['-1327768352'] = { Name = 'wheel_hiend_03' }, - ['1791075348'] = { Name = 'wheel_hiend_03w' }, - ['1394942324'] = { Name = 'wheel_hiend_04' }, - ['-375741648'] = { Name = 'wheel_hiend_04w' }, - ['1162839497'] = { Name = 'wheel_hiend_05' }, - ['1301374840'] = { Name = 'wheel_hiend_05w' }, - ['1970300426'] = { Name = 'wheel_hiend_06' }, - ['-219630752'] = { Name = 'wheel_hiend_06w' }, - ['-102404366'] = { Name = 'wheel_hiend_07' }, - ['-1416116989'] = { Name = 'wheel_hiend_07w' }, - ['-1683180926'] = { Name = 'wheel_hiend_08' }, - ['-1151244814'] = { Name = 'wheel_hiend_08w' }, - ['-1905584129'] = { Name = 'wheel_hiend_09' }, - ['248482137'] = { Name = 'wheel_hiend_09w' }, - ['-1549649255'] = { Name = 'wheel_hiend_10' }, - ['11518407'] = { Name = 'wheel_hiend_10w' }, - ['-2001206075'] = { Name = 'wheel_hiend_11' }, - ['-459765587'] = { Name = 'wheel_hiend_11w' }, - ['-1205476448'] = { Name = 'wheel_hiend_12' }, - ['-1900553395'] = { Name = 'wheel_hiend_12w' }, - ['918184135'] = { Name = 'wheel_hiend_13' }, - ['469073442'] = { Name = 'wheel_hiend_13w' }, - ['758402491'] = { Name = 'wheel_hiend_14' }, - ['-906766136'] = { Name = 'wheel_hiend_14w' }, - ['1368036971'] = { Name = 'wheel_hiend_15' }, - ['532185960'] = { Name = 'wheel_hiend_15w' }, - ['2144629502'] = { Name = 'wheel_hiend_16' }, - ['1810012791'] = { Name = 'wheel_hiend_16w' }, - ['-1923969522'] = { Name = 'wheel_hiend_17' }, - ['685255520'] = { Name = 'wheel_hiend_17w' }, - ['-1322658372'] = { Name = 'wheel_hiend_18' }, - ['361498088'] = { Name = 'wheel_hiend_18w' }, - ['-553668245'] = { Name = 'wheel_hiend_19' }, - ['-1659922923'] = { Name = 'wheel_hiend_19w' }, - ['1845153859'] = { Name = 'wheel_hiend_20' }, - ['-1366314880'] = { Name = 'wheel_hiend_20w' }, - ['-292611567'] = { Name = 'wheel_loride_01' }, - ['635554795'] = { Name = 'wheel_loride_01w' }, - ['-1501361670'] = { Name = 'wheel_loride_02' }, - ['-1283148862'] = { Name = 'wheel_loride_02w' }, - ['-904539873'] = { Name = 'wheel_loride_03' }, - ['794472064'] = { Name = 'wheel_loride_03w' }, - ['841163064'] = { Name = 'wheel_loride_04' }, - ['-1708312664'] = { Name = 'wheel_loride_04w' }, - ['608863623'] = { Name = 'wheel_loride_05' }, - ['-1700712208'] = { Name = 'wheel_loride_05w' }, - ['547323441'] = { Name = 'wheel_loride_06' }, - ['1255904966'] = { Name = 'wheel_loride_06w' }, - ['54215529'] = { Name = 'wheel_loride_07' }, - ['-154636275'] = { Name = 'wheel_loride_07w' }, - ['-1079264193'] = { Name = 'wheel_loride_08' }, - ['-1442810398'] = { Name = 'wheel_loride_08w' }, - ['-1578270525'] = { Name = 'wheel_loride_09' }, - ['19539348'] = { Name = 'wheel_loride_09w' }, - ['-108351824'] = { Name = 'wheel_loride_10' }, - ['2008638742'] = { Name = 'wheel_loride_10w' }, - ['1195231765'] = { Name = 'wheel_loride_11' }, - ['-2138369183'] = { Name = 'wheel_loride_11w' }, - ['309747847'] = { Name = 'wheel_loride_12' }, - ['646987961'] = { Name = 'wheel_loride_12w' }, - ['-471628958'] = { Name = 'wheel_loride_13' }, - ['730221501'] = { Name = 'wheel_loride_13w' }, - ['1077558286'] = { Name = 'wheel_loride_14' }, - ['-312905608'] = { Name = 'wheel_loride_14w' }, - ['-1903077189'] = { Name = 'wheel_loride_15' }, - ['1857284967'] = { Name = 'wheel_loride_15w' }, - ['2043595418'] = { Name = 'wheel_musc_01' }, - ['925950032'] = { Name = 'wheel_musc_01w' }, - ['-1938526235'] = { Name = 'wheel_musc_02' }, - ['630766624'] = { Name = 'wheel_musc_02w' }, - ['1665310082'] = { Name = 'wheel_musc_03' }, - ['-315732324'] = { Name = 'wheel_musc_03w' }, - ['1737401882'] = { Name = 'wheel_musc_04' }, - ['1479254821'] = { Name = 'wheel_musc_04w' }, - ['-1056548596'] = { Name = 'wheel_musc_05' }, - ['1785219974'] = { Name = 'wheel_musc_05w' }, - ['-749077069'] = { Name = 'wheel_musc_06' }, - ['143197825'] = { Name = 'wheel_musc_06w' }, - ['-1668575209'] = { Name = 'wheel_musc_07' }, - ['545765878'] = { Name = 'wheel_musc_07w' }, - ['-1367198716'] = { Name = 'wheel_musc_08' }, - ['-758997739'] = { Name = 'wheel_musc_08w' }, - ['-94909534'] = { Name = 'wheel_musc_09' }, - ['183932169'] = { Name = 'wheel_musc_09w' }, - ['-1280344842'] = { Name = 'wheel_musc_10' }, - ['319084271'] = { Name = 'wheel_musc_10w' }, - ['395723966'] = { Name = 'wheel_musc_11' }, - ['878453233'] = { Name = 'wheel_musc_11w' }, - ['-971890245'] = { Name = 'wheel_musc_12' }, - ['-1354131794'] = { Name = 'wheel_musc_12w' }, - ['-1145107179'] = { Name = 'wheel_musc_13' }, - ['-1195565279'] = { Name = 'wheel_musc_13w' }, - ['-361436544'] = { Name = 'wheel_musc_14' }, - ['1611623587'] = { Name = 'wheel_musc_14w' }, - ['174369375'] = { Name = 'wheel_musc_15' }, - ['-1965368135'] = { Name = 'wheel_musc_15w' }, - ['18716625'] = { Name = 'wheel_musc_16' }, - ['1988309738'] = { Name = 'wheel_musc_16w' }, - ['796423302'] = { Name = 'wheel_musc_17' }, - ['967459113'] = { Name = 'wheel_musc_17w' }, - ['-319525289'] = { Name = 'wheel_musc_20' }, - ['2026525785'] = { Name = 'wheel_musc_20w' }, - ['-781405373'] = { Name = 'wheel_off_01' }, - ['-1885774086'] = { Name = 'wheel_off_01w' }, - ['-422322671'] = { Name = 'wheel_off_02' }, - ['1224040547'] = { Name = 'wheel_off_02w' }, - ['132456519'] = { Name = 'wheel_off_03' }, - ['-884667460'] = { Name = 'wheel_off_03w' }, - ['513428913'] = { Name = 'wheel_off_04' }, - ['-379304230'] = { Name = 'wheel_off_04w' }, - ['-464103126'] = { Name = 'wheel_off_05' }, - ['-1131481848'] = { Name = 'wheel_off_05w' }, - ['-91978362'] = { Name = 'wheel_off_06' }, - ['-1778047275'] = { Name = 'wheel_off_06w' }, - ['-956883348'] = { Name = 'wheel_off_07' }, - ['1862129587'] = { Name = 'wheel_off_07w' }, - ['-718095645'] = { Name = 'wheel_off_08' }, - ['1380392230'] = { Name = 'wheel_off_08w' }, - ['-1556982073'] = { Name = 'wheel_off_09' }, - ['2017399950'] = { Name = 'wheel_off_09w' }, - ['74356774'] = { Name = 'wheel_off_10' }, - ['569538807'] = { Name = 'wheel_off_10w' }, - ['-977075438'] = { Name = 'wheel_spt_01' }, - ['2050543069'] = { Name = 'wheel_spt_01w' }, - ['925263319'] = { Name = 'wheel_spt_02' }, - ['253459228'] = { Name = 'wheel_spt_02w' }, - ['561265267'] = { Name = 'wheel_spt_03' }, - ['269712364'] = { Name = 'wheel_spt_03w' }, - ['283220302'] = { Name = 'wheel_spt_04' }, - ['-902527693'] = { Name = 'wheel_spt_04w' }, - ['-2096759399'] = { Name = 'wheel_spt_05' }, - ['-971998261'] = { Name = 'wheel_spt_05w' }, - ['1880872901'] = { Name = 'wheel_spt_06' }, - ['694240727'] = { Name = 'wheel_spt_06w' }, - ['1586508974'] = { Name = 'wheel_spt_07' }, - ['1084748612'] = { Name = 'wheel_spt_07w' }, - ['-1437348712'] = { Name = 'wheel_spt_08' }, - ['315993004'] = { Name = 'wheel_spt_08w' }, - ['-1677774865'] = { Name = 'wheel_spt_09' }, - ['1211766672'] = { Name = 'wheel_spt_09w' }, - ['414064175'] = { Name = 'wheel_spt_10' }, - ['-2101896803'] = { Name = 'wheel_spt_10w' }, - ['682081826'] = { Name = 'wheel_spt_11' }, - ['600890105'] = { Name = 'wheel_spt_11w' }, - ['-152642911'] = { Name = 'wheel_spt_12' }, - ['526766403'] = { Name = 'wheel_spt_12w' }, - ['86832941'] = { Name = 'wheel_spt_13' }, - ['-495558931'] = { Name = 'wheel_spt_13w' }, - ['-746384422'] = { Name = 'wheel_spt_14' }, - ['2133104491'] = { Name = 'wheel_spt_14w' }, - ['1073016012'] = { Name = 'wheel_spt_15' }, - ['-885985989'] = { Name = 'wheel_spt_15w' }, - ['259656663'] = { Name = 'wheel_spt_16' }, - ['-351165128'] = { Name = 'wheel_spt_16w' }, - ['482616939'] = { Name = 'wheel_spt_17' }, - ['1201889150'] = { Name = 'wheel_spt_17w' }, - ['-351517956'] = { Name = 'wheel_spt_18' }, - ['-392945087'] = { Name = 'wheel_spt_18w' }, - ['-83959071'] = { Name = 'wheel_spt_19' }, - ['-1148794509'] = { Name = 'wheel_spt_19w' }, - ['1698805833'] = { Name = 'wheel_spt_20' }, - ['-328059960'] = { Name = 'wheel_spt_20w' }, - ['828395659'] = { Name = 'wheel_spt_21' }, - ['-803184271'] = { Name = 'wheel_spt_21w' }, - ['1067281669'] = { Name = 'wheel_spt_22' }, - ['-1477275146'] = { Name = 'wheel_spt_22w' }, - ['239307346'] = { Name = 'wheel_spt_23' }, - ['1625097400'] = { Name = 'wheel_spt_23w' }, - ['478783198'] = { Name = 'wheel_spt_24' }, - ['-2127706567'] = { Name = 'wheel_spt_24w' }, - ['754534325'] = { Name = 'wheel_spt_25' }, - ['-1957318763'] = { Name = 'wheel_spt_25w' }, - ['1879309698'] = { Name = 'wheel_suv_01' }, - ['1614380651'] = { Name = 'wheel_suv_01w' }, - ['1038948693'] = { Name = 'wheel_suv_02' }, - ['-1718913930'] = { Name = 'wheel_suv_02w' }, - ['1135617243'] = { Name = 'wheel_suv_03' }, - ['2039984999'] = { Name = 'wheel_suv_03w' }, - ['395496609'] = { Name = 'wheel_suv_04' }, - ['334158079'] = { Name = 'wheel_suv_04w' }, - ['627075132'] = { Name = 'wheel_suv_05' }, - ['705201170'] = { Name = 'wheel_suv_05w' }, - ['-147878949'] = { Name = 'wheel_suv_06' }, - ['-1655902667'] = { Name = 'wheel_suv_06w' }, - ['-586000487'] = { Name = 'wheel_suv_07' }, - ['1087550438'] = { Name = 'wheel_suv_07w' }, - ['-325126478'] = { Name = 'wheel_suv_08' }, - ['207507138'] = { Name = 'wheel_suv_08w' }, - ['-1176956633'] = { Name = 'wheel_suv_09' }, - ['-1817322421'] = { Name = 'wheel_suv_09w' }, - ['-587632973'] = { Name = 'wheel_suv_10' }, - ['-2088916399'] = { Name = 'wheel_suv_10w' }, - ['-1432253948'] = { Name = 'wheel_suv_11' }, - ['447273461'] = { Name = 'wheel_suv_11w' }, - ['-1177278359'] = { Name = 'wheel_suv_12' }, - ['-2103338871'] = { Name = 'wheel_suv_12w' }, - ['120046355'] = { Name = 'wheel_suv_13' }, - ['-192971345'] = { Name = 'wheel_suv_13w' }, - ['406152494'] = { Name = 'wheel_suv_14' }, - ['-763282953'] = { Name = 'wheel_suv_14w' }, - ['-437092183'] = { Name = 'wheel_suv_15' }, - ['1347073664'] = { Name = 'wheel_suv_15w' }, - ['85573367'] = { Name = 'wheel_suv_16' }, - ['812873758'] = { Name = 'wheel_suv_16w' }, - ['1383127460'] = { Name = 'wheel_suv_17' }, - ['-649114933'] = { Name = 'wheel_suv_17w' }, - ['1598747480'] = { Name = 'wheel_suv_18' }, - ['643458756'] = { Name = 'wheel_suv_18w' }, - ['1024110296'] = { Name = 'wheel_suv_19' }, - ['-976378108'] = { Name = 'wheel_suv_19w' }, - ['1581459400'] = { Name = 'windsor' }, - ['-1930048799'] = { Name = 'windsor2' }, - ['-1551002089'] = { Name = 'winerow' }, - ['-618617997'] = { Name = 'wolfsbane' }, - ['1203490606'] = { Name = 'xls' }, - ['-432008408'] = { Name = 'xls2' }, - ['65402552'] = { Name = 'youga' }, - ['1026149675'] = { Name = 'youga2' }, - ['-1403128555'] = { Name = 'zentorno' }, - ['-1122289213'] = { Name = 'zion' }, - ['-1193103848'] = { Name = 'zion2' }, - ['-1009268949'] = { Name = 'zombiea' }, - ['-570033273'] = { Name = 'zombieb' }, - ['1919238784'] = { Name = 'zprop_bin_01a_old' }, - ['758895617'] = { Name = 'ztype' }, - } -} - -function hashList:getName(hash) - if (hash == nil or (type(hash) ~= 'number' and type(hash) ~= 'string')) then return false, nil end - if (type(hash) == 'number') then hash = tostring(hash) end - if (self.list == nil) then return false, nil end - - local objectName = (self.list or {})[hash] or nil - - if (objectName ~= nil) then - return true, objectName.Name or 'unknown' - end - - return false, nil -end - ---- Add hashList as module when available -Citizen.CreateThread(function() - while true do - if (addModule ~= nil and type(addModule) == 'function') then - addModule('hashList', hashList) - return - end - - Citizen.Wait(0) - end -end) \ No newline at end of file diff --git a/vendors/mustache.lua b/vendors/mustache.lua deleted file mode 100644 index fa44289..0000000 --- a/vendors/mustache.lua +++ /dev/null @@ -1,550 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitHub: https://github.com/ThymonA/FiveM-Mustache --- License: MIT License --- Author: Olivine Labs --- ThymonA --- Name: FiveM-Mustache --- Version: 1.3.1-0 --- Description: Logic-less {{mustache}} templates in FiveM with Lua ------------------------ [ CoreV ] ----------------------- -function CreateScanner(str) - local string_find, string_match, string_sub = string.find, string.match, string.sub - local self = {} - - self.str = str - self.tail = str - self.pos = 1 - - -- Returns `true` if the tail is empty (end of string). - self.eos = function() - return self.tail == '' - end - - -- Tries to match the given regular expression at the current position. - -- Returns the matched text if it can match, `null` otherwise. - self.scan = function(pattern) - local match = string_match(self.tail, pattern) - - if match and string_find(self.tail, pattern) == 1 then - self.tail = string_sub(self.tail, #match + 1) - self.pos = self.pos + #match - - return match - end - end - - -- Skips all text until the given regular expression can be matched. Returns - -- the skipped string, which is the entire tail of this scanner if no match - -- can be made. - self.scan_until = function(pattern) - local match - local pos = string_find(self.tail, pattern) - - if pos == nil then - match = self.tail - self.pos = self.pos + #self.tail - self.tail = "" - elseif pos == 1 then - match = nil - else - match = string_sub(self.tail, 1, pos - 1) - self.tail = string_sub(self.tail, pos) - self.pos = self.pos + #match - end - - return match - end - - local out = { - str = str, - tail = str, - pos = 1 - } - - return self - end - - function CreateContext(view, parent) - local self = {} - local string_find, string_split, tostring, type = string.find, string.split, tostring, type - - self.context = {} - self.context.__index = self.context - - self.view = view - self.parent = parent - self.cache = {} - - self.clear_cache = function() - self.cache = {} - end - - self.push = function(view) - return CreateContext(view, self) - end - - self.lookup = function(name) - local value = self.cache[name] - - if not value then - if name == "." then - value = self.view - else - local context = self - - while context do - if string_find(name, ".") > 0 then - local names = string_split(name, ".") - local i = 0 - - value = context.view - - if(type(value)) == "number" then - value = tostring(value) - end - - while value and i < #names do - i = i + 1 - value = value[names[i]] - end - else - value = context.view[name] - end - - if value then - break - end - - context = context.parent - end - end - - self.cache[name] = value - end - - return value - end - - local out = { - view = view, - parent = parent, - cache = {}, - } - - return self - end - - -- Breaks up the given `template` string into a tree of token objects. If - -- `tags` is given here it must be an array with two string values: the - -- opening and closing tags used in the template (e.g. ["<%", "%>"]). Of - -- course, the default is to use mustaches (i.e. Mustache.tags). - function CreateRenderer(...) - local self = {} - - local Context = CreateContext(...) - local error, ipairs, loadstring, pairs, setmetatable, tostring, type = error, ipairs, loadstring, pairs, setmetatable, tostring, type - local math_floor, math_max, string_find, string_gsub, string_split, string_sub, table_concat, table_insert, table_remove = math.floor, math.max, string.find, string.gsub, string.split, string.sub, table.concat, table.insert, table.remove - - local patterns = { - white = "%s*", - space = "%s+", - nonSpace = "%S", - eq = "%s*=", - curly = "%s*}", - tag = "[#\\^/>{&=!]" - } - - local html_escape_characters = { - ["&"] = "&", - ["<"] = "<", - [">"] = ">", - ['"'] = """, - ["'"] = "'", - ["/"] = "/" - } - - self.cache = {} - self.partial_cache = {} - self.tags = {"{{", "}}"} - - local function is_array(array) - if type(array) ~= "table" then return false end - local max, n = 0, 0 - for k, _ in pairs(array) do - if not (type(k) == "number" and k > 0 and math_floor(k) == k) then - return false - end - max = math_max(max, k) - n = n + 1 - end - return n == max - end - - -- Low-level function that compiles the given `tokens` into a - -- function that accepts two arguments: a Context and a - -- Renderer. - - local function compile_tokens(tokens, originalTemplate) - local subs = {} - - local function subrender(i, tokens) - if not subs[i] then - local fn = compile_tokens(tokens, originalTemplate) - subs[i] = function(ctx, rnd) return fn(ctx, rnd) end - end - return subs[i] - end - - local function render(ctx, rnd) - local buf = {} - local token, section - - for i, token in ipairs(tokens) do - local t = token.type - buf[#buf+1] = - t == "#" and rnd._section( - token, ctx, subrender(i, token.tokens), originalTemplate - ) or - t == "^" and rnd._inverted( - token.value, ctx, subrender(i, token.tokens) - ) or - t == ">" and rnd._partial(token.value, ctx, originalTemplate) or - (t == "{" or t == "&") and rnd._name(token.value, ctx, false) or - t == "name" and rnd._name(token.value, ctx, true) or - t == "text" and token.value or "" - end - return table_concat(buf) - end - return render - end - - local function escape_tags(tags) - return { - string_gsub(tags[1], "%%", "%%%%").."%s*", - "%s*"..string_gsub(tags[2], "%%", "%%%%"), - } - end - - local function nest_tokens(tokens) - local tree = {} - local collector = tree - local sections = {} - local token, section - - for i,token in ipairs(tokens) do - if token.type == "#" or token.type == "^" then - token.tokens = {} - sections[#sections+1] = token - collector[#collector+1] = token - collector = token.tokens - elseif token.type == "/" then - if #sections == 0 then - error("Unopened section: "..token.value) - end - - -- Make sure there are no open sections when we're done - section = table_remove(sections, #sections) - - if not section.value == token.value then - error("Unclosed section: "..section.value) - end - - section.closingTagIndex = token.startIndex - - if #sections > 0 then - collector = sections[#sections].tokens - else - collector = tree - end - else - collector[#collector+1] = token - end - end - - section = table_remove(sections, #sections) - - if section then - error("Unclosed section: "..section.value) - end - - return tree - end - - -- Combines the values of consecutive text tokens in the given `tokens` array - -- to a single token. - local function squash_tokens(tokens) - local out, txt = {}, {} - local txtStartIndex, txtEndIndex - for _, v in ipairs(tokens) do - if v.type == "text" then - if #txt == 0 then - txtStartIndex = v.startIndex - end - txt[#txt+1] = v.value - txtEndIndex = v.endIndex - else - if #txt > 0 then - out[#out+1] = { type = "text", value = table_concat(txt), startIndex = txtStartIndex, endIndex = txtEndIndex } - txt = {} - end - out[#out+1] = v - end - end - if #txt > 0 then - out[#out+1] = { type = "text", value = table_concat(txt), startIndex = txtStartIndex, endIndex = txtEndIndex } - end - return out - end - - local function make_context(view) - if not view then return view end - return getmetatable(view) == Context and view or CreateContext(view) - end - - self.clear_cache = function() - self.cache = {} - self.partial_cache = {} - end - - self.compile = function(tokens, tags, originalTemplate) - tags = tags or self.tags - if type(tokens) == "string" then - tokens = self.parse(tokens, tags) - end - - local fn = compile_tokens(tokens, originalTemplate) - - return function(view) - return fn(make_context(view), self) - end - end - - self.render = function(template, view, partials) - if type(self) == "string" then - error("Call mustache.render, not mustache:render!") - end - - if partials then - -- remember partial table - -- used for runtime lookup & compile later on - self.partials = partials - end - - if not template then - return "" - end - - local fn = self.cache[template] - - if not fn then - fn = self.compile(template, self.tags, template) - self.cache[template] = fn - end - - return fn(view) - end - - self._section = function(token, context, callback, originalTemplate) - local value = context.lookup(token.value) - - if type(value) == "table" then - if is_array(value) then - local buffer = "" - - for i,v in ipairs(value) do - buffer = buffer .. callback(context.push(v), self) - end - - return buffer - end - - return callback(context.push(value), self) - elseif type(value) == "function" then - local section_text = string_sub(originalTemplate, token.endIndex+1, token.closingTagIndex - 1) - - local scoped_render = function(template) - return self.render(template, context) - end - - return value(section_text, scoped_render) or "" - else - if value then - return callback(context, self) - end - end - - return "" - end - - self._inverted = function(name, context, callback) - local value = context.lookup(name) - - -- From the spec: inverted sections may render text once based on the - -- inverse value of the key. That is, they will be rendered if the key - -- doesn't exist, is false, or is an empty list. - - if value == nil or value == false or (type(value) == "table" and is_array(value) and #value == 0) then - return callback(context, self) - end - - return "" - end - - self._partial = function(name, context, originalTemplate) - local fn = self.partial_cache[name] - - -- check if partial cache exists - if (not fn and self.partials) then - - local partial = self.partials[name] - if (not partial) then - return "" - end - - -- compile partial and store result in cache - fn = self.compile(partial, nil, originalTemplate) - self.partial_cache[name] = fn - end - return fn and fn(context, self) or "" - end - - self._name = function(name, context, escape) - local value = context.lookup(name) - - if type(value) == "function" then - value = value(context.view) - end - - local str = value == nil and "" or value - str = tostring(str) - - if escape then - return string_gsub(str, '[&<>"\'/]', function(s) return html_escape_characters[s] end) - end - - return str - end - - self.parse = function(template, tags) - tags = tags or self.tags - local tag_patterns = escape_tags(tags) - local scanner = CreateScanner(template) - local tokens = {} -- token buffer - local spaces = {} -- indices of whitespace tokens on the current line - local has_tag = false -- is there a {{tag} on the current line? - local non_space = false -- is there a non-space char on the current line? - - -- Strips all whitespace tokens array for the current line if there was - -- a {{#tag}} on it and otherwise only space - local function strip_space() - if has_tag and not non_space then - while #spaces > 0 do - table_remove(tokens, table_remove(spaces)) - end - else - spaces = {} - end - has_tag = false - non_space = false - end - - local type, value, chr - - while not scanner.eos() do - local start = scanner.pos - - value = scanner.scan_until(tag_patterns[1]) - - if value then - for i = 1, #value do - chr = string_sub(value,i,i) - - if string_find(chr, "%s+") then - spaces[#spaces+1] = #tokens + 1 - else - non_space = true - end - - tokens[#tokens+1] = { type = "text", value = chr, startIndex = start, endIndex = start } - start = start + 1 - if chr == "\n" then - strip_space() - end - end - end - - if not scanner.scan(tag_patterns[1]) then - break - end - - has_tag = true - type = scanner.scan(patterns.tag) or "name" - - scanner.scan(patterns.white) - - if type == "=" then - value = scanner.scan_until(patterns.eq) - scanner.scan(patterns.eq) - scanner.scan_until(tag_patterns[2]) - elseif type == "{" then - local close_pattern = "%s*}"..tags[2] - value = scanner.scan_until(close_pattern) - scanner.scan(patterns.curly) - scanner.scan_until(tag_patterns[2]) - else - value = scanner.scan_until(tag_patterns[2]) - end - - if not scanner.scan(tag_patterns[2]) then - error("Unclosed tag at " .. scanner.pos) - end - - tokens[#tokens+1] = { type = type, value = value, startIndex = start, endIndex = scanner.pos - 1 } - if type == "name" or type == "{" or type == "&" then - non_space = true --> what does this do? - end - - if type == "=" then - tags = string_split(value, patterns.space) - tag_patterns = escape_tags(tags) - end - end - - return nest_tokens(squash_tokens(tokens)) - end - - local out = { - cache = {}, - partial_cache = {}, - tags = {"{{", "}}"} - } - - return setmetatable(out, { __index = self }) - end - -Mustache = {} -Mustache.Version = '1.3.1-0' -Mustache.Name = 'mustache' -Mustache.Render = function(...) - return CreateRenderer(...).render(...) -end - -local string_gmatch = string.gmatch - -function string.split(str, sep) - local out = {} - for m in string_gmatch(str, "[^"..sep.."]+") do out[#out+1] = m end - return out -end - -local _mustache = class('mustache') - -function _mustache:render(...) - return CreateRenderer(...).render(...) -end - --- FiveM manipulation -_ENV.mustache = _mustache -_G.mustache = _mustache -_ENV.render = function(...) _mustache:render(...) end -_G.render = function(...) _mustache:render(...) end \ No newline at end of file diff --git a/vendors/regex.lua b/vendors/regex.lua deleted file mode 100644 index 95b6727..0000000 --- a/vendors/regex.lua +++ /dev/null @@ -1,1921 +0,0 @@ ------------------------ [ CoreV ] ----------------------- --- GitHub: https://gist.github.com/luiseduardohd/10668729 --- License: None --- Author: luiseduardohd --- Name: luaregex.lua --- Version: 130911 --- Description: LuaRegex A True Regular Expression for Lua ------------------------ [ CoreV ] ----------------------- - -local unpack = table.unpack or unpack - - --- the base class of all -local __base_class__ = {} -function __base_class__:__init__() end - - --- Creates a new class, deriving from a base (optional) -local function class(base) - base = base or __base_class__ - - local cls = {} - setmetatable(cls, { ["__index"] = base }) - - return cls -end - ---- Creates a new object of a class -local function new(cls, ...) - --- cls: the class - --- ...: arguments for the constructor - local self = {} - setmetatable(self, { ["__index"] = cls }) - self:__init__(...) - return self -end - --- Get object's class -local function classof(object) - return rawget(getmetatable(object), "__index") -end - - ------------------------------------------------------------------------------ --- Nodes of expression tree - --- --- expression's base --- -local Expression = class() - -function Expression:SetMatchee(matchee, pos) - -- Resets the state of the self and set matchee. - -- setting pos = nil just resets the expression - -- (or, lets NextMatch(submatches, flags) return false) - self.matchee = matchee - self.pos = pos - self:OnSetMatchee() -end - -function Expression:NextMatch(submatches, flags) - -- Before first calling this function, - -- the user should have called self:SetMatchee(matchee, pos). - -- (otherwise, this function just returns false) - -- - -- This function enumerates possible matches for the self. - -- Each time this is called, this returns (isOK, nextPos). - -- - if isOK == true, - -- nextPos denotes the position for the next expression. - -- - if isOK == false, - -- there was no match left. - -- - -- Look also at the comment of Expression:OnNextMatch - local pos = self.pos - local isOK, nextPos - if pos then - isOK, nextPos = self:OnNextMatch(submatches, flags) - if not isOK then - self.pos = nil - end - end - - if self.name then - if isOK then - submatches[self.name] = { pos, nextPos } - else - submatches[self.name] = nil - end - end - - return isOK, nextPos -end - -function Expression:SetName(name) - -- name: number or string - self.name = name -end - -function Expression:CloneCoreStateTo(clone) - -- This should be called by Clone() of derived classes. - -- Clones the core states into 'clone' - clone.matchee = self.matchee - clone.pos = self.pos - clone.name = self.name -end - --- Override this if necessary -function Expression:OnSetMatchee() end - --- Define following functions in derived classes --- function Expression:Clone() --- Return a clone object of the self. --- The state of the clone shall be the same as the self. --- If the self has sub-objects, the sub-objects shall also be cloned. --- --- function Expression:IsFixedLength() --- Checks if the expression's length is fixed. --- This functions returns (isFixed, length) --- --- function Expression:OnNextMatch(submatches, flags) --- When this function is called, --- self.matchee and self.pos refer to the string to be matched. --- --- - If there are one or more matches for the self, then --- this function shall return (true, NEXT_POSITION), --- in the favored order, one by one, each time it is called. --- - If there are no matches, or if there are no matches left, --- then this function shall return false. --- --- It is guaranteed that this function is never called --- after --- - this function returns false, or --- - this function sets self.pos = nil, --- until the user calls self:SetMatchee again. --- --- A matched group named 'name' (string or number) --- can be obtained by --- pos, nextPos = unpack(submatches[name]) --- str = self.matchee:sub(pos, nextPos-1) - --- --- expression AB --- -local ExpPair = class(Expression) - -function ExpPair:__init__(sub1, sub2) - self.sub1 = sub1 - self.sub2 = sub2 -end - -function ExpPair:OnSetMatchee() - self.sub1:SetMatchee(self.matchee, self.pos) - self.sub2:SetMatchee(nil, nil) -end - -function ExpPair:Clone() - clone = new(classof(self), self.sub1:Clone(), self.sub2:Clone()) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpPair:IsFixedLength() - local b, len1 = self.sub1:IsFixedLength() - local len2 - if b then - b, len2 = self.sub2:IsFixedLength() - if b then - return true, len1 + len2 - end - end - - return false -end - -function ExpPair:OnNextMatch(submatches, flags) - local isOK, nextPos = self.sub2:NextMatch(submatches, flags) - if isOK then - return isOK, nextPos - end - - repeat - isOK, nextPos = self.sub1:NextMatch(submatches, flags) - if not isOK then - return false - end - - self.sub2:SetMatchee(self.matchee, nextPos) - isOK, nextPos = self.sub2:NextMatch(submatches, flags) - until isOK - - return isOK, nextPos -end - - --- --- expression A|B --- -local ExpOr = class(Expression) - -function ExpOr:__init__(sub1, sub2) - self.sub1 = sub1 - self.sub2 = sub2 -end - -function ExpOr:OnSetMatchee() - self.sub1:SetMatchee(self.matchee, self.pos) - self.sub2:SetMatchee(self.matchee, self.pos) -end - -function ExpOr:Clone() - clone = new(classof(self), self.sub1:Clone(), self.sub2:Clone()) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpOr:IsFixedLength() - local b, len1 = self.sub1:IsFixedLength() - local len2 - if b then - b, len2 = self.sub2:IsFixedLength() - if b and len1 == len2 then - return true, len1 - end - end - - return false -end - -function ExpOr:OnNextMatch(submatches, flags) - local isOK, nextPos = self.sub1:NextMatch(submatches, flags) - if isOK then - return isOK, nextPos - end - - return self.sub2:NextMatch(submatches, flags) -end - - --- --- expression A{a,b}, which includes: --- A* = A{,} --- A+ = A{1,} --- A? = A{,1} --- A{n} = A{n,n} --- a,b when omitted are assumed to be 0 and infinity, respectively --- -local ExpRepeat = class(Expression) - -function ExpRepeat:__init__(sub, min, max) - self.sub = sub - self.min = min or 0 - self.max = max -end - -function ExpRepeat:OnSetMatchee() - local clone = self.sub:Clone() - clone:SetMatchee(self.matchee, self.pos) - self.stack = { {clone, self.pos} } -end - -function ExpRepeat:Clone() - clone = new(classof(self), self.sub:Clone(), self.min, self.max) - self:CloneCoreStateTo(clone) - - if self.stack then - local cloneStack = {} - for i,v in ipairs(self.stack) do - local sub, pos = unpack(v) - cloneStack[#cloneStack + 1] = {sub:Clone(), pos} - end - clone.stack = cloneStack - end - - return clone -end - -function ExpRepeat:IsFixedLength() - if self.min == self.max then - local b, len = self.sub:IsFixedLength() - if b then - return len * self.min - end - end - - return false -end - -function ExpRepeat:OnNextMatch(submatches, flags) - local stack = self.stack - local max = self.max - local isOK, nextPos - - while self.pos do - local sub, pos - - while true do - sub, pos = unpack(stack[#stack]) - isOK, nextPos = sub:NextMatch(submatches, flags) - if isOK then - if not max or #stack < max then - local clone = self.sub:Clone() - clone:SetMatchee(self.matchee, nextPos) - stack[#stack+1] = {clone, nextPos} - else - break - end - else - stack[#stack] = nil - nextPos = pos - break - end - end - - local iteration = #stack - if iteration == 0 then - self.pos = nil - end - - if (self.min <= iteration) - and (not self.max or iteration <= self.max) - then - return true, nextPos - end - end - - return false -end - - --- --- expression A{a,b}?, which includes: --- A*? = A{,}? --- A+? = A{1,}? --- A?? = A{,1}? --- a,b when omitted are assumed to be 0 and infinity, respectively --- -local ExpVigorless = class(Expression) - -function ExpVigorless:__init__(sub, min, max) - self.sub = sub - self.min = min or 0 - self.max = max -end - -function ExpVigorless:OnSetMatchee() - self.sub:SetMatchee(self.matchee, self.pos) - self.queue = nil - self.curExp = nil - self.curDepth = 0 -end - -function ExpVigorless:Clone() - clone = new(classof(self), self.sub:Clone(), self.min, self.max) - self:CloneCoreStateTo(clone) - - if self.queue then - local cloneQ = {} - for i,v in ipairs(self.queue) do - cloneQ[#cloneQ + 1] = v - end - clone.queue = cloneQ - end - - clone.curExp = self.curExp - clone.curDepth = self.curDepth - - return clone -end - -function ExpVigorless:IsFixedLength() - if self.min == self.max then - local b, len = self.sub:IsFixedLength() - if b then - return len * self.min - end - end - - return false -end - -function ExpVigorless:OnNextMatch(submatches, flags) - local min = self.min - local max = self.max - - if not self.queue then - self.queue = { {self.pos, 1} } - if (min <= 0) - and (not max or 0 <= max) - then - return true, self.pos - end - end - - local queue = self.queue - - while true do - if self.curExp then - isOK, nextPos = self.curExp:NextMatch(submatches, flags) - if isOK then - if not max or self.curDepth < max then - queue[#queue+1] = { nextPos, self.curDepth + 1 } - end - if (min <= self.curDepth) - and (not max or self.curDepth <= max) - then - return isOK, nextPos - end - else - self.curExp = nil - end - elseif #queue > 0 then - nextPos, self.curDepth = unpack(table.remove(queue, 1)) - local clone = self.sub:Clone() - clone:SetMatchee(self.matchee, nextPos) - self.curExp = clone - else - return false - end - end -end - - --- --- expression (?=A), (?!A) --- -local ExpLookAhead = class(Expression) - -function ExpLookAhead:__init__(sub, affirmative) - self.sub = sub - self.aff = affirmative -end - -function ExpLookAhead:OnSetMatchee() - self.sub:SetMatchee(self.matchee, self.pos) -end - -function ExpLookAhead:Clone() - clone = new(classof(self), self.sub:Clone()) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpLookAhead:IsFixedLength() - return true, 0 -end - -function ExpLookAhead:OnNextMatch(submatches, flags) - local isOK, nextPos = self.sub:NextMatch(submatches, flags) - if (not self.aff) == (not isOK) then - nextPos = self.pos - self.pos = nil - return true, nextPos - end - - return false -end - - --- --- expression (?<=A), (? bool - self.fnIsMatch = fnIsMatch -end - -function ExpOneChar:Clone() - clone = new(classof(self), self.fnIsMatch) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpOneChar:IsFixedLength() - return true, 1 -end - -function ExpOneChar:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - if pos > #self.matchee then return false end - - if self.fnIsMatch(self.matchee:byte(pos)) then - return true, pos + 1 - else - return false - end -end - - --- --- expression ^ --- -local ExpLineBegin = class(Expression) - -function ExpLineBegin:Clone() - clone = new(classof(self)) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpLineBegin:IsFixedLength() - return true, 0 -end - -function ExpLineBegin:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - -- ^ matches even a null string - if pos == 1 then - return true, pos - end - - if self.matchee:sub(pos-1, pos-1) == '\n' then - return true, pos - end - - return false -end - - --- --- expression $ --- -local ExpLineEnd = class(Expression) - -function ExpLineEnd:Clone() - clone = new(classof(self)) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpLineEnd:IsFixedLength() - return true, 0 -end - -function ExpLineEnd:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - -- $ matches even a null string - if pos == #self.matchee + 1 then - return true, pos - end - - if self.matchee:sub(pos, pos) == '\n' then - return true, pos - end - - return false -end - - --- --- expression \A --- -local ExpBegin = class(Expression) - -function ExpBegin:Clone() - clone = new(classof(self)) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpBegin:IsFixedLength() - return true, 0 -end - -function ExpBegin:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - -- ^ matches even a null string - if pos == 1 then - return true, pos - end - - return false -end - - --- --- expression \Z --- -local ExpEnd = class(Expression) - -function ExpEnd:Clone() - clone = new(classof(self)) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpEnd:IsFixedLength() - return true, 0 -end - -function ExpEnd:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - -- $ matches even a null string - if pos == #self.matchee + 1 then - return true, pos - end - - return false -end - - --- --- expression \b --- -local ExpBorder = class(Expression) - -function ExpBorder:Clone() - clone = new(classof(self)) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpBorder:IsFixedLength() - return true, 0 -end - -function ExpBorder:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - if self:IsWordAt(pos-1) ~= self:IsWordAt(pos) then - return true, pos - end - - return false -end - -function ExpBorder:IsWordAt(pos) - if pos <= 0 then return false end - local value = self.matchee:byte(pos) - if not value then return false end - - local zero, nine, A, Z, a, z, ubar = ("09AZaz_"):byte(1,7) - return (zero <= value and value <= nine) - or (A <= value and value <= Z) - or (a <= value and value <= z) - or value == ubar -end - - --- --- expression \B --- -local ExpNegBorder = class(ExpBorder) - -function ExpNegBorder:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - if self:IsWordAt(pos-1) == self:IsWordAt(pos) then - return true, pos - end - - return false -end - - --- --- expression that matches a terminal string --- -local ExpTerminals = class(Expression) - -function ExpTerminals:__init__(str) - self.str = str -end - -function ExpTerminals:Clone() - clone = new(classof(self), self.str) - self:CloneCoreStateTo(clone) - return clone -end - -function ExpTerminals:IsFixedLength() - return true, #self.str -end - -function ExpTerminals:OnNextMatch(submatches, flags) - local pos = self.pos - self.pos = nil - - local len = #self.str - - if self.matchee:sub(pos, pos + len - 1) == self.str then - return true, pos + len - else - return false - end -end - - ------------------------------------------------------------------------------ --- Parser to compile regex-string to expression-tree - -local Parser = class() - -function Parser:__init__(regexp, flags) - self.regexp = regexp - self.flags = flags - self.nextCapture = 1 - - local expOr, nextPos = self:GetExpOr(1) - - if not expOr then - return - end - - if nextPos ~= #regexp + 1 then - if not self.errMsg then - self.errMsg = "cannot compile" - self.errPos = nextPos - end - return - end - - self.errMsg = nil - self.errPos = nil - self.exp = expOr -end - -function Parser:Error() - return self.errMsg, self.errPos -end - -function Parser:Expression() - return self.exp -end - -function Parser:GetExpOr(pos) - local expOr, nextPos = self:GetExpPair(pos) - if not expOr then return nil end - - local expPair - while self.regexp:sub(nextPos,nextPos) == '|' do - expPair, nextPos = self:GetExpPair(nextPos + 1) - if not expPair then return nil end - - expOr = new(ExpOr, expOr, expPair) - end - - return expOr, nextPos -end - -function Parser:GetExpPair(pos) - local expPair, nextPos = self:GetExpRepeat(pos) - if not expPair then - return new(ExpTerminals, ""), pos - end - - pos = nextPos - local expRepeat - while true do - expRepeat, nextPos = self:GetExpRepeat(pos) - if not expRepeat then - return expPair, pos - end - - expPair = new(ExpPair, expPair, expRepeat) - pos = nextPos - end -end - -function Parser:GetExpRepeat(pos) - local expRepeat, nextPos = self:GetExpPrimary(pos) - if not expRepeat then return nil end - - pos = nextPos - local repeater - while true do - repeater, nextPos = self:GetRepeater(pos) - if not repeater then - return expRepeat, pos - end - - local clsExp - if self.regexp:sub(nextPos, nextPos) == '?' then - clsExp = ExpVigorless - nextPos = nextPos + 1 - else - clsExp = ExpRepeat - end - - local min = repeater.min - local max = repeater.max - - expRepeat = new(clsExp, expRepeat, min, max) - pos = nextPos - end -end - -function Parser:GetExpPrimary(pos) - local regexp = self.regexp - - if regexp:sub(pos,pos) == '(' then - pos = pos+1 - - local subExp, nextPos - - if regexp:sub(pos,pos) == '?' then - pos = pos+1 - - if regexp:sub(pos,pos) == ':' then - subExp, nextPos = self:GetUnnamedGroup(pos+1) - elseif regexp:sub(pos,pos+1) == 'P<' then - subExp, nextPos = self:GetUserNamedGroup(pos+2) - elseif regexp:sub(pos,pos+1) == 'P=' then - subExp, nextPos = self:GetUserNamedRef(pos+2) - elseif regexp:sub(pos,pos) == '=' then - subExp, nextPos = self:GetLookAhead(pos+1) - elseif regexp:sub(pos,pos) == '!' then - subExp, nextPos = self:GetNegLookAhead(pos+1) - elseif regexp:sub(pos,pos+1) == '<=' then - subExp, nextPos = self:GetLookBack(pos+2) - elseif regexp:sub(pos,pos+1) == '' then - self.errMsg = "> expected" - self.errPos = nextPos - return nil - end - - local expOr - expOr, nextPos = self:GetExpOr(nextPos + 1) - if expOr then - expOr:SetName(name) - end - - return expOr, nextPos -end - -function Parser:GetUserNamedRef(pos) - local name, nextPos = self:GetName(pos) - if not name then return nil end - - return new(ExpReference, name), nextPos -end - -function Parser:GetLookAhead(pos) - local expOr, nextPos = self:GetExpOr(pos) - if expOr then - expOr = new(ExpLookAhead, expOr, true) - end - - return expOr, nextPos -end - -function Parser:GetNegLookAhead(pos) - local expOr, nextPos = self:GetExpOr(pos) - if expOr then - expOr = new(ExpLookAhead, expOr, false) - end - - return expOr, nextPos -end - -function Parser:GetLookBack(pos) - local expOr, nextPos = self:GetExpOr(pos) - if not expOr then return nil end - - if not expOr:IsFixedLength() then - self.errMsg = "length must be fixed" - self.errPos = pos+1 - return nil - end - - return new(ExpLookBack, expOr, true), nextPos -end - -function Parser:GetNegLookBack(pos) - local expOr, nextPos = self:GetExpOr(pos) - if not expOr then return nil end - - if not expOr:IsFixedLength() then - self.errMsg = "length must be fixed" - self.errPos = pos+1 - return nil - end - - return new(ExpLookBack, expOr, false), nextPos -end - -function Parser:GetConditional(pos) - local name, nextPos = self:GetName(pos) - if not name then return nil end - - if self.regexp:sub(nextPos,nextPos) ~= ')' then - self.errMsg = ") expected" - self.errPos = nextPos - return nil - end - - local exp1 - exp1, nextPos = self:GetExpPair(nextPos + 1) - if not exp1 then return nil end - - local exp2 - if self.regexp:sub(nextPos,nextPos) == '|' then - exp2, nextPos = self:GetExpPair(nextPos + 1) - if not exp2 then return nil end - end - - return new(ExpConditional, name, exp1, exp2), nextPos -end - -function Parser:GetNamedGroup(pos) - local id = self.nextCapture - self.nextCapture = self.nextCapture + 1 - - local expOr, nextPos = self:GetExpOr(pos) - if expOr then - expOr:SetName(id) - else - -- restore 'nextCapture' - self.nextCapture = id - end - - return expOr, nextPos -end - -function Parser:GetRepeater(pos) - local regexp = self.regexp - - if pos > #regexp then return nil end - local c = regexp:sub(pos, pos) - - if c == '*' then - return {}, pos+1 - end - if c == '+' then - return {["min"] = 1}, pos+1 - end - if c == '?' then - return {["max"] = 1}, pos+1 - end - if c ~= '{' then - return nil - end - - pos = pos + 1 - local min, max, nextPos - - min, nextPos = self:GetNumber(pos) - if min then - pos = nextPos - end - - c = regexp:sub(pos, pos) - if c == '' or (c ~= ',' and c ~= '}') then - self.errMsg = ", or } expected" - self.errPos = pos - return nil - end - - if not min and c == '}' then - self.errMsg = "iteration number expected" - self.errPos = pos - return nil - end - - pos = pos + 1 - - if c == ',' then - max, nextPos = self:GetNumber(pos) - if max then - pos = nextPos - end - - c = regexp:sub(pos, pos) - if c == '' or c ~= '}' then - self.errMsg = "} expected" - self.errPos = pos - return nil - end - - pos = pos + 1 - else - max = min - end - - return {["min"] = min, ["max"] = max}, pos -end - -function Parser:GetCharClass(pos) - local regexp = self.regexp - if regexp:sub(pos,pos) ~= '[' then - return nil - end - - pos = pos+1 - - local affirmative - if regexp:sub(pos,pos) == '^' then - affirmative = false - pos = pos+1 - else - affirmative = true - end - - local fnIsMatch, nextPos = self:GetUserCharClass(pos) - if not fnIsMatch then return nil end - - if regexp:sub(nextPos,nextPos) ~= ']' then - self.errMsg = "] expected" - self.errPos = nextPos - return nil - end - - local fn - if affirmative then - fn = fnIsMatch - else - fn = function(c) return not fnIsMatch(c) end - end - - return new(ExpOneChar, fn), nextPos+1 -end - -function Parser:GetUserCharClass(pos) - local fnIsMatch, nextPos = self:GetUserCharRange(pos) - if not fnIsMatch then - self.errMsg = "empty class not allowed" - self.errPos = pos - return nil - end - - local aFn = { fnIsMatch } - - pos = nextPos - while true do - -- the following 'local' is mandatory - local fnIsMatch, nextPos = self:GetUserCharRange(pos) - if not fnIsMatch then - local fn = function(c) - for i,v in ipairs(aFn) do - if v(c) then return true end - end - return false - end - return fn, pos - end - - aFn[#aFn+1] = fnIsMatch - pos = nextPos - end -end - -function Parser:GetUserCharRange(pos) - local char1, nextPos = self:GetUserChar(pos) - if not char1 then return nil end - - if self.regexp:sub(nextPos,nextPos) ~= '-' then - return function(c) return c == char1 end, nextPos - end - - pos = nextPos + 1 - - local char2, nextPos = self:GetUserChar(pos) - if char2 then - return function(c) return char1 <= c and c <= char2 end, nextPos - else - char2 = ('-'):byte() - return function(c) return char1 == c or c == char2 end, pos - end -end - -function Parser:GetUserChar(pos) - local value, nextPos = self:GetClassEscSeq(pos) - if value then - return value, nextPos - end - - local c = self.regexp:sub(pos, pos) - if c ~= '' and c ~= '\\' and c ~= ']' then - return c:byte(), pos + 1 - else - return nil - end -end - -function Parser:GetClassEscSeq(pos) - local value, nextPos = self:GetTermEscSeq(pos) - if value then - return value, nextPos - end - - if self.regexp:sub(pos,pos+1) == "\\b" then - return 0x08, pos+2 - else - return nil - end -end - -function Parser:GetNonTerminal(pos) - local regexp = self.regexp - local c = regexp:sub(pos,pos) - if c == '^' then - return new(ExpLineBegin), pos+1 - end - if c == '$' then - return new(ExpLineEnd), pos+1 - end - if c == '.' then - local nl = ('\n'):byte() - return new(ExpOneChar, function(c) return c ~= nl end), pos+1 - end - if c ~= '\\' then - return nil - end - - local zero, nine, A, Z, a, z, ubar = ("09AZaz_"):byte(1,7) - local ff, nl, cr, ht, vt, ws = ("\f\n\r\t\v "):byte(1,6) - - c = regexp:sub(pos+1, pos+1) - if c == 'd' then - local fn = function(c) return zero <= c and c <= nine end - return new(ExpOneChar, fn), pos+2 - end - if c == 'D' then - local fn = function(c) return not(zero <= c and c <= nine) end - return new(ExpOneChar, fn), pos+2 - end - if c == 's' then - local fn = function(c) - -- check it in the order of likeliness - return c == ws or c == nl or c == ht - or c == cr or c == vt or c == ff - end - return new(ExpOneChar, fn), pos+2 - end - if c == 'S' then - local fn = function(c) - -- check it in the order of likeliness - return not(c == ws or c == nl or c == ht - or c == cr or c == vt or c == ff - ) - end - return new(ExpOneChar, fn), pos+2 - end - if c == 'w' then - local fn = function(c) - return (a <= c and c <= z) - or (A <= c and c <= Z) - or (zero <= c and c <= nine) - or c == ubar - end - return new(ExpOneChar, fn), pos+2 - end - if c == 'W' then - local fn = function(c) - return not( - (a <= c and c <= z) - or (A <= c and c <= Z) - or (zero <= c and c <= nine) - or c == ubar - ) - end - return new(ExpOneChar, fn), pos+2 - end - if c == 'A' then - return new(ExpBegin), pos+2 - end - if c == 'b' then - return new(ExpBorder), pos+2 - end - if c == 'B' then - return new(ExpNegBorder), pos+2 - end - if c == 'Z' then - return new(ExpEnd), pos+2 - end - - local value, nextPos = self:GetNumber(pos+1) - if value then - return new(ExpReference, value), nextPos - end - - self.errMsg = "invalid escape sequence" - self.errPos = pos - return nil -end - -function Parser:GetTerminalStr(pos) - local value, nextPos = self:GetTerminal(pos) - if not value then return nil end - - local list = { value } - pos = nextPos - - while true do - value, nextPos = self:GetTerminal(pos) - if not value then - local exp = new(ExpTerminals, - self.regexp.char(unpack(list)) - ) - return exp, pos - end - - list[#list+1] = value - pos = nextPos - end -end - -local g_nonTerminal_Parser_GetTerminal = { - [('^'):byte()] = true, - [('$'):byte()] = true, - [('\\'):byte()] = true, - [('|'):byte()] = true, - [('['):byte()] = true, - [(']'):byte()] = true, - [('{'):byte()] = true, - [('}'):byte()] = true, - [('('):byte()] = true, - [(')'):byte()] = true, - [('*'):byte()] = true, - [('+'):byte()] = true, - [('?'):byte()] = true, -} -function Parser:GetTerminal(pos) - local value, nextPos = self:GetTermEscSeq(pos) - if value then - return value, nextPos - end - - value = self.regexp:byte(pos,pos) - if not value then return nil end - - local nonTerminal = g_nonTerminal_Parser_GetTerminal - if nonTerminal[value] then return nil end - - return value, pos+1 -end - -local g_entity_Parser_GetTermEscSeq = { - [('a'):byte()] = 0x07, - [('f'):byte()] = 0x0c, - [('n'):byte()] = 0x0a, - [('r'):byte()] = 0x0d, - [('t'):byte()] = 0x09, - [('v'):byte()] = 0x0b, - [('!'):byte()] = ('!'):byte(), - [('"'):byte()] = ('"'):byte(), - [('#'):byte()] = ('#'):byte(), - [('$'):byte()] = ('$'):byte(), - [('%'):byte()] = ('%'):byte(), - [('&'):byte()] = ('&'):byte(), - [("'"):byte()] = ("'"):byte(), - [('('):byte()] = ('('):byte(), - [(')'):byte()] = (')'):byte(), - [('*'):byte()] = ('*'):byte(), - [('+'):byte()] = ('+'):byte(), - [(','):byte()] = (','):byte(), - [('-'):byte()] = ('-'):byte(), - [('.'):byte()] = ('.'):byte(), - [('/'):byte()] = ('/'):byte(), - [(':'):byte()] = (':'):byte(), - [(';'):byte()] = (';'):byte(), - [('<'):byte()] = ('<'):byte(), - [('='):byte()] = ('='):byte(), - [('>'):byte()] = ('>'):byte(), - [('?'):byte()] = ('?'):byte(), - [('@'):byte()] = ('@'):byte(), - [('['):byte()] = ('['):byte(), - [('\\'):byte()] =('\\'):byte(), - [(']'):byte()] = (']'):byte(), - [('^'):byte()] = ('^'):byte(), - [('_'):byte()] = ('_'):byte(), - [('`'):byte()] = ('`'):byte(), - [('{'):byte()] = ('{'):byte(), - [('|'):byte()] = ('|'):byte(), - [('}'):byte()] = ('}'):byte(), - [('~'):byte()] = ('~'):byte(), -} -function Parser:GetTermEscSeq(pos) - local regexp = self.regexp - if regexp:sub(pos,pos) ~= '\\' then return nil end - - local entity = g_entity_Parser_GetTermEscSeq - local c = regexp:byte(pos+1) - local value = entity[c] - if value then - return value, pos+2 - end - - if c == ('x'):byte() then - value, nextPos = self:GetHexNumber(pos+2, 2) - if not value then - self.errMsg = "hexadecimal number expected" - self.errPos = pos+2 - return nil - end - return value, nextPos - end - - self.errMsg = "invalid escape sequence" - self.errPos = pos - - return nil -end - -function Parser:GetName(pos) - local name, nextPos = self:GetIdentifier(pos) - if name then - return name, nextPos - end - - name, nextPos = self:GetNumber(pos) - if name then - return name, nextPos - end - - return nil -end - -function Parser:GetIdentifier(pos) - local regexp = self.regexp - local zero, nine, A, Z, a, z, bar = ('09AZaz_'):byte(1,7) - - local value - local c = regexp:byte(pos) - if not c then return nil end - - if (A <= c and c <= Z) - or (a <= c and c <= z) - or c == bar - then - value = { c } - else - return nil - end - - local nextPos = pos + 1 - while true do - c = regexp:byte(nextPos) - if not c then - break - end - if (A <= c and c <= Z) - or (a <= c and c <= z) - or (zero <= c and c <= nine) - or c == bar - then - value[#value + 1] = c - nextPos = nextPos + 1 - else - break - end - end - - return regexp.char(unpack(value)), nextPos -end - -function Parser:GetNumber(pos) - local regexp = self.regexp - local zero, nine = ('09'):byte(1,2) - - local nextPos = pos - local value = 0 - while true do - local digit = regexp:byte(nextPos) - if not digit then - break - end - if not (zero <= digit and digit <= nine) then - break - end - value = 10*value + (digit - zero) - nextPos = nextPos + 1 - end - - if pos == nextPos then return nil end - - return value, nextPos -end - -function Parser:GetHexNumber(pos, maxDigits) - local regexp = self.regexp - local zero, nine, A, F, a, f = ('09AFaf'):byte(1,6) - - local nextPos = pos - local value = 0 - local i = 0 - while not maxDigits or i < maxDigits do - local digit = regexp:byte(nextPos) - if not digit then - break - end - if zero <= digit and digit <= nine then - value = 16*value + (digit - zero) - elseif A <= digit and digit <= F then - value = 16*value + (digit - A + 10) - elseif a <= digit and digit <= f then - value = 16*value + (digit - a + 10) - else - break - end - - nextPos = nextPos + 1 - i = i + 1 - end - - if pos == nextPos then return nil end - - return value, nextPos -end - - --------------------------------------------------------------------------- --- Match class (represents submatches) - -local Match = class() - -function Match:__init__(matchee, submatches) - self.matchee = matchee - self.submatches = submatches -end - --- function Match:expand(format) end --- This is defined later (to use Regex) - -function Match:group(...) - -- /(a)(b)(c)/ matching "abc", then - -- group(0,1,2,3) returns "abc", "a", "b", "c" - -- group() is equivalent to group(0) - - local args = {...} - if #args == 0 then args = { 0 } end - - local matchee = self.matchee - local submatches = self.submatches - local groups = {} - - for i = 1, #args do - local name = args[i] - local span = submatches[name] - if span then - local b,e = unpack(span) - groups[i] = matchee:sub(b,e-1) - end - end - - return unpack(groups) -end - -function Match:span(groupId) - -- Returns index pair (begin, end) of group 'groupId'. - -- Note 'end' is one past the end. - - groupId = groupId or 0 - - local span = self.submatches[groupId] - if span then - return unpack(span) - else - return nil - end -end - - --------------------------------------------------------------------------- --- Regex class --- -local Regex = class() -Regex.__regex__ = true -- type marker - -function Regex:__init__(regexp, flags) - local parser = new(Parser, regexp, flags) - local exp = parser:Expression() - if exp == nil then - msg, pos = parser:Error() - error(("regex at %d: %s"):format(pos, msg)) - end - - self.exp = exp - self.flags = flags -end - -function Regex:match(str, pos) - if not pos then - pos = 1 - elseif pos < 0 then - pos = #str - (pos + 1) - end - - if pos < 0 then - pos = 1 - end - - local submatches = {} - - self.exp:SetMatchee(str, pos) - isOK, nextPos = self.exp:NextMatch(submatches, self.flags) - - if not isOK then return nil end - - submatches[0] = {pos, nextPos} - return new(Match, str, submatches) -end - -function Regex:search(str, pos) - if not pos then - pos = 1 - elseif pos < 0 then - pos = #str - (pos + 1) - end - - if pos < 0 then - pos = 1 - end - - for p = pos, #str do - local match = self:match(str, p) - if match then return match end - end - - return nil -end - -function Regex:sub(repl, str, count) - if count and count <= 0 then return str, 0 end - - local isFunc - if type(repl) == "function" then - isFunc = true - else - local meta = getmetatable(repl) - if meta and meta.__call then - isFunc = true - end - end - - local list = {} - local nRepl = 0 - local prevPos = 1 - for match in self:finditer(str) do - local curBeg, curEnd = match:span() - list[#list+1] = str:sub(prevPos,curBeg-1) - - local r - if isFunc then - r = repl(match) - if r then - r = tostring(r) - else - r = "" - end - else - r = match:expand(repl) - end - - list[#list+1] = r - prevPos = curEnd - - nRepl = nRepl + 1 - if count and count <= nRepl then break end - end - - list[#list+1] = str:sub(prevPos,-1) - - return table.concat(list), nRepl -end - -function Regex:findall(str, pos) - local list = {} - for match in self:finditer(str, pos) do - list[#list+1] = match - end - - return list -end - -function Regex:finditer(str, pos) - pos = pos or 1 - - local match = { - ["matchee"] = str, - ["span"] = function() return nil, pos end - } - return self.__finditer, self, match -end - -function Regex:__finditer(match) - local prevBeg, prevEnd = match:span(0) - if prevBeg == prevEnd then - prevEnd = prevEnd + 1 - end - return self:search(match.matchee, prevEnd) -end - - --- additional method of Match -local g_regex_Match_expand = - new(Regex, [[\\(?:(\d+)|g<(?:(\d+)|([A-Za-z_][A-Za-z0-9_]*))>|[xX]([0-9a-fA-F]{1,2})|([abfnrtv\\]))]]) -function Match:expand(format) - -- Replaces \number, \g, \g - -- to the corresponding groups - -- Also \a, \b, \f, \n, \r, \t, \v, \x## are recognized - - local regex = g_regex_Match_expand - - local function replace(match) - local group = match:group(1) or match:group(2) - if group then - local id = tonumber(group, 10) - return self:group(id) - end - - group = match:group(3) - if group then - return self:group(group) - end - - group = match:group(4) - if group then - return match.matchee.char(tonumber("0x" .. group)) - end - - group = match:group(5) - if group == 'a' then return '\a' - elseif group == 'b' then return '\b' - elseif group == 'f' then return '\f' - elseif group == 'n' then return '\n' - elseif group == 'r' then return '\r' - elseif group == 't' then return '\t' - elseif group == 'v' then return '\v' - elseif group == '\\' then return '\\' - end - end - - return (regex:sub(replace, format)) -end - - --------------------------------------------------------------------------- --- Exported object - -local re = {} - -function re.compile(regexp, flags) - return new(Regex, regexp, flags) -end - -function re.match(regexp, str, pos, flags) - return re.__getRegex(regexp, flags):match(str, pos) -end - -function re.search(regexp, str, pos, flags) - return re.__getRegex(regexp, flags):search(str, pos) -end - -function re.sub(regexp, repl, str, count, flags) - return re.__getRegex(regexp, flags):sub(repl, str, count) -end - -function re.findall(regexp, str, pos, flags) - return re.__getRegex(regexp, flags):findall(str, pos) -end - -function re.finditer(regexp, str, pos, flags) - return re.__getRegex(regexp, flags):finditer(str, pos) -end - -function re.__getRegex(regexp, flags) - if regexp.__regex__ then - return regexp - else - return re.__compile(regexp, flags) - end -end - -re.cacheSize = 100 -- this is the size of regex cache - -local g_sourceCache_re = {} -local g_objectCache_re = {} - -function re.__compile(regexp, flags) - local sourceCache = g_sourceCache_re - local objectCache = g_objectCache_re - - local obj = objectCache[regexp] - if obj then - -- flags must be considered: - -- anyway, flags does not work for now - - local theI = 0 - for i,v in ipairs(sourceCache) do - if v == regexp then - theI = i - break - end - end - if theI > 1 then - for i = theI, 2, -1 do - sourceCache[i] = sourceCache[i-1] - end - sourceCache[1] = regexp - end - return obj - end - - obj = re.compile(regexp, flags) - local cacheSize = re.cacheSize - - local size = #sourceCache - while cacheSize <= size do - local name = sourceCache[size] - sourceCache[size] = nil - objectCache[name] = nil - size = size - 1 - end - - table.insert(sourceCache, 1, regexp) - objectCache[regexp] = obj - - return obj -end - -_ENV.regex = re -_G.regex = re \ No newline at end of file